.cookiealert {
    display: none !important;
    background: rgba(0,0,0,0.50);
    text-align: center;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    border-radius: 0;
    transition: all 500ms ease-out;
    color: #ecf0f1;
}

.cookiealert.show {
    opacity: 1;
    display: flex !important;
    position: fixed;
    width: 100%;
    height: 100%;
    top:0;
    left: 0;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.cookiealert a {
    text-decoration: underline;
    margin-left:5px;
}

.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
}
.cookiealert .main-div{
    background-color:#f2f2f2; 
    margin:10px; 
    padding:60px; 
    border-radius:25px;
}
.cookiealert .main-div img{
    margin-bottom:30px
}
.cookiealert .main-div h4{
    margin-bottom:20px; font-weight:700
}
.cookiealert .main-div p{
    color:#252525;
}
.cookiealert .main-div label{
    color:#252525 !important;
    font-weight:500
}
.cookiealert .main-div .ml-15{
    margin-left: 15px;
}

