﻿/* All Module/Site CSS */
@import url('allModule.css');
:root {
    --clientColor: rgba(245, 158, 11, 1); /* Define the variable */
    --p2cCircleFill: #af1757; /* For the education zone circles */
    --p2cBrand: #1B6C86; /* Brand color */
    --p2cBrandHover: #48899E; /* Brand's hover color */
    --p2cBrandDisabled: #D5E3E7; /* Brand's disabled color */
    --p2cBrandSecondaryHover: #F8F9F9; /* Brand's hover color */
    --p2cBrandSecondaryPress: #DEE7EB; /* Brand's hover color */
    --p2cBrandSecondaryDisabled: #BEDAE3; /* Secondary's disabled color */
    --p2cBrandTertiaryDisabled: #BEDAE3; /* Tertiary's disabled color */
    --p2cPositive: #067A57; /* Alert/Icon color */
    --p2cPositiveFillWeak: #F4FFFE; /* Alert/Icon color */
    --p2cPositiveFillStrong: #00AFA3; /* Alert/Icon color */
    --p2cNegative: #C73A3A; /* Alert/Icon color */
    --p2cNegativeFillWeak: #FFF0F7; /* Alert/Icon color */
    --p2cNegativeFillStrong: #AF0B59; /* Alert/Icon color */
    --p2cCaution: #8F6C1A; /* Alert/Icon color */
    --p2cCautionFillWeak: #FFFAED; /* Alert/Icon color */
    --p2cCautionFillStrong: #F9BE2B; /* Alert/Icon color */
    --p2cTextStrong: #252525; /* Text color */
    --p2cTextWeak: #666666; /* Text color */
    --p2cStrokeStrong: #8C8C8C; /* Border color */
    --p2cStrokeWeak: #E6E6E6; /* Border color */
    --p2cStrokeWeightMd: .5px; /* Border width*/
    --p2cFillStrong: #F2F2F2; /* Background color */
    --p2cFillVeryStrong: #A49C9C; /* Background color */
    --p2cFillWeak: #FAFAFA; /* Background color */
    --p2cFillWhite: #FFFFFF; /* Background color */
    --p2cBorderRadiusSm: 8px; /* Border radius rounding */
    --p2cBorderRadiusMd: 16px; /* Border radius rounding */
    --p2cBorderRadiusLg: 24px; /* Border radius rounding */
    --p2cFontWeightNormal: 400; /* Font weight */
    --p2cFontWeightSemibold: 500; /* Font weight */
    --p2cFontWeightBold: 700; /* Font weight */
    --p2cSvgBlueChillFill: #f2f8f8; /*  */
    --p2cSvgBlueChillText: #388782; /*  */
    --p2cFillBookmark: #c9dce2;
}

.p2c-blue-chill-svg {
    background-color: var(--p2cSvgBlueChillFill);
    color: var(--p2cSvgBlueChillText);
}

.p2c-circle-fill {
    background: var(--p2cCircleFill);
    border: 2px solid var(--p2cCircleFill);
}

.p2c-circle-border{
    border: 2px solid var(--p2cCircleFill);
}

.course-text-color {
    color: var(--clientColor);
}

.course-color {
    background: var(--clientColor);
}

[v-cloak] { 
    display: none;
}

html {
    -ms-scroll-chaining: none;
    scroll-behavior: smooth;
}

/* Client Text color - style guide */

.p2c-border-bottom-brand {
    border-style: solid !important;
    border-color: transparent transparent var(--p2cBrand) transparent !important;
    border-width: 0px 0px 2px 0px !important;
}

.p2c-brand-text {
    color: var(--p2cBrand);
}

.p2c-brand-fill {
    background: var(--p2cBrand);
}

.p2c-brand-hover:hover {
    background: var(--p2cBrandHover);
}

.p2c-brand-disabled-hover:hover {
    background-color: var(--p2cBrandDisabled);
}

.brand-border {
    border-color: var(--p2cBrand) !important;
}

