@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/DMSans/DMSans-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/DMSans/DMSans-Medium.ttf') format('truetype');
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/DMSans/DMSans-SemiBold.ttf') format('truetype');
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/DMSans/DMSans-Bold.ttf') format('truetype');
}





/* Custom CSS Variables */
:root {
    --sidebar-wide: 250px;
    --sidebar-narrow: 68px;
    --bg: #0f1724;
    --accent: #2563eb;
    --muted: #6c757d;
    --surface: #0b1220;

    --primary-color: #122AC2;/* #007D88;*/
    --primary-light-2-color: #0693e3;
    --primary-light-4-color: #8ed1fc;

    --primary-rgb: 255, 200, 0;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --text-color: #212529;
    --bs-bg-opacity: 1;
    --white-color: #ffffff;

    --font-family-heading: 'DM Sans', sans-serif;
    --font-family-body: 'DM Sans', sans-serif;
    --bs-body-font-family: 'DM Sans', sans-serif;

    --bs-btn-color: #122AC2;/*#0033A1;*/
    --bs-btn-border-color: #122AC2;
    --blu-tim:#122AC2;
    --red-tim:#e60000;

}



*{box-sizing:border-box}

html {
  scroll-padding-top: 4.5rem;
}

html,body{
    height:100%
}

body {
  font-family: var(--bs-body-font-family);
  font-weight: 400;
  position: relative;
  overflow-x: hidden;
  background: #f8f9fb;
}

.bg-primary{
    background-color: var(--primary-color)!important;
}

.bg-primary-light-2{
    background-color: var(--primary-light-2-color);
}

.bg-primary-light-4{
    background-color: var(--primary-light-4-color);
}

.bg-primary-light-5 {
    background-color: rgba(235, 245, 245, var(--bs-bg-opacity)) !important;
}

.text-blue {
    color: var(--primary-color);
}

.py-8 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
}

.login-bg{
    background-image: linear-gradient(rgba(235, 245, 245, 0.8), rgba(235, 245, 245, 0.8)), 
        url(../img/login_bg.jpg);
    background-position: bottom center;
    background-size: 100%;
    background-repeat: no-repeat;
}

.btn-outline-primary {
    --bs-btn-color: #122AC2;
    --bs-btn-border-color: #122AC2;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #122AC2;
    --bs-btn-hover-border-color: #122AC2;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #122AC2;
    --bs-btn-active-bg: #122AC2;
    --bs-btn-active-border-color: #122AC2;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #122AC2;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #122AC2;
    --bs-gradient: none;
}

.link-primary {
    color: var(--primary-color)!important;
    -webkit-text-decoration-color: var(--primary-color)!important;
    text-decoration-color: var(--primary-color)!important;
}

.link-primary:focus, .link-primary:hover {
      color: var(--primary-color)!important;
    -webkit-text-decoration-color: var(--primary-color)!important;
    text-decoration-color: var(--primary-color)!important;
    opacity: 0.6;  
}

.nav.nav-line > .nav-item > .nav-link.active {
    border-color: var(--primary-color) !important;
}

.nav-tabs .nav-link {
    color: var(--dark-color);
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
}

.logo_text{
    font-weight: 600;
    font-size: 16px;
}


.welcome-bg {
    background: transparent url(../img/welcome_img.jpg) no-repeat center left;
    background-size: contain;
    width: 70px;
    height: 80px;
    mix-blend-mode: multiply;
}
.bg-practice{
    background-color: #122AC2;

}

.card {
    border-radius: 3px;
    border: 1px solid #e4e9f0;
}

.card .card-body {
    padding: 1.25rem 1.25rem;
    border: none;
}

.page-title {
    font-weight: 500;
    line-height: 1.8rem;
}

.display-4 {
    font-size: 1.875rem;
}

.card-int .card-header i {
    color: var(--red-tim);
}

.card.card-int {
    background: #fff;
    border: none !important;
}

.card-int .card-header:first-child {
    padding: 0.70rem 1.25rem;
    border: none;
    border-bottom: 4px solid var(--blu-tim);
    background: transparent;
    font-size: 13pt;
    font-weight: 700;
}

.card-int .card-body {
    background: #d9e9f7;
}

#btn_valida {
    position: fixed;
    bottom: 40px;
    right: 59px;
}

#btn_valida:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn {
    border-radius: 3px !important;
    overflow: hidden;
    position: relative;
    border: none;
    /*color: #fff;*/
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

h4, .h4 {
    font-size: 1.125rem;
}

/*
.card-int .fa-face-meh{
    color: #FFC100;
}
*/

