:root {
    --wet-asphalt-blue: #34495e;
    --alizarin-red: #e74c3c;
    --carrot-orange: #e67e22;
    --emerald-green: #2ecc71;
    --belize-hole-blue: #2980b9;
    --cloud-white: #ecf0f1;
    --tq-blue: #004aa0;
    --custom-box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.1) 0px 1px 2px -1px;
}

body {
    font-size: .875rem;
    font-family: 'Neo-Regular', sans-serif;
    background: #fff;
    height: 100vh;
}

a {
    color: var(--wet-asphalt-blue);
    text-decoration-style: dotted;
}

.btn.btn-primary {
    background-color: var(--tq-blue);
    border-color: var(--tq-blue);
}

.btn.btn-outline-primary {
    color: var(--tq-blue);
    border-color: var(--tq-blue);
}

.btn.btn-outline-primary:hover {
    color: #fff;
    background-color: var(--tq-blue);
    border-color: var(--tq-blue);
}

.custom-padding {
    padding-top: 65px;
}

/** Helper Classes **/
.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 20px 0;
}

.important-input {
    color: var(--alizarin-red);
}

.custom-headline {
    background: #004aa0;
    color: #fff;
    padding: 10px;
    margin-bottom: 10px;
    display: inline-block;
}

.bg-timedq {
    background-color: var(--tq-blue);
}

.highlight-color {
    color: var(--tq-blue);
}

.card.custom-card .card-body .card-link {
    position: absolute;
    right: 10px;
    bottom: 10px;
}

/** FormValidation FIX **/

.fv-plugins-bootstrap5:not(.fv-plugins-bootstrap5-form-inline) label ~ .fv-plugins-icon {
    top: 40px !important;
    width: 15px !important;
    height: 15px !important;
    right: 12px;
}

.fv-plugins-bootstrap5 .row .fv-plugins-icon {
    right: 20px !important;
}

/** Slider Switch **/

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 23px;
    border: none;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e74c3c;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2ecc71;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2ecc71;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/** FullCalendar **/

table.fc-col-header tbody tr th.fc-col-header-cell.fc-day {
    padding: 20px;
    vertical-align: middle;
    background: #004aa0;
}

table.fc-col-header tbody tr th.fc-col-header-cell.fc-day a {
    color: #fff !important;
}

button.fc-button.fc-button-primary {
    background-color: #004aa0;
    border-color: #004aa0;
}

button.fc-button.fc-button-primary:hover {
    background-color: var(--wet-asphalt-blue);
}

/** Accordion **/
.accordion .accordion-item .accordion-header button {
    border: 1px solid var(--tq-blue);
    color: var(--tq-blue);
    background: #fff;
    font-size: 1.25rem;
}