/* Cookie popup css  */

.cookie-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 999;
    text-align: center;
    transform: translate(-50%, -50%);
    max-width: 500px;
    width: 95%;
    padding: 32px 24px 24px;
    border-radius: 8px;
    background-image: linear-gradient(135deg, #3E8FBF, #22477B);
}
.cross {
    height: 20px;
    width: 20px;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}
.cross .cross1 {
    background-color: #fff;
    width: 100%;
    height: 2px;
    transform: rotate(45deg) translate(6px, 5px);
}
.cross .cross2 {
    background-color: #fff;
    width: 100%;
    height: 2px;
    transform: rotate(-45deg) translate(-4px, 4px);
}
.cookie-content p {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 24px;
    color: #fff;
    font-weight: 600;
}
.cookie-content p a {
    color: #F0809D;
}
.cookie-content h2 {
    font-size: 22px;
    margin-bottom: 24px;
    color: #fff;
    font-weight: 700;
}

.cookie-btn button {
    width: 220px;
    height: 65px;
    border: none;
    outline: none;
    margin: auto;
    font-weight: 700;
    color: #fff;
    display: block;
    border-radius: 45px;
    background-size: 200%, 1px;
    transition: all 300ms linear 0ms;
    background-image: linear-gradient(90deg, #9851fe 0%, #e77fff 50%, #9851fe);
}
.cookie-btn button:hover {
    background-position: 120%;
}

