.cookies-start {
    display: none;
    align-items: flex-end;
    justify-content: center;
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: 100%;
    height: auto;
    transition: opacity 0.3s;
    opacity: 0;
    max-width: 1292px;
    border-radius: 6px;
    background: #FFF;
    box-shadow: 0px 0px 20px 0px rgba(150, 150, 150, 0.25);
}

@media (max-width: 1360px) {
    .cookies-start {
        left: 20px;
        right: 20px;
        transform: translateX(0);
        width: fit-content;
    }
}


@media (max-width: 1024px) {
    .cookies-start{
        width: 330px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }
}

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

.cookies-start .form {
    background: #F2EEE2;
    display: flex;
    min-width: 50%;
    align-items: center;
    min-height: unset;
    padding: 12px 20px;
    gap: 24px;
    border-radius: 8px;
    width: 100%;
    color: #60605C;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

@media (max-width: 1024px) {
    .cookies-start .form{
        flex-direction: column;
        background-color: #fff;
        padding: 16px;
    }
}


.cookies-start  .popup-text-info__title{
    display: none;
}

@media (max-width: 1024px) {
    .cookies-start  .popup-text-info__title{
        display: block;
        font-weight: 500;
        font-size: 20px;
        line-height: 140%;
        text-transform: uppercase;
        color: #001801;
        margin-bottom: 8px;
    }
}

.cookies-start .marketing-popup .popup-text-info__text {
    padding: 0;
}

.cookies-start .popup-text-info__btn {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 16px;
    flex: none;
}

@media (max-width: 1024px) {
    .cookies-start  .popup-text-info__btn{
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .cookies-start .popup-text-info__btn .btn-default{
        font-size: 16px;
        font-weight: 400;
    }
}

.cookies ol li, .cookies ul li {
    position: relative;
    padding-left: calc(100vw / (var(--vwIdth) / 25));
    font-size: 1.125rem;
    color: #404040;
    letter-spacing: 0.02em;
    width: 100%;
    text-align: left;
}

.cookies ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: calc(100vw / (var(--vwIdth) / 10));
    height: calc(100vw / (var(--vwIdth) / 10));
    border-radius: 50%;
}

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

@media (max-width: 1024px) {
    .cookies{
        padding: 12px;
    }
}

.show-modal {
    opacity: 1;
}

.cookies__inner {
    background: white;
    border-radius: 20px;
    position: relative;
    padding: 60px 40px 50px;
    padding-right: 15px;
    width: 800px;
    max-width: 96vw;
}

@media (max-width: 1024px) {
        .cookies__inner{
            padding:40px  16px 16px;
            max-width: unset;
            max-height: 100%;
        }
}

.cookies__wrapper {
    max-height: 85vh;
    overflow-y: auto;
    padding-right: 15px;
}

.cookies__wrapper::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.cookies__wrapper::-webkit-scrollbar-track {
    border-radius: 5px;
}

.cookies__wrapper::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: var(--color-secondary);
}

.cookies__wrapper::-webkit-scrollbar-thumb:window-inactive-thumb {
    background: #ccc;
    background: var(--color-secondary);
    border: 2px solid #fff;
    border-color: #000;
}

.cookies__wrapper > img {
    width: 360px;
    max-width: 80%;
}

.cookies__title {
    color: var(--color-secondary);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 15px;
}

.cookies__check-wrap {
    margin-top: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #D7CFB5;
}

.cookies__check_title {
    margin-top: 0;
    margin-bottom: 0;
    color: #0B0B0A;
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    cursor: pointer;
    user-select: none;
}

@media (max-width: 1024px) {
    .cookies__check_title{
        font-size: 17px;
    }
}

.cookies__check_text {
    margin-bottom: 0;
    width: 100%;
    margin-top: 15px;
    color: #60605C;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
}

.cookies-text {
    font-size: 16px;
    line-height: 1.5;
    color: #0B0B0A;
}