.brand-button {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem 0.5rem 1rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 500;
    color: var(--p2cFillWhite);
    background-color: var(--p2cBrand);
    border: var(--p2cStrokeWeightMd) solid;
    border-color: var(--p2cBrand);
    border-radius: var(--p2cBorderRadiusSm);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.brand-button:hover {
    background-color: var(--p2cBrandHover);
}

.brand-button:active {
    transform: scale(0.95); /* "Pressed" effect */
    transform: translateY(2px);
}

.brand-button:focus {
    outline: 2px solid var(--p2cBrand);
    outline-offset: 2px;
}

.brand-button:disabled {
    background-color: var(--p2cBrandDisabled);
}

.negative-button {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem 0.5rem 1rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 500;
    color: var(--p2cFillWhite);
    background-color: var(--p2cNegative);
    border: var(--p2cStrokeWeightMd) solid;
    border-color: var(--p2cNegative);
    border-radius: var(--p2cBorderRadiusSm);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.negative-button:hover {
    background-color: var(--p2cNegativeFillStrong);
}

.negative-button:active {
    transform: scale(0.95); /* "Pressed" effect */
    transform: translateY(2px);
}

.negative-button:focus {
    outline: 2px solid var(--p2cNegative);
    outline-offset: 2px;
}

.negative-button:disabled {
    background-color: var(--p2cNegativeFillWeak);
}

.brand-secondary-button {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem 0.5rem 1rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 500;
    color: var(--p2cBrand);
    background-color: var(--p2cFillWhite);
    border: var(--p2cStrokeWeightMd) solid;
    border-color: var(--p2cBrand);
    border-radius: var(--p2cBorderRadiusSm);
    opacity: 1;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.brand-secondary-button:hover {
    background-color: var(--p2cBrandSecondaryHover);
}

.brand-secondary-button:active {
    background-color: var(--p2cBrandSecondaryPress);
    transform: scale(0.95); /* "Pressed" effect */
    transform: translateY(2px);
}

.brand-secondary-button:focus {
    outline: 2px solid var(--p2cBrand); /* Tailwind blue-600 */
    outline-offset: 2px;
}

.brand-secondary-button:disabled {
    background-color: var(--p2cBrandSecondaryDisabled);
    border-color: var(--p2cBrandSecondaryDisabled);
}

.brand-tertiary-button-black {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    text-decoration: underline;
    color: black;
    border: 1px solid;
    border-color: transparent;
    opacity: 1;
    transition: color 0.3s ease, transform 0.2s ease;
}

.brand-tertiary-button {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    text-decoration: underline;
    color: var(--p2cBrand);
    border: 1px solid;
    border-color: transparent;
    opacity: 1;
    transition: color 0.3s ease, transform 0.2s ease;
}

.brand-tertiary-button:hover, .brand-tertiary-button-black:hover {
    color: var(--p2cBrand);
    text-decoration: none;
}

.brand-tertiary-button:active, .brand-tertiary-button-black:active {
    color: var(--p2cBrand);
    text-decoration: none;
    transform: scale(0.95); /* "Pressed" effect */
    transform: translateY(2px);
}

.brand-tertiary-button:focus {
    outline: 2px solid var(--p2cBrand); /* Tailwind blue-600 */
    outline-offset: 2px;
    text-decoration: underline;
}

.brand-tertiary-button:disabled {
    color: var(--p2cBrandTertiaryDisabled);
}

.light-orange, .p2c-platform-background {
    background: #FFFAF7;
}

.light-orange-border {
    border-width: 6px;
    border-color: #FFFAF7;
}

.p2c-font-normal {
    font-weight: var(--p2cFontWeightNormal) !important;
}

.p2c-font-semibold {
    font-weight: var(--p2cFontWeightSemibold) !important;
}

.p2c-font-bold {
    font-weight: var(--p2cFontWeightBold) !important;
}

.p2c-text-brand {
    color: var(--p2cBrand);
}

.p2c-t-black, .p2c-text-strong {
    color: var(--p2cTextStrong); /* Text strong */
}

.p2c-t-dark-gray, .p2c-text-weak {
    color: var(--p2cTextWeak); /* Text weak */
}

.p2c-t-gray {
    color: #B3B3B3;
}

.p2c-t-light-gray {
    color: #DEDEDE;
}

.p2c-t-black::placeholder,
.p2c-text-strong::placeholder,
.p2c-t-dark-gray::placeholder,
.p2c-t-gray::placeholder,
.p2c-t-light-gray::placeholder {
    color: var(--p2cTextWeak); /* Input placeholder text color */
}

/* Client background color - style guide */
.p2c-bg-dark, .p2c-fill-strong {
    background-color: var(--p2cFillStrong);
}

.p2c-fill-very-strong {
    background-color: var(--p2cFillVeryStrong);
}

.p2c-bg-light, .p2c-fill-weak, .p2c-fill-weak-hover:hover {
    background-color: var(--p2cFillWeak);
}

.p2c-fill-strong-hover:hover {
    background-color: var(--p2cStrokeWeak);
}

/* Client border color - style guide */

.p2c-bc-gray, .p2c-stroke-strong, .p2c-stroke-strong-hover:hover { /* Stroke strong */
    border-color: var(--p2cStrokeStrong) !important; /* !important is wall paper right now for input element sitewide style*/
}
.p2c-bc-light-gray, .p2c-stroke-weak, .p2c-stroke-weak-hover:hover { /* Stroke weak */
    border-color: var(--p2cStrokeWeak) !important; /* !important is wall paper right now for input element sitewide style*/
}

.p2c-stroke-brand {
    border-color: var(--p2cBrand) !important;
}

/* Client border radius */

.p2c-border-r-sm {
    border-radius: var(--p2cBorderRadiusSm) !important;
}

.p2c-border-r-md {
    border-radius: var(--p2cBorderRadiusMd) !important;
}

.p2c-border-r-lg {
    border-radius: var(--p2cBorderRadiusLg) !important;
}


/* Top corners rounding only */

.p2c-border-top-lg {
    border-radius: var(--p2cBorderRadiusLg) var(--p2cBorderRadiusLg) 0 0 !important;
}

.p2c-border-bottom-lg {
    border-radius: 0 0 var(--p2cBorderRadiusLg) var(--p2cBorderRadiusLg) !important;
}

.p2c-border-right-lg {
    border-radius: 0 var(--p2cBorderRadiusLg) var(--p2cBorderRadiusLg) 0 !important;
}

.p2c-border-left-lg {
    border-radius: var(--p2cBorderRadiusLg) 0 0 var(--p2cBorderRadiusLg) !important;
}

.p2c-border-top-md {
    border-radius: var(--p2cBorderRadiusMd) var(--p2cBorderRadiusMd) 0 0 !important;
}

.p2c-border-bottom-md {
    border-radius: 0 0 var(--p2cBorderRadiusMd) var(--p2cBorderRadiusMd) !important;
}

.p2c-border-right-md {
    border-radius: 0 var(--p2cBorderRadiusMd) var(--p2cBorderRadiusMd) 0 !important;
}

.p2c-border-left-md {
    border-radius: var(--p2cBorderRadiusMd) 0 0 var(--p2cBorderRadiusMd) !important;
}

.p2c-border-top-sm {
    border-radius: var(--p2cBorderRadiusSm) var(--p2cBorderRadiusSm) 0 0 !important;
}

.p2c-border-bottom-sm {
    border-radius: 0 0 var(--p2cBorderRadiusSm) var(--p2cBorderRadiusSm) !important;
}

.p2c-border-right-sm {
    border-radius: 0 var(--p2cBorderRadiusSm) var(--p2cBorderRadiusSm) 0 !important;
}

.p2c-border-left-sm {
    border-radius: var(--p2cBorderRadiusSm) 0 0 var(--p2cBorderRadiusSm) !important;
}

/* Client alert/icon colors */
.p2c-fill-weak-positive {
    background-color: var(--p2cPositiveFillWeak);
}
.p2c-fill-strong-positive {
    background-color: var(--p2cPositiveFillStrong);
}

.p2c-fill-weak-negative {
    background-color: var(--p2cNegativeFillWeak);
}
.p2c-fill-strong-negative {
    background-color: var(--p2cNegativeFillStrong);
}

.p2c-fill-weak-caution {
    background-color: var(--p2cCautionFillWeak);
}
.p2c-fill-strong-caution {
    background-color: var(--p2cCautionFillStrong);
}

/* Client alert/icon colors */
.p2c-text-positive {
    color: var(--p2cPositive);
}


.p2c-text-negative {
    color: var(--p2cNegative);
}

.p2c-text-caution {
    color: var(--p2cCaution);
}

.p2c-stroke-positive {
    border-color: var(--p2cPositive);
}

.p2c-stroke-negative {
    border-color: var(--p2cNegative);
}

.p2c-stroke-caution {
    border-color: var(--p2cCaution);
}

/* Client text/line height/sizes*/
.p2c-text-display {
    font-size: 56px;
    line-height: 64px;
    font-weight: var(--p2cFontWeightSemibold);
}

.p2c-text-h1 {
    font-size: 40px;
    line-height: 48px;
    font-weight: var(--p2cFontWeightSemibold);
}

.p2c-text-h2 {
    font-size: 32px;
    line-height: 40px;
    font-weight: var(--p2cFontWeightSemibold);
}

.p2c-text-h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: var(--p2cFontWeightSemibold);
}

.p2c-text-h4 {
    font-size: 20px;
    line-height: 28px;
    font-weight: var(--p2cFontWeightSemibold);
}

.p2c-text-h5 {
    font-size: 18px;
    line-height: 24px;
    font-weight: var(--p2cFontWeightSemibold);
}

.p2c-text-sm {
    font-size: 16px;
    line-height: 24px;
}

.p2c-text-tiny, .p2c-text-uppercase {
    font-size: 14px;
    line-height: 20px;
}

.navigation-button {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem 0.5rem 1rem;
    line-height: 1.75rem;
    font-weight: 500;
    color: var(--p2cTextStrong);
    background: #f2f2f2;
    border: var(--p2cStrokeWeightMd) solid;
    border-color: var(--p2cStrokeWeak);
    border-radius: var(--p2cBorderRadiusSm);
    opacity: 1;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.navigation-button:hover {
    background: #e6e6e6;
    cursor: pointer;
    border-color: var(--p2cStrokeStrong);
}

.navigation-button:focus {
    background: var(--p2cFillStrong);
    border-color: var(--p2cTextStrong);
    border-color: var(--p2cStrokeStrong);
}

.navigation-button:active {
    transform: scale(0.95); /* "Pressed" effect */
    transform: translateY(2px);
    border-color: var(--p2cStrokeStrong);
}

.navigation-button:focus {
    outline: 2px solid var(--p2cStrokeStrong);
    outline-offset: 2px;
    border-color: var(--p2cStrokeStrong);
}

.navigation-button:disabled {
    opacity: 0.3;
}

select {
    padding: 0.5rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    --tw-shadow: 0 0 #0000;
}

.select-pl-10 {
    padding-left: 2.5rem;
}

.select-pr-10 {
    padding-right: 2.5rem;
}

[multiple], [type=date], [type=datetime-local], [type=email], [type=month], [type=number], [type=password], [type=search], [type=tel], [type=text], [type=time], [type=url], [type=week], select, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    border-color: #6b7280;
    border-width: 1px;
    border-radius: 0;
    padding-top: 0.5rem;
    padding-right: 0.75rem;
    padding-bottom: 0.5rem;
    padding-left: 0.75rem;
    font-size: 1rem;
    line-height: 1.5rem;
    --tw-shadow: 0 0 #0000;
}

.select-dropdown-padding-important {
    padding: 0 2rem 0 0.5rem !important
}

#skiptocontent a {
    padding: 6px;
    position: absolute;
    top: -40px;
    left: 0px;
    color: white;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
    border-bottom-right-radius: 8px;
    background: var(--p2cBrand);
    -webkit-transition: top 1s ease-out;
    transition: top 1s ease-out;
    z-index: 100;
}

#skiptocontent a:focus {
    position: absolute;
    left: 0px;
    top: 0px;
    outline-color: transparent;
    -webkit-transition: top .1s ease-in;
    transition: top .1s ease-in;
}

