
.cookie-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.20);
    color: white;
    text-align: center;
    z-index: 99999;
    padding: 25px;
    border-radius: 25px;
    background: #FFF;
    display: none;
    padding: 25px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    color: #19242D;
    font-family: "Exo 2";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.cookie-bar p{
    font-size: 16px;
    font-weight: 600;
}
.cookie-bar span{
    font-size: 12px;
    font-weight: 500;
}
.cookie-bar .cookie-btn{
    display: flex;
    width: 200px;
    height: 40px;
    padding: 0px 25px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: "Roboto";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-radius: 10px;

}
.cookie-bar .regular-btn{
    background: #EDEDED;
    color: #19242D;

}
.cookie-bar .regular-btn:hover{
    background: #19242D;
    color: #FFFFFF;
}
.cookie-bar .accept-btn{
    background: #008AEE;
    color: #FFFFFF;
}
.cookie-bar .cookie-button-wrapper{
    display: flex;
    gap: 10px;
}
.cookie-bar .cookie-options{
    display: flex;
    gap: 25px;
    color: #19242D;
    font-family: 'Montserrat';
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

@media (max-width: 700px) {
    .cookie-bar {
        padding: 15px;
    }
    .cookie-bar .cookie-button-wrapper{
        flex-direction: column;
        gap: 10px;
    }
    .cookie-bar .cookie-options{
        flex-direction: column;
        gap: 10px;
    }
    .cookie-bar .cookie-btn{
        width: 150px;
        height: 30px;
        padding: 0px 15px;
        font-size: 12px;
    }
    .cookie-bar .cookie-options{
        font-size: 12px;
    }
}