@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Regular.eot');
    src: url('../fonts/Lato-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Lato-Regular.woff2') format('woff2'),
    url('../fonts/Lato-Regular.woff') format('woff'),
    url('../fonts/Lato-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Exo 2';
    src: url('../fonts/Exo2-Bold.ttf');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Bold.eot');
    src: url('../fonts/Lato-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Lato-Bold.woff2') format('woff2'),
    url('../fonts/Lato-Bold.woff') format('woff'),
    url('../fonts/Lato-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Exo 2';
    src: url('../fonts/Exo2-Regular.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Exo 2';
    src: url('../fonts/Exo2-SemiBold.ttf');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


/* GENERAL */
body {
    font-family: 'Lato', Helvetica, Arial;
    font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Exo 2', Helvetica, Arial;
    font-weight: bold;
}
.text-primary {
    color: #007BE3;
}
.text-secondary {
    color: #7C7C7C;
}

.img-wrapper > img {
    width: 100%;
}

.bg-light {
    background-color: #F8F8F8 !important;
}

.cursor-pointer {
    cursor: pointer;
}

.alert {
    border-radius: 10px;
}

/* FORM CONTROL */
.form-group {
    margin-bottom: 22px;
}
.form-group label {
    font-family: 'Lato', Helvetica, Arial;
    font-size: 14px;
    color: #575555;
    font-weight: normal;
    margin-bottom: 0;
}
.form-control {
    border-radius: 10px;
    border: 2px solid #EEF4F7;
    height: 42px;
    padding-left: 16px;
    padding-right: 16px;
}
.form-control:focus,
.form-control:active,
.form-control:hover {
    outline: none !important;
    box-shadow: none !important;
}
select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-image: url('../images/arrow-down.png');
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) center;
    background-size: 14px;
}
.custom-control {
    display: flex;
}
.custom-checkbox .custom-control-label {
    font-size: 11px;
    display: flex;
    align-items: center;
    font-family: Lato, serif;
    font-weight: normal;
    padding-left: 8px;
}
.custom-checkbox .custom-control-label::before {
    border-radius: 0;
    border-color: #707070;
}
.custom-control-input:checked~.custom-control-label::before {
    border-color: #1762AB;
    background-color: #1762AB;
}
.input-group-text {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    background: #fff;
    border: 2px solid #EEF4F7;
    line-height: normal;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.input-group.right input {
    border-right: 0;
}
.input-group.right .input-group-text {
    border-radius: 15px;
    border-left: 0;
    border-right: 2px solid #EEF4F7;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.input-group.left .input-group-text {
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.input-group.right .input-group-text i {
    font-size: 15px;
    color: #A7A7A7;
}
.input-group.right .input-group-text.is-invalid {
    border-color: #dc3545 !important;
}
.input-group.left input {
    border-left: 0;
}
.input-group.left input {
    padding-left: 5px;
}
.input-group.left .input-group-text i {
    font-size: 10px;
}
.form-control.is-invalid:focus, 
.was-validated .form-control:invalid:focus,
.custom-control-input:focus~.custom-control-label::before {
    box-shadow: none !important;
}
.input-group.right .clickable {
    cursor: pointer;
}
.is-invalid .bootstrap-select > .dropdown-toggle.btn-light, 
.is-invalid .bootstrap-select > .dropdown-toggle.btn-secondary {
    border-color: #dc3545;
}

/* BUTTON */
.btn:not(.note-btn) {
    font-family: 'Exo 2', Helvetica, Arial;
    font-size: 14px;
    font-weight: bold;
    border-radius: 10px;
    border: 2px solid transparent;
    box-shadow: none;
    outline: none;
    text-transform: uppercase;
    height: 42px;
    line-height: normal;
    min-width: 160px;
}
.btn:not(.note-btn):hover,
.btn:not(.note-btn):focus,
.btn:not(.note-btn):active {
    outline: none !important;
    box-shadow: none !important;
}
.btn.btn-pill {
    width: 120px;
    border-radius: 30px;
}
.btn.btn-primary {
    color: #ffffff;
    background-color: #1762AB;
    border-color: #1762AB;
}
.btn.btn-primary:hover,
.btn.btn-primary:active,
.btn.btn-primary:focus {
    background-color: #007BE3;
    border-color: #007BE3;
}
.btn.btn-outline-primary {
    color: #1762AB;
    background-color: #ffffff;
    border-color: #1762AB;
}
.btn.btn-outline-primary:hover,
.btn.btn-outline-primary:active,
.btn.btn-outline-primary:focus {
    color: #ffffff;
    background-color: #007BE3;
    border-color: #007BE3;
}
.btn.btn-secondary {
    color: #ffffff;
    background-color: #007BE3;
    border-color: #007BE3;
}
.btn.btn-secondary:hover,
.btn.btn-secondary:active,
.btn.btn-secondary:focus {
    color: #ffffff;
    background-color: #007BE3;
    border-color: #007BE3;
}
.btn.btn-outline-secondary {
    color: #575555;
    background-color: #ffffff;
    border-color: #007BE3;
}
.btn.btn-outline-secondary:hover,
.btn.btn-outline-secondary:active,
.btn.btn-outline-secondary:focus {
    color: #575555;
    background-color: #ffffff;
    border-color: #007BE3;
}
.btn.btn-gray {
    text-transform: none;
    color: #ffffff;
    background-color: #D1CDCD;
    border-color: #D1CDCD;
}
.btn i {
    margin-top: -4px;
}
@media only screen and (max-width: 575px) {
    .btn:not(.note-btn) {
        min-width: unset;
        max-width: 100%;
    }
}

/* HEADER */
.website-header .profile-wrapper {
    padding: 10px 16px;
    border-radius: 10px;
    box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
    -moz-box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
    cursor: pointer;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
}
.website-header .profile-wrapper img {
    width: 40px;
    height: 40px;
    box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
    -moz-box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
}
.website-header .profile-wrapper span {
    font-size: 18px;
    font-weight: normal;
    font-family: 'Exo 2', Helvetica, Arial;
    color: #7c7c7c;
    line-height: 1.2;
    text-align: left;
}
.website-header .profile-wrapper i {
    color: #007BE3;
    font-size: 16px;
    margin-left: 16px;
    opacity: 0.54;
}
.website-header .profile-wrapper .profile-dropdown {
    width: 100%;
    top: 100%;
    left: 0;
    margin-top: 10px;
    padding: 16px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
    -moz-box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
    z-index: 10;
    display: none;
}
.website-header .profile-wrapper.show .profile-dropdown {
    display: block;
}
.website-header .profile-wrapper .profile-dropdown ul {
    padding-left: 0;
    margin-bottom: 0;
}
.website-header .profile-wrapper .profile-dropdown ul li {
    list-style: none;
    display: flex;
    padding: 8px 16px;
}
.website-header .profile-wrapper .profile-dropdown ul li a {
    font-family: Lato, serif;
    font-size: 18px;
    font-weight: normal;
    color: #7C7C7C;
}


/* TABLE */
.table thead tr th,
.table thead tr td {
    font-size: 16px;
    font-weight: bold;
    font-family: 'Exo 2', Helvetica, Arial;
}
.table tbody tr td {
    font-size: 14px;
}
.table-hover tbody tr:hover {
    background-color: #fafafa;
}

/* PAGINATION */
.pagination .page-link {
    border: none;
    width: 30px;
    height: 30px;
    line-height: 30px;
    padding: 0;
    text-align: center;
    margin: 0 0.5rem;
    border-radius: 50%;
    color: #7C7C7C;
}
.page-item:first-child .page-link {
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
}
.page-item:last-child .page-link {
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
}
.page-item.disabled .page-link {
    color: #E3E3E3;
}
.page-item.active .page-link {
    background-color: #007BE3;
}


/* PAGE TITLE */
.page-title {
    font-family: 'Exo 2', Helvetica, Arial;
    font-weight: bold;
    color: #007BE3;
    text-transform: uppercase;
}
.section-title {
    color: #007BE3;
    font-weight: bold;
    font-family: "Exo 2", Arial, Helvetica, sans-serif;
}
.section-desc {
    color: #575555;
    font-weight: normal;
}
.section-subtitle {
    font-size: 18px;
    font-family: "Exo 2", Arial, Helvetica, sans-serif;
}

/* LINKS */
.link-underline {
    text-decoration: underline;
    font-size: 11px;
    font-family: Lato, serif;
    font-weight: normal;
}
.link-underline-blue {
    color: #007BE3;
}
.link-underline-gray {
    color: #7c7c7c;
}

.read-more {
    font-weight: bold;
    font-family: 'Exo 2', Helvetica, Arial;
}

/* CONTENT */
.content-title {
    color: #575555;
    font-size: 12px;
    font-weight: bold;
    font-family: "Exo 2", Arial, Helvetica, sans-serif;
}
.content-desc {
    color: #7c7c7c;
    font-family: Lato, serif;
    font-weight: normal;
    font-size: 11px;
}

.kt-avatar .kt-avatar__holder {
    background-color: #EEF4F7;
    border-radius: 8px;
}

/* PILL */
.nav-pills .nav-item .nav-link {
    height: 42px;
    padding: 0;
    line-height: 42px;
}