* {
  box-sizing: border-box;
}
body {
  background-color: #f5f6fb;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #222222;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  vertical-align: baseline;
  min-height: 100vh;
}
body.no-scroll {
  overflow: hidden;
}
.container {
  position: relative;
  padding: 0 80px;
  height: 100%;
  
  max-width: 1500px;
  width: 100%;
  margin: auto;
}
.mobile-only {
  display: none;
}
iframe {
  border: 0;
}
.nice-scroll::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #e2edff;
  border-radius: 10px;
}
.nice-scroll::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #5097f4;
  border: 2px solid #e2edff;
}
.nice-scroll::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 10%);
  background-color: #e2edff;
  border-radius: 5px;
}
.flex-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.flex-row.between,
.flex-column.between {
  justify-content: space-between;
}
.flex-row.around {
  justify-content: space-around;
}
.flex-row.center {
  justify-content: center;
}
.flex-row.wrap {
  flex-wrap: wrap;
}
.flex-row.stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.flex-row.align-top {
  -webkit-box-align: unset;
  -ms-flex-align: unset;
  align-items: unset;
}
.flex-row.reverse {
  flex-direction: row-reverse;
}
.flex-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: baseline;
}
.flex-column.center {
  align-items: center;
}
.flex-row.wrap {
  flex-wrap: wrap;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  background: #ffffff;
  box-shadow: 0px 4px 20px rgba(83, 93, 150, 0.1);
  height: 70px;
  width: 100%;
  z-index: 999;
  backdrop-filter: blur(7.5px);
}
a {
  color: #ffffff;
  text-decoration: none;
}
a:hover,
a:focus,
a:target {
  outline: none !important;
  outline-offset: 0 !important;
  text-decoration: none;
}
header a {
  color: #3977c8;
}
header a:hover {
  color: #c4ddff;
  text-decoration: none;
}
.header_bg {
  background: rgba(255, 255, 255, 0.02);
  box-shadow: none;
}
.header_bg a {
  color: #ffffff;
  cursor: pointer;
}
header .container {
  padding-top: 17px;
  padding-bottom: 13px;
}
header .logo {
  height: 41px;
  width: 214px;
  background: url(/imgs/header/logo-head-scroll.svg) 00 no-repeat;
}
.header_bg .logo {
  background: url(/imgs/header/logo-head.svg) 00 no-repeat;
}
ul.menu {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  margin-right: 100px;
}
ul.menu > li {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: normal;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  align-items: center;
  margin: 0 24px;
  vertical-align: middle;
  transition: none;
  display: flex;
}
ul.menu > li > a:hover,
ul.menu > li > a:target,
ul.menu > li > a:focus {
  text-decoration: none;
}
li.submenu {
  position: relative;
}
ul.menu > li.submenu > .context-holder {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  padding-top: 22px;
  top: 40px;
  left: -350px;
  left: 0;
  
  transition: 0.3s;
  transition-timing-function: cubic-bezier(0.58, 0.3, 0.005, 1);
  -o-transition-timing-function: cubic-bezier(0.58, 0.3, 0.005, 1);
  transition-timing-function: cubic-bezier(0.58, 0.3, 0.005, 1);
}
li.submenu .context-menu {
  position: relative;
  display: flex;
  align-self: baseline;
  justify-content: space-between;
  border-top: none;
  background: #f8f9ff;
  backdrop-filter: blur(4px);
  border-radius: 10px;
  padding: 24px 40px 40px 40px;
}
header li.submenu .context-menu {
  box-shadow: 0px 4px 20px rgb(83 93 150 / 10%);
}
.header_bg li.submenu .context-menu {
  box-shadow: none;
}
ul.menu > li.submenu:hover .context-holder,
ul.menu > li.submenu:focus .context-holder,
ul.menu > li.submenu:target .context-holder,
ul.menu > li.submenu .context-holder:hover {
  visibility: visible;
  opacity: 0.95;
  top: 17px;
}
ul.menu > li.submenu .context-menu ul {
  list-style-type: none;
  padding: 0;
  display: block;
  min-width: 245px;
}
ul.menu > li.submenu .context-menu ul:not(:last-child) {
  margin-right: 55px;
}
ul.menu > li.submenu .context-menu ul li {
  line-height: 19px;
  display: flex;
  flex-direction: column;
  flex-basis: auto;
  flex-grow: 1;
}
ul.menu > li.submenu .context-holder ul li label {
  color: #3977c8;
  font-weight: 500;
  margin-bottom: 16px;
}
ul.menu > li.submenu .context-holder ul li a {
  color: #222222;
  font-weight: 300;
}
ul.menu > li.submenu .context-holder ul li a:hover {
  color: #5097f4;
  text-decoration: none;
}
.header_bg ul.menu > li.submenu > a:hover {
  text-decoration: none;
}
ul.menu > li.submenu .context-holder ul li:not(:first-child) {
  margin-bottom: 8px;
}
ul.menu > li.submenu:hover a {
  color: #5097f4;
}
ul.menu > li.submenu > a::after {
  content: "";
  background: url(/imgs/vectors/arrow-down.svg) 00 no-repeat;
  display: inline-block;
  width: 10px;
  height: 4px;
  margin-left: 7px;
  vertical-align: middle;
  filter: invert(64%) sepia(97%) saturate(4062%) hue-rotate(198deg) brightness(107%) contrast(91%);
}
.header_bg ul.menu > li.submenu:hover > a::after {
  filter: invert(64%) sepia(97%) saturate(4062%) hue-rotate(198deg) brightness(107%) contrast(91%);
}
.header_bg ul.menu > li:hover > a {
  color: #c4ddff;
}
.header_bg ul.menu > li.submenu:hover > a::after {
  filter: invert(31%) sepia(30%) saturate(4062%) hue-rotate(198deg) brightness(144%) contrast(119%);
}
.header_bg ul.menu > li.submenu > a::after {
  filter: none;
}
#main-menu {
  z-index: 999;
}
#main-menu .toggler {
  display: none;
}
#mobile-menu-toggler {
  float: none;
  margin: 0;
  padding: 0;
  border-width: 0;
  border-radius: 0;
  top: -8px;
  left: 6px;
  transition: all 0.3s linear;
  transition: all 0.3s linear;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  position: relative;
  display: inline-block;
}
.navbar-toggle .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.header.header_bg .navbar-toggle .icon-bar {
  background: #000000;
}
.navbar-toggle .icon-bar {
  width: 25px;
  margin: 0px;
  margin-bottom: 5px;
  margin-left: 0;
  background: #3977c8;
  border-radius: 0;
  display: block;
  height: 2px;
  transition: all 0.3s;
  transition: all 0.3s;
}
.header_bg .navbar-toggle .icon-bar {
  background: #ffffff;
}
.navbar-toggle .icon-bar:last-child {
  margin-bottom: 0px;
}
.navbar-toggle.navOpen .icon-bar {
  position: absolute;
  top: 0px;
  left: -10px;
  -webkit-transform-origin: center;
  transform-origin: center;
  background: #3977c8;
}
.navbar-toggle.navOpen .icon-bar:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.navbar-toggle.navOpen .icon-bar:nth-child(3) {
  opacity: 0;
}
.navbar-toggle.navOpen .icon-bar:nth-child(4) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: -4px;
}

.cart {
  display: block;
  position: relative;
  width: 18px;
  height: 18px;
  margin-right: 24px;
  cursor: pointer;
}
.cart::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(/imgs/vectors/shopcart.svg) 00 no-repeat;
}
.cart .in-cart {
  display: inline-block;
  position: absolute;
  background: #5097f4;
  
  display: flex;
  justify-content: center;
  align-items: center;
  width: 14px;
  height: 13px;
  border-radius: 100%;
  top: -9px;
  right: -6px;
  font-weight: 500;
  font-size: 8px;
  line-height: 11px;
  color: #ffffff;
  text-align: center;
}
.cart:hover::after {
  color: #ffffff;
}
.cart .in-cart.new {
  background: #e10a0a;
}

.header_bg .profile-info:hover > .icon::before,
.header_bg .cart:hover::before {
  filter: invert(31%) sepia(30%) saturate(4062%) hue-rotate(198deg) brightness(144%) contrast(119%);
}
.profile-info {
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-info > .icon {
  
  position: relative;
  display: block;
  
  width: 15px;
  height: 18px;
  cursor: pointer;
}
.profile-info > .icon::before {
  content: "";
  position: relative;
  display: block;
  background: url(/imgs/vectors/user-icon.svg) 00 no-repeat;
  width: 15px;
  height: 18px;
  cursor: pointer;
}
.profile-info .note-count {
  
  position: absolute;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 2px;
  
  width: 14px;
  height: 13px;
  background: #5097f4;
  font-weight: bold;
  font-size: 8px;
  line-height: 9px;
  text-align: center;
  top: -9px;
  right: -6px;
  color: #ffffff;
  border-radius: 100%;
  flex: 0 0 auto;
}
.profile-info.new .note-count {
  display: flex;
  background: #e10a0a;
}
.profile-info .profile-menu .alerts-link {
  display: none;
}
.profile-info.new .profile-menu .alerts-link {
  display: block;
}
.profile-info .profile-menu .alerts-link > a {
  display: flex;
  gap: 8px;
}
.profile-info .profile-menu .alerts-link .note-count {
  position: relative;
  width: 16px;
  height: 16px;
  top: unset;
  right: unset;
  font-size: 10px;
  line-height: 12px;
}
.profile-tile {
  position: absolute;
  bottom: -20px;
  right: 20px;
  opacity: 0;
  visibility: hidden;
  padding-top: 20px;
  max-width: 190px;
  width: 100%;
  min-height: 205px;
  height: 100%;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  transition: 0.3s;
  transition-timing-function: cubic-bezier(0.58, 0.3, 0.005, 1);
  -o-transition-timing-function: cubic-bezier(0.58, 0.3, 0.005, 1);
  transition-timing-function: cubic-bezier(0.58, 0.3, 0.005, 1);
}
.profile-tile .profile-box {
  display: block;
  position: relative;
  background: #f8f9ff;
  backdrop-filter: blur(4px);
  border-radius: 10px;
  padding: 16px;
  font-weight: 300;
  font-size: 12px;
  line-height: 14px;
}
.profile-tile .profile-box > span label {
  margin-bottom: 10px;
  font-size: 16px;
}
header .profile-box {
  box-shadow: 0px 4px 20px rgb(83 93 150 / 10%);
}
.profile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.profile-menu li {
  padding: 7px;
}
.profile-box a {
  display: block;
  color: #262b43;
}
.profile-box > span {
  display: block;
  text-align: center;
}
.profile-box .cross-toggle {
  position: absolute;
  width: 13px;
  height: 13px;
  right: 8px;
  top: 8px;
}
.profile-box .portrait {
  display: block;
  width: 71px;
  height: 71px;
  background: url(/imgs/header/user-pic.jpg) 00 no-repeat;
  background-size: contain;
  margin: auto;
  margin-bottom: 16px;
  border-radius: 50%;
}
.profile-box li:hover {
  background: #ebeff3;
  border-radius: 5px;
}
.profile-box li a:hover {
  color: inherit;
}
.profile-box li a:focus,
.profile-box li a:target {
  text-decoration: none;
}
.profile-info:hover .profile-tile {
  opacity: 0.95;
  visibility: visible;
  bottom: 22px;
}

.header_bg .profile-info > .icon::before,
.header_bg .cart::before {
  filter: none;
}

.profile-info > .icon::before,
.cart::before,
.profile-info:hover > .icon::before,
.cart:hover::before {
  filter: invert(52%) sepia(62%) saturate(524%) hue-rotate(176deg) brightness(96%) contrast(99%);
}

.wrapper {
  padding: 56px 0;
}
#content > .main {
  padding-top: 110px;
  padding-bottom: 40px;
}
#content {
  min-height: calc(100vh - 670px);
}

.article {
  max-width: 1024px;
}
.article:not(:first-child) {
  margin-top: 20px;
}
.article .article-content,
.article .article-content p,
.article .article-content div,
.article .article-content li,
.article .article-content .prof-table td {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: #222222;
}
.article .article-content p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: #222222;
  margin: 0 !important;
  margin-bottom: 1.08565rem !important;
}
.article .article-content img {
  filter: drop-shadow(0px 4px 20px rgba(83, 93, 150, 0.1));
}
.article .article-content .prof-table {
  border-radius: 10px !important;
  border: 1px solid rgb(156, 187, 227) !important;
  overflow: auto !important;
  line-height: 0;
}
.article .article-content .prof-table > table {
  width: 100% !important;
  border-collapse: collapse !important;
  background: white !important;
  vertical-align: top !important;
  border: none !important;
  border-radius: 10px !important;
  margin: 0 !important;
}
.article .article-content .prof-table > table > thead > tr > th,
.article .article-content .prof-table.first-td-header > table > tbody > tr:first-child > td {
  text-align: center !important;
  padding: 10px !important;
  background: #e0edff !important;
  border-bottom: 1px solid rgb(156, 187, 227) !important;
  border-color: rgb(156, 187, 227) !important;
  font-weight: 600 !important;
  border-top: 0 !important;
}
.article .article-content .prof-table > table > thead > tr > th:nth-child(1) {
  width: 80px !important;
  border-top-left-radius: 10px !important;
  border-right: 1px solid rgb(156, 187, 227) !important;
  border-color: rgb(156, 187, 227) !important;
  border-left: 0 !important;
}

.article .article-content .prof-table > table > thead > tr > th:last-child {
  
  border-top-right-radius: 10px !important;
  border-color: rgb(156, 187, 227) !important;
  border-right: 0 !important;
}
.article .article-content .prof-table > table > tbody > tr > td {
  border-bottom: 1px solid rgb(156, 187, 227) !important;
  border-top: 0 !important;
  padding: 10px;
  border-color: rgb(156, 187, 227) !important;
}
.article .article-content .prof-table > table > tbody > tr > td em {
  background: #d6e7f9 none repeat 0 0 !important;
  color: Black !important;
  font-style: normal !important;
}
.article .article-content .prof-table > table > tbody > tr > td:last-child {
  border-right: 0 !important;
}
.article .article-content .prof-table > table > tbody > tr > td:nth-child(1) {
  border-right: 1px solid rgb(156, 187, 227) !important;
  border-left: 0 !important;
  border-color: rgb(156, 187, 227) !important;
}
.article .article-content .prof-table > table > tbody > tr > td:nth-child(2) {
  border-right: 1px solid rgb(156, 187, 227) !important;
  border-color: rgb(156, 187, 227) !important;
}
.article .article-content .prof-table > table > tbody > tr > td:nth-child(3) {
  border-right: 1px solid rgb(156, 187, 227) !important;
  border-color: rgb(156, 187, 227) !important;
}
.article .article-content .prof-table > table > tbody > tr > td:nth-child(4) {
  border-color: rgb(156, 187, 227) !important;
}
.article .article-content .prof-table > table > tbody > tr:last-child > td {
  border-bottom: none !important;
  border-color: rgb(156, 187, 227) !important;
}
.article .article-content .prof-table > table > tbody > tr > td.nodata {
  text-align: center !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  border: none !important;
  border-color: rgb(156, 187, 227) !important;
}
.page-contact-form {
  padding-top: 0;
}
#content > .main h1 {
  font-family: "MagistralWebBook";
  font-weight: 400;
  font-size: 32px;
  line-height: 39px;
  color: #19297c;
}
#content > .main h2 {
  font-family: "Inter";
  color: #19297c;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
}
#content > .main h2.h2-border {
  font-family: "MagistralWebBook";
  font-weight: 400;
  font-size: 48px;
  line-height: 55px;
  color: #19297c;
  max-width: 1024px;
}
.article .article-content a {
  color: #3977c8;
}
.article .article-content a:hover {
  color: #5097f4;
  text-decoration: underline;
}
#content > .main .breadcrumb {
  background-color: transparent;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  padding: 0;
  color: #3977c8;
}
#section-title {
  padding-top: 0;
  color: #ffffff;
  min-height: 100vh;
}
#section-title.wrapper {
  margin-bottom: 58px;
}
#section-title .background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
#section-title .background img,
#section-title .background video {
  width: 100%;
  height: 100%;
}
#section-title .background video {
  position: absolute;
  left: 0;
  top: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
#section-title .background.animate-scale img {
  -webkit-animation: pulsing 20s infinite;
  animation: pulsing 20s infinite;
}
@-webkit-keyframes pulsing {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@keyframes pulsing {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
#section-title .section-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 99;
  background: rgba(23, 26, 99, 0.3);
}
#section-title .section-content .container {
  
}
#section-title .title-info {
  position: absolute;
  top: 30%;
}
.title,
.selection-menu_container > .title,
.prog-block .name a,
.prog-block > .name div {
  position: relative;
  font-family: "Inter";
  font-weight: 400;
  font-size: 48px;
  line-height: 55px;
  color: #19297c;
  margin-bottom: 40px;
  
}
.title.section-title,
.selection-menu_container > .title,
.prog-block .name a,
.prog-block .name > div {
  font-family: "MagistralWebBook";
}
.title.big {
  font-weight: 400;
  font-size: 66px;
  line-height: 69px;
  margin-bottom: 40px;
  color: #ffffff;
}
.text.medium {
  font-weight: 400;
  font-size: 32px;
  line-height: 37px;
  max-width: 550px;
}
.btn-program {
  display: inline-block;
  padding: 20.1558px 52px;
  gap: 0.75px;
  background: linear-gradient(91.89deg, #3977c8 0.48%, #5097f4 99.67%);
  box-shadow: 0px 4px 0px rgba(33, 74, 130, 0.55);
  border-radius: 80px;
  margin-top: 72px;
  text-align: center;
  font-weight: 500;
  font-size: 22.3953px;
  line-height: 26px;
  color: #ffffff !important;
}
.btn-program:hover,
.btn-program:focus,
.btn-program:target {
  color: #ffffff !important;
  text-decoration: none;
}
.btn-program:hover {
  background: linear-gradient(91.89deg, #679de2 0.48%, #8fbffe 99.67%);
  text-decoration: none;
}
.btn-blue,
.btn-pink,
.silver-popup.filter-menu .btn {
  display: inline-block;
  background: #5097f4;
  border-radius: 20px;
  border: none;
  color: #fff;
  transition: linear 0.2s;
  padding: 10px 16px;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  cursor: pointer;
  user-select: none;
}
.btn-blue span {
  color: #fff;
  text-decoration: none;
}
.btn-pink,
.btn-pink.disabled:hover,
.btn-pink.disabled:focus,
.btn-pink.disabled:target {
  background: #f99;
}
.btn-pink:hover,
.btn-pink:focus,
.btn-pink:target {
  background: #f00;
  color: #fff;
}
.btn-blue:hover,
.btn-blue:focus,
.btn-blue:target,
.silver-popup.filter-menu .btn:hover,
.silver-popup.filter-menu .btn:focus,
.silver-popup.filter-menu .btn:target {
  
  background: #3977c8;
  color: #fff;
}
.btn-blue:active,
.silver-popup.filter-menu .btn:active {
  background: #5a60f1;
  color: #fff;
}
.btn-blue.disabled,
.silver-popup.filter-menu .btn.disabled,
.btn-pink.disabled {
  opacity: 0.5;
  cursor: default;
}
.btn-blue.disabled:hover,
.btn-blue.disabled:focus,
.btn-blue.disabled:target,
.silver-popup.filter-menu .btn.disabled:hover,
.silver-popup.filter-menu .btn.disabled:focus,
.silver-popup.filter-menu .btn.disabled:target {
  background: #5097f4;
}
.btn-blue.hidden,
.btn-pink.hidden {
  display: none;
}
.btn-white {
  display: flex;
  background: transparent;
  border-radius: 20px;
  border: 1px solid #5097f4;
  background: #fff;
  color: #5097f4;
  transition: linear 0.2s;
  padding: 6px 10px;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  cursor: pointer;
  user-select: none;
  gap: 4px;
}
.btn-white::after {
  content: "";
  display: block;
  background-image: url(/imgs/vectors/download-blue.svg);
  width: 14px;
  height: 14px;
  background-size: contain !important;
  flex: 0 0 auto;
  transition: linear 0.2s;
}
.btn-white:hover {
  
  background: #fff;
  color: #3977c8;
  border-color: #3977c8;
}
.btn-white:focus,
.btn-white:target {
  border: 1px solid #5097f4;
  background: #fff;
  color: #5097f4;
}
.btn-white:hover:after {
  background-image: url(/imgs/vectors/download-blueHover.svg);
  
}
.btn-white:active {
  background: #fff;
  color: #5a60f1;
  border-color: #5a60f1;
}
.btn-white:active::after {
  background-image: url(/imgs/vectors/download-blueActive.svg);
  
}
.cross-icon {
  display: block;
  background: url(/imgs/vectors/cross-delete.svg) 00 no-repeat;
  background-size: contain;
  width: 11px;
  height: 11px;
  margin-left: 5px;
  cursor: pointer;
}
.info-row {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 40px 0;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  background: rgba(34, 26, 83, 0.09);
  backdrop-filter: blur(7.55515px);
}
.info-row .container {
  padding: 0 180px;
}
.short-info {
  position: relative;
  max-width: 100%;
  line-height: 1.4;
}
.short-info .item > div {
  display: flex;
  max-width: 380px;
  align-items: center;
}
.short-info div img {
  margin-right: 16px;
  max-height: 56px;
  width: 50px;
  height: 56px;
  flex: 0 0 auto;
}
.short-info .info-1 > strong {
  color: #5097f4;
  font-weight: 500;
  font-size: 67.5653px;
  line-height: 56px;
  margin-right: 16px;
}

#section-2.wrapper {
  padding-top: 0;
}
#popular-programs.wrapper {
  padding-top: 0;
}
.program {
  position: relative;
  width: 49%;
  color: #262b43;
  font-weight: 500;
  margin-bottom: 22px;
  border-radius: 20px;
  filter: drop-shadow(0px 4px 20px rgba(83, 93, 150, 0.1));
  transition: 0.3s linear;
}
.program:nth-child(odd) {
  margin-right: 15px;
}
.program:hover {
  color: inherit;
  text-decoration: none;
  filter: drop-shadow(0px 4px 20px rgba(83, 93, 150, 0.4));
}
.program.disabled,
.program.disabled:hover {
  -webkit-filter: grayscale(80%);
  -moz-filter: grayscale(80%);
  -ms-filter: grayscale(80%);
  -o-filter: grayscale(80%);
  filter: grayscale(80%);
  cursor: not-allowed;
}
.program:target,
.program:focus {
  text-decoration: none;
}

.program > .block {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
}
.program.disabled > .block {
  opacity: 0.4;
  filter: grayscale(100%);
}
.program > .block .half-img {
  width: 100%;
  height: 184px;
  background-size: cover !important;
  margin-bottom: 28px;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  transition: all 0.5s ease-out;
}
.program:not(.disabled):hover > .block .half-img {
  transform: scale(1.1);
}
.program .block > .half-text {
  padding: 0 24px 28px 24px;
}
.program .block > .half-text .name {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #19297c;
  width: 100%;
}
.program .block > .half-text .org {
  margin: 22px 0;
  color: #19297c;
}
.program .block > .half-text .org > .orgs {
  margin-top: 12px;
  margin-bottom: 24px;
  filter: none;
}
.program .block > .half-text .org > .orgs img {
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -o-filter: grayscale(0%);
}
.program .block > .half-text .org > .orgs .align-top {
  align-self: flex-start;
}
.program .block > .half-text .org > .orgs img:not(:last-child) {
  margin-right: 16px;
}
.program .block .term {
  margin-bottom: 8px;
}
.program .block .term,
.program .block .platforms {
  display: flex;
  align-items: center;
  line-height: 20px;
}
.program .block .term::before {
  content: "";
  display: block;
  background: url(/imgs/vectors/clock.svg) 00 no-repeat;
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.program .block .platforms::before {
  content: "";
  display: block;
  background: url(/imgs/vectors/heli.svg) 00 no-repeat;
  width: 25px;
  height: 18px;
  margin-right: 8px;
}
.program .block .price {
  color: #3977c8;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  align-self: flex-end;
}
.program .block > .pics {
  display: block;
  position: absolute;
  right: 30px;
  top: 50px;
  text-align: center;
}
.more {
  text-align: center;
  margin-top: 40px;
}
#section-2 .more,
#section-types .more,
#popular-programs .more {
  margin-top: 18px;
}
.btn {
  display: inline-block;
  background: transparent;
  border: 2px solid #3977c8;
  border-radius: 80px;
  font-weight: 500;
  font-size: 20px;
  line-height: 23px;
  color: #3977c8;
  padding: 17px 57px;
  text-align: center;
}
.btn:focus,
.btn:target {
  color: #3977c8;
  text-decoration: none;
}
.btn:hover {
  background: #3977c8;
  color: #ffffff;
}
.silver-uploader .btn {
  font-size: 12px;
  line-height: 14px;
  padding: 8px 24px;
  margin-left: 12px;
  min-width: 130px;
}
.silver-uploader > table {
  width: 100%;
}
.silver-uploader > table td {
  position: relative;
}
.silver-uploader {
  position: relative;
}
.silver-uploader .loader-holder {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 10px;
}
.silver-uploader .loader-holder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: #ffffff75;
  gap: 4px;
  line-height: 1;
}

#section-types {
  background: #ffffff;
}
#section-types .types {
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2%;
}
.object-holder {
  max-height: 495px;
  max-width: 28%;
}
.learning-object {
  display: block;
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  width: 32%;
  padding: 24px;
  color: #000000;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 22px;
  box-shadow: 0px 4px 20px rgba(83, 93, 150, 0.15);
}
.learning-object .obj-logo {
  display: flex;
  position: relative;
  align-items: center;
  height: 36px;
}
.learning-object .obj-logo img {
  max-height: 36px;
}
.learning-object .obj-img {
  margin: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  height: 160px;
  width: 300px;
  background-position: center center !important;
  background-size: contain !important;
  transition: all 0.5s ease-out;
}
.learning-object:hover .obj-img {
  transform: scale(1.1);
}
.learning-object .obj-img img {
  height: 200px;
  width: 330px;
}
.learning-object .name {
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  color: #19297c !important;
}
.learning-object .learning-info {
  
  font-family: "Inter";
}
.learning-object .name,
.learning-object .learning-info span:not(:last-child) {
  display: block;
  margin-bottom: 8px;
}
.learning-object .learning-info span b {
  margin-right: 2px;
}
.btn.little {
  padding: 8px 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  border: 1px solid #3977c8;
  border-radius: 10px;
}

.documents .item > .flex-row {
  align-items: flex-start;
}
.documents .text {
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  color: #262b43 !important;
  width: 49%;
}
.documents .picture {
  max-width: 49%;
}
.documents .owl-prev img,
.documents .owl-next img {
  width: 32px;
  height: 32px;
}
.documents .owl-prev {
  margin-right: 16px !important;
}
.documents .owl-next {
  margin-left: 16px !important;
}

#section-partners {
  background: #ffffff;
}
#section-partners .container > span {
  display: block;
  max-width: 816px;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
}
#section-partners .partners {
  margin-top: 40px;
}
.partners .logo {
  display: flex;
  align-items: center;
  
  height: 80px;
  justify-content: flex-start;
  
}
.partners .logo:hover {
  filter: saturate(1);
}
.partners .logo img {
  max-height: 80px;
  object-fit: scale-down;
}

#section-why .item-holder {
  display: flex;
  position: relative;
  width: 32%;
}
#section-why .item-holder .item-why {
  
  position: relative;
  background: linear-gradient(137.69deg, rgb(57 119 200 / 80%) 4.08%, rgb(79 150 243 / 80%) 96.28%);
  border-radius: 20px;
  filter: drop-shadow(0px 4px 5px rgba(184, 189, 219, 0.35));
  height: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tiles {
  align-items: stretch;
}
.item-why .picture {
  position: relative;
  width: 100%;
  height: 284px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  flex: 0 0 auto;
}
.item-why .img {
  background-position: bottom !important;
  width: 100%;
  height: 110%;
  position: absolute;
  bottom: 0;
  background-size: contain !important;
}

.item-why .text {
  padding: 14px 24px;
  background: rgb(40 75 157 / 50%);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.item-why .text {
  display: flex;
  position: relative;
  padding: 14px 24px;
  background: rgb(40 75 157 / 50%);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}
.item-why .why-info {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  color: #ffffff;
  margin-bottom: 26px;
  min-height: 84px;
}
.item-why .btn.little {
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 80px;
  border-color: #ffffff;
}
.item-why .btn.little::after {
  content: "";
  display: inline-block;
  background: url(/imgs/vectors/arrow-right-white.svg) 00 no-repeat;
  width: 20px;
  height: 10px;
  margin-left: 12px;
  background-size: cover !important;
}
.item-why .btn.little:hover {
  background-color: #ffffff;
  color: #3977c8;
}
.item-why .btn.little:hover::after {
  background: url(/imgs/vectors/arrow-right-blue.svg) 00 no-repeat;
}

#section-reviews {
  overflow: hidden;
  background: #ffffff;
}
#section-reviews .title {
  margin-bottom: 65px;
}
.review-holder {
  background: #ffffff;
  border-radius: 20px;
  max-width: 848px;
  width: 100%;
  
  filter: drop-shadow(0px 10px 10px rgba(83, 93, 150, 0.1));
  margin-bottom: 26px;
  margin-left: 20px;
}
.review {
  padding: 24px;
}
.review .reviewer {
  margin-bottom: 14px;
}
.review .picture {
  display: block;
  width: 119px;
  height: 119px;
  margin-top: -59px;
  margin-right: 20px;
  border-radius: 50%;
  border: 5px solid #ffffff;
  background: #ffffff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}
.review .portrait {
  background-position: center center !important;
  background-size: contain !important;
  width: 110px;
  height: 110px;
  border-radius: 50%;
}
.review .img-1 {
  background: url(/imgs/header/user-pic.jpg) 00 no-repeat;
}
.review .img-2 {
  background: url(/imgs/reviews/gozling-1.jpeg) 00 no-repeat;
}
.review .name,
.review > span {
  color: #19297c !important;
  font-weight: 500;
  font-size: 20px;
  line-height: 23px;
}
.review > span {
  display: block;
  max-height: 50px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 16px;
}
.review .name {
  margin-top: -10px;
  margin-bottom: 5px;
}
.review .name span {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #3977c8 !important;
  margin-top: 6px;
}
.review > .text {
  margin-bottom: 32px;
  overflow: hidden;
  min-height: 176px;
  height: 100%;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}
.review .review-info {
  border-top: 1px solid #262b43;
  padding-top: 24px;
}
.review .review-info > span {
  color: #3977c8 !important;
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
}
.star {
  display: block;
  background: url(/imgs/vectors/star-blue.svg) 00 no-repeat;
  background-position: center center;
  background-size: contain;
  width: 25px;
  height: 25px;
}
.star.empty {
  opacity: 0.4;
}
.star:not(:last-child) {
  margin-right: 6px;
}
.reviews-container .owl-carousel .owl-stage-outer {
  overflow: hidden;
  padding-top: 32px;
}
.reviews-container .owl-carousel .owl-stage {
  padding-left: 0px !important;
}
#slider-counter {
  font-weight: 500;
  font-size: 20px;
  line-height: 23px;
  color: #19297c;
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translate(-50%, -50%);
}
.owl-prev img {
  transform: rotate(180deg);
}
.reviews-container .owl-theme .owl-nav {
  margin-top: 40px;
  display: block !important;
}
.owl-theme .owl-nav [class*="owl-"] {
  opacity: 0.4;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
  opacity: 1;
  background: none;
}
.reviews-container .owl-prev {
  margin-right: 80px !important;
}
.reviews-container .owl-next {
  margin-left: 80px !important;
}

.questions-container {
  border: 1px solid #262b4366;
  border-right: none;
  border-left: none;
}
.FAQ .question {
  position: relative;
  padding: 20px 0;
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  color: #262b43;
}
.FAQ .question:hover,
.question:focus {
  text-decoration: none;
  color: inherit;
}
.FAQ .question > span {
  margin-right: 46px;
}
.FAQ:not(:last-child) {
  border-bottom: 1px solid rgba(38, 43, 67, 0.4);
}
.FAQ .plus-toggler::before,
.plus-toggler::after {
  content: "";
  display: block;
  position: absolute;
  width: 32px;
  height: 2px;
  background: #19297c;
  text-align: center;
  right: 0;
  top: 50%;
}
.FAQ .plus-toggler::after {
  transform: rotate(90deg);
  width: 32px;
  margin-top: 1px;
  margin-left: 0;
}
.FAQ.expanded .plus-toggler::before {
  opacity: 0;
}
.FAQ.expanded .plus-toggler::after {
  transform: rotate(0deg);
  width: 32px;
  margin-top: 0;
  margin-left: 0;
}
.FAQ .answer {
  visibility: hidden;
  opacity: 0;
  font-weight: 300;
  font-size: 24px;
  line-height: 28px;
  font-size: 18px;
  line-height: 22px;
  color: #262b43;
  height: 1px;
  overflow: hidden;
  transition: 0.2s;
  transition-timing-function: cubic-bezier(0.58, 0.3, 0.005, 1);
  -o-transition-timing-function: cubic-bezier(0.58, 0.3, 0.005, 1);
  transition-timing-function: cubic-bezier(0.58, 0.3, 0.005, 1);
}
.FAQ.expanded .answer {
  visibility: visible;
  opacity: 1;
  height: initial;
  overflow: initial;
  padding-bottom: 20px;
}
.FAQ.expanded .answer a {
  color: #3977c8;
}
.FAQ.expanded .answer a:hover {
  color: #5097f4;
}
.FAQ.expanded .answer span,
.FAQ.expanded .answer p {
  font-weight: 300;
}