@media (prefers-reduced-motion: reduce) {
    #skiptocontent a {
        transition-duration: 0.001ms !important;
    }
}

.view-container {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
}

.min-h-70 {
    min-height: 16rem;
    height: fit-content();
}

.min-h-20rem {
    min-height: 20rem;
    height: fit-content();
}

.max-h-50-percent {
    max-height: 50%;
}

.w-41 {
    width: 10.5rem;
}

.indent-first {
    text-indent: 1.5rem; /* Adjust as needed */
}

/* Assessments Modal_Layout

    @media screen and (min-width: 1280px) {
            .view-container {
                max-width: 1280px;
            }
        }

*/

.montserrat {
    font-family: 'Montserrat', sans-serif;
}

.open-sans {
    font-family: 'Open Sans', sans-serif;
}

.slab {
    font-family: 'roboto-slab', serif;
}

/* Bootstrap overwrites I think */

.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.alert-dismissible {
    padding-right: 4rem;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-link {
    font-weight: 400;
    color: #337ab7;
    border-radius: 0;
}

.btn-danger {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a;
}

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.text-danger {
    color: #dc3545;
}

/* End of bootstrap overwrites */

.action_button {
    border-color: rgba(209,213,219,1) !important;
    /*			background: #ebf4ff !important; /*bg-indigo-500*/
    /*font-weight: 700;*/ /*font-bold*/
    border-radius: .25rem; /*rounded*/
    border: 1px solid transparent; /*border border-transparent*/
    cursor: pointer;
    padding-left: 1rem; /*pl-4*/
    padding-right: 1rem; /*pl-4*/
    padding-top: .5rem; /*pl-2*/
    padding-bottom: .5rem; /*pl-2*/
    margin: 8px 0px 8px 6px;
}

.action_button:hover {
    color: #fff !important; /*text-white*/
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.1), 0 1px 2px 0 rgba(0,0,0,.06); /*shadow*/
    /*font-weight: 700;*/ /*font-bold*/
    border-radius: .25rem; /*rounded*/
    cursor: pointer;
    background: #667eea !important; /*bg-indigo-500*/
    border: 1px solid transparent; /*border border-transparent*/
}

