@font-face {
  font-family: 'Satoshi-Regular';
  src: url('fonts/Satoshi-Regular.woff2') format('woff2'),
       url('fonts/Satoshi-Regular.woff') format('woff'),
       url('fonts/Satoshi-Regular.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

body {
  font-family: 'Satoshi-Regular';
  font-weight: 500;
}

#preloader {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.nav-pills .nav-link {
  background-color: transparent;
  color: #303139;
}

.nav-pills .nav-link.active, .nav-pills .nav-link:hover {
  background-color: #00AEEF;
  color: #fff;
}

.nav-pills .submenu .nav-link {
  background-color: #F5F7F9;
  margin-top: 10px;
  color: #303139;
}

.nav-pills .submenu .nav-link.active, .nav-pills .submenu .nav-link:hover {
  background-color: rgba(0, 174, 239, 0.3);
  color: #00AEEF;
}

.nav-pills .nav.collapsing {
  transition: none;
}

.required label::after {
  content: " *";
  color: red;
}

.pic-max-200 {
    object-fit: scale-down;
    max-height: 220px;
}

.bg-holder {
  position: absolute;
  width: 100%;
  min-height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  will-change: transform, opacity, filter;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-repeat: no-repeat;
  z-index: 0;
}

.choices[data-type*="select-one"]::after {
  content: none !important;
}

.choicesbox .form-select {
  padding: 4px 30px 0px 3px;
  background-image: none;
}

.choicesbox .choices__input {
  background-color: transparent;
}

.choices__list--dropdown, .choices__list[aria-expanded] {
  z-index: 10;
}

.btn-primary {
  --bs-btn-bg: #00AEEF;;
  --bs-btn-border-color: #00AEEF;
  --bs-btn-active-border-color: #0a53be;
  --bs-btn-disabled-border-color: #00AEEF;
}