:root {
    --green: #008000;
}

.aler-banner {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    max-height: 540px;
    /* background-color: #ffffff;*/
    overflow-y: hidden;
    transition: max-height 0.5s ease-in-out;
    -webkit-box-shadow: 0px -4px 10px -7px #000000;
    box-shadow: 0px -4px 10px -7px #000000;
    z-index: 9999999999999;
    font-size: 18px;
}

.aler-container {
    height: 540px;
}

.aler-banner p {
    font-family: Arial, "sans-serif";
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.aler-cookie-policy {
    text-decoration: underline;
    font-size: 16px !important
}

.aler-banner h3,
.aler-banner h1 {
    font-family: Arial, "sans-serif";
    font-size: 20px;
    color: #fff;
}

.aler-cookie-text {
    font-size: 13px !important;
    font-family: Arial, "sans-serif";
}

.aler-container {
    width: 96%;
    position: relative;
    padding: 2rem 8px;
}

.aler-banner-logo {
    width: 100%;
    display: flex;
    justify-content: center;
}

.aler-banner-logo img {
    height: 70px;
    font-family: Arial, "sans-serif";
}

.aler-banner-text {
    width: 96%;
    padding: 8px;
    text-align: center;
    font-size: 12px;
    font-family: Arial, "sans-serif";
}

.aler-buttons-container {
    width: 96%;
    padding: 8px;
    display: grid;
    grid-template-columns: auto auto;
}

.aler-button-show {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 1.3rem;
}

.aler-buttons {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.3rem;
    flex-wrap: wrap
}

.aler-btn {
    background: transparent;
    color: #ffffff;
    font-family: Arial, "sans-serif";
    width: 150px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 5px;
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 10px
}

.aler-cookie-preferences-button,
.aler-refuse-all {
    background: #cfcfcf;
}

.aler-accept-all {
    background: var(--green);
}

.aler-btn:focus {
    outline: none;
}

.aler-banner-active {
    max-height: 100% !important;
    overflow-y: auto !important;
}

.aler-cookie {
    width: 96%;
    padding: 16px;
    margin: 0 auto
}

.aler-cookie-input {
    display: flex;
    justify-content: flex-end;
}

.aler-checkbox[type="checkbox"] {
    position: relative;
    -webkit-appearance: none;
    width: 40px;
    height: 20px;
    background: #c6c6c6;
    outline: none;
    border-radius: 10px;
    box-shadow: inset 0 0 2.5px rgba(0, 0, 0, .2);
    transition: .5s;
    cursor: pointer;
}

.aler-checkbox:checked[type="checkbox"] {
    background: #03a9f4;
}

.aler-checkbox[type="checkbox"]::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    top: 0;
    left: 0;
    background: #fff;
    transform: scale(1.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
    transition: .5s;
}

.aler-checkbox:checked[type="checkbox"]::before {
    left: 20px;
}

.aler-confirm {
    width: 96%;
    padding: 16px;
    display: flex;
    justify-content: flex-end;
}

.aler-d-none {
    display: none;
}

@media screen and (min-width: 600px) {
    .aler-banner {
        max-height: 540px;
    }
    .aler-container {
        height: 540px;
    }
    .aler-banner p {
        font-family: Arial, "sans-serif";
        font-size: 18px;
        font-weight: 400;
        color: #000;
    }
    .aler-button-show,
    .aler-buttons {
        margin-bottom: 0;
    }
    .aler-cookie {
        display: grid;
        grid-template-columns: 80% 20%;
    }
    .aler-cookie-input {
        justify-content: center;
        align-items: center;
    }
}

@media screen and (min-width: 992px) {
    .aler-banner {
        max-height: 340px;
    }
    .aler-container {
        height: 340px;
    }
}

@media screen and (min-width: 1282px) {
    .aler-banner {
        max-height: 335px;
    }
    .aler-container {
        height: 335px;
    }
}

.aler-container {
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap
}