/* Tailwind bg-yellow-100 */
.bookmark-icon {
    fill: rgba(254, 243, 199, 1);
}

.disabled-button {
    cursor: not-allowed;
    display: inline-flex;
    align-items: center;
    border-width: 1px;
    border-color: transparent;
    padding: 0.5rem 1rem 0.5rem 1rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 500;
    border-radius: 0.375rem;
    background-color: #E5E7EB;
    color: #4B5563;
    opacity: 50%;
}

.district-announcement-color-border {
    border-color: #1E434C;
}

.brand-color-border {
    border-color: var(--p2cBrand) !important;
}

.client-color {
    background: #007071;
}

.client-color-text {
    color: #007071;
}

.client-color-border {
    border-color: #007071;
}

.client-color-button {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    border-width: 1px;
    border-color: rgba(156,163,175,1);
    padding: 0.5rem 1rem 0.5rem 1rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 500;
    border-radius: 0.375rem;
    color: rgba(255, 255, 255, 1);
    background-color: #007071;
}

.client-color-button-small {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    border-width: 1px;
    border-color: rgba(156,163,175,1);
    padding: 0.2rem 0.5rem 0.2rem 0.5rem;
    font-size: 1rem;
    line-height: 1.75rem;
    font-weight: 500;
    border-radius: 0.375rem;
    color: rgba(255, 255, 255, 1);
    background-color: #007071;
}

.client-color-button-small:hover, .client-color-button:hover {
    background-color: #005758;
}

.client-color-button-small:focus, .client-color-button:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px white, 0 0 0 4px #007071;
}

.dark-orange {
    background: #F15F04;
}

.dark-orange-border {
    border-color: #F15F04;
}

.dark-orange:hover {
    background: #D84600;
}

.dark-orange:focus {
    background: #D84600;
}

.dark-orange-text {
    color: #F15F04;
}

.dark-orange-link {
    color: #F15F04;
}

.dark-orange-link:hover {
    color: #D84600;
}

.dark-orange-link:focus {
    color: #D84600;
}

.dark-orange-button-small-disabled {
    padding: 0.2rem 0.5rem 0.2rem 0.5rem;
    cursor: not-allowed;
    display: inline-flex;
    align-items: center;
    border-width: 1px;
    border-color: rgba(156,163,175,0.8);
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 500;
    border-radius: 0.375rem;
    color: #F15F0490;
    background-color: #F15F0420;
}

.dark-orange-button, .dark-orange-button-no-focus {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    border-width: 1px;
    border-color: rgba(156,163,175,1);
    padding: 0.5rem 1rem 0.5rem 1rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 500;
    border-radius: 0.375rem;
    color: rgba(255, 255, 255, 1);
    background-color: #F15F04;
}

.dark-orange-button-disabled, .dark-orange-button-disabled-no-focus {
    cursor: not-allowed;
    display: inline-flex;
    align-items: center;
    border-width: 1px;
    border-color: rgba(156,163,175,0.8);
    padding: 0.5rem 1rem 0.5rem 1rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 500;
    border-radius: 0.375rem;
    color: #F15F0490;
    background-color: #F15F0420;
}

.dark-orange-button-disabled-no-padding {
    cursor: not-allowed;
    display: inline-flex;
    align-items: center;
    border-width: 1px;
    border-color: rgba(156,163,175,0.8);
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 500;
    border-radius: 0.375rem;
    color: #F15F0490;
    background-color: #F15F0420;
}

.dark-orange-button-circle {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    border-width: 1px;
    border-color: rgba(156,163,175,1);
    padding: 0.5rem;
    font-size: 1rem;
    line-height: 1.75rem;
    font-weight: 500;
    border-radius: 9999px;
    color: rgba(255, 255, 255, 1);
    background-color: #F15F04;
}

.dark-orange-button-small {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    border-width: 1px;
    border-color: rgba(156,163,175,1);
    padding: 0.2rem 0.5rem 0.2rem 0.5rem;
    font-size: 1rem;
    line-height: 1.75rem;
    font-weight: 500;
    border-radius: 0.375rem;
    color: rgba(255, 255, 255, 1);
    background-color: #F15F04;
}

.dark-orange-button-small:hover, .dark-orange-button:hover, .dark-orange-button-circle:hover {
    background-color: #D84600;
}

.dark-orange-button-small:focus, .dark-orange-button:focus, .dark-orange-button-circle:focus, .dark-orange-button-disabled-no-padding:focus, .dark-orange-button-disabled-no-padding:focus, .dark-orange-button-disabled:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px white, 0 0 0 4px #F15F04;
}

.inset-career-shadow {
    box-shadow: inset 2px 0 1px -1px var(--p2cStrokeWeak), 
        inset 0px 0px 0px 5px rgba(0,0,0,0), 
        inset 0px 2px 2px var(--p2cStrokeWeak);
}

.inactive-stepper-circle {
    background: var(--p2cBrandDisabled);
}

    .inactive-stepper-circle:hover {
        background: var(--p2cBrand);
    }

.stepper-circle {
    background: var(--p2cBrand);
}

    .stepper-circle:hover {
        background: var(--p2cBrandHover);
    }

.stepper-line {
    background: var(--p2cBrandDisabled);
}

.inactive-text {
    color: var(--p2cBrandDisabled);
}

