

/* Start:/local/components/mog/to_date.search/templates/.default/style.css?177148696022345*/
.to-date-search-wrapper{
    margin-bottom: 30px;
    position: relative;
    padding: 28px;
    background-color: #F1F6FF;
    border-radius: 10px;
    /*margin-bottom: 75px;*/
}
.to-date-search-title{
    font-size: 28px;
    line-height: 36px;
}
.to-date-search-description{
    margin-top: 14px;
    font-size: 18px;
    line-height: 26px;
}
.to-date-search-inner{
    position: relative;
    margin-top: 26px;
    padding: 28px 20px;
    background-color: #E3EBFA;
    border-radius: 10px;
}
.to-notifications-wrapper {
    position: relative;
    display: none;
    margin-top: 8px;
    padding: 18px 20px 20px;
    background-color: #E3EBFA;
    border-radius: 10px;
    overflow: hidden;

    @media(max-width: 500px) {
        padding: 20px 16px;
    }

    .to-notifications-title {
        margin-bottom: 8px;
        font-size: 16px;
        line-height: 22px;
        color: #000;
        @media(max-width: 1140px) {
            max-width: 470px;
        }
        @media(max-width: 500px) {
            margin-bottom: 12px;
        }
    }

    .to-notifications-title.success-title {
        margin-bottom: 0;
        font-size: 18px;
        color: #000;
        @media(max-width: 1140px) {
            max-width: initial;
            font-size: 16px;
        }
        @media(max-width: 740px) {
            text-align: center;
        }
    }

    .to-notifications-actions-wrapper {
        display: flex;
        gap: 5px;

        .to-notifications-mkd-input-wrapper {
            display: flex;
            flex-direction: column;
            gap: 7px;
        }

        @media(max-width: 500px) {
            flex-direction: column;
            gap: 12px;
        }

        .to-notifications-mkd-input {
            max-width: 271px;
            height: 42px;
            @media(max-width: 1140px) {
                max-width: 339px;
            }
            @media(max-width: 500px) {
                max-width: 100%;
            }
        }
        .to-notifications-button {
            height: 42px !important;
            @media(max-width: 500px) {
                width: 100%;
            }
        }

        .to-notifications-button.disabled {
            color: rgba(255, 255, 255, 0.7);
        }

        .to-notifications-errors {
            display: none;
            font-size: 14px;
            font-weight: 500;
            color: #FD3B31;
            @media(max-width: 500px) {
                text-align: center;
            }
        }
    }

    .to-notifications-image {
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        @media(max-width: 666px) {
            display: none;
        }
    }

    .to-notifications-image.success-image {
        @media(max-width: 740px) {
            display: none;
        }
    }

    .to-notifications-image.success-image-mobile {
        display: none;
        @media(max-width: 740px) {
            display: block;
            position: initial;
        }
    }
}
.to-notifications-wrapper.success-wrapper {
    @media(max-width: 740px) {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        padding-top: 0;
    }
}
.to-date-search-inner.result:before,
.to-date-search-inner.no-result:after{
    opacity: 1;
    visibility: visible;
    transition: 0.3s 0s ease;
}
.to-date-search-form-wrapper{
    position: relative;
    z-index: 10;
}
.to-date-search-form{
    display: flex;
    flex-direction: column;
}
.to-date-search-form button{
    font-size: 18px;
    line-height: 22px;
    width: 160px;
    height: 52px;
}
.to-date-search-form-field{
    position: relative;
    width: 100%;
}
.to-date-search-form-input,
.to-date-search-mkd-form-input,
.to-notifications-mkd-input {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    border: none;
    border-radius: 40px;
    padding: 15px 45px 15px 24px;
    font-size: 18px;
    line-height: 22px;
    height: 52px;
    outline: none;
}
.to-date-search-form-clue {
    display: flex;
    gap: 5px;
    margin-top: 11px;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #79818F;

    svg {
        flex-shrink: 0;
    }
}
.to-date-search-form-input::placeholder,
.to-date-search-mkd-form-input::placeholder {
    font-size: 18px;
    color: #79818F;
}
.to-notifications-mkd-input::placeholder {
    font-size: 16px;
    color: #79818F;
}
.to-date-search-form-field-clear{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 100%;
    top:0;
    right: 1px;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.3s 0s ease;
    opacity: 0;
    visibility: hidden;
}
.to-date-search-form-field-clear.active{
    opacity: 1;
    visibility: visible;
}
.to-date-search-form-locality{
    position: absolute;
    top: 100%;
    padding-top: 8px;
    max-height: 230px;
    width: 100%;
    z-index: 100;
    transition: 0.3s 0s ease;
    opacity: 0;
    visibility: hidden;
}
.to-date-search-form-locality.active{
    opacity: 1;
    visibility: visible;
}
.to-date-search-form-locality-list{
    background-color: #fff;
    border-radius: 25px;
    box-shadow: 0 10px 20px 0 rgba(18, 67, 143, 0.05);
    padding: 12px 0;
    overflow: hidden;
    overflow-y: auto;
    max-height: 230px;
    background-position: right bottom;
    background-repeat: no-repeat;
}
.to-date-search-form-locality-item{
    padding: 6px 24px;
    transition: background-color 0.3s 0s ease;
    cursor: pointer;
    font-size: 18px;
    line-height: 22px;
}
.to-date-search-form-locality-item.error{
    cursor: default;
    color: #f40d0d;
}
.to-date-search-form-locality-item:hover,
.to-date-search-form-locality-item.active{
    background-color: #F1F6FF;
}
.to-date-search-form-locality.no-result .to-date-search-form-locality-list{
    background-image: url("/local/components/mog/to_date.search/templates/.default/./images/no-result.svg");
    pointer-events: none;
}
.to-date-search-result-wrapper{
    display: none;
}
.to-date-search-result{
    position: relative;
    z-index: 7;
    padding: 34px 0 10px 24px;
    font-size: 20px;
    line-height: 28px;
    transition: 0.3s 0s ease;

}
.to-date-search-result:not(.active){
    opacity: 0;
    visibility: hidden;
    min-height: 0;
    padding: 0;
}
.to-date-search-result .no-result{
    max-width: 402px;
}
.to-date-search-result .no-result a{
    margin-top: 10px;
    font-size: 18px;
    line-height: 24px;
    width: 170px;
    height: 52px;
    padding: 10px;
}
.to-date-search-result-title{
    position: relative;
    z-index: 10;
    font-size: 20px;
    line-height: 28px;
    max-width: 439px;
}
.to-date-search-result-info div {
    margin-bottom: 10px;
}
.to-date-search-result-completed-status {
    color: #13B249;
}
.to-date-search-result-planned-status {
    color: #5AA9FD;
}
.to-date-search-result-rejected-status {
    color: #F52618;
}
.to-date-search-result-additional {
    margin-top: 22px;
    font-size: 16px;
    line-height: 22px;
}
.to-date-search-result-image{
    position: absolute;
    width: 100%;
    right: 0;
    top: 0;
    height: 238px;
    z-index: 1;
}
.to-date-search-result-image:after,
.to-date-search-result-image:before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 449px;
    width: 100%;
    height: 100%;
    z-index: 5;
    transition: 0.1s ease;
    opacity: 0;
    visibility: hidden;
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
}
.to-date-search-result.status-completed .to-date-search-result-image:after {
    background-image: url('/local/components/mog/to_date.search/templates/.default/./images/result-complete.svg');
    opacity: 1;
    visibility: visible;
}
.to-date-search-result.status-rejected .to-date-search-result-image:after {
    background-image: url('/local/components/mog/to_date.search/templates/.default/./images/door-with-lock.svg');
    opacity: 1;
    visibility: visible;
}
.to-date-search-result.status-planned .to-date-search-result-image:after,
.to-date-search-result.status-disconnected .to-date-search-result-image:after,
.to-date-search-result.status-calculated .to-date-search-result-image:after {
    background-image: url('/local/components/mog/to_date.search/templates/.default/./images/result-planned.svg');
    opacity: 1;
    visibility: visible;
}
.to-date-search-result.status-error .to-date-search-result-image:after {
    background-image: url('/local/components/mog/to_date.search/templates/.default/./images/man-with-lock-and-plate.svg');
    opacity: 1;
    visibility: visible;
}
.to-date-search-result-description{
    position: relative;
    z-index: 10;
    max-width: 375px;
    margin-top: 20px;
    font-size: 16px;
    line-height: 20px;
    color: #79818F;
}

