/* oswald-700 - latin */
@font-face {
    font-family: "Oswald";
    font-style: normal;
    font-weight: 700;
    src: url("/assets/fonts/oswald/oswald-v49-latin-700.eot");
    /* IE9 Compat Modes */
    src: local(""), url("/assets/fonts/oswald/oswald-v49-latin-700.eot?#iefix") format("embedded-opentype"),
        /* IE6-IE8 */
        url("/assets/fonts/oswald/oswald-v49-latin-700.woff2") format("woff2"),
        /* Super Modern Browsers */
        url("/assets/fonts/oswald/oswald-v49-latin-700.woff") format("woff"),
        /* Modern Browsers */
        url("/assets/fonts/oswald/oswald-v49-latin-700.ttf") format("truetype"),
        /* Safari, Android, iOS */
        url("/assets/fonts/oswald/oswald-v49-latin-700.svg#Oswald") format("svg");
    /* Legacy iOS */
}

:root {
    --textColor: #fbe800;
    --backgroundColor: #191919;
    --buttonBackgroundColor: #fbe800;
    --buttonTextColor: #191919;
    --buttonHoverBackgroundColor: #191919;
    --buttonHoverTextColor: #fbe800;
}

.cookie-banner-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.cookie-banner-wrapper.show {
    display: block;
}

.cookie-banner-wrapper .cookie-banner {
    position: absolute;
    width: 500px;
    max-width: 80%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--textColor);
    color: var(--backgroundColor);
    padding: 30px 20px 20px 20px;
}

.cookie-banner-wrapper .cookie-banner a {
    color: var(--backgroundColor) !important;
    font-size: inherit;
}

.cookie-banner-wrapper .cookie-banner .btn {
    font-size: 15px;
    line-height: 15px;
    padding: 10px;
}

.cookie-banner-wrapper .cookie-banner .cookie-buttons {
    margin-top: 15px;
}

.cookie-banner-wrapper .cookie-banner .cookie-infos {
    overflow: hidden;
    max-height: 500px;
    transition: .2s;
    font-size: 13px;
    line-height: 20px;
}

.cookie-banner-wrapper .cookie-banner .cookie-infos.show-options {
    max-height: 0px;
}

.cookie-banner-wrapper .cookie-banner .cookie-infos .cookie-title {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 23px;
    line-height: 23px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.cookie-banner-wrapper .cookie-banner .cookie-conditions {
    overflow: hidden;
    max-height: 0px;
    transition: .2s;
}

.cookie-banner-wrapper .cookie-banner .cookie-conditions .cookie-condition {
    padding: 10px 0;
}

.cookie-banner-wrapper .cookie-banner .cookie-infos.show-options + .cookie-conditions {
    max-height: 500px;
}

.cookie-banner-wrapper .cookie-banner .cookie-condition-title,
.cookie-banner-wrapper .cookie-banner .cookie-condition-input,
.cookie-banner-wrapper .cookie-banner .cookie-condition-description {
    position: relative;
}

.cookie-banner-wrapper .cookie-banner .cookie-condition-title {
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
}

.cookie-banner-wrapper .cookie-banner .cookie-condition-description {
    font-size: 13px;
    line-height: 20px;
    padding-top: 10px;
}

.cookie-banner-wrapper .cookie-banner .cookie-condition-input {
    font-size: 16px;
    line-height: 20px;
}

.cookie-banner-wrapper .cookie-banner .cookie-condition-input input {
    display: none;
}

.cookie-banner-wrapper .cookie-banner .cookie-condition-input .slider {
    position: absolute;
    cursor: pointer;
    width: 40px;
    height: 20px;
    background-color: rgba(200, 200, 200, 1);
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    top: 2px;
    right: 0;
}

.cookie-banner-wrapper .cookie-banner .cookie-condition-input .slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 1px;
    bottom: 1px;
    background: rgba(255, 255, 255, 1);
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.cookie-banner-wrapper .cookie-banner .cookie-condition-input input:checked + .slider {
    background-color: var(--backgroundColor);
}

.cookie-banner-wrapper .cookie-banner .cookie-condition-input input:checked + .slider:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}

.show-cookies-btn {
    display: inline;
    cursor: pointer;
    text-decoration: underline;
}

.cookie-banner-wrapper .cookie-banner .cookie-accept-all,
.cookie-banner-wrapper .cookie-banner .cookie-show-settings,
.cookie-banner-wrapper .cookie-banner .cookie-save-settings {
    border-radius: 0;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    border-color: transparent !important;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.cookie-banner-wrapper .cookie-banner .cookie-accept-all,
.cookie-banner-wrapper .cookie-banner .cookie-save-settings {
    background-color: var(--backgroundColor) !important;
    color: var(--textColor) !important;
}

.cookie-banner-wrapper .cookie-banner .cookie-show-settings {
    background-color: #D6C600 !important;
    color: var(--backgroundColor) !important;
}