﻿:root {
    --ocs-night: #2b3087;
    --ocs-evening: #5e76f4;
    --ocs-noon: #ffde22;
    --ocs-darkgrey: #808285;
    --ocs-midgrey: #808285;
    --ocs-sunrise: #ff773b;
    --ocs-orange: #f15f22;
    --ocs-blue: #293771;
}

.loader {
    border-top: 8px solid #ff773b;
    border-right: 8px solid #2b3087;
    border-bottom: 8px solid #ff773b;
    border-left: 8px solid #2b3087;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

.bigLoader {
    border-top: 16px solid var(--ocs-orange);
    border-right: 16px solid var(--ocs-night);
    border-bottom: 16px solid var(--ocs-orange);
    border-left: 16px solid var(--ocs-night);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.keepToFarRightAndCentredMiddle {
    margin-left: auto;
    margin-top: auto;
    margin-bottom: auto;
}


body {
    font-family: 'Hellix', sans-serif;
}

.field-validation-error {
    color: #800020;
}

.usernameInNavStyling {
    color: var(--ocs-orange);
    font-weight: bold;
}

/* Logo */
.ocsLogoContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    height: 2rem;
}

.portalPageNameLogo {
    font-size: 2.5rem;
    font-weight: normal;
    margin-bottom: 5%;
    display: flex;
}

.portalPageNameLogo .portalNameLogoLetter {
    mix-blend-mode: multiply;

}

.portalPageNameLogo .portalNameLogoLetter:nth-child(odd) {
        color: var(--ocs-night);
}

.portalPageNameLogo .portalNameLogoLetter:nth-child(even) {
    color: var(--ocs-sunrise);
}

.ocsLogo{
    margin-right: 20px;
    height: 2rem;
}
/* End Logo */

/* Nav bar*/
.nav-link.active {
    font-weight: bold;
    color: var(--ocs-sunrise);
}
/* End Navbar*/


.centeredElement {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.blueBackground {
    background-color: var(--ocs-night);
}

.lighterBlueBackground {
    background-color: var(--ocs-evening);
}
.ocsTheme {
    color: var(--bs-light);
    font-family: 'Hellix', sans-serif;
}

.ocs-btn-secondary {
    background-color: var(--ocs-noon);
}

.ocs-btn-secondary:hover {
    background-color: var(--ocs-night);
    color: var(--ocs-sunrise);
}

.ocs-btn-primary {
    background-color: var(--ocs-orange);
}

.ocs-btn-primary:hover{
    background-color: var(--ocs-orange);
    color: var(--ocs-blue);
}

.ocs-btn-primary:active {
    background-color: var(--ocs-darkgrey);
    color: ghostwhite;
}

table{
    color:white !important;
}

table > tbody > tr:nth-of-type(odd) {
    color: #F2F0E6;
}
.ocs-table{
    color: white;
}

.ocs-table > tbody > tr:nth-of-type(odd) {
    color: #F2F0E6;
}

body {
    margin-bottom: 0px !important;
}

tr {
    border-bottom-color: var(--ocs-sunrise);
}

form-control{
    border-color: var(--ocs-sunrise);

}

.border-bottom {
    border-bottom-color: var(--ocs-sunrise) !important;
}


.border-top {
    border-top-color: var(--ocs-sunrise) !important;
}

.btn-link{
    color: var(--ocs-sunrise);
    font-size: 16px;
}

.btn-pageLink{
    width:fit-content;
    height: fit-content;
}

label.form-label{
    color: var(--ocs-orange);
    font-weight:bold;
}

.select-wrapper {
    border-radius: 36px;
    border: 2px solid var(--ocs-noon);
}

a.active{
    color: var(--ocs-noon) !important;
}

.modal-header, .modal-content{
    background-color: var(--ocs-evening);
}

