

/* Start:/local/components/mog/outage.notification/templates/emergency/style.css?17624289517443*/
.notification-block-wrapper{
    position: relative;
}
.notification-block-fixer{
    position: relative;
    top: 0;
}
.notification-block{
    position: relative;
    padding: 30px 20px 25px;
    border: 1px solid #DDE9FF;
    border-radius: 10px;
    background: #E3EBFA;
}
.notification-block.result{
    min-height: 0;
}
.notification-title{
    display: flex;
    align-items: center;
    font-size: 20px;
    line-height: 21px;
    font-weight: 500;

    img {
        width: 43px;
        height: 40px;
        margin-bottom: -4px;
    }
}
.notification-address-field{
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid #DDE9FF;
    height: 48px;
    padding: 10px 20px;
    font-size: 16px;
    line-height: 22px;
    border-radius: 40px;
    outline: none;
    width: 100%;
}
.notification-address-field::placeholder {
    color: #79818F;
    font-size: 16px;
}
.notification-result-wrap{
    position: relative;
    margin-top: 23px;
    padding: 12px 16px;
    border-radius: 20px;
}
.notification-result-wrap {
    display: none;
}
.notification-result-wrap.visible {
    display: block;
}
.notification-block.result .notification-result-wrap{
    margin-top: 18px;
}
.notification-result-wrap:before,
.notification-result-wrap:after{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: right bottom;
    z-index: 1;
    opacity: 0;
    transition: 0.3s 0s ease;

    @media(max-width: 650px) {
        background-position: center;
    }

}
.notification-result-wrap:before{
    background-image: url("/local/components/mog/outage.notification/templates/emergency/./images/outage-result.svg");
}
.notification-result-wrap:after{
    background-image: url("/local/components/mog/outage.notification/templates/emergency/./images/outage-no-result.svg");

}
.notification-result{
    position: relative;
    font-size: 14px;
    color: #fff;
    line-height: 20px;
    z-index: 2;
}
.notification-result-wrap.result:before{
    opacity: 1;
}
.notification-result-wrap.no-result:after{
    opacity: 1;
}
.notification-result-wrap.result,
.notification-result-wrap.no-result{
    min-height: 235px;
    @media (max-width: 650px) {
        min-height: 330px;
    }
}
.notification-result-wrap.result .notification-result,
.notification-result-wrap.no-result .notification-result{
    max-width: 410px;
    font-size: 20px;
    line-height: 28px;
    color: #1e1e1e;

    @media (max-width: 650px) {
        text-align: center;
    }
}
.notification-checkbox-label{
    display: block;
    margin-top: 22px;
    cursor: pointer;
}
.notification-checkbox-label.hidden {
    display: none;
}
.notification-checkbox-text{
    display: block;
    position: relative;
    padding-left: 30px;
    font-size: 14px;
    line-height: 22px;
    min-height: 22px;
    transition: color 0.3s 0s ease;
}
.notification-checkbox-text:not(.active){
    color: #79818F;
}
.notification-checkbox-text:before,
.notification-checkbox-text:after{
    content: '';
    display: block;
    width: 22px;
    height: 22px;
    position: absolute;
    left: 0;
    top: 0;
    box-sizing: border-box;
}
.notification-checkbox-text:before{
    border: 1px solid #DDE9FF;
    border-radius: 4px;
    transition: border-color 0.3s 0s ease;
    background: #fff;
}
.notification-checkbox-text:not(.active):before{
    border-color: #D3D4DE;
}
.notification-checkbox-text:after{
    background-image: url("/local/components/mog/outage.notification/templates/emergency/./images/check-blue.svg");
    background-repeat: no-repeat;
    background-position: 5px center;
    transition: 0.3s 0s ease;
    opacity: 0;
}
.notification-checkbox-input{
    position: absolute;
    left: -9999px;
    opacity: 0;
    visibility: hidden;
}
.notification-checkbox-input:checked + .notification-checkbox-text:after{
    opacity: 1;
}
.notification-submit{
    -webkit-appearance: none;
    appearance: none;
    border: none;
    display: flex;
    padding: 15px 35px;
    align-items: center;
    justify-content: center;
    height: 48px;
    font-size: 16px;
    line-height: 21px;
    color: #fff;
    background-color: #12438F;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.3s 0s ease;
    @media (max-width: 500px) {
        width: 100%;
    }
}
.notification-submit:hover{
    background: #194d9e;
}
.notification-submit.disabled{
    background-color: #F1F1F1;
    color: #79818F;
    pointer-events: none;
}
.notification-address-wrap{
    position: relative;
}
.notification-search-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    @media(max-width: 500px) {
        flex-direction: column;
        gap: 12px;
    }
}
.notification-address-list-wrapper{
    padding-top: 10px;
    position: absolute;
    left: 0;
    width: 100%;
    top: 100%;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s 0s ease;
    @media(max-width: 500px) {
        top: 40%;
    }
}
.notification-address-list-wrapper.active{
    opacity: 1;
    visibility: visible;
}
.notification-address-list{
    max-height: 294px;
    padding: 8px 0;
    overflow-y: auto;
    border: 1px solid #DDE9FF;
    background-color: #fff;
    border-radius: 20px;
}
.notification-address-list-item{
    font-size: 16px;
    line-height: 20px;
    padding: 8px 16px;
    cursor: pointer;
}
.notification-address-list-item:hover{
    background-color: #F1F6FF;
}
.notification-result-error{
    margin-top: 8px;
    font-size: 14px;
    line-height: 16px;
    color: red;
}
.notification-loader{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px;
    z-index: 10;
}
.loader {
    width: 48px;
    height: 48px;
    border: 3px solid #5aa9fd;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}
.loader::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-bottom-color: #ea7d18;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@media (max-width: 1140px){
    .notification-title{
        justify-content: space-between;
    }

    .notification-block-fixer{
        top: 250px;
    }
    .notification-block-wrapper{
        max-width: none;
    }
    /*.notification-block{*/
    /*    min-height: 316px;*/
    /*}*/
    .notification-result-wrap.result .notification-result,
    .notification-result-wrap.no-result .notification-result{
        padding-bottom: 50px;
    }
}
@media (max-width: 768px){
    .notification-block-fixer{
        top: 218px;
    }
    .notification-block-wrapper{
        max-width: none;
    }
    .notification-block{
        /*min-height: 386px;*/
        /*padding-bottom: 84px;*/
    }
    .notification-title{
        font-size: 18px;
        line-height: 22px;

        @media(max-width: 500px) {
            img {
                width: 40px;
                height: 38px;
                margin-bottom: 0;
            }
        }
    }
    .notification-address-field{
        height: 44px;
    }
    .notification-submit{
        height: 44px;
    }
    .notification-address-list{
        max-height: 250px;
    }
}

