.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(0,0,0,.75);
    padding: 8px;
    text-align: center;
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
    left: 0;
    z-index: 100000;
}

.cookie-consent-banner h3 {
    font-size: 24px;
    font-weight: 500;
}

.cookie-consent-banner p {
    margin-top: 0px;
}
.cookie-consent-banner p a{
    color: rgb(68, 171, 255);
    text-decoration: underline;
}
.cookie-consent-button {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgb(37, 179, 32);
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    margin: 8px 4px 0;
    font-weight: 500;
}


/* .btn-outline {
    background-color: rgba(37, 179, 32, .2);
    color: rgb(37, 179, 32);
} */

.btn-grayscale {
    background-color: rgba(0, 0, 0, .2);
    color: black;
}
.btn-settings{ 
    color: rgb(37, 179, 32);
    background-color: unset;
}
.cookie-consent-options{
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.cookie-consent-options  .consent-container{
  background-color: #fff;
  border-radius: 10px;
  padding: 32px 32px;
  box-sizing: border-box;
  color: black;
  width: 500px;
  max-width: 95vw;
  position: relative;
}

.cookie-consent-options  .consent-container .checkboxes{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-items: center;
    margin: 12px auto;
    width: 167px;
}
.consent-container h3{
    margin-bottom: 12px;
}
.consent-container .btn-outline{
    display: block;
    margin: 20px auto 0;
}
.consent-container .close-consent{
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
}

.consent-container .close-consent svg{
    height: 25px;
    width: 25px;
}
@media (max-width: 767px) {
    .cookie-consent-banner p{
        font-size: 14px;
    }

    .cookie-consent-button{
        margin: 8px 4px;
    }
}