html {
  font-size: 14px;
}

.loader-overlay
{
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: rgba(0,0,0,0.5);
}

.loader-section 
{
  width: 100%;
  height: 100%;
  display: flex;
}

.loader
{
  margin: auto;
  padding: 32px;
  border-radius: 12px;
  background-color: white;
  text-align: center;
}

.loader-text
{
  font-weight: bold;
}



@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
    font-family: 'Montserrat', sans-serif !important;
}

.main-body
{
  background-color: #f2f2f2 !important;
  height: 95vh;
  overflow-y: auto;
}

.footer
{
  background-color: #fff; 
  color:#2E2E2E;
  height: 5vh;
}

.navbar-brand
{
  font-weight: bold;
  font-size: 18px;
  color: rgb(250, 99, 71);
}

.navbar-brand:hover
{
  color: rgb(222, 84, 59);
}


.link-menu
{
  margin-right: 25px;
  background: white;
  border-radius: 25px;
}

.link-menu .nav-link
{
  border-radius: 25px;
}

.link-menu .nav-item
{
  margin: 4px;
}

.link-menu .nav-link:hover
{
  border-radius: 25px;
  background-color: rgb(250, 99, 71);
  color: white;
}

.link-menu .nav-link.active
{
  background-color: rgb(250, 99, 71);
  color: white;
}

.link-menu:hover .nav-link.active:hover
{
  background-color: rgb(250, 99, 71);
  color: white;
}

.link-menu:hover .nav-link.active
{
  background-color: unset;
  color: rgba(0,0,0, 0.65);
}

.btn-red
{
  background-color: rgb(250, 99, 71);
  border: 1px solid rgb(250, 99, 71);
  color: white;
}

.btn-red:hover
{
  background-color: rgb(222, 84, 59);
  border: 1px solid rgb(222, 84, 59);
  color: white;
}

.btn-red:disabled
{
  background-color: rgb(222, 84, 59);
  border: 1px solid rgb(222, 84, 59);
  color: white;
}

.btn-margin
{
  margin-bottom: 12px;
}

.profile-button
{
  background-color: rgb(250, 99, 71);
  border-radius: 15px;
  cursor: pointer;
  padding-left: 5px;
  padding-right: 5px;
}

.profile-button:hover
{
  background-color: rgb(222, 84, 59);
  color: white;
}

#userDropdown
{
  color: white;
}

.custom-box-shadow{
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Dropdown Menu */

.dropdown-menu {
    top: calc(100% + 2px);
    right: 10px;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-toggle.show::after {
    transform: rotate(180deg);
}


.dropdown-item:active
{
  background-color: #f8f9fa;   
}

.dropdown-item i {
    margin-right: 0.5rem;
    font-size: 1rem;
}

.dropdown-toggle::after {
  font-family: 'Bootstrap Icons';
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.navbar-nav .dropdown-menu {
    position: absolute !important;
}

.dropdown-item.mobile-only
{
  display: none;
}


.dropdown-menu .dropdown-item .dropdown-menu-icon
{
  width: 15%;
}


.section-title
{
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 0px;
    color: rgb(250, 99, 71);
}

.section-subtitle
{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0px;
    color: rgb(250, 99, 71);
}

.btn-app
{
  display: inline-block;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  transition:  all 0.3s ease;
  text-align: center;
  text-decoration: none;
  background-color: rgb(250, 99, 71);
}

.btn-app:hover
{
  background-color: rgb(222, 84, 59);
  color: white;
}

.btn-app:disabled
{
  border: 1px solid rgb(226 223 223);
}

.content{
  padding-left: 24px;
  padding-right: 24px;
}

.iti {
  display: block !important;
}

.showPasswordBtn
{
  cursor: pointer;
}

.hidePasswordBtn
{
  display: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .link-menu {
    display: none;
  }
  
  .dropdown-item.mobile-only
  {
    display: block;
  }
}