body {
    font-family: 'Outfit', sans-serif !important;
    font-size: 1rem;
    font-weight: 500;
}

@media (min-width: 992px) {
    body {
        font-size: 1.375rem;
    }
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1.2;
}

.h1, h1 {
    font-size: 2rem;
}

.h2, h2 {
    font-size: 1.75rem;
}

.h3, h3 {
    font-size: 1.5rem;
}
a {
    color: #4030C8;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    text-decoration: none;
}

    a:hover {
        color: #26b781;
    }

header {
    padding: .625rem 1rem;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
}
.navbar-brand {
    padding-top: .3125rem;
    padding-bottom: .3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    text-decoration: none;
    white-space: nowrap;
    display: block;
}

sidebar a.navbar-brand {
    white-space: normal;
    word-break: break-all;
    margin: 0 auto;
    max-width: 150px;
    margin-bottom: 20px
}

    header a.navbar-brand img, sidebar a.navbar-brand img {
        max-width: 50px;
        width: 100%;
        height: auto;
        margin: 0px 0;
    }

        /*header a.navbar-brand img.logo, sidebar a.navbar-brand img.logo {
            width: 100%;
        }*/
@media (min-width: 320px) {
    header a.navbar-brand img.logo, sidebar a.navbar-brand img.logo {
        max-width: 70px;
    }
}
@media (min-width: 992px) {
    header a.navbar-brand img.logo, sidebar a.navbar-brand img.logo {
        max-width: 110px;
    }
}

header a.navbar-brand .sidebar-brand-text {
    /*    margin-top: -15px;
    text-align: left;*/
    margin-left: 5px;
}

sidebar .card {
    height: 100%;
}
sidebar a.navbar-brand .sidebar-brand-text {
    margin-top: -20px;
    text-align: left;
}
header .navbar-brand, sidebar .navbar-brand {
    font-size: inherit;
    margin-right: 0rem;
    display: block;
}

header .sidebar-heading, sidebar .sidebar-heading {
    background: #dee4f8;
    color: #4030c8;
    padding: 5px 10px;
    border-radius: .5rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* - Buttons - */
.btn {
    font-weight: 600;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .75rem 1.5rem;
    font-size: 1.125rem;
    border-radius: 30px;
    transition: color .15s ease-in-out,background .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
    .btn .material-symbols-outlined {
        margin-right: 10px;
        vertical-align: middle;
    }

.btn-primary {
    color: #ffffff;
    background: #26b781;
    border: 1px solid #26b781;
}

    .btn-primary:hover {
        color: #ffffff;
        background: #4030C8;
        border: 1px solid #4030C8;
    }

.btn-secondary {
    color: #ffffff;
    background-color: #4030C8;
    border-color: #4030C8;
}

    .btn-secondary:hover {
        color: #ffffff !important;
        background-color: #26b781 !important;
        border-color: #26b781 !important;
    }

.body-wrapper {
    background-color: #dee4f8;
    border-radius: .375rem;
    padding: 24px 24px 0px 24px;
    margin-top: 0px;
    margin-bottom: 24px;
}
main {
    padding: 25px 0;
}
@media (min-width: 992px) {
    main {
        padding: 50px 0;
    }
}

/* - Cards - */
.card, #content .card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 0px solid rgba(0,0,0,.125);
    border-radius: .5rem;
    margin-bottom: 1.5rem;
}

    .card.last {
        margin-bottom: 0rem !important;
    }

    .card.blue {
        background-color: #4030C8 !important;
        color: #ffffff;
    }

        .card.blue .btn-primary {
            color: #4030C8;
            background: #ffb980;
            border: 1px solid #ffb980;
            transition: color .15s ease-in-out, background .15s ease-in-out, border-color .15s ease-in-out;
        }

            .card.blue .btn-primary:hover {
                color: #ffb980;
                background: #4030C8;
                border: 1px solid #4030C8;
            }

    .card.border-start {
        border-width: 3px;
    }

        .card.border-start.border-primary {
            border-left: 3px solid #4030C8 !important;
        }

        .card.border-start.border-secondary {
            border-left: 3px solid #ffb980 !important;
        }

.card-header {
    margin-bottom: 0px;
}

    .card-header:first-child {
        border-top-left-radius: .5rem;
        border-top-right-radius: .5rem;
        padding: 1.5rem .75rem;
    }

    .card-header h1,
    .card-header h2 {
        margin-bottom: .938rem;
    }

    .card-header img {
        width: 200px;
    }

@media (min-width: 1200px) {
    .card-header h1,
    .card-header h2 {
        margin-bottom: 0rem;
    }
}

.card-header {
    background-color: #ffffff;
    border-bottom: 1px solid #f1effa;
    border-radius: .5rem;
}

.card.bg-success, .card.bg-success .card-header {
    color: #0f5132 !important;
    background-color: #d1e7dd !important;
    border-bottom: 1px solid #badbcc !important;
}

.card.bg-danger, .card.bg-danger .card-header {
    color: #842029 !important;
    background-color: #f8d7da !important;
    border-bottom: 1px solid #f5c2c7 !important;
}

.card-body {
    flex: 1 1 auto;
    padding: 1.5rem .75rem;
}

.card-footer {
    padding: 1.5rem .75rem;
    background-color: #ffffff;
    border-top: 1px solid #f1effa;
    border-bottom-left-radius: .5rem !important;
    border-bottom-right-radius: .5rem !important;
    padding: 1.5rem .75rem;
}

    .card-footer .btn-secondary,
    table .text-end .btn-secondary {
        margin-left: 10px;
    }

/* - Box - */
.box {
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.16);
    border-radius: 1rem;
    padding: 25px;
}
    .box .row [class*="col-"] {
        margin: 10px 0px !important;
    }