.dark-green-text {
    color: #2b6e72;
}

.dark-green-border {
    border-color: #2b6e72;
    border-width: 3px;
}

.dark-green-border-l {
    border-color: #2b6e72;
    border-width: 0 0 0 3px;
}

.dark-green-button {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-items: center;
    justify-content: center;
    border-width: 1px;
    border-color: rgba(156,163,175,1);
    padding: 0.5rem 1rem 0.5rem 1rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 500;
    border-radius: 0.375rem;
    color: rgba(255, 255, 255, 1);
    background-color: #2b6e72;
}

.dark-green-button:hover {
    background-color: #183d3f;
}

.dark-green-button:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px white, 0 0 0 4px #2b6e72;
}

.dark-green-button-secondary {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-items: center;
    justify-content: center;
    border-width: 1px;
    border-color: #2b6e72;
    padding: 0.2rem 0.5rem 0.2rem 0.5rem;
    font-size: 1rem;
    line-height: 1.75rem;
    font-weight: 500;
    border-radius: 0.375rem;
    color: #2b6e72;
    background-color: #d1dfe0;
}

.dark-green-button-secondary:hover {
    background-color: #adc5c7;
}

.dark-green-button-secondary:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px white, 0 0 0 4px #d1dfe0;
} 

.course-card {
    cursor: pointer;
    border-width: 2px;
    transition: all .2s;
}

.course-card:hover {
    transform: translateY(-.4rem);
    border-color: var(--p2cBrand);
    box-shadow: 5px 6px 16px -2px rgba(81,81,81,0.36);
    -webkit-box-shadow: 5px 6px 16px -2px rgba(81,81,81,0.36);
    -moz-box-shadow: 5px 6px 16px -2px rgba(81,81,81,0.36);
}

.class-card a::after {
    cursor: pointer;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.custom-shadow-md {
    box-shadow: 3px 4px 12px -2px rgba(81,81,81,0.36);
    -webkit-box-shadow: 3px 4px 12px -2px rgba(81,81,81,0.36);
    -moz-box-shadow: 3px 4px 12px -2px rgba(81,81,81,0.36);
}

.arrow-circle {
    fill: #F15F04;
}

.assessment-orange {
    background: #F7941D;
}

.dark-orange-bottom-border {
    border-style: solid !important;
    border-color: transparent transparent #F15F04 transparent !important;
    border-width: 0px 0px 4px 0px !important;
}

.hover-translateY {
    position: relative;
    cursor: pointer;
    transition: all .2s;
}

.hover-translateY:hover {
    transform: translateY(-.4rem);
    box-shadow: 5px 6px 16px -2px rgba(81,81,81,0.36);
    -webkit-box-shadow: 5px 6px 16px -2px rgba(81,81,81,0.36);
    -moz-box-shadow: 5px 6px 16px -2px rgba(81,81,81,0.36);
    border-color: var(--p2cBrand);
}

.hover-card, gray-hover-card {
    transition: all .2s;
    transition-timing-function: ease-in-out;
}

.hover-card a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.hover-card:hover, .gray-hover-card:hover {
    backface-visibility: hidden;
    transform: translateY(-.4rem) translateZ(0);
    box-shadow: 5px 6px 16px -2px rgba(81,81,81,0.36);
    -webkit-box-shadow: 5px 6px 16px -2px rgba(81,81,81,0.36);
    -moz-box-shadow: 5px 6px 16px -2px rgba(81,81,81,0.36);
}

.resp-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
}

.resp-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    border: 0;
}

.table-width {
    width: 80rem;
}

.table-width-90vw {
    width: 90vw;
    max-width: 99vw;
}

.pulse {
    -webkit-animation: stretch-bounce .5s ease-in-out;
    -moz-animation: stretch-bounce .5s ease-in-out;
    animation: stretch-bounce .5s ease-in-out;
}

@-webkit-keyframes stretch-bounce { 
    0% { -webkit-transform: scale(1); } 
    25% { -webkit-transform: scale(1.5); } 
    50% { -webkit-transform: scale(0.9); } 
    65% { -webkit-transform: scale(1.2); } 
    100% { -webkit-transform: scale(1); } 
}

@-moz-keyframes stretch-bounce { 
    0% { -moz-transform: scale(1); } 
    25% { -moz-transform: scale(1.5); } 
    50% { -moz-transform: scale(0.9); } 
    65% { -moz-transform: scale(1.2); } 
    100% { -moz-transform: scale(1); } 
}

@keyframes stretch-bounce { 
    0% { transform: scale(1); } 
    25% { transform: scale(1.5); } 
    50% { transform: scale(0.9); } 
    65% { transform: scale(1.2); } 
    100% { transform: scale(1); } 
}

.fade-in-alert {
    animation: fadeInAlert ease-in-out 5s;
    -webkit-animation: fadeInAlert ease-in-out 5s;
    -moz-animation: fadeInAlert ease-in-out 5s;
    -o-animation: fadeInAlert ease-in-out 5s;
    -ms-animation: fadeInAlert ease-in-out 5s;
}

@keyframes fadeInAlert {
    0% { opacity: 0; }
    5% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
}

@-moz-keyframes fadeInAlert {
    0% { opacity: 0; }
    5% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
}

@-webkit-keyframes fadeInAlert {
    0% { opacity: 0; }
    5% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
}

@-o-keyframes fadeInAlert {
    0% { opacity: 0; }
    5% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
}

@-ms-keyframes fadeInAlert {
    0% { opacity: 0; }
    5% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
}

/* Tooltip container positions */
.css-only-tooltip-right, .css-only-tooltip-left, .css-only-tooltip-top {
    position: relative; /* making the tooltip a container for the tooltip text */
}

/* Hover states for showing the tooltip */
.css-only-tooltip-right:hover:before, .css-only-tooltip-left:hover:before, .css-only-tooltip-top:hover:before {
    display: block;
}

