/* Cookie popup css  */

.cookie-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 9999;
    transform: translate(-50%, -50%);
    max-width: 550px;
    width: 95%;
    padding: 32px 24px 24px;
    border-radius: 16px;
    background-color: #fff;
    box-shadow: 7px 7px 72px rgb(108 99 255 / 10%);
}
.cross {
    height: 36px;
    width: 36px;
    padding: 4px;
    display: block;
    border-radius: 0 16px 0 5px;
    position: absolute;
    right: -1px;
    top: -1px;
    border: 2px solid #be57f2;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.cross:hover {
    border: 2px solid #be57f2;
    background-color: #be57f2;
}
.cross .cross1 {
    background-color: #be57f2;
    width: 20px;
    height: 2px;
    transition: all 0.2s ease-in-out;
    transform: rotate(45deg) translate(9px, 7px);
}
.cross .cross2 {
    background-color: #be57f2;
    width: 20px;
    height: 2px;
    transition: all 0.2s ease-in-out;
    transform: rotate(-45deg) translate(-6px, 8px);
}
.cross:hover .cross1,
.cross:hover .cross2 {
    background-color: #fff;
}
.cookie-flex-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.cookie-img img {
    width: 90px;
}
.cookie-content p {
    font-size: 14px;
    line-height: 1.5;
    padding-bottom: 16px;
    margin-bottom: 24px;
    color: #4B4B4B;
    opacity: 0.7;
    text-align: right;
    font-weight: 400;
    border-bottom: 1px solid #4B4B4B;
}
.cookie-content p a {
    color: #be57f2;
    transition: all 0.2s ease-in-out;
}
.cookie-content p a:hover {
    color: #be57f2;
}
.cookie-content h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #222;
    text-align: right;
    font-weight: 700;
}
.cookie-btn {
    text-align: right;
}
.cookie-btn button {
    background-color: #be57f2;
    border: none;
    outline: none;
    color: #fff;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 8px;
    transition: all 0.2s ease-in-out;
}
.cookie-btn button.clos {
    background-color: #2a4eb3;
    color: #fff;
}
.cookie-btn button:hover {
    background-color: #2a4eb3;
}
.cookie-btn button.clos:hover {
    background-color: #be57f2;
}

@media all and (max-width: 475px) {
    .cookie-content h2 {
        font-size: 20px;
    }
    .cookie-flex-content {
        gap: 16px;
    }.cookie-img {
        margin-bottom: 16px;
    }
}