body {
    background-image: url('../../content/img/patteren-student.png');
    background-size: cover;
}

.bg-gradient-primary {
    background-image: linear-gradient(195deg, #9e820d 0%, #4f4107 100%)
}

.btn-primary {
    background: linear-gradient(195deg, #9e820d 0%, #4f4107 100%);
    box-shadow: 0 3px 3px 0 #ffeec5;
}

.btn-primary:hover {
    background-color: #9e820d;
    border-color: #9e820d;
    box-shadow: 0 14px 26px -12px #9e820d;
}

.btn:focus {
    background-color: #9e820d;
}

.action-button {
    background: linear-gradient(195deg, #9e820d 0%, #4f4107 100%)
}

.rounded{ 
    border-radius: 10px !important;  
}

svg {
    width: 100px;
    display: block;
    margin: 40px auto 0;
}

.path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
}

    .path.circle {
        -webkit-animation: dash 0.9s ease-in-out;
        animation: dash 0.9s ease-in-out;
    }

    .path.line {
        stroke-dashoffset: 1000;
        -webkit-animation: dash 0.9s 0.35s ease-in-out forwards;
        animation: dash 0.9s 0.35s ease-in-out forwards;
    }

    .path.check {
        stroke-dashoffset: -100;
        -webkit-animation: dash-check 0.9s 0.35s ease-in-out forwards;
        animation: dash-check 0.9s 0.35s ease-in-out forwards;
    }

.message {
    text-align: center;
    margin: 20px 0 60px;
    font-size: 1.25em;
}

    .message.success {
        color: #73AF55;
    }

    .message.error {
        color: red;
    }


.message-success, message-error {
    text-align: center;
}

    .message-success p, message-error p {
        text-align: center;
    }

@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes dash-check {
    0% {
        stroke-dashoffset: -100;
    }

    100% {
        stroke-dashoffset: 900;
    }
}

@keyframes dash-check {
    0% {
        stroke-dashoffset: -100;
    }

    100% {
        stroke-dashoffset: 900;
    }
}

.action-button {
    font: inherit;
    font-size: 1.00rem;
    padding: 1em;
    width: 100%;
    font-weight: 500;
    background-color: #212e7e;
    border-radius: 6px;
    color: #fff;
    border: 0;
}

.readonly-input {
    padding-left: 0.5rem !important;
    color: white;
    opacity: 0.6 !important;
    background-color: dimgrey !important;
    font-weight: 500;
}

    .readonly-input[type="text"]:focus {
        color: linen;
    }

input[type="color"] {
    background-color: #fff;
    padding: 5px;
    /*    
    width: 200px;
    height: 30px;
    cursor: pointer;
    border: 2px solid #000;
    border-radius: 3px;
    margin: 20px;
    */
}

#canvas canvas {
    max-width: 100%;
    height: auto;
    border: solid 3px #4f4107
}

#eventCanvas canvas {
    max-width: 100%;
    height: auto;
    border: solid 3px #4f4107
}

#sidenav-collapse-main > ul > li > .active > span, #sidenav-collapse-main > ul > li > .active > div > i {
    color: #fff !important;
}

#ExcusedAbsence #content iframe {
    min-width: 100%;
}

.btn-outline-primary {
    --bs-btn-color: #9e820d;
    --bs-btn-border-color: #9e820d;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #9e820d;
    --bs-btn-hover-border-color: #9e820d;
    --bs-btn-focus-shadow-rgb: 233, 30, 99;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #9e820d;
    --bs-btn-active-border-color: #9e820d;
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: #9e820d;
    --bs-btn-disabled-bg: transparent;
    --bs-gradient: none;
}

    .btn-outline-primary:hover:not(.active) {
        background-color: transparent;
        opacity: .75;
        box-shadow: none;
        color: #9e820d;
    }

.loading {
    color: white;
    font-weight: 600;
    padding: 15px;
}

    .loading:before {
        content: "";
        display: inline-block;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        margin: 0 10px -6px 0;
        border: 3px solid #11173f;
        border-top-color: #eee;
        -webkit-animation: animate-loading 1s linear infinite;
        animation: animate-loading 1s linear infinite;
    }

.loading-success {
    background: #fff;
    text-align: center;
    margin-top: 15px
}

    .loading-success:before {
        content: "";
        display: inline-block;
        border-radius: 50%;
        width: 32px;
        height: 32px;
        margin: 0 10px -6px 0;
        border: 4px solid #90EE90;
        border-top-color: #eee;
        -webkit-animation: animate-loading 1s linear infinite;
        animation: animate-loading 1s linear infinite;
    }

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