/* Tooltip for the right side */
.css-only-tooltip-right:before {
    content: attr(data-text); /* here's the magic */
    position: absolute;
    /* vertically center */
    top: 50%;
    transform: translateY(-50%);
    /* move to right */
    left: 100%;
    margin-left: 12px; /* small left margin */
    /* basic styles */
    min-width: 100px;
    border-radius: 6px;
    padding: 10px;
    background: #555;
    color: #fff;
    text-align: center;
    display: none; /* hide by default */
}

/* Tooltip for the left side */
.css-only-tooltip-left:before {
    content: attr(data-text); /* here's the magic */
    position: absolute;
    /* vertically center */
    top: 50%;
    transform: translateX(-100%) translateY(-50%);
    /* move to left */
    left: -40%;
    margin-right: 12px; /* small right margin */
    z-index: 10;
    /* basic styles */
    min-width: 100px;
    border-radius: 6px;
    padding: 10px;
    background: #555;
    color: #fff;
    text-align: center;
    display: none; /* hide by default */
}

/* Tooltip for the top side */
.css-only-tooltip-top:before {
    content: attr(data-text); /* here's the magic */
    position: absolute;
    /* position above */
    top: 0%;
    transform: translateX(-50%);
    /* move to the right */
    left: 100%;
    margin-left: 12px; /* small left margin */
    /* basic styles */
    min-width: 100px;
    border-radius: 6px;
    padding: 10px;
    background: #555;
    color: #fff;
    text-align: center;
    display: none; /* hide by default */
}

/* Arrow for right side tooltip */
.css-only-tooltip-right:after {
    content: "";
    position: absolute;
    /* position arrow on the right */
    left: 100%;
    /* vertically center */
    top: 50%;
    transform: translateY(-50%);
    /* the arrow */
    border: 8px solid #555;
    border-color: transparent #555 transparent transparent;
    display: none;
}

/* Arrow for left side tooltip */
.css-only-tooltip-left:after {
    content: "";
    position: absolute;
    /* position arrow on the left */
    right: 100%;
    top: 50%;
    transform: translateY(-50%) rotate(270deg);
    /* the arrow */
    border: 8px solid #555;
    border-color: #555 transparent transparent transparent;
    display: none;
}

/* Arrow for top side tooltip */
.css-only-tooltip-top:after {
    content: "";
    position: absolute;
    /* position arrow on top */
    left: 50%;
    top: 50%;
    transform: translateY(-50%);
    /* the arrow */
    border: 8px solid #555;
    border-color: #555 transparent transparent transparent;
    display: none;
}

/* Hover state for showing both tooltip and arrow */
.css-only-tooltip-right:hover:before,
.css-only-tooltip-right:hover:after,
.css-only-tooltip-left:hover:before,
.css-only-tooltip-left:hover:after,
.css-only-tooltip-top:hover:before,
.css-only-tooltip-top:hover:after {
    display: block;
}

/* Tooltip container */
.left-one-line-tooltip {
    position: relative;
    display: inline-block;
}

/* Tooltip text */
.left-one-line-tooltip .left-one-line-tooltiptext {
    visibility: hidden;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 10px;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: calc(100% + 10px); /* Adjust distance from the parent */
    left: 0%;
    opacity: 0;
    transition: opacity 0.3s;
    white-space: nowrap;
}

/* Triangle pointer */
.left-one-line-tooltip .left-one-line-tooltiptext::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0%;
    margin-left: 13px; /* Half of the width of the triangle */
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when hovering */
.left-one-line-tooltip:hover .left-one-line-tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* Tooltip container */
.one-line-tooltip {
    position: relative;
    display: inline-block;
}

/* Tooltip text */
.one-line-tooltip .one-line-tooltiptext {
    visibility: hidden;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 10px;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: calc(100% + 10px); /* Adjust distance from the parent */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    white-space: nowrap;
}

/* Triangle pointer */
.one-line-tooltip .one-line-tooltiptext::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px; /* Half of the width of the triangle */
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when hovering */
.one-line-tooltip:hover .one-line-tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* Tooltip container */
.large-tooltip {
    position: relative;
    display: inline-block;
}

/* Tooltip text */
.large-tooltip .large-tooltiptext {
    visibility: hidden;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 10px;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: calc(100% + 10px); /* Adjust distance from the parent */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    white-space: pre-wrap;
    /* Add max-width property */
    max-width: 275px;
    min-width: 275px;
    /* Ensure text wraps within the container */
    word-wrap: break-word;
}

/* Triangle pointer */
.large-tooltip .large-tooltiptext::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px; /* Half of the width of the triangle */
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when hovering */
.large-tooltip:hover .large-tooltiptext {
    visibility: visible;
    opacity: 1;
}

.colorless-button {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    border-width: 1px;
    border-color: rgba(156,163,175,1);
    padding: 0.5rem 1rem 0.5rem 1rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 500;
    border-radius: 0.375rem;
    color: #fff;
}

.colorless-button-small {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    border-width: 1px;
    border-color: rgba(156,163,175,1);
    padding: 0.2rem 0.5rem 0.2rem 0.5rem;
    font-size: 1rem;
    line-height: 1.75rem;
    font-weight: 500;
    border-radius: 0.375rem;
    color: #fff;
}

.colorless-button-small:focus, .colorless-button:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px white, 0 0 0 4px rgb(75, 85, 99);
}

.custom-colorless-button {
    cursor: default;
    display: inline-flex;
    align-items: center;
    border-width: 1px;
    border-color: rgba(156,163,175,1);
    padding: 0.5rem 1rem 0.5rem 1rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 500;
    border-radius: 0.375rem;
    color: #fff;
}

.additional-colorless-styles {
    background: rgba(243,244,246,1);
    color: black;
}

.additional-colorless-styles:hover {
    background: rgba(209,213,219,1);
}

.primary-indigo-button {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    border-width: 1px;
    border-color: rgba(156,163,175,1);
    padding: 0.5rem 1rem 0.5rem 1rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 500;
    border-radius: 0.375rem;
    color: rgba(255, 255, 255, 1);
    background-color: rgba(79, 70, 229, 1);
}