/* End */


/* Start:/local/components/mog/outage.notification/templates/.default/style.css?17624289517472*/
.notification-block-wrapper{
    position: relative;
}
.notification-block-fixer{
    position: relative;
    top: 0;
}
.notification-block{
    position: relative;
    padding: 30px 20px 25px;
    border: 1px solid #DDE9FF;
    border-radius: 10px;
    background: #E3EBFA;
}
.notification-block.result{
    min-height: 0;
}
.notification-title{
    display: flex;
    align-items: center;
    font-size: 20px;
    line-height: 21px;
    font-weight: 500;

    img {
        width: 43px;
        height: 40px;
        margin-bottom: -4px;
    }
}
.notification-address-field{
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid #DDE9FF;
    height: 48px;
    padding: 10px 20px;
    font-size: 16px;
    line-height: 22px;
    border-radius: 40px;
    outline: none;
    width: 100%;
}
.notification-address-field::placeholder {
    color: #79818F;
    font-size: 16px;
}
.notification-result-wrap{
    position: relative;
    margin-top: 18px;
    padding: 12px 16px;
    border-radius: 20px;
}
.notification-result-wrap {
    display: none;
}
.notification-result-wrap.visible {
    display: block;
}
.notification-block.result .notification-result-wrap{
    margin-top: 18px;
}
.notification-result-wrap:before,
.notification-result-wrap:after{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: right bottom;
    z-index: 1;
    opacity: 0;
    transition: 0.3s 0s ease;
    @media (max-width: 650px) {
        background-position: center bottom;
    }
}
.notification-result-wrap:before{
    background-image: url("/local/components/mog/outage.notification/templates/.default/./images/outage-result.svg");
}
.notification-result-wrap:after{
    background-image: url("/local/components/mog/outage.notification/templates/.default/./images/outage-no-result.svg");
}
.notification-result{
    position: relative;
    font-size: 14px;
    color: #fff;
    line-height: 20px;
    z-index: 2;
}
.notification-result-wrap.result:before{
    opacity: 1;
}
.notification-result-wrap.no-result:after{
    opacity: 1;
}
.notification-result-wrap.result,
.notification-result-wrap.no-result{
    min-height: 235px;
    @media (max-width: 650px) {
        min-height: 330px;
    }
}
.notification-result-wrap.result .notification-result,
.notification-result-wrap.no-result .notification-result{
    max-width: 410px;
    font-size: 20px;
    line-height: 28px;
    color: #1e1e1e;
    @media (max-width: 650px) {
        text-align: center;
    }
}
.notification-checkbox-label{
    display: block;
    margin-top: 22px;
    cursor: pointer;
}
.notification-checkbox-label.hidden {
    display: none;
}
.notification-checkbox-text{
    display: block;
    position: relative;
    padding-left: 30px;
    font-size: 14px;
    line-height: 22px;
    min-height: 22px;
    transition: color 0.3s 0s ease;
}
.notification-checkbox-text:not(.active){
    color: #79818F;
}
.notification-checkbox-text:before,
.notification-checkbox-text:after{
    content: '';
    display: block;
    width: 22px;
    height: 22px;
    position: absolute;
    left: 0;
    top: 0;
    box-sizing: border-box;
}
.notification-checkbox-text:before{
    border: 1px solid #DDE9FF;
    border-radius: 4px;
    transition: border-color 0.3s 0s ease;
    background: #fff;
}
.notification-checkbox-text:not(.active):before{
    border-color: #D3D4DE;
}
.notification-checkbox-text:after{
    background-image: url("/local/components/mog/outage.notification/templates/.default/./images/check-blue.svg");
    background-repeat: no-repeat;
    background-position: 5px center;
    transition: 0.3s 0s ease;
    opacity: 0;
}
.notification-checkbox-input{
    position: absolute;
    left: -9999px;
    opacity: 0;
    visibility: hidden;
}
.notification-checkbox-input:checked + .notification-checkbox-text:after{
    opacity: 1;
}
.notification-submit{
    -webkit-appearance: none;
    appearance: none;
    border: none;
    display: flex;
    padding: 15px 35px;
    align-items: center;
    justify-content: center;
    height: 48px;
    font-size: 16px;
    line-height: 21px;
    color: #fff;
    background-color: #5AA9FD;
    border-radius: 40px;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.3s 0s ease;
    @media (max-width: 500px) {
        width: 100%;
    }
}
.notification-submit:hover{
    background: #6BB4FD;
}
.notification-submit.disabled{
    background-color: #F1F1F1;
    color: #79818F;
    pointer-events: none;
}
.notification-address-wrap{
    position: relative;
}
.notification-search-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    @media(max-width: 500px) {
        flex-direction: column;
        gap: 12px;
    }
}
.notification-address-list-wrapper{
    padding-top: 10px;
    position: absolute;
    left: 0;
    width: 100%;
    top: 100%;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s 0s ease;
    @media(max-width: 500px) {
        top: 40%;
    }
}
.notification-address-list-wrapper.active{
    opacity: 1;
    visibility: visible;
}
.notification-address-list{
    max-height: 294px;
    padding: 8px 0;
    overflow-y: auto;
    border: 1px solid #DDE9FF;
    background-color: #fff;
    border-radius: 20px;
}
.notification-address-list-item{
    font-size: 16px;
    line-height: 20px;
    padding: 8px 16px;
    cursor: pointer;
}
.notification-address-list-item:hover{
    background-color: #F1F6FF;
}
.notification-result-error{
    margin-top: 8px;
    font-size: 14px;
    line-height: 16px;
    color: red;
}
.notification-loader{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px;
    z-index: 10;
}
.loader {
    width: 48px;
    height: 48px;
    border: 3px solid #5aa9fd;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}
.loader::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-bottom-color: #ea7d18;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@media (max-width: 1140px){
    .notification-title{
        justify-content: space-between;
    }

    .notification-block-fixer{
        top: 250px;
    }
    .notification-block-wrapper{
        max-width: none;
    }
    /*.notification-block{*/
    /*    min-height: 316px;*/
    /*}*/
    .notification-result-wrap.result .notification-result,
    .notification-result-wrap.no-result .notification-result{
        padding-bottom: 50px;
    }
}
@media (max-width: 768px){
    .notification-block-fixer{
        top: 218px;
    }
    .notification-block-wrapper{
        max-width: none;
    }
    .notification-block{
        /*min-height: 386px;*/
        /*padding-bottom: 84px;*/
    }
    .notification-title{
        font-size: 18px;
        line-height: 22px;

        @media(max-width: 500px) {
            img {
                width: 40px;
                height: 38px;
                margin-bottom: 0;
            }
        }
    }
    .notification-address-field{
        height: 44px;
    }
    .notification-submit{
        height: 44px;
    }
    .notification-address-list{
        max-height: 250px;
    }
}

/* End */
/* /local/components/mog/outage.notification/templates/emergency/style.css?17624289517443 */
/* /local/components/mog/outage.notification/templates/.default/style.css?17624289517472 */
