/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

/* The Modal (background) */
.nc-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    flex-direction: column;
    justify-content: flex-end;
}

    .nc-modal.nc-modal--lite {
        background-color: transparent;
        box-shadow: 0 0 10px rgba(0,0,0,0.15);
        height: auto;
        top: auto;
        bottom: 0;
    }

    body:not(.nc-set) .nc-modal,
    .nc-modal.show {
        display: flex;
    }

        body:not(.nc-set) .nc-modal.hide {
            display: none;
        }

.nc-modal-above {
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 10px;
    width: calc(100% - 120px);
    max-width: 1500px;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.nc-modal-dialog {
    background-color: white;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
    margin-top: 15px;
    border: none;
    width: calc(100% - 120px);
    max-width: 1500px;
    max-height: calc(100vh - 160px);
    position: relative;
    overflow-y: auto;
}

.nc-modal.nc-modal--lite .nc-modal-dialog {
    margin-bottom: 0px;
    margin-top: 0px;
    width: 100%;
    max-width: 100%;
}


.nc-language-selector-dropdown {
    position: relative;
}

    .nc-language-selector-dropdown button.nc-text-button {
        font-size: 12px;
    }


.nc-button.nc-button--processing,
.nc-button.nc-button--processing:hover {
    background-color: #C8C8C8 !important;
    border-color: #C8C8C8 !important;
    cursor: wait;
    color: black !important;
}


.nc-language-selector .nc-dropdown {
    right: -10px;
    top: 29px;
    display: none;
    position: absolute;
    background-color: white;
    min-width: 120px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 15px;
    list-style: none;
    margin: 0;
    z-index: 1;
}


ul.nc-dropdown li:not(:last-child) {
    margin-bottom: 10px;
}

ul.nc-dropdown li {
    line-height: 1;
}

ul.nc-dropdown li a {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 12px;
    text-decoration: none !important;
    color: #3a292b;
    transition: all 120ms ease-out;
}

ul.nc-dropdown li a:hover {
    color: #dc051b;
}

.nc-language-selector-dropdown.nc-show svg {
    transform: rotateZ(0deg);
}

.nc-language-selector-dropdown.nc-show .nc-dropdown {
    display: block
}


.nc-modal-content p {
    margin: 0;
}

.nc-general-text {
    font-size: 13px;
}

    .nc-general-text a {
        color: black !important;
        text-decoration: underline;
    }

span.nc-text-button,
a.nc-text-button,
button.nc-text-button {
    background-color: transparent;
    border: none;
    box-shadow: none;
    outline: none;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 0;
}

    button.nc-text-button.nc-text-button--white {
        color: white;
    }

.nc-text-button svg {
    margin-left: 5px;
    width: 12px;
    transform: rotateZ(-180deg);
    transition: 0.3s;
}

.nc-text-button.nc-text-button--white svg path {
    fill: white;
}

.nc-text-button.nc-text-button--disabled {
    color: black;
}

.nc-content-main {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
}

.nc-modal.nc-modal--lite .nc-content-main {
    padding: 10px 20px;
    max-width: 1500px;
    margin: 0 auto;
}

.nc-content-more {
    padding: 25px;
    position: relative;
    border-top: 1px solid rgba(0,0,0,0.1);
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    transition: 0.3s;
}

.nc-modal-content:not(.nc-show-details) .is-details-opened {
    display: none;
}

.nc-modal-content.nc-show-details .is-details-opened {
    display: inline;
}

.nc-modal-content.nc-show-details .is-details-closed {
    display: none;
}


.nc-show-details .nc-content-more {
    max-height: 400px;
    padding-top: 25px;
    padding-bottom: 25px;
}

.nc-show-details .nc-text-button svg {
    transform: rotateZ(0deg);
}

.nc-content-button-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: none;
    margin-left: 20px;
}

    .nc-content-button-wrap .nc-text-button {
        margin-right: 20px;
    }

    .nc-content-button-wrap .nc-muted-text {
        font-size: 11px;
        color: #C8C8C8;
        position: absolute;
        bottom: 5px;
        right: 25px;
    }