.primary-indigo-button:hover {
    background-color: rgba(55, 48, 163, 1);
}

.primary-indigo-button:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px white, 0 0 0 4px rgb(37 99 235)
}

.saved-career-card a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.secondary-button {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    border-width: 1px;
    border-color: rgba(156,163,175,1);
    padding: 0.5rem 1rem 0.5rem 1rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 500;
    border-radius: 0.375rem;
    background-color: #E5E7EB;
    color: #4B5563;
}

.secondary-button-small {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    border-width: 1px;
    border-color: rgba(156,163,175,1);
    padding: 0.2rem 0.5rem 0.2rem 0.5rem;
    font-size: 1rem;
    line-height: 1.75rem;
    font-weight: 500;
    border-radius: 0.375rem;
    background-color: #E5E7EB;
    color: #4B5563;
}

.secondary-button:hover, .secondary-button-small:hover {
    color: rgba(31,41,55,1);
    background-color: rgba(209,213,219,1);
}

.secondary-button:focus, .secondary-button-small:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px white, 0 0 0 4px rgb(75, 85, 99);
}

/* Seed Import CSS - various modules */
.import-container {
    max-width: 468px;
    height: 526px;
}

.ImportType {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    border-radius: 0.375rem;
    border-width: 1px;
    border-color: rgba(209, 213, 219, 1);
    -webkit-box-shadow: 1px 1px 3px rgb(209 213 219); /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
    -moz-box-shadow: 1px 1px 3px rgb(209 213 219); /* Firefox 3.5 - 3.6 */
    box-shadow: 1px 1px 3px rgb(209 213 219); /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */
    padding: 0.5rem 1rem;
    background: white;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    color: rgba(55, 65, 81, 1);
}

.show-notification {
    visibility: visible;
    opacity: 1;
    transition: opacity .25s linear;
}

.hide-notification {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 1s, opacity 1s linear;
}

.d-none-notification {
    display: none;
}
/* End Seed Import CSS */

.rounded-table {
    border-radius: 2px;
}

div.dataTables_filter input {
    border: 1px solid black;
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
}

/*Form fields*/
.dataTables_wrapper select,
.dataTables_wrapper .dataTables_filter input {
    color: #4a5568; /*text-gray-700*/
    padding-left: 1rem; /*pl-4*/
    padding-right: 1rem; /*pl-4*/
    padding-top: .5rem; /*pl-2*/
    padding-bottom: .5rem; /*pl-2*/
    line-height: 1.25; /*leading-tight*/
    border-width: 2px; /*border-2*/
    border-radius: .25rem;
    border-color: #edf2f7; /*border-gray-200*/
    background-color: #edf2f7; /*bg-gray-200*/
}

/*Row Hover*/
table.dataTable.hover tbody tr:hover, table.dataTable.display tbody tr:hover {
    background-color: #ebf4ff; /*bg-indigo-100*/
}

/*Pagination Buttons*/
.dataTables_wrapper .dataTables_paginate .paginate_button {
    font-weight: 700; /*font-bold*/
    border-radius: .25rem; /*rounded*/
    border: 1px solid transparent; /*border border-transparent*/
}

/*Pagination Buttons - Current selected */
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    color: #fff !important; /*text-white*/
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.1), 0 1px 2px 0 rgba(0,0,0,.06); /*shadow*/
    font-weight: 700; /*font-bold*/
    border-radius: .25rem; /*rounded*/
    background: #667eea !important; /*bg-indigo-500*/
    border: 1px solid transparent; /*border border-transparent*/
}

/*Pagination Buttons - Hover */
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    color: #fff !important; /*text-white*/
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.1), 0 1px 2px 0 rgba(0,0,0,.06); /*shadow*/
    font-weight: 700; /*font-bold*/
    border-radius: .25rem; /*rounded*/
    background: #667eea !important; /*bg-indigo-500*/
    border: 1px solid transparent; /*border border-transparent*/
}

/*Add padding to bottom border */
table.dataTable.no-footer {
    border-bottom: 1px solid #e2e8f0; /*border-b-1 border-gray-300*/
    margin-top: 0.75em;
    margin-bottom: 0.75em;
}

/*Change colour of responsive icon*/
table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before, table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {
    background-color: #667eea !important; /*bg-indigo-500*/
}

.dataTables_length {
    margin: 0.2rem 0.5rem 0.2rem 12vw
}

.hr-width {
    width: 95%;
}

.max-w-450px {
    max-width: 450px;
}

.render-body-container {
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-right: 2.5rem;
    padding-left: 2.5rem;
}

@media only screen and (max-width: 600px) {
    .render-body-container {
        width: 100%;
        padding-top: 1rem;
        padding-bottom: 1rem;
        padding-right: 1rem;
        padding-left: 1rem;
    }
}

.full-minus-buttons {
    height: calc(100% - 80px);
}

.fake-input {
    /* Mimic the background color */
    background-color: #f9f9f9;
    /* Mimic the border */
    border: 1px solid #ccc;
    /* Mimic the cursor */
    cursor: pointer;
    /* Mimic the font family and size */
    font-family: Arial, sans-serif;
    /*Custom styles*/
    padding: 8px;
    font-size: 1rem;
    line-height: 1.5rem;
}

.light-gray-secondary-button {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    border-width: 1px;
    border-color: rgba(156,163,175,1);
    padding: 0.5rem 1rem 0.5rem 1rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 500;
    border-radius: 0.375rem;
    background-color: rgba(243, 244, 246, 1);
    color: #4B5563;
}

.light-gray-secondary-button:hover {
    color: rgba(31,41,55,1);
    background-color: rgba(209, 213, 219, 1);
}

.light-gray-secondary-button:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px white, 0 0 0 4px rgb(75, 85, 99);
}

.page-container-styles {
    position: relative;
    min-height: 100vh;
}




