@media only screen and (min-width: 949px) {    
    .cb {
        display: inline-block;
        margin: 10px 0;
    }           
    #consent-popup {
        position: fixed;
        width: 70vh;
        max-width: 500px;
        top: 12.5%;        
        left: 50%;
        transform: translate(-50%, 0px);
        z-index: 99;
        padding: 0 3rem;
        background-color: #fff;
        transition: opacity 500ms ease;
        box-shadow: 0 6px 15px 6px rgba(0,0,0,0.5);
        border-radius: 3px;    
    }
    .cookie-head {
        font-family: 'Arimo';
        text-decoration: none;
        font-size: 9vh;
        margin: 2rem  auto;
        letter-spacing: 1px;
        font-weight: bold;
        line-height: 9vh;
        text-align: center;
    }
}

@media only screen and (max-width: 949px) {    
    #consent-popup {
        position: fixed;
        width: 100%;
        top: 12.5%;
        left: 50%;
        right: 0;
        transform: translate(-50%, 0px);
        z-index: 99;
        padding: 0 3rem;
        background-color: #fff;
        transition: opacity 500ms ease;
        box-shadow: 0 6px 15px 6px rgba(0,0,0,0.5);
        border-radius: 3px;    
    }    
    .cookie-head {
        font-family: 'Arimo';
        text-decoration: none;
        font-size: 6vh;
        margin-top: 3vh;
        margin-bottom: 1.6rem;
        letter-spacing: 1px;
        font-weight: bold;
        line-height: 6vh;    
    }
}

@media only screen and (max-width: 400px) {       
    #consent-popup {
        position: fixed;
        width: 100%;
        top: 12.5%;        
        left: 50%;
        right: 0;
        transform: translate(-50%, 0px);
        z-index: 99;
        padding: 2rem 1rem;
        background-color: #fff;
        transition: opacity 500ms ease;
        box-shadow: 0 6px 15px 6px rgba(0,0,0,0.5);
        border-radius: 3px;    
    }    
    .cookie-head {
        font-family: 'Arimo';
        text-decoration: none;
        font-size: 6vh;
        margin-top: 3vh;
        margin-bottom: 1.6rem;
        letter-spacing: 1px;
        font-weight: bold;
        line-height: 6vh;    
    }
}

#consent-popup.hidden {
    opacity: 0;
}
#cookie-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    background-color: rgba(0,0,0,0.6);
    z-index: 600;
}
.btn-cookies {
    display: inline-block;
    width: 100%;
    margin-bottom: 25px;
    background: #6997c0;
    text-align: center;
    padding: 1rem 0;
    border-radius: 4px;
}
.text-cookies {
    margin-right: 1em;
    margin-top: 1em;
    color: #fff;
    font-weight: 700;
}

/*
#deny:before {
    content: "\00d7";
    color: #ff0000;
    font-size: 3em;
    font-weight: bold;
    border: solid 3px;
    text-align: right;
    padding: 2px 14px;
}
*/

.active {
    display: inherit;
    opacity: 1;
}
.hide {
    display: none;
    opacity: 0;
}