/*cookies*/
.cookies,
.cookies-start {
    --coockie-color: #222222;
    --coockie-dark: #222222;
    --cookie-primary: #008D47;
}

.cookies-start {
    display: none;
    align-items: flex-end;
    justify-content: center;
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 100;
    width: 1217px;
    max-width: 640px;
    height: auto;
    transition: opacity .3s;
    opacity: 0;
    background: white;
    box-shadow: 0px 0px 15px 0px #2222221A;
    border-radius: 16px;
}

.cookies-start.show-modal {
    opacity: 1;
}

.cookies-start .form {
    display: flex;
    flex-direction: column;
    padding: 18px;
    gap: 16px;
    width: 100%;
    text-align: left;
    color: var(--coockie-dark);
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;

}

.cookies-start .popup-text-info__btn {
    display: flex;
    gap: 16px;
    align-items: center;
}


/*.cookies-start .btn-red,*/
/*.cookies-start .btn-cookies-stroke,*/
/*.cookies-start .btn-cookies-bg,*/
/*.cookies .btn-red,*/
/*.cookies .btn-cookies-stroke,*/
/*.cookies .btn-cookies-bg {*/
/*    display: inline-block;*/
/*    padding: 8px 16px;*/
/*    font-size: 15px;*/
/*    line-height: 160%;*/
/*    border-radius: 20px;*/
/*    cursor: pointer;*/
/*}*/

/*.cookies-start .btn-red, .cookies .btn-red{*/
/*    border: none;*/
/*    background: #E31E24;*/
/*    color: #fff;*/
/*}*/

.cookies-start .btn-cookies-stroke {
    /*border: 1px solid #E31E24;*/
    /*border-radius: 100px;*/
    /*background: transparent;*/
    /*color: #E31E24;*/
}

.cookies-start .btn-cookies-bg {
    background: #F5F7F9;
    border: none;
}

.cookies-start .btn-cookies,
.cookies .btn-cookies {
    position: relative;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 750;
    line-height: normal;
    cursor: pointer;
    overflow: hidden;
    border: unset;
    background-color: #fff;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    color: #202526;
    border: 1px solid #202526;
    padding: calc(100vw / (var(--vwidth) / 15)) calc(100vw / (var(--vwidth) / 35));
}

.cookies-start .btn-cookies span,
.cookies .btn-cookies span {
    position: relative;
    z-index: 2;
}

.cookies-start .btn-cookies:hover,
.cookies .btn-cookies:hover {
    border-color: #181818;
}

.cookies-start .btn-cookies-fill,
.cookies .btn-cookies-fill {
    background: #181818;
    color: white;
}

.cookies .btn-cookies-fill {
    margin: 32px auto 0;
}

.cookies-start .btn-cookies-fill:hover,
.cookies .btn-cookies-fill:hover {
    background: #444444;
}

/*.cookies-start .cookies-settings,*/
/*.cookies .cookies-settings {*/
/*    color: var(--coockie-dark);*/
/*    background-color: #00ADEF;*/
/*    border: unset;*/
/*    color: white;*/
/*}*/

.cookies-start .btn-cookies-border,
.cookies .btn-cookies-border {
    border: 1px solid var(--coockie-dark);
    color: var(--coockie-dark);
}

.cookies-start .btn-cookies-border:hover,
.cookies .btn-cookies-border:hover,
.cookies-start .cookies-settings:hover,
.cookies .cookies-settings:hover {
    box-shadow: 1px 1px 2px 0px #18181857;
}

.btn-cookies::before {
    content: '';
    position: absolute;
    background: var(--theme-color3);
    width: 100%;
    max-width: 0px;
    height: 100%;
    left: 0;
    top: 0;
    transition: all .5s ease;
    z-index: 1;
}

.cookies-start .popup-text-info__text {
    padding: 0;
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

.cookies-start .popup-text-info__text a {
    color: var(--cookie-primary);
    text-decoration: underline;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    line-height: inherit;
    position: relative;
}


.cookies-start .popup-text-info__text a:hover {
    text-decoration: none;
}

.cookies {
    position: fixed;
    display: none;
    align-items: center;
    justify-content: center;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    background: rgba(11, 11, 11, .8);
    opacity: 0;
    transition: .3s;
}

.show-modal {
    opacity: 1;
}

.cookies__inner {

}

.cookies__wrapper {
    background: white;
    position: relative;
    width: 800px;
    max-width: calc(100% - 32px);
    border-radius: 20px;
}

.cookies__scroll {
    max-height: min(700px, 65dvh);
    overflow-y: auto;
    padding-right: 20px;
}

.cookies__scroll::-webkit-scrollbar {
    width: 6px;
    height: 0;
    background: rgba(0, 0, 0, 0.11);
    border-radius: 6px;

}

.cookies__scroll::-webkit-scrollbar-thumb {
    border-radius: 0%;
    background: var(--coockie-dark);
    border-radius: 6px;
}

.cookies__scroll::-webkit-scrollbar-corner {
    background: transparent;
}


.cookies__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    color: var(--coockie-color);
    padding: 16px 60px 16px 24px;
    background-color: #F8F8F8;
    border-radius: 16px 16px 0 0;
    margin: 0;
}