.mkd-hot-line {
    display: none;
}

.mkd-default-worker-image {
    display: none;
}

.mkd-search-info-wrapper {
    display: none;
}

.mkd-mobile-worker-image {
    display: none !important;
}

.mkd-to-date-search-mkd-result-subText {
    display: none;
}

.mkd-schedule-meeting-tablet {
    display: none;
    @media(max-width: 768px) {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 185px;
        margin-top: -10px;
        padding: 9px 12px;
        border-radius: 10px;
        background-color: #fff;
        cursor: pointer;
        opacity: 0.9;

        span {
            font-size: 15px;
            line-height: 17px;
            color: #12438F;
        }
    }
}

.mkd-schedule-meeting-tablet.mkd-schedule-last-year-tablet {
    @media(max-width: 768px) {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 124px;
        margin-top: 4px;
    }
}

.mkd-schedule-meeting-desktop {
    position: absolute;
    bottom: -45px;
    left: calc(50% - 41px);
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 290px;

    span {
        font-size: 15px;
        line-height: 17px;
        color: #12438F;
    }

    @media(max-width: 768px) {
        display: none;
    }
}

.mkd-schedule-meeting-desktop-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 185px;
    padding: 9px 12px;
    border-radius: 10px;
    background-color: #fff;
    cursor: pointer;
    opacity: 0.9;
}

