

/* Start:/bitrix/components/nastart/cookies/templates/module/style.css?17724417288243*/
body {

    position: relative;
}

.nw-cookies-modal-settings {
    .nw-cookies-type-desc {
        padding: 0 0 0 24px;
    }
}

.nw-cookies-modal {
    position: fixed;
    background-color: #f9f9f9;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 20px;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
}

.nw-cookies-modal.nw-cookies-show {
    transform: translateY(0);
    opacity: 1;
}

.nw-cookies-modal-primary {
    bottom: 30px;
    right: 0;
    transform: translateX(-5%) translateY(100%);
    width: 500px;
    max-width: 95%;
    opacity: 0;

    @media(max-width: 992px) {
        width: 100%;
        bottom: 0;
        max-width: 100%;
    }

}

.nw-cookies-modal-primary.nw-cookies-show {
    transform: translateX(-5%) translateY(0);

    @media(max-width: 992px) {
        transform: translateX(0%) translateY(0);
    }
}

.nw-cookies-text {
    margin-bottom: 30px !important;
}

.nw-cookies-modal-settings {
    padding: 40px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    width: 930px;
    max-width: 90%;
    height: auto;
    visibility: hidden;
    transition: all 0.3s ease;
    position: fixed;

    @media(max-width: 992px) {
        padding: 20px;
    }
}

.nw-cookies-modal-settings.nw-cookies-show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;


}

.nw-cookies-modal-primary a,
.nw-cookies-modal-settings a {
    color: #bbb;
    transition: 300ms;
    text-decoration: none;
}

.nw-cookies-modal-primary a:hover,
.nw-cookies-modal-settings a:hover {
    color: var(--cookies-link-hover-color);
}

.nw-cookies-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.nw-cookies-modal-header h2 {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    color: #000;
}

.nw-cookies-close-btn {
    cursor: pointer;
    font-size: 22px;
    color: #999;
    background: none;
    border: none;
    display: none;
    /* отобразить крестик*/

}

.nw-cookies-modal-content {
    margin-bottom: 25px;
    overflow-y: auto;
    max-height: calc(80vh - 130px);
    /* Account for header and buttons */
    padding-right: 5px;
}

@media(max-width: 992px) {
    .nw-cookies-modal-content {
        margin-bottom: 0;
    }

    .nw-cookies-modal-primary {
        .nw-cookies-modal-actions-btns {
            flex-direction: column-reverse;
        }
    }
}

.nw-cookies-modal-content p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: clamp(12px, 1.3vw, 14px);
    line-height: 140%;
    color: #6b6b6b;
    margin-bottom: 10px;
}

@media(max-width: 992px) {
    .nw-cookies-modal-actions>div {
        display: flex;
        gap: 10px;
        flex-direction: column;
    }
}

.nw-cookies-modal-actions {
    display: flex;
    justify-content: space-between;


    @media(max-width: 992px) {
        flex-direction: column;
        gap: 10px;


        button {
            width: 100%;
        }
    }

}

.nw-cookies-modal-actions-btns {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row-reverse;

    width: 100%;

    @media(max-width: 992px) {
        flex-direction: column-reverse;
        gap: 10px;
    }
}

.nw-cookies-btn {
    cursor: pointer;
    transition: .3s ease all;
    border: none;
}

.nw-cookies-btn-cancel {
    background: transparent;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: clamp(14px, 1.3vw, 16px);
    color: #000;
}

.nw-cookies-btn-cancel:hover {
    opacity: .6;
}


.nw-cookies-btn-accept {
    background: transparent;

    border: 1px solid #000;
    padding: 10px 20px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: clamp(14px, 1.3vw, 16px);
    color: #000;
}

.nw-cookies-btn-accept-all {
    background-color: var(--cookies-btn-accept-all-btn-color);

    border: 1px solid var(--cookies-btn-accept-all-btn-color);
    padding: 10px 20px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: clamp(14px, 1.3vw, 16px);
    color: var(--cookies-btn-accept-all-btn-text-color);
}

.nw-cookies-btn-accept:hover,
.nw-cookies-btn-accept-all:hover {
    opacity: .6;
}

.nw-cookies-settings {
    margin-top: 20px;
}

.nw-cookies-type {
    margin-bottom: 25px;
    border-bottom: 1px solid #b7b7b7;
    padding-bottom: 15px;
}

.nw-cookies-type:last-child {
    border-bottom: none;
}

.nw-cookies-checkbox-container {
    margin-bottom: 5px;
    position: relative;
}

.nw-cookies-checkbox-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.nw-cookies-checkbox-container input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    cursor: pointer;
    width: 20px;
    height: 20px;
    margin: 0;
    z-index: 2;
}

.nw-cookies-checkbox-container input[type="checkbox"]+label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    display: inline-block;
}

.nw-cookies-checkbox-container input[type="checkbox"]+label:before {
    content: '';
    position: absolute;
    left: 0px;
    top: 1px;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 1px solid black;
    transition: all 0.3s ease;
}

.nw-cookies-checkbox-container input[type="checkbox"]:checked+label:before {
    background: #000;
    border-color: #000;
}

.nw-cookies-checkbox-container input[type="checkbox"]:checked+label:after {
    content: '';
    position: absolute;
    left: 5px;
    top: 6px;
    width: 11px;
    height: 9px;
    background-image: url("data:image/svg+xml,%3Csvg width='11' height='8' viewBox='0 0 11 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4.00008L3.82843 6.82851L9.48498 1.17163' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.nw-cookies-type-title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    color: #000;
}

.nw-cookies-type-desc {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #6b6b6b;
    margin-top: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, margin 0.3s ease;
    padding: 0;
    margin: 0;
}

.nw-cookies-type-desc.open {
    max-height: 200px;
    padding-top: 12px;
    margin-top: 8px;
    border-top: 1px solid #f0f0f0;
}

.nw-cookies-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.nw-cookies-overlay.nw-cookies-show {
    opacity: 1;
    visibility: visible;
}

.nw-cookies-modal-settings {
    .nw-cookies-modal-content {
        margin-bottom: 0;
    }

    .nw-cookies-type:last-child {
        margin-bottom: 20px;
    }
}

.nw-cookies-technical input[type="checkbox"] {
    cursor: not-allowed;
}

.nw-cookies-modal-settings-title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: clamp(24px, 1.4vw, 32px);
    color: #000;
}

.nw-cookies-modal-settings-subTitle {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    color: #000;
    margin-bottom: 15px;
}

.nw-cookies-accordion {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 4px;
    transition: transform 0.3s ease;
}

.nw-cookies-accordion svg {
    transition: transform 0.3s ease;
}

.nw-cookies-accordion.active svg {
    transform: rotate(180deg);
}
/* End */


/* Start:/local/templates/ech/styles.css?177244178059*/
﻿@charset "UTF-8";

@import url("/local/templates/ech/assets/css/style.css");

/* End */
/* /bitrix/components/nastart/cookies/templates/module/style.css?17724417288243 */
/* /local/templates/ech/styles.css?177244178059 */
