#cookie-banner {
    background-color: var(--dark-light);
    padding: 1rem;
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    width: 25rem;
    max-width: calc(100% - 3rem);
    background-color: var(--dark);
    color: #FFF;
    z-index: 2;
    border-radius: 1.25rem;
    display: none;
}
#cookie-icon {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 1;
    background-color: var(--dark);
    width: 3rem;
    height: 3rem;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease 0s;
}
#cookie-icon svg {
    fill: #22b4ec !important;
}
#cookie-icon:hover {
    cursor: pointer;
    background-color: rgba(12, 16, 23, .8);
}
.cookie-banner-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1;
}
.cookie-banner-close {
    transition: all 0.25s ease 0s;
}
.cookie-banner-close:hover {
    cursor: pointer;
}
.cookie-banner-close svg {
    fill: #FFF;
    transition: all 0.25s ease 0s;
}
.cookie-banner-close:hover svg {
    fill: rgba(255, 255, 255, .7);
}
.cookie-banner-title {
    font-weight: bold;
    font-size: 1.2rem;
    padding: .8rem 0;
    line-height: 1;
}
.cookie-banner-description {
    font-size: .9rem;
}
a.cookie-banner-link {
    color: var(--light-blue) !important;
    display: inline;
    text-decoration: none;
    font-weight: bold;
}
a.cookie-banner-link:hover {
    cursor: pointer;
    text-decoration: none;
}
.cookie-banner-check_list {
    padding: .8rem 0;
    display: flex;
    flex-direction: column;
    row-gap: .5rem;
}
.cookie-banner-check_list .checkbox-apple {
    font-size: .9rem;
    font-weight: bold;
    text-transform: uppercase;
}
.cookie-banner-check_list .checkbox-apple input:checked + span{
  background: #22b4ec;
  border-color: #22b4ec;
}
.cookie-banner-check_list .checkbox-apple > div {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
}
.cookie-banner-check_list .checkbox-apple div .number {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 5em;
    display: inline-block;
    font-size: .8em;
    font-weight: 700;
    letter-spacing: .25px;
    line-height: 1.2em;
    margin-left: .5em;
    padding: .25em .5em;
}
.cookie-banner-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    row-gap: .3rem;
}
.cookie-banner-action-button {
    width: 100%;
    padding: 0 .5rem;
    line-height: 2.8;
    text-transform: uppercase;
    border-radius: 1.25rem;
    border: 1px solid transparent;
    transition: all 0.25s ease 0s;
    text-align: center;
    font-size: .8rem;
    font-weight: bold;

}
.cookie-banner-action-button.accept {
    background-color: #22b4ec;
    border-color: #22b4ec;
}
.cookie-banner-action-button.accept:hover {
    cursor: pointer;
    background-color: rgba(34, 180, 236, .8);
    border-color:  rgba(34, 180, 236, .8);
}
.cookie-banner-action-button.decline {
    background-color: transparent;
    border-color: #FFF;
}
.cookie-banner-action-button.decline:hover {
    cursor: pointer;
    background-color: rgba(255, 255, 255, .2);
}