#cookie-bar, #cookie-bar-revoke, #cookie-bar-decline {
    background: #2F353E;
    height: auto;
    line-height: 24px;
    color: #edebdc;
    text-align: center;
    padding: 1rem .5rem;
}

#cookie-bar-revoke, #cookie-bar-decline {
    height: 170px;
    display: block !important;
    left: 0;
}

#cookie-bar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}


#cookie-bar.fixed.bottom {
    bottom: 0;
    top: auto;
}

#cookie-bar-revoke.fixed, #cookie-bar-decline.fixed {
    position: fixed;
    width: 100%;
    z-index: 100;
}

#cookie-bar-revoke.fixed.bottom, #cookie-bar-decline.fixed.bottom {
    bottom: -170px;
    top: auto;
}

#cookie-bar p, #cookie-bar-revoke p, #cookie-bar-decline p {
    margin: 0;
    padding: 0;
}

#cookie-bar a {
    color: #2F353E;
    display: inline-block;
    border-radius: 3px;
    text-decoration: none;
    margin-left: 8px;
}
#cookie-bar-revoke a , #cookie-bar-decline a {
    display: inline-block;
    border-radius: 3px;
    text-decoration: none;
    margin-left: 8px;
}
.cb-enable {
    background: #edebdc;
    padding: .5rem;
}

.cb-enable:hover {
    background: #edebdc;
}


#cookie-bar-revoke .cb-revoke {
    background: #edebdc;
    padding: .5rem;
    margin-top: 1rem;
}

#cookie-bar-revoke .cb-revoke:hover {
    background: #edebdc;
}


.cb-disable {
    background: #edebdc;
    padding: .5rem;
}

.cb-disable:hover {
    background: #edebdc;
}

.cb-policy {
    color: #edebdc !important;
    text-decoration: underline;
}

#cookie-bar .wrp, #cookie-bar-revoke .wrp, #cookie-bar-decline .wrp {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 16px;
}

#cookie-bar .wrp p, #cookie-bar-revoke .wrp p, #cookie-bar-decline .wrp p {
    font-size: 16px;
}

.hide-show-cookiebar {
    width: 40px;
    height: 40px;
    padding: 0;
    background-color: rgba(47, 53, 62, .5);
    position: absolute;
    color: #edebdc;
    top: -55px;
    right: 10px;
    cursor: pointer;
    border-radius: 50%;
    transition: all .2s;
}

.hide-show-cookiebar:hover {
    transform: scale(1.1);
    background-color: rgba(47, 53, 62, 1);
}
.fa-cookie-bite, .fa-times {
    display: block;
    margin: auto;
    position: absolute;
    top: 26%;
    left: 26%;
    font-size: 20px;
}
.fa-times{
    left: 33%;
}
.btns {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
}

.btns a {
    width: 100px;
}

@media screen and (min-width: 768px) {
    .btns {
        justify-content: flex-end;
    }

    #cookie-bar, #cookie-bar-revoke, #cookie-bar-decline {
        padding: 2rem 1rem;
    }
}

@media screen and (min-width: 1200px) {
    #cookie-bar-revoke , #cookie-bar-decline {
        height: 140px;
    }

    #cookie-bar-revoke.fixed.bottom, #cookie-bar-decline.fixed.bottom {
        bottom: -140px;
    }
}

@media print {
    #cookie-bar, #cookie-bar-revoke {
          display: none !important; /* The plugin would overrule the display none on print hence the important */
      }
}