/* Cookie popup css  */

.cookie-popup {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    max-width: 500px;
    width: 90%;
    padding: 32px 24px 24px;
    border-radius: 0;
    background-color: #fff;
    box-shadow: 10px 14px 22px rgba(0, 0, 0, 0.08);
}
.cross {
    height: 24px;
    width: 24px;
    padding: 4px;
    border-radius: 0;
    position: absolute;
    right: 10px;
    top: 10px;
    border: 1px solid #293462;
    background-color: #fff;
    cursor: pointer;
}
.cross .cross1 {
    background-color: #293462;
    width: 100%;
    height: 2px;
    transform: rotate(45deg) translate(5px, 4px);
}
.cross .cross2 {
    background-color: #293462;
    width: 100%;
    height: 2px;
    transform: rotate(-45deg) translate(-3px, 3px);
}
.cookie-flex {
    display: flex;
    align-items: center;
    gap: 16px;
}
.bdrb {
    border-bottom: 1px solid rgba(0,0,0,0.4);
    margin-bottom: 16px;
}
.cookie-img {
    margin-bottom: 16px;
}
.cookie-img img {
    width: 100px;
}
.cookie-content p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 16px;
    color: #696969;
    font-weight: 400;
}
.cookie-content p a {
    color: #F76262;
    transition: all 0.3s ease-in-out;
}
.cookie-content p a:hover {
    color: #F76262;
}
.cookie-content h2 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #222;
    font-weight: 700;
}
.btn-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
.check-content img {
    width: 18px;
}
.check-content span {
    font-size: 14px;
    color: #696969;
}
.cookie-btn button {
    background-color:  #293462;
    border: none;
    outline: none;
    color: #fff;
    font-size: 14px;
    padding: 7px 20px;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.16);
}
.cookie-btn button:hover {
    /* background-color: #fff;
    color: #293462; */
    transform: scale(0.95);
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.3);
}

@media all and (max-width: 480px) {
    .cookie-flex {
        flex-direction: column;
        gap: 0;
        text-align: center;
    }
    .btn-flex {
        text-align: center;
        flex-direction: column;
        gap: 8px;
    }
    .check-content span {
        line-height: 1.1;
    }
}