.cookies__body {
    padding: 24px 20px;
}

.cookies-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookies-text,
.cookies-text p {
    color: var(--coockie-dark);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin: 0;
}

.cookies__body .cookies-text a {
    color: var(--cookie-primary);
    text-decoration: underline;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    line-height: inherit;
    position: relative;
}

.cookies__body .cookies-text a:hover {
    text-decoration: none;
}

.cookies-text p:nth-last-child(1) {
    margin-bottom: 0;
}

.cookies__checkboxes {
    margin-top: 32px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}

.cookies__check {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.cookies__check label {
    display: flex;
    align-items: center;
}


.cookies__check input {
    opacity: 0;
    width: 0;
    height: 0;
    z-index: -1;
    position: absolute;
}

.cookies__check_sq {
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin: 3px;
    display: block;
    border-radius: 4px;
    transition: all ease .3s;
    cursor: pointer;
    margin-right: 10px;
    position: relative;
    background: transparent;
    background-position: center;
    background-size: 14px 11px;
    background-repeat: no-repeat;
    box-sizing: border-box;
    border: 2px solid var(--coockie-dark);
}

.cookies__check-header {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    cursor: pointer;
}


.cookies__check-header .cookies__check_title {
    margin-bottom: 0;
}


.toggle__icon {
    background: #F8F8F8;
    border: 1px solid #22222233;
    transition: all .25s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    cursor: pointer;
    border-radius: 4px;
}

.toggle__icon svg {
    display: none;
}


.cookies__check_inp:disabled + .toggle__icon {
    opacity: 0.4;
    pointer-events: none
}

.cookies__check_inp:checked + .toggle__icon {
    background: var(--cookie-primary);
    border-color: var(--cookie-primary);
}

.cookies__check_inp:checked + .toggle__icon svg {
    display: block;
}

.cookies__check_title {
    margin-top: 0;
    margin-bottom: 0;
    color: var(--coockie-dark);
    font-weight: 700;
    font-size: 18px;
    line-height: 130%;
    text-transform: uppercase;
}

.cookies__check_text {
    margin-bottom: 0;
    width: 100%;
    color: var(--coockie-dark);
    opacity: 0.7;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

p.cookies__check_text, p.cookies__check_text:last-child {
    margin-top: 8px;
}

.cookies__check-wrap {
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #2222221A;
}

.cookies__check-wrap:last-child {
    border-bottom: none;
}


.cookies-close {
    position: absolute;
    right: 24px;
    top: 18px;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    outline: none;
    border: none;
    border-radius: unset;
    cursor: pointer;
    background-color: var(--cookie-primary);
    border-radius: 50%;
    color: #fff;
}

.cookies-close:hover {
    color: #fff;
}

.cookies__bottom {
    margin-bottom: 30px;
    color: var(--coockie-dark);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.cookies .cookies__bottom p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: var(--coockie-dark);
}

.cookies .cookies__bottom a {
    color: var(--cookie-primary);
    text-decoration: underline;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    line-height: inherit;
}


.cookies .cookies__bottom a:hover {
    text-decoration: none;
}


.cookies-text a {
    color: var(--coockie-color);
    text-decoration: underline;
    position: relative;
    max-width: max-content;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.cookies-text a:hover {
    color: var(--coockie-color);
    text-decoration: unset;
}

.cookies--hidden {
    opacity: 0;
    pointer-events: none
}

.cookies__notification {
    display: flex;
    align-items: flex-start;
    padding: 16px 10px;
    border-radius: 10px;
    background: #fbeff1;
}

.cookies__notification p {
    margin-bottom: 0;
}

.cookies__notification::before {
    content: "";
    display: block;
    min-width: 18px;
    margin-right: 12px;
    margin-top: 3px;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath stroke='%23FFF' stroke-linecap='square' stroke-width='1.3' d='M6 12l4 4 8-8'/%3E%3Ccircle cx='16' cy='16' r='16' fill='%23E02020'/%3E%3Cpath d='M14 7h5l-1 12h-3zm1 15h3v3h-3z' fill='%23FFF'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.cookies ol li, .cookies ul li {
    position: relative;
    padding-left: 25px;
    font-size: 1.125rem;
    color: #404040;
    letter-spacing: .02em;
    width: 100%;
    text-align: left;
}

.cookies ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: .5rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

@media screen and (max-width: 992px) {
    .cookies-start .btn-cookies,
    .cookies .btn-cookies {
        padding: 16px 24px;
    }

    .cookies-start .form {
        flex-direction: column;
        font-size: 15px;
    }

    .cookies__body{
        padding: 16px 10px;
    }

    .cookies__title {
        font-size: 22px;
        font-style: normal;
        line-height: 120%;
        padding: 10px 46px 16px 10px;
    }

    .cookies__inner {
        padding: 24px 6px 24px 16px;
    }

    .cookies-text p {
        color: var(--coockie-dark);
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 140%;
    }

    .cookies-close {
        right: 12px;
        top: 16px;
    }

    .cookies__check_sq {
        margin-right: 8px;
    }

    p.cookies__check_text, p.cookies__check_text:last-child {
        margin-top: 12px;
    }


    .cookies__check-wrap {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .cookies__checkboxes {
        margin-top: 20px;
    }

    .cookies__bottom {
        margin-top: 4px;
    }

    .cookies-start .btn-cookies, .cookies .btn-cookies {
        padding: 12px 24px;
    }
}

@media (max-width: 991px) {
    .cookies-start .popup-text-info__btn {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 16px;
    }

    .cookies__check_title {
        font-size: 16px;
    }

    .cookies-start {
        width: calc(100% - 40px);
        bottom: 86px;
    }
}

@media (max-width: 768px) {
    .cookies-start .btn-cookies, .cookies .btn-cookies {
        font-size: 14px;
    }

    .sorting-map {
        display: flex;
        flex-direction: column-reverse;
        gap: 32px;
        margin-top: -90px;
    }

    #map {
        position: static !important;
        width: 100%;
        height: min(660px, 100dvh);
    }

    .sorting-map .sorting-map-panel {
        width: 100%;
    }

    .sorting-map .card-body {
        padding: 0;
    }

    .sorting-map .shadow {
        box-shadow: unset !important;
    }

    .sorting-map .select-title section {
        padding: 0 12px;
    }

    .sorting-map .select-title {
        position: relative;
    }

    .sorting-map .select-title::before {
        content: "";
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='17' viewBox='0 0 16 17' fill='none'%3E%3Cpath d='M13 6.38464L8 11.3846L3 6.38464' stroke='%23212529' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        width: 16px;
        height: 17px;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
    }

    .sorting-map .sorting-map-panel .select .select-list {
        display: block;
        border: unset;
        padding: 0;
        margin: 0;
    }

    .sorting-map .select.o .select-title::before {
        transform: translateY(-50%) scale(1, -1);
    }

    .sorting-map .select-title section span {
        color: #000;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 135%;
        padding: 9px 0;
    }

    .map-droppable__trigger {
        height: 40px;
        padding: 0 20px;
        border: 1px solid;
        border-radius: 7px;
        cursor: pointer;
        user-select: none;
        position: relative;
        color: #000;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 135%;
        padding: 9px 12px;
    }

    .map-droppable__trigger::before {
        content: "";
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='17' viewBox='0 0 16 17' fill='none'%3E%3Cpath d='M13 6.38464L8 11.3846L3 6.38464' stroke='%23212529' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        width: 16px;
        height: 17px;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
    }

    .drop .map-droppable__list {
        grid-template-rows: 1fr;
    }

    .drop .map-droppable__trigger::before {
        transform: translateY(-50%) scale(1, -1);
    }

    .drop .map-droppable__list_inner,
    .sorting-map .sorting-map-panel .select.o .select-list {
        padding-top: 12px;
    }

    .o .select-list__outer {
        grid-template-rows: 1fr;
    }

    .select-list__outer {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid .3s;
        overflow: hidden;
    }

    .select-list__outer .select-list {
        min-height: 0px;
        padding: 15px 10px;
        transition: padding .3s;
    }

    .map-droppable__list {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid .3s, padding .3s;
        overflow: hidden;
    }

    .map-droppable__list_inner {
        min-height: 0px;
        padding: 0 10px;
        transition: padding .3s;
    }

    .sorting-map .container {
        padding-bottom: 0;
    }
}