
.cookie-popup {
    position: fixed;
    bottom: -2px;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    z-index: 99999;
    padding: 20px 0;
    border-top: 5px solid #A72430;
}

.cookie-popup span.title {
    font-size: 20px;
    width: 100%;
    position: relative;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    display: block;
    line-height: 135%;
    margin-bottom: 10px;
}
.cookie-popup a {
    text-decoration: underline;
}

.cookie-popup div.button-wrapper {
    display: flex;
    flex-direction: row;
    flex-basis: auto;
    flex-wrap: wrap;
    margin: auto 0;
    width: 100%;
}
.cookie-popup div.button-wrapper a {
    display: inline-block;
    padding: 10px 10px 8px 10px;
    background-color: #A72430;
    color: #FFFFFF;
    border-radius: 5px;
    line-height: 20px;
    text-align: center;
    margin-bottom: 0;
    font-weight: 400;
    margin-left: auto;
    text-decoration: none;
}
.cookie-popup div.button-wrapper a:nth-of-type(2) {
    margin-left: 20px;
}

.cookie-popup h2 {
    text-align: left;
    margin: 0 0 10px 0;
    font-size: 22px;
}

.cookie-popup .cookie-text {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 15px;
}


/* The switch - the box around the slider */
.cookie-popup .cookie-text .switch {
    position: absolute;
    top: 5px;
    right: 0;
    display: inline-block;
    width: 61px;
    height: 16px;
    z-index: 999;
    margin-left: 10px;
}

/* Hide default HTML checkbox */
.cookie-popup .cookie-text .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.cookie-popup .cookie-text .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.cookie-popup .cookie-text .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    top: -6px;
    border: 1px solid #d0d0d0;
}

.cookie-popup .cookie-text input:checked + .slider {
    background-color: #A72430;
}

.cookie-popup .cookie-text input:focus + .slider {
    box-shadow: 0 0 1px #A72430;
}

.cookie-popup .cookie-text input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.cookie-popup .cookie-text .slider.round {
    border-radius: 16px;
}

.cookie-popup .cookie-text .slider.round:before {
    border-radius: 50%;
}
#cookie-message-init {
    display: flex;
    flex-direction: column;
    flex-basis: auto;
    flex-wrap: nowrap;
    line-height: 24px;
}
@media (min-width: 768px) {
    #cookie-message-init {
        display: flex;
        flex-direction: row;
        flex-basis: auto;
        flex-wrap: nowrap;
    }
    .cookie-popup div.button-wrapper {
        width: 25%;
    }
    .cookie-popup .cookie-text {
        width: 75%;
    }
}

