
.cookiealert {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    border-radius: 1.0rem;
   border-width: 0.1rem;
    /* box-shadow:8px 5px 5px rgb(100, 161, 157, 0.6); */
    border-color:rgb(100, 161, 157, 0.6);
    background-color: #eaf0ea;
}

@media (min-width: 992px) {
    .cookiealert {
        position: fixed;
        bottom: 0;
        right: 0;
        width: 50%;
        margin: 0 !important;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transform: translateY(100%);
        transition: all 500ms ease-out;
        border-radius: 1.0rem;
       border-width: 0.2rem;
        /* box-shadow:8px 5px 5px rgb(100, 161, 157, 0.6); */
        border-color:rgb(100, 161, 157, 0.6); 
        background-color: #eaf0ea;
    }
   }

.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;
}
.cookiealert .text-header{
    font-family: 'Roboto';
    font-size: 0.85rem;
    font-weight: 1.0;
    color: #154c79;
      
}
.cookiealert .text-main{
    font-family: 'Roboto';
    color: #154c79;
      font-size: 0.85rem;
      font-weight: 2.0;
      
      
}
.cookiealert .text-footer{
    font-family: 'Raleway';
    
      font-size: 0.7rem;
     
      
      
}
