@import url("fonts.css");
:root {
    --color60: #00acee;
    --color60-50: #b6e7fa;
    --color30: #017f01;
    --color10: #fe0000;
    --color-white: #f4f4f4;
    --color-black: #001821;
    --katy-font-family: "Nunito";
    --katy-font-bold: "Nunito-Bold";
    --katy-font-italic: "Nunito-Italic";
    --katy-font-header: "Montserrat-Bold";
    --katy-body-font-size: 0.9rem;
    --katy-body-line-height: 1;
}

html,
body {
    color: var(--color60) !important;
    font-family: var(--katy-font-family);
    font-size: var(--katy-body-font-size);
    line-height: var(--katy-body-line-height);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--katy-font-header);
}

.bg_60 {
    background-color: var(--color60) !important;
}

.bg_60_50 {
    background-color: var(--color60-50);
}

.bg_30 {
    background-color: var(--color30) !important;
}

.bg_10 {
    background-color: var(--color10) !important;
}

.text_60 {
    color: var(--color60) !important;
}

.text_30 {
    color: var(--color30) !important;
}

.text_10 {
    color: var(--color10) !important;
}

.text-bold,
th {
    font-family: var(--katy-font-header);
}

#loading {
    background-color: var(--color-black);
    z-index: 9999;
}

.content-header {
    background-color: var(--color-white) !important;
}

a {
    color: var(--color60);
}

a:hover {
    text-decoration: none;
}

table.table-sm {
    font-size: 12px !important;
}

i {
    font-family: var(--katy-font-italic);
}

strong,
b,
.fw-bolder,
.sidebar-logo-text {
    font-family: var(--katy-font-bold) !important;
}

textarea {
    min-height: 150px !important;
}

.light-sidebar .main-sidebar .sidebar-menu li.active a {
    background-color: var(--color60-50) !important;
}

a,
.skin-base .nav-sidebar .nav-link {
    color: var(--color60);
}

.btn-primary {
    background-color: var(--color60) !important;
    color: var(--color-white) !important;
}

.skin-base .sidebar-logo-text span,
.btn-link {
    color: var(--color60) !important;
}

.skin-base .sidebar {
    background-color: var(--color10) !important;
    box-shadow: 1px 0 1px rgba(216, 222, 230, 0.25),
        2px 0 2px rgba(216, 222, 230, 0.2), 4px 0 4px rgba(216, 222, 230, 0.15),
        8px 0 8px rgba(216, 222, 230, 0.1),
        16px 0 16px rgba(216, 222, 230, 0.05);
}

.skin-base .sidebar-footer {
    background-color: var(--color10) !important;
}

.form-check-input[type="checkbox"]:checked,
.form-check-input:checked {
    background-color: var(--color60) !important;
}

img#image {
    max-width: 100% !important;
}

/* .form-control:focus {
    border: 1px solid var(--color60) !important;
} */

.clickable {
    cursor: pointer;
}

.clickable:hover {
    opacity: 0.75;
}

.fs-12 {
    font-size: 12px !important;
    line-height: 1.3;
}

.fs-13 {
    font-size: 13px !important;
    line-height: 1.4;
}

.fs-14 {
    font-size: 14px !important;
    line-height: 1.5;
}

.fs-15 {
    font-size: 14px !important;
    line-height: 1.5;
}

.fs-16 {
    font-size: 16px !important;
    line-height: 1.5;
}

.fs-18 {
    font-size: 18px !important;
    line-height: 1.5;
}

.fs-20 {
    font-size: 20px !important;
    line-height: 1.5;
}

.fs-22 {
    font-size: 22px !important;
    line-height: 1.5;
}

.fs-24 {
    font-size: 24px !important;
    line-height: 1.4;
}

.fs-26 {
    font-size: 26px !important;
    line-height: 1.4;
}

.fs-28 {
    font-size: 28px !important;
    line-height: 1.4;
}

.fs-30 {
    font-size: 30px !important;
    line-height: 1.4;
}

.fs-32 {
    font-size: 32px !important;
    line-height: 1.25;
}

.fs-34 {
    font-size: 34px !important;
    line-height: 1.25;
}

.fs-35 {
    font-size: 35px !important;
    line-height: 1.25;
}

.fs-36 {
    font-size: 36px !important;
    line-height: 1.25;
}

.fs-38 {
    font-size: 38px !important;
    line-height: 1.25;
}

.fs-46 {
    font-size: 46px !important;
    line-height: 1.25;
}

.fs-48 {
    font-size: 48px !important;
    line-height: 1.25;
}

.font-w100 {
    font-weight: 100;
}

.font-w200 {
    font-weight: 200;
}

.font-w300 {
    font-weight: 300;
}

.font-w400 {
    font-weight: 400;
}

.font-w500 {
    font-weight: 500;
}

.font-w600 {
    font-weight: 600;
}

.font-w700 {
    font-weight: 700;
}

.font-w800 {
    font-weight: 800;
}

.font-w900 {
    font-weight: 900;
}

.progress {
    border: 3px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 2s linear infinite;
    display: none;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

div.dataTables_wrapper div.dataTables_filter {
    text-align: left;
}

/* .modal:nth-of-type(even) {
    z-index: 1062 !important;
}
.modal-backdrop.show:nth-of-type(even) {
    z-index: 1061 !important;
} */

.dataTables_filter {
    float: right;
    text-align: right;
}