.content-wrap-styles {
    padding-bottom: 5rem; /* Footer height plus mt-12 (3rem) */
}

.footer-styles {
    width: 100%;
    height: 5rem; /* Footer height */
}

.login-container {
    height: 700px;
    width: 1100px;
}

.large-login-container {
    height: 800px;
    width: 1160px;
}

@media screen and (max-width: 1222px) {
    .login-container, .large-login-container {
        width: 700px;
    }
}

@media screen and (max-width: 768px) {
    .login-container, .large-login-container {
        height: 570px;
    }
}

.notification-fade-enter-active {
    transition: opacity 0.5s ease;
}

.notification-fade-leave-active {
    transition: opacity 0.5s ease;
}

.notification-fade-enter-from,
.notification-fade-leave-to {
    opacity: 0;
}

.warning-shadow-md {
    box-shadow: 3px 4px 8px -2px rgba(81,81,81,0.36);
    -webkit-box-shadow: 3px 4px 8px -2px rgba(81,81,81,0.36);
    -moz-box-shadow: 3px 4px 8px -2px rgba(81,81,81,0.36);
}

.medium-container {
    max-width: 650px;
    width: 100%;
}

.small-container {
    width: 100%;
    max-width: 350px;
}

.navbar-tab-active {
    /*P2C Orange*/
    background: #f7941e;
    color: black;
}

#users-table_wrapper {
    overflow-x: auto;
}

.slide-knobs,
.slide-layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.slide-button {
    position: relative;
    top: 50%;
    width: 74px;
    height: 22px;
}

.slide-button.r,
.slide-button.r .slide-layer {
    border-radius: 100px;
}

.slide-button.b2 {
    border-radius: 2px;
}

.slide-checkbox {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

.slide-knobs {
    z-index: 2;
}

.slide-layer {
    width: 100%;
    background-color: #CCCCCC;
    transition: 0.4s ease all;
    z-index: 1;
}

/* slide-button 1 */
#slide-button-1 .slide-knobs:before {
    content: "OFF";
    position: absolute;
    top: -2px;
    left: -6px;
    width: 40px;
    height: 26px;
    color: #656565;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    line-height: 0.7;
    padding: 8px 2px;
    background-color: #D9D9D9;
    border-radius: 40%;
    transition: 0.4s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
}

#slide-button-1 .slide-checkbox:checked + .slide-knobs:before {
    content: "ON";
    color: white;
    left: 48px;
    background-color: #FF795C;
}

#slide-button-1 .slide-checkbox:checked ~ .slide-layer {
    background-color: #fcebeb;
}

#slide-button-1 .slide-knobs,
#slide-button-1 .slide-knobs:before,
#slide-button-1 .slide-layer {
    transition: 0.4s ease all;
}

.table-parent {
    width: 100%; /* Ensure the wrapper fills the full width */
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 12px;
    height: 12px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 12px;
    height: 12px;
    margin: 4px;
    border: 3px solid rgb(55 65 81);
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: rgb(55 65 81) transparent transparent transparent;
}

.scoresbystudent-lds-ring {
    display: inline-block;
    position: relative;
    width: 25px;
    height: 25px;
}

.scoresbystudent-lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 25px;
    height: 25px;
    margin: 8px;
    border: 3px solid rgb(55 65 81);
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: rgb(55 65 81) transparent transparent transparent;
}

.scoresbystudent-lds-ring div:nth-child(1),
.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.scoresbystudent-lds-ring div:nth-child(2),
.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.scoresbystudent-lds-ring div:nth-child(3),
.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.fade-enter-active,
.fade-leave-active {
    transition: opacity 0.5s ease;
}

.fade-enter-from,
.fade-leave-to {
    opacity: 0;
}

.filter-gray {
    filter: invert(21%) sepia(20%) saturate(649%) hue-rotate(177deg) brightness(97%) contrast(88%);
}

.filter-dark-gray {
    filter: invert(12%) sepia(0%) saturate(57%) hue-rotate(138deg) brightness(97%) contrast(79%);
}

.filter-none {
    filter: none
}

.dt-button {
    margin-left: 2px;
    margin-right: 2px;
    border-radius: 4px;
}

.paginate_button {
    border-radius: 4px;
}

.dataTables_length select {
    border: 2px;
    padding: 2px;
    border-radius: 2px;
}

.dataTables_filter input {
    padding: 4px;
    border-radius: 4px;
}

.dataTables_length select {
    border: 2px;
    padding: 2px;
    border-radius: 2px;
}

.dataTables_filter input {
    padding: 4px;
    border-radius: 4px;
}

.loader {
    border: 16px solid rgba(229,231,235,1); /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    animation: loadingSpin 2s linear infinite;
}

@keyframes loadingSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.padding-1rem {
    padding: 1rem !important;
}

.config-settings-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 24px;
}

    /* Hide default HTML checkbox */
    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

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

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

input:checked + .slider {
    background-color: #2196F3;
}

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

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

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

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

.dropdown-toggle button::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 3px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    opacity: 0;
    transition: opacity 0.3s;
}

.z-4-important {
    z-index: 4 !important;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext, .tooltip:focus .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.tooltiptext, .tooltiptext-130px {
    width: 130px;
    margin-left: -65px;
}

.tooltiptext-190px {
    width: 190px;
    margin-left: -95px;
}

.tooltiptext-210px {
    width: 210px;
    margin-left: -105px;
}

.tooltiptext-230px {
    width: 230px;
    margin-left: -115px;
}

.tooltiptext-250px {
    width: 250px;
    margin-left: -125px;
}

.tooltiptext-260px {
    width: 260px;
    margin-left: -130px;
}

.pl-10-important{
    padding-left: 2.5rem !important;
}

.p-1-important{
    padding: .25rem;
}

.p-half-important {
    padding: .125rem;
}

.border-transparent-important {
    border-color: transparent !important;
}

.pr-5-important {
    padding-right: 1.25rem !important;
}