.mkd-schedule-last-year-desktop {
    position: relative;

    width: 98px;
}

.mkd-schedule-last-year-icon {
    position: relative;
    width: 34px;
    height: 29px;

    svg {
        position: absolute;
        top: 50%;
        left: 50%;

        transform: translate(-50%, -50%);
    }
}

.mkd-schedule-last-year-popup-desktop {
    z-index: 1;

    position: absolute;
    bottom: 100%;
    left: 50%;

    width: 272px;
    min-height: 76px;
    padding: 18px;
    margin-bottom: 18px;

    transform: translateX(-50%);
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0 10px 20px 0 rgba(98, 123, 162, 0.20);
    opacity: 0;
    visibility: hidden;
    transition: opacity  0.3s ease;
}

.mkd-schedule-last-year-popup-desktop.active {
    opacity: 1;
    visibility: visible;
}


.mkd-schedule-last-year-popup-desktop.completed {
    width: 316px;
}

.mkd-schedule-last-year-popup-text {
    color: #1E1E1E !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 20px !important;
}

.mkd-schedule-meeting-modal {
    max-width: 581px !important;

    .schedule-meeting-modal-title {
        font-size: 28px !important;
        line-height: 33px !important;
        @media(max-width: 540px) {
            text-align: start !important;
            font-size: 18px !important;
            line-height: 24px !important;
        }
    }

    .schedule-meeting-modal-content {
        max-height: 450px !important;
    }

    .schedule-meeting-modal-name-wrapper {
        margin-bottom: 21px;
        .schedule-meeting-modal-name {
            font-weight: 700;
        }
    }

    .schedule-meeting-modal-items-wrapper {
        display: flex;
        flex-direction: column;
        gap: 10px;

        .schedule-meeting-modal-item {
            display: flex;

            .schedule-meeting-modal-item-number {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
                width: 30px;
                height: 30px;
                margin-right: 10px;
                color: #12438F;
                background-color: #EDF4FF;
                -webkit-border-radius: 50%;
                -moz-border-radius: 50%;
                border-radius: 50%;
            }

            .schedule-meeting-modal-item-date {
                margin-right: 5px;
                font-weight: 700;
            }
        }

        .mkd-schedule-last-year-popup-text {
            display: block;
            padding: 24px 28px 4px;

            color: #1E1E1E;

            text-align: center;
            font-size: 16px;
            font-weight: 400;
            line-height: 20px;
        }

    }

    @media(max-width: 768px) {
        .schedule-meeting-modal-content {
            max-height: 50vh !important;
        }
    }
}

