@charset "UTF-8";

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/monts/Montserrat-Bold.woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/monts/Montserrat-SemiBold.woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/monts/Montserrat-Medium.woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/monts/Montserrat-Regular.woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-Bold.ttf");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-SemiBold.ttf");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-Medium.ttf");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-Regular.ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "iconsFont";
  src: url("../fonts/iconsFont/icomoon.eot");
  src: url("../fonts/iconsFont/icomoon.eot") format("embedded-opentype"), url("../fonts/iconsFont/icomoon.ttf") format("truetype"),
    url("../fonts/iconsFont/icomoon.woff") format("woff"), url("../fonts/iconsFont/icomoon.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

* {
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  background-color: #fff;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.modal-open,
.modal {
  padding-right: 0 !important;
}
.hidden-data {
  display: none;
}

div.dt-buttons > .dt-button,
div.dt-buttons > div.dt-button-split .dt-button {
  margin-left: 0.167em !important;
  margin-right: 0.167em !important;
  margin-bottom: 0 !important;
  padding: 0.2em 0.4em !important;
  background: inherit !important;
}
a {
  text-decoration: none;
}
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background: white;
  opacity: 1;
}

#preloader #loader {
  display: block;
  position: relative;
  opacity: 1;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #015db2;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

/* текст под спиннером */
#preloader #preloaderText {
  position: absolute;
  top: calc(50% + 95px); /* чуть ниже круга */
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: #015db2;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}

/* дальше твои круги */
#preloader #loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #006dd2;
  -webkit-animation: spin 6s linear infinite;
  animation: spin 6s linear infinite;
}
#preloader #loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: rgba(0, 109, 210, 0.42);
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.form-wrapper {
  border-radius: 7px;
}
.form-wrapper label {
  font-weight: 600;
}
.errors li {
  list-style: none;
  width: 100%;
  text-align: center;
  font-family: Inter;
}
.errors ul {
  padding-left: 0;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .form-wrapper .text-right {
    text-align: center !important;
  }
  .form-wrapper .btn-primary {
    display: block;
    margin: 0 auto;
  }
  .airplane-container {
    display: none;
  }
}

.label_form {
  color: black;
  font-weight: 600;
}
.modal-body-item {
  display: flex;
  gap: 8px;
}
.modal-body-item-descr {
  color: #607d8b;
  font-weight: 600;
  cursor: pointer;
}
.toast-notification {
  background-color: white;
  border-radius: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  right: 0;
  top: 120px;
  margin: 0;
  position: fixed;
  z-index: 999999999999999;
  display: flex;
  flex-direction: row;
}

