/**
 * Cookie accept box
 */
#cookie-consent-footer {
    background: #000;
    color: #FFF;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1em 2em;
    z-index: 999;
}

#cookie-consent-footer .paragraph {
    font-size: .9rem;
    margin-bottom: 10px;
}

#cookie-consent-footer .buttons {
    text-align: right;
}

#cookie-consent-footer .buttons button {
    margin: 0 0 0 15px;
}

#cookie-consent-footer .buttons button.btn-outline-secondary {
    color: #FFF;
}

@media (max-width: 768px) {
    #cookie-consent-footer .buttons {
        text-align: center;
    }

    #cookie-consent-footer .buttons button {
        margin: 15px 15px 0 0;
    }
}

/**
 * Cookie accept modal
 */
#cookie-consent-modal .modal-body {
    font-size: .8rem
}

#cookie-consent-modal label {
    cursor: pointer;
}

#cookie-consent-modal label.cursor-default {
    cursor: default;
}

#cookie-consent-modal .checkbox-column {
    display: flex;
    align-content: center;
    justify-content: center;
}

#cookie-consent-modal .checkbox-column input[type="checkbox"] {
    display: none;
}

#cookie-consent-modal .checkbox-column label {
    padding: 0;
    display: flex;
    align-self: center;
}

#cookie-consent-modal .checkbox-column label:before {
    display: inline-block;
    position: relative;
    top: 2px;
    text-align: center;
    font-family: "fontello";
    color: #888;
    font-size: 24px;
    content: '\f10c';
    padding-right: 4px;
}

#cookie-consent-modal .checkbox-column input[type="checkbox"]:checked + label {
    color: #1d9b7c
}

#cookie-consent-modal .checkbox-column input[type="checkbox"]:checked + label:before {
    position: relative;
    content: '\e801';
    color: #42d1ae;
}

#cookie-consent-modal .modal-body label {
    margin: 0;
}


#cookie-consent-modal .modal-body h5 {
    user-select: none;
    font-size: 1.1rem;
    font-weight: bold;
    font-family: "Rubik", serif;
    margin: 0;
    padding: 0;
}

#cookie-consent-modal .modal-body p {
    padding: 0;
    margin: 2px 0 0 0;
}

#cookie-consent-modal .modal-body a[role="button"] {
    display: block;
    margin: 3px 0 0 0;
    color: #1D9B7C;
    font-weight: bold;
    text-transform: uppercase;
    font-size: .7rem;
}

#cookie-consent-modal .cookie-table > div {
    padding-top: 10px;
}

#cookie-consent-modal .cookie-table table {
    max-width: 100%;
    margin-bottom: 0
}

#cookie-consent-modal .cookie-table table th,
#cookie-consent-modal .cookie-table table td {
    padding: 4px 8px;
}

#cookie-consent-modal .cookie-table table thead {
    background: #EFEFEF;
    color: #444;
}

#cookie-consent-modal .cookie-table table tbody tr td {
    vertical-align: top;
    line-height: 130%;
    color: #555;
}

@media (max-width: 768px) {
    #cookie-consent-modal .modal-dialog {
        margin-top: 10px;
    }

    #cookie-consent-modal .modal-content {
        margin: 0;
    }
}