#section-feedback.wrapper {
  padding-top: 0;
  padding-bottom: 0;
}
.feedback-box {
  padding: 40px 0 33px 24px;
  background: linear-gradient(101.12deg, #3977c8 0.26%, #4b90eb 100.85%);
  border-radius: 20px;
  color: #ffffff;
  margin-bottom: 56px;
}
.feedback-box .title {
  color: #ffffff;
  margin-bottom: 26px;
  margin-top: 0;
}
.form {
  width: 50%;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
}

.form .text {
  max-width: 500px;
  margin-bottom: 24px;
}
.form .field {
  margin-bottom: 16px;
  width: 100%;
}

.form .field.error input.name {
  border: none;
}
.form .feedback-form .loader-holder {
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100%;
  align-items: center;
  background: #ffffff3f;
  position: absolute;
  top: 0;
  left: 0;
}
.feedback-form .form-error {
  display: none;
  color: red;
  background: #fff;
  font-size: 12px;
  line-height: 16px;
  border-radius: 5px;
  padding: 4px 8px;
  text-align: center;
  margin-bottom: 10px;
  border: 1px solid red;
}
.feedback-form .form-error.active {
  display: block;
}
.small-fields .field {
  max-width: 49%;
}
.field input,
.field.big textarea {
  display: block;
  background: #ffffff;
  border-radius: 10px;
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #262b43;
  border: none;
  padding: 16px 24px;
  resize: none;
}
.field.error {
  border: 1px solid red;
  border-radius: 10px;
}
.field input:focus-visible,
.field.big textarea:focus-visible {
  outline: none;
  background: #e0edff;
}
.field input::placeholder {
  color: hsl(230, 28%, 21%);
}
.field input::placeholder,
.field.big textarea::placeholder {
  color: rgb(142, 142, 142);
}
.field.big textarea {
  min-height: 87px;
}
.field.big textarea::placeholder {
  color: #9ba0b6;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
}
.feedback-box .picture {
  display: block;
  background: url(/imgs/feedback/feedback-table.png) 00 no-repeat;
  background-position: center center;
  background-size: contain;
  width: 49%;
  height: 512px;
}
.form .personal-info {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #ffffff;
  opacity: 0.8;
  max-width: 306px;
}
.form .personal-info a {
  display: inline;
  text-decoration: underline;
  font-weight: 400;
  color: #d7e0fb;
}
.form .personal-info a:hover {
  
  color: #fff;
}
.form .feedback-success {
  font-size: 24px;
  line-height: 28px;
}
.btn-send a {
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: #ffffff;
  padding: 14px 80px;
  background: transparent;
  border-radius: 80px;
  border: 2px solid #ffffff;
  filter: drop-shadow(0px 4px 0px rgba(33, 74, 130, 0.1));
}
.btn-send a:hover {
  background: #fff;
  color: #3977c8;
  text-decoration: none;
}
.btn-send a:focus,
.btn-send a:target {
  text-decoration: none;
}
header,
.logo,
.btn.transparent,
.program .block,
.partners .logo,
.item-why .btn.little::after,
.plus-toggler::before,
.plus-toggler::after,
.btn-program,
.btn-send a,
.cart,
.profile-info,
header .search-menu .search-box {
  transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
}

.custom-combo {
  width: 100%;
  box-sizing: border-box;
  outline: none;
  font-family: inherit;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #262b43;
  min-height: 50px;
  transition: border-color 0.2s;
  position: relative;
  overflow: initial;
  padding: 0;
}
.custom-combo > .combo-container {
  background: #ffffff;
  border: 1px solid #e2e8f6;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 50px;
  padding: 12px 24px;
  cursor: pointer;
}
.custom-combo > .combo-container > .name {
  width: 100%;
  text-align: left;
  margin-right: 5px;
  text-shadow: none;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  user-select: none;
  height: initial;
}
.custom-combo > .combo-container > input {
  border: none;
  outline: none;
  background: transparent;
  margin: 0;
  height: 36px;
  width: 95%;
  padding: 0px;
  text-align: left;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
}
.custom-combo > .combo-dropdown {
  position: absolute;
  width: 100%;
  min-height: 200px;
  max-height: 300px;
  top: 38px;
  left: 0px;
  border-radius: 8px;
  background: white;
  box-shadow: -4px 5px 18px rgba(29, 42, 68, 0.13);
  transition: opacity 0.1s;
  transition: opacity 0.1s;
  box-sizing: border-box;
  outline: none;
  z-index: 999;
}
.custom-combo > .combo-dropdown > .combo-filter {
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 8px 8px 0 0;
  border: none;
  height: 48px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f1f1f5;
}
.custom-combo > .combo-dropdown > .combo-filter > input {
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-radius: 8px 8px 0 0;
  border: none;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  background: inherit;
  text-align: left;
  box-shadow: none;
  width: 100%;
}
.custom-combo > .combo-dropdown {
  z-index: 900;
}
.custom-combo > .combo-dropdown > .combo-filter:before {
  content: " ";
  width: 20px;
  display: inline-block;
  background: red;
}
.custom-combo > .combo-dropdown > .combo-items {
  width: 100%;
  max-height: 200px;
  overflow: auto;
  padding: 10px 0px;
  box-sizing: border-box;
  border-radius: 0 0 8px 8px;
  background: inherit;
}
.custom-combo > .combo-dropdown > .combo-items > .item {
  width: 100%;
  height: 34px;
  padding: 0px 20px;
  display: flex;
  align-items: center;
  background: inherit;
  color: #000;
  box-shadow: none;
  text-shadow: none;
  color: #556066;
  box-sizing: border-box;
  cursor: pointer;
  user-select: none;
  font-weight: normal;
  font-size: 14px;
  text-align: left;
}
.custom-combo > .combo-dropdown > .combo-items > .item:hover {
  background: #ebeff3;
  color: #262b43;
}
.custom-combo > .combo-dropdown > .combo-items > .item > span {
  display: block;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  box-sizing: border-box;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
}
.custom-combo > .combo-container > .carret {
  background: url(/imgs/vectors/arrow.svg) 0 0 no-repeat;
  width: 12px;
  height: 7px;
  margin-left: 11px;
  position: relative;
}
.custom-combo.validate-error > .combo-container {
  border-color: red;
}

footer {
  position: relative;
  background: #19297c;
  padding: 64px 0 32px 0;
}
.footer-menu {
  align-items: flex-start;
  position: relative;
}
.footer-info {
  margin-right: 66px;
}
.footer-menu ul.smallest-menu {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #c9c9c9;
  max-width: 260px;
  margin: 0;
  margin-top: 45px;
}
.footer-menu ul.smallest-menu:last-child {
  margin-top: 12px;
}
.footer-info > ul:last-child {
  margin-top: 0;
}
.footer-menu ul.smallest-menu a {
  color: #c9c9c9;
}
.footer-menu ul.smallest-menu a:hover {
  color: #c9c9c9;
  text-decoration: underline;
}
.footer-menu ul {
  list-style: none;
  color: #ffffff;
  padding: 0;
}
.footer-menu ul {
  line-height: 19px;
  margin: 0;
}
.footer-menu ul.normal-menu label,
.footer-menu ul.contact-menu li {
  line-height: 18px;
}
.footer-menu ul.normal-menu label,
.footer-menu ul.contact-menu a {
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 24px;
}
.footer-menu ul.normal-menu li:not(:last-child) {
  margin-bottom: 16px;
}
.footer-menu ul.smallest-menu li:not(:last-child) {
  margin-bottom: 12px;
}
.footer-menu ul.normal-menu li:first-child {
  margin: 0;
}
.footer-menu .flex-row.big-col {
  min-height: 482px;
  height: 100%;
  max-width: 990px;
  align-items: flex-start;
  font-size: 14px;
}
.footer-menu .flex-row.big-col .flex-column:nth-child(n + 5) {
  margin-top: 50px;
}
.footer-menu .flex-row.big-col .flex-column:nth-child(8) {
  margin-top: 50px;
}
.footer-menu .flex-row.big-col .flex-column:last-child {
  text-align: end;
}
.footer-menu .flex-row.big-col .flex-column.col-1,
.footer-menu .flex-row.big-col .flex-column.col-5 {
  max-width: 200px;
  width: 100%;
  margin-right: 89px;
}
.footer-menu .flex-row.big-col .flex-column.col-2,
.footer-menu .flex-row.big-col .flex-column.col-6 {
  max-width: 265px;
  width: 100%;
  margin-right: 32px;
}
.block-alert-action .btn {
  border: 1px solid #ccc;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
  color: #333;
}
.block-alert-action .btn:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.footer-menu .flex-row.big-col .flex-column.col-3,
.footer-menu .flex-row.big-col .flex-column.col-7 {
  max-width: 140px;
  width: 100%;
  margin-right: 32px;
}
.footer-menu .flex-row.big-col .flex-column.col-4,
.footer-menu .flex-row.big-col .flex-column.col-8 {
  max-width: 200px;
  width: 100%;
}
.footer-menu .flex-row.big-col .flex-column.col-8 {
  position: absolute;
  left: 0;
  bottom: 50px;
  margin: 0;
  text-align: left;
}
.footer-menu ul.contact-menu li:first-child {
  margin-bottom: 13px;
}
.footer-menu ul.contact-menu li:nth-child(2) {
  margin-bottom: 12px;
}
.footer-menu ul li a:hover,
.footer-menu ul li a:focus {
  color: #ffffff;
  text-decoration: underline;
}
.footer-links {
  border-top: 1px solid #a8a8a8;
  padding-top: 40px;
  line-height: 18px;
  color: rgb(255 255 255 / 70%);
  
  
}
.footer-links * {
  color: rgb(255 255 255 / 70%);
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links ul li {
  
  
}
.footer-links ul li a:hover {
  text-decoration: underline;
}
.footer-links .trade-mark {
  display: block;
  margin-top: 33px;
}
.footer-links a:hover,
.footer-links a:focus {
  color: inherit;
}
footer .social-links a.social_link {
  margin-bottom: 12px;
}
footer .social-links .social_link span {
  display: none;
}
footer .social-links .social_link i {
  width: 25px;
  height: 25px;
  position: relative;
  display: block;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
footer .social-links .social_link i::before {
  
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 22px;
}
footer .social-links > a.flex-row {
  gap: 4px;
  width: fit-content;
  color: rgb(255 255 255 / 70%);
  margin-bottom: 12px;
}

footer .social-links > .flex-row:hover .text-link,
footer .social-links > .flex-row:focus .text-link {
  text-decoration: underline;
}
footer .social-links > .flex-row:hover,
footer .social-links > .flex-row:focus {
  text-decoration: none;
  color: #fff;
}
footer .social-links .text-link {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.1;
}
.fab {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}


.breadcrumb {
  background-color: transparent;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  padding: 0;
  color: #3977c8;
}
.breadcrumb a {
  color: #3977c8;
}
.breadcrumb a:hover {
  color: #5097f4;
  text-decoration: none;
}
.timemark {
  margin-bottom: 40px;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #2a2931;
}
.date i {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  background-color: #3977c8;
  font-style: normal !important;
  padding: 4px 12px;
  border-radius: 16px;
}
.download .date i {
  font-size: 10px;
  line-height: 10px;
  font-weight: 400;
  padding: 2px 6px;
}
.page-text .text {
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
}
.download .date .dwnld-c {
  display: block;
  width: fit-content;
  margin-top: 4px;
  font-size: 10px !important;
  line-height: 10px;
}
.download ins.date {
  margin-top: 5px;
  color: #a5a4a4;
  text-shadow: none;
  display: block;
  text-decoration: none;
  margin-top: 5px;
  font-size: 10px !important;
  line-height: 10px;
}
.download .fname {
  color: #3977c8;
  font-size: 12px;
  line-height: 16px;
}
.article-files {
  display: inline-block;
  width: 100%;
  margin-top: 10px;
}
.article-files .download img {
  float: left;
  margin-right: 16px;
}
.article-files .download ins.date {
  margin-top: 5px;
  color: #a5a4a4;
  text-shadow: none;
  display: block;
  text-decoration: none;
  margin-top: 5px;
  font-size: 10px !important;
  line-height: 10px;
}
.article-files .download .date .dwnld-c {
  width: 100%;
}


.program-card.wrapper {
  padding-top: 100px;
}
.program-card section {
  padding-top: 60px;
  padding-bottom: 56px;
}
.program-card .page-content section:first-child {
  padding-top: 0;
}
.program-card section:nth-child(2n) {
  background: #fff;
}
.program-card section:last-child {
  padding-top: 20px;
}
.program-card section.normal-background {
  background-color: #f5f6fb;
}
.program-card section.normal-background.plan {
  padding-top: 0;
}
.program-card.program-unti .program-title .title.section-title{
  font-size: 44px;
}
.program-title {
  width: 100%;
  color: #3977c8;
  font-weight: 500;
  font-size: 32px;
  line-height: 50px;
  margin-bottom: 24px;
}
.program-title .text {
  width: 56%;
}
.program-card .program-title .title.section-title,
.program-card .prog-block .title.section-title {
  position: relative;
  margin: 0;
  color: #19297c;
}
.program-title .picture {
  display: block;
  background: url(/imgs/Page_program/plane.svg) 00 no-repeat;
  width: 49%;
  height: 133px;
  background-size: contain;
  background-position: center center;
  margin-left: 16px;
  align-self: baseline;
}
.prog-picture {
  display: block;
  position: relative;
  width: 100%;
  height: 350px;
  border-radius: 20px;
  margin-bottom: 50px;
  overflow: hidden;
}
.prog-picture .picture {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(/imgs/Page_program/program-background.png) 00 no-repeat;
  background-position: center center !important;
  background-size: cover !important;
  transition: all 0.5s ease-out;
  &.dji{
    background: url(/UserFiles/ContentFiles/20240505_131954.jpg) 00 no-repeat;
  }
  &.gemini{
    background: url(/imgs/Page_program/Airbrush-Image-Enhancer.jpg) 00 no-repeat;
    background: url(/imgs/Page_program/programPicField.jpg) 00 no-repeat;
  }
  &.gemini-2{
    background: url(/imgs/Page_program/gemini-2.jpg) 00 no-repeat;
  }
}
.prog-picture.zoom-in .picture,
.prog-picture:hover .picture {
  -webkit-transform: scale(1.1);
}
.prog-picture .prog-button {
  position: absolute;
  left: 48px;
  bottom: 40px;
}
.prog-picture .btn-program {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  padding: 12px 24px;
}
.program-card .prog-info {
  align-items: flex-start;
  gap: 16px;
}
.program-card .prog-info .info-section {
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  color: #262b43;
  max-width: 450px;
  font-size: 18px;
  line-height: 22px;
}
.program-card .prog-info .info-section div:first-child {
  display: flex;
  gap: 0 16px;
  font-style: normal;
  min-height: 72px;
  font-weight: 600;
  font-size: 32px;
  line-height: 32px;
  color: #3977c8;
  margin-bottom: 20px;
  min-height: 66px;
  font-size: 26px;
  line-height: 28px;
  margin-bottom: 10px;
}
.program-card .prog-info .info-section.qualification div:first-child::before {
  content: "";
  display: block;
  background: url(/imgs/vectors/medal-blue.svg) 00 no-repeat;
  background-size: contain;
  width: 29px;
  height: 40px;
}
.program-card .prog-info .info-section.docs div:first-child::before {
  content: "";
  background: url(/imgs/vectors/diploma-blue.svg) 00 no-repeat;
  background-size: contain;
  width: 51px;
  height: 41px;
}
.program-card .prog-info .info-section.study-time div:first-child::before {
  content: "";
  background: url(/imgs/vectors/clock-blue.svg) 00 no-repeat;
  background-size: contain;
  width: 41px;
  height: 41px;
}
.program-card .prog-info .info-section.study-time div:first-child::before,
.program-card .prog-info .info-section.qualification div:first-child::before,
.program-card .prog-info .info-section.docs div:first-child::before {
  flex: 0 0 auto;
}
.program-card .prog-info .info-section.docs ul {
  padding-inline-start: 20px;
}
.program-card .prog-info .info-section.docs ul li:not(:last-child) {
  margin-bottom: 16px;
  margin-bottom: 4px;
}
.prog-rows {
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  color: #262b43;
}
.prog-rows span {
  display: block;
  color: #3977c8;
}
.prog-rows div:not(:last-child) {
  margin-bottom: 16px;
}

.prog-container {
  margin-bottom: 40px;
}
.prog-block .name {
  margin-bottom: 16px;
}
.prog-block {
  
  
  font-weight: 400;
  font-size: 40px;
  line-height: 44px;
  color: #262b43;
}
.prog-block.opened {
  padding-bottom: 0;
}
.prog-block .prog-content {
  font-size: 24px;
  line-height: 28px;
  font-size: 18px;
  line-height: 22px;
}
.prog-block .name div::after {
  display: none;
}
.prog-block .name a:hover,
.prog-block .name a:focus {
  text-decoration: none;
}
.prog-block .name.big a::after,
.prog-block .name a::after {
  content: "";
  position: absolute;
  display: inline-block;
  align-self: center;
  background: url(/imgs/vectors/chevron-fat.svg) 00 no-repeat;
  background-size: contain;
  width: 22px;
  height: 14px;
  right: -40px;
  top: 27px;
  transition: 0.2s linear;
}

.prog-block.opened .name a::after {
  transform: rotate(180deg);
}
.program-card .see-all {
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  color: #6c788a;
  text-decoration-line: underline;
  font-style: normal;
}
.prog-block .prog-content {
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  height: 1px;
  transition: 0.2s;
  transition-timing-function: cubic-bezier(0.58, 0.3, 0.005, 1);
  -o-transition-timing-function: cubic-bezier(0.58, 0.3, 0.005, 1);
  transition-timing-function: cubic-bezier(0.58, 0.3, 0.005, 1);
}
.prog-block.opened .prog-content {
  visibility: visible;
  opacity: 1;
  height: initial;
  overflow: initial;
  
}
.prog-block.opened .prog-content .text {
  margin-bottom: 16px;
}
#content .prog-block.opened .prog-content .text * {
  font-size: 18px;
  line-height: 22px;
}
.prog-block.opened .prog-content.curriculum-container {
  margin-top: 40px;
}
.prog-block.opened .prog-content .curriculum {
  margin-top: 30px;
  border: 1px solid transparent;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.prog-block.opened .prog-content .curriculum::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
  border-left: 1px solid #9cbbe3;
  border-bottom: 1px solid #9cbbe3;
  border-radius: 0 0 0 10px;
}
.prog-block.opened .prog-content .curriculum::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
  z-index: -1;
  border-right: 1px solid #9cbbe3;
  border-bottom: 1px solid #9cbbe3;
  border-radius: 0 0 10px 0;
}
.prog-block.opened .prog-content .curriculum .btn.lightblue {
  position: absolute;
  bottom: 5px;
  left: 20px;
  z-index: 10;
  margin: 0;
}
.preview-expandable {
  position: relative;
  width: 100%;
  height: 330px;
  overflow: hidden;
}
.preview-expandable.expanded {
  height: initial;
}
.preview-expandable::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #fff 1.5%, rgba(34, 34, 34, 0) 87.21%);
}
.preview-expandable.expanded::after {
  display: none;
}
.program-card .stages {
  flex-wrap: wrap;
  gap: 16px;
  align-items: stretch;
}
.program-card .stages .stage {
  display: block;
  position: relative;
  width: 32%;
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  color: #fff;
  padding: 30px 42px;
  background: linear-gradient(98.81deg, #3977c8 0%, #679ce1 96.45%);
  opacity: 0.8;
  box-shadow: 0px 4px 20px rgba(83, 93, 150, 0.1);
  border-radius: 20px;
  font-size: 20px;
  line-height: 26px;
}
.program-card .stages .stage .time {
  display: flex;
  gap: 8px;
  font-size: 14px;
  line-height: 18px;
  margin-top: 8px;
}
.program-card .stages .stage .time::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background: url(/imgs/vectors/clock-blue.svg) 00 no-repeat;
  background-size: contain;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(340deg) brightness(503%) contrast(101%);
}
.program-card .stages .stage .name {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 36px;
  margin-bottom: 20px;
  font-size: 26px;
  line-height: 28px;
}
.program-card .learning-points {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: baseline;
  gap: 40px 16px;
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  font-size: 21px;
  line-height: 23px;
}
.program-card .learning-points .point {
  display: flex;
  align-items: center;
}
.program-card .learning-points .point::before {
  content: "";
  display: block;
  background: url(/imgs/vectors/learning-check.svg) 00 no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  margin-right: 16px;
  transform: rotate(270deg);
  flex: 0 0 auto;
}
.program-card .learning-points .point .text {
  max-width: 380px;
}
.program-card .teachers .item {
  padding: 20px;
  font-style: italic;
  color: #262b43;
  max-width: 415px;
}
.program-card .teachers .item .video {
  display: block;
  background-size: contain;
  max-width: 415px;
  max-height: 235px;
  filter: drop-shadow(0px 4px 20px rgba(83, 93, 150, 0.1));
  border-radius: 20px;
  margin-bottom: 18px;
}
.program-card .teachers .item .video img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.program-card .teachers .item .name {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #3977c8;
  margin-bottom: 24px;
  min-height: 56px;
}
.program-card .teachers .item .text {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  font-size: 18px;
  line-height: 22px;
}
.program-card .teachers .item .text div,
.program-card .teachers .item .text p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  margin-bottom: 16px;
}
.program-card .teachers .item .text b,
.program-card .teachers .item .text strong {
  font-weight: 600;
  color: #19297c;
}
.program-card .teachers .see-all {
  font-size: 16px;
  line-height: 20px;
}
.program-card .teachers .owl-prev,
.program-card .teachers .owl-next {
  position: absolute;
  left: -48px;
  top: 20%;
}
.program-card .teachers .owl-next {
  left: unset;
  right: -48px;
}
.curriculum table {
  background: #ffffff;
  width: 100%;
  border-radius: 10px;
}
.curriculum table .header-stage {
  background: #3977c8;
  text-align: center;
  border-color: #3977c8;
}
.curriculum table tr {
  border: 1px solid #9cbbe3;
}
.curriculum table td {
  padding: 11px 23px;
}
.curriculum table .td-hours {
  display: none;
}
.curriculum table .header-stage td,
table .module td,
table .total td {
  font-weight: 500;
}
.curriculum table .header-stage td {
  color: #ffffff;
  padding: 23px;
}
.curriculum table .module {
  background: #c8e0ff;
  border-color: #c8e0ff;
  border-top: none;
  border-bottom: none;
}
.curriculum table .module td {
  color: #19297c;
  text-align: center;
  padding: 23px;
}
.curriculum table td.hours {
  text-align: end;
}

.platform-configurator {
  position: relative;
}
.platform-configurator .objects {
  display: block;
  width: 100%;
  padding-right: 60px;
  align-self: flex-start;
}
.platform-configurator .objects .main-flex {
  align-items: flex-start;
  position: relative;
}
.btn.lightblue {
  padding: 12px 16px;
  text-align: center;
  background: #5097f4;
  box-shadow: 0px 2px 0px rgb(33 74 130 / 30%);
  font-weight: 500;
  font-size: 20px;
  line-height: 23px;
  color: #ffffff;
  border-radius: 100px;
  margin-bottom: 24px;
  border: none;
}
.btn.lightblue span.choice,
.btn.lightblue.choice span.no-choice {
  display: inline-block;
}
.btn.lightblue span.no-choice,
.btn.lightblue.choice span.choice {
  display: none;
}
.btn.choose {
  display: flex;
}
.btn.lightblue:hover {
  background: #8fbffe;
  transition: 0.2s;
}
.platform-configurator .objects .tile {
  padding: 32px 16px;
  background: #ffffff;
  box-shadow: 0px 4px 20px rgba(83, 93, 150, 0.1);
  border-radius: 20px;
  transition: 0.3s linear;
}
.platform-configurator .objects .tile:not(:last-child) {
  margin-bottom: 16px;
}
.platform-configurator .objects .tile:hover {
  filter: drop-shadow(0px 4px 20px rgba(83, 93, 150, 0.4));
}
.platform-configurator .objects .tile .avatar {
  width: 120px;
  height: 120px;
  background-size: contain !important;
  background-position: center top !important;
  margin-right: 16px;
  margin-top: 5px;
  align-self: baseline;
}
.platform-configurator .objects .tile .tail-main > div {
  margin-bottom: 16px;
}
.platform-configurator .objects .tile .tail-main > div:last-child {
  margin-bottom: 0;
}
.platform-configurator .objects .tile .tail-main > .text a {
  color: #262b43;
  text-decoration: underline;
}
.platform-configurator .objects .tile .tail-main > .text a:hover {
  color: inherit;
}
.platform-configurator .objects .tile .tail-main {
  width: 100%;
  align-self: flex-start;
}
.platform-configurator .objects .tile .tail-main > .name {
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  color: #3977c8;
  margin-bottom: 8px;
}
.platform-configurator .objects .tile .name span,
.tile .uav-item {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #ffffff;
  border-radius: 20px;
}
.platform-configurator .objects .tile .name span {
  
  
  min-width: 124px;
  color: #262b43;
  align-self: baseline;
  margin-left: 16px;
  font-size: 20px;
  font-weight: 500;
  align-self: center;
}
.platform-configurator .objects .tile .obj-cbs {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  max-width: 75%;
  min-height: 40px;
}
.platform-configurator .objects .tile .obj-cbs .silver-checkbox {
  margin-right: 25px;
  margin-bottom: 2px;
  min-width: 28%;
}

.platform-configurator .objects .tile .info {
  min-height: 38px;
}
.platform-configurator .objects .tile .info .text {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #262b43;
}
.platform-configurator .objects .tile .info .text > span {
  display: block;
  font-weight: 500;
  line-height: 18px;
  color: #3977c8;
  margin-bottom: 8px;
}
.platform-configurator .objects .tile .info .text div a {
  text-decoration: underline;
  color: #262b43;
}
.platform-configurator .objects .tile .info .btn.lightblue {
  padding: 8px 28px;
  align-self: flex-end;
  margin: 0;
}
.platform-configurator .objects .tile .info .btn.lightblue.enroll span,
.platform-configurator .objects .tile .info .btn.lightblue.enroll label,
.platform-configurator .objects .tile .info .btn.lightblue.choose .enroll-span {
  display: none;
}
.platform-configurator .objects .tile .info .btn.lightblue.enroll .enroll-span {
  display: inline-block;
}
#filter-menu {
  align-self: flex-start;
  max-width: 335px;
  width: 100%;
}
.platform-configurator .filters {
  position: relative;
  max-width: 335px;
  width: 100%;
}
.platform-configurator .filters .filter .title {
  
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 6px;
  text-align: center;
  margin-top: 0px;
}
.platform-configurator .filters .filter:not(:last-child) {
  margin-bottom: 40px;
}
.silver-checkbox input[type="checkbox"] {
  display: none;
}
.silver-checkbox label {
  margin-bottom: 0;
  font-weight: normal;
}
.silver-checkbox label:before {
  content: " ";
  background-image: url("https://demo.sroreestr.ru/SiteCMS/img/DXImages.png");
  background-repeat: no-repeat;
  background-color: transparent;
  display: inline-block;
  background-position: -149px -427px;
  width: 15px;
  height: 15px;
}
.silver-checkbox.checkbox-label label {
  position: relative;
  top: -3px;
  top: 0px;
}
.silver-checkbox.checkbox-label label.imposter + span {
  cursor: pointer;
  font: 11px Verdana, Geneva, sans-serif;
  white-space: normal !important;
  line-height: normal;
  padding: 0;
  cursor: pointer;
}
.silver-checkbox.checkbox-label label:before {
  margin-right: 8px;
  position: relative;
  top: 4px;
}
.silver-checkbox input:checked + label:before {
  background-position: -32px -444px;
}
.silver-checkbox input:disabled + label:before {
  background-position: -64px -444px;
}
.silver-checkbox input:checked:disabled + label:before {
  background-position: -128px -444px;
}
.silver-checkbox input:checked:disabled + label.imposter + span {
  cursor: initial;
}

.silver-checkbox.prof-checkbox label {
  top: -2px;
  top: 0px;
}
.silver-checkbox.prof-checkbox label.imposter + span {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  color: #262b43;
  font-size: 14px;
  line-height: 16px;
}
.silver-checkbox.prof-checkbox label.imposter + span {
  user-select: none;
}
.silver-checkbox.prof-checkbox label.imposter + span em {
  background: #d6e7f9 none repeat 0 0;
  color: Black;
  font-style: normal;
}
.silver-checkbox.prof-checkbox label:before {
  content: "";
  background-image: none;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #3977c8;
  border-radius: 3px;
  cursor: pointer;
}
.silver-checkbox.prof-checkbox input:checked + label:before {
  background: url(/imgs/vectors/checked-arrow-white.svg) 00 no-repeat;
  background-position: center center;
  background-color: #3977c8;
}

.platform-configurator .filters .filter input[type="radio"],
.platform-configurator .filters .filter input[type="checkbox"],
.popup-group .field input[type="checkbox"] {
  display: none;
}
.platform-configurator .filters .filter .silver-checkbox.checkbox-label label,
.obj-cbs .silver-checkbox.checkbox-label label,
.popup-group .field .silver-checkbox.checkbox-label label {
  top: -2px;
  top: 0px;
}
.platform-configurator .filters .filter .silver-checkbox.checkbox-label label.imposter + span,
.obj-cbs .silver-checkbox.checkbox-label label.imposter + span,
.popup-group .field .silver-checkbox.checkbox-label label.imposter + span {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: 32px;
  color: #262b43;
  font-size: 18px;
  line-height: 30px;
}
.popup-group .field .silver-checkbox.checkbox-label label.imposter + span {
  font-size: 14px;
  line-height: 1.1;
}
.popup-group .field .silver-checkbox.checkbox-label span span,
.popup-group .field .silver-checkbox.checkbox-label span a {
  text-decoration: underline;
  color: #262b43;
}
.obj-cbs .silver-checkbox.checkbox-label label.imposter + span,
.popup-group .field .silver-checkbox.checkbox-label label.imposter + span {
  user-select: none;
}
.platform-configurator .filters .filter .silver-checkbox.checkbox-label label.imposter + span em,
.obj-cbs .silver-checkbox.checkbox-label label.imposter + span em,
.personal-popup.employees-list .employees-container .employee .name div em,
.popup-group .field .silver-checkbox.checkbox-label label.imposter + span em {
  background: #d6e7f9 none repeat 0 0;
  color: Black;
  font-style: normal;
}
.platform-configurator .filters .filter .silver-checkbox label:before,
.objects .btn.choose label:before,
.obj-cbs .silver-checkbox label:before,
.objects .btn.choose label:before,
.popup-group .field .silver-checkbox label:before {
  content: "";
  background-image: none;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #3977c8;
  border-radius: 3px;
  cursor: pointer;
}
.platform-configurator .filters .filter .silver-checkbox input:checked + label:before,
.objects .btn.chosen label::before,
.obj-cbs .silver-checkbox input:checked + label:before,
.popup-group .field .silver-checkbox input:checked + label:before {
  background: url(/imgs/vectors/checked-arrow-white.svg) 00 no-repeat;
  background-position: center center;
  background-color: #3977c8;
}
#registerForm-cofirmholder.silver-checkbox.prof-checkbox,
#registerForm-confirmRulesholder.silver-checkbox.prof-checkbox {
  display: flex;
}
#registerForm-cofirmholder.silver-checkbox.prof-checkbox {
  margin-bottom: 12px;
}
#registerForm-cofirmholder.silver-checkbox.prof-checkbox label.imposter + span,
#registerForm-confirmRulesholder.silver-checkbox.prof-checkbox label.imposter + span {
  font-size: 12px;
  line-height: 14px;
  display: block;
  text-align: left;
}
.no-results {
  text-align: center;
}
.no-results.italic {
  text-align: start;
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  line-height: 14px;
  padding: 28px 16px;
  background: #ffffff;
  border-radius: 10px;
}
.no-results.italic a {
  color: #428bca;
}
.platform-configurator .objects .btn.choose label:before {
  border-color: #ffffff;
}
.platform-configurator .objects .btn.choose label {
  display: block;
  position: relative;
  top: 3px;
  margin: 0;
  margin-left: 8px;
}
.platform-configurator .objects .btn.choose label:before {
  background-color: transparent;
}
.platform-configurator .filters .filter .search-box,
.personal-popup.employees-list .search-box,
.search-box {
  position: relative;
}
.platform-configurator .filters .filter .search-box .input-field,
.search-box .input-field {
  margin-bottom: 13px;
}
.platform-configurator .filters .filter .search-box .input-field .search,
.personal-popup.employees-list .search-box .input-field .search,
.search-box .input-field .search,
.popup-group .field .silver-textbox,
.popup-group .field .silver-memo {
  width: 100%;
  height: 40px;
  border: 1px solid #3977c8;
  border-radius: 5px;
  padding: 10px;
  font-weight: 300;
  font-size: 14px;
  line-height: 23px;
  resize: none;
}
.platform-configurator .filters .filter .search-box .input-field .search:focus-visible,
.personal-popup.employees-list .search-box .input-field .search:focus-visible,
.search-box .input-field .search:focus-visible,
.popup-group .field .silver-textbox:focus-visible,
.popup-group .field .silver-memo:focus-visible {
  outline: none;
  background: #f7fbff;
}
.platform-configurator .filters .filter .search-box .erase,
.personal-popup.employees-list .search-box .erase,
.search-box .erase {
  display: none;
  position: absolute;
  top: 15px;
  right: 40px;
  width: 10px;
  height: 10px;
  cursor: pointer;
}
.platform-configurator .filters .filter .search-box.erase .erase,
.personal-popup.employees-list .search-box.erase .erase,
.search-box .erase {
  display: flex;
}
.platform-configurator .filters .filter .search-box .erase::before,
.personal-popup.employees-list .search-box .erase::before,
.search-box .erase::before {
  content: "";
  display: block;
  background: url(/imgs/vectors/cross-delete.svg) 00 no-repeat;
  width: 10px;
  height: 10px;
}
.platform-configurator .filters .filter .search-box .loupe,
.personal-popup.employees-list .search-box .loupe,
.search-box .loupe {
  display: flex;
  position: absolute;
  top: 8px;
  right: 10px;
  width: 22px;
  height: 23px;
}
.platform-configurator .filters .filter .search-box .loupe::before,
.personal-popup.employees-list .search-box .loupe::before,
.search-box .loupe::before {
  content: "";
  display: block;
  background: url(/imgs/vectors/search.svg) 00 no-repeat;
  filter: invert(52%) sepia(62%) saturate(524%) hue-rotate(176deg) brightness(96%) contrast(99%);
  width: 22px;
  height: 23px;
}
.platform-configurator .filter-box {
  max-height: 210px;
  overflow: auto;
  overflow-x: hidden;
  margin-bottom: 24px;
  padding-right: 8px;
}
.platform-configurator .filter-box::-webkit-scrollbar {
  width: 8px;
  background-color: #c8e0ff;
  border-radius: 10px;
}
.platform-configurator .filter-box::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #5097f4;
  border: 2px solid #c8e0ff;
}
.platform-configurator .filter-boxs::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 10%);
  background-color: #f5f5f5;
  border-radius: 5px;
}
.platform-configurator .filters .filter .filter-box.models {
  max-height: 160px;
}
.platform-configurator .filters .filter .filter-box.cities {
  max-height: 120px;
}
.platform-configurator .filters .filter .filter-box.cities a {
  display: block;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #262b43;
}
.platform-configurator .filters .filter .show-all {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  text-decoration-line: underline;
  color: #6c788a;
  text-align: center;
}
.platform-configurator .filters .filter .show-all:hover {
  color: #262b43;
}
.platform-configurator .apply-filter {
  display: none;
  width: calc(100% + 32px);
  text-align: center;
  padding: 16px;
  margin: 0 -16px 0 -16px;
  background: #ffffff;
  box-shadow: 0 2px 10px rgb(0 0 0 / 8%);
}
.platform-configurator .apply-choice {
  width: calc(100% + 160px);
  position: sticky;
  bottom: -1px;
  padding: 20px 0;
  margin: 20px -80px 0 -80px;
}
.platform-configurator .apply-choice .params {
  text-align: end;
  font-size: 24px;
  position: relative;
  padding: 0 80px;
  height: 100%;
  max-width: 1920px;
  width: 100%;
  margin: auto;
}
.platform-configurator .apply-choice .params > div {
  max-width: 100%;
}
.platform-configurator .apply-choice span {
  margin-right: 20px;
}
.platform-configurator .apply-choice a {
  display: block;
  width: fit-content;
  background: #5097f4;
  border-radius: 100px;
  padding: 16px 28px;
  margin: auto;
  margin-top: 16px;
}
.platform-configurator .apply-choice a:hover,
.apply-choice a:focus {
  text-decoration: none;
  color: #fff;
  background: #8fbffe;
  transition: 0.2s;
}
.platform-configurator .apply-choice:focus,
.apply-choice:focus-visible,
.apply-choice:active {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.platform-configurator .apply-choice.is-pinned {
  background: #fff;
  box-shadow: 0px 4px 20px rgb(83 93 150 / 10%);
  transition: 0.1s;
}

.cal-mainHolder {
  position: relative;
  padding: 32px;
  padding-top: 16px;
  height: 100%;
  width: 100%;
}
.cal-mainHolder > div:not(.menu-scheduler) {
  position: relative;
  height: 100%;
}
.table-scheduler {
  position: relative;
  height: 100%;
}
.cal-mainHolder > div:nth-child(2) {
  padding: 32px 0;
  height: calc(100% - 48px);
}
.table-scheduler .cal-head {
  background: rgb(57, 119, 200);
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  color: #ffffff;
  
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  align-items: stretch;
}
.table-scheduler .cal-weeks {
  align-items: stretch;
  width: 100%;
}
.table-scheduler.addscroll .cal-weeks {
  overflow: hidden;
  overflow-y: hidden;
  width: 100%;
}
.table-scheduler.addscroll .cal-weeks .cal-week {
  max-width: initial;
  min-width: 170px;
}
.table-scheduler .with-padding .cal-weeks .cal-week:last-child {
  padding-right: 11px;
}
.table-scheduler .cal-week,
.cal-month {
  display: block;
  width: 100%;
  text-align: center;
  padding: 21px 0;
}
.table-scheduler .cal-week {
  max-width: 310px;
}
.table-scheduler .cal-week.static {
  max-width: 100%;
  min-width: 150px;
  width: 150px;
  padding: 28px 0;
}
.table-scheduler.addscroll .cal-week.static {
  min-width: 120px;
  width: 120px;
}
.table-scheduler .cal-week:not(:last-child) {
  border-right: 1px solid rgb(156, 187, 227);
}
.table-scheduler .cal-body {
  position: relative;
  overflow: auto;
  border-bottom: 1px solid rgb(156, 187, 227);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  height: calc(100% - 56px);
}
.account-holder .table-scheduler .cal-body,
.table-scheduler .cal-body.limiter {
  height: calc(100% - 56px);
}
.table-scheduler .cal-body.no-scroll {
  overflow: hidden;
}
.table-scheduler .cal-body::-webkit-scrollbar {
  width: 8px;
  background-color: #c8e0ff;
  border-radius: 10px;
}
.table-scheduler .cal-body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #5097f4;
  border: 2px solid #c8e0ff;
}
.table-scheduler .cal-body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 10%);
  background-color: #f5f5f5;
  border-radius: 5px;
}
.table-scheduler .months-container {
  border: 1px solid rgb(156, 187, 227);
  border-bottom: 0;
  border-top: none;
  width: 150px;
  align-self: baseline;
  border-bottom-left-radius: 10px;
}
.table-scheduler.addscroll .months-container {
  width: 120px;
  min-width: 120px;
}
.table-scheduler .months-container .cal-month {
  color: rgb(57, 119, 200);
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  height: 54px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.table-scheduler .cal-month:not(:last-child) {
  border-bottom: 1px solid rgb(156, 187, 227);
}
.table-scheduler .cell-container {
  align-self: flex-start;
  overflow: auto;
  overflow-y: hidden;
  max-width: calc(100% - 150px);
}
.table-scheduler.addscroll .cell-container {
  max-width: calc(100% - 120px);
}
.table-scheduler .table-scheduler.addscroll .cell-container {
  max-width: 100%;
  max-width: 900px;
  overflow: auto;
}
.table-scheduler.addscroll .cell-container::-webkit-scrollbar {
  display: none;
}
.table-scheduler .cal-body:not(.limiter) .cell-container .cell-row:last-child .cell:last-child {
  border-bottom-right-radius: 10px;
}
.table-scheduler .cell-row .cell {
  position: relative;
  border: 1px solid rgb(156, 187, 227);
  border-top: 0;
  border-left: 0;
  min-height: 54px;
  max-width: 310px;
  width: 310px;
}
.table-scheduler .cell-row:last-child .cell {
  border-bottom: 0;
}

.table-scheduler.addscroll .cell-row .cell {
  max-width: 100%;
  width: 170px;
  min-width: 170px;
}
.table-scroller {
  position: absolute;
  height: 18px;
  bottom: 0px;
  left: 120px;
  overflow: scroll;
  overflow-y: hidden;
  z-index: 100;
}
.table-scroller::-webkit-scrollbar,
.table-scheduler.addscroll .cell-container::-webkit-scrollbar {
  height: 8px;
  background-color: #c8e0ff;
  border-radius: 10px;
}
.table-scroller::-webkit-scrollbar-thumb,
.table-scheduler.addscroll .cell-container::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #5097f4;
  border: 2px solid #c8e0ff;
}
.table-scroller::-webkit-scrollbar-track,
.table-scheduler.addscroll .cell-container::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 10%);
  background-color: #f5f5f5;
  border-radius: 5px;
}