input.nc-switch {
    position: relative;
    appearance: none;
    outline: none;
    -webkit-appearance: none;
    width: 45px;
    height: 24px;
    background-color: #C8C8C8;
    border: 1px solid #C8C8C8;
    border-radius: 45px;
    box-shadow: inset -20px 0 0 0 #C8C8C8;
    transition-duration: 200ms;
    cursor: pointer;
    margin-right: 10px;
}

    input.nc-switch + .nc-text-button.allowed {
        display: none;
    }

    input.nc-switch:after {
        transition: 0.3s;
        content: "";
        position: absolute;
        top: 2px;
        left: 2px;
        width: 18px;
        height: 18px;
        background-color: white;
        border-radius: 50%;
        box-shadow: 2px 4px 6px rgba(0,0,0,0.2);
    }

    input.nc-switch:checked {
        border-color: #0AAC0A;
        box-shadow: inset 20px 0 0 0 #0AAC0A;
        background-color: #0AAC0A;
    }

        input.nc-switch:checked + .nc-text-button.allowed {
            display: inline;
        }

            input.nc-switch:checked + .nc-text-button.allowed + .nc-text-button.not-allowed {
                display: none;
            }

        input.nc-switch:checked:after {
            left: 22px;
            box-shadow: -2px 4px 3px rgba(0,0,0,0.05);
        }

.nc-checkboxes {
    display: flex;
}

    .nc-checkboxes .nc-checkbox-wrap {
        flex: 1;
        padding-right: 150px;
    }

.nc-checkbox-input label {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.nc-checkbox-input.nc-checkbox-input--disabled .nc-switch,
.nc-checkbox-input.nc-checkbox-input--disabled label {
    cursor: initial;
}

.nc-checkbox-input.nc-checkbox-input--disabled input.nc-switch:checked:after {
    background-color: #C8C8C8;
}

.nc-checkbox-input.nc-checkbox-input--disabled .nc-switch,
.nc-checkbox-input.nc-checkbox-input--disabled .nc-text-button {
    color: black !important
}

.nc-cookie-type-title {
    font-size: 16px;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 15px;
}

.nc-cookie-type-text {
    font-size: 13px;
}

.nc-content-actions {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.accept-buttons {
    display: flex;
    gap: 20px;
}

@media only screen and (max-width: 1200px) {

    .nc-checkboxes .nc-checkbox-wrap {
        padding-right: 50px;
    }

    .nc-show-details .nc-content-more {
        max-height: 500px;
    }

    .accept-buttons {
        width: 100%;
    }
}

@media only screen and (max-width: 900px) {

    .nc-checkboxes .nc-checkbox-wrap {
        padding-right: 0px;
        margin-bottom: 40px;
    }

    .nc-show-details .nc-content-more {
        max-height: 1200px;
    }

    .nc-checkboxes {
        display: block;
    }

    .nc-content-main {
        flex-direction: column;
        align-items: flex-start;
    }

    p.nc-general-text {
        margin-bottom: 15px;
    }

    .nc-content-button-wrap {
        text-align: center;
        margin-left: 0px;
        flex-direction: column;
        width: 100%;
    }

        .nc-content-button-wrap .nc-text-button {
            margin-bottom: 20px;
            text-align: center;
        }

        .nc-content-button-wrap .nc-button {
            width: 100%;
        }

        .nc-content-button-wrap .nc-muted-text {
            position: static;
            padding-top: 5px;
            line-height: 1.3;
        }


    .nc-modal-dialog {
        width: calc(100% - 40px);
        margin-bottom: 20px;
        max-height: calc(100vh - 40px);
    }

    .nc-modal-above {
        width: calc(100% - 40px);
    }
}

@media only screen and (max-width: 500px) {

    .nc-content-actions {
        flex-direction: column;
    }

    .nc-content-actions button {
        width: 100%;
    }

    .nc-content-actions .nc-text-button {
        margin-top: 30px;
        order: 2;
    }

    .accept-buttons {
        flex-direction: column;
    }
}