@media (max-width: 1024px) {
    .cookies-text{
        font-size: 14px;
        line-height: 1.3;
    }
}

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

.cookies-close {
    position: absolute;
    right: 30px;
    top: 25px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    outline: none;
    border: none;
    border-radius: unset;
    cursor: pointer;
}

@media screen and (max-width:1024px) {
    .cookies-close {
        top: 5px;
        right: 5px;
    }
}

.cookies__bottom {
    margin-top: 20px;
    color: #0B0B0A;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.cookies__bottom a {
    color: var(--color-secondary);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    text-decoration-line: underline;
    display: inline;
}

@media (max-width: 1024px) {
    .cookies__bottom, .cookies__bottom a{
        font-size: 14px;
        line-height: 1.3;
    }
}

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

.cookies-close::before {
    content: "";
    height: 75%;
    width: 2px;
    background: #BA9F75;
    position: absolute;
    left: 50%;
    top: 3px;
    transition: 0.3s;
    transform: rotate(45deg);
}

.cookies-close::after {
    content: "";
    height: 75%;
    width: 2px;
    background: #BA9F75;

    position: absolute;
    left: 50%;
    transition: 0.3s;
    top: 3px;
    transform: rotate(-45deg);
}

.cookies-close svg {
    display: none;
}

.cookies-close:hover:after, .cookies-close:hover:before {
    background: var(--color-secondary-hover);
}

.cookies__check {
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
    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;
    height: 18px;
    display: block;
    flex: none;
    border: 1px solid #D7CFB5;
    transition: all ease 0.3s;
    cursor: pointer;
    margin-right: 10px;
    position: relative;
    border-radius: 2px;
}

.cookies__check_sq:before{
    content: "";
    position: absolute;
    background-color: #CDA752;
    width: 8px;
    height: 8px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 2px;
    opacity: 0;
    transition: 0.2s ease;
}

label:hover .cookies__check_sq:before {
    opacity: 1;

}

input:checked ~ .cookies__check_sq:before {
    opacity: 1;
}

input:disabled ~ .cookies__check_sq {
    opacity: 0.4;
    cursor: default;
    pointer-events: none;
}

input:disabled ~ .cookies__check_title {
    opacity: 0.4;
    cursor: default;
    pointer-events: none;
}

input:checked ~ .cookies__check_title{
    color: #BA9F75;
}

.cookies-text {
    line-height: 145%;
}

.cookies-text p {
    margin-bottom: 0;
}

.cookies-text a {
    color: black;
    text-decoration: none;
    position: relative;
    max-width: max-content;
}

.cookies-text a:hover::after {
    transform: scale(0);
}

.cookies-text a::after {
    content: "";
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 2px;
    position: absolute;
    transition: 0.3s;
    transform-origin: center;
}

.cookies-btn {
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 115%;
    cursor: pointer;
    border: none;
    -webkit-transition: background-color 0.3s ease-in-out;
    -o-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
}

.cookies__notification.hide {
    display: 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;
}

.btn-transparent-border {
    background-color: transparent;
    border: 1px solid var(--color-secondary);
    color: var(--color-secondary);
}

@media (max-width: 1024px) {
    .btn-transparent-border {
        font-size: 16px;
        font-weight: 400;
    }

}

.btn-transparent-border:hover {
    background-color: transparent;
    color: var(--color-secondary-hover);
    border-color: var(--color-secondary-hover);
}

.cookies-settings {
    font-weight: 600;
    font-size: 18px;
    line-height: 130%;
    padding: 12px 16px;
    color: var(--color-secondary);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

@media (max-width: 1024px) {
   .cookies-settings{
       font-size: 16px;
       font-weight: 400;
       margin: 0 40px;
   }
}

.cookies-settings:hover {
    color: var(--color-secondary-hover);
}

.cookies-btn__list{
    margin-top: 40px;
}