.table-scheduler .cal-event {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 10px;
  left: 4px;
  padding: 5px 0;
  text-align: center;
  color: #ffffff;
  border-radius: 30px;
  z-index: 9;
  cursor: pointer;
  transition: border 0.3s;
  border: solid 1px transparent;
  font-size: 14px;
  line-height: 16px;
  user-select: none;
}
.account-holder.platform .table-scheduler .cal-event {
  top: 6px;
  border: dotted 2px transparent;
}
.account-holder.platform .table-scheduler .cal-event.active {
  
  box-shadow: 0px 0px 4px 6px rgb(27 150 255 / 50%);
}
.table-scheduler .cal-event .small-text {
  font-size: 10px;
  line-height: 12px;
}
.table-scheduler .cal-event:hover {
  
  box-shadow: rgb(9 30 66 / 25%) 0px 1px 1px, rgb(9 30 66 / 31%) 0px 0px 1px 0px;
}
.table-scheduler .cal-event.orange {
  background: #f8a558;
}
.table-scheduler .cal-event.green {
  background: #54d488;
}
.table-scheduler .cal-event.purple {
  background: #8258f8;
}
.table-scheduler .cal-event.pink {
  background: #e258f8;
}
.table-scheduler .cal-event.blue {
  background: #58bef8;
}
.table-scheduler .cal-event.status-3 {
  background: #e9bb0b;
}
.table-scheduler .cal-event.status-4,
.table-scheduler .cal-event.status-5 {
  background: darkgray;
}
.table-scheduler .cal-event.status-0 {
  border: dotted 1px #bebebe;
  background: #e9ebeb;
  color: #333;
}
.table-scheduler .cal-event.orange.light {
  background: #ffe4cb;
  color: #ec7506;
}
.table-scheduler .cal-event.green.light {
  background: #b2ffd1;
  color: #0da549;
}
.table-scheduler .cal-event.purple.light {
  background: #c9b6ff;
  
}
.table-scheduler .cal-event.pink.light {
  background: #f4b1ff;
  
}
.table-scheduler .cal-event.blue.light {
  background: #b6e5ff;
  color: #0699ec;
}
.table-scheduler .cal-event .pic {
  display: flex;
  position: relative;
  
  border-radius: 50px;
  background-color: #fff;
  width: 16px;
  height: 16px;
}
.table-scheduler .cal-event .event-text {
  position: relative;
  width: 100%;
}
.table-scheduler .cal-event .flex-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: visible;
}
.table-scheduler .cal-event .text,
.table-scheduler .cal-event .small-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  
}
.table-scheduler .cal-event .text.short {
  max-width: 180px;
}
.table-scheduler .cal-event .small-text {
  padding: 0 30px;
}
.table-scheduler .cal-event .pic .student {
  display: block;
  background: url(/imgs/vectors/student.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
  width: 16px;
  height: 10px;
  align-self: center;
}
.table-scheduler .cal-event.blue .pic .student {
  filter: invert(36%) sepia(100%) saturate(1060%) hue-rotate(175deg) brightness(103%) contrast(95%);
}
.table-scheduler .cal-event.orange .pic .student {
  filter: invert(42%) sepia(94%) saturate(1314%) hue-rotate(5deg) brightness(100%) contrast(95%);
}
.table-scheduler .cal-event.purple .pic .student {
  filter: invert(14%) sepia(89%) saturate(6791%) hue-rotate(262deg) brightness(85%) contrast(123%);
}
.table-scheduler .cal-event.pink .pic .student {
  filter: invert(16%) sepia(87%) saturate(5032%) hue-rotate(310deg) brightness(94%) contrast(105%);
}
.table-scheduler .cal-event.green .pic .student {
  filter: invert(33%) sepia(69%) saturate(3402%) hue-rotate(131deg) brightness(104%) contrast(90%);
}
.table-scheduler .cal-event.status-0 .pic .student {
  filter: invert(87%) sepia(77%) saturate(36%) hue-rotate(143deg) brightness(105%) contrast(84%);
}
.table-scheduler .cal-event.status-3 .pic .student {
  filter: invert(60%) sepia(90%) saturate(579%) hue-rotate(8deg) brightness(106%) contrast(91%);
}
.table-scheduler .cal-event.status-4 .pic .student,
.table-scheduler .cal-event.status-5 .pic .student {
  filter: invert(70%) sepia(0%) saturate(0%) hue-rotate(268deg) brightness(97%) contrast(90%);
}
.table-scheduler .cal-event .pic .signed {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 9px;
  height: 9px;
  background: #fff;
  color: #fff;
  border-radius: 50px;
  top: -3px;
  right: -5px;
  font-weight: 700;
  font-size: 8px;
  line-height: 9px;
  text-align: center;
}
.table-scheduler .cal-event.blue .pic .signed {
  background: #0699ec;
}
.table-scheduler .cal-event.orange .pic .signed {
  background: #ec7506;
}
.table-scheduler .cal-event.pink .pic .signed {
  background: #ec069e;
}
.table-scheduler .cal-event.purple .pic .signed {
  background: #5006ec;
}
.table-scheduler .cal-event.green .pic .signed {
  background: #0da549;
}
.table-scheduler .cal-event.status-0 .pic .signed {
  background: #8a8a8a;
}
.table-scheduler .cal-event.status-3 .pic .signed {
  background: #ad8a02;
}
.table-scheduler .cal-event.status-4 .pic .signed,
.table-scheduler .cal-event.status-5 .pic .signed {
  background: #979797;
}
.menu-scheduler {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0;
}
.menu-scheduler .btn.confirm {
  margin: 0;
  padding: 10px 57px;
}
.menu-scheduler .btn.confirm:hover {
  background: #71aaf4;
}
.menu-scheduler .btn.confirm.disabled {
  background: #a2c5f4;
}
.menu-scheduler .btn.confirm.disabled:hover {
  background: #a2c5f4;
}
.menu-scheduler .menu-tabs-holder {
  overflow: hidden;
  height: 84px;
}
.menu-scheduler .menu-tabs {
  position: relative;
  overflow: auto;
  
  padding-bottom: 16px;
  margin-right: 16px;
}


.menu-scheduler .menu-tabs .scale {
  position: relative;
  background: #e2edff;
  border-radius: 50px;
  height: 8px;
  width: 100%;
  margin-top: 16px;
}
.menu-scheduler .menu-tabs .scale.invisible {
  opacity: 0;
}
.menu-scheduler .menu-tabs .scale .strip {
  position: absolute;
  left: 0;
  height: 100%;
  width: 126px;
  background: #5097f4;
  border-radius: 50px;
  transition: linear 0.1s;
}
.menu-scheduler .container-scheduler {
  display: inline-flex;
  position: relative;
}
.menu-scheduler .container-scheduler::after {
  content: "";
  position: absolute;
  background: #e2edff;
  border-radius: 50px;
  height: 8px;
  width: 100%;
  bottom: -24px;
}
.menu-scheduler .container-scheduler .menu-obj {
  position: relative;
  
  padding-right: 20px;
  cursor: pointer;
  white-space: nowrap;
  color: #6c788a;
}
.menu-scheduler .container-scheduler .menu-obj:not(:first-child) {
  padding-left: 20px;
}
.menu-scheduler .container-scheduler .menu-obj.active {
  color: #262b43;
}
.menu-scheduler .container-scheduler .menu-obj.error {
  color: red;
}

.menu-scheduler .container-scheduler .menu-obj .name {
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 5px;
}
.menu-scheduler .container-scheduler .menu-obj.active .name {
  color: #3977c8;
}
.menu-scheduler .container-scheduler .menu-obj.error .name {
  color: red;
}
.menu-scheduler .container-scheduler .menu-obj .org {
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 5px;
}
.menu-scheduler .container-scheduler .menu-obj .city {
  font-size: 10px;
  line-height: 12px;
  font-style: italic;
}
.menu-scheduler .container-scheduler .menu-obj .active-checked {
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  right: 0;
  background: #54d488;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  text-align: center;
}
.menu-scheduler .container-scheduler .menu-obj.error .active-checked {
  background: #e84444;
}
.menu-scheduler .container-scheduler .menu-obj.confirmed .active-checked {
  display: flex;
}
.menu-scheduler .container-scheduler .menu-obj .active-checked::after {
  content: "";
  display: block;
  background: url(/imgs/vectors/programActive.svg) 00 no-repeat;
  width: 7px;
  height: 5px;
  margin: 0;
}
.menu-scheduler .container-scheduler .menu-obj.error .active-checked:after {
  background: url(/imgs/vectors/programError.svg) 00 no-repeat;
}
.popup-group .info {
  margin-bottom: 40px;
}
.popup-group .info-title {
  font-size: 18px;
  line-height: 23px;
  font-weight: 500;
  color: #3977c8;
}
.popup-group.no-slots .info-title,
.popup-group.no-slots .info {
  text-align: center;
  margin-bottom: 16px;
}
.popup-group.no-slots .info {
  font-size: 16px;
  line-height: 20px;
}
.popup-group .info .date div,
.popup-group .info .address div {
  font-weight: 400;
  color: #262b43;
  margin-top: 5px;
}
.popup-group .info .person-type {
  position: relative;
  background: #ffffff;
  border-radius: 22.3398px;
}
.popup-group .info .person-type.hidden {
  display: none;
}
.popup-group .info .person-type a {
  font-weight: 300;
  font-size: 18px;
  line-height: 21px;
  color: #6c788a;
  padding: 7px 19px;
  z-index: 11;
}
.popup-group .info .person-type.left .legal,
.popup-group .info .person-type.right .individ {
  font-weight: 500;
  color: #fff;
}
.popup-group .info .person-type a:hover,
.popup-group .info .person-type a:focus,
.popup-group .info .person-type a:target {
  text-decoration: none;
}
.popup-group .info .person-type .switch {
  position: absolute;
  top: 0;
  background: #3977c8;
  box-shadow: 0px 2px 0px rgba(33, 74, 130, 0.3);
  height: 100%;
  width: 50%;
  border-radius: 22.3398px;
  z-index: 10;
  transition: linear 0.1s;
}
.popup-group .info .person-type.right .switch {
  left: 100%;
  transform: translateX(-100%);
  transition: linear 0.1s;
}
.popup-group .info .person-type.left .switch {
  transform: translateX(0);
  left: 0;
  transition: linear 0.1s;
}
.popup-group .info {
  align-items: flex-start;
}
.popup-group .info-title.study {
  margin-bottom: 40px;
}
.popup-group .info-title.study div {
  font-weight: 400;
  color: #262b43;
  margin-top: 9px;
}
.popup-group .info .uav-name {
  display: flex;
  align-items: center;
  background: #3977c8;
  padding: 6px 12px;
  width: max-content;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #ffffff;
  border-radius: 15px;
}
.popup-group .info .uav-name::before {
  content: "";
  display: block;
  background: url(/imgs/vectors/heli-info.svg) 00 no-repeat;
  width: 17px;
  height: 12px;
  margin-right: 9px;
}
.popup-group .info .pos-amount {
  background: #ffffff;
  border: 1px solid #3977c8;
  border-radius: 7px;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: #262b43;
  padding: 9px 65px;
  margin: auto;
  margin-top: 16px;
  width: max-content;
}
.popup-group .info .reserv-pos {
  justify-content: center;
  margin-top: 16px;
}
.popup-group .info .reserv-pos a,
.account-holder.platform .slot-scheduler-new .reserv-pos a {
  background: #fff;
  color: #3977c8;
  font-weight: 400;
  font-size: 28px;
  line-height: 21px;
  padding: 6px 10px 12px 10px;
  border: 1px solid #3977c8;
}
.account-holder.platform .slot-scheduler-new .reserv-pos a {
  padding: 2px 3px 4px 3px;
  font-size: 22px;
  line-height: 20px;
}
.popup-group .info .reserv-pos a:hover,
.popup-group .info .reserv-pos a:focus,
.popup-group .info .reserv-pos a:target,
.account-holder.platform .slot-scheduler-new .reserv-pos a:hover,
.account-holder.platform .slot-scheduler-new .reserv-pos a:focus,
.account-holder.platform .slot-scheduler-new .reserv-pos a:target {
  text-decoration: none;
}
.popup-group .info .reserv-pos a.minus,
.account-holder.platform .slot-scheduler-new .reserv-pos a.minus {
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
}
.popup-group .info .reserv-pos a.plus,
.account-holder.platform .slot-scheduler-new .reserv-pos a.plus {
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
}
.popup-group .info .reserv-pos a.minus:hover,
.popup-group .info .reserv-pos a.plus:hover,
.account-holder.platform .slot-scheduler-new a.minus:hover,
.account-holder.platform .slot-scheduler-new .reserv-pos a.plus:hover {
  color: #fff;
  background: #5097f4;
}
.popup-group .info .reserv-pos.disabled div,
.account-holder.platform .slot-scheduler-new .reserv-pos.disabled div {
  color: #a7b4c7;
}
.popup-group .info .reserv-pos.disabled a,
.account-holder.platform .slot-scheduler-new .reserv-pos.disabled a {
  color: #9cbbe3;
}
.popup-group .info .reserv-pos.disabled a.minus:hover,
.popup-group .info .reserv-pos.disabled a.plus:hover,
.account-holder.platform .slot-scheduler-new .reserv-pos.disabled a.minus:hover,
.account-holder.platform .slot-scheduler-new .reserv-pos.disabled a.plus:hover {
  background: #a2c5f4;
}
.popup-group .info .reserv-pos div {
  background: #fff;
  color: #262b43;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  padding: 9px 24px;
  border: 1px solid #3977c8;
  border-left: 0;
  border-right: 0;
}
.popup-group .book {
  display: block;
  width: 100%;
  text-align: center;
}
.popup-group .book .btn {
  margin: auto;
  padding: 9px 44px;
}
.popup-group .btns-container {
  justify-content: center;
  gap: 24px;
  align-items: flex-end;
  height: calc(100% - 200px);
}

.popupBackDrop,
.siver-modal {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgb(103 133 163 / 60%);
  background: rgba(0, 0, 0, 0.32);
  z-index: 999999;
  overflow: hidden;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.popupBackDrop.animated {
  opacity: 0;
}
.popupBackDrop.animated.shown {
  opacity: 1;
  background: rgba(0, 0, 0, 0.65);
}
.popupWindow,
.silver-popup {
  min-width: 250px;
  min-height: 200px;
  background: #fff;
  color: black;
  box-shadow: 0 4px 17px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.16), 0 0 1px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  box-sizing: border-box;
  position: absolute;
  font-family: inherit;
}
.popupWindow.modal-type,
.silver-popup.modal-type {
  min-width: initial;
  min-height: initial;
  width: 90%;
  height: 90%;
  position: absolute;
  z-index: 999999;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.16), 0 0 1px 0 rgba(0, 0, 0, 0.16);
}
.silver-popup.modal-type {
  width: 330px !important;
  height: 310px !important;
}
.popupWindow.animated {
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.popupWindow.modal-type.confirm-type {
  width: initial;
  height: initial;
  min-width: 400px;
}
.popupWindow > .popup-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.popupWindow > .popup-container > div:last-child {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.silver-popup.customization-menu,
.silver-popup.filter-menu {
  background: #f8f9ff;
}
.column-dragCopy {
  padding: 3px 3px 5px;
  text-align: center;
  color: #3c3c3c;
  padding: 5px 6px;
  border: 1px solid #a5acb5;
  position: absolute;
  opacity: 0.5;
  cursor: pointer;
  width: 140px;
  pointer-events: none;
  user-select: none;
  z-index: 99999;
  background: #3977c8;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
}
.column-dragCopy.indication:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -25px;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url(/img/Custom/DXImages2.png);
  background-repeat: no-repeat;
  background-position: 0px 0px;
}
.customization-menu .column-dragCopy {
  position: relative;
  opacity: 1;
  margin: auto;
  margin-bottom: 10px;
  pointer-events: auto;
  width: 90%;
  font-weight: 500;
  font-size: 14px;
}
.silver-popup.customization-menu {
  min-height: unset;
  max-height: unset;
}
.customization-menu .popup-body {
  overflow: auto;
  max-height: 462px;
  min-height: 50px;
  height: 100%;
  position: relative;
}
.silver-grid .table-silvergrid-header thead tr th.drag-point,
.silver-grid .table-silvergrid-header thead tr th.drag-after {
  position: relative;
  overflow: visible;
}
.silver-grid .table-silvergrid-header thead tr th.drag-point:before,
.silver-grid .table-silvergrid-header thead tr th.drag-point:after,
.silver-grid .table-silvergrid-header thead tr th.drag-after:before,
.silver-grid .table-silvergrid-header thead tr th.drag-after:after {
  content: "";
  display: block;
  height: 10px;
  position: absolute;
  width: 11px;
  bottom: -10px;
  left: -6px;
  background-image: url(/img/Custom/DXImages2.png);
  background-repeat: no-repeat;
  background-position: -68px -189px;
  z-index: 99999;
}
.silver-grid .table-silvergrid-header thead tr th.drag-point:after {
  background-position: -80px -189px;
  top: -10px;
}
.silver-grid .table-silvergrid-header thead tr th.drag-after:before,
.silver-grid .table-silvergrid-header thead tr th.drag-after:after {
  right: -6px;
  left: unset;
}
.silver-grid .table-silvergrid-header thead tr th.drag-after:after {
  background-position: -80px -189px;
  top: -10px;
}
.silver-grid .table-silvergrid-header thead tr th {
  user-select: none;
}
.silver-grid .table-silvergrid-header th.sortable > div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.silver-grid .table-silvergrid-header th.sortable > div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.silver-grid .table-silvergrid-header th.sortable .wMenu {
  margin-right: 15px;
}
.silver-grid .table-silvergrid-header th.sortable .wMenu .sort-indication {
  right: 16px;
  
}
.silver-grid .filter-indication-holder {
  display: flex;
  position: absolute;
  right: 0;
  height: 100%;
  width: 20px;
  align-items: center;
  justify-content: center;
}
.silver-grid .filter-indication.active {
  background-position: -19px -158px;
  height: 20px;
  filter: unset;
}
.silver-grid .filter-indication {
  
  background-image: url(/SiteCMS/img/DXImages2.png);
  background-repeat: no-repeat;
  background-color: transparent;
  background-position: -3px -157px;
  height: 22px;
  width: 13px;
  display: inline-block;
  float: right;
  margin-left: 5px;
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(208deg) brightness(141%) contrast(118%);
  
}
.silver-popup.filter-menu .filter-menu-footer {
  gap: 10px;
}
.silver-popup.filter-menu .silver-textbox {
  outline: none;
  border-radius: 10px;
  width: 100%;
  font-weight: 400;
  border: none;
  color: #000000;
  background-color: #fdfdfd;
  padding: 4px 12px;
  min-height: 24px;
  font-size: 12px;
  line-height: 14px;
  border: solid 1px #66afe9;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.2);
}
.account-holder .silver-textbox:focus,
.auc-textarea:focus {
  border: solid 1px #66afe9;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.2);
}
.silver-popup.filter-menu label {
  color: #3977c8;
}
.popupWindow > .popup-container > .head,
.silver-popup .popup-head {
  height: 48px;
  width: 100%;
  background: #f8f9ff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  font-family: inherit;
  line-height: 1;
  display: flex;
  flex-direction: row;
  padding: 10px 20px 10px 32px;
  font-weight: bold;
}
.popupWindow > .popup-container > .head > span,
.silver-popup .popup-head > span {
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  color: #3977c8;
  margin: 0;
}
.silver-popup .popup-head > span {
  font-size: 18px;
}
.popupWindow > .popup-container > .head.move,
.silver-popup .popup-head.move {
  cursor: move;
}
.popupWindow > .popup-container > .head > button.close,
.silver-popup .popup-head > .close {
  -webkit-box-align: baseline;
  align-items: baseline;
  border-width: 0px;
  box-sizing: border-box;
  display: inline-flex;
  font-size: inherit;
  font-style: normal;
  font-weight: normal;
  max-width: 100%;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  background: none;
  border-radius: 3px;
  cursor: pointer;
  
  transition: background 0.1s ease-out 0s, box-shadow 0.15s cubic-bezier(0.47, 0.03, 0.49, 1.38) 0s;
  vertical-align: middle;
  width: auto;
  outline: none !important;
  color: #000 !important;
  text-shadow: none !important;
  font-size: 33px;
  margin-top: -11px;
  margin-right: 0px;
}
.popupWindow > .popup-container > .head > button.close > span,
.silver-popup .popup-head > .close > span {
  display: none;
}
.popupWindow > .popup-container > .head > button.close,
.silver-popup .popup-head > .close {
  width: 18px;
  height: 18px;
  background: url(/imgs/vectors/close.svg) 0 0 no-repeat;
  margin-top: 0;
  opacity: 1;
  filter: invert(48%) sepia(11%) saturate(3148%) hue-rotate(174deg) brightness(88%) contrast(88%);
}
.popupWindow > .popup-container > .head > button.close:hover,
.silver-popup .popup-head > .close:hover {
  opacity: 1;
}
.popupWindow > .popup-container > .content.nice-scroll,
.silver-popup .popup-body.overflow {
  position: relative;
  width: 100%;
  padding: 10px 20px;
  height: calc(100% - 82px);
  overflow: auto;
  padding: 15px 20px;
  position: relative;
}
.silver-popup .popup-body.overflow {
  background: #f8f9ff;
  height: calc(100% - 48px);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.silver-popup .popup-body .popup-confirm > .msg {
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.4;
}
.silver-popup .popup-body .popup-confirm > .btn-silver {
  margin: auto;
  display: block;
}
.silver-popup .popup-body .popup-confirm > .btn {
  padding: 12px;
  font-size: 16px;
  line-height: 1.1;
}
.popupWindow > .popup-container > .footer {
  background: #f9fbfc;
  height: 50px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 10px 20px 10px 19px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.popupWindow > .popup-container > .footer > .button {
  font-size: 16px;
  background-color: #3f53d9;
  border-radius: 3px;
  color: #ffffff;
  display: block;
  font-family: sans-serif;
  line-height: 20px;
  text-align: center;
  text-decoration: none;
  text-size-adjust: none;
  margin-left: 15px;
  padding: 5px 20px;
  transition: all 300ms ease;
  background: linear-gradient(97.25deg, #6bffe4 -70.76%, #5197ff 133.16%);
}
.popupWindow > .popup-container > .footer > .button:hover {
  background: #0068ff;
  background: linear-gradient(92.14deg, rgba(107, 255, 228, 0.66) -17.01%, rgba(81, 151, 255, 0.66) 112.14%);
}
.popupWindow > .popup-container > .footer > .button.cancel {
  background-color: transparent;
  background: transparent !important;
  color: black;
}
.popupWindow > .popup-container > .footer > .button.cancel:hover {
  background-color: #e6e9ef;
  background: #e6e9ef;
}
.silver-loader.loader-holder {
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100%;
  align-items: center;
  background: #ffffff3f;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
}
.personal-popup .silver-loader.loader-holder {
  border-radius: 20px;
}
.silver-loader.loader-holder .loader-block {
  display: flex;
  align-items: center;
  gap: 4px;
}
.silver-loader.loader-child {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  align-items: center;
  background: #ffffff5f;
  z-index: 1000;
  top: 0;
}
.silver-loader.loader-child.shown {
  display: flex;
}
.table-scheduler .popup-group,
.popup-group .popup-container > .head,
.popup-group .popup-container > .content.nice-scroll {
  background: #e2edff;
}
.popup-group .popup-container > .head {
  height: 30px;
}
.popup-group .popup-container > .content.nice-scroll {
  height: calc(100% - 30px);
  padding: 0 32px 30px 32px;
}
.i-rub:after {
  content: " \20BD";
  font-weight: 600;
}

.personal-popup .doc .name {
  display: flex;
}
.personal-popup .doc .name::before {
  content: "";
  display: block;
  background: url(/imgs/vectors/document.svg) 00 no-repeat;
  background-size: contain !important;
  width: 12px;
  height: 16px;
  margin-right: 6.5px;
}
.personal-popup .tab-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 16px;
}
.personal-popup .silver-textbox,
.personal-popup .silver-memo {
  outline: none;
  background: #e0edff;
  border-radius: 10px;
  width: 100%;
  min-height: 36px;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  border: none;
  padding: 8px 16px;
  color: #000000;
  overflow: hidden;
}
.personal-popup .silver-textbox[readonly="readonly"],
.personal-popup .silver-memo[readonly="readonly"] {
  opacity: 0.5;
  cursor: default;
}
.silver-control {
  position: relative;
}
.personal-popup .field-container.error .silver-textbox,
.personal-popup .field-container.error .custom-combo,
.auth-content .field-container.error .silver-textbox,
.popup-group .field.error .silver-textbox,
.auth-content .field-container .silver-control.error input {
  border: 1px solid red;
}
.popup-group .field.error {
  border: none;
}
.popup-group.no-slots .content > .error {
  display: none;
  color: red;
  text-align: center;
  font-size: 12px;
  line-height: 16px;
  margin-top: 8px;
}
.popup-group.no-slots .content > .error.active {
  display: block;
}
.popup-group.no-slots .flex-fields {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  
}
.popup-group.no-slots .flex-fields .field {
  width: 49%;
}
.popup-group.no-slots .field > div:first-child {
  font-weight: 600;
  font-size: 14px;
}
.popup-group.no-slots .field .silver-checkbox {
  display: flex;
  align-items: center;
}
.popup-group.no-slots .btn-blue {
  display: block;
  width: fit-content;
  margin: auto;
  margin-top: 8px;
}
.popup-group.no-slots .feedback-success {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  font-size: 20px;
  line-height: 24px;
}
.popup-group.no-slots .field {
  margin-bottom: 8px;
}
.personal-popup .field-container .error-text {
  display: none;
  color: red;
  font-size: 14px;
  line-height: 16px;
  margin-top: 5px;
}
.personal-popup .field-container.error .error-text {
  display: block;
}
.personal-popup .silver-control.silver-date {
  width: 100% !important;
}
.personal-popup .custom-combo {
  width: 100%;
  box-sizing: border-box;
  background: transparent;
  border-radius: 10px;
  outline: none;
  font-family: inherit;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  min-height: 36px;
  transition: border-color 0.2s;
  position: relative;
  overflow: initial;
  padding: 0;
}
.custom-combo.disabled {
  opacity: 0.5;
}
.personal-popup .custom-combo.disabled > .combo-container,
.personal-popup .custom-combo.disabled > .combo-container > .name,
.custom-combo.disabled > .combo-container {
  cursor: default;
}
.personal-popup .custom-combo > .combo-container {
  background: #e0edff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 8px 16px;
  cursor: pointer;
  height: auto;
}
.personal-popup .custom-combo > .combo-container > .name {
  width: 100%;
  text-align: left;
  margin-right: 5px;
  text-shadow: none;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  user-select: none;
  height: initial;
  cursor: pointer;
}
.personal-popup .custom-combo > .combo-container > input {
  border: none;
  outline: none;
  background: transparent;
  margin: 0;
  height: 36px;
  width: 95%;
  padding: 0px;
  text-align: left;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}
.personal-popup .custom-combo > .combo-dropdown {
  position: absolute;
  width: 100%;
  min-height: 200px;
  max-height: 300px;
  top: 38px;
  left: 0px;
  border-radius: 8px;
  background: white;
  box-shadow: -4px 5px 18px rgba(29, 42, 68, 0.13);
  transition: opacity 0.1s;
  transition: opacity 0.1s;
  box-sizing: border-box;
  outline: none;
  z-index: 99;
  overflow: hidden;
}
.personal-popup .custom-combo > .combo-dropdown > .combo-filter {
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 8px 8px 0 0;
  border: none;
  height: 48px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f1f1f5;
}
.personal-popup .custom-combo > .combo-dropdown > .combo-filter > input {
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-radius: 8px 8px 0 0;
  border: none;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  background: inherit;
  text-align: left;
  box-shadow: none;
  width: 100%;
}
.personal-popup .custom-combo > .combo-dropdown {
  z-index: 1010;
}
.personal-popup .custom-combo > .combo-dropdown > .combo-filter:before {
  content: " ";
  width: 20px;
  display: inline-block;
  background: red;
}
.personal-popup .custom-combo > .combo-dropdown > .combo-items {
  width: 100%;
  max-height: 200px;
  overflow: auto;
  padding: 10px 0px;
  box-sizing: border-box;
  border-radius: 0 0 8px 8px;
  background: inherit;
  height: 100%;
}
.personal-popup .custom-combo > .combo-dropdown > .combo-items > .item {
  width: 100%;
  height: 34px;
  padding: 0px 20px;
  display: flex;
  align-items: center;
  background: inherit;
  color: #000;
  box-shadow: none;
  text-shadow: none;
  color: #556066;
  box-sizing: border-box;
  cursor: pointer;
  user-select: none;
  font-weight: normal;
  font-size: 14px;
  text-align: left;
}
.personal-popup .custom-combo > .combo-dropdown > .combo-items > .item:hover {
  background: #ebeff3;
  color: #262b43;
}
.personal-popup .custom-combo > .combo-dropdown > .combo-items > .item > span {
  display: block;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  box-sizing: border-box;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
}
.personal-popup .custom-combo > .combo-container > .carret {
  background: url(/imgs/vectors/arrow.svg) 0 0 no-repeat;
  width: 12px;
  height: 7px;
  margin-left: 11px;
  position: relative;
}
.personal-popup .silver-textbox,
.personal-popup .silver-memo {
  font-size: 14px;
}
.personal-popup .document-holder:not(:nth-last-child(2)):after {
  content: "";
  display: block;
  margin: 28px 0;
  width: 100%;
  height: 1px;
  background: #6c788a;
}
.personal-popup.solo-document .document-holder:not(:nth-last-child(2)):after {
  display: none;
}
.personal-popup .document .flex-files,
.personal-popup .document .newfiles-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
}
.personal-popup .document .flex-files {
  flex-wrap: wrap;
  gap: 12px 32px;
}
.personal-popup .document .flex-files.server a {
  color: #222222;
}
.personal-popup .document .flex-files.server {
  margin-bottom: 16px;
}
.personal-popup .document .flex-files.server .doc:hover .text {
  text-decoration: underline;
}
.personal-popup .document .add-file {
  width: fit-content;
  color: initial;
  user-select: none;
}
.personal-popup .document .add-file:hover {
  text-decoration: underline;
  color: initial;
}
.personal-popup .document .clip {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #5097f4;
  width: 32px;
  height: 32px;
  margin-right: 12px;
}
.personal-popup .document .clip:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(/imgs/vectors/clip.svg) 00 no-repeat;
  background-size: contain;
}
.personal-popup .fields-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: start;
  flex-wrap: wrap;
  gap: 16px 0;
  width: 100%;
  height: 100%;
  margin-bottom: 16px;
}
.personal-popup .group-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: #000000;
  margin-bottom: 24px;
}
.personal-popup .field-container {
  position: relative;
  min-width: 256px;
  margin-right: 60px;
  min-height: 85px;
}
.personal-popup .field-container.full {
  width: 100%;
  max-width: 100%;
}
.personal-popup .document {
  margin-bottom: 24px;
}
.personal-popup .document .newfiles-container {
  margin-bottom: 24px;
  margin-top: 12px;
}
.personal-popup .document .flex-files .doc {
  max-width: 250px;
  width: 100%;
}
.personal-popup .document .flex-files .name .text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
  width: 100%;
  padding-left: 22px;
}
.personal-popup .document .name::before {
  position: absolute;
  left: 0;
}
.personal-popup .document .flex-files {
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.personal-popup .document .status {
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  margin-bottom: 16px;
}
.personal-popup .document .status.approved {
  color: green;
}
.personal-popup .document .status.error {
  color: red;
}
.personal-popup .document .status::before {
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  background-size: contain !important;
  margin-right: 8px;
}
.personal-popup .document .status.empty {
  display: none;
}
.personal-popup .document .status.wait::before {
  background: url(/imgs/vectors/clock-wait.svg) 00 no-repeat;
}
.personal-popup .document .status.approved::before {
  background: url(/imgs/vectors/clock-approved.svg) 00 no-repeat;
}
.personal-popup .document .status.error::before {
  background: url(/imgs/vectors/clock-error.svg) 00 no-repeat;
}
.personal-popup .document .status {
  flex-wrap: wrap;
}
.personal-popup .document .status .manager-remark {
  margin-left: 27px;
}
.personal-popup .document .flex-btns {
  display: flex;
  align-items: center;
  gap: 16px;
}
.personal-popup .document .btn-personal {
  display: flex;
  align-items: center;
  background: #5097f4;
  border-radius: 50px;
  padding: 8px 18px;
  color: #fff;
  transition: linear 0.2s;
  width: initial;
  height: initial;
  cursor: pointer;
  user-select: none;
}
.personal-popup .document .btn-personal:hover {
  background: #8fbffe;
  color: #fff;
}
.personal-popup .field-container .error-text {
  font-size: 12px;
  line-height: 14px;
}
.personal-popup .document-holder .add-document {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #7e7e7e;
  cursor: pointer;
}
.personal-popup .document-holder .add-document::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url(/imgs/vectors/plus-add.svg) 00 no-repeat;
  background-size: contain !important;
  margin-right: 8px;
}
.personal-popup .document-holder .add-document:hover {
  text-decoration-line: underline;
}
.personal-popup .document .newfiles-container .file-msg,
.personal-popup .document .newfiles-container .file-msg-error {
  font-size: 12px;
  line-height: 14px;
  color: #949494;
  user-select: none;
  font-style: italic;
}
.personal-popup .document .newfiles-container .file-msg,
.personal-popup .document .newfiles-container .file-msg-error {
  margin-top: 8px;
}
.personal-popup .document .newfiles-container .file-msg-error {
  display: none;
  color: red;
}
.personal-popup .document .newfiles-container .file-msg-error.show {
  display: block;
}
.personal-popup > .popup-container > .head {
  position: relative;
  height: 40px;
}
.personal-popup > .popup-container .content.nice-scroll {
  height: calc(100% - 40px);
  padding: 0;
  background: #f8f9ff;
}
.personal-popup.error > .popup-container .content.nice-scroll {
  height: calc(100% - 40px);
  padding: 0;
  background: #f8f9ff;
}
.personal-popup > .popup-container .content.nice-scroll::-webkit-scrollbar {
  width: 8px;
  background-color: #c8e0ff;
  border-radius: 10px;
}
.personal-popup > .popup-container .content.nice-scroll::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #5097f4;
  border: 2px solid #c8e0ff;
}
.personal-popup > .popup-container .content.nice-scroll::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 10%);
  background-color: #f5f5f5;
  border-radius: 5px;
}
.personal-popup .personal-popup-content {
  position: relative;
  padding: 0 56px;
  padding-top: 8px;
  height: 100%;
  
}
.personal-popup .personal-popup-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  text-align: center;
  gap: 24px 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}
