.cookie-consent-widget{
    position: fixed;
    bottom: 3%;
    left: 3%;
    z-index: 9999;
    background-color: white;
    border-radius: 10px!important;
    padding: 18px 32px;
    box-shadow: rgba(25, 31, 40, 0.2) 0px 20px 36px 0px;
    max-width: 430px;
    display: flex;
    flex-flow: column wrap;
    font-family: Open Sans, sans-serif;
}

.cookie-consent-title{
    font-weight: 700;
    font-size: 14px;
    color: rgb(25, 31, 40);
    padding-bottom: 8px;
}

.cookie-consent-text{
    font-weight: 400;
    font-size: 14px;
    color: rgb(76, 87, 108);
    line-height: 20px;
}

a{
    text-decoration: none;
    color: rgb(0, 151, 255);
    font-weight: 600;
}

.cookie-consent-closebtn{
    background-color: white;
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    padding: 3px 8px;
    border: 0px none;
    box-sizing: border-box;
}

.fadeIn {
    animation-name: fadeIn;
}

.animated {
    animation-delay: 3s;
    animation-duration: 1s;
    animation-fill-mode: both;
}

.fadeOut{
    animation-name: fadeOut;
    animation-delay: 0s;
    animation-duration: 400ms;
    animation-fill-mode: both;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
