/*
 * Bootstrap Cookie Alert by Wruczek
 * https://github.com/Wruczek/Bootstrap-Cookie-Alert
 * Released under MIT license
 */
.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #fff;
    background: #212327;
}

.cookiealert a {
    color: #bdbdbd;
    text-decoration: none!important;
  }


.cookiealert .btn {
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    text-transform: unset;
    font-weight: normal;
  }

.cookiealert .btn:hover {
    background: #fff;
    color: #000;
  }

.cookiealert .cookie-inner {
    display: flex;
    align-items: center;
}

.cookiealert .cookie-inner-l {
    font-weight: normal;
    text-align: left;
    font-size: 13px;
    padding-right: 8%;
}
  

.cookiealert.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.cookiealert a {
    text-decoration: underline
}

.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
    margin-bottom: 0;
}





@media(max-width:768px) {
    .cookiealert .cookie-inner {
        flex-direction: column;
    }
    .cookiealert .cookie-inner-l {
            padding-right: 0;
    }
    .cookiealert .cookie-inner-l {
        font-size: 12px;
        margin-bottom: 10px;
        line-height: 18px;
    }
}





