.personal-popup .personal-popup-header > div:first-child {
  font-weight: 600;
}
.personal-popup .personal-popup-header .flex-steps {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0 40px;
}
.personal-popup .personal-popup-header .flex-steps .step {
  text-align: center;
  cursor: not-allowed;
}
.personal-popup .personal-popup-header .flex-steps .step.confirmed {
  cursor: pointer;
}
.personal-popup .personal-popup-header .flex-steps .step.active {
  cursor: default;
}
.personal-popup .personal-popup-header .flex-steps .step.confirmed .text::after,
.personal-popup .personal-popup-header .flex-steps .step.error .text::after {
  content: "";
  display: block;
  background: url(/imgs/vectors/clock-approved.svg) 00 no-repeat;
  width: 16px;
  height: 16px;
  background-size: contain !important;
  flex: 0 0 auto;
}
.personal-popup .personal-popup-header .flex-steps .step.error .text::after {
  background: url(/imgs/vectors/clock-error.svg) 00 no-repeat;
}
.personal-popup .personal-popup-header .flex-steps .text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}
.personal-popup .personal-popup-header .flex-steps .strip {
  display: block;
  width: 128px;
  height: 8px;
  border-radius: 50px;
  background: #fff;
}
.personal-popup .personal-popup-header .flex-steps .step.active .strip {
  background: #5097f4;
}
.personal-popup .personal-popup-body {
  position: relative;
  overflow: auto;
  padding: 48px 0;
  padding-bottom: 28px;
  
}
.personal-popup.newEmployee .personal-popup-content {
  padding-left: 34px;
  padding-right: 20px;
}
.personal-popup.newEmployee .flex-fields {
  gap: 16px 60px;
}
.personal-popup.newEmployee .btn-next {
  margin-top: 24px;
}
.personal-popup.newEmployee .personal-popup-body {
  padding-top: 20px;
}
.personal-popup.newEmployee .email-button {
  margin-top: 34px;
}
.personal-popup.solo-document .personal-popup-body {
  padding: 10px 0;
}
.personal-popup .tb-name {
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 16px;
}
.personal-popup .flex-fields {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 32px 60px;
}
.personal-popup .field-container {
  min-width: 240px;
  max-width: 240px;
  margin: 0;
}
.personal-popup .flex-email {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.personal-popup .flex-email .error-email {
  display: none;
  color: red;
  font-size: 12px;
  line-height: 15px;
  margin-top: 16px;
}
.personal-popup.newEmployee .flex-email {
  align-items: flex-start;
}
.personal-popup .field-container.tiny .silver-control,
.personal-popup .field-container.tiny .custom-combo {
  max-width: 156px;
}
.personal-popup .btn-next {
  display: flex;
  align-items: center;
  background: #5097f4;
  border-radius: 50px;
  padding: 8px 24px;
  color: #fff;
  line-height: 19px;
  transition: linear 0.2s;
  width: fit-content;
  margin: auto;
  margin-top: 48px;
}
.personal-popup .btn-next::after {
  content: "";
  display: inline-block;
  background: url(/imgs/vectors/arrow-left-white.svg) 00 no-repeat;
  transform: rotate(180deg);
  background-size: contain;
  width: 16px;
  height: 7px;
  margin-left: 8px;
  background-size: cover !important;
  filter: none !important;
}
.personal-popup .btn-next.no-arrow::after {
  display: none;
}
.personal-popup .btn-next.end::after {
  display: none;
}
.personal-popup .btn-next:hover {
  background: #8fbffe;
  color: #fff;
  text-decoration: none;
}
.personal-popup .fields-container {
  gap: 16px 80px;
}
.personal-popup .slide-error {
  display: none;
  text-align: center;
  margin-top: 16px;
  color: red;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}
.personal-popup .slide-error.active {
  display: block;
}
.personal-popup.employees-list > .popup-container .content.nice-scroll {
  height: calc(100% - 40px);
  overflow: hidden;
}
.personal-popup.employees-list .personal-popup-header {
  margin-bottom: 16px;
  padding-bottom: 16px;
  gap: 32px;
  color: #5097f4;
  border-bottom: 1px solid #a7b4c7;
}
.personal-popup.employees-list .search-box .input-field .search {
  background: #e2edff;
  border: none;
}
.personal-popup.employees-list .search-box .input-field .search:focus-visible {
  background: #e2edff;
}
.personal-popup.employees-list .search-box .loupe::before {
  filter: invert(51%) sepia(9%) saturate(711%) hue-rotate(177deg) brightness(90%) contrast(91%);
}
.personal-popup.employees-list .personal-popup-body {
  padding: 0;
  padding-bottom: 32px;
}
.personal-popup.employees-list > .popup-container > .head {
  padding-bottom: 0;
}
.personal-popup.employees-list .personal-popup-content {
  height: 100%;
  overflow: hidden;
  padding-top: 0;
}
.personal-popup.employees-list .search-box .input-field {
  margin-bottom: 32px;
}
.personal-popup.employees-list .employees-container {
  display: flex;
  flex-direction: column;
  overflow: auto;
  gap: 16px;
  max-height: 442px;
  height: 100%;
}
.personal-popup.employees-list .employees-container::-webkit-scrollbar {
  height: 8px;
  width: 8px;
  background-color: #c8e0ff;
  border-radius: 10px;
}
.personal-popup.employees-list .employees-container::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #5097f4;
  border: 2px solid #c8e0ff;
}
.personal-popup.employees-list .employees-container::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 10%);
  background-color: #f5f5f5;
  border-radius: 10px;
}
.personal-popup.employees-list .employees-container .employee {
  gap: 16px;
}
.personal-popup.employees-list .employees-container .no-results {
  display: none;
}
.personal-popup.employees-list .employees-container .no-results.shown {
  display: block;
}
.personal-popup.employees-list .employees-container .employee .avatar {
  display: block;
  flex: 0 0 auto;
  background-position: center center !important;
  background-size: contain !important;
  border-radius: 50%;
  width: 32px;
  height: 32px;
}
.personal-popup.employees-list .employees-container .employee .name {
  width: 100%;
}
.personal-popup.employees-list .employees-container .employee .name .status {
  display: flex;
  align-items: center;
  gap: 8px;
}
.personal-popup.employees-list .employees-container .employee .name .status,
.basket-body .basket-items-section .basket-item-container.aditional .employees-container .employee .name .user-status {
  font-size: 10px;
  line-height: 12px;
  
  color: #a7b4c7;
}
.basket-body .basket-items-section .basket-item-container.aditional .employees-container .employee .name .user-status {
  margin-top: 4px;
}
.personal-popup.employees-list .employees-container .employee .name .status.yellow,
.basket-body .basket-items-section .basket-item-container.aditional .employees-container .employee .name .user-status.yellow {
  color: #f8b24a;
}
.personal-popup.employees-list .employees-container .employee .name .status.green,
.basket-body .basket-items-section .basket-item-container.aditional .employees-container .employee .name .user-status.green {
  color: #24cc85;
}
.personal-popup.employees-list .employees-container .employee .name .status.red,
.basket-body .basket-items-section .basket-item-container.aditional .employees-container .employee .name .user-status.red {
  color: #e84444;
}
.personal-popup.employees-list .employees-container .employee .appoint {
  margin-right: 8px;
}

.custom-slider {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}
.custom-slider > .slides {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.custom-slider > .slides > .slide {
  position: absolute;
  top: 0;
  left: 105%;
  width: 100%;
  
  padding: 0px;
  box-sizing: border-box;
  transition: all 0.2s;
  transition: all 0.2s;
  overflow: auto;
}
.custom-slider > .slides > .slide:first-child {
  left: 0;
}

.basket-body {
  position: relative;
  background-color: transparent;
  height: 100%;
  width: 100%;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #222222;
}
.basket-body .basket-container {
  position: relative;
  padding: 30px 62px;
  height: 100%;
  width: 100%;
  max-width: 1280px;
  margin: auto;
}
.basket-body .basket-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  color: #3977c8;
  gap: 32px;
  align-items: flex-end;
  margin-bottom: 38px;
}
.basket-body .person-type,
.auth-content .person-type,
.account-holder .person-type {
  position: relative;
  background: #ffffff;
  border-radius: 22.3398px;
  width: fit-content;
  
}
.auth-content .person-type {
  margin-bottom: 32px;
}
.account-holder .person-type {
  border: 1px solid #3977c8;
}
.basket-body .person-type a,
.auth-content .person-type a {
  font-weight: 300;
  font-size: 14px;
  line-height: 18px;
  color: #000000;
  padding: 7px 19px;
  z-index: 11;
}
.account-holder .person-type a {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #000000;
  padding: 7px 19px;
  z-index: 11;
}
.basket-body .person-type.left .legal,
.basket-body .person-type.right .individ,
.auth-content .person-type.left .legal,
.auth-content .person-type.right .individ,
.account-holder .person-type.left .left,
.account-holder .person-type.right .right {
  font-weight: 500;
  color: #fff;
}
.basket-body .person-type a:hover,
.basket-body .person-type a:focus,
.basket-body .person-type a:target,
.auth-content .person-type a:hover,
.auth-content .person-type a:focus,
.auth-content .person-type a:target,
.account-holder .person-type a:hover,
.account-holder .person-type a:focus,
.account-holder .person-type a:target {
  text-decoration: none;
}
.basket-body .person-type .switch,
.auth-content .person-type .switch,
.account-holder .person-type .switch {
  position: absolute;
  top: 0;
  background: #3977c8;
  
  height: 100%;
  width: 50%;
  border-radius: 22.3398px;
  z-index: 10;
  transition: linear 0.1s;
}
.account-holder .person-type .switch {
  width: 97px;
}
.basket-body .person-type.right .switch,
.auth-content .person-type.right .switch,
.account-holder .person-type.right .switch {
  left: 100%;
  transform: translateX(-100%);
  transition: linear 0.1s;
}
.basket-body .person-type.left .switch,
.auth-content .person-type.left .switch,
.account-holder .person-type.left .switch {
  transform: translateX(0);
  left: 0;
  transition: linear 0.1s;
}
.basket-body .basket-items-holder {
  align-items: stretch;
  margin-bottom: 24px;
}
.basket-body .basket-items-holder .empty-basket {
  margin: auto;
  font-size: 26px;
  line-height: 30px;
  color: #19297c;
}
.basket-body .basket-items-section {
  position: relative;
  border-right: 1px solid #bdbdbd;
}
.basket-body .basket-items-section.main {
  max-width: 815px;
  width: 100%;
  padding-right: 57px;
}
.basket-body .basket-items-section.main > .basket-item:not(:last-child) {
  margin-bottom: 16px;
}
.basket-body .basket-items-section.price {
  padding: 0 49px;
}
.basket-body .basket-items-section.total {
  padding: 0 44px;
}
.basket-body .basket-items-section .title-price {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #6c788a;
}
.basket-body .basket-items-section .basket-item-container {
  position: relative;
  border-radius: 10px;
  background: #c3d9ff;
  background: #fff;
  
  padding: 24px 16px 0;
  z-index: 100;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  padding-bottom: 8px;
  
}
.basket-body .basket-items-section .basket-item .item-part {
  position: relative;
  font-weight: 500;
}
.basket-body .basket-items-section .basket-item .item-part:not(:last-child)::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #6c788a;
  margin: 20px 0 13px 0;
}
.basket-body .basket-items-section .basket-item .item-part .item-context-menu {
  position: absolute;
  right: 0;
  top: 0;
}
.basket-body .basket-items-section .basket-item-container .type {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 8px;
}
.basket-body .basket-items-section .basket-item-container .text {
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 16px;
  margin-right: 64px;
  color: #5097f4;
}
.basket-body .basket-items-section .basket-item-container .address {
  color: #6c788a;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
}
.basket-body .basket-items-section .basket-item-container .status {
  display: flex;
  justify-content: flex-end;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 8px;
}
.basket-body .basket-items-section .basket-item-container .status span {
  display: flex;
  align-items: center;
  color: #7e7e7e;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
}
.basket-body .basket-items-section .basket-item-container .status span.approved {
  color: #36ab18;
}
.basket-body .basket-items-section .basket-item-container .status span.approved::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url(/imgs/vectors/square-approved.svg) 00 no-repeat;
  background-size: contain !important;
  margin: 0 8px;
}
.basket-body .basket-items-section .basket-item-container .status span.approving {
  color: #cf7c00;
}
.basket-body .basket-items-section .basket-item-container .status span.approving::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: url(/imgs/vectors/square-approving.svg) 00 no-repeat;
  background-size: contain !important;
  margin-left: 8px;
  margin-right: 4px;
  flex: 0 0 auto;
}
.basket-body .basket-items-section .basket-item-container .date-status {
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  color: #6c788a;
  text-align: end;
}
.basket-body .basket-items-section .basket-item-container .date {
  display: inline-block;
  font-weight: 500;
  color: #262b43;
}
.basket-body .basket-items-section .basket-item-container .diploma {
  display: flex;
  align-items: flex-start;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  color: #6c788a;
  gap: 8px;
  margin-bottom: 16px;
}
.basket-body .basket-items-section .basket-item-container .diploma::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  background: url(/imgs/vectors/diploma-little.svg) 00 no-repeat;
  background-size: contain !important;
  
  filter: invert(44%) sepia(8%) saturate(901%) hue-rotate(177deg) brightness(103%) contrast(85%);
  flex: 0 0 auto;
}
.basket-body .basket-items-section .basket-item-container .BVS {
  gap: 8px 16px;
  color: #fff;
  flex-wrap: wrap;
}
.basket-body .basket-items-section .basket-item-container .BVS > div {
  border-radius: 8px;
  padding: 4px 8px;
  background-color: #5097f4;
  color: #fff;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
}
.basket-body .basket-items-section .basket-item-container .section-name {
  gap: 49px;
  margin-bottom: 12px;
}
.basket-body .basket-items-section .basket-item-container .exam {
  display: flex;
  align-items: flex-start;
  font-weight: 300;
  font-size: 10px;
  line-height: 12px;
}
.basket-body .basket-items-section .basket-item-container .exam::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  background: url(/imgs/vectors/medal.svg) 00 no-repeat;
  background-size: contain !important;
  filter: invert(48%) sepia(87%) saturate(407%) hue-rotate(176deg) brightness(99%) contrast(94%);
}

.basket-body .basket-items-section .section-activities {
  font-size: 10px;
  font-weight: 500;
  line-height: 12px;
  gap: 20px;
}
.basket-body .basket-item-container.aditional {
  display: block;
  position: relative;
  
  background: #f1f6ff;
  background: #fff;
  
  z-index: 99;
  color: #626262;
  padding-top: 0;
  border-radius: 0;
}
.basket-body .basket-item .basket-item-container.aditional:nth-last-child(2) {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding-bottom: 24px;
}
.basket-body .basket-items-section .basket-item .basket-item-container:not(:nth-last-child(2))::after {
  content: "";
  display: block;
  margin-top: 16px;
  display: block;
  
  height: 0.5px;
  background: #a7b4c7;
  
}
.basket-body .basket-item-container::before {
  
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  
  box-shadow: 3px 5px 20px 0px rgba(0, 0, 0, 0.22);
}


.basket-body .basket-items-section .basket-item-container.aditional .BVS-row {
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 16px;
}
.basket-body .basket-items-section .basket-item-container.aditional .BVS {
  color: #626262;
}
.basket-body .basket-items-section .basket-item-container.aditional .BVS > div {
  background: #a7b4c7;
}
.basket-body .basket-items-section .basket-item-container.aditional .BVS-row .context-delete .context-menu-toggler {
  filter: invert(48%) sepia(13%) saturate(519%) hue-rotate(177deg) brightness(95%) contrast(91%);
}
.basket-body .basket-items-section .basket-item-container.aditional .BVS-row .context-delete .context-menu-container,
.basket-body .basket-items-section .basket-item-container.aditional .BVS-row .context-delete .context-menu-toggler {
  width: 16px;
  height: 16px;
}
.basket-body .basket-items-section .basket-item-container.aditional .BVS-row .context-delete .context-menu-container .context-menu {
  top: 15px;
}
.basket-body .basket-items-section .basket-item-container.aditional .type {
  color: #262b43;
}
.basket-body .basket-items-section .basket-item-container.aditional .type span {
  margin-left: 8px;
}
.basket-body .basket-items-section .basket-item-container.aditional .aditional-info {
  align-items: flex-start;
}
.basket-body .basket-items-section .basket-item-container.aditional .employees-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
.basket-body .basket-items-section .basket-item-container.aditional .employees-container .employee {
  position: relative;
}
.basket-body .basket-items-section .basket-item-container.aditional .employees-container .employee .name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  color: #000000;
}
.basket-body .basket-items-section .basket-item-container.aditional .employees-container .employee .delete {
  gap: 0 16px;
}

.basket-body .basket-items-section .basket-item-container.aditional .employees-container .name .icon {
  display: block;
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 100%;
  background: url(/imgs/vectors/account-dummy.svg) 00 no-repeat;
  background-size: contain !important;
}
.basket-body .basket-items-section .basket-item-container.aditional .employees-container .appoint,
.personal-popup.employees-list .employees-container .employee .appoint {
  display: block;
  padding: 6px 10px;
  font-weight: 500;
  color: #fff;
  background: #5097f4;
  border-radius: 50px;
  transition: linear 0.2s;
}
.basket-body .basket-items-section .basket-item-container.aditional .employees-container .appoint:focus,
.basket-body .basket-items-section .basket-item-container.aditional .employees-container .appoint:target,
.personal-popup.employees-list .employees-container .employee .appoint:focus,
.personal-popup.employees-list .employees-container .employee .appoint:target {
  background: #3977c8;
  color: #fff;
  text-decoration: none;
}
.basket-body .basket-items-section .basket-item-container.aditional .employees-container .appoint:hover,
.personal-popup.employees-list .employees-container .employee .appoint:hover {
  background: #3977c8;
  color: #fff;
  text-decoration: none;
}
.personal-popup.employees-list .btn-next {
  background: #fff;
  border: 1px solid #5097f4;
  color: #5097f4;
  transition: linear 0.2s;
  padding: 8px 16px;
  margin-top: 8px;
}
.personal-popup.employees-list .btn-next:hover {
  background: #fff;
  color: #3977c8;
  border-color: #3977c8;
}
.personal-popup.employees-list .btn-next:focus,
.personal-popup.employees-list .btn-next:target {
  border: 1px solid #5097f4;
  background: #fff;
  color: #5097f4;
}
.personal-popup.employees-list .btn-next:active {
  background: #fff;
  color: #5a60f1;
  border-color: #5a60f1;
}
.personal-popup.employees-list .employees-container .employee .appoint {
  padding: 9px 12px;
  font-size: 12px;
  line-height: 14px;
}
.basket-body .basket-items-section .basket-item-container.aditional .employees-container .appoint:active,
.personal-popup.employees-list .employees-container .employee .appoint:active {
  background: #5a60f1;
  color: #fff;
  text-decoration: none;
}
.basket-body .basket-items-section .basket-item-container.aditional .employees-container .appoint.disabled,
.basket-body .basket-items-section .basket-item-container.aditional .employees-container .appoint.disabled:hover {
  background: #a2c5f4;
  opacity: 0.65;
  cursor: default;
}
.basket-body .basket-items-section .basket-item-container.aditional .employees-container .price,
.basket-body .basket-items-section .basket-item-container .price {
  color: #626262;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  position: absolute;
  right: -181px;
  bottom: 11px;
  filter: drop-shadow(0px 4.81203px 6.01504px rgba(0, 0, 0, 0));
}
.basket-body .basket-items-section .basket-item-container.aditional .employees-container .price {
  right: -175px;
}
.basket-body .basket-items-section .basket-item-container .price {
  bottom: 39px;
}
.basket-body .basket-items-section .basket-item-container.aditional .personal-price {
  position: absolute;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  bottom: 24px;
  right: -158px;
  filter: drop-shadow(0px 4.81203px 6.01504px rgba(0, 0, 0, 0));
}
.basket-body .add-comment {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #6c788a;
  align-items: center;
  width: fit-content;
}
.basket-body .add-comment::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(/imgs/vectors/plus-grey.svg) 00 no-repeat;
  background-size: contain !important;
  flex: 0 0 auto;
  margin-right: 8px;
}
.basket-body .add-comment:hover,
.basket-body .add-comment:target,
.basket-body .add-comment:focus {
  text-decoration: none;
  color: initial;
}
.basket-body .comment {
  background: #ffffff;
  border-radius: 10px;
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #262b43;
  padding: 16px 24px;
  
  resize: none;
  opacity: 0;
  visibility: hidden;
  height: 1px;
  transition: linear 0.1s;
  margin-bottom: 32px;
}
.basket-body .comment.active {
  opacity: 1;
  visibility: visible;
  height: auto;
  min-height: 130px;
  margin-bottom: 64px;
}
.basket-body .comment:focus-visible {
  outline: none;
  background: #e0edff;
}
.basket-body .total-container {
  display: block;
  position: relative;
  padding: 38px 20px;
  background: #fff;
  box-shadow: 0px 4.81203px 6.01504px rgba(0, 0, 0, 0.22);
  border-radius: 12px;
  color: #626262;
}
.basket-body .total-container .total-price {
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  color: #000000;
  width: 100%;
  margin-bottom: 0;
}
.basket-body .total-container .total-price > div:first-child {
  font-size: 24px;
  line-height: 28px;
  color: #3977c8;
  font-weight: 600;
}
.basket-body .total-container .total-price > div:last-child {
  font-weight: 600;
}
.basket-body .total-container .total-items {
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  color: #262b43;
  margin-bottom: 16px;
}
.basket-body .total-container .total-form {
  display: block;
  position: relative;
  padding: 24px 0 0 16px;
  color: #000000;
  font-weight: 400;
  font-size: 19px;
  line-height: 23px;
  margin-bottom: 40px;
}
.basket-body .total-container .total-form .contract {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 22px;
  color: #3977c8;
  width: fit-content;
}
.basket-body .total-container .total-form .contract div {
  border-bottom: 1px dashed #3977c8;
}
.basket-body .total-container .total-form .contract::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(/imgs/vectors/offer.svg) 00 no-repeat;
  background-size: contain !important;
  margin-right: 10px;
}
.basket-body .total-container .total-form > div:nth-child(2) {
  margin-bottom: 10px;
}
.basket-body .total-container .total-form .checkboxes {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-left: 26px;
}
.basket-body .total-container .silver-checkbox input:checked:disabled + label.imposter + span {
  cursor: initial;
}
.basket-body .total-container input[type="radio"],
.basket-body .total-container input[type="checkbox"] {
  display: none;
}
.basket-body .total-container .silver-checkbox.checkbox-label {
  display: flex;
  align-items: center;
}
.basket-body .total-container .silver-checkbox.checkbox-label label {
  top: -2px;
  top: 0px;
}
.basket-body .total-container .silver-checkbox.checkbox-label label.imposter + span {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 19px;
  line-height: 23px;
  color: #000000;
}
.basket-body .total-container .silver-checkbox.checkbox-label label.imposter + span {
  user-select: none;
}
.basket-body .total-container .silver-checkbox.checkbox-label label.imposter + span em {
  background: #d6e7f9 none repeat 0 0;
  color: Black;
  font-style: normal;
}
.basket-body .total-container .silver-checkbox label:before,
.objects .btn.choose label:before {
  content: "";
  background-image: none;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #3977c8;
  border-radius: 3px;
  cursor: pointer;
}
.basket-body .total-container .silver-checkbox input:checked + label:before {
  background: url(/imgs/vectors/checked-arrow-white.svg) 00 no-repeat;
  background-position: center center;
  background-color: #3977c8;
}
.basket-body .total-container .total-form .checkboxes .silver-checkbox input:checked + label:before {
  background-size: 75% d !important;
}
.basket-body .total-container .total-form .checkboxes .silver-checkbox label:before,
.objects .btn.choose label:before {
  transform: scale(0.7);
}
.basket-body .total-container .total-form .checkboxes .silver-checkbox.checkbox-label label.imposter + span,
.basket-body .total-container .total-form .checkboxes .cb_label {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  cursor: pointer;
}
.basket-body .total-container .total-form .checkboxes .cb-container {
  align-items: center;
}
.basket-body .total-container .total-form a,
.basket-body .total-container .total-form .checkboxes .cb_label a {
  color: #000000;
  text-decoration: underline;
}
.basket-body .total-container .continue {
  display: block;
  position: relative;
  width: 100%;
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  color: #fff;
}
.basket-body .total-container .continue a {
  display: flex;
  padding: 10px 22px;
  background: #5097f4;
  border-radius: 60px;
  width: fit-content;
  margin: auto;
  transition: linear 0.2s;
  user-select: none;
}
.basket-body .total-container .continue a:hover,
.basket-body .total-container .continue a:focus,
.basket-body .total-container .continue a:target {
  background: #8fbffe;
  color: #fff;
  text-decoration: none;
}
.basket-body .total-container .continue a.disabled,
.basket-body .total-container .continue a.disabled:hover,
.basket-body .total-container .continue a.disabled:focus,
.basket-body .total-container .continue a.disabled:target {
  background: #a2c5f4;
  opacity: 0.65;
  cursor: default;
}
.basket-body .basket-item .item-total {
  position: absolute;
  font-size: 12px;
  line-height: 14px;
  font-weight: 600;
  bottom: 35px;
  right: -228px;
}
.basket-body .basket-items-section.main.physical .basket-item .item-total {
  bottom: 24px;
}
.context-menu-container {
  display: block;
  position: relative;
  border-radius: 80px;
  background: transparent;
  width: 24px;
  height: 24px;
  text-align: center;
}
.context-menu-container .context-menu-toggler {
  color: #3977c8;
  font-size: 24px;
  line-height: 12px;
  transition: opacity 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: opacity 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  user-select: none;
}
.context-menu-container .context-menu-toggler {
  cursor: pointer;
  width: 24px;
  height: 24px;
  background: url(/imgs/vectors/context-menu28.svg) 00 no-repeat;
  background-size: contain;
}
.context-menu-container .context-menu-toggler:hover,
.context-menu-container .context-menu-toggler:focus,
.context-menu-container .context-menu-toggler:target {
  filter: invert(41%) sepia(80%) saturate(983%) hue-rotate(191deg) brightness(84%) contrast(84%);
}
.context-menu-container .context-menu-toggler:active {
  filter: invert(41%) sepia(62%) saturate(879%) hue-rotate(205deg) brightness(90%) contrast(112%);
}
.context-menu-container .context-menu {
  display: none;
  min-height: 40px;
  transition: all 0.04s linear 0.02s;
  background-color: white;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.16), 0 0 1px 0 rgba(0, 0, 0, 0.16);
  overflow: visible;
  z-index: 99;
  padding: 5px;
  border-radius: 4px;
  width: 300px;
  position: absolute;
  top: 20px;
  text-align: left;
}
.context-menu-container .context-menu.right {
  right: 5px;
}
.context-menu-container .context-menu.left {
  left: 5px;
}
.context-menu-container:hover .context-menu {
  display: block;
}
.context-menu-container .context-menu ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}
.context-menu-container .context-menu ul li {
  padding: 7px;
  cursor: pointer;
  padding-left: 20px;
  border-radius: 4px;
  font-size: 14px;
  user-select: none;
}
.context-menu-container .context-menu ul li:hover {
  background: #f2f6fa;
  color: #181717;
}
.context-menu-container .context-menu ul li.disabled {
  cursor: default;
  color: #969696;
}
.context-menu-container .context-menu ul li.disabled:hover {
  background: unset;
}
.context-menu-container .context-menu.up {
  top: unset;
  
}
.context-menu-container.popup-menu {
  margin-right: 8px;
  width: 19px;
  height: 19px;
}
.context-menu-container.popup-menu .context-menu-toggler {
  width: 19px;
  height: 19px;
}
.context-menu-container.popup-menu .context-menu {
  top: 15px;
}
.context-menu-container.popup-menu .context-menu ul li {
  font-weight: 500;
}
.personal-popup.error-popup .head .title {
  font-size: 20px;
  line-height: 20px;
}
.personal-popup.error-popup .error-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 32px;
}
.personal-popup.error-popup .error-container .error-title {
  font-weight: 500;
  margin-bottom: 16px;
}
.personal-popup.error-popup .error-container .btn-blue {
  margin-top: 16px;
}
.personal-popup.error-popup .error-container .tab-fields {
  width: 100%;
  gap: 36px;
  justify-content: space-between;
}
.personal-popup.error-popup .error-container .tab-fields.withWrap {
  flex-wrap: wrap;
  gap: 8px;
}


.auth-content {
  background: #f8f9ff;
}
.auth-content .auth-popup-content {
  position: relative;
  padding-bottom: 24px;
}
.auth-content .auth-popup-content .no-error {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
}
.auth-content > .popup-container > .content.nice-scroll {
  height: calc(100% - 48px);
  background: #f8f9ff;
  padding: 0;
}
.auth-content > .popup-container > .content.nice-scroll::-webkit-scrollbar {
  height: 8px;
  width: 8px;
  background-color: #c8e0ff;
  border-radius: 10px;
}
.auth-content > .popup-container > .content.nice-scroll::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #5097f4;
  border: 2px solid #c8e0ff;
}
.auth-content > .popup-container > .content.nice-scroll::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 10%);
  background-color: #f5f5f5;
  border-radius: 10px;
}
.auth-content .auth-content-content {
  position: relative;
  width: 336px;
}
.auth-content .title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  margin-bottom: 32px;
}
.auth-content .field-container {
  margin-bottom: 16px;
}
.auth-content .tb-name {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #7e7e7e;
  margin-bottom: 10px;
  text-align: left;
}
.auth-content .tb-name.small {
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 12px;
}
.auth-content .silver-textbox {
  outline: none;
  background: #e0edff;
  border-radius: 10px;
  width: 100%;
  min-height: 36px;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  border: none;
  padding: 8px 16px;
  color: #000000;
}
.auth-content .btn-blue {
  display: block;
  background: #5097f4;
  border-radius: 50px;
  padding: 8px 106px;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  transition: linear 0.2s;
  width: fit-content;
  height: fit-content;
  margin: auto;
  margin-bottom: 32px;
}
.auth-content .btn-blue:hover {
  
  background: #3977c8;
  color: #fff;
}
.auth-content .field-container .silver-control {
  margin-bottom: 8px;
}
.auth-content .register {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
}
.auth-content .register a {
  color: inherit;
  text-decoration: underline;
  font-weight: 700;
}
.auth-content .register .btn-leaderID{
  display: block;
  background: url(/imgs/vectors/btnLeaderID.svg) 00 no-repeat;
  width: 306px;
  height: 43px;
  margin: auto;
  filter: drop-shadow(0px 4px 20px rgba(83, 93, 150, 0.1));
}
.auth-content .register-tb {
  position: relative;
  width: 100%;
  gap: 0 48px;
  margin-bottom: 48px;
}
.auth-content .register-tb .left {
  max-width: 336px;
  width: 100%;
}
.auth-content .register-tb .right {
  max-width: 208px;
  width: 100%;
  align-self: flex-end;
}
.auth-content #Captcha img {
  width: 208px;
}
.auth-content #Captcha img.loader {
  width: auto;
}
.auth-content #Captcha ul {
  font-size: 10px;
  line-height: 10px;
  margin-top: 16px !important;
}
.auth-content .register-tb .left #Captcha ul {
  position: absolute;
}
.auth-content #Captcha ul span::before {
  display: none;
}
.auth-content .form-group.error input {
  border: 1px solid red;
}
.auth-content .form-group {
  margin-bottom: 47px;
}
.auth-content .error-text {
  display: none;
  color: red;
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 16px;
  text-align: center;
}
.auth-content .error-text.active {
  display: block;
}
.auth-content .forgot {
  color: #337ab7;
}
.auth-content .message {
  margin-bottom: 32px;
  font-size: 20px;
  line-height: 24px;
}
.auth-content .field-container .error-text,
.auth-content .field-container .error-message {
  display: none;
  color: red;
  font-size: 12px;
  line-height: 12px;
  text-align: left;
  margin-top: 8px;
}
.auth-content .field-container.error .error-text,
.auth-content .field-container .silver-control.error .error-message {
  display: block;
}
.auth-content .btn-university {
  position: relative;
  display: flex;
  background: #fff;
  border-radius: 5px;
  padding: 4px 16px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #000;
  transition: linear 0.2s;
  width: fit-content;
  height: fit-content;
  margin: auto;
  margin-bottom: 16px;
  align-items: center;
  gap: 8px;
  filter: drop-shadow(0px 4px 20px rgba(83, 93, 150, 0.1));
}
.auth-content .btn-university .logo {
  display: block;
  background: url(/imgs/vectors/uni2035.png) 00 no-repeat;
  width: 60px;
  height: 35px;
  background-size: cover;
}
.auth-content .btn-university .separator {
  display: block;
  position: relative;
  height: 20px;
  width: 1px;
  background: #000;
}
.auth-content .btn-university:hover {
  filter: drop-shadow(0px 4px 20px rgba(83, 93, 150, 0.2));
}


