/* custom loader css */
#loading-custom {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 5px solid rgb(26 108 97 / 56%);
    border-radius: 50%;
    border-top-color: #fff;
    animation: loading-custom-spin 1s ease-in-out infinite;
    -webkit-animation: loading-custom-spin 1s ease-in-out infinite;
    position: fixed;
    top: 50%;
    left: 70%;
}

@keyframes loading-custom-spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes loading-custom-spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

/* COOKIE POPUP STYLES */

.cookie-popup {
    font-size: 0.875rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: fixed;
    bottom: -6.25rem;
    left: 1.25rem;
    right: 1.25rem;
    padding: 0.625rem 0.9375rem;
    box-shadow: 0 0 0.625rem 0 rgba(0, 0, 0, 0.15);
    line-height: 150%;
    transition: opacity 0.5s;
    opacity: 0;
    z-index: 1000;
}

.cookie-popup--short {
    right: none;
    width: 21.875rem;
}

.cookie-popup--dark {
    background: #000;
    color: #fff;
}

.cookie-popup--not-accepted {
    opacity: 1;
    animation: cookie-popup-in 0.5s ease forwards;
}

.cookie-popup--accepted {
    opacity: 0;
}

.cookie-popup a {
    color: skyblue;
}

.cookie-popup a:visited {
    color: skyblue;
    text-decoration: none;
}

.cookie-popup-actions {
    flex: 1;
    text-align: right;
}

.cookie-popup-actions button {
    color: orange;
    border: none;
    background: none;
    font-family: inherit;
    font-style: inherit;
    font-size: inherit;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.75rem;
    padding: 0;
    cursor: pointer;
}

.cookie-popup-actions button:hover {
    text-decoration: underline;
}

@keyframes cookie-popup-in {
    from {
        bottom: -6.25rem;
    }

    to {
        bottom: 1.25rem;
    }
}


/* datatable css */

.dataTables_length label {
    text-transform: capitalize;
}