.f-error {
    color: #FF5733;
}

label {
    display: inline-block;
    width: 8em;
}

input {
    width: 18em;
}

input.ad-read-only {
    background-color: azure;
}

input.staff-form-button {
    margin-left: 10em;
    height: 3em;
}

input.user-form-button {
    height: 3em;
}

select {
    width: 18em;
}

html {
    line-height: 1.5;
}


/* Here is where the magic happens */

#spin-monkey {
    width: 25%;
}

.spinner-body {
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    -webkit-animation: rotator 1.4s linear infinite;
    animation: rotator 1.4s linear infinite;
}

@-webkit-keyframes rotator {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(270deg);
    }
}

@keyframes rotator {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(270deg);
    }
}

.path {
    stroke-dasharray: 187;
    stroke-dashoffset: 0;
    transform-origin: center;
    -webkit-animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
    animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
}

@-webkit-keyframes colors {
    0% {
        stroke: #002f5e;
    }
    25% {
        stroke: #b00f35;
    }
    50% {
        stroke: #fdd073;
    }
    75% {
        stroke: #b7c8c3;
    }
    100% {
        stroke: #002f5e;
    }
}

@keyframes colors {
    0% {
        stroke: #002f5e;
    }
    25% {
        stroke: #b00f35;
    }
    50% {
        stroke: #fdd073;
    }
    75% {
        stroke: #b7c8c3;
    }
    100% {
        stroke: #002f5e;
    }
}

@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 187;
    }
    50% {
        stroke-dashoffset: 46.75;
        transform: rotate(135deg);
    }
    100% {
        stroke-dashoffset: 187;
        transform: rotate(450deg);
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 187;
    }
    50% {
        stroke-dashoffset: 46.75;
        transform: rotate(135deg);
    }
    100% {
        stroke-dashoffset: 187;
        transform: rotate(450deg);
    }
}


/* QUL styles */

.qul-logo {
    /* background: url(https://www.queensu.ca/resources/assets/logos/Queens-logo-reversed.svg) no-repeat; */
    display: inline-block;
    width: 100%;
    max-width: 469px;
    height: 72px;
    margin-top: 15px;
    position: relative;
    z-index: 50;
    background-size: 100%;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

body {
    /* background: url(https://library.queensu.ca/sites/all/themes/qul/images/main-bg.jpg) no-repeat center center; */
    background-attachment: fixed;
    background-size: cover;
    padding-top: 100px;
}

.header-navbar {
    background-color: #fff;
    position: fixed;
    z-index: 100;
    top: 0;
    border-bottom: 3px solid #002f5e;
}

.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 1170px;
    background-color: #fff;
    padding-bottom: 36px;
}