.manager-popup .ft-editor {
  position: relative;
  height: 100%;
}
.manager-popup > .popup-container .content.nice-scroll {
  height: calc(100% - 40px);
}
.manager-popup > .popup-container > .head {
  background: #ddefff;
}
.manager-popup > .popup-container > .head > span {
  font-size: 18px;
  line-height: 18px;
}
.manager-popup .content {
  background: #ddefff;
}
.manager-popup .content .error-text {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 20px;
  line-height: 24px;
  height: 100%;
}
.manager-popup .message-contact {
  padding: 6px 32px;
  background: #ddefff;
  gap: 16px;
}
.manager-popup .message-contact .avatar {
  display: block;
  width: 73px;
  height: 56px;
  background-position: center center !important;
  background-size: contain !important;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}
.manager-popup .message-contact a {
  color: #337ab7;
  text-decoration: underline;
}
.manager-popup .message-contact a:nth-child(2)::after {
  content: "";
  border: 1px solid #000;
  margin-left: 16px;
}
.manager-popup .message-contact .contacts {
  gap: 16px;
}
.manager-popup .message-contact .contact-data > div:nth-child(1) {
  padding-right: 100px;
}
.manager-popup .message-contact .ticket-date {
  position: absolute;
  right: 30px;
  top: 6px;
}
.manager-popup .message-contact .ticket-date .opened {
  color: #f8b24a;
}
.manager-popup .message-contact .ticket-date .closed {
  color: #24cc85;
}
.manager-popup .ticket-chat {
  position: relative;
  height: 100%;
}
.manager-popup .contact-chat {
  display: flex;
  position: relative;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 0px;
  overflow: auto;
  background: #f1f6ff;
  padding: 10px 20px;
}
.manager-popup .contact-chat::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #e2edff;
  border-radius: 10px;
}
.manager-popup .contact-chat::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #5097f4;
  border: 2px solid #e2edff;
}
.manager-popup .contact-chat::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 10%);
  background-color: #e2edff;
  border-radius: 5px;
}
.manager-popup .contact-chat .message {
  position: relative;
  display: flex;
  flex-direction: column;
  width: calc(100% - 20px);
}
.manager-popup .contact-chat .message.blue {
  align-items: flex-end;
}
.manager-popup .contact-chat .message .time {
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 8px;
  font-weight: 400;
  margin-left: 12px;
  color: #3977c8;
}
.manager-popup .contact-chat .message.blue .time {
  margin-right: 12px;
}
.manager-popup .contact-chat .message .message-block {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  max-width: calc(100% - 15px);
}
.manager-popup .contact-chat .message .cut {
  display: block;
  position: relative;
  align-self: flex-end;
  background: #fff;
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
}
.manager-popup .contact-chat .message .cut::before {
  content: "";
  display: block;
  position: absolute;
  right: 1px;
  bottom: 0;
  border-radius: 50%;
  background: #f1f6ff;
  width: 30px;
  height: 40px;
}
.manager-popup .contact-chat .message.blue .cut {
  background: #ddefff;
  width: 12px;
}
.manager-popup .contact-chat .message.blue .cut::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  bottom: 0;
  border-radius: 50%;
  background: #f1f6ff;
  width: 30px;
  height: 40px;
}
.manager-popup .contact-chat .message .text {
  position: relative;
  min-width: 60px;
  max-width: calc(100% - 15px);
  padding: 10px 8px 10px 12px;
  background-color: #fff;
  border-radius: 15px 15px 15px 0px;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  font-size: 15px;
  line-height: 18px;
  padding-right: 36px;
}
.manager-popup .contact-chat .message .text .time {
  position: absolute;
  font-size: 10px;
  font-weight: 400;
  line-height: 12px;
  color: #6c788a;
  margin: 0;
  bottom: 4px;
  right: 8px;
}
.manager-popup .contact-chat .message.blue .text .time {
  right: 4px;
}
.manager-popup .contact-chat .message .message-block .text > .name {
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  
}
.manager-popup .contact-chat .message.blue .text {
  background: #ddefff;
  border-radius: 15px 15px 0 15px;
}
.manager-popup .contact-chat .message .message-files {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 8px;
}
.manager-popup .contact-chat .message .message-files .doc {
  color: #222222;
}
.manager-popup .contact-chat .message .message-files .doc .name {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 190px;
  margin-right: 8px;
  margin-left: 6px;
  font-size: 12px;
}
.manager-popup .contact-chat .message .message-files .doc:hover .name {
  color: initial;
  text-decoration: underline;
}
.manager-popup .contact-chat .message .message-files .doc::before {
  content: "";
  display: block;
  background: url(/imgs/vectors/document.svg) 00 no-repeat;
  background-size: contain;
  width: 11px;
  height: 15px;
  filter: brightness(0) saturate(100%) invert(44%) sepia(32%) saturate(3256%) hue-rotate(208deg) brightness(101%) contrast(102%);
}
.manager-popup .contact-chat .doc .size {
  font-size: 12px;
}
.manager-popup .textarea-container .doc {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #262b43;
  flex-wrap: wrap;
}
.manager-popup .textarea-container .doc .name {
  display: flex;
}
.manager-popup .textarea-container .doc::before {
  content: "";
  display: block;
  background: url(/imgs/vectors/document.svg) 00 no-repeat;
  background-size: contain;
  width: 11px;
  height: 15px;
  margin-right: 6.5px;
  filter: brightness(0) saturate(100%) invert(44%) sepia(32%) saturate(3256%) hue-rotate(208deg) brightness(101%) contrast(102%);
}
.manager-popup .textarea-container .doc > .flex-row {
  margin-left: 18px;
}
.manager-popup .textarea-container {
  display: block;
  background: #fff;
  width: 100%;
  padding: 32px 24px;
  border: 1px solid #e2e8f6;
  border-radius: 20px;
}
.manager-popup .textarea-container textarea {
  display: block;
  resize: none;
  border: none;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  margin-bottom: 16px;
  width: 100%;
  min-height: 80px;
  max-height: 180px;
  background: #fff;
}
.manager-popup .textarea-container textarea:focus-visible {
  outline: none;
}
.manager-popup .textarea-container textarea::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #e2edff;
  border-radius: 10px;
}
.manager-popup .textarea-container textarea::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #5097f4;
  border: 2px solid #e2edff;
}
.manager-popup .textarea-container textarea::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 10%);
  background-color: #e2edff;
  border-radius: 5px;
}
.manager-popup .textarea-container > .flex-row {
  align-items: flex-start;
  gap: 16px;
}
.manager-popup .textarea-container .newfiles-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
}
.manager-popup .textarea-container .newfiles-container .flex-files {
  flex-wrap: wrap;
  gap: 12px 32px;
}
.newfiles-container{
  position: relative;
  .filesLoader{
    display: flex;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    background: #ffffff7a;
  }
}
.manager-popup .textarea-container .add-file {
  width: fit-content;
  color: initial;
  user-select: none;
}
.manager-popup .textarea-container .add-file:hover {
  text-decoration: underline;
  color: initial;
}
.manager-popup .textarea-container .clip {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #a7b4c7;
  width: 32px;
  height: 32px;
  margin-right: 12px;
}
.manager-popup .textarea-container .clip:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(/imgs/vectors/clip.svg) 00 no-repeat;
  background-size: contain;
}
.manager-popup .textarea-container .send {
  display: block;
  padding: 6px 19px;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  background: #5097f4;
  color: #fff;
  border-radius: 50px;
  transition: linear 0.2s;
  width: fit-content;
  float: right;
}
.manager-popup .textarea-container .send:hover,
.manager-popup .textarea-container .send:focus {
  background: #8fbffe;
  color: #fff;
}
.manager-popup .textarea-container .doc .name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 190px;
  margin-left: 18px;
}
.manager-popup .textarea-container .doc::before {
  position: absolute;
}
.manager-popup .textarea-tile-container {
  position: relative;
  background: #f1f6ff;
}
.manager-popup .textarea-tile-container .error-text {
  display: none;
}
.manager-popup .textarea-tile-container.error .error-text {
  display: block;
  position: absolute;
  top: 90px;
  left: 26px;
  color: red;
  font-size: 12px;
  margin-top: 8px;
}
.manager-popup .textarea-tile-container.error .textarea-container {
  border-color: red;
}
.manager-popup .doc .name::before {
  display: none;
}
.manager-popup .textarea-tile-container .manager-actions .custom-combo {
  margin-bottom: 16px;
  max-width: 250px;
}
.manager-popup .custom-combo > .combo-dropdown {
  min-height: 60px !important;
}
.manager-popup .custom-combo > .combo-dropdown > .combo-items {
  padding: 0;
}
.manager-popup .custom-combo > .combo-container > input,
.manager-popup .custom-combo > .combo-dropdown > .combo-items > .item > span {
  font-size: 12px;
  line-height: 16px;
}
.manager-popup .loader-holder {
  display: flex;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
  z-index: 9999;
  align-items: center;
  user-select: none;
  transition: ease-in 0.2s;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.manager-popup .loader-holder .loader-block {
  visibility: hidden;
}
.manager-popup .loader-holder.shown {
  background: rgba(255, 255, 255, 0.6);
}
.manager-popup .loader-holder.shown .loader-block {
  visibility: visible;
}

.horizontal-tabcontrol .horizontal-tab-holder {
  display: block;
  position: sticky;
  width: calc(100% + 32px);
  margin-left: -16px;
  top: -2px;
  left: 0;
  margin-bottom: 20px;
  background: #fff;
  z-index: 100;
  padding-top: 12px;
  
}
.horizontal-tabcontrol .horizontal-tab-container::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0px;
  height: 100%;
  width: 16px;
  background: #fff;
  z-index: 999;
}
.horizontal-tabcontrol .horizontal-tab-container::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0px;
  height: 100%;
  width: 16px;
  background: #fff;
  z-index: 999;
}
.horizontal-tabcontrol .horizontal-tab-holder.shadow {
  box-shadow: 0px 4px 20px rgba(83, 93, 150, 0.1);
}
.horizontal-tabcontrol .horizontal-tab-content {
  overflow: hidden;
}
.horizontal-tabcontrol .horizontal-tab {
  display: block;
  position: relative;
  width: fit-content;
  margin-left: 16px;
}
.horizontal-tabcontrol .horizontal-tab .menu-item {
  width: 200px;
  padding: 0 16px;
  text-align: center;
  color: #337ab7;
}
.horizontal-tabcontrol .horizontal-tab .menu-item:hover {
  color: #5097f4;
}
.horizontal-tabcontrol .horizontal-tab .scale {
  position: relative;
  background: #e2edff;
  border-radius: 50px;
  height: 6px;
  width: 100%;
  margin-top: 12px;
}
.horizontal-tabcontrol .horizontal-tab .strip {
  position: absolute;
  left: 0;
  height: 100%;
  width: 33%;
  background: #5097f4;
  border-radius: 50px;
  transition: linear 0.2s;
}
.horizontal-tabcontrol .horizontal-tab .strip {
  width: 200px;
}
.horizontal-tabcontrol .tab-content-holder .tab-title,
.horizontal-tabcontrol .tab-content-holder .telegramIntegration .title {
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
  color: #222222;
  margin-bottom: 16px;
}
.horizontal-tabcontrol .tab-content-holder .tab-title .group-description,
.personal-popup.solo-document .document-holder .group-description {
  font-size: 12px;
  line-height: 14px;
  color: #949494;
  user-select: none;
  
  font-weight: 400;
  margin-top: 8px;
}
.horizontal-tabcontrol .tab-content-holder .tab-title.required::after {
  content: "*обязательно к предоставлению";
  display: inline-block;
  color: red;
  font-size: 10px;
  line-height: 1.1;
  margin-left: 8px;
}
.horizontal-tabcontrol .tab-content-holder:not(:last-child)::after {
  content: "";
  display: block;
  margin: 28px 0;
  margin-top: 12px;
  width: 100%;
  height: 1px;
  background: #6c788a;
}
.horizontal-tabcontrol .tab-content-holder .btn-save,
.personal-popup .document .flex-btns .btn-save {
  display: flex;
  align-items: center;
  background: #5097f4;
  border-radius: 50px;
  padding: 8px 18px;
  color: #fff;
  transition: linear 0.2s;
  width: fit-content;
  height: initial;
  cursor: pointer;
  user-select: none;
}
.horizontal-tabcontrol .tab-content-holder .btn-save:hover,
.personal-popup .document .flex-btns .btn-save:hover {
  background: #8fbffe;
  color: #fff;
}
.personal-popup .document .flex-btns .btn-decline {
}
.personal-popup .document .flex-btns .btn-decline.disabled {
}
.personal-popup .document .manager-comment textarea {
  font-size: 16px;
  line-height: 20px;
  background: #e0edff;
  min-height: 120px;
  max-width: 650px;
  padding: 16px;
  margin-bottom: 16px;
}
.personal-popup .document .flex-btns .btn-approve,
.personal-popup .document .flex-btns .btn-decline {
  display: flex;
  align-items: center;
  background: #24cc85;
  padding: 10px 18px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  height: fit-content;
  color: #fff;
  border-radius: 50px;
  gap: 8px;
  cursor: pointer;
  transition: linear 0.2s;
}
.personal-popup .document .flex-btns .btn-approve.disabled,
.personal-popup .document .flex-btns .btn-decline.disabled {
  opacity: 0.4;
  cursor: default;
}
.personal-popup .document .flex-btns .btn-decline {
  background: #e84444;
}
.personal-popup .document .flex-btns .btn-approve::before,
.personal-popup .document .flex-btns .btn-decline::before {
  content: "";
  display: block;
  background: url(/imgs/vectors/check-withBorder.svg) 00 no-repeat;
  background-size: contain !important;
  width: 23px;
  height: 23px;
}
.personal-popup .document .flex-btns .btn-approve:hover {
  background: #1ae791;
}
.personal-popup .document .flex-btns .btn-decline:hover {
  background: #ff3f3f;
}
.personal-popup .document .flex-btns .btn-decline::before {
  background: url(/imgs/vectors/cross-withBorder.svg) 00 no-repeat;
}
.personal-popup .field-container .flex-managerMode {
  gap: 16px;
}
.personal-popup .field-container .flex-managerMode .manager-btns {
  gap: 8px;
}
.personal-popup .field-container .flex-managerMode .manager-btns .approve-row,
.personal-popup .field-container .flex-managerMode .manager-btns .decline-row {
  display: block;
  background: url(/imgs/vectors/clock-approved.svg) 00 no-repeat;
  width: 16px;
  height: 16px;
  background-size: contain !important;
  opacity: 0.4;
  cursor: pointer;
}
.personal-popup .field-container .flex-managerMode .manager-btns .approve-row.noChoose {
  cursor: default;
}
.personal-popup .field-container .flex-managerMode .manager-btns .decline-row {
  background: url(/imgs/vectors/clock-error.svg) 00 no-repeat;
}
.personal-popup .field-container .flex-managerMode .manager-btns .approve-row:hover,
.personal-popup .field-container .flex-managerMode .manager-btns .decline-row:hover,
.personal-popup .field-container .flex-managerMode .manager-btns .approve-row.active,
.personal-popup .field-container .flex-managerMode .manager-btns .decline-row.active {
  opacity: 1;
}
.personal-popup.solo-document .personal-popup-content,
.personal-popup.solo-document .personal-popup-body {
  padding-top: 0;
}
.personal-popup.solo-document .tb-name,
.personal-popup.solo-document .manager-comment .group-title {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
}

.personal-popup.solo-document .field-container {
  min-height: auto;
}
.personal-popup.solo-document {
  background: #f8f9ff;
}
.personal-popup.solo-document > .popup-container .content.nice-scroll {
  height: calc(100% - 40px);
}
.personal-popup.solo-document .group-title {
  margin-bottom: 16px;
}
.personal-popup.solo-document .document .manager-comment textarea {
  max-width: 566px;
  font-size: 14px;
  line-height: 1.1;
  padding: 8px 16px;
  min-height: 80px;
}
.personal-popup.solo-document .document .manager-comment {
  max-width: 510px;
  width: 100%;
}
.personal-popup.solo-document .document .flex-btns .btn-approve,
.personal-popup.solo-document .document .flex-btns .btn-decline {
  padding: 8px 14px;
  font-size: 14px;
  line-height: 1.1;
}
.personal-popup .document .flex-btns .btn-approve::before,
.personal-popup .document .flex-btns .btn-decline::before {
  width: 18px;
  height: 18px;
}
.personal-popup.frame .error-container {
  padding: 0 10px;
  height: 100%;
}
.personal-popup.frame .error-container iframe {
  height: calc(100% - 10px);
}
.personal-popup.solo-document .field-container.tiny,
.personal-popup.solo-document .field-container.small,
.personal-popup.solo-document .field-container.medium,
.personal-popup.solo-document .field-container.big {
  min-width: unset;
  max-width: unset;
}
.personal-popup.solo-document .field-container.tiny {
  width: 168px;
}
.personal-popup.solo-document .field-container.small {
  width: 265px;
}
.personal-popup.solo-document .field-container.medium {
  width: 400px;
  width: 385px;
}
.personal-popup.solo-document .field-container.big {
  width: 690px;
}
.personal-popup.solo-document .field-container .silver-control {
  width: 100%;
}

.orders-content {
  position: relative;
  background-color: transparent;
  height: 100%;
  width: 100%;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  overflow: auto;
}
.account-holder.organization .orders-content {
  height: calc(100vh - 325px);
  height: calc(100vh - 136px);
}
.orders-content .orders-content-container {
  position: relative;
  
  height: 100%;
  width: 100%;
  max-width: 1280px;
  margin: auto;
}
.orders-content .orders-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.orders-content .orders-container .order-tile-container {
  position: relative;
  border-radius: 12px;
  background: #ffffff;
  padding: 16px;
  z-index: 100;
  box-shadow: 0px 4px 20px rgba(83, 93, 150, 0.1);
}
.orders-content .orders-container .order-tile-container .order .order-name {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: #5097f4;
}
.orders-content .orders-container .order-tile-container .order .order-name .price {
  gap: 10px;
  font-size: 11px;
  line-height: 15px;
  color: #222222;
}
.orders-content .orders-container .order-tile-container .order .order-name .price .i-rub {
  font-size: 16px;
  line-height: 20px;
}
.orders-content .orders-container .order-tile-container .order .order-name .price .wait {
  color: #7b8594;
}
.orders-content .orders-container .order-tile-container .order .order-name .price .expires {
  color: #f8b24a;
}
.orders-content .orders-container .order-tile-container .order .order-name .price .paid {
  color: #24cc85;
}
.orders-content .orders-container .order-tile-container .order .order-name .price .expired {
  color: #e84444;
}
.orders-content .orders-container .order-tile-container .order .order-name .price .cancelled {
  color: #5c6470;
}
.orders-content .orders-container .order-tile-container .order > div:not(:nth-child(2))::after {
  content: "";
  display: block;
  margin-top: 14px;
  margin-bottom: 14px;
  width: 100%;
  height: 1px;
  background: #9cbbe3;
}
.orders-content .orders-container .order-tile-container .order > div:nth-child(n + 3)::after {
  background: #9cbbe3;
}
.orders-content .orders-container .order-tile-container .order > div:last-child::after {
  display: none;
}
.orders-content .orders-container .order-tile-container .order .order-title {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 8px;
}
.orders-content .orders-container .order-tile-container .order .order-certificate {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
}
.orders-content .orders-container .order-tile-container .order .order-certificate::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  margin-top: 2px;
  background: url(/imgs/vectors/diploma-little.svg) 00 no-repeat;
  background-size: contain !important;
  filter: invert(48%) sepia(87%) saturate(407%) hue-rotate(176deg) brightness(99%) contrast(94%);
  flex: 0 0 auto;
}
.orders-content .orders-container .order-tile-container .order .order-tableHead {
  justify-content: flex-end;
  
  font-weight: 600;
  margin-right: 32px;
  gap: 16px;
}
.orders-content .orders-container .order-tile-container .order .order-tableHead div {
  min-width: 180px;
  text-align: center;
}
.orders-content .orders-container .order-tile-container .order .employee-row .employee-left {
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}
.orders-content .orders-container .order-tile-container .order .avatar {
  display: block;
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 100%;
  background: url(/imgs/vectors/account-dummy.svg) 00 no-repeat;
  background-size: contain !important;
  flex: 0 0 auto;
}
.orders-content .orders-container .order-tile-container .order .employee-right-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.orders-content .orders-container .order-tile-container .order .employee-right {
  gap: 10px;
}
.orders-content .orders-container .order-tile-container .order .list-item {
  min-width: 235px;
  text-align: center;
}
.orders-content .orders-container .order-tile-container .order .list-item.status {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 145px;
}
.orders-content .orders-container .order-tile-container .order .list-item.status div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.orders-content .orders-container .order-tile-container .order .list-item.status div.approved,
.orders-content .orders-container .order-tile-container .order .list-item.status div.active {
  color: #36ab18;
}
.orders-content .orders-container .order-tile-container .order .list-item.status div.approved::before,
.orders-content .orders-container .order-tile-container .order .list-item.status div.active::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url(/imgs/vectors/square-approved.svg) 00 no-repeat;
  background-size: contain !important;
  margin-right: 8px;
}
.orders-content .orders-container .order-tile-container .order .list-item.status div.approving {
  color: #cf7c00;
}
.orders-content .orders-container .order-tile-container .order .list-item.status div.approving::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: url(/imgs/vectors/square-approving.svg) 00 no-repeat;
  background-size: contain !important;
  margin: 0 8px;
}

.progressBar .scale {
  position: relative;
  background: #e2edff;
  border-radius: 50px;
  height: 8px;
  width: 100%;
  overflow: hidden;
}
.progressBar .scale.invisible {
  opacity: 0;
}
.progressBar .scale .strip {
  position: absolute;
  left: 0;
  height: 100%;
  width: 50%;
  background: #5097f4;
}
.progressBar .scale .strip.completed {
  background: #24cc85;
}

header .search-menu .search-box {
  background: #ffffff;
}
header .search-menu .search-box {
  position: relative;
  padding: 32px 16px 16px 16px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 10px rgb(0 0 0 / 15%);
  border-radius: 10px;
}
header.header_bg .search-menu .search-box {
  background: rgba(255, 255, 255, 0.1);
}
.search-menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 9px;
  position: initial;
  margin-right: 24px;
}
.search-menu:before {
  content: "";
  display: block;
  background: url(/imgs/vectors/search.svg) 0 0 no-repeat;
  filter: invert(52%) sepia(62%) saturate(524%) hue-rotate(176deg) brightness(96%) contrast(99%);
  width: 17px;
  height: 18px;
  cursor: pointer;
}
.header_bg .search-menu:before {
  filter: none;
}
.search-menu:hover::before {
  content: "";
  display: block;
  filter: invert(52%) sepia(62%) saturate(524%) hue-rotate(176deg) brightness(96%) contrast(99%);
}
.header_bg .search-menu:hover::before {
  content: "";
  display: block;
  filter: invert(31%) sepia(30%) saturate(4062%) hue-rotate(198deg) brightness(144%) contrast(119%);
}
.search-menu .search-popup {
  position: absolute;
  bottom: -20px;
  right: 40px;
  opacity: 0;
  visibility: hidden;
  padding-top: 20px;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  max-width: 500px;
  width: 100%;
  max-height: 80px;
  transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  transition-timing-function: cubic-bezier(0.58, 0.3, 0.005, 1);
  -o-transition-timing-function: cubic-bezier(0.58, 0.3, 0.005, 1);
  transition-timing-function: cubic-bezier(0.58, 0.3, 0.005, 1);
}
.search-menu:hover .search-popup {
  opacity: 1;
  visibility: visible;
  bottom: 23px;
}
.search-menu .text.search {
  width: 100%;
  min-height: 32px;
  border: 1px solid #ffffff;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  caret-color: #f8f9ff;
  font-size: 14px;
  line-height: 18px;
  height: auto;
  padding: 0;
}
.header_bg .search-menu .text.search {
  border: 1px solid #ffffff;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  caret-color: #f8f9ff;
}
.search-menu .text.search:focus-visible {
  outline: none;
}
header .search-menu .text.search::placeholder {
  color: #f8f9ff;
  font-family: "Inter";
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
}
.header_bg .search-menu .text.search::placeholder {
  color: #f8f9ff;
}
header .search-menu .text.search::placeholder {
  color: #262b43;
}
header .search-menu .text.search {
  border-color: #9a9dad;
  background: #f8f9ff;
  caret-color: #262b43;
  padding-left: 5px;
}
header .search-menu:hover .search-box .input-field {
  position: relative;
  overflow: hidden;
}
header .search-menu .search-box .button_search {
  background: #5097f4;
  color: #ffffff;
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 18px;
  opacity: 1;
  border-radius: 5px;
  padding: 6px 21px;
  padding-bottom: 7px;
  position: absolute;
  right: 16px;
  bottom: 17px;
}
header .search-menu .search-box .button_search:focus,
header .search-menu .search-box .button_search:target {
  text-decoration: none;
}
.header_bg .search-menu .search-box .button_search {
  background: #ffffff;
  color: #262b43;
}
.header_bg .search-menu .search-box .button_search {
  right: 16px;
}
header .search-box .input-field {
  margin-bottom: 0;
}
.authors-list {
  align-items: stretch;
  justify-content: flex-start;
  gap: 2%;
}
.authors-list .author-item {
  display: block;
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  width: 100%;
  max-width: 32%;
  color: #000000;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  box-shadow: 0px 4px 20px rgba(83, 93, 150, 0.15);
  margin-bottom: 24px;
}
.authors-list .author-item .prevew {
  width: 100%;
  height: 212px;
  background-size: cover !important;
  background-position: top center !important;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  transition: all 0.5s ease-out;
}
.authors-list .author-item .name {
  padding: 20px;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #3977c8;
  min-height: 74px;
  padding-bottom: 5px;
}
.authors-list .author-item .text {
  padding: 20px;
  padding-top: 0px;
}
.authors-list .author-item .text > div {
  margin-bottom: 12px;
}
.authors-list .author-item .text strong {
  font-weight: 600;
  color: #19297c;
}
.authors-list .author-item .text,
.authors-list .author-item .text div .authors-list .author-item .text p,
.authors-list .author-item .text div p,
.authors-list .author-item .text > div > p {
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 18px !important;
  font-style: italic !important;
  color: #262b43 !important;
}
.authors-page #DivContent {
  min-height: 10px !important;
}

.silver-control.prof-token .silver-tokenbox {
  width: 100%;
  height: 100%;
  background: #e0edff;
  box-sizing: border-box;
  border-radius: 10px;
  outline: none;
  font-family: inherit;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  
  transition: border-color 0.2s;
  position: relative;
  overflow: initial;
  padding: 0;
}
.silver-control.prof-token .silver-tokenbox {
  
  width: 100%;
  padding: 8px 16px;
  cursor: pointer;
  min-height: 36px;
  max-height: 150px;
  overflow: auto;
}
.silver-control.prof-token .silver-tokenbox > div:nth-child(2) {
  height: 20px;
  font-family: "Inter" !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 16px !important;
  padding: 0 !important;
}
.silver-control.prof-token .silver-tokenbox > .silver-container {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
}
.silver-control.prof-token .silver-tokenbox > .silver-container > .items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px;
}
.silver-control.prof-token .silver-tokenbox > .silver-container > input[type="text"] {
  border: none;
  outline: none;
  background: transparent;
  margin: 0;
  padding: 0px;
  text-align: left;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  max-width: 100%;
}
.silver-control.prof-token .holder {
  position: absolute;
  width: 100%;
  top: 100% !important;
  left: 0px;
  border-radius: 8px;
  background: white;
  box-shadow: -4px 5px 18px rgba(29, 42, 68, 0.13);
  -webkit-transition: opacity 0.1s;
  transition: opacity 0.1s;
  box-sizing: border-box;
  outline: none;
  z-index: 999;
  min-height: 40px;
}
.silver-control.prof-token .holder .overflow {
  position: relative;
  width: 100%;
  max-height: 200px;
  overflow: auto;
  padding: 0px;
  box-sizing: border-box;
  border-radius: 0 0 8px 8px;
  background: inherit;
  height: 100% !important;
  min-height: 40px;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}
.silver-control.prof-token .holder .overflow .table-silver.table-combo {
  width: 100%;
}
.silver-control.prof-token .holder .overflow .table-silver.table-combo tr {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  box-sizing: border-box;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  height: 28px;
  width: 100%;
  cursor: pointer;
}
.silver-control.prof-token.small .holder .overflow .table-silver.table-combo tr {
  font-size: 12px;
  line-height: 14px;
  height: auto;
}
.silver-control.prof-token .holder .overflow .table-silver.table-combo tr:hover {
  background: #ebeff3;
  color: #262b43;
}
.silver-control.prof-token .holder .overflow .table-silver.table-combo tr td {
  width: 100%;
  padding: 6px 20px;
  white-space: normal;
}
.silver-control.prof-token .holder .overflow::-webkit-scrollbar,
.silver-control.prof-token .silver-tokenbox::-webkit-scrollbar {
  width: 6px;
  height: 8px;
  background-color: #e2edff;
  border-radius: 10px;
}
.silver-control.prof-token .holder .overflow::-webkit-scrollbar-thumb,
.silver-control.prof-token .silver-tokenbox::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #5097f4;
  border: 2px solid #e2edff;
}
.silver-control.prof-token .holder .overflow::-webkit-scrollbar-track,
.silver-control.prof-token .silver-tokenbox::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 10%);
  background-color: #e2edff;
  border-radius: 5px;
}
.silver-tokenbox > .silver-container > .items > .token {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 30px;
  
  background: #f8f9ff;
  border-radius: 5px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  border-collapse: separate;
  border-spacing: 0;
  cursor: default;
}
.silver-tokenbox > .silver-container > .items > .token > span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  max-height: none;
  margin: 0px 2px 0px 4px;
  padding: 2px 0px 2px 0px;
  display: block;
  max-width: 173px;
}
.silver-tokenbox > .silver-container > .items > .token > .remover {
  background: url(/imgs/vectors/cross-red.svg) 00 no-repeat;
  background-size: contain;
  display: inline-block;
  float: right;
  cursor: pointer;
  margin-right: 4px;
  width: 11px;
  height: 11px;
}
.silver-control.prof-token .silver-tokenbox.disabled {
  opacity: 0.5;
}
.silver-control.validate-error input,
.silver-control.validate-error .silver-memo {
  border: 1px solid red;
}
.silver-control.validate-error .error-message,
.silver-selector.validate-error .error-message,
.custom-combo.validate-error .error-message {
  display: block;
  color: red;
  font-size: 12px;
}
.silver-selector .error-message {
  display: none;
}
.SilverCombo .silver-control input {
  display: none;
  color: red;
  font-size: 12px;
  line-height: 12px;
  text-align: left;
  margin-top: 8px;
}
.personal-popup.instructor .personal-popup-content {
  padding: 16px 32px;
}
.popupWindow.instructor > .popup-container > .head > span {
  font-size: 18px;
  line-height: 22px;
}
.personal-popup.instructor .instructor-controls {
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.personal-popup.instructor .instructor-controls .flex-controls {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 8px;
  max-width: 31%;
  width: 100%;
  max-height: 200px;
}
.personal-popup.instructor .btn-blue {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  margin-right: auto;
  margin-left: auto;
  width: fit-content;
}

.prof-grid .table-silver > tfoot > tr > th {
  background: #e0edff !important;
}
.silver-pager {
  font: 11px Verdana, Geneva, sans-serif;
  color: Black;
}
.silver-pager .SilverCombo .silver-textbox {
  background: #fff;
  padding: 0 16px;
  font-size: 12px;
}
.prof-grid .silver-pager tbody tr:last-child td:last-child.td-carret {
  padding-right: 5px;
}
.silver-pager .info-msg {
  float: left;
  margin-top: 6px;
}
.silver-pager ul {
  list-style-type: none;
  margin: 0px;
}
.silver-pager ul li {
  float: left;
  cursor: pointer;
  color: Black;
  text-decoration: none;
  padding: 6px 6px;
  cursor: pointer;
  margin: 0px 2px;
  position: relative;
  top: initial;
  left: initial;
  right: inherit;
  display: initial;
}
.silver-pager ul li:hover {
  text-decoration: underline;
}
.silver-pager ul li.current {
  text-decoration: none;
  background: #fee085 none;
  padding: 5px 4px;
  border: 1px solid #c27f31;
  cursor: initial;
}
.silver-pager ul li.first,
.silver-pager ul li.prev,
.silver-pager ul li.next,
.silver-pager ul li.last {
  background-image: url(/SiteCMS/img/DXImages.png);
  background-repeat: no-repeat;
  background-color: transparent;
  width: 23px;
  height: 23px;
  padding: 0;
  margin: 0;
}
.silver-pager ul li.first {
  background-position: -154px -302px;
}
.silver-pager ul li.prev {
  background-position: -82px -302px;
}
.silver-pager ul li.next {
  background-position: -106px -302px;
}
.silver-pager ul li.last {
  background-position: -24px -326px;
}
.silver-pager ul li.disabled {
  opacity: 0.6;
  cursor: initial;
}
.silver-pager ul li.current:hover,
.silver-pager ul li.disabled:hover {
  cursor: initial;
  text-decoration: none;
}
.silver-pager ul li.secondLevel {
  padding: 0;
}
.silver-pager .pageSize-changer {
  display: inline-block;
  float: right;
}
.silver-pager .pageSize-changer .SilverCombo .silver-textbox {
  min-height: 25px;
  border: 0;
}
.silver-pager .pageSize-changer .SilverCombo .btn-silver-carret {
  height: 25px;
  padding: 9px 3px;
  border: 0 !important;
}
.silver-pager ul li.current {
  background: #fff;
  border: 1px solid #3977c8;
  border-radius: 5px;
}
.silver-pager ul li.first,
.silver-pager ul li.prev,
.silver-pager ul li.next,
.silver-pager ul li.last {
  margin: 3px 0;
  width: 18px;
  height: 18px;
  background-image: url(/imgs/vectors/arrow-down.svg);
  transform: rotate(270deg);
  border-color: #3977c8;
  border: 1px solid #fff;
  border-radius: 100%;
  background-position: center center;
  filter: invert(64%) sepia(97%) saturate(4062%) hue-rotate(198deg) brightness(107%) contrast(91%);
}
.silver-pager ul li.first,
.silver-pager ul li.prev {
  transform: rotate(90deg);
}
.silver-pager ul li.first,
.silver-pager ul li.last {
  background-position: center 4px;
}
.silver-pager ul li.first::after,
.silver-pager ul li.last::after {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  right: -1px;
  height: 19px;
  width: 18px;
  background-image: url(/imgs/vectors/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: center center;
  filter: invert(64%) sepia(97%) saturate(4062%) hue-rotate(198deg) brightness(107%) contrast(91%);
}
.silver-pager ul li.last {
  margin-left: 4px;
}
.silver-pager ul li.first {
  margin-right: 4px;
  margin-left: 4px;
}
.silver-pager ul li.disabled {
  opacity: 0.4;
}
.publicInvite-noData {
  position: relative;
  padding-top: 90px;
  padding-bottom: 30px;
  text-align: center;
  color: red;
}
.personalLinkSignup {
  font-family: "Inter";
  padding-top: 90px;
  padding-bottom: 30px;
}
.personalLinkSignup .container {
  max-width: 980px;
}
.personalLinkSignup .programName {
  font-style: normal;
  color: #3977c8;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 8px;
}
.personalLinkSignup .programName .name-short {
  font-family: "MagistralWebBook";
  font-weight: 400;
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 8px;
  color: #19297c;
}
.personalLinkSignup .flex-controls {
  position: relative;
  width: 100%;
  gap: 0 48px;
  margin-bottom: 24px;
}
.personalLinkSignup .control-box {
  width: 400px;
}
.personalLinkSignup .flex-controls .field-container {
  margin-bottom: 16px;
}
.personalLinkSignup .flex-controls .tb-name {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #7e7e7e;
  margin-bottom: 10px;
  text-align: left;
}
.personalLinkSignup .flex-controls .field-container .silver-control {
  margin-bottom: 8px;
}
.personalLinkSignup .flex-controls .silver-textbox {
  outline: none;
  background: #e0edff;
  border-radius: 10px;
  width: 100%;
  min-height: 36px;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  border: none;
  padding: 8px 16px;
  color: #000000;
}
.personalLinkSignup .flex-controls .field-container .error-text,
.personalLinkSignup .flex-controls .field-container .error-message {
  display: none;
  color: red;
  font-size: 12px;
  line-height: 12px;
  text-align: left;
  margin-top: 8px;
}
.personalLinkSignup .silver-checkbox.prof-checkbox {
  display: flex;
}
.personalLinkSignup .silver-checkbox.prof-checkbox label {
  position: relative;
  top: 0;
  margin-bottom: 0;
  font-weight: normal;
}
.personalLinkSignup .silver-checkbox.prof-checkbox label:before {
  content: "";
  background-image: none;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #3977c8;
  border-radius: 3px;
  cursor: pointer;
  margin-right: 8px;
  position: relative;
  top: 4px;
}
.personalLinkSignup .silver-checkbox.prof-checkbox input:checked + label:before {
  background: url(/imgs/vectors/checked-arrow-white.svg) 00 no-repeat;
  background-position: center center;
  background-color: #3977c8;
}
.personalLinkSignup .silver-checkbox.prof-checkbox label.imposter + span {
  font-size: 12px;
  line-height: 14px;
  display: block;
}
.personalLinkSignup .silver-checkbox.prof-checkbox label.imposter + span a {
  text-decoration: underline;
}
.personalLinkSignup .captcha-box {
  max-width: 208px;
  width: 100%;
  align-self: flex-end;
}
.personalLinkSignup .captcha-box .form-group {
  margin-bottom: 33px;
}
.personalLinkSignup .captcha-box img {
  width: 208px;
}
.personalLinkSignup .captcha-box #Captcha ul {
  font-size: 10px;
  line-height: 10px;
  margin-top: 16px !important;
}
.personalLinkSignup .captcha-box #Captcha ul li .glyphicon {
  display: none;
}
.personalLinkSignup .register {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
}
.personalLinkSignup .register a {
  color: inherit;
  text-decoration: underline;
  font-weight: 700;
}
.personalLinkSignup .btn-blue {
  display: block;
  background: #5097f4;
  border-radius: 50px;
  padding: 8px 106px;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  transition: linear 0.2s;
  width: fit-content;
  height: fit-content;
  margin: auto;
  margin-top: 16px;
}
.personalLinkSignup .error-text {
  display: block;
  color: red;
  font-size: 12px;
  line-height: 14px;
  margin: 12px;
  text-align: center;
}
.personalLinkSignup .field-container .error-text {
  display: none;
}
.personalLinkSignup .field-container.error .error-text {
  display: block;
}
.personalLinkSignup .container > .error-text {
  opacity: 0;
  visibility: hidden;
  height: 0;
  margin: 0;
}
.personalLinkSignup .container > .error-text.active {
  opacity: 1;
  visibility: visible;
  height: auto;
  margin: 12px;
}
.auth-content {
  background: #f8f9ff;
}
.auth-content .auth-popup-content {
  position: relative;
  padding-bottom: 24px;
}
.auth-content .auth-popup-content .no-error {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
}
.auth-content > .popup-container > .content.nice-scroll {
  height: calc(100% - 48px);
  background: #f8f9ff;
  padding: 0;
}
.personalLinkSignup .field-container.error .silver-textbox {
  border: 1px solid red;
}
.personalLinkSignup .field-container.error .error-text,
.personalLinkSignup .field-container .silver-control.error .error-message {
  display: block;
}
#content > .signup {
  position: relative;
  height: calc(100vh - 670px);
}
#content > .signup .loader-holder {
  display: flex;
  justify-content: center;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  user-select: none;
  transition: ease-in 0.2s;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
