/* GLOBALS */
body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: border-box;
  outline: 0;
}
button,
input,
select,
textarea {
  outline: none !important;
  -moz-background-clip: padding;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  -webkit-appearance: none !important;
}
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none !important;
  box-shadow: none !important;
}
strong {
  font-weight: 700 !important;
}
img {
  max-width: 100%;
  height: auto;
}
a:hover {
  text-decoration: none;
  color: inherit;
}
.font-300 {
  font-weight: 300 !important;
}
.font-500 {
  font-weight: 500 !important;
}
.font-600 {
  font-weight: 600 !important;
}
.font-700 {
  font-weight: 700 !important;
}
.font-800 {
  font-weight: 800 !important;
}
.font-900 {
  font-weight: 900 !important;
}
/*::-webkit-scrollbar{
  background-color: #000;
}
::-webkit-scrollbar-thumb{
  background-color: @green;
}*/
/*
.col-sm-20,
.col-md-20,
.col-lg-20,
.col-xl-20,
.col-xxl-20{
	position: relative;
	padding-right: 15px;
	padding-left: 15px;
}


@media (min-width: 576px) {
	.col-sm-20 {
		flex: 0 0 20%;
		max-width: 20%;
	}
}

@media (min-width: 768px) {
	.col-md-20 {
		flex: 0 0 20%;
		max-width: 20%;
	}
}

@media (min-width: 992px) {
	.col-lg-20 {
		flex: 0 0 20%;
		max-width: 20%;
	}
}

@media (min-width: 1200px){
	.col-xl-20 {
		flex: 0 0 20%;
		max-width: 20%;
	}
}

@media (min-width: 1400px){
	.col-xxl-20 {
		flex: 0 0 20%;
		max-width: 20%;
	}
}

*/
.header {
  overflow-anchor: none;
  top: 0;
  z-index: 999;
  padding: 0;
  background-color: #192B49;
  color: #fff;
  position: sticky;
  height: 75px;
}
.header a {
  color: inherit;
  text-decoration: none;
}
.header .logo {
  display: inline-block;
  padding: 10px 0;
}
@media (max-width: 1199px) {
  .header .wrapper-menu {
    position: fixed;
    top: 75px;
    bottom: 0;
    right: 0;
    z-index: 999;
    width: 100%;
    transition: 0.2s;
    background-color: rgba(25, 43, 73, 0.8);
    transform: translateX(100%);
  }
}
.header .main-menu {
  transition: 0.2s;
  font-size: 1rem;
}
@media (min-width: 1200px) {
  .header .main-menu {
    display: flex;
    justify-content: flex-end;
  }
}
@media (max-width: 1199px) {
  .header .main-menu {
    background-color: #fff;
    width: 300px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    overflow-y: auto;
    padding: 30px 0;
  }
}
.header .main-menu .menu-item {
  position: relative;
}
@media (min-width: 1200px) {
  .header .main-menu .menu-item {
    margin: 0 5px;
    display: flex;
    align-items: center;
  }
  .header .main-menu .menu-item:hover .drop-down {
    display: block;
  }
  .header .main-menu .menu-item:hover .menu-link:after {
    display: block;
  }
}
.header .main-menu .menu-item .drop-down {
  background-color: #e1e1e1;
  color: #192B49;
}
@media (min-width: 1200px) {
  .header .main-menu .menu-item .drop-down {
    padding: 15px 0;
    transition: opacity 0.1s;
    color: #fff;
    position: absolute;
    left: 0;
    top: 100%;
    width: 300px;
    display: none;
    background-color: #192B49;
  }
}
.header .main-menu .menu-item .drop-down .drop-down-link {
  display: block;
  padding: 10px 20px;
}
@media (min-width: 1200px) {
  .header .main-menu .menu-item .drop-down .drop-down-link:hover {
    text-decoration: underline;
  }
}
@media (max-width: 1199px) {
  .header .main-menu .menu-item .drop-down .drop-down-link {
    border-bottom: 1px solid #82C341;
  }
}
.header .main-menu .menu-link {
  position: relative;
  text-transform: uppercase;
  padding: 0 10px;
  display: flex;
  align-items: center;
  font-weight: 700;
  transition: 0.2s;
  height: 44px;
}
@media (min-width: 1200px) {
  .header .main-menu .menu-link {
    height: 75px;
  }
  .header .main-menu .menu-link:after {
    content: '';
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #82C341;
    height: 4px;
    transition: 0.2s;
  }
  .header .main-menu .menu-link:hover,
  .header .main-menu .menu-link.active {
    color: #82C341;
  }
  .header .main-menu .menu-link:hover:after,
  .header .main-menu .menu-link.active:after {
    display: block;
  }
}
@media (max-width: 1199px) {
  .header .main-menu .menu-link {
    color: #192B49;
    border-bottom: 1px solid #82C341;
  }
}
.header .main-menu .buton-link {
  text-transform: uppercase;
  padding: 10px;
  display: flex;
  align-items: center;
  font-weight: 700;
  transition: 0.2s;
  background-color: #82C341;
  color: #192B49;
}
.header .main-menu .buton-link:hover {
  color: #fff;
}
.header-mobile {
  position: relative;
  height: 75px;
  text-align: center;
}
.header-mobile .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  text-align: center;
  background-color: #fff;
  height: 75px;
  z-index: 1;
}
.header-mobile .main-menu {
  background-color: #fff;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  position: absolute;
  left: 0;
  width: 100%;
  top: 100%;
  transition: 0.2s;
  transform: translateY(-150%);
  z-index: 0;
  padding: 15px 0;
}
.header-mobile .main-menu .main-menu-link {
  text-transform: uppercase;
  display: block;
  padding: 15px 15px;
}
.header-mobile .main-menu .main-menu-link:hover {
  color: #192B49;
}
.nav-toggle {
  height: 38px;
  line-height: 34px;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  width: 40px;
  position: absolute;
  right: 15px;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
}
.nav-toggle span {
  margin-top: -1px;
  transform: translateX(7px);
}
.nav-toggle span,
.nav-toggle span:after,
.nav-toggle span:before {
  right: 15px;
  top: 50%;
  height: 2px;
  width: 26px;
  position: absolute;
  display: block;
  content: '';
  background-color: #fff;
}
.nav-toggle span:after {
  right: 0;
  top: -8px;
}
.nav-toggle span:before {
  right: 0;
  top: 8px;
}
body.nav-opened .wrapper-menu {
  transform: translateX(0);
}
body.nav-opened .nav-toggle span {
  background: transparent !important;
}
body.nav-opened .nav-toggle span:before {
  transform: rotate(45deg);
  top: 0;
}
body.nav-opened .nav-toggle span:after {
  transform: rotate(-45deg);
  top: 0;
}
body.scrolled .header-desktop {
  height: 80px;
}
body.scrolled .header-desktop .main-menu {
  margin-top: 22px;
}
body.scrolled .header-desktop .logo img {
  width: 120px;
}
/* open-sans-300 - latin_latin-ext */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: url('../font/open-sans-v43-latin_latin-ext-300.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-regular - latin_latin-ext */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../font/open-sans-v43-latin_latin-ext-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-500 - latin_latin-ext */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 500;
  src: url('../font/open-sans-v43-latin_latin-ext-500.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-600 - latin_latin-ext */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: url('../font/open-sans-v43-latin_latin-ext-600.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-700 - latin_latin-ext */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../font/open-sans-v43-latin_latin-ext-700.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-800 - latin_latin-ext */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  src: url('../font/open-sans-v43-latin_latin-ext-800.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
.footer {
  background: #192B49;
  position: relative;
  color: #8F8F8F;
  font-weight: 400;
  padding: 50px 0;
}
@media (max-width: 991px) {
  .footer {
    text-align: center;
  }
}
.footer a {
  color: #8F8F8F;
  text-decoration: none;
}
.footer .links a {
  color: #fff;
  display: table;
  padding: 0;
  margin: 0 0 12px;
}
.footer .links a:hover {
  text-decoration: underline;
}
@media (max-width: 991px) {
  .footer .links a {
    margin: 0 auto 12px;
  }
}
.footer .social {
  text-align: center;
}
.footer .social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #707070;
  color: #fff;
  line-height: 40px;
  text-align: center;
  font-size: 1.2rem;
  border-radius: 50%;
  margin: 5px;
}
.footer .social a:hover {
  color: #192B49;
  background-color: #fff;
}
.footer .copy {
  font-size: 12px;
  font-weight: 300;
}
.color-white {
  color: #fff !important;
}
.bg-primary {
  background-color: #192B49 !important;
}
.bg-secondary {
  background-color: #82C341 !important;
}
.bg-white {
  background-color: #fff;
}
.bg-home-sevicii {
  background-color: #001017;
}
.color-primary {
  color: #192B49 !important;
}
.color-secondary {
  color: #82C341 !important;
}
.color-inherit {
  color: inherit;
}
.color-text {
  color: #192B49 !important;
}
.color-black {
  color: #000;
}
html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}
body {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  min-height: 100%;
  background-color: #fff;
  font-family: 'Open Sans', sans-serif !important;
  font-size: 1.125rem;
  line-height: 1.4;
  position: relative;
  font-weight: 400;
  color: #192B49;
}
.main-wrapper {
  position: relative;
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  margin: 0 auto;
  width: 100%;
}
.section-pt {
  padding-top: 30px;
}
@media (min-width: 1200px) {
  .section-pt {
    padding-top: 50px;
  }
}
.section-pb {
  padding-bottom: 30px;
}
@media (min-width: 1200px) {
  .section-pb {
    padding-bottom: 50px;
  }
}
.buton {
  display: inline-block;
  text-align: center;
  -moz-background-clip: padding;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  -webkit-appearance: none !important;
  text-decoration: none !important;
  cursor: pointer;
  background-color: #82C341;
  color: #192B49;
  border-radius: 400px;
  font-size: 1.125rem;
  line-height: 1;
  padding: 15px 25px;
  border: 0;
  font-weight: 600;
  transition: 0.2s;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.buton:hover {
  background-color: #6faa35;
  color: #fff;
}
.buton .primary {
  background-color: #192B49;
  color: #fff;
}
.buton .primary:hover {
  background-color: #101e35;
  color: #fff;
}
.h1,
.h2 {
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .h1,
  .h2 {
    font-size: 2.8rem;
  }
}
@media (min-width: 1200px) {
  .h1,
  .h2 {
    font-size: 3rem;
  }
}
.h3 {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .h3 {
    font-size: 1.6rem;
  }
}
@media (min-width: 1200px) {
  .h3 {
    font-size: 1.875rem;
  }
}
.h4 {
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .h4 {
    font-size: 1.4rem;
  }
}
@media (min-width: 1200px) {
  .h4 {
    font-size: 1.6rem;
  }
}
.container-1200 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.container-1000 {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.container-800 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero-baner {
  position: relative;
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .hero-baner {
    margin-bottom: -90px;
  }
}
.hero-baner img {
  min-height: 300px;
  object-fit: cover;
  object-position: center right;
}
.hero-baner .content {
  position: absolute;
  left: 15px;
  max-width: 450px;
  color: #fff;
  z-index: 1;
}
@media (max-width: 991px) {
  .hero-baner .content {
    bottom: 20px;
  }
}
@media (min-width: 992px) {
  .hero-baner .content {
    left: 10%;
    top: 50px;
    max-width: 800px;
  }
}
.hero-baner .content .title {
  font-size: 1.7rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (min-width: 576px) {
  .hero-baner .content .title {
    font-size: 2rem;
  }
}
@media (min-width: 992px) {
  .hero-baner .content .title {
    font-size: 3rem;
  }
}
@media (min-width: 1400px) {
  .hero-baner .content .title {
    font-size: 3.75rem;
  }
}
.hero-baner .content .subtitle {
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 700;
}
@media (min-width: 576px) {
  .hero-baner .content .subtitle {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  .hero-baner .content .subtitle {
    font-size: 2rem;
  }
}
@media (min-width: 1400px) {
  .hero-baner .content .subtitle {
    font-size: 2.5rem;
  }
}
.hero-baner:after {
  display: block;
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.item-home-beneficii {
  position: relative;
  z-index: 1;
  aspect-ratio: 1/1;
  border-radius: 20px;
  background-color: #fff;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 190px;
}
.item-home-beneficii img {
  height: 80px;
}
.item-home-beneficii .desc {
  padding: 10px;
  font-size: 0.8rem;
  line-height: 1.2;
}
#carusel_beneficii {
  padding: 8px 8px 35px;
}
#carusel_beneficii .swiper-slide {
  width: 190px;
}
#carusel_beneficii .swiper-pagination-bullet {
  background-color: #82C341;
}
.home-stats {
  text-align: center;
}
.home-stats .number {
  font-weight: 900;
  font-size: 5rem;
  line-height: 1;
  color: #82C341;
}
.home-stats .lab {
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.1;
}
.home-center {
  border: 1px solid #192B49;
  border-radius: 20px;
  padding: 15px 15px;
}
@media (min-width: 576px) {
  .home-center {
    padding: 15px 50px;
  }
}
.home-center .item {
  padding-left: 20px;
  position: relative;
  font-size: 1rem;
}
@media (min-width: 1400px) {
  .home-center .item {
    font-size: inherit;
  }
}
.home-center .item:before {
  display: block;
  content: '';
  width: 10px;
  height: 10px;
  background-color: #192B49;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}
.bg-primary {
  color: #fff;
}
.bg-primary .before-title,
.bg-primary .after-title {
  border-color: #82C341;
}
.border-top-section {
  border-top: 7px solid #82C341;
}
.border-bottom-section {
  border-bottom: 7px solid #82C341;
}
.before-title {
  width: 50px;
  border: 3px solid #192B49;
  border-bottom: none;
  position: relative;
  height: 10px;
  margin: 0 auto 10px;
}
.after-title {
  width: 50px;
  border-bottom: 3px solid #192B49;
  position: relative;
  height: 15px;
  margin: 0 auto 0;
}
.service-item {
  position: relative;
  color: #fff;
  text-decoration: none;
}
.service-item .image {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}
.service-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.2s;
}
.service-item .image:before {
  display: block;
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
.service-item:hover img {
  scale: 1.1;
}
.service-item .name {
  font-size: 1.3rem;
  position: absolute;
  right: 15px;
  left: 15px;
  bottom: 30px;
  z-index: 2;
  padding-right: 30px;
  font-weight: 700;
}
.service-item .name:after {
  display: block;
  content: '\e802';
  font-family: 'fontello';
  font-size: 1.5rem;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (min-width: 992px) {
  .full-lp {
    padding-left: calc((100vw - 960px) / 2);
  }
}
@media (min-width: 1200px) {
  .full-lp {
    padding-left: calc((100vw - 1140px) / 2);
  }
}
@media (min-width: 1400px) {
  .full-lp {
    padding-left: calc((100vw - 1320px) / 2);
  }
}
.image-faq {
  position: relative;
  overflow: hidden;
  height: 300px;
}
@media (min-width: 992px) {
  .image-faq {
    height: 100%;
  }
}
.image-faq img {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.accordion-faq .accordion-item {
  background-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 0 !important;
}
.accordion-faq .accordion-button {
  background-color: transparent;
  border-color: transparent;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 0 !important;
}
@media (min-width: 576px) {
  .accordion-faq .accordion-button {
    font-size: 1.4rem;
  }
}
.page-baner {
  position: relative;
  height: 400px;
}
.page-baner .content {
  position: absolute;
  left: 15px;
  max-width: 450px;
  color: #fff;
  z-index: 1;
}
@media (max-width: 991px) {
  .page-baner .content {
    bottom: 20px;
  }
}
@media (min-width: 992px) {
  .page-baner .content {
    left: 10%;
    bottom: 20px;
    max-width: 800px;
  }
}
.page-baner .content .title {
  font-size: 1.7rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (min-width: 576px) {
  .page-baner .content .title {
    font-size: 2rem;
  }
}
@media (min-width: 992px) {
  .page-baner .content .title {
    font-size: 3rem;
  }
}
@media (min-width: 1400px) {
  .page-baner .content .title {
    font-size: 3.75rem;
  }
}
.page-baner:after {
  display: block;
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.page-baner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-foo-contact {
  border-top: 7px solid #2556A7;
  border-bottom: 7px solid #82C341;
  background-color: #192B49;
  color: #fff;
}
.section-foo-contact .before-title,
.section-foo-contact .after-title {
  border-color: #82C341;
}
.image-sticky-service {
  height: 300px;
}
@media (min-width: 1200px) {
  .image-sticky-service {
    position: sticky;
    top: var(--header-height);
    height: calc(100dvh - (var(--header-height)));
  }
}
.image-sticky-service img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 1200px) {
  .service-content {
    padding-left: 60px;
  }
}
.masonry-item {
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.2s;
}
.masonry-item:hover img {
  transform: scale(1.1);
}
.was-validated .form-control:invalid {
  border-color: #FE000B;
  background-image: none;
}
.form-group {
  position: relative;
}
.invalid-tooltip {
  position: static;
  border-radius: 3px;
  text-align: initial;
  background-color: #ffe1e1;
  color: darkred;
  padding: 0.2rem 0.4rem;
  font-size: 0.75rem;
}
.was-validated .form-control:invalid ~ .invalid-tooltip {
  display: block;
}
input.form-control {
  width: 100%;
  box-shadow: none;
  display: block;
  overflow: hidden;
  -moz-background-clip: padding;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  -webkit-appearance: none !important;
  border: 1px solid #192B49;
  background-color: #fff;
  color: #000;
  border-radius: 600px;
  height: 55px;
  line-height: 55px;
  padding-top: 0;
  padding-bottom: 0;
}
input.form-control:focus {
  border-color: #2556A7;
  box-shadow: none !important;
}
textarea.form-control {
  width: 100%;
  box-shadow: none;
  display: block;
  -moz-background-clip: padding;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  -webkit-appearance: none !important;
  border: 1px solid #192B49;
  background-color: #fff;
  color: #000;
  border-radius: 12px;
  height: 150px;
}
textarea.form-control:focus {
  border-color: #2556A7;
  box-shadow: none !important;
}
/*checkbox*/
.custom-checkbox {
  padding-left: 0;
  /*input.form-check-input[type=radio]~.form-check-label::before {
		border-radius: 50%;
	}
	input.form-check-input[type=radio]:checked~.form-check-label::before {
		content: '';
		background-color: #000;
	}
	input.form-check-input[type=radio]:checked~.form-check-label::after {
		display: block;
		content: '';
		background-color: #fff;
		border-radius: 50%;
		width: 12px;
		height: 12px;
		left: 3px;
		top: 5px;
		z-index: 1;
		position: absolute;
	}*/
}
.custom-checkbox .form-check-input {
  position: absolute;
  left: -9999999px;
}
.custom-checkbox .form-check-label {
  position: relative;
  padding-left: 32px;
}
.custom-checkbox .form-check-label:before {
  display: block;
  font-family: 'fontello';
  content: '';
  background-color: #fff;
  border-radius: 6px;
  width: 26px;
  height: 26px;
  left: 0;
  top: -2px;
  position: absolute;
  border: 1px solid #192B49;
  color: #192B49;
  font-size: 0.9rem;
  line-height: 26px;
  text-align: center;
  cursor: pointer;
}
.custom-checkbox .form-check-label a {
  color: inherit;
}
.custom-checkbox .form-check-input:checked ~ .form-check-label::before {
  content: '\e81a';
  color: #fff;
  background-color: #192B49;
}
.form-select {
  display: block;
  -moz-background-clip: padding;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  -webkit-appearance: none !important;
  border: 1px solid #fff;
  background-color: #fff;
  color: #000 !important;
  border-radius: 6px;
  height: 55px;
  line-height: 55px;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}
.form-select option:disabled {
  display: none;
}
.form-select:focus {
  border-color: #000;
  box-shadow: none !important;
}
.form-select option {
  color: #000;
  border-radius: 0;
}
.form-select.form-select-sm {
  font-size: inherit;
  height: 48px;
  line-height: 48px;
  font-weight: 500;
}
.alert {
  padding: 0.5rem 1rem;
  border-radius: 0;
  font-weight: 400;
  border: none;
}
.custom-select option:disabled {
  display: none;
}
.custom-control-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 1rem;
}
.upload {
  border: 1px solid #dee2e6;
  display: flex;
  align-items: center;
  position: relative;
  height: 60px;
  line-height: 60px;
  color: #192B49;
  cursor: pointer;
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
}
.upload .file-chosen {
  display: block;
  flex: 1 0 0;
  padding: 0 0.75rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}
.upload .bt-upload {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: #eaeaea;
  color: #000;
}
.upload .bt-upload:hover {
  background-color: #192B49;
  color: #fff;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
.dark-form .form-control {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  color: #fff !important;
  background-color: #031E2B;
  border-radius: 300px;
  border-color: #031E2B;
}
.dark-form .form-control:-moz-placeholder {
  color: rgba(255, 255, 255, 0.64);
}
.dark-form .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.64);
}
.dark-form .form-control:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.64);
}
.dark-form .form-control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.64);
}
.dark-form .form-control:focus {
  border-color: #083f5a;
}
.dark-form .form-select {
  padding-left: 1.5rem;
  padding-right: 2.5rem;
  color: #fff !important;
  background-color: #031E2B;
  border-radius: 300px;
  border-color: #031E2B;
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}
.dark-form .form-select option {
  color: #fff;
}
.dark-form .form-select option:checked {
  color: #fff;
}
.dark-form .form-select:focus {
  border-color: #083f5a;
}
.dark-form .custom-checkbox {
  padding-left: 0;
}
.dark-form .custom-checkbox .form-check-input {
  position: absolute;
  left: -9999999px;
}
.dark-form .custom-checkbox .form-check-label {
  position: relative;
  padding-left: 32px;
}
.dark-form .custom-checkbox .form-check-label:before {
  display: block;
  font-family: 'fontello';
  content: '';
  background-color: #031E2B;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  left: 0;
  top: -2px;
  position: absolute;
  border: 1px solid #083f5a;
  color: #fff;
  font-size: 0.9rem;
  line-height: 26px;
  text-align: center;
  cursor: pointer;
}
.dark-form .custom-checkbox .form-check-label a {
  color: inherit;
}
.dark-form .custom-checkbox .form-check-input:checked ~ .form-check-label::before {
  content: '\e81a';
  background-color: #083f5a;
  color: #fff;
}
.dark-form .invalid-tooltip {
  background-color: transparent;
  padding: 3px 10px 5px;
  color: red;
}
.dark-form .alert {
  border-radius: 20px;
  text-align: center;
}
