

/* Start:/local/components/nineseven/cookie.policy/templates/policy.refuse/style.css?17582025606299*/
.cookies {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 102;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;

    font-size: 14px;
    line-height: 1.4;
    color: black;

    background-color: rgba(0,0,0,.5);
}

.cookies[hidden] {
    display: none;
}

.cookies p {
    margin-bottom: 0.75em;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

.cookies p:last-child {
    margin-bottom: 0;
}

.cookies hr {
    margin: 1em 0;

    border: none;
    color: #e8e8e8;
    background-color: #e8e8e8;
    height: 1px;
}
.cookies a {
    display: inline;
}

.cookies__top,
.cookies__bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    padding-top: 20px;
    padding-bottom: 28px;

    color: black;

    background-color: white;
}

.cookies .container {
    max-width: 800px;
}

.cookies__top {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: -webkit-transform 200ms ease-in;
    transition: -webkit-transform 200ms ease-in;
    -o-transition: transform 200ms ease-in;
    transition: transform 200ms ease-in;
    transition: transform 200ms ease-in, -webkit-transform 200ms ease-in;
}
.cookies__bottom {
    overflow-y: auto;
    max-height: 100vh;
    max-height: calc(var(--vh, 1vh) * 100);
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: -webkit-transform 400ms ease-in;
    transition: -webkit-transform 400ms ease-in;
    -o-transition: transform 400ms ease-in;
    transition: transform 400ms ease-in;
    transition: transform 400ms ease-in, -webkit-transform 400ms ease-in;
}

.cookies.expanded .cookies__bottom {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: -webkit-transform 200ms ease-in;
    transition: -webkit-transform 200ms ease-in;
    -o-transition: transform 200ms ease-in;
    transition: transform 200ms ease-in;
    transition: transform 200ms ease-in, -webkit-transform 200ms ease-in;
}
.cookies.expanded .cookies__top {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: -webkit-transform 400ms ease-in;
    transition: -webkit-transform 400ms ease-in;
    -o-transition: transform 400ms ease-in;
    transition: transform 400ms ease-in;
    transition: transform 400ms ease-in, -webkit-transform 400ms ease-in;
}

.cookies__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.cookies__button {
    display: inline-block;
    width: 100%;
    margin-top: 10px;
    padding: 10px 15px;

    color: black;
    font-size: 14px;
    line-height: 19px;

    background-color: #cccccc;
    border: 1px solid #cccccc;

    cursor: pointer;
    transition: all 250ms ease;
}

.cookies__button--outline {
    color: #646464;

    background-color: white;
    border-color: #646464;
}

.cookies__button--primary {
    color: white;

    background-color: #000;
    border-color: #000;
}

.cookies__row--buttons {
    margin-top: 10px;
    max-width: 460px;
}

.cookies__title {
    margin-bottom: 1em;
    font-weight: 700;
    font-size: 1.1em;
}

.cookies__row .cookies__title {
    width: calc(100% - 50px);
}

.cookies__switch {
    margin-right: 0;
}

.switch {
    position: relative;

    display: block;
}

.switch__input {
    opacity: 0;
    pointer-events: none;
}

.switch__input,
.switch__label::before {
    position: absolute;
    top: 3px;
    left: 3px;

    width: 14px;
    height: 14px;

    -webkit-transition: -webkit-transform 250ms ease;
    transition: -webkit-transform 250ms ease;
    -o-transition: transform 250ms ease;
    transition: transform 250ms ease;
    transition: transform 250ms ease, -webkit-transform 250ms ease;
}

.switch__label {
    display: block;
    width: 35px;
    height: 20px;

    border-radius: 12px;
    background-color: #a6a6a6;

    cursor: pointer;
    -webkit-transition: background-color 250ms ease;
    -o-transition: background-color 250ms ease;
    transition: background-color 250ms ease;
}

.switch__label::before {
    content: '';

    border-radius: 50%;
    background-color: white;

    -webkit-transition: left 250ms ease;
    -o-transition: left 250ms ease;
    transition: left 250ms ease;
}

.switch__input:checked,
.switch__input:checked ~ .switch__label::before {
    left: 18px;
}

.switch__input:checked ~ .switch__label {
    background-color: #e51a4b;
}

.switch__input[disabled] ~ .switch__label {
    cursor: not-allowed;
    background-color: #e51a4b;
}

@media (hover: hover) {
    .switch__label:hover {
        background-color: #cccccc;
    }
    .switch__input:checked ~ .switch__label:hover {
        background-color: black;
    }
    .switch__input[disabled] ~ .switch__label:hover {
        background-color: black;
    }

    .cookies__button--outline:hover {
        color: black;

        background-color: white;
        border-color: black;
    }
    .cookies__button--primary:hover {
        color: white;

        background-color: #e51a4b;
        border-color: #e51a4b;
    }
}

.cookies__note {
    color: #a6a6a6;
    font-size: 0.8em;
}

@media (min-width: 600px) {
    .cookies__row .cookies__button {
        width: calc(50% - 10px);
    }
}

@media (min-width: 768px) {
    .cookies {
        font-size: 16px;
    }

    .cookies__top,
    .cookies__bottom {
        padding-top: 40px;
        padding-bottom: 48px;
    }
}

.locked {
    overflow: hidden;
}
/* End */
/* /local/components/nineseven/cookie.policy/templates/policy.refuse/style.css?17582025606299 */
