/**
 * COMMON STYLES
 */
@keyframes rotate-clockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.fs-7 {
  font-size: 0.9rem !important;
}

.fs-8 {
  font-size: 0.8rem !important;
}

.fs-9 {
  font-size: 0.7rem !important;
}

.btn {
  transition: all 0.2s ease-in-out;
}
.btn:not(.btn-close) {
  font-weight: 700;
  border-radius: 0.375rem;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 1199px) {
  .btn {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.btn-primary {
  background-color: #4653b7;
  border-color: #4653b7;
  color: #e5e5e5 !important;
}
.btn-primary:hover {
  opacity: 0.9;
  background-color: #4653b7;
  border-color: #4653b7;
}
.btn-secondary {
  background-color: #888888;
  border-color: #888888;
  color: #e5e5e5 !important;
}
.btn-secondary:hover {
  opacity: 0.9;
  background-color: #888888;
  border-color: #888888;
}
.btn-round {
  border-radius: 100px !important;
}
.btn-delete {
  border-color: #dc3545;
  background: #fbeeee;
}
.btn-delete:hover {
  background: #dc3545 !important;
  color: #fbeeee !important;
}

.control-label {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.4;
}

.form-group:has(input[type=checkbox]) {
  position: relative;
  cursor: pointer;
}
.form-group:has(input[type=checkbox]):before {
  content: "";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: -2px;
  left: 0;
  font-size: 24px;
  line-height: 1;
  color: #24272f;
}
.form-group:has(input[type=checkbox]) label {
  position: relative;
  padding-left: 34px;
  cursor: pointer;
  z-index: 2;
}
.form-group:has(input[type=checkbox]) input[type=checkbox] {
  display: none;
}

.form-group:has(input[type=checkbox]:not(:checked)):before {
  content: "\f204"; /* fa-toggle-off */
}

.form-group:has(input[type=checkbox]:checked):before {
  content: "\f205"; /* fa-toggle-on */
  color: #ad6b57;
}

.hint-block {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.8);
  margin: 5px 0 0 0;
}

.help-block {
  color: #ff4444;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  margin: 6px 0 0 0;
}

h1 {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 18px 0;
}

h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px 0;
}

h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px 0;
}

h5 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 16px 0;
}

h6 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 16px 0;
}

.rotate {
  animation: rotate-clockwise 1.5s linear infinite;
}

.ext {
  display: inline-block;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.375rem;
  line-height: 1;
}

.wwbw {
  word-wrap: break-word;
}

.requisites-box {
  padding: 25px 20px;
  background: rgba(0, 0, 0, 0.05);
  border: 2px dashed rgba(0, 0, 0, 0.1);
}

.box {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.04);
  padding: 30px;
  border-radius: 0.375rem;
}
@media (max-width: 1199px) {
  .box {
    padding: 20px;
  }
}
.box.danger {
  background: rgba(255, 30, 40, 0.15);
}
.box__line-label {
  font-weight: 600;
}
.box-mini {
  width: 100%;
  height: auto;
  background: rgba(0, 0, 0, 0.04);
  padding: 30px;
  border-radius: 0.375rem;
}
@media (max-width: 1199px) {
  .box-mini {
    padding: 20px;
  }
}

small.pro {
  font-size: 10px;
  text-transform: uppercase;
  padding: 4px 5px 3px;
  position: relative;
  top: -6px;
  margin-left: 3px;
  background: #4653b7;
  color: #e5e5e5;
  border-radius: 3px;
}

.copy-text-container {
  word-wrap: break-word;
}

/**
 * PAGE
 */
body {
  color: #24272f;
  font-size: 15px;
  line-height: 1.5;
  font-family: "GothamPro", sans-serif;
  background: #00102d;
}

#page {
  height: 100vh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#top {
  color: #e5e5e5;
  padding: 5px 0;
  background: #00102d;
}
@media (max-width: 991px) {
  #top {
    padding: 10px 0;
  }
}

#header {
  background: #0c0d45;
  position: relative;
  overflow: visible;
  padding: 10px 0;
}
@media (max-width: 575px) {
  #header {
    padding: 0;
  }
}
#header .logo__container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 30px 0;
}
#header .logo__container-logo {
  align-content: center;
  width: 100%;
  max-width: 220px;
  height: auto;
}
#header .logo__container-logo a {
  transition: all 0.2s ease-in-out;
  display: block;
}
#header .logo__container-logo a:hover {
  opacity: 0.8;
}
#header .logo__container-logo a img {
  display: block;
  width: 100%;
  height: auto;
}
#header .logo__container-slogan {
  align-content: center;
  width: 100%;
  max-width: 270px;
  padding-left: 45px;
}
#header .logo__container-slogan img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 2px;
}
#header .menu {
  width: 100%;
  padding: 0;
  display: inline-block;
}
@media (max-width: 991px) {
  #header .menu {
    padding: 0 0 30px 0;
  }
}
#header .menu__item {
  display: inline-block;
  align-content: center;
  margin: 10px 0 10px 30px;
}
@media (max-width: 991px) {
  #header .menu__item {
    margin: 10px 30px 10px 0;
  }
}
#header .menu__item.active a {
  text-decoration: underline;
}
#header .menu__item a {
  color: #e5e5e5;
  text-decoration: none;
}

