/* Cookie popup css  */

.cookie-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 999;
    transform: translate(-50%, -50%);
    max-width: 400px;
    width: 95%;
    padding: 32px 24px 24px;
    border-radius: 8px;
    background-color: #d7d4f5;
}
.cross {
    height: 24px;
    width: 24px;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}
.cross .cross1 {
    background-color: #13064C;
    width: 100%;
    height: 2px;
    transform: rotate(45deg) translate(6px, 5px);
}
.cross .cross2 {
    background-color: #13064C;
    width: 100%;
    height: 2px;
    transform: rotate(-45deg) translate(-4px, 4px);
}
.cookie-content p {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 24px;
}
.cookie-content p a {
    color: #6153fc;
    transition: all 0.3 ease-in-out;
}
.cookie-content p a:hover {
    color: #ff4b36;
}
.cookie-content h2 {
    font-size: 24px;
    margin-bottom: 24px;
}

.cookie-btn button {
    padding: 12px 20px;
    border: none;
    outline: none;
    color: #fff;
    font-weight: 600;
    border-radius: 5px;
    background-color: #6153fc;
    transition: all 0.3s ease-in-out;
}
.cookie-btn button:hover {
    box-shadow: inset 0 -50px 0px 4px #ff4b36;
}