.cookieBar {
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    inset: 0 0 0 0;
    z-index: 9999999;
    display: none;
    align-items: center;
    justify-content: center;
}

.cookieBar.active {
    display: flex;
}

.cookieBar .cookieBar__inner {
    max-width: calc(100% - 40px);
    width: 100%;
    background: #ffffff;
    max-height: calc(100% - 20px);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 40px 40px;

}

@media screen and (min-width: 990px) {
    .cookieBar .cookieBar__inner {
        max-width: 700px;
        width: 100%;
        padding: 40px 40px;
    }
}

.cookieBar .cookieBar__arrow {
    margin-bottom: 30px;
    display: block;
}

.cookieBar .cookieBar__arrow img {
    width: 20px;
    height: 20px;
}

.cookieBar .cookieBar__inner h4 {
    margin-bottom: 20px;
    margin-top: 0;
}

.cookieBar .cookieBar__inner[data-step] {
    display: none;
}

.cookieBar .cookieBar__inner[data-step]:first-child {
    display: block;
}

.cookieBar .cookieBar__inner [data-step-target] {
    cursor: pointer;
}

.cookieBar .switchWrapper {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 20px;
}

.cookieBar .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    min-width: 60px;
    height: 34px;
}

/* Hide default HTML checkbox */
.cookieBar .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.cookieBar .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #c4c4c4;
    -webkit-transition: .25s;
    transition: .25s;
}

.cookieBar .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .25s;
    transition: .25s;
}

.cookieBar input:checked + .slider {
    background-color: #ff57ff;
}

.cookieBar input:focus + .slider {
    box-shadow: 0 0 1px #ff57ff;
}

.cookieBar input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
    /*background-color: #F1FF4A;*/
}

/* Rounded sliders */
.cookieBar .slider.round {
    border-radius: 34px;
}

.cookieBar .slider.round:before {
    border-radius: 50%;
}

.cookieBar .btn__wrapper {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}
.cookieBar .btn{
    z-index: 10;
}

.cookieBar .btn__wrapper span {
    margin-top: 15px;
}

@media screen and (min-width: 990px) {
    .cookieBar .btn__wrapper {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }

    .cookieBar .btn__wrapper span {
        margin-top: 0;
    }
}

.cookieBar .btn__wrapper span {
    text-decoration: underline;
}

.cookieBar .btn__wrapper .btn__wrapper--inner {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

.cookieBar .btn__wrapper .btn__wrapper--inner .btn:last-child {
    margin-bottom: 15px;
}

.cookieBar hr {
    border: 0;
    margin: 20px 0;
    height: 1px;
    background: #828282;
}

@media screen and (min-width: 990px) {
    .cookieBar .btn__wrapper .btn__wrapper--inner {
        display: flex;
        flex-direction: row;
        margin-left: auto;
        gap: 25px;
    }

    .cookieBar .btn__wrapper .btn__wrapper--inner .btn:last-child {
        margin-bottom: 0;
    }
}