.mkd-default-worker-image-wrapper {
    z-index: 10;
    position: relative;
    max-height: 205px;
}

@media(max-width: 1100px) {
    .mkd-default-worker-image-wrapper {
        max-height: 170px;
    }
}

.to-date-mkd-search {
    .to-date-search-form-input {
        display: none;
    }

    .ijs-search-clue {
        display: none;
    }

    .not-mkd-search-info-wrapper {
        display: none;
    }

    .to-date-search-result {
        display: flex;
        justify-content: space-between;

        @media(max-width: 768px) {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
    }

    .mkd-search-info-wrapper {
        display: block;

        @media(max-width: 768px) {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
    }

    .to-date-search-result-image {
        display: none;
    }

    .mkd-default-worker-image {
        display: block;
        width: 205px;
        height: 205px;
        overflow: hidden;
        border-radius: 50%;
        background-position: center;
        background-size: cover;

        @media(max-width: 1100px) {
            width: 170px;
            height: 170px;
        }
        @media(max-width: 768px) {
            display: none;
        }
    }

    .to-date-search-result-description {
        position: relative;
        z-index: 10;
        max-width: 375px;
        margin-top: 20px;
        font-size: 20px !important;
        line-height: 28px !important;
        color: #1E1E1E;

        @media(max-width: 1100px) {
            font-size: 18px !important;
            line-height: 24px !important;
        }

        @media(max-width: 768px) {
            margin: 20px 0 0;
            width: 100%;
            .mkd-to-date-search-mkd-result-description {
                text-align: center;
                margin-bottom: 15px;
                font-size: 16px;
            }
        }
    }

    .to-date-search-result-description-worker-name {
        font-size: 20px;
        line-height: 28px;
        font-weight: 700;
        color: #1E1E1E;

        @media(max-width: 1100px) {
            font-size: 18px !important;
            line-height: 24px !important;
        }
    }

    .to-date-search-result-completed-status {
        color: #13B249;
        font-weight: 700;
    }

    .to-date-search-result-rejected-status {
        color: #F52618;
        font-weight: 700;
    }

    .to-date-search-result-planned-status {
        font-weight: 700;
    }

    .mkd-button {
        border-radius: 10px;
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 20px !important;
        margin-top: 20px !important;

        .mkd-hot-line {
            display: block;
            font-size: 11px;
            line-height: 22px;
            font-weight: 500;
            letter-spacing: 1px;
            opacity: 0.7;
        }

        @media(max-width: 768px) {
            display: flex;
            align-items: center;
            width: 100%;
            font-size: 16px;
            line-height: 26px;
            margin-top: 0 !important;
            padding: 0 0 10px !important;
            height: 58px !important;

            .mkd-hot-line {
                font-size: 10px;
                line-height: 22px;
            }
        }
    }

    .mkd-to-date-search-mkd-result-subText {
        display: block;
        color: #79818F;
        max-width: 453px;
        font-size: 16px;
        line-height: 20px;
        margin: 8px 0 0 24px;

        @media(max-width: 768px) {
            text-align: center;
            margin: 17px auto 0;
        }
    }

    .mkd-to-date-search-mkd-result-subText.mkd-to-date-lkk-link {
        margin: 24px 0 0 24px;
        color: #1e1e1e;
        a {
            color: #12438F;
        }
        @media(max-width: 768px) {
            text-align: center;
            margin: 11px auto 0;
        }
    }

    @media(max-width: 768px) {
        .mkd-mobile-worker-image {
            display: block !important;
            width: 182px;
            height: 182px;
            overflow: hidden;
            border-radius: 50%;
            margin-top: 20px !important;
            background-position: center;
            background-size: cover;
        }
    }
}

.to-date-ijs-search {
    .to-date-search-mkd-form-input {
        display: none;
    }

    .mkd-search-clue {
        display: none;
    }
}

.to-date-search-result-quality-text {
    position: relative;
    z-index: 10;
    max-width: 435px;
    margin-top: 30px;
    font-size: 16px;
    line-height: 22px;
    color: #333;
}

.to-date-search-result-description .button{
    margin-top: 11px;
    display: inline-flex;
    font-size: 18px;
    line-height: 26px;
    padding: 10px 31px;
}
.to-date-search-result-description .button svg{
    margin-left: 12px;
}
.to-loader{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}
.to-loader .loader {
    width: 24px;
    height: 24px;
    border: 3px solid #5aa9fd;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}
.to-loader .loader::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-bottom-color: #ea7d18;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@media screen and (max-width: 1100px){
    .to-date-search-wrapper{
        padding: 28px 20px 20px;
    }
    .to-date-search-title{
        font-size: 20px;
        line-height: 24px;
    }
    .to-date-search-description{
        margin-top: 15px;
        font-size: 16px;
        line-height: 22px;
    }
    .to-date-search-inner{
        margin-top: 22px;
    }
    .to-date-search-inner{
        padding: 25px 20px;
    }
    .to-date-search-form-input,
    .to-date-search-mkd-form-input{
        height: 48px;
        padding: 10px 45px 10px 24px;
    }
    .to-date-search-result{
        padding-top: 22px;
        padding-bottom: 1px;
    }
    .to-date-search-result-title{
        font-size: 18px;
        line-height: 24px;
    }
    .to-date-search-result-description{
        margin-top: 16px;
    }
    .to-date-search-result-quality-text {
        margin-top: 16px;
    }
    .to-date-search-result-description .button{
        height: 42px;
        line-height: 22px;
        padding: 10px 25px;
    }
    .to-date-search-result-image{
        height: 193px;
        bottom: -13px;
    }
}
@media screen and (min-width: 600px){
    .to-date-search-form-input.mobile,
    .to-date-search-mkd-form-input.mobile{
        display: none;
    }
}
@media screen and (max-width: 767px){
    .to-date-search-wrapper{
        padding: 20px;
    }
    .to-date-search-title{
        font-size: 18px;
        line-height: 26px;
    }
    .to-date-search-description{
        margin-top: 10px;
    }
    .to-date-search-description br{
        display: none;
    }
    .to-date-search-inner{
        margin-top: 20px;
        padding: 24px 16px;
    }
    .to-date-search-form-input,
    .to-date-search-mkd-form-input{
        height: 45px;
        font-size: 16px;
        border-radius: 30px;
    }
    .to-date-search-form-locality-list{
        padding: 10px 0;
        border-radius: 20px;
    }
    .to-date-search-form-locality-item{
        padding: 5px 16px;
        font-size: 16px;
        line-height: 22px;
    }
    .to-date-search-result{
        padding: 20px 0 0 0;
        text-align: center;
    }
    .to-date-search-result-title{
        font-size: 16px;
        line-height: 22px;
        margin: 0 auto;
    }
    .to-date-search-result-title br{
        font-size: 16px;
        line-height: 22px;
    }
    .to-date-search-result-image{
        position: relative;
        bottom: auto;
        right: auto;
        height: 59vw;
        max-height: 220px;
        width: auto;
        margin: 0 -7px;
    }
    .to-date-search-result-image:before, .to-date-search-result-image:after{
        background-position: bottom center;
        width: 100%;
        max-width: 100%;
    }
    .to-date-search-result-description{
        margin: 7px auto 0;
    }
    .to-date-search-result-quality-text {
        margin: 7px auto 0;
    }
    .to-date-search-result-description .button{
        margin-top: 10px;
        font-size: 16px;
        height: 37px;
        padding: 6px 21px 6px 25px;
    }
    .to-date-search-result-description .button svg{
        margin-left: 8px;
    }
}
@media screen and (max-width: 601px){
    .to-date-search-form-input::placeholder,
    .to-date-search-mkd-form-input::placeholder {
        font-size: 16px;
        color: #79818F;
    }
    .to-date-search-result{
        text-align: start;
    }
    .to-date-search-result-description {
        text-align: center;
    }
    .to-date-search-result-info {
        margin-left: 25px;
    }
}

/* End */
/* /local/components/mog/to_date.search/templates/.default/style.css?177148696022345 */
