.openPolitPrivacy {
    cursor: pointer;
}

/*coockie*/

.coockie {
    z-index: 90;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 15px;
}

.coockie__wrap {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    background: var(--cookie);
    width: 100%;
    max-width: 909px;
    margin-right: auto;
    margin-left: auto;
    padding: 20px;
    border-radius: 20px;
}

.coockie__info {
    color: var(--main);
    font-size: 1.1875rem;
    font-weight: 700;
    line-height: 1.09;
    max-width: 318px;
}

.cookie__row {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 380px;
}

.cookie__btn {
    font-size: 1.1875rem;
    line-height: 1;
    text-align: center;
    padding: 10px;
}

.cookie__btn_border {
    color: var(--main);
    background: none;
    border: 1px solid var(--main);
}

.cookie__btn_border:hover {
    color: var(--dark2);
}

@media (max-width: 768px) {
    .coockie__wrap {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .coockie__wrap {
        padding: 15px;
    }

    .coockie__info {
        font-size: 1rem;
        line-height: 1;
    }

    .cookie__btn {
        font-size: 1rem;
        padding: 5px;
    }

}

/*privacy*/

.modal {
    z-index: 1199;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background: #00000099;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    border-top: 15px solid rgba(0, 0, 0, 0.001);
    border-bottom: 15px solid rgba(0, 0, 0, 0.001);

}

.modal h1,
.modal h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.modal p {
    font-size: 1.125rem;
    margin-bottom: 20px;
}

.modal a {
    text-decoration: underline;
}

.modal ul {
    padding-left: 20px;
    list-style: disc;
}

.modal li {
    display: list-item;
    margin-bottom: 20px;
}

.modal__container {
    position: relative;
    display: flex;
    gap: 5px;
    background: #fff;
    width: 90%;
    max-width: 909px;
    height: 80%;
    padding: 15px;
    overflow: auto;
    cursor: auto;
    border-radius: 20px;
}

.modal__left {
    overflow-y: auto;
    padding: 60px;
}

.modal__right {
    position: relative;
    max-width: 24px;
}

.modal__close {
    line-height: 1;
    position: sticky;
    top: 0;
    left: 0;
    width: 24px;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    transform: rotate(45deg);
}

.modal__close:before,
.modal__close:after {
    content: '';
    position: absolute;
    display: block;
    background: var(--black);
}

.modal__close:before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    transform: translateY(-50%);
}

.modal__close:after {
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    transform: translateX(-50%);
}

@media screen and (max-width: 1024px) {
    .modal__left {
        padding: 30px 0 0;
    }
}

@media screen and (max-width: 576px) {

    .modal p {
        font-size: 1rem;
    }

    .modal h1,
    .modal h2 {
        font-size: 1.5rem;
    }
}