/* Cookie popup css  */

.cookie-popup {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    max-width: 530px;
    width: 90%;
    padding: 32px 24px 24px;
    border-radius: 0;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 3px 22px rgb(152 83 208 / 47%);
}
.cookie-flex {
    display: flex;
    gap: 16px;
}
.cookie-content {
    text-align: right;
}
.cookie-content p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 16px;
    color: #4a4848;
    font-weight: 400;
}
.cookie-content p a {
    color: #9853D0;
    text-decoration: underline;
}
.cookie-content p a:hover {
    color: #9853D0;
}
.cookie-content h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #9853D0;
    font-weight: 700;
}
.cookie-img img {
    width: 80px;
}
.cookie-btn button {
    background-color:  #fff;
    border: 1px solid #9853D0;
    outline: none;
    color: #9853D0;
    font-size: 14px;
    padding: 7px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}
.cookie-btn button:hover {
    color: #fff;
    background-color:  #9853D0;
}


@media all and (max-width: 410px) {
    .cookie-flex {
        flex-direction: column-reverse;
    }
    .cookie-content {
        text-align: center;
    }
}