#breadcrumbs {
  padding: 3px 0;
  background: #0c0d45;
  border-top: 1px solid rgba(200, 200, 200, 0.08);
}
#breadcrumbs .breadcrumb-item {
  opacity: 0.6;
}
#breadcrumbs .breadcrumb-item, #breadcrumbs a {
  color: #e5e5e5;
  font-size: 12px;
  margin: 4px 5px 4px 0 !important;
  padding: 0 !important;
}
#breadcrumbs a {
  transition: all 0.2s ease-in-out;
}
#breadcrumbs a:hover {
  opacity: 0.8;
}

#body {
  flex: 1;
  background: #e5e5e5;
  padding: 50px 0;
}
#body.body-styled {
  background: transparent;
  padding: 0;
}

#footer {
  color: #e5e5e5;
  background-color: #00102d;
  border-top: 1px solid rgba(200, 200, 200, 0.08);
  padding: 10px 0;
}
#footer .footer__menu {
  display: inline-block;
  margin: 10px 0;
}
#footer .footer__menu-item {
  display: inline-block;
  margin: 10px 20px 10px 0;
  color: #e5e5e5;
  opacity: 0.4;
}
#footer .footer__menu-item a {
  color: #e5e5e5;
}

#bottom {
  color: #e5e5e5;
  background-color: #00102d;
  border-top: 1px solid rgba(200, 200, 200, 0.08);
  padding: 30px 0;
}
#bottom .bottom__list {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
@media (max-width: 991px) {
  #bottom .bottom__list {
    flex-direction: column;
  }
}
#bottom .bottom__list-item {
  opacity: 0.4;
}
#bottom .bottom__list-item.sep {
  flex-grow: 1;
}
@media (max-width: 991px) {
  #bottom .bottom__list-item.sep {
    display: none;
  }
}
#bottom .bottom__list-item a {
  color: #e5e5e5;
}

.cookies {
  transition: all 0.2s ease-in-out;
  width: 440px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  position: fixed;
  left: calc(50% - 220px);
  bottom: 10px;
  z-index: 999;
  background: #4653b7;
  color: #e5e5e5;
  padding: 15px 30px;
  border-radius: 20px;
}
@media (max-width: 575px) {
  .cookies {
    width: 100%;
    max-width: 100%;
    left: 0;
    bottom: 0;
    border-radius: 0;
  }
}
.cookies.hidden {
  opacity: 0;
  transform: scale(0.5);
  bottom: -80px;
}
.cookies__text {
  flex-grow: 1;
}
.cookies__text a {
  color: #e5e5e5;
}
.cookies__button {
  width: 100%;
  max-width: 60px;
}
@media (max-width: 575px) {
  .cookies__button {
    max-width: 100px;
  }
}
.cookies__button span {
  transition: all 0.2s ease-in-out;
  display: inline-block;
  text-align: center;
  width: 100%;
  background: #e5e5e5;
  color: #0c0d45;
  padding: 5px 15px;
  border-radius: 10px;
  cursor: pointer;
  opacity: 1;
}
.cookies__button span:hover {
  transform: scale(0.95);
  opacity: 0.8;
}

.tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.tabs-items {
  display: inline-block;
  width: 100%;
}
.tabs-items__item {
  transition: all 0.2s ease-in-out;
  display: inline-block;
  font-size: 14px;
  padding: 15px;
  color: #24272f;
  border-radius: 0.375rem;
  cursor: pointer;
  margin: 0 5px 5px 0;
  float: left;
}
@media (max-width: 767px) {
  .tabs-items__item {
    padding: 10px;
    font-size: 13px;
  }
}
.tabs-items__item:hover {
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
}
.tabs-items__item.active {
  background: #e5e5e5;
  color: #4653b7;
}
.tabs-contents {
  display: block;
  width: 100%;
}
.tabs-contents__item {
  transition: all 0.2s ease-in-out;
  display: none;
  width: 100%;
}
.tabs-contents__item.active {
  display: block;
}

/*# sourceMappingURL=common.css.map */
