body.toolbar-fixed #jury-form, body.toolbar-fixed #warrant-form, body.toolbar-fixed .juryWrapper, body.toolbar-fixed #warrantPage {
    margin-top: 3%;
}

#tableWarrant, #tableJury, #juryInformation {
    width: 100%;
    margin: 20px auto;
    table-layout: fixed;
}

#tableWarrant tr:not(.content-row), #tableJury tr:not(.content-row) {
    background: #899FAE;
    color: white;
}

#tableWarrant th, #tableJury th, #juryInformation th {
    border-collapse: collapse;
    padding: 10px;
    border: solid 1px;
    text-align: center;
}

#tableWarrant td, #tableJury td, #juryInformation td {
    padding: 10px;
    border: solid 1px;
    text-align: center;
}

/* Loader */
#overlay {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0, 0, 0, 0.6);
}

.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}

.is-hide {
    display: none;
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

    /* Jury Page */
    .juryWrapper {
        display: flex;
        gap: 10px;
    }

    .juryLeft {
        flex-basis: 80%;
    }

    .juryRight {
        flex-basis: 20%;
    }
}

.juryTable {
    text-align: center;
    overflow-x: scroll;
    overflow-y: scroll;
    display: block;
}

.table-header {
    background: #899FAE;
    color: white;
}