/* Cookie popup css  */

.cookie-popup {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    max-width: 480px;
    width: 90%;
    padding: 32px 24px 24px;
    border-radius: 16px;
    text-align: center;
    background-color: #03001d;
    box-shadow: 10px 14px 22px rgba(0, 0, 0, 0.08);
}
.bdrb {
    border-bottom: 1px solid rgba(255,255,255,0.4);
    margin-bottom: 16px;
}
.cookie-content p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 16px;
    color: #c0c0c0;
    font-weight: 400;
}
.cookie-content p a {
    color: #fff;
    transition: all 0.3s ease-in-out;
}
.cookie-content p a:hover {
    color: #368757;
}
.cookie-content h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 700;
}
.cookie-btn {
    text-align: center;
}
.cookie-btn button {
    background-color:  #fff;
    border: none;
    outline: none;
    color: #03001d;
    font-size: 14px;
    padding: 7px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}
.cookie-btn button:hover {
    transform: scale(0.95);
}