.overlay {
    position: fixed;
    z-index: 99 !important;
    bottom: 0;
    left: 0;
    overflow-x: hidden;
    transition: 0.5s;
    display: none;
}

.overlay-content {
    bottom: 0;
    height: auto;
    width: 100%;
    padding: 20px;
    text-align: left;
    z-index: 99;
    position: fixed;
    background-color: whitesmoke;
}

.overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 12px;
    color: #818181;
    transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
    color: #f1f1f1;
}

.overlay .closebtn {
    background-color: #727272;
    color: white;
    padding: 6px 14px;
    font-size: 13px;
    border: none;
    border-radius: 3px;
}
.cookies-text-btn-wrapper{
    display: flex;
    justify-content: space-between;
}
.cookiesButtons {
    display: flex;
    align-items: center;
}
.cookiesButtons button{
    margin-right: 5px;
}
.cookiesButtons button:last-child{
    margin-right: 0;
}
.overlay .accbtn {
    /* bottom: 40%; */
    /* right: 5%; */
    /* position: absolute; */
    background-color: green;
    color: white;
    /* width: 15%; */
    /* text-align: center; */
    padding: 6px 14px;
    font-size: 13px;
    border: none;
    border-radius: 3px;
}

.cookiesMessage {
    color: black;
    margin-bottom: 0;
}

/*.overlay-bg {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100vw;*/
/*    height: 100vh;*/
/*    background: rgba(0,0,0,0.4);*/
/*    z-index: 11198;*/
/*    display: none;*/
/*}*/
@media only screen and (max-width: 767px) {
    .cookies-text-btn-wrapper {
        flex-direction: column;
    }
    .cookiesMessage {
        margin-bottom: 10px;
    }
}
@media screen and (max-height: 450px) {
    .overlay a {font-size: 20px}
    /* .overlay .closebtn {
        font-size: 40px;
        top: 15px;
        right: 35px;
    } */
}