.message-container {
  display: flex;
  max-width: 497px;
  width: 100%;
  padding: 16px 24px 16px 12px;
  align-items: center;
  gap: 12px;
  border-radius: 12px 0px 0px 12px;
}
.message-container div {
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
}
.copy_text {
  font-size: 12px;
  color: red;
  font-weight: 600;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.from-wrapper .container {
  max-width: 460px;
  width: 100%;
}
.authorization_form {
  display: flex;

  width: 100%;
  flex-direction: column;
  align-items: center;
}
.authorization_form .form-group {
  width: 100%;
}
.form-group label,
.form-group + label {
  color: var(--Gray-700, #344054);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
  margin-bottom: 6px;
}
input,
input.form-control {
  display: flex;
  padding: 10px 14px;
  align-items: center;
  align-self: stretch;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid var(--Gray-300, #d0d5dd);
  background: var(--White, #fff);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
input::placeholder,
input.form-control::placeholder {
  color: var(--Gray-500, #667085);
  /* Text md/Regular */
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
textarea,
textarea.form-control {
  display: flex;
  padding: 10px 14px;
  align-items: flex-start;
  align-self: stretch;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid var(--Gray-300, #d0d5dd);
  background: var(--White, #fff);
  min-height: 100px;
  /* Shadow/xs */
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
.form-check {
  position: relative;
  margin-bottom: 12px;
}
.form-check-input {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  max-width: 20px;
  max-height: 20px;
  padding: 0;
  cursor: pointer;
}
.form-check-label {
  padding-left: 6px;
  color: var(--Gray-700, #344054);

  /* Text md/Medium */
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}
.from-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.login-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0;
}
.filled_button {
  display: flex;
  padding: 8px 14px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: 1px solid #0a74d7;
  background: #0a74d7;
  /* Shadow/xs */
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  width: 100%;
  color: var(--White, #fff);
  text-align: center;

  /* Text sm/Semibold */
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 142.857% */
}
.outline_button {
  display: flex;
  padding: 12px 20px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: 1px solid var(--Gray-300, #d0d5dd);
  background: var(--Gray-50, #f9fafb);

  /* Shadow/xs */
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  color: var(--Gray-800, #1d2939);
  /* Text md/Semibold */
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
}
.outline_button span,
.add_button span {
  padding-left: 8px;
}
.add_button {
  display: flex;
  padding: 8px 14px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: 1px solid var(--Brand-50, #f9f5ff);
  background: var(--Brand-50, #f9f5ff);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
.add_button span {
  color: #0a74d7;

  /* Text sm/Semibold */
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 142.857% */
}
.row {
  width: 100%;
  margin: 0;
}
.login-container .row > * {
  padding: 0;
}
.submit_login {
  margin-top: 32px;
}
.form-group-password {
  margin-top: 20px;
}
.authorization-title {
  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: 56px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 48px;
}
.restore-link a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  color: #0058aa;

  /* Text sm/Semibold */
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 142.857% */
}
.logo-container {
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
}
.airplane-container img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
  height: 100%;
}
.login-container .row {
  height: 100%;
}
.error_block {
  font-size: 12px;
  color: red !important;
  font-family: "Inter";
}
.error_field {
  border: 1px solid red !important;
}
.restore-password-descr {
  color: var(--neutral-900, #19191a);
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 48px;
}
.contacts a {
  color: var(--Primary-blue-500, #0a74d7);
  font-family: Inter;
  font-size: 27px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.navbar {
  display: flex;
  width: 100%;
  height: 72px;
  padding: 8px 8px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--Neutral-2, #dee5ed);
  background: var(--Neutral-0, #fff);
}

.navbar a,
.navbar .dropdown-toggle {
  color: var(--Neutral-10, #486284);
  text-align: center;

  /* body/small */
  font-family: "Inter";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  letter-spacing: 0.5px;
}

.navbar .dropdown {
  display: flex;
  align-items: center;
}
.nav-item {
  align-items: center;
  display: flex;
}
.navbar-nav li + li {
  padding-left: 8px;
}
.dropdown-menu li {
  padding-left: 0 !important;
}
.ms-dd-label {
  color: var(--Gray-900, #101828);
  /* Text md/Medium */
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}
.btn-remove,
.btn-remove:hover {
  display: flex;
  padding: 8px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: 1px solid var(--Gray-300, #d0d5dd);
  background: var(--Brand-50, #f9f5ff);
  /* Shadow/xs */
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
p {
  margin: 0;
  padding: 0;
}
.textdecoration {
  text-decoration: underline;
}
@media (max-width: 1400px) {
  .navbar-nav li + li {
    padding-left: 12px;
  }
  .nav-link {
    font-size: 12px !important;
  }
  .dropdown-menu .nav-link {
    font-size: 14px !important;
  }
}
@media (max-width: 991px) {
  .navbar-nav li + li {
    padding-left: 0;
  }
  .navbar .dropdown {
    display: block;
  }
  .navbar-collapse > ul {
    padding: 8px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 16px 0 rgba(1, 10, 44, 0.24);
  }
  .navbar-collapse > ul > li {
    margin-top: 12px;
  }
  .dropdown-menu {
    border: 0;
  }

  .dropdown-menu li {
    padding-left: 20px !important;
  }
  .navbar-collapse .nav-link {
    text-align: left;
  }

  .navbar-collapse {
    position: relative;
    z-index: 1;
  }
  .nav-link {
    font-size: 14px !important;
  }
  /* .navbar .dropdown {
	}
	.navbar-collapse ul {
		padding: 8px;
		border-radius: 12px;
		border: 1px solid #ababab;
		box-shadow: 0 4px 16px 0 rgba(1, 10, 44, 0.24);
	}
	.navbar-collapse ul li {
		padding: 0;
		justify-content: flex-end;
	} */
}
@media (max-width: 680px) {
  .navbar {
    padding: 8px !important;
  }
}
@media (max-width: 576px) {
  .logo-container {
    margin-bottom: 36px;
  }
  .authorization-title {
    font-size: 48px;
    margin-bottom: 32px;
  }
  .restore-password-descr {
    margin-bottom: 32px;
  }
}
.bold {
  font-weight: 600;
}

.flexcenteredvertical {
  display: flex;
  align-items: center;
}

.textDecoration {
  text-decoration: underline;
}
.select2-container--default .select2-selection--single .select2-selection__arrow,
.select2-container .select2-selection--single {
  height: 44px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 44px;
}

.btn-auth {
  padding: 12px 24px;
  background: linear-gradient(to top, #00154c, #12376e, #23487f);
  color: #fff;
  border-radius: 50px;
  font-weight: 500;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.btn-auth span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: top 0.5s;
}

.btn-text-one {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.btn-text-two {
  position: absolute;
  width: 100%;
  top: 150%;
  left: 0;
  transform: translateY(-50%);
}

.btn-auth:hover:hover {
  color: #fff;
}
