.alf-cookie-banner-backdrop {
    width: 100%;
    height: 100%;
    position: fixed;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99999;
}

.alf-cookie-banner-position {
    position: fixed;
    display: flex;
    z-index: 999999;
    height: 100%;
    width: 100%;
    padding: 2.5rem 0;
}

.alf-cookie-banner {
    height: auto;
    letter-spacing: 0;
    line-height: 1.25rem;
    left: 0;
    bottom: 0;
    width: 80%;
    min-width: 20rem;
    max-width: 50rem;
    margin: auto;
}

.alf-cookie-banner * {
    margin: 0;
    padding: 0;
}

.alf-cookie-banner-header {
    display: block;
    background-color: var(--alf-main-bg-color);
    padding: 1.5rem 2rem;
    font-size: 1.5rem;
    color: #ffffff;
    border-radius: 6px 6px 0px 0px;
}

.alf-cookie-banner-container-bg {
    background-color: #ffffff;
}

.alf-cookie-banner-container {
    padding: 0.9375rem 1.875rem;
    color: #000000;
}

.alf-cookie-text {
    font-size: 1rem;
    line-height: 1.875;
}

.alf-cookie-text a {
    text-decoration: underline;
}

.alf-cookie-banner-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
    border-top: 1px solid #e6e6e6;
    padding: 1.5rem 2rem;
    background-color: #ffffff;
    border-radius: 0px 0px 6px 6px;
}

.alf-cookie-btn {
    letter-spacing: .25px;
    text-transform: none;
    display: inline-block;
    cursor: pointer;
    touch-action: manipulation;
    white-space: nowrap;
    outline: 0;
    box-shadow: none;
    text-shadow: none;
    border: none;
    -webkit-border-radius: 0.1875rem;
    -moz-border-radius: 0.1875rem;
    border-radius: 0.1875rem;
    text-decoration: none !important;
    padding: 0.5rem 1rem;
    line-height: 1;
    color: inherit !important;
    background-color: transparent;
    border: 1px solid var(--alf-btn-border-main-color);
    font-size: 0.8125rem;
    transition: 0.3s;
    -webkit-transition: 0.3s;
}

.alf-cookie-btn[data-cookie-set="accept"] {
    background-color: var(--alf-accept-btn-bg-color) !important;
    color: var(--alf-accept-btn-text-color) !important;
}

.alf-cookie-btn:hover {
    opacity: .8;
}

.alf-cookie-btn:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-width: 2px;
}

.alf-close-icon {
    position: absolute;
    right: 0.9375rem;
    top: 50%;
    margin-top: -0.625rem;
    width: 0.9375rem;
    height: 0.9375rem;
    opacity: .5;
    padding: 0.625rem;
    outline: 0;
    cursor: pointer;
}
  
.alf-close-icon::before, .alf-close-icon::after {
    position: absolute;
    content: ' ';
    height: 0.9375rem;
    width: 0.125rem;
    top: 0.1875rem;
    background-color: grey;
}
  
.alf-close-icon::before {
    transform: rotate(45deg);
}
  
.alf-close-icon::after {
    transform: rotate(-45deg);
}