:root {
    --black: #000000;
    --purple: #3B3646;
    --red: #EE4B5A;
    --yasuni: #e63c2f;
    --white:  #ffffff;
    --grey:  #cccccc;
}
#gdpr-cookie-message .highlight {
    background: rgba(255,215,0,0.115);
}
#gdpr-cookie-message p, 
#gdpr-cookie-message ul {
    margin-bottom: 20px;
    line-height: 1.75em;
}
#gdpr-cookie-message li {
    list-style: none;
    margin-bottom: 10px;
}
#gdpr-cookie-message li:last-child {
    margin-bottom: 0;
}
#gdpr-cookie-message input[type="checkbox"] {
    margin-top: 10px;
    margin-right: 15px;
    float: left;
    vertical-align: top;
}
#gdpr-cookie-message label {
    display: inline-block;
    max-width: 90%;

    font-weight: 400;    
}
#gdpr-cookie-message label strong{
    font-weight: 600;
}
button#ihavecookiesBtn {
    margin-left: 0px !important;
}
/* Cookie Dialog */
#gdpr-cookie-message {
    position: fixed;
    right: 12px;
    bottom: 12px;
    max-width: 440px;
    background-color: #eee;
    padding: 12px;
    border-radius: 5px;
    box-shadow: 0 6px 6px rgba(0,0,0,0.25);
    margin-left: 30px;

    border: 1px solid var(--grey);
    opacity: 0.9;
    z-index: 9999;
}
#gdpr-cookie-message h4 {
    color: var(--black);

    font-size: 16px;
    font-weight: 600;
    margin: 6px 0;
    line-height: 18px;
}
#gdpr-cookie-message h5 {
    color: var(--black);

    font-size: 16px;
    font-weight: 500;
    margin: 0 0 0 10px;
}
#gdpr-cookie-message p, 
#gdpr-cookie-message ul {
    color: var(--black);
    font-size: 14px;
    line-height: 1.5em;
}
#gdpr-cookie-message p:last-child {
    margin-bottom: 0;
    text-align: center;
}
#gdpr-cookie-message li {
    width: 100%;
    display: inline-block;
}
#gdpr-cookie-message a {
    color: var(--black);
    text-decoration: none;
    font-size: 12px;
    padding-bottom: 2px;
    border-bottom: 1px dotted rgba(0,0,0,0.75);
    transition: all 0.3s ease-in;
}
#gdpr-cookie-message a:hover {
    color: var(--black);
    border-bottom-color: var(--black);
    transition: all 0.3s ease-in;
}
#gdpr-cookie-message button,
button#ihavecookiesBtn {
    border: none;
    background: #9cb691;
    color: white;

    font-size: 18px;
    padding: 7px;
    border-radius: 3px;
    margin-right: 18px;
    cursor: pointer;
    transition: all 0.3s ease-in;
    font-weight: 600;
}
#gdpr-cookie-message button:hover {
    background: #9cb691;
    color: var(--white);
    transition: all 0.3s ease-in;
}
button#gdpr-cookie-advanced,
button#gdpr-cookie-advanced:hover {
    background: transparent;
    color: #b9b5b5;
    border: 1px solid #b9b5b5;
    font-size: 16px;
}
#gdpr-cookie-message button:disabled {
    opacity: 0.3;
}
#gdpr-cookie-message input[type="checkbox"] {
    float: none;
    margin-top: 0;
    margin-right: 5px;
}

#gdpr-cookie-accept {
    border-radius: 50%;

    box-shadow: 0 0 0 0 rgb(156, 182, 145, 1);
    transform: scale(1);
    background: rgba(255, 82, 82, 1);
    animation: pulse 2s infinite;
    width: 136.533px;
    height: 36px;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(156, 182, 145, 0.7);
  }
  
  70% {
    transform: scale(0.95);
    box-shadow: 0 0 0 10px rgba(156, 182, 145, 0);
  }
  
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(156, 182, 145, 0);
  }
}

@media screen and (max-width:991px){
    #gdpr-cookie-message {
        position: fixed;
        right: inherit;
        bottom: 0;
        max-width: 100%;
        padding: 20px;
        margin-left: 0;
        /*font-family: 'Quicksand', sans-serif;*/
        font-family: "Roboto",sans-serif;
        left: 0;
    }
    #gdpr-cookie-message h4 {
        font-size: 4vw;
        font-weight: 600;
        margin-bottom: 10px;
    }
    #gdpr-cookie-message a {
        font-size: 3vw;
        font-weight: 600;
    }
    #gdpr-cookie-message h5 {
        font-size: 4vw;
        font-weight: 600;
        margin-bottom: 10px;
    }
    #gdpr-cookie-message p, #gdpr-cookie-message ul {
        font-size: 3.6vw;
        margin-bottom: 4vw;
    }
    #gdpr-cookie-message input[type="checkbox"] {
        margin-top: 0px;
        margin-right: 5px;
        font-size: 6vw;
    }
    #gdpr-cookie-message label {
        max-width: 90%;
    }
    #gdpr-cookie-message button, button#ihavecookiesBtn {
        font-size: 4vw;
        padding: 1vw 3vw;
        margin-right: 15px;
        font-weight: 600;
    }
    button#gdpr-cookie-advanced, button#gdpr-cookie-advanced:hover{
       font-size: 3.9vw; 
    }
    #gdpr-cookie-accept {
        height: auto;
        width: auto;
    } 
}