/*
cookies
 */
.cookieAlert {
    position: fixed !important;
    bottom: 20px !important;
    right:20px !important;
    border-radius: 20px !important;
    /*background:#2f2f2f;
    color:#fff;
    padding:10px 15px;
    */
    width:300px !important;
    z-index:12345 !important;
    -webkit-border-radius: 20px !important;
    -moz-border-radius: 20px !important;
    -ms-border-radius: 20px !important;
    -o-border-radius: 20px !important;
}
.cookie-alert a {
    display: block;
    text-align: center;
    padding:5px 10px;
    margin:8px auto 0 auto;
    background:transparent;
    border: 2px solid #46A2D9;
    color:#46A2D9;
    transition: all .3s ease;
}

/* .cookie-alert a:hover {
    background: #46A2D9;
    color:#2f2f2f;
} */
@media only screen and (max-width:480px) {
    .cookieAlert {
        text-align: center;
        left: 0; right: 0;
        margin: 0 auto;
        max-width:700px;
        /* padding:10px 30px; */
        width:260px !important;
    }
}
.centerCookie {
    display: block!important;
    margin-left: auto!important;
    margin-right: auto!important;
    width: 50% !important;
}

.cookieAlert .card-header{
    text-align: center;
    background-image: -webkit-linear-gradient( 90deg, rgb(247,181,51) 0%, rgb(244, 146, 59))!important;
}
.cookieAlert .card-header:first-child{
    border-top-right-radius: 20px!important;
    border-top-left-radius: 20px!important;
}

.CookieBtn{
    text-align: center;
    display: block;
    margin-left: auto!important;
    margin-right: auto!important;
    width: 50% !important;
    padding: 15px 35px;
    color: #fff;
    border-radius: 25px;
    background-color: #f5913b;
    font-family: 'nunitobold';
    font-size: 16px;
    transition: .3s all ease;
}
.CookieBtn:hover{
    color: white;
    -webkit-box-shadow: 0px 0px 16px 3px #f48b3d;
    -moz-box-shadow: 0px 0px 16px 3px #fff;
    box-shadow: 0px 0px 16px 3px #f48b3d;
}