#content > .signup .loader-holder .loader-block {
  visibility: hidden;
}
#content > .signup .loader-holder.shown {
  background: rgba(255, 255, 255, 0.6);
}
.manager-popup .loader-holder.shown {
  background: rgba(255, 255, 255, 0.6);
}
#content > .signup .loader-holder.shown .loader-block {
  visibility: visible;
}
.SilverCombo > table > tbody > tr > td > img.image {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
}
.SilverCombo .table-combo > tbody > tr > td img {
  float: left;
  margin-right: 5px;
  width: 16px;
  height: 16px;
}
.SilverCombo > table > tbody > tr > td > input[type="text"].with-image {
  padding-left: 20px !important;
}
.personal-popup.alert-privacy .head {
  height: 0;
}
.personal-popup.alert-privacy > .popup-container .content.nice-scroll {
  height: calc(100% - 20px);
}
.personal-popup.alert-privacy .personal-popup-body {
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}
.personal-popup.alert-privacy .personal-popup-body .warning {
  text-align: justify;
  margin-bottom: 10px;
}
.personal-popup.alert-privacy .personal-popup-body .warning b {
  text-align: center;
  display: block;
}
.personal-popup.alert-privacy .personal-popup-body .form-group {
  flex: 0 0 auto;
}
.personal-popup.alert-privacy .btn-blue {
  display: block;
  margin: auto;
  width: fit-content;
}
.personal-popup.alert-privacy .personal-popup-body > .flex-row {
  gap: 24px;
  align-items: flex-start;
}
.personal-popup.alert-privacy .silver-checkbox {
  margin-top: 8px;
}
.personal-popup.alert-privacy .form-group.error input {
  border: 1px solid red;
}
.personal-popup.doc-tooltip {
  min-height: 65px;
}
.personal-popup.doc-tooltip > .popup-container > .content {
  padding: 0 16px;
  padding-bottom: 10px;
  
  height: auto;
  min-height: 41px;
  
  font-size: 12px;
  line-height: 1.2;
  overflow: hidden;
}
.personal-popup.doc-tooltip > .popup-container > .head {
  padding: 10px 20px 0px 0px;
  height: auto;
}
.personal-popup.doc-tooltip > .popup-container > .head > button.close {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  background-size: contain !important;
}
.review_img_mobile{
    display: none;
}
@media (min-width: 1921px) {
  .apply-choice {
    width: calc(100% + 1000px);
    margin: 20px -500px 0 -500px;
  }
  .apply-choice .params {
    text-align: center;
  }
  .apply-choice .params > div {
    max-width: 100%;
  }
}
@media (min-width: 992px) and (max-height: 760px) {
  #section-title .title-info {
    top: 15%;
  }
}
@media (min-width: 992px) and (max-height: 630px) {
  #section-title {
    position: relative;
    min-height: 630px;
  }
}
@media (min-width: 992px) {
  .profile-tile {
    max-width: 290px;
  }
  .profile-tile .profile-box {
    font-size: 16px;
    line-height: 18px;
  }
  .profile-box .portrait {
    width: 142px;
    height: 142px;
  }
  .profile-box > span {
    font-size: 20px;
  }
  .personalLinkSignup .container {
    max-width: 700px;
    padding: 0;
  }
  
}
@media (max-width: 1500px) {
  .info-row .container {
    padding: 0 80px;
  }
}
@media (max-width: 1431px) {
  .item-why .info {
    min-height: 112px;
  }
}
@media (max-width: 1397px) {
  #section-title .background img,
  #section-title .background video {
    width: auto;
  }
  .footer-menu .flex-row.big-col .flex-column.col-4 {
    margin-top: 50px;
    margin-right: 89px;
  }
  .footer-menu .flex-row.big-col .flex-column.col-6 {
    margin-right: 24px;
  }
  .footer-menu .flex-row.big-col .flex-column.col-7 {
    display: none;
  }
  .footer-menu ul.contact-menu {
    text-align: left;
  }
}
@media (max-width: 1320px) {
  #filter-menu {
    max-width: 305px;
  }
}
@media (max-width: 1300px) {
  .learning-object .obj-img {
    width: 270px;
    margin-top: 12px;
  }
  .learning-object .learning-info {
    min-height: 100px;
  }
  .footer-links ul li {
    min-height: 40px;
  }
  .footer-links ul li:nth-child(n + 4) {
    min-height: auto;
  }
  .table-scheduler .cal-event {
    font-size: 14px;
  }
  .program-card .learning-points {
    gap: 20px;
    font-size: 20px;
    line-height: 24px;
  }
  .program-card .learning-points .point::before {
    width: 30px;
    height: 30px;
  }
  .short-info {
    font-size: 20px;
  }
}
@media (max-width: 1240px) {
  .item-why .info {
    min-height: 140px;
  }
  .item-why .btn.little {
    font-size: 12px;
    width: 100%;
  }
}
@media (max-width: 1220px) {
  ul.menu {
    margin-right: 5px;
  }
}
@media (max-width: 1210px) {
  .orders-content .orders-container .order-tile-container .order .order-tableHead {
    display: none;
  }
  .orders-content .orders-container .order-tile-container .order .order-tableHead::after {
    display: none;
  }
  .orders-content .orders-container .order-tile-container .order .employee-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .orders-content .orders-container .order-tile-container .order .list-item {
    min-width: unset;
  }
  .orders-content .orders-container .order-tile-container .order .list-item.status {
    min-width: unset;
  }
  .orders-content .orders-container .order-tile-container .order .list-item::before {
    content: "";
    font-weight: 600;
    margin-right: 8px;
  }
  .orders-content .orders-container .order-tile-container .order .list-item.specialization::before {
    content: "Специализация: ";
  }
  .orders-content .orders-container .order-tile-container .order .list-item.status::before {
    content: "Статус: ";
  }
  .orders-content .orders-container .order-tile-container .order .list-item.time::before {
    content: "Даты проведения: ";
  }
  .orders-content .orders-container .order-tile-container .order .list-item.noBefore::before {
    content: "";
    margin: 0;
  }
  .orders-content .orders-container .order-tile-container .order .employee-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 1197px) {
  .footer-menu .flex-row.big-col .flex-column.col-1,
  .footer-menu .flex-row.big-col .flex-column.col-5 {
    margin-right: 50px;
  }
  
  .footer-menu .flex-row.big-col .flex-column.col-3,
  .footer-menu .flex-row.big-col .flex-column.col-7 {
    margin-right: 50px;
    max-width: 200px;
  }
  #filter-menu {
    max-width: 250px;
  }
  .filter .silver-checkbox.checkbox-label label.imposter + span {
    font-size: 18px;
  }
}
@media (max-width: 1185px) {
  ul.menu > li.submenu > .context-holder {
    left: -200px;
  }
  ul.menu > li.submenu:first-child > .context-holder {
    left: -260px;
  }
  .learning-object .name {
    font-size: 20px;
  }
  .program-card .prog-info .info-section {
    font-size: 20px;
    line-height: 24px;
    max-width: 450px;
  }
  .program-card .prog-info .info-section div:first-child {
    min-height: 64px;
    font-weight: 600;
    font-size: 26px;
    line-height: 26px;
    margin-bottom: 16px;
  }
}
@media (max-width: 1140px) {
  .item-why .info {
    min-height: 168px;
  }
}
@media (max-width: 1340px) {
  ul.menu > li {
    margin: 0 12px;
  }
  .program > .block .half-img{
    height: 130px;
  }
}
@media (max-width: 1125px) {
  header .logo{
    width: 200px;
  }
  ul.menu > li {
    margin: 0 8px;
  }
}
@media (max-width: 1030px) and (min-width: 992px) {
  .header_bg a{
    font-size: 14px;
  }
  
}
@media (max-width: 1110px) {
  .program .block .price,
  .program .block > .name {
    font-size: 20px;
  }
  .program .block .term {
    margin-bottom: 5px;
  }
  .learning-object .obj-img {
    width: 220px;
    height: 140px;
  }
  .program .block {
    font-size: 14px;
  }
  .table-scheduler .cal-event {
    font-size: 12px;
  }
  .short-info {
    font-size: 16px;
  }
}
@media (max-width: 1058px) {
  .item-why .btn.little {
    padding: 8px;
  }
  .program .block .price {
    font-size: 18px;
  }
}
@media (max-width: 1005px) {
  ul.menu > li {
    margin: 0 10px;
  }
}
@media (min-width: 1600px) {
  .article .article-content,
  .article .article-content p,
  .article .article-content div,
  .article .article-content li,
  .article .article-content .prof-table td {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #222222;
    margin-bottom: 1.08565rem;
  }
  .article .article-content p {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #222222;
  }
  #content > .main h1 {
    font-family: "MagistralWebBook";
    font-weight: 400;
    font-size: 34px;
    line-height: 41px;
    color: #19297c;
  }
  #content > .main h2 {
    font-family: "Inter";
    color: #19297c;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
  }
  #content > .main h2.h2-border {
    font-family: "MagistralWebBook";
    font-weight: 400;
    font-size: 50px;
    line-height: 57px;
    color: #19297c;
  }
}
@media (max-height: 1600px) {
  .table-scheduler .cal-head {
    background: rgb(57, 119, 200);
    font-size: 12px;
    line-height: 14px;
    font-weight: 500;
    color: #ffffff;
    
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    align-items: stretch;
  }
}
@media (max-width: 550px) {
  .ContentEditorHolder > .SilverHeader .header-right {
    gap: 4px;
  }
  .ContentEditorHolder .changeWarning {
    padding: 4px 8px;
    font-size: 10px;
  }
}


@media (max-width: 992px) {
    .mobile-only {
        display: initial;
    }
    .wrapper {
        padding: 34px 0;
    }
    .title {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 16px;
    }
    .selection-menu_container .title,
    .prog-block .name a {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 24px;
        margin-top: 24px;
    }
    .prog-container {
        margin-bottom: 16px;
    }
    #menu-overlay,
    .menu-overlay {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100vh;
        opacity: 0;
        z-index: 10;
        visibility: hidden;
        background: rgba(0, 0, 0, 0.6);
        -webkit-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
    }
    #menu-overlay.opened,
    .menu-overlay.opened {
        opacity: 1;
        visibility: visible;
    }
    #main-menu>.holder {
        position: fixed;
        top: 0;
        left: 0px;
        width: 100%;
        height: 100%;
        background: white;
        z-index: 99;
        opacity: 0;
        -webkit-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
        visibility: hidden;
        -webkit-transform-origin: right top;
        -ms-transform-origin: right top;
        transform-origin: right top;
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
    }
    #main-menu.opened>.holder {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
        background: #F8F9FF;
        height: 100vh;
    }
    #main-menu>.holder>.menu-content {
        padding: 20px 20px;
        border: none;
    }
    #main-menu .toggler {
        position: fixed;
        top: 25px;
        right: 15px;
        z-index: 99;
        width: 40px;
        height: 40px;
        padding: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
    }
    .menu-holder {
        flex-direction: column;
        position: absolute;
        left: 20px;
        align-items: baseline;
        -webkit-transition: .3s linear;
        -o-transition: .3s linear;
        transition: .3s linear;
        width: 100%;
        height: 100%;
    }
    .menu-holder.moved {
        position: absolute;
        left: -510px;
        width: 100%;
    }
    ul.menu {
        flex-direction: column;
        align-items: baseline;
    }
    ul.menu>li {
        font-size: 25px;
        position: unset;
        margin-left: 0;
        margin-bottom: 13px;
    }
    .header_bg ul.menu>li a,
    .header_bg .login a {
        color: #3977C8;
    }
    ul.menu>li.submenu>a::after {
        filter: invert(64%) sepia(97%) saturate(4062%) hue-rotate(198deg) brightness(107%) contrast(91%);
        display: none;
    }
    .menu-content .logo {
        display: block;
        background: url(/imgs/header/logo-head-scroll.svg) 00 no-repeat;
        margin-bottom: 30px;
    }
    ul.menu>li.submenu:first-child>.context-holder,
    ul.menu>li.submenu>.context-holder {
        left: 2000px;
        transition: .3s;
        -webkit-transition-timing-function: cubic-bezier(.58, .3, .005, 1);
        -o-transition-timing-function: cubic-bezier(.58, .3, .005, 1);
        padding: 0;
    }
    .menu-holder.moved ul.menu>li.submenu>.context-holder.moved {
        left: 510px;
        width: 100%;
        overflow: auto;
        height: calc(100% - 111px);
    }
    li.submenu .context-menu {
        flex-direction: column;
        padding: 0 28px;
        font-size: 14px;
        line-height: 14px;
    }
    ul.menu>li.submenu .context-menu ul li {
        line-height: 14px;
    }
    ul.menu>li.submenu>.context-holder {
        opacity: 1;
        visibility: visible;
        top: 0;
    }
    ul.menu>li.submenu:hover .context-holder {
        opacity: 1;
        top: 0;
        left: 992px;
        width: 100%;
    }
    ul.menu>li.submenu .context-holder ul li label {
        margin-bottom: 12px;
        font-size: 25px;
        line-height: 26px;
    }
    .back {
        display: block;
        width: 30px;
        height: 20px;
        margin-left: 28px;
        margin-bottom: 20px;
    }
    .back::before {
        content: "";
        display: block;
        background: url(/imgs/vectors/arrow-right-blue.svg) 00 no-repeat;
        width: 25px;
        height: 20px;
    }
    .context-holder .back::before {
        transform: rotate(180deg);
    }
    ul.menu>li.submenu .context-menu ul:not(:last-child) {
        margin: 0;
        margin-bottom: 32px;
    }
    ul.menu>li.submenu .context-menu ul>li:last-child {
        margin-bottom: 0px;
    }
    header .main-manu a,
    .header_bg .main-manu a {
        color: #3977C8;
    }
    .info-row {
        padding: 20px 0;
    }
    .container,
    .info-row .container {
        padding: 0 40px;
    }
    header .container {
        padding-top: 17px;
        padding-bottom: 13px;
    }
    .actions {
        flex-direction: column-reverse;
        align-items: baseline;
        width: 100%;
    }
    header .search-menu {
        padding: 0;
        margin: 0;
        margin-top: 60px;
        width: calc(100% - 32px);
        justify-content: flex-start;
    }
    header .search-menu:before {
        background: url(/imgs/vectors/search-hover.svg) 0 0 no-repeat;
    }
    header .search-menu:hover .search-popup {
        bottom: auto;
    }
    header .search-menu:before,
    header .search-menu:hover:before,
    .header_bg .search-menu:hover::before {
        display: none;
    }
    header .search-menu .search-popup {
        position: relative;
        visibility: visible;
        opacity: 1;
        bottom: 0;
        right: 0;
        padding: 0;
        transform: none;
        
    }
    header .search-menu .search-box {
        padding: 16px;
    }
    header .search-menu .text.search {
        caret-color: initial;
    }
    header .search-menu .text.search,
    .header_bg .search-menu .text.search {
        
        width: 100%;
        height: 36px;
        border: 1px solid #3977C8;
        border-radius: 5px;
        padding: 10px;
        font-weight: 300;
        font-size: 14px;
        line-height: 23px;
        background: #FFFFFF;
    }
    header.header_bg .search-menu .search-box {
        background: #FFFFFF;
    }
    header .search-menu .text.search::placeholder {
        color: initial;
    }
    .header_bg .search-menu .text.search::placeholder,
    header .search-menu .text.search::placeholder {
        color: #262B43;
        font-family: 'Inter';
        font-style: italic;
        font-weight: 300;
        font-size: 16px;
        line-height: 18px;
    }
    header .search-menu .search-box {
        padding: 0;
        box-shadow: none;
        background: transparent;
    }
    header .search-menu .search-box .button_search {
        background: #5097F4;
        color: #FFFFFF;
        padding: 8px 21px;
        right: 1px;
        bottom: 1px;
    }
    
    header li.submenu .context-menu,
    .header_bg li.submenu .context-menu {
        box-shadow: none;
    }
    .login {
        font-size: 25px;
    }
    .menu-flex>.logged {
        margin-right: 10px;
    }
    .profile-info {
        margin-right: 14px;
    }
    .short-info {
        font-size: 15px;
        line-height: 1.4;
    }
    .short-info .info-1>strong {
        font-size: 67.6829px;
        line-height: 78px;
    }
    .short-info .item {
        display: flex;
        height: 78px;
    }
    .short-info .item img {
        width: 48px;
        height: 48px;
    }
    .short-info .item .info-1 {
        display: flex;
        align-items: center;
    }
    .short-info .item>div {
        display: flex;
        flex-direction: row;
    }
    #section-2.wrapper {
        padding-top: 0px;
    }
    #popular-programs.wrapper {
        padding-top: 0;
    }
    .program {
        width: 100%;
        margin-bottom: 0;
    }
    .program:not(:last-child) {
        margin-bottom: 22px;
    }
    .program:nth-child(odd) {
        margin-right: 0;
    }
    .program .block .half-text {
        padding: 0 14px 16px 14px;
    }
    .program>.block .half-img {
        height: 190px;
        margin-bottom: 16px;
    }
    .btn.transparent {
        font-size: 14px;
    }
    .more .btn.transparent {
        font-size: 16px;
    }
    .documents .item>.flex-row {
        flex-direction: column-reverse;
    }
    .documents .picture {
        max-width: 100%;
        width: 100%;
    }
    .documents .picture img {
        margin: auto;
        max-width: 65%;
    }
    .documents .text {
        width: 100%;
        margin-top: 24px;
    }
    .learning-object {
        width: 49%;
    }
    .review-holder {
        max-width: none;
        margin-left: 0;
        margin-top: 20px;
    }
    .review>.text {
        margin: 0;
    }
    .review .review-info {
        display: none;
    }
    .short-info .owl-stage {
        padding-left: 0px !important;
    }
    #section-partners .container>span {
        font-size: 16px;
        line-height: 20px;
    }
    .partners .logo {
        filter: none;
    }
    .tiles {
        flex-direction: column;
    }
    #section-why .item-holder {
        width: 100%;
    }
    #section-why .item-holder:not(:last-child) {
        margin-bottom: 28px;
    }
    .item-why .why-info {
        min-height: auto;
    }
    .item-why .btn.little {
        font-size: 14px;
        width: auto;
        padding: 8px 16px;
    }
    .item-why .picture {
        height: 205px;
    }
    #section-reviews .title {
        margin-bottom: 26px;
    }
    .feedback-box {
        padding: 24px;
        margin-bottom: 34px;
    }
    .form {
        width: 100%;
    }
    .feedback-box .picture {
        display: none;
    }
    .feedback-end {
        flex-direction: column;
    }
    .form .personal-info {
        margin-bottom: 16px;
        align-self: baseline;
        max-width: none;
    }
    .form .personal-info a {
        display: inline-block;
    }
    .btn-send {
        display: flex;
        height: 50px;
    }
    .form .field {
        margin-bottom: 8px;
    }
    footer {
        padding: 24px 0;
    }
    .footer-menu {
        flex-direction: column;
    }
    .footer-menu ul.smallest-menu,
    .footer-menu ul.smallest-menu:last-child {
        margin-top: 24px;
    }
    footer .mobile-flex {
        display: flex;
        flex-direction: row;
        margin-bottom: 38px;
    }
    .footer-menu ul.smallest-menu:first-child {
        margin-right: 23px;
    }
    li.license {
        position: absolute;
    }
    .footer-menu .flex-row.big-col .flex-column.col-1,
    .footer-menu .flex-row.big-col .flex-column.col-3,
    .footer-menu .flex-row.big-col .flex-column.col-5 {
        margin-right: 14px;
        margin-top: 0;
        max-width: 168px;
    }
    .footer-menu .flex-row.big-col .flex-column.col-2,
    .footer-menu .flex-row.big-col .flex-column.col-4,
    .footer-menu .flex-row.big-col .flex-column.col-6 {
        margin-right: 0;
    }
    .footer-menu .flex-row.big-col>.flex-column:nth-child(n+3) {
        margin-top: 30px;
    }
    .footer-menu .flex-row.big-col {
        justify-content: space-between;
        font-size: 12px;
        line-height: 16px;
    }
    .footer-menu .flex-row.big-col .flex-column.col-1,
    .footer-menu .flex-row.big-col .flex-column.col-2,
    .footer-menu .flex-row.big-col .flex-column.col-3,
    .footer-menu .flex-row.big-col .flex-column.col-4,
    .footer-menu .flex-row.big-col .flex-column.col-5,
    .footer-menu .flex-row.big-col .flex-column.col-6 {
        max-width: 47%;
    }
    .footer-menu .flex-row.big-col .flex-column.col-8 {
        max-width: 100%;
    }
    .footer-menu .flex-row.big-col .flex-column.col-8 ul {
        text-align: start;
    }
    .footer-menu ul.normal-menu label,
    .footer-menu ul.contact-menu a {
        margin-bottom: 8px;
        font-size: 18px;
        line-height: 22px;
    }
    .footer-menu ul.normal-menu li:not(:last-child) {
        margin-bottom: 8px;
        font-size: 12px;
        line-height: 16px;
    }
    .footer-links {
        padding-top: 24px;
        margin-top: 24px;
    }
    .footer-links .trade-mark {
        margin-top: 24px;
        font-size: 14px;
        line-height: 18px;
    }
    .footer-links ul {
        display: block;
    }
    .footer-links ul li {
        min-height: auto;
        font-size: 14px;
        line-height: 18px;
    }
    .footer-links ul li:not(:last-child) {
        margin-bottom: 8px;
    }
    .footer-menu ul.contact-menu li:first-child {
        margin-bottom: 8px;
    }
    .footer-menu ul.contact-menu li:nth-child(2) {
        margin-bottom: 16px;
    }
    
    
    #content>.main {
        padding-top: 90px;
        padding-bottom: 20px;
    }
    .breadcrumb {
        font-size: 16px;
        margin-bottom: 8px;
    }
    .timemark {
        font-size: 11px;
        line-height: 18px;
        margin-bottom: 15px;
    }
    .date i {
        font-size: 10px;
        padding: 4px 10px;
    }
    .program-title {
        flex-direction: column-reverse;
        font-size: 32px;
        line-height: 32px;
    }
    .program-title .text {
        width: 100%;
    }
    .program-title .picture {
        align-self: center;
        margin-bottom: 16px;
        margin-left: 0;
        width: 100%;
    }
    .page-text .text {
        font-size: 16px;
        line-height: 20px;
    }
    
    .prog-rows {
        font-size: 20px;
        line-height: 20px;
        padding-bottom: 20px;
    }
    .prog-block {
        font-size: 18px;
        line-height: 20px;
        padding: 10px 0 0 0;
    }
    .prog-block.opened .prog-content {
        padding-bottom: 20px;
    }
    .prog-block.opened .prog-content.curriculum-container {
        font-size: 20px;
        line-height: 24px;
        margin-top: 24px;
    }
    #content .prog-block.opened .prog-content .text * {
        font-size: 14px;
        line-height: 18px;
    }
    .prog-block .name a::after {
        margin-top: 5px;
    }
    .prog-block .name.big a::after,
    .prog-block .name a::after {
        width: 18px;
        top: 6px;
        right: -30px;
    }
    .prog-block .see-all {
        font-size: 16px;
    }
    .curriculum table td {
        font-size: 19px;
        line-height: 22px;
        padding: 11px;
    }
    .platform-configurator .objects {
        max-width: 100%;
        padding: 0;
    }
    #filter-menu {
        max-width: initial;
        width: 0;
    }
    #filter-menu .toggler {
        position: absolute;
        right: 16px;
        top: -56px;
        z-index: 99;
        width: 40px;
        height: 40px;
        padding: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
    }
    #filter-menu-toggler {
        position: relative;
        float: none;
        margin: 0;
        padding: 0;
        border-width: 0;
        border-radius: 0;
        top: 0px;
        left: 2px;
        -webkit-transition: all .3s linear;
        transition: all .3s linear;
        background-color: transparent;
        background-image: none;
        border: 1px solid transparent;
        position: relative;
        display: inline-block;
    }
    .filter-icon {
        display: block;
        position: relative;
        background: url(/imgs/vectors/filter-icon.svg) 00 no-repeat;
        background-size: contain;
        width: 36px;
        height: 36px;
        filter: invert(64%) sepia(97%) saturate(4062%) hue-rotate(198deg) brightness(107%) contrast(91%);
    }
    .filter-amount {
        display: none;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 0;
        top: 0;
        border-radius: 20px;
        font-size: 10px;
        line-height: 12px;
        background: red;
        color: #FFFFFF;
        width: 16px;
        height: 16px;
    }
    .filter-amount.visible {
        display: flex;
    }
    #filter-menu.opened {
        z-index: 1000;
    }
    #filter-menu.opened .toggler {
        display: none;
    }
    #filter-menu-holder {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 1000px;
        width: 100%;
        height: 100%;
        z-index: 1001;
        padding: 16px;
        padding-bottom: 0;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    #filter-menu.opened #filter-menu-holder {
        background: #F8F9FF;
        height: 100vh;
        left: 0;
        overflow: auto;
    }
    #filter-menu.opened .filter-menu-content {
        overflow-y: auto;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: calc(100% - 81px);
        margin-right: -16px;
        margin-left: -16px;
        padding-right: 16px;
        padding-left: 16px;
    }
    .platform-configurator .filters {
        max-width: 100%;
    }
    .platform-configurator .filters .filter:not(:last-child) {
        margin-bottom: 24px;
    }
    .filter-menu-close {
        display: flex;
        position: absolute;
        top: 16px;
        right: 16px;
        height: 24px;
        width: 24px;
        z-index: 10000;
    }
    .filter-menu-close::before,
    .filter-menu-close::after {
        content: '';
        display: block;
        position: absolute;
        height: 2px;
        width: 24px;
        background: #3977C8;
        transform: rotate(45deg);
    }
    .filter-menu-close::after {
        transform: rotate(-45deg);
    }
    .filter-menu-reset {
        display: none;
        position: absolute;
        top: 5px;
        right: 56px;
        line-height: 20px;
        z-index: 10000;
        font-size: 14px;
        color: #9e9e9e;
        cursor: pointer;
        border-bottom: 1px dashed #9e9e9e;
    }
    .filter-menu-reset.visible {
        display: block;
    }
    #filter-menu.opened .apply-filter {
        display: block;
    }
    .apply-filter .btn {
        margin: 0;
        width: 100%;
    }
    .filter-box {
        margin-bottom: 8px;
    }
    .filters .filter:last-child {
        margin-bottom: 16px;
    }
    .apply-choice {
        width: calc(100% + 32px);
        margin: 20px -16px 0 -16px;
    }
    .apply-choice .params {
        font-size: 18px;
        padding: 0 16px;
    }
    .apply-choice .params>div {
        max-width: 100%;
    }
    .apply-choice a {
        padding: 10px 16px;
    }
    
    .cal-event {
        top: 16px;
        font-weight: 500;
        font-size: 12px;
        line-height: 14px;
    }
    .cal-mainHolder {
        padding: 8px 8px 0 8px;
    }
    .cal-mainHolder>div:nth-child(2) {
        padding: 0;
        padding-bottom: 16px;
        height: calc(100% - 66px);
    }
    .menu-scheduler {
        padding-bottom: 8px;
    }
    .table-scroller {
        bottom: 25px;
    }
    .cal-mainHolder>div:nth-child(2)>.table-scroller {
        bottom: 26px;
    }
    
    .cal-mainHolder>div:nth-child(2) .cal-body {
        height: calc(100% - 66px);
    }
    .cal-mainHolder>div:nth-child(2) .cal-body.multi {
        height: calc(100% - 76px);
    }
    .table-scroller.multi {
        bottom: 20px;
    }
    .menu-scheduler .btn.confirm {
        padding: 8px 24px;
        font-size: 18px;
    }
    .table-scheduler .months-container {
        border-radius: 0;
        padding-bottom: 8px;
    }
    
    .personal-popup .personal-popup-header {
        gap: 16px 0;
    }
    .personal-popup .newfiles-container {
        margin: 12px 0;
    }
    .personal-popup .status {
        margin: 12px 0;
    }
    .personal-popup .group-title {
        margin: 16px 0;
    }
    .personal-popup .document-holder:not(:nth-last-child(2)):after {
        margin: 16px 0;
    }
    .personal-popup .personal-popup-content {
        padding: 0 16px;
        padding-top: 0;
    }
    .personal-popup .personal-popup-body {
        padding-top: 32px;
        padding-bottom: 16px;
    }
    .personal-popup .personal-popup-header .mobile-scroll {
        overflow: auto;
        width: 100%;
    }
    .personal-popup .personal-popup-header .flex-steps {
        gap: 0 32px;
    }
    .personal-popup .personal-popup-header .flex-steps .strip {
        width: 100px;
    }
    .personal-popup .btn-next {
        margin-top: 32px;
        font-size: 14px;
        line-height: 16px;
    }
    .personal-popup.employees-list .employees-container .employee .name .status {
        margin: 0;
    }
    .personal-popup.employees-list .personal-popup-header {
        margin-bottom: 24px;
    }
    .personal-popup.employees-list .employees-container .employee .name {
        font-size: 12px;
        line-height: 16px;
    }
    .personal-popup.employees-list .employees-container .employee .appoint {
        padding: 8px 16px;
        margin-right: 4px;
    }
    .personal-popup.employees-list .search-box .input-field {
        margin-bottom: 24px;
    }
    .personal-popup.employees-list .employees-container .employee {
        gap: 8px;
    }
    
    .basket-body .basket-container {
        padding: 0px;
    }
    .basket-body .basket-items-holder {
        margin-bottom: 16px;
    }
    .basket-body .basket-items-section,
    .basket-body .basket-items-section.main {
        max-width: 100%;
        padding: 0;
        border: none;
    }
    .basket-body .basket-items-section.price {
        display: none;
    }
    .basket-body .basket-items-section.total {
        display: none;
    }
    .basket-body .basket-title {
        font-size: 34px;
        line-height: 38px;
    }
    .basket-body .basket-items-section .basket-item-container {
        padding: 12px 14px 0;
    }
    .basket-body .basket-items-section .basket-item .basket-item-container.aditional:not(:nth-last-child(2))::after {
        margin-top: 32px;
    }
    .basket-body .basket-items-section .basket-item-container .text {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 10px;
    }
    .basket-body .basket-items-section .basket-item-container .diploma {
        font-size: 12px;
        gap: 6px;
        margin-bottom: 10px;
    }
    .basket-body .basket-items-section .basket-item-container .diploma::before {
        width: 14px;
        height: 14px;
    }
    
    .basket-body .basket-items-section .basket-item-container.aditional>*:not(:first-child) {
        margin-top: 10px;
        font-size: 11px;
    }
    .basket-body .basket-items-section .basket-item .item-part:not(:last-child)::after {
        margin: 10px 0;
    }
    .basket-body .basket-item-container.aditional .aditional-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px
    }
    .basket-body .basket-item-container.aditional .flex-status {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        font-size: 14px;
        gap: 16px;
    }
    .basket-body .basket-items-section .basket-item-container .status {
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
        width: inherit;
    }
    .basket-body .basket-items-section .basket-item-container .date-status {
        display: flex;
        align-items: flex-start;
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 6px;
        margin: 0;
        font-size: 12px;
        line-height: 14px;
    }
    .basket-body .basket-items-section .basket-item-container .status span.approved::before,
    .basket-body .basket-items-section .basket-item-container .status span.approving::before {
        margin-right: 4px;
        margin-left: 0;
    }
    .basket-body .basket-items-section .basket-item-container.aditional .employees-container .appoint {
        padding: 8px 14px;
        margin-bottom: 20px;
        font-size: 12px;
        line-height: 14px;
    }
    .basket-body .basket-items-section .basket-item-container.aditional .employees-container .price,
    .basket-body .basket-items-section .basket-item-container .price {
        right: 20px;
        bottom: -4px;
    }
    .basket-body .basket-items-section .basket-item-container .price {
        bottom: 25px;
    }
    .basket-body .basket-items-section .basket-item-container.aditional .employees-container .price:before,
    .basket-body .basket-items-section .basket-item-container .price::before {
        content: 'Цена: '
    }
    .basket-body .basket-items-section .basket-item-container.aditional .employees-container .employee {
        align-items: flex-start;
    }
    .basket-body .basket-item .item-total {
        position: relative;
        margin-bottom: 16px;
        margin-top: 24px;
        float: right;
        bottom: 0;
        right: 0px !important;
        font-size: 18px;
        line-height: 20px;
    }
    .basket-body .basket-items-section.main.physical .basket-item .item-total {
        bottom: 0;
    }
    .basket-body .basket-item .item-total:before {
        content: 'Итоговая цена: ';
    }
    .basket-body .comment.active {
        margin-bottom: 32px;
    }
    .basket-body .total-container {
        padding: 20px 10px;
    }
    .basket-body .total-container .total-price {
        justify-content: center;
        gap: 4px;
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 10px;
    }
    .basket-body .total-container .total-price>div:first-child {
        color: #000000;
    }
    .basket-body .total-container .total-items {
        font-size: 16px;
        line-height: 20px;
    }
    .basket-body .total-container .total-form {
        padding: 10px 0 0 0;
        margin-bottom: 20px;
    }
    .basket-body .total-container .total-form .contract {
        margin-bottom: 10px;
        font-size: 16px;
        line-height: 20px;
    }
    .basket-body .total-container .total-form .contract::before {
        width: 18px;
        height: 22px;
        margin-right: 6px;
    }
    .basket-body .total-container .silver-checkbox.checkbox-label label.imposter+span {
        font-size: 16px;
        line-height: 20px;
    }
    .basket-body .total-container .total-form .checkboxes {
        flex-direction: column;
        display: flex;
        gap: 6px;
        margin-top: 10px;
        margin-left: 0px;
    }
    .basket-body .total-container .total-form .checkboxes .silver-checkbox.checkbox-label label.imposter+span,
    .basket-body .total-container .total-form .checkboxes .cb_label {
        font-size: 12px;
        line-height: 14px;
    }
    .basket-body .total-container .silver-checkbox.checkbox-label {
        align-self: flex-start;
    }
    .basket-body .basket-items-section .basket-item-container.aditional .personal-price {
        right: 14px !important;
        bottom: 12px;
    }
    .basket-body .basket-items-section .basket-item-container.aditional .personal-price::before {
        content: 'Цена: ';
    }
    .basket-body .basket-item .basket-item-container.aditional:nth-last-child(2) {
        padding-bottom: 32px;
    }
    .basket-body .total-container .continue {
        font-size: 20px;
        line-height: 24px;
    }
    .basket-body .total-container .continue a {
        padding: 8px 16px;
    }
    .basket-body .comment {
        margin-bottom: 16px;
    }
    .basket-body .basket-items-section .basket-item-container .BVS>div {
        padding: 5px;
    }
    .program-card section {
        padding-top: 28px;
        padding-bottom: 28px;
    }
    .program-card .stages .stage {
        width: 100%;
        padding: 28px 42px;
        font-size: 20px;
        line-height: 24px
    }
    .program-card .stages .stage .time {
        font-size: 12px;
        line-height: 16px;
    }
    .program-card .stages .stage .time::before {
        width: 16px;
        height: 16px;
    }
    .program-card .stages .stage .name {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 16px;
    }
    .program-card .title.section-title {
        margin-bottom: 24px;
    }
    .program-card .learning-points {
        grid-template-columns: 1fr 1fr;
    }
    .program-card section.normal-background {
        padding: 0;
    }
    .program-card .prog-picture {
        height: 228px;
        margin-bottom: 32px;
    }
    .prog-picture .btn-program {
        width: auto;
    }
    .prog-picture .prog-button {
        bottom: 12px;
        left: 0;
        width: 100%;
        text-align: center;
    }
    .program-card .prog-info {
        flex-direction: column;
        gap: 16px;
    }
    .program-card .prog-info .info-section {
        max-width: unset;
    }
    .program-card .prog-info .info-section.docs div:first-child::before {
        width: 30px;
        height: 30px;
        flex: 0 0 auto;
    }
    .program-card .prog-info .info-section.qualification div:first-child::before,
    .program-card .prog-info .info-section.study-time div:first-child::before {
        width: 30px;
        height: 30px;
        flex: 0 0 auto;
        background-position: center center;
    }
    .program-card .prog-info .info-section>*:nth-child(2) {
        padding-left: 40px;
        font-size: 14px;
        line-height: 18px;
    }
    .program-card .prog-info .info-section.docs ul {
        padding-inline-start: 58px;
    }
    .owl-carousel .owl-nav button.owl-next,
    .owl-carousel .owl-nav button.owl-prev,
    .owl-carousel button.owl-dot {
        position: relative;
    }
    .manager-popup .textarea-container {
        padding: 16px;
    }
    .manager-popup .textarea-container textarea {
        min-height: 60px;
        max-height: 110px;
    }
    .manager-popup .textarea-container>.flex-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .manager-popup .textarea-tile-container .manager-actions {
        
        align-self: flex-end;
    }
    .manager-popup .message-contact .avatar {
        width: 40px;
        height: 40px;
    }
    .manager-popup .message-contact {
        font-size: 12px;
        line-height: 16px;
    }
    .manager-popup .message-contact .contacts {
        gap: 8px;
    }
    .manager-popup .message-contact a:first-child::after {
        margin-left: 8px;
    }
    .manager-popup .custom-combo>.combo-dropdown>.combo-items>.item {
        height: 28px;
    }
    .manager-popup .custom-combo>.combo-dropdown>.combo-items>.item>span {
        font-size: 12px;
        line-height: 16px;
    }
    .manager-popup>.popup-container>.head>span {
        font-size: 16px;
    }
    .manager-popup .message-contact .contact-data .theme {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -moz-box;
        -moz-box-orient: vertical;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        line-clamp: 2;
        box-orient: vertical;
    }
    .manager-popup .newfiles-container {
        margin: 6px 0;
    }
    .manager-popup .contact-chat .message .text {
        font-size: 14px;
        line-height: 16px;
    }
    .personal-popup .flex-email {
        flex-direction: column;
        width: 100%;
    }
    .personal-popup .flex-email .error-email {
        margin-top: 0;
        align-self: baseline;
    }
    .personal-popup.error-popup .error-container .tab-fields {
        flex-direction: column;
        gap: 24px;
    }
    .personal-popup.error-popup .error-container .error-title {
        text-align: center;
    }
    .context-menu-container {
        align-self: baseline;
    }
    .basket-body .basket-items-section .basket-item-container.aditional>.context-delete {
        position: absolute;
        right: 16px;
    }
    .basket-body .basket-items-section .basket-item-container.aditional .employees-container .employee .delete {
        gap: 0 8px;
    }
    .personal-popup .flex-fields {
        gap: 24px 60px;
    }
    .personal-popup .document {
        margin-bottom: 8px;
    }
    .personal-popup .document .newfiles-container {
        margin-bottom: 8px;
    }
    .personal-popup .document-holder .add-document {
        font-size: 14px;
    }
    .personal-popup .document-holder .add-document::before {
        width: 14px;
        height: 14px;
    }
    .personal-popup .personal-popup-header {
        font-size: 14px;
        line-height: 18px;
    }
    .personal-popup .personal-popup-header .flex-steps .text {
        margin-bottom: 10px;
    }
    .orders-content .orders-container .order-tile-container .order .order-name {
        font-size: 14px;
        line-height: 18px;
    }
    .orders-content .orders-container .order-tile-container .order .order-name>div {
        flex-wrap: wrap;
        gap: 8px 16px;
    }
    .orders-content .orders-container .order-tile-container .order .order-name .price {
        gap: 10px;
        font-size: 12px;
        line-height: 16px;
    }
    .orders-content .orders-container .order-tile-container .order .order-title {
        font-size: 12px;
        line-height: 16px;
    }
    .orders-content .orders-container .order-tile-container .order .employee-right-container {
        width: 100%;
    }
    .orders-content .orders-container .order-tile-container .order .employee-right {
        font-size: 10px;
        line-height: 12px;
        align-items: flex-start;
        width: 100%;
    }
    .orders-content .orders-container .order-tile-container .order .employee-right {
        gap: 8px;
    }
    .orders-content .orders-container .order-tile-container .order .employee-right:not(:last-child)::after {
        content: '';
        display: block;
        margin-top: 0px;
        margin-bottom: 0px;
        width: 100%;
        height: 1px;
        background: #c2d7fb;
    }
    .orders-content .orders-container .order-tile-container .order .list-item::before {
        margin-right: 4px;
    }
    .orders-content .orders-container .order-tile-container .order .list-item.status div.approved,
    .orders-content .orders-container .order-tile-container .order .list-item.status div.active,
    .orders-content .orders-container .order-tile-container .order .list-item.status div.approving::before {
        margin: 0 4px;
    }
    .orders-content .orders-container .order-tile-container .order .employee-row .employee-left {
        font-size: 12px;
        line-height: 16px;
    }
    .orders-content .orders-container .order-tile-container .order .list-item.status div.approved::before,
    .orders-content .orders-container .order-tile-container .order .list-item.status div.active::before {
        margin-right: 4px;
    }
    .orders-content .orders-container .order-tile-container .order .employee-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .orders-content .orders-container .order-tile-container .order>div:not(:nth-child(2))::after {
        margin: 12px 0;
    }
    .horizontal-tabcontrol .horizontal-tab-holder {
        width: calc(100% + 20px);
        margin-left: -10px;
    }
    .orders-content .orders-container .order-tile-container {
        padding: 18px;
    }
    .orders-content .orders-container {
        gap: 24px;
    }
    .program-card .prog-info .info-section div:first-child {
        font-size: 20px;
        line-height: 24px;
        gap: 10px;
        margin-bottom: 8px;
        align-items: center;
        min-height: unset;
    }
    .program-card .prog-info .info-section.docs ul {
        font-size: 14px;
        line-height: 18px;
    }
    .program-card .teachers .item .name {
        min-height: auto;
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 16px;
    }
    .program-card .teachers .item .text,
    .program-card .teachers .see-all {
        font-size: 14px;
        line-height: 18px;
    }
    .program-card .teachers .item .text div,
    .program-card .teachers .item .text p {
        margin-bottom: 12px;
    }
    .platform-configurator .objects .tile .tail-main>.name {
        font-size: 20px;
        line-height: 24px;
    }
    .platform-configurator .objects .tile .name span {
        font-size: 16px;
        line-height: 20px;
    }
    .platform-configurator .objects .tile .tail-main>div {
        font-size: 12px;
        line-height: 16px;
        margin-bottom: 10px;
    }
    .platform-configurator .filters .filter .silver-checkbox.checkbox-label label.imposter+span,
    .obj-cbs .silver-checkbox.checkbox-label label.imposter+span {
        font-size: 14px;
        line-height: 24px;
    }
    .platform-configurator .filters .filter .silver-checkbox label:before,
    .objects .btn.choose label:before,
    .obj-cbs .silver-checkbox label:before,
    .objects .btn.choose label:before {
        width: 16px;
        height: 16px;
    }
    .platform-configurator .filters .filter .silver-checkbox input:checked+label:before,
    .objects .btn.chosen label::before,
    .obj-cbs .silver-checkbox input:checked+label:before {
        background-size: 80%;
    }
    .program-card .page-content section:last-of-type {
        padding-bottom: 34px;
    }
    .platform-configurator .apply-choice {
        padding: 12px 30px;
        width: calc(100% + 160px);
    }
    .platform-configurator .apply-choice .params {
        font-size: 16px;
        line-height: 20px;
        padding: 0;
    }
    .platform-configurator .apply-choice a {
        margin-top: 8px;
        padding: 12px 20px;
    }
    .platform-configurator .objects .tile .info .btn.lightblue {
        padding: 6px 16px;
        font-size: 16px;
        line-height: 20px;
    }
    .search-menu .text.search,
    .search-menu .text.search::placeholder {
        font-size: 12px;
        line-height: 16px;
    }
    .footer-menu .flex-row.big-col .flex-column.col-6 {
        display: none;
    }
    .footer-menu .flex-row.big-col .flex-column.col-8 {
        position: relative;
        left: initial;
        bottom: initial;
    }
    .prog-block .prog-content {
        font-size: 14px;
        line-height: 18px;
    }
    #content>.main h2.h2-border {
        font-size: 40px;
        line-height: 44px;
    }
    #content>.main h1 {
        font-size: 24px;
        line-height: 28px;
    }
    .article .article-content,
    .article .article-content p,
    .article .article-content div,
    .article .article-content li,
    .article .article-content .prof-table td {
        font-size: 14px;
        line-height: 18px;
    }
    #section-title.wrapper {
        margin-bottom: 16px;
    }
    .basket-body .basket-items-holder .empty-basket {
        font-size: 22px;
        line-height: 26px;
    }
    .authors-list .author-item {
        max-width: 49%;
        margin-bottom: 16px;
    }
    .authors-list .author-item .text,
    .authors-list .author-item .text div .authors-list .author-item .text p,
    .authors-list .author-item .text div p,
    .authors-list .author-item .text>div>p {
        font-size: 14px !important;
        line-height: 18px !important;
    }
    .authors-list .author-item .name {
        font-size: 18px;
        line-height: 22px;
        
    }
    .authors-list .author-item .prevew {
        height: 170px;
    }
    .authors-list .author-item .text>div {
        margin-bottom: 10px;
    }
    .popup-group.no-slots .flex-fields {
        flex-direction: column;
        gap: 8px;
    }
    .popup-group.no-slots .flex-fields .field {
        width: 100%;
    }
    .popup-group.no-slots .flex-fields .field>div:first-child {
        font-size: 14px;
        line-height: 19px;
    }
    .popup-group.no-slots .info-title,
    .popup-group.no-slots .info {
        margin-bottom: 8px;
    }
    
    #header>.container .menu-flex>.flex-row>a:nth-child(2) {
        margin-right: 14px;
        font-size: 14px;
    }
    #section-title .background img {
        position: absolute;
        right: -25px;
    }
    .profile-tile .profile-box>span label {
        font-size: 14px;
        line-height: 1.1;
    }
    .account-holder.organization .orders-content {
        height: calc(100vh - 250px);
    }
    .review_img{
        display: none;
    }
    .review_img_mobile{
        display: block;
    }
    .normal-background:has(.review_img){
        padding-top: 34px !important;
    }
}
@media (max-width: 850px) {
    .personal-popup .field-container {
        max-width: none;
        width: 100%;
        min-height: auto;
    }
}
@media (max-width: 800px) {
    .program-card .teachers .item {
        max-width: unset;
        padding: 0;
    }
    .program-card .teachers .item .video {
        max-width: unset;
        max-height: unset;
        
    }
    
}
@media (max-width: 710px) {
    .auth-content .auth-content-content {
        padding: 0 20px;
        width: 100% !important;
    }
    .auth-content .register-tb {
        flex-direction: column;
        gap: 16px 0;
    }
    .auth-content .register-tb .right,
    .auth-content .register-tb .left {
        max-width: none;
        align-self: center;
    }
    .auth-content .btn-blue {
        padding: 8px 30px;
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 32px;
    }
    .auth-content .btn-university {
        font-size: 14px;
        line-height: 18px;
    }
    .auth-content .btn-university .logo {
        width: 55px;
        height: 30px;
    }
    .auth-content .auth-popup-content {
        padding-bottom: 0;
    }
    .auth-content .register {
        font-size: 12px;
        line-height: 14px;
        margin-bottom: 32px;
    }
}
@media (max-width: 700px) {
    .menu-flex>.logged {
        margin-right: 30px;
    }
    .container,
    .info-row .container {
        padding: 0 16px;
    }
    .partners .logo img {
        width: 100%;
    }
    #section-partners .partners {
        margin-top: 32px;
    }
    .partners .item:not(:last-child) {
        margin-bottom: 32px;
    }
    #section-partners .more {
        margin-top: 32px;
    }
    #section-reviews .title {
        margin-bottom: 16px;
    }
    .review .picture {
        width: 48px;
        height: 48px;
        margin-top: 0;
        margin-right: 12px;
        border: none;
        box-shadow: none;
    }
    .review .portrait {
        width: 48px;
        height: 48px;
    }
    .reviews-container .owl-carousel .owl-stage-outer {
        padding: 0;
    }
    .reviews-container .owl-theme .owl-nav {
        margin-top: 16px;
    }
    .review .name,
    .review>span {
        font-size: 16px;
    }
    .review .name {
        margin-bottom: 0;
    }
    .reviewer {
        margin-bottom: 26px;
    }
    .star {
        width: 16px;
        height: 16px;
    }
    .review>.text {
        margin-top: 8px;
        text-overflow: initial;
        display: block;
        -webkit-line-clamp: initial;
        -webkit-box-orient: initial;
    }
    .FAQ .question {
        font-size: 16px;
        line-height: 18px;
        
    }
    .FAQ .answer,
    .FAQ .answer * {
        font-size: 14px;
        line-height: 18px;
    }
    .FAQ .question>span {
        max-width: 87%;
    }
    .FAQ .plus-toggler::before,
    .FAQ .plus-toggler::after,
    .FAQ.expanded .plus-toggler::before,
    .FAQ.expanded .plus-toggler::after {
        width: 24px;
    }
    .small-fields {
        display: block;
    }
    .small-fields .field {
        max-width: 100%;
    }
    
    .platform-configurator .filter .title {
        font-size: 28px;
    }
    .popup-group .info,
    .popup-group .info-title.study {
        display: block;
        margin-bottom: 14px;
    }
    .popup-group .info:first-child {
        display: flex;
        flex-direction: column-reverse;
        margin: 0;
    }
    .popup-group .info .person-type,
    .popup-group .info .info-title:not(:last-child) {
        margin-bottom: 16px;
    }
    .popup-group .info .person-type {
        max-width: 235px;
    }
    .popup-group .info .pos-amount {
        margin-left: 0;
    }
    .popup-group .info .reserv-pos {
        justify-content: flex-start;
        margin-top: 8px;
    }
    .personal-popup .field-container {
        min-width: 100%;
        margin-right: 0;
        min-height: auto;
    }
    .personal-popup .fields-container {
        gap: 16px 0;
    }
    .personal-popup .tab-title {
        font-size: 16px;
        line-height: 18px;
    }
    .personal-popup .group-title {
        font-size: 14px;
        line-height: 16px;
    }
    .personal-popup .tb-name {
        font-size: 12px;
        line-height: 14px;
    }
    .program-card .learning-points {
        grid-template-columns: 1fr;
        gap: 12px;
        font-size: 16px;
        line-height: 20px;
    }
    .program-card .learning-points .point::before {
        width: 20px;
        height: 20px;
        margin-right: 8px;
    }
    .manager-popup .message-contact .avatar {
        display: none;
    }
    .platform-configurator .apply-choice {
        padding: 12px 60px;
        width: calc(100% + 160px);
    }
    .popup-group .info .person-type a {
        font-size: 16px;
        line-height: 18px;
        padding: 6px 12px;
    }
    .popup-group .book {
        margin-top: 28px;
    }
    .program-card .prog-picture {
        height: 180px;
    }
    .curriculum table .module td {
        font-size: 16px;
        line-height: 20px;
        padding: 11px;
    }
    .curriculum table td {
        font-size: 14px;
        line-height: 18px;
        padding: 11px;
    }
    .auth-content .form-group {
        margin-bottom: 0;
    }
    .auth-content .register-tb {
        margin-bottom: 20px;
    }
    .table-scheduler.addscroll .months-container,
    .table-scheduler.addscroll .cal-week.static {
        width: 100px;
        min-width: 100px;
    }
    .table-scheduler .months-container .cal-month {
        font-size: 10px;
        line-height: 12px;
    }
    .table-scroller {
        left: 100px;
    }
    .slot-scheduler-holder .table-scroller {
        bottom: 0;
    }
    .table-scheduler.addscroll .cell-container {
        max-width: calc(100% - 100px);
    }
    .popup-group .btns-container {
        height: calc(100% - 220px);
    }
    .popup-group.guest {
        font-size: 14px;
        line-height: 18px;
    }
    #header>.container .menu-flex {
        margin-right: 25px;
    }
    .personalLinkSignup .flex-controls {
        flex-direction: column;
        margin-bottom: 12px;
    }
    .personalLinkSignup .captcha-box {
        align-self: center;
    }
    .personalLinkSignup .control-box {
        width: 100%;
    }
    .personalLinkSignup .captcha-box {
        max-width: 100%;
    }
    .personalLinkSignup .programName {
        font-size: 18px;
    }
    .personalLinkSignup .programName .name-short {
        font-size: 24px;
    }
    .personal-popup.alert-privacy .personal-popup-body>.flex-row{
        flex-direction: column;
        gap: 16px;
    }
    .personal-popup.alert-privacy .personal-popup-body .warning{
        font-size: 14px;
        line-height: 20px;
    }
    .personal-popup.alert-privacy .personal-popup-body .form-group{
        width: 100%;
    }
    .personal-popup.alert-privacy .btn-blue{
        margin-bottom: 10px;
    }
    
    .program>.block .half-img {
        height: 170px;
    }
}
@media (max-width: 610px) {
    .learning-object {
        width: 100%;
        padding: 20px;
        margin-bottom: 16px;
    }
    .learning-object .obj-img {
        width: 200px;
        height: 110px;
        margin-bottom: 13px;
    }
    .learning-object .learning-info {
        min-height: auto;
        
        font-size: 14px;
        line-height: 18px;
    }
    .learning-object .name {
        font-size: 16px;
        line-height: 20px;
    }
    .item-why .why-info {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 16px;
    }
    .FAQ .question {
        padding: 12px 0;
    }
    .custom-combo {
        min-height: 40px;
    }
    .field input,
    .field.big textarea,
    .custom-combo>.combo-container {
        padding: 12px 16px;
        font-size: 12px;
        line-height: 16px;
    }
    .field input::placeholder,
    .field.big textarea::placeholder {
        font-size: 12px;
        line-height: 16px;
    }
    .custom-combo>.combo-container {
        height: 40px;
    }
    .custom-combo>.combo-container>.name {
        font-size: 14px;
        line-height: 18px;
    }
    .custom-combo>.combo-dropdown>.combo-items>.item {
        height: 30px;
    }
    .custom-combo>.combo-dropdown>.combo-items>.item>span {
        font-size: 14px;
        line-height: 18px;
    }
    .custom-combo>.combo-dropdown {
        height: 110px;
        min-height: 110px;
    }
    .btn-send {
        height: 46px;
    }
    .btn-send a {
        padding: 12px 80px;
    }
    .program-card .stages .stage {
        padding: 20px 38px;
        font-size: 18px;
        line-height: 22px;
    }
    .program-card .stages .stage .name {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 12px;
    }
    .popup-group .info-title {
        font-size: 14px;
        line-height: 18px;
    }
    .popup-group.no-slots .info {
        font-size: 12px;
        line-height: 16px;
    }
    .popup-group.no-slots .flex-fields .field>div:first-child {
        font-size: 12px;
        line-height: 16px;
    }
    .popup-group .info-title.study div,
    .popup-group .info .date div,
    .popup-group .info .address div {
        margin-top: 4px;
    }
    .popup-group .info .pos-amount {
        font-size: 16px;
        line-height: 20px;
        margin: auto;
        margin-top: 8px;
        padding: 6px 43px;
    }
    .popup-group .info .reserv-pos div {
        padding: 6px 20px;
    }
    .popup-group .info .reserv-pos a {
        padding: 6px 10px;
        line-height: 19px;
        height: 34.6px;
    }
    .popup-group .book .btn {
        font-size: 16px;
        line-height: 20px;
        padding: 6px 18px;
    }
    .popup-group .popup-container>.content.nice-scroll {
        padding: 0 16px 30px 16px;
    }
    .popup-group .info .reserv-pos {
        justify-content: center;
    }
    #content>.main h2.h2-border {
        font-size: 30px;
        line-height: 34px;
    }
    .auth-content .auth-popup-content .no-error {
        font-size: 14px;
        line-height: 18px;
    }
    .popup-group.no-slots .feedback-success {
        font-size: 16px;
        line-height: 20px;
    }
    #content>.main h1 {
        font-size: 22px;
        line-height: 26px;
    }
}
@media (max-width: 600px) {
    #section-title.wrapper {
        margin-bottom: 0px;
        padding-bottom: 0;
    }
    #section-title .title-info {
        top: 15%;
        height: 100%;
        width: calc(100% - 32px);
    }
    .title.big {
        font-size: 40px;
        line-height: 46px;
        margin-bottom: 32px;
    }
    .text.medium {
        font-size: 20px;
        line-height: 23px;
        max-width: none;
    }
    .btn-program {
        position: absolute;
        bottom: 40%;
        width: 100%;
        font-size: 18px;
        padding: 12px 0;
    }
    .program .block {
        font-size: 12px;
    }
    .program .block>.name {
        width: 70%;
    }
    .program .block>.pics {
        top: 22px;
        right: 15px;
    }
    .program .block>.pics img {
        max-height: 95px;
    }
    .program .block>.org {
        margin: 12px 0;
    }
    .program .block>.org>.orgs {
        margin-top: 6px;
        margin-bottom: 14px;
    }
    .program .block>.org>.orgs img {
        max-width: 80px;
        max-height: 33px;
    }
    .program .block>.name {
        font-size: 16px;
        line-height: 16px;
    }
    .program .block .price {
        font-size: 14px;
        line-height: 20px;
    }
    .more .btn.transparent {
        width: 100%;
        border-radius: 13.3175px;
        padding: 13px 0;
        line-height: 19px;
    }
    #section-types .more {
        margin-top: 8px;
    }
    .documents .picture img {
        max-width: 100%;
    }
    .documents .text {
        font-size: 16px;
        line-height: 20px;
    }
    .program-title {
        font-size: 22px;
        line-height: 22px;
        margin-bottom: 20px;
    }
    .prog-rows {
        font-size: 18px;
        line-height: 20px;
    }
    .btn-send {
        width: 100%;
    }
    .btn-send a {
        width: 100%;
        text-align: center;
    }
    .footer-info {
        margin: 0;
    }
    .platform-configurator .objects .tile {
        padding: 16px;
    }
    .platform-configurator .objects .tile .info,
    .platform-configurator .objects .tile .name {
        flex-direction: column;
        align-items: baseline;
    }
    .platform-configurator .objects .tile>.flex-row {
        flex-direction: column;
    }
    .platform-configurator .objects .tile .avatar {
        margin: 0 0 8px 0;
        width: 60px;
        height: 25px;
    }
    .platform-configurator .objects .tile .name {
        font-size: 18px;
        line-height: 22px;
    }
    .platform-configurator .objects .tile .name span {
        margin: 0;
        margin-top: 8px;
        align-self: flex-start;
    }
    .platform-configurator .objects .tile>div:not(:last-child) {
        margin-bottom: 8px;
    }
    .tile>.uav-item {
        margin-bottom: 8px;
    }
    .tile .info .btn.lightblue {
        align-self: center;
        margin-top: 16px;
    }
    .prog-content.curriculum-container .table-header {
        display: none;
    }
    .curriculum table td.hours {
        display: none;
    }
    .curriculum table .header-stage td {
        padding: 14px;
    }
    .curriculum table .module td {
        padding: 11px;
    }
    .curriculum table .td-hours {
        display: block;
        font-weight: 300;
        margin-top: 4px;
        color: #6C788A;
    }
    .curriculum table .td-hours.inline {
        display: inline-block;
    }
    .menu-scheduler .btn.confirm {
        padding: 6px 10px;
        font-size: 14px;
    }
    .program:not(:last-child) {
        margin-bottom: 16px;
    }
    
    .basket-body .basket-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 24px;
    }
    .basket-body .basket-items-section .basket-item-container .BVS {
        font-size: 12px;
        width: fit-content;
        gap: 14px;
    }
    .basket-body .basket-items-section .basket-item-container .section-name {
        gap: 24px
    }
    .basket-body .basket-items-section .basket-item-container .exam {
        align-items: flex-start;
    }
    .basket-body .add-comment {
        font-size: 16px;
        line-height: 20px;
    }
    .basket-body .add-comment::before {
        width: 30px;
        height: 30px;
        padding: 6px 11px 11px 5px;
        font-size: 30px;
    }
    .basket-body .total-container .silver-checkbox.checkbox-label label {
        align-self: flex-start;
    }
    .authors-list .author-item {
        max-width: 100%;
    }
    .authors-list .author-item .name {
        min-height: auto;
        padding-bottom: 8px;
    }
    .program>.block .half-img {
        height: 140px;
    }
}
@media (max-width: 500px) {
    .program>.block .half-img {
        height: 120px;
    }
    .program .block>.half-text .org>.orgs {
        flex-wrap: wrap;
        gap: 10px;
    }
    .basket-body .basket-items-section .basket-item-container .status {
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
        width: inherit;
    }
    .basket-body .basket-items-section .basket-item-container .status span.approved::before,
    .basket-body .basket-items-section .basket-item-container .status span.approving::before {
        margin-left: 0;
    }
    .program .block>.half-text>.flex-row {
        gap: 8px;
        flex-wrap: wrap;
    }
    #content>.main h2.h2-border {
        font-size: 24px;
        line-height: 28px;
    }
    #content>.main h1 {
        font-size: 18px;
        line-height: 22px;
    }
    #section-title .background img {
        right: -80px;
    }
}
@media (max-width: 450px) {
    .popup-group .info .reserv-pos {
        justify-content: center;
    }
    .popup-group .info .pos-amount {
        margin: 8px auto 0 auto;
    }
    .popup-group .btns-container {
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
    }
    .popup-group .btns-container .btn {
        font-size: 16px;
        line-height: 20px;
        padding: 6px 18px;
        margin: 0;
    }
}
@media (max-width: 437px) {
    .cart {
        margin-right: 14px;
    }
    footer .mobile-flex {
        margin-bottom: 52px;
    }
    .personalLinkSignup .btn-blue {
        width: 100%;
        text-align: center;
        padding: 8px 0;
    }
    
    .program>.block .half-img {
        height: 100px;
    }
}
@media (max-width: 375px) {
    .program>.block .half-img {
        height: 80px;
    }
}
@media (max-height: 930px) {
    .table-scheduler .cal-body {
        height: calc(100% - 80px);
    }
    .table-scheduler .cal-head {
        padding-right: 8px;
    }
}
@media (min-height: 930px) {
    .cal-mainHolder .table-scroller:not(.multi) {
        display: none !important;
    }
}

.platform-configurator.catalog .filters .filter .silver-spin .silver-textbox {
    width: 100%;
    height: 40px;
    border: 1px solid #3977C8;
    border-radius: 5px;
    padding: 10px;
    font-weight: 300;
    font-size: 14px;
    line-height: 23px;
}
.platform-configurator.catalog .filters .filter .silver-checkbox {
    display: flex;
    margin-bottom: 4px;
    align-items: flex-start;
}
.platform-configurator.catalog .filters .filter .silver-checkbox.checkbox-label label.imposter+span {
    line-height: 20px;
    font-size: 14px;
    margin-top: 2px;
}
.platform-configurator.catalog.members > .main-flex > .filter-menu .filters .filter:not(:last-child) {
    margin-bottom: 20px;
}
.platform-configurator.catalog.members > .main-flex > .filter-menu .filters .filter .silver-checkbox.checkbox-label label.imposter+span {
    line-height: 16px;
    font-size: 12px;
    margin-top: 6px;
}
.platform-configurator.catalog.members > .main-flex > .filter-menu .filters .filter .silver-checkbox {
    margin-bottom: 2px;
}
.platform-configurator.catalog.members > .main-flex > .filter-menu .filters .filter .silver-checkbox label:before {
    width: 15px;
    height: 15px;
    background-size: 12px 11px;
}
.platform-configurator.catalog .filters .filter .flex-row.extra-filters {
    gap: 16px;
    margin-top: 12px;
}
.platform-configurator.catalog .filters .filter .flex-row.extra-filters .title {
    margin: 0;
    font-size: 16px;
    line-height: 20px;
}
.platform-configurator.catalog .tiles-container {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 16px;
}
.platform-configurator.catalog .objects .tile {
    display: block;
    position: relative;
    background: #FFFFFF;
    border-radius: 20px;
    width: 32%;
    padding: 24px;
    color: #000000;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 0;
    box-shadow: 0px 4px 20px rgba(83, 93, 150, 0.15);
    
}
.platform-configurator.catalog .objects .tile:hover .tile-thumbnail {
    transform: scale(1.1);
}
.platform-configurator.catalog .objects .tile .tile-logo {
    display: block;
    position: relative;
    background-size: contain !important;
    height: 36px;
    
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: #19297C !important;
}
.platform-configurator.catalog .objects .tile .tile-thumbnail {
    display: block;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    height: 160px;
    max-width: 300px;
    background-position: center center !important;
    background-size: contain !important;
    transition: all 0.5s ease-out;
}
.platform-configurator.catalog .objects .tile .tile-name {
    display: block;
    margin-bottom: 48px;
    font-weight: 500;
    font-size: 22px;
    line-height: 25px;
    color: #19297C !important;
}
.platform-configurator.catalog.components .objects .tile .tile-name {
    margin-bottom: 8px;
}
.platform-configurator.catalog .objects .tile .tile-text {
    font-size: 16px;
    margin-bottom: 8px;
}
.platform-configurator.catalog .objects .tile .btn-blue {
    display: block;
    position: absolute;
    width: 201px;
    margin: auto;
    margin-top: 12px;
    bottom: 24px;
    left: 50%;
    transform: translate(-50%, 0);
}
.platform-configurator.catalog .main-flex {
    padding: 15px;
}
.catalog-item {}
.catalog-item .flex-main {
    position: relative;
    gap: 16px;
    align-items: flex-start;
    height: 100%;
}
.catalog-item .flex-main .left-content,
.catalog-item .flex-main .right-content {
    display: block;
    position: relative;
    width: 60%;
}
.catalog-item .flex-main .right-content {
    width: 40%;
    top: 36px;
    height: 100%;
}
.catalog-item .flex-main .left-content .main-fields {
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: #19297C !important;
    padding-left: 8px;
}
.catalog-item .flex-main .left-content .grid-holder {
    margin-bottom: 12px;
    padding-left: 8px;
}
.catalog-item .flex-main .left-content .grid-holder table {
    background: #fff;
    border: 1px solid #dee5e9;
    border-radius: 7px 7px 0px 0px;
}
.catalog-item .flex-main .left-content .grid-holder table tr td {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border: 1px solid #ddd;
}
.catalog-item .flex-main .left-content .grid-holder table tr td:first-child {
    width: 40%;
    font-weight: 600;
}
.catalog-item .flex-main .left-content .grid-holder table tr td:nth-child(2) {
    font-weight: 300;
    word-break: break-word;
}
.catalog-item .flex-main .left-content .grid-holder table .mobile-tr {
    display: none;
}
.catalog-item .flex-main .left-content .grid-holder table .title-tr {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    background: #E0EDFF;
}
.catalog-item .flex-main .left-content .grid-holder a {
    color: #2a6496;
}
.catalog-item .flex-main .left-content .grid-holder a:hover {
    text-decoration: underline;
}
.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 280px;
    height: 100% !important;
    
    max-width: fit-content;
    margin: auto;
}
.owl-prev img {
    transform: none;
}
.owl-next img {
    transform: rotate(180deg);
}
.owl-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
}
.no-results {
    text-align: center;
    width: 100%;
    border: 1px solid #E2E8F6;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 20px rgba(83, 93, 150, 0.15);
    padding: 16px;
}
.platform-configurator .filter.developers .filter-box {
    margin-bottom: 12px;
}
.platform-configurator .filter .clear-filter {
    display: block;
    width: 100%;
    color: #5097F4;
    font-size: 14px;
    text-align: center;
}
.platform-configurator .filter .clear-filter:hover {
    text-decoration: underline;
}
.catalog-item .right-content .flex-tabs div {
    position: relative;
    cursor: pointer;
    padding: 8px 0;
    
    border-right: solid 1px #dadada;
    border-bottom: none;
    background: #fff;
    
    
    width: 100%;
    text-align: center;
    overflow: hidden;
    padding: 8px;
    line-height: 1.42857143;
    font-weight: 600;
    font-size: 18px;
    border: 0;
    color: #7386a3;
    font-weight: 400;
}
.catalog-item .right-content .flex-tabs div.active{
    color: #000;
}
.catalog-item .right-content .scale-tabs {
    display: block;
    position: relative;
    width: 100%;
    height: 2px;
    background: #eed7d7;
    background: none;
}
.catalog-item .right-content .scale-tabs .strip-tabs {
    display: block;
    position: relative;
    height: 2px;
    width: calc(100% / 2);
    background: #5097F4;
    left: 0;
    transition: ease-in-out .15s;
}
.catalog-item .right-content .image-item {
    position: relative;
    margin: 16px 0;
}

.catalog-item .right-content .image-item .image-item-container img {
    display: block;
    width: 100%;
    height: 100%;
    
    height: 100% !important;
    max-width: fit-content;
    margin: auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(83, 93, 150, 0.15);
}
.catalog-item .right-content .no-results {
    margin-top: 8px;
}
.catalog-item .flex-main .right-content .custom-slider>.slides{
    overflow: inherit;
    overflow-x: clip;
}
.platform-configurator.catalog.members {
    position: relative;
    height: 100%;
    max-width: 1400px;
    margin: auto;
}
.platform-configurator.catalog.members .mainTitle{
    position: relative;
    margin-bottom: 30px;
    text-align: center;
    font-size: 30px;
    color: #1c335a;
    margin-top: 54px;
    text-align: start;
    margin-left: 15px;
}
.platform-configurator.catalog.members.mCard .mainTitle{
    display: none;
}
.platform-configurator.catalog.members > .main-flex .platform-configurator.catalog .filter-menu {
    position: sticky;
    top: 126px;
    top: 148px;
    overflow: auto;
}
.platform-configurator.catalog.members > .main-flex > .filter-menu::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: #e2edff;
    border-radius: 10px;
}
.platform-configurator.catalog.members > .main-flex > .filter-menu::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #5097f4;
    border: 2px solid #e2edff;
}
.platform-configurator.catalog.members > .main-flex > .filter-menu::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 10%);
    background-color: #e2edff;
    border-radius: 5px;
}
.platform-configurator.catalog.members > .main-flex > .objects .search-box {
    position: sticky;
    top: 113px;
    z-index: 98;
    background-color: #f5f6fb;
    margin: 0;
    padding: 15px 20px;
    padding-bottom: 24px;
    width: calc(100% + 40px);
    margin-left: -20px;           
    margin-top: -35px;
}
.platform-configurator.catalog.members > .main-flex > .objects .search-box.stuck {
    background: linear-gradient(180deg,rgba(245, 246, 251, 1) 0%, rgba(245, 246, 251, 1) 52%, rgba(255, 255, 255, 0.6) 90%, rgba(255, 255, 255, 0.4) 100%);
}
.platform-configurator.catalog.members > .main-flex > .objects .search-box .input-field {
    margin: 0;
}
.platform-configurator.catalog.members > .main-flex > .objects .search-box .erase {
    width: 25px;
    height: 25px;
    justify-content: center;
    align-items: center;
    top: 23px;
    right: 55px;
}
.platform-configurator.catalog.members > .main-flex > .objects .search-box .loupe {
    top: 23px;
    right: 30px;
}
.platform-configurator.catalog.members > .main-flex > .objects .search-box .erase::before {
    display: none;
}
.platform-configurator.catalog.members > .main-flex > .objects .search-box.erase .erase::before {
    display: flex;
}
.platform-configurator.catalog.members > .main-flex > .objects .search-box .resetFilter {
    display: none;
    position: absolute;
    font-size: 11px;
    color: gray;
    bottom: 1px;
    gap: 8px;
}
.platform-configurator.catalog.members > .main-flex > .objects .search-box .resetFilter.active{
    display: flex;
}
.platform-configurator.catalog.members > .main-flex > .objects .search-box .resetFilter icon{
    display: block;
    background: url(/imgs/vectors/cross-delete.svg) 00 no-repeat;
    width: 10px;
    height: 10px;
    cursor: pointer;
}
.platform-configurator.catalog.members > .main-flex > .objects .tiles-container {
    flex-direction: column;
    min-height: 50svh;
    z-index: 9;
}
.platform-configurator.catalog.members > .main-flex > .objects .tiles-container .tile {
    width: 100%;
    padding: 0;
    padding: 12px 0;
}
.platform-configurator.catalog.members > .main-flex > .objects .tiles-container .tile .posNum {
    position: absolute;
    left: 6px;
    top: 4px;
    color: #7e7e7e;
    padding: 3px;
    font-size: 13px;
}
.platform-configurator.catalog.members > .main-flex > .objects .tiles-container .tile .divImg {
    width: 200px;
    height: 90px;
    overflow: hidden;
    padding: 12px 16px;
}
.platform-configurator.catalog.members > .main-flex > .objects .tiles-container .tile .divImg img {
    width:100%;
    height:100%;
    max-width: 150px;
    object-fit: scale-down;
    overflow: hidden;
}
.platform-configurator.catalog.members > .main-flex > .objects .tiles-container .tile .types {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    font-family: "Inter";
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.2;
    padding: 8px 0;
}
.platform-configurator.catalog.members > .main-flex > .objects .tiles-container .tile .types span,
.platform-configurator.catalog.members > .main-flex > .objects .tiles-container .tile .types em {
    width: fit-content;
}
.platform-configurator.catalog.members > .main-flex > .objects .tiles-container .tile .types em {
    background: #d6e7f9 none repeat 0 0;
    color: Black;
    font-style: normal;
}
.platform-configurator.catalog.members > .main-flex > .objects .tiles-container .tile .tile-name {
    font-size: 14px;
    margin: 0;
    height: 100%;
    width: 100%;
}
.platform-configurator.catalog.members > .main-flex > .objects .tiles-container .tile .tile-name a {
    display: block;
    color: #3977C8;
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.1;
}
.platform-configurator.catalog.members > .main-flex > .objects .tiles-container .tile .tile-name a:hover {
    color: #62a6ff;
}
.platform-configurator.catalog.members > .main-flex > .objects .tiles-container .tile .tile-name a em {
    background: #d6e7f9 none repeat 0 0;
    color: Black;
    font-style: normal;
}
.platform-configurator.catalog.members > .main-flex > .objects .tiles-container .tile .tile-name > div {
    line-height: 1.2;
}
.platform-configurator.catalog.members > .main-flex > .objects .tiles-container .tile .tile-name > div:not(.types) {
    color: #636363;
}
.platform-configurator.catalog.members > .main-flex > .objects .tiles-container .tile .tile-name .types {
    display: none;
    line-height: 1.2;
}
.platform-configurator.catalog.members > .main-flex > .objects .tiles-container table {
    border-spacing: 0;
    border-collapse: collapse;
    width: 100%;
}
.platform-configurator.catalog.members > .main-flex > .objects .tiles-container table tr td {
    padding: 0 16px;
}
.platform-configurator.catalog.members > .main-flex > .objects .tiles-container table tr td:first-child {
    width: 200px;
}
.platform-configurator.catalog.members > .main-flex > .objects .tiles-container table tr td:nth-child(2) {
    width: calc(100% - 540px);
}
.platform-configurator.catalog.members > .main-flex > .objects .tiles-container table tr td:nth-child(3) {
    width: 340px;
}
.platform-configurator.catalog.members .memberHolder {
    display: none;
}
.platform-configurator.catalog.members.mCard > .memberHolder {
    display: block;
    position: relative;
    padding: 15px;
    height: 100%;
    width: 100%;
}
.platform-configurator.catalog.members.mCard > .memberHolder .cHead {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    padding: 16px !important;
}
.platform-configurator.catalog.members.mCard > .memberHolder .cHead .divImg {
    width: 200px;
    height: 90px;
    overflow: hidden;
    flex:  0 0 auto;
}
.platform-configurator.catalog.members.mCard > .memberHolder .cHead .divImg img {
    width:100%;
    height:100%;
    max-width: 165px;
    object-fit: scale-down;
    overflow: hidden;
}
.platform-configurator.catalog.members.mCard > .memberHolder .cHead .tile-name {
    font-size: 20px;
    line-height: 1.1;
    margin: 0;
    height: 100%;
    width: 100%;
}
.platform-configurator.catalog.members.mCard > .memberHolder .cHead .tile-name > div:nth-child(1) {
    display: block;
    color: #3977C8;
    font-size: 24px;
    margin-bottom: 12px;
    line-height: 1.1;
    font-weight: 500;
}
.platform-configurator.catalog.members.mCard > .memberHolder .cHead .tile-name > div:nth-child(2) {
    font-size: 14px;
    line-height: 1.2;
    color: #636363;
}
.platform-configurator.catalog.members.mCard > .memberHolder .cHead .memberTile {
    padding: 0px 16px;
}
.platform-configurator.catalog.members.mCard > .memberHolder .rotate-content {
    padding-top: 40px;
}
.platform-configurator.catalog.members.mCard > .memberHolder .rotate-menu {
    position: sticky;
    top: 113px;
    background-color: #f5f6fb;
    z-index: 98;
    padding-top: 15px;
    margin-top: -37px;
}
.platform-configurator.catalog.members.mCard > .memberHolder .rotate-menu > ul > li {
    font-size: 18px;
    width: 200px;
    padding: 16px 16px;
}
.platform-configurator.catalog.members.mCard > .memberHolder .rotate-menu .breadcrumb {
    margin-bottom: 8px;
    font-size: 14px;
}
.platform-configurator.catalog.members.mCard > .memberHolder .rotate-menu .breadcrumb li {
    color: #000000;
}
.platform-configurator.catalog.members.mCard > .memberHolder .title {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 24px;
    color: #1c335a;
}
.platform-configurator.catalog.members.mCard > .memberHolder .about > div:not(.title) {
    font-size: 16px;
    line-height: 1.4;
    text-align: start;
}
.platform-configurator.catalog.members.mCard > .memberHolder .about > div:not(.title) *{
    font-size: 16px !important;
    line-height: 1.4 !important;
    font-family: "Inter" !important;
    color: #222222 !important;
    text-align: start !important;
}
.platform-configurator.catalog.members.mCard > .memberHolder .about > div:not(.title) p {
    margin: 0;
}
.platform-configurator.catalog.members.mCard > .memberHolder .company-info {
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    flex-direction: column;
    flex: 0 0 auto;
    width: 50%;
}
.platform-configurator.catalog.members.mCard > .memberHolder .company-info > .about {
    width: 49%;
    width: 100%;
}
.platform-configurator.catalog.members.mCard > .memberHolder .company-info > .docs {
    width: 49%;
    width: 100%;
    align-items: flex-start;
}
.platform-configurator.catalog.members.mCard > .memberHolder .company-info > .docs .docsList {
    align-items: flex-start;
    gap: 8px;
    flex-wrap: wrap;
}
.platform-configurator.catalog.members.mCard > .memberHolder .company-info > .docs .docsList .doc {
    display: flex;
    flex: 0 0 auto;
    text-align: center;
    width: 100%;
    align-items: center;
    gap: 8px;
    color: #2a6496;
}
.platform-configurator.catalog.members.mCard > .memberHolder .company-info > .docs .docsList .doc img {
    width: 40px;
    height: 40px;
}
.platform-configurator.catalog.members.mCard > .memberHolder .company-info > .docs .docsList .doc > div {
    text-overflow: ellipsis;
    overflow: hidden;
}
.platform-configurator.catalog.members.mCard > .memberHolder .company-info > .docs .docsList .doc:hover {
    color:rgb(89 167 238);
}
.platform-configurator.catalog.members.mCard > .memberHolder .flex-tab1 {
    gap: 36px;
    align-items: flex-start;
    flex-direction: column;
    flex: 0 0 auto;
    width: 50%;
}
.platform-configurator.catalog.members.mCard > .memberHolder .flex-tab1 .title {
    margin: 0;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.platform-configurator.catalog.members.mCard > .memberHolder .flex-tab1 .tab1-tables {
    width: 100%;
}
.platform-configurator.catalog.members.mCard > .memberHolder .flex-tab1 .tab1-tables tr {
    padding: 16px 0;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.platform-configurator.catalog.members.mCard > .memberHolder .flex-tab1 .tab1-tables tr td {
    display: block;
    width: 100%;
    text-align: start;
}
.platform-configurator.catalog.members.mCard > .memberHolder .flex-tab1 .tab1-tables tr td:first-child {
    max-width: 300px;
    color: #727272;
}
.platform-configurator.catalog.members.mCard > .memberHolder .flex-tab1 .tab1-tables tr td a {
    color: #2a6496;
}
.platform-configurator.catalog.members.mCard > .memberHolder .flex-services {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px 24px;
}
.platform-configurator.catalog.members.mCard > .memberHolder .flex-services > .service {
    width: 100%;
}
.platform-configurator.catalog.members.mCard > .memberHolder .flex-services > .service > .title {
    margin-bottom: 12px;
}
.platform-configurator.catalog.members.mCard > .memberHolder .flex-services > .service > .servicesList {
    list-style: none;
    padding: 0;
}
.platform-configurator.catalog.members.mCard > .memberHolder .flex-services > .service > .servicesList > li {
    display: flex;
    gap: 8px;
    align-items: baseline;
    margin-bottom: 10px;
}
.platform-configurator.catalog.members.mCard > .memberHolder .flex-services > .service > .servicesList > li::before {
    content: '';
    display: block;
    width: 11px;
    height: 14px;
    background: url(/img/Icons/blue-mark.png) 00 no-repeat;
    background-size: contain !important;
    flex: 0 0 auto;
}
.platform-configurator.catalog.members.mCard > .memberHolder .productsCatalog > .platform-configurator {
    padding: 0;
}
.platform-configurator.catalog.members.mCard > .memberHolder .productsCatalog .radioCatalog {
    display: flex;
    width: 100%;
    justify-content: flex-end;
}
.platform-configurator.catalog.members.mCard > .memberHolder .productsCatalog .radioCatalog .silver-radio {
    display: flex;
    flex-direction: row;
    
    max-width: 275px;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 75px;
}
.platform-configurator.catalog.members.mCard > .memberHolder .productsCatalog .radioCatalog .silver-radio .radio-row {
    position: relative;
    cursor: pointer;
    margin: 0;
    width: 50%;
    max-width: 137px;     
    justify-content: center;
    padding: 13px 0;
}
.platform-configurator.catalog.members.mCard > .memberHolder .productsCatalog .radioCatalog .silver-radio .radio-row label {
    background-image: none;
    display: inline-block;
    background-image: none;
    
    cursor: pointer;
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
}
.platform-configurator.catalog.members.mCard > .memberHolder .productsCatalog .radioCatalog .silver-radio .radio-row input[checked] + label {
    background: #5097F4;
}
.platform-configurator.catalog.members.mCard > .memberHolder .productsCatalog .radioCatalog .silver-radio .radio-row input[checked] + label + span{
    color: #fff;
}
.platform-configurator.catalog.members.mCard > .memberHolder .productsCatalog .radioCatalog .silver-radio .radio-row input[checked] + label::before {
    content: '';
    display: none;
}
.platform-configurator.catalog.members.mCard > .memberHolder .productsCatalog .radioCatalog .silver-radio .radio-row > span {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    font-size: 14px;
    margin-top: 0;
    z-index: 9;
}
.platform-configurator.catalog.members.mCard > .memberHolder .productsCatalog:has(.radioCatalog) .objects {
    margin-top: -60px;
}
.platform-configurator.catalog.members.mCard > .memberHolder .memberTile {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 20px rgba(83, 93, 150, 0.15);
    padding: 40px;                
    border: 1px solid #E2E8F6;
}
.platform-configurator.catalog.members.mCard > .memberHolder .memberTile.flex-row {
    gap: 32px; 
    align-items: flex-start;
}
.platform-configurator.catalog.members.mCard > .main-flex > .filter-menu,
.platform-configurator.catalog.members.mCard > .main-flex > .objects {
    display: none;
}
html:has(.platform-configurator.catalog.mCard){
    overflow-y: scroll;
}
.platform-configurator.catalog.members .back-top{
    display: block;
    border: 9px solid #ccc;
    height: 60px;
    width: 60px;
    position: fixed;
    z-index: 99;
    right: 15px;
    bottom: 15px;
    border-radius: 35px;
}
.platform-configurator.catalog.members .back-top a{
    background-image: url(https://aeronext.aero/UserFiles/ContentFiles/custom/2017-11-19_22-5-3_up-img.png);
    background-repeat: no-repeat;
    background-position: 0px -1px;
    height: 42px;
    width: 42px;
    border-radius: 50%;
    display: block;
    background-size: 42px 114px;
    position: absolute;
    left: 0px;
    top: 0px;
    overflow: hidden;
    cursor: pointer;
    border-bottom: none;
}
.platform-configurator.catalog.members .back-top a:hover{
    background-repeat: no-repeat;
    background-position: 0px -51px;
}
@media (max-width: 1500px) {
    .platform-configurator.catalog .objects .tile .tile-thumbnail {
        width: 200px;
    }
}
@media (max-width: 1400px) {
    .platform-configurator.catalog .objects .tile {
        width: 48%;
    }
    .platform-configurator.catalog .objects .tile .tile-thumbnail {
        width: 200px;
    }
}
@media (max-width: 1320px) {
    .platform-configurator.catalog.members.mCard > .memberHolder .productsCatalog .radioCatalog .silver-radio {
        
        margin-right: 45px;
    }
}
@media (max-width: 1200px) {
    .platform-configurator.catalog.members.mCard > .memberHolder .productsCatalog .radioCatalog .silver-radio {
        max-width: 265px;
        margin: 0;
    }
}
@media (max-width: 992px) {
    .platform-configurator.catalog .objects .tile {
        width: 100%;
    }
    .platform-configurator.catalog #filter-menu {
        z-index: 99;
    }
    .platform-configurator.catalog #filter-menu .toggler {
        top: 10px;
    }
    .platform-configurator.catalog .main-flex {
        padding-top: 60px;
    }
    .platform-configurator.catalog .filters .filter .flex-row.extra-filters {
        justify-content: center;
    }
    .platform-configurator .filters .filter .title {
        font-size: 16px;
    }
    #filter-menu.opened .apply-filter {
        display: block;
        position: fixed;
        position: absolute;
        bottom: 0;
        width: 100%;
    }
    .catalog-item .flex-main {
        display: block;
        flex-direction: column;
    }
    .catalog-item .flex-main .left-content,
    .catalog-item .flex-main .right-content {
        display: block;
        position: relative;
        width: 100%;
    }
    .catalog-item .flex-main .right-content {
        width: 100%;
        top: unset;
    }
    .personal-popup.catalog-item>.popup-container>.head {
        padding-left: 13px;
    }
    .platform-configurator.catalog.members .main-flex {
        padding-top: 5px;
    }
    .platform-configurator.catalog.members .filter-menu {
        position: static;
        top: unset;
        height: auto;
    }
    .platform-configurator.catalog.members .search-box {
        padding-top: 55px !important;
        z-index: 99 !important;
    }
    .platform-configurator.catalog.members .search-box .loupe {
        top: 63px !important;
    }
    .platform-configurator.catalog.members .search-box .erase {
        top: 70px !important;
    }
    .platform-configurator.catalog.members .platform-configurator.catalog #filter-menu .toggler {
        z-index: 999;
        position: sticky;
        top: 176px;
        right: 15px;
        position: absolute;
        top: -45px;
        right: -4px;
        z-index: 999;
    }
    .platform-configurator.catalog.members >.main-flex > #filter-menu .toggler {
        position: fixed;
        top: 94px;
        right: 16px;
        z-index: 999;
    }
    .platform-configurator.catalog.members.mCard .memberHolder .rotate-menu {
        top: 82px;
        margin-top: -37px;
    }
    .platform-configurator.catalog.members.mCard .memberHolder .rotate-menu > ul > li {
        padding: 8px 4px;
        width: 150px;
        font-size: 15px;
    }
    .platform-configurator.catalog.members.mCard .memberHolder .rotate-menu .strip {
        width: 150px !important;
    }
    .platform-configurator.catalog.members.mCard .memberHolder:has(.rotate-content > .tab:nth-child(2).active) .rotate-menu {
        padding-bottom: 40px;
    }
    .platform-configurator.catalog.members.mCard .memberHolder .rotate-content {
        padding-top: 16px;
    }
    .platform-configurator.catalog.members.mCard .memberHolder .cHead {
        margin-bottom: 8px;
    }
    .platform-configurator.catalog.members.mCard .memberHolder .cHead .divImg {
        width: 140px;
    }
    .platform-configurator.catalog.members.mCard .memberHolder .cHead .tile-name > div:nth-child(1) {
        font-size: 20px;
    }
    .platform-configurator.catalog.members.mCard .memberHolder .flex-tab1 {
        flex-wrap: wrap;
    }
    .platform-configurator.catalog.members.mCard .memberHolder .flex-tab1 tr {
        flex-direction: row;
        font-size: 12px;
        line-height: 1.2;
    }
    .platform-configurator.catalog.members.mCard .memberHolder .title {
        font-size: 22px;
        margin-bottom: 16px;
    }
    .platform-configurator.catalog.members.mCard .memberHolder .about > div:not(.title),
    .platform-configurator.catalog.members.mCard .memberHolder .about > div:not(.title) *{
        font-size: 14px !important;
    }
    .platform-configurator.catalog.members.mCard .memberHolder .flex-tab1 .title {
        padding-bottom: 12px;
    }
    .platform-configurator.catalog.members.mCard .memberHolder .flex-tab1 .tab1-tables tr {
        padding: 8px 0;
    }
    .platform-configurator.catalog.members.mCard .memberHolder .flex-services {
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 16px 12px;
    }
    .platform-configurator.catalog.members.mCard .memberHolder .flex-services > .service {
        flex: 1 1 100%;
    }
    .platform-configurator.catalog.members.mCard .memberHolder .flex-services > .service > .servicesList {
        list-style: none;
        padding: 0;
    }
    .platform-configurator.catalog.members.mCard .memberHolder .flex-services > .service > .servicesList > li {
        display: flex;
        gap: 8px;
        align-items: baseline;
        margin-bottom: 10px;
    }
    .platform-configurator.catalog.members.mCard .memberHolder .flex-services > .service > .servicesList > li::before {
        content: '';
        display: block;
        width: 11px;
        height: 14px;
        background: url(/img/Icons/blue-mark.png) 00 no-repeat;
        background-size: contain !important;
        flex: 0 0 auto;
    }
    .platform-configurator.catalog.members.mCard .memberHolder .company-info {
        flex-wrap: wrap;
    }
    .platform-configurator.catalog.members.mCard .memberHolder .company-info > div {
        width: 100% !important;
    }
    .platform-configurator.catalog.members.mCard .memberHolder .company-info > .docs .docsList .doc {
        font-size: 14px;
    }
    .platform-configurator.catalog.members.mCard .memberHolder .company-info > .docs .docsList .doc img {
        width: 30px;
        height: 30px;
    }
    .platform-configurator.catalog.members.mCard > .memberHolder .productsCatalog .radioCatalog {
        position: sticky;
        z-index: 99;
        justify-content: flex-start;
    }
    .platform-configurator.catalog.members.mCard > .memberHolder .productsCatalog .radioCatalog .silver-radio {
        position: absolute;
        top: -30px;
        flex-direction: row;
        max-width: 265px;
    }
    .platform-configurator.catalog.members.mCard > .memberHolder .productsCatalog .radioCatalog .silver-radio .radio-row{
        padding: 8px 0;
    }
    .platform-configurator.catalog.members.mCard > .memberHolder .productsCatalog .radioCatalog .silver-radio .radio-row > span{
        font-size: 12px;
    }
    .platform-configurator.catalog.members.mCard > .memberHolder .productsCatalog .objects {
        margin-top: 0px;
    }
    .platform-configurator.catalog .objects .tile .tile-name {
        margin-bottom: 8px;
    }
    .platform-configurator.catalog .objects .tile .btn-blue {
        position: relative;
        left: unset;
        bottom: unset;
        transform: none;
    }
    .platform-configurator.catalog.members > .main-flex > .objects .search-box {
        top: 82px;
        margin-top: -30px;
        padding-top: 12px !important;
        padding-right: 65px;
    }
    .platform-configurator.catalog.members > .main-flex > .objects .search-box .erase {
        right: 96px;
        top: 20px !important;
    }
    .platform-configurator.catalog.members > .main-flex > .objects .search-box .loupe {
        right: 70px;
        top: 20px !important;
    }
    .top-navigation .container .row > div {
        width: 50%;
    }
    .top-navigation .container .row > div:first-child {
        width: 30%;
    }
    .top-navigation .container .row > div:nth-child(2) {
        min-width: 260px;
    }
    .branding .b-flex {
        
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }
    .branding .b-flex > div {
        width: 100%;
        text-align: center;
        padding: 0;
    }
    .branding .b-flex .tar {
        display: flex;
        align-items: center;
    }
    .platform-configurator.mCard .platform-configurator.catalog .filter-menu {
        position: sticky !important;
        top: 270px;
    }
    .no-results {
        font-size: 14px;
    }
    
    .platform-configurator.catalog.members .back-top{
        display: block;
    }
    .platform-configurator.catalog.members.mCard > .memberHolder .memberTile{
        padding: 16px;
    }
    .platform-configurator.catalog.members.mCard > .memberHolder .memberTile.flex-row {
        display: block;
    }
    .platform-configurator.catalog.members.mCard > .memberHolder .company-info{
        width: 100%;
    }
    .platform-configurator.catalog.members.mCard > .memberHolder .flex-tab1{
        width: 100%;
        gap: 24px;
    }
}
.appPreloader {
    display: flex;
    position: absolute;
    align-items: flex-start;
    justify-content: start;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    user-select: none;
    z-index: 100;
    background: rgba(255, 255, 255, 0);
    transition: linear 0.5s;
    transition-delay: 1s;
}
.appPreloader.loading {
    background: rgba(255, 255, 255, 0.6);
}
.appPreloader.loading.progress {
    width: 100%;
}
.appPreloader .progress {
    position: relative;
    width: 0%;
    height: 2px;
    background: #2d87ff;
    border-radius: 0;
    box-shadow: 0px 1px 1px 0px rgb(73 107 235 / 88%);
    transition: all .5s;
}
.header-2022 {
    display: block;
    height: auto;
    overflow: visible;
    background: url(https://aeronext.aero/img/header/bg-mini-head.png) no-repeat center top;
    background-size: cover;
    min-height: auto;
    height: auto;
    position: relative;
    margin-bottom: 20px;
    z-index: 99;
    position: sticky;
    top: 0px;
    font-family: 'Roboto' !important;
    transition: none;
}
.inner-top {
    display: block;
    position: relative;
    width: 100%;
    z-index: 150;
}
.top-navigation {
    background: #1c335a;
    width: 100%;
    z-index: 999;
    position: fixed;
    top: 0px;
}
.top-navigation .container {
    max-width: 1170px;
    margin-right: auto;
    margin-left: auto;
    padding: 0;
    padding-left: 15px;
    padding-right: 15px;
}
.top-navigation .container .row {
    margin-left: -15px;
    margin-right: -15px;
}
.top-navigation .container .row .logo-mini {
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
}
.top-navigation .container .row .join {
    display: inline-block;
}
.top-navigation .container .row .join .join__button {
    display: block;
    color: #FFF;
    font-size: 15px;
    line-height: 1em;
    padding: 12px 30px;
    text-align: center;
    cursor: pointer;
    background: #b12807;
    border-radius: 2px;
}
.top-navigation .container .row .join .join__button:hover {
    background: #87230b;
    color: #FFF !important;
}
.top-navigation .container .row .login {
    display: inline-block;
    float: right;
}
.top-navigation .container .row .sm-show {
    display: none;
}
.branding {
    position: relative;
    z-index: 30;        
    padding-top: 39px;
    padding-left: 16px;
    padding-right: 16px;
}
.branding .container {
    padding: 18px 15px 7px 15px;
    margin: auto;
    max-width: 1170px;
    height: auto;
}
.branding .b-flex {
    display: flex;
    align-items: center;
}
.branding .b-flex .tar {
    display: flex;
    align-items: center;
}
.branding .b-flex .company {
    display: inline-flex;
    align-items: center;
}
.branding .b-flex .company .company__logo {
    margin: 0px;
    width: initial;
    display: flex;
    align-items: center;
}
.branding .b-flex .company .company__logo > a {
    display: block;
    border: none;
}
.branding .b-flex .company .company__logo > a.logo_image {
    width: 45px;
    margin-right: 20px;
}
.branding .b-flex .company .company__logo > a.logo_title {
    width: 160px;
}
.branding .b-flex .tel {
    display: inline-block;
    vertical-align: middle;
    padding-right: 36px;
    margin-left: 60px;
}
.branding .b-flex .tel .tel__link {
    color: #2f353f;
    text-decoration: none;
    font-size: 24px;
    white-space: nowrap;
}
.branding .b-flex .tel .tel__link:hover {
    color: #b12807;
}
.branding .b-flex .social {
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
    white-space: nowrap;
}
.branding .b-flex .social .social__link {
    position: relative;
    display: inline-block;
    text-decoration: none;
    font-size: 14px;
    width: 24px;
    height: 24px;
    margin: 6px;
    background-color: #3c5989;
    border-radius: 2px;
}
.branding .b-flex .social .social__link.telegram::before {
    content: '';
    display: block;
    position: absolute;
    width: 80%;
    height: 80%;
    left: 8%;
    top: 10%;
    background: url(/imgs/telegram-app.svg) no-repeat;
    background-size: cover;
    filter: invert(99%) sepia(100%) saturate(2%) hue-rotate(118deg) brightness(108%) contrast(100%);
}
.branding .b-flex .social .social__link.vk::before {
    content: '';
    display: block;
    position: absolute;
    width: 85%;
    height: 85%;
    left: 10%;
    top: 10%;
    background: url(/imgs/vk.svg) no-repeat;
    background-size: cover;
    filter: invert(99%) sepia(100%) saturate(2%) hue-rotate(118deg) brightness(108%) contrast(100%);
}
.branding .b-flex .social .social__link.rutube::before {
    content: '';
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    left: 10%;
    top: 10%;
    background: url(/imgs/rutube.svg) no-repeat;
    background-size: cover;
    filter: invert(99%) sepia(100%) saturate(2%) hue-rotate(118deg) brightness(108%) contrast(100%);
}
.branding .b-flex .social .social__link.dzen {
    display: inline-block !important;
}
.branding .b-flex .social .social__link.dzen::before {
    content: '';
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    left: 10%;
    top: 10%;
    background: url(/imgs/dzen.svg) no-repeat;
    background-size: cover;
    filter: invert(99%) sepia(100%) saturate(2%) hue-rotate(118deg) brightness(108%) contrast(100%);
}
.branding .b-flex .join {
    display: none;
}
.branding .banner-top {
    display: none;
}
@media (min-width: 1200px) {
    .branding {
        padding: 6px;
        padding-top: 39px;
    }
}
@media (max-width: 1200px) {
    .branding .b-flex .tel {
        margin-left: 0px;
    }
}
@media (max-width: 992px) {
    .branding .b-flex .tar {
        justify-content: center;
    }
    
    .branding .b-flex .tel {
        margin-left: 0;
        display: none;
    }
}
@media (max-width: 992px) {
    .branding .b-flex {
        gap: 4px;
    }
    
    .branding .b-flex .tel__link {
        font-size: 20px;
    }
    
    .branding .b-flex .tar {
        flex-direction: column;
    }
    
    .branding .b-flex .tel {
        padding: 0;
    }
    
    .branding .b-flex .company .company__logo > a.logo_title {
        width: 120px;
    }
    .branding .b-flex .company .company__logo > a.logo_title img {
        width: 120px;
    }
    
    .branding .b-flex .company .company__logo > a.logo_image {
        width: 30px;
        flex: 0 0 auto;
        margin-right: 15px;
    }
    .branding .b-flex .company .company__logo > a.logo_image img {
        width: 30px;
    }
    .top-navigation .container .row .join .join__button{
        padding: 6px 20px;
    }    
    .branding .container {
        padding: 0px 15px 7px 15px;
    }
    .top-navigation .container .row .join{
        display: none;
    }
    .top-navigation .container .row .sm-show {
        display: inline-block;
    }
    .top-navigation .container .row .sm-show .social {
        display: none;
    }
    .top-navigation .container .row .sm-show .tel {
        line-height: 1;
        padding: 5px 0;
    }
    .top-navigation .container .row .sm-show .tel a{
        color: #fff;
    }
    .platform-configurator.catalog.members .mainTitle{
        font-size: 24px;
        padding: 0 8px;
        margin-top: 0;
        margin-left: 7px;
    }
    .platform-configurator.catalog.members > .main-flex > #filter-menu{
        position: sticky;
        top: 112px;
        right: 54px;
    }
    .platform-configurator.catalog.members >.main-flex > #filter-menu .toggler{
        position: absolute;
        top: -18px;
        right: unset;
    }
    .platform-configurator.catalog.members.mCard > .memberHolder .productsCatalog:has(.radioCatalog) .objects{
        margin-top: 0;
    }
}
@media (max-width: 750px) {
    .platform-configurator.catalog.members .objects .tiles-container .tile .types {
        display: none;
    }
    .platform-configurator.catalog.members .objects .tiles-container .tile .divImg {
        width: 120px;
        height: 50px;
        overflow: hidden;
        padding: 0px 16px;
        margin-left: 8px;
        margin: auto;
    }
    .platform-configurator.catalog.members .objects .tiles-container .tile .tile-name {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 16px;
        justify-content: center;
        align-items: flex-start;
    }
    .platform-configurator.catalog.members .objects .tiles-container .tile .tile-name a {
        width: 100%;
        margin: 0;
    }
    .platform-configurator.catalog.members .objects .tiles-container .tile .tile-name .types {
        display: flex;
        padding: 0;
    }
    .platform-configurator.catalog.members tr {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 8px 0;
    }
    .platform-configurator.catalog.members tr td {
        text-align: center;
        width: 100% !important;
    }
}
@media (max-width: 650px) {
    .catalog-item .flex-main .left-content .grid-holder table tr td:first-child {
        display: none;
    }
    .catalog-item .flex-main .left-content .grid-holder table .mobile-tr {
        display: block;
        font-weight: 600;
    }
    .search-box .input-field .search {
        padding-right: 50px;
        text-overflow: ellipsis;
    }
}
@media (max-width: 500px) {
    .platform-configurator.catalog.members.mCard .memberHolder .rotate-menu > ul > li {
        padding: 6px 4px;
        width: 110px;
        font-size: 11px;
    }
    .platform-configurator.catalog.members.mCard .memberHolder .rotate-menu .strip {
        width: 110px !important;
    }
    .platform-configurator.catalog.members.mCard .memberHolder .rotate-menu .breadcrumb {
        font-size: 12px;
    }
    .platform-configurator.catalog.members.mCard .memberHolder .cHead .divImg {
        width: 100px;
    }
    .platform-configurator.catalog.members.mCard .memberHolder .cHead .tile-name > div:nth-child(1) {
        font-size: 15px;
    }
    .platform-configurator.catalog.members.mCard .memberHolder .cHead .tile-name > div:nth-child(2) {
        font-size: 12px;
    }
    .platform-configurator.catalog.members.mCard .memberHolder .title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    .platform-configurator.catalog.members.mCard .memberHolder .flex-services {
        gap: 12px;
    }
    .platform-configurator.catalog.members.mCard .memberHolder .flex-services > .service > .servicesList > li {
        gap: 4px;
        font-size: 14px;
    }
    .platform-configurator.catalog.members .mainTitle{
        font-size: 18px;
    }
    .platform-configurator.catalog.members.mCard > .memberHolder .productsCatalog .radioCatalog .silver-radio .radio-row{
        max-width: 110px;
    }
    .platform-configurator.catalog.members.mCard > .memberHolder .productsCatalog .radioCatalog .silver-radio{
        max-width: 225px;
    }
}