.authentication img {
    max-width: 500px;
    width: 100%;
    padding: 25px;
}
.authentication .row [class*="col-"] {
    margin: 25px 0px;
}

/* - Form - */
.form-group {
    margin-bottom: 10px;
}

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    background-color: #ffffff;
    border: 2px solid #cccccc;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 1rem !important;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.form-select {
    display: inline-block;
    width: auto;
    border-radius: 1rem;
    border: 2px solid #4030C8;
}

    .form-select option[selected],
    .form-select option[selected]:hover,
    .form-select option:hover {
        background-color: #4030C8 !important;
        color: #ffffff !important;
    }

    .form-control:focus,
    .form-select:focus {
        border: 2px solid #4030C8;
        outline: 0;
        box-shadow: 0 0 0 0.25rem rgba(64,48,200,.25);
    }

.form-label {
    margin-right: 10px;
}
.input-group-text {
    display: flex;
    align-items: center;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    text-align: center;
    white-space: nowrap;
    background-color: #cccccc !important;
    border: 2px solid #cccccc !important;
    border-radius: 1rem 0rem 0rem 1rem;
}

.input-group .input-group-text {
    border-top-right-radius: 1rem !important;
    border-bottom-right-radius: 1rem !important;
}
.input-group.prepend .form-control {
    border-top-left-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
}
.input-group.append .form-control {
    border-top-right-radius: 0rem !important;
    border-bottom-right-radius: 0rem !important;
}

.input-group .input-group-prepend .input-group-text {
    border-top-right-radius: 0rem !important;
    border-bottom-right-radius: 0rem !important;
}
.input-group .input-group-append .input-group-text {
    border-top-left-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
}

.input-group.datepick .form-label {
    margin-bottom: 0rem;
}

.input-group.datepick .form-control {
    margin-right: .5rem;
}

.form-control:disabled, .form-control[readonly] {
    background-color: #F8F7FA;
    opacity: 1;
}
footer {
    background: #201864;
    color: #ffffff;
    min-height: 50px;
    height: auto;
    line-height: 25px;
    vertical-align: middle;
}
    footer .row [class*="col-"] {
        margin: 25px 0px;
    }
    footer a {
        color: #ffffff;
    }
        footer a:hover {
            color: #26b781;
        }

/* - Back to top - */
#back-to-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    background: #4030C8;
    color: #ffffff;
    cursor: pointer;
    border: 0;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    opacity: 0;
    border-radius: 50%;
    z-index: 1000;
}

    #back-to-top.show {
        opacity: 1;
    }

    #back-to-top:hover {
        background: #ffb980;
        color: #4030C8;
    }