* {
  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.additional .employees-container .employee .name .user-status {
  font-size: 10px;
  line-height: 12px;
  
  color: #a7b4c7;
}
.basket-body .basket-items-section .basket-item-container.additional .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.additional .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.additional .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.additional .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-item:not(:has(.basket-item-container.additional)) .basket-item-container {   
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.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.additional {
  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.additional: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(:first-child):not(:last-child)::before{
    content: "";
    display: block;
    padding-bottom: 12px;
    display: block;
    height: 0.5px;
    
    border-top: 1px solid #a7b4c7;
}



.basket-body .basket-items-section .basket-item-container.additional .BVS-row {
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 16px;
}
.basket-body .basket-items-section .basket-item-container.additional .BVS {
  color: #626262;
}
.basket-body .basket-items-section .basket-item-container.additional .BVS > div {
  background: #a7b4c7;
}
.basket-body .basket-items-section .basket-item-container.additional .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.additional .BVS-row .context-delete .context-menu-container,
.basket-body .basket-items-section .basket-item-container.additional .BVS-row .context-delete .context-menu-toggler {
  width: 16px;
  height: 16px;
}
.basket-body .basket-items-section .basket-item-container.additional .BVS-row .context-delete .context-menu-container .context-menu {
  top: 15px;
}
.basket-body .basket-items-section .basket-item-container.additional .type {
  color: #262b43;
}
.basket-body .basket-items-section .basket-item-container.additional .type span {
  margin-left: 8px;
}
.basket-body .basket-items-section .basket-item-container.additional .additional-info {
  align-items: flex-start;
}
.basket-body .basket-items-section .basket-item-container.additional .employees-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
.basket-body .basket-items-section .basket-item-container.online .employees-container{
  margin: 0;
}
.basket-body .basket-items-section .basket-item-container.additional .employees-container .employee {
  position: relative;
}
.basket-body .basket-items-section .basket-item-container.additional .employees-container .employee .name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  color: #000000;
}
.basket-body .basket-items-section .basket-item-container.additional .employees-container .employee .delete {
  gap: 0 16px;
}

.basket-body .basket-items-section .basket-item-container.additional .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.additional .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.additional .employees-container .appoint:focus,
.basket-body .basket-items-section .basket-item-container.additional .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.additional .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.additional .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.additional .employees-container .appoint.disabled,
.basket-body .basket-items-section .basket-item-container.additional .employees-container .appoint.disabled:hover {
  background: #a2c5f4;
  opacity: 0.65;
  cursor: default;
}
.basket-body .basket-items-section .basket-item-container.additional .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));   
  text-align: center;
  min-width: 80px;
}
.basket-body .basket-items-section .basket-item-container.additional .employees-container .price {
  right: -175px;
}
.basket-body .basket-items-section .basket-item-container .price {
  bottom: 39px;
}
.basket-body .basket-items-section .basket-item-container .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: -300px;
  text-align: center;
  min-width: 100px;
}
.basket-body .basket-items-section .basket-item{
  position: relative;
}
.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-toggler::before{
  display: none;
}
.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 {
  position: relative;
  padding: 0 10px;
  padding-bottom: 10px;
  height: 100%;
}
.personal-popup.frame .error-container iframe {
  height: calc(100% - 10px);
}
.personal-popup.frame .error-container .plan {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: auto;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.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.frame .error-container .plan.loaded {
  display: flex;
}
.personal-popup.frame .error-container .plan > div {
  position: absolute; 
  transform-origin: top left;
}
.personal-popup.frame .error-container .plan img {
  display: block;
}
.personal-popup.frame .error-container .scale-panel {
  display: block;
  align-self: flex-end;
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 6px;
  background: #fff;
  box-shadow: 1px 3px 9px 1px rgba(209, 209, 209, 0.66);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.personal-popup.frame .error-container .scale-panel .flex-row {
  gap: 6px;
}
.personal-popup.frame .error-container .scale-panel .flex-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
.personal-popup.frame .error-container .scale-panel .flex-btns .plus,
.personal-popup.frame .error-container .scale-panel .flex-btns .minus {
  display: block;
  cursor: pointer;
  padding: 4px 4px;
  text-align: center;
  font-size: 22px;
  line-height: 1;
  font-weight: 100;
  width: 25px;
  font-family: fantasy;
  color: #222;
  text-decoration: none;
  transition: all 0.2s;
  border-radius: 2px;
}
.personal-popup.frame .error-container .scale-panel .flex-btns .plus:hover,
.personal-popup.frame .error-container .scale-panel .flex-btns .minus:hover {
  box-shadow: 1px 3px 9px 1px rgba(209, 209, 209, 0.66);
  color: #222;
}
.personal-popup.frame .error-container .scale-panel .scale-range {
  padding: 2px;
  height: 100px;
}
.personal-popup.frame .error-container .scale-panel .scale-range input[type=range] {
  height: 100%;
  width: 4px;
  border-radius: 5px;
  background: #d5dbe1;
  outline: none;
  opacity: 0.7;
  transition: opacity 0.2s;
  writing-mode: vertical-lr;
  direction: rtl;
  -moz-appearance: slider-vertical;
       appearance: slider-vertical;
  -webkit-appearance: none;
  vertical-align: bottom;
}
.personal-popup.frame .error-container .scale-panel .scale-range input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #000000;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.personal-popup.frame .error-container .scale-panel .scale-range input[type=range]::-webkit-slider-thumb:hover {
  box-shadow: 0px 0px 0px 5px rgba(0, 0, 0, 0.16);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.personal-popup.frame .error-container .scale-panel .scale-range input[type=range]::-moz-range-thumb {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #000000;
  cursor: pointer;
}
.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;
        padding-bottom: 8px;
    }
    .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;
    }
}

* {
  box-sizing: border-box;
}
.account-holder a,
.popup-container a {
  
  text-decoration: none;
}
.account-holder a:hover,
.account-holder a:focus {
  
  text-decoration: none;
}
.account-holder a,
.popup-container a {
  
  text-decoration: none;
}
.account-holder a:hover,
.account-holder a:focus {
  
  text-decoration: none;
}
.auc-textarea {
  background: #fff;
  width: 100%;
  padding: 16px 24px;
  border: 1px solid #e2e8f6;
  border-radius: 10px;
  resize: none;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  outline: none;
}
.auc-mgr-response {
  margin: 10px 0;
}
.auc-mgr-response > .btn-blue {
  float: right;
  margin-top: 10px;
}
.auc-mgr-response > textarea {
  background: #f9f9f9;
}
#EnterBlockNew {
  display: none !important;
}
#DivContent {
  margin: 0 !important;
  padding: 0 !important;
}


.flex-row.between,
.flex-column.between {
  justify-content: space-between;
}
.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-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;
}
.account-holder {
  position: relative;
  background-color: #f1f6ff;
  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;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
}
.account-holder > .loader-holder,
.testing-module .loader-holder,
.LearningUserPracticalTasks .loader-holder {
  display: flex;
  justify-content: center;
  position: fixed;
  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;
}
.account-holder > .loader-holder .loader-block,
.testing-module .loader-holder .loader-block,
.LearningUserPracticalTasks .loader-holder .loader-block {
  visibility: hidden;
}
.account-holder > .loader-holder.shown,
.testing-module .loader-holder.shown,
.LearningUserPracticalTasks .loader-holder.shown {
  background: rgba(255, 255, 255, 0.6);
}
.account-holder > .loader-holder.shown .loader-block,
.testing-module .loader-holder.shown .loader-block,
.LearningUserPracticalTasks .loader-holder.shown .loader-block {
  visibility: visible;
}
.account-holder .account-header {
  width: 100%;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  background: #ffffff;
  padding: 14px 20px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 7%);
  z-index: 999;
}
.account-holder .account-header .logo {
  height: 42px;
  width: 220px;
  background: url(/imgs/header/logo-head-scroll.svg) 00 no-repeat;
  background-size: contain;
}
.account-holder .account-header .back {
  display: flex;
  align-items: center;
  background: #5097f4;
  border-radius: 50px;
  padding: 10px 16px;
  color: #fff;
  margin-left: 48px;
  line-height: 19px;
  transition: linear 0.2s;
  width: initial;
  height: initial;
}
.account-holder .account-header .back::before {
  content: "";
  display: inline-block;
  background: url(/imgs/vectors/arrow-left-white.svg) 00 no-repeat;
  background-size: contain;
  width: 16px;
  height: 7px;
  margin-right: 8px;
  background-size: cover !important;
  filter: none !important;
}
.account-holder .account-header .back:hover {
  
  background: #3977c8;
  color: #fff;
}
.account-holder .account-header .back:active {
  background: #5a60f1;
}
.account-holder .account-header .functions {
  position: absolute;
  right: 14px;
  width: 50%;
  justify-content: flex-end;
  gap: 50px;
}
.account-holder .account-header .alert-box,
.account-holder .account-header .message-box {
  position: relative;
  text-shadow: 1px 1px 3px #5f1c1c;
  cursor: pointer;
}
.account-holder .account-header .alert-box.new .bell {
  animation: bellrotate 1s infinite linear;
}
.account-holder .account-header > .flex-row {
  min-height: 44px;
}
@keyframes bellrotate {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(10deg);
  }
  20% {
    transform: rotate(0deg);
  }
  30% {
    transform: rotate(-10deg);
  }
  40% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.account-holder .account-header .alert-box .bell {
  width: 28px;
  height: 28px;
  background: url(/imgs/vectors/bell.svg) 00 no-repeat;
  background-size: contain;
  transition: 0.25s linear;
  float: left;
}
.account-holder .account-header .message-box .message {
  width: 28px;
  height: 28px;
  background: url(/imgs/vectors/message.svg) 00 no-repeat;
  background-size: contain;
  transition: 0.25s linear;
  float: left;
}
.account-holder .account-header .alert-box.new .note-count,
.account-holder .account-header .message-box.new .note-count {
  display: flex;
  background: #e10a0a;
}
.account-holder .account-header .alert-box .note-count,
.account-holder .account-header .message-box .note-count {
  
  position: absolute;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 2px;
  min-width: 14px;
  height: 14px;
  background: #4798de;
  font-weight: bold;
  font-size: 8px;
  line-height: 9px;
  text-align: center;
  right: -2px;
  top: -3px;
  color: #ffffff;
  border-radius: 50%;
}
.account-holder .account-header .message-box .note-count {
  right: -3px;
  top: -3px;
}
.account-holder .navbar-toggle {
  float: none;
  margin: 0;
  padding: 0;
  border-width: 0;
  border-radius: 0;
  top: 0;
  left: 0;
  -webkit-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;
}
.account-holder .navbar-toggle .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.account-holder .navbar-toggle .icon-bar {
  width: 25px;
  margin: 0px;
  margin-bottom: 5px;
  margin-left: 0;
  background: #3977c8;
  border-radius: 0;
  display: block;
  height: 2px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.account-holder .navbar-toggle .icon-bar:last-child {
  margin-bottom: 0px;
}
.account-holder .navbar-toggle.navOpen .icon-bar {
  position: absolute;
  top: 0px;
  left: -10px;
  -webkit-transform-origin: center;
  transform-origin: center;
  background: #3977c8;
}
.account-holder .navbar-toggle.navOpen .icon-bar:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.account-holder .navbar-toggle.navOpen .icon-bar:nth-child(3) {
  opacity: 0;
}
.account-holder .navbar-toggle.navOpen .icon-bar:nth-child(4) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 0px;
}
.account-holder .profile-info {
  display: flex;
  justify-content: center;
  align-items: center;
}
.account-holder .profile-info::before {
  display: none;
}
.account-holder .profile-info .avatar {
  display: block;
  background: url(/imgs/vectors/account-dummy.svg) 00 no-repeat;
  width: 40px;
  height: 40px;
  background-size: contain !important;
  cursor: pointer;
  border-radius: 50%;
  border: solid 2px #a7b4c7;
}
.account-holder .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;
  -webkit-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);
}
.account-holder .profile-tile .profile-box {
  display: block;
  position: relative;
  background: #fff;
  backdrop-filter: blur(4px);
  border-radius: 10px;
  padding: 16px;
  font-weight: 300;
  font-size: 12px;
  line-height: 14px;
}
.account-holder .profile-tile .profile-box > span label {
  margin-bottom: 10px;
}
.account-holder .profile-box {
  box-shadow: 0px 4px 20px rgb(83 93 150 / 10%);
}
.account-holder .profile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.account-holder .profile-menu li {
  padding: 7px;
}
.account-holder .profile-box a {
  display: block;
  color: #262b43;
}
.account-holder .profile-box > span {
  display: block;
  text-align: center;
}
.account-holder .profile-box .cross-toggle {
  position: absolute;
  width: 13px;
  height: 13px;
  right: 8px;
  top: 8px;
}
.account-holder .portrait-box,
.personal-popup.org-info .portrait-box {
  position: relative;
  width: 71px;
  height: 71px;
  border-radius: 50%;
  margin: auto;
  overflow: hidden;
  margin-bottom: 16px;
}
.account-holder .portrait-box .portrait,
.personal-popup.org-info .portrait-box .portrait {
  display: block;
  width: 71px;
  height: 71px;
  background: url(/imgs/vectors/account-dummy.svg) 00 no-repeat;
  background-size: contain !important;
  background-position: center center !important;
}
.personal-popup.org-info .portrait-box,
.personal-popup.org-info .portrait-box .portrait {
  width: 144px;
  height: 144px;
}
.account-holder .portrait-box .portrait-load {
  position: absolute;
  width: 100%;
  height: 30px;
  left: 0px;
  bottom: 0px;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.1s ease-in;
  text-align: center;
  cursor: pointer;
}
.account-holder .portrait-box:hover .portrait-load {
  height: 100%;
}
.account-holder .portrait-box .portrait-load::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  content: "";
  pointer-events: none;
  background: url(/SiteCMS/img/photo.svg) 00 no-repeat;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(-50%, -50%) scale(0.66);
  transform: translate(-50%, -50%) scale(0.66);
  will-change: transform;
}
.account-holder .profile-box li:hover {
  background: #ebeff3;
  border-radius: 5px;
}
.account-holder .profile-box li a:hover {
  color: inherit;
}
.account-holder .profile-info:hover .profile-tile {
  opacity: 0.95;
  visibility: visible;
  bottom: 22px;
}
.account-holder .header_bg .profile-info::before,
.account-holder .header_bg .cart::before {
  filter: none;
}
.account-holder .account-body {
  position: relative;
  margin-top: 72px;
  height: calc(100vh - 72px);
  width: 100%;
}
.account-holder .account-body .left-menu {
  background: #ffffff;
  width: 230px;
  height: 100%;
  z-index: 9999;
}

.account-holder .account-body .left-menu ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: flex-start;
  width: 100%;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
}
.account-holder .account-body .left-menu ul:not(:first-child)::before {
  content: "";
  display: block;
  width: calc(100% - 44px);
  height: 0.5px;
  background: #a7b4c7;
  margin: 0 22px;
  margin-bottom: 8px;
}
.account-holder .account-body .left-menu ul:not(:last-child) {
  margin-bottom: 8px;
}
.account-holder .account-body .left-menu ul li {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #ffffff;
}
.account-holder .account-body .left-menu ul li.active {
  
  background: linear-gradient(89.93deg, rgb(80 151 244 / 15%) 1.69%, rgb(80 151 244 / 12%) 54.7%, rgba(80, 151, 244, 0) 99.94%);
}

.account-holder .account-body .left-menu ul li.active:before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 2px;
  background: #5097f4;
  border-radius: 10px;
}
.account-holder .account-body .left-menu ul li a {
  display: flex;
  align-items: flex-start;
  margin-left: 20px;
  padding: 8px 0;
  padding-right: 22px;
  color: #6c788a;
}
.account-holder .account-body .left-menu ul li a .item-counter {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  background: #e10a0a;
  font-weight: bold;
  font-size: 9px;
  line-height: 10px;
  text-align: center;
  color: #ffffff;
  border-radius: 100%;
  flex: 0 0 auto;
  align-self: center;
  margin-left: 8px;
  padding-right: 1px;
}
.account-holder .account-body .left-menu ul li #cart div:not(.item-counter) {
  width: fit-content;
}
.account-holder .account-body .left-menu ul li a.new .item-counter {
  display: flex;
}
.account-holder .account-body .left-menu ul li:hover a,
.account-body .left-menu ul li.active a {
  color: #5097f4;
  text-decoration: none;
}
.account-holder .account-body .left-menu ul li a div {
  width: calc(100% - 31px);
}
.account-holder .account-body .left-menu ul li a::before {
  content: "";
  display: block;
  margin-right: 7px;
  width: 12px;
  height: 12px;
  background-size: contain !important;
  background-position: center center !important;
  width: 20px;
  height: 16px;
}
.account-holder .account-body .left-menu ul li:hover a::before,
.account-body .left-menu ul li.active a::before {
  filter: invert(49%) sepia(97%) saturate(818%) hue-rotate(191deg) brightness(96%) contrast(99%);
}
.account-holder .account-body .left-menu ul li #learning::before,
.account-holder .account-body .left-menu ul li #students::before {
  background: url(/imgs/account-vectors/learning.svg) 00 no-repeat;
}
.account-holder .account-body .left-menu ul li #programs::before {
  background: url(/imgs/account-vectors/program.svg) 00 no-repeat;
}
.account-holder .account-body .left-menu ul li #payments::before {
  background: url(/imgs/account-vectors/history.svg) 00 no-repeat;
}
.account-holder .account-body .left-menu ul li #cart::before {
  background: url(/imgs/account-vectors/cart.svg) 00 no-repeat;
}
.account-holder .account-body .left-menu ul li #certificates::before {
  background: url(/imgs/account-vectors/certificate.svg) 00 no-repeat;
}
.account-holder .account-body .left-menu ul li #statistics::before {
  background: url(/imgs/account-vectors/statistics.svg) 00 no-repeat;
}
.account-holder .account-body .left-menu ul li #support::before,
.account-holder .account-body .left-menu ul li #techRequests::before {
  background: url(/imgs/account-vectors/help.svg) 00 no-repeat;
}
.account-holder .account-body .left-menu ul li #settings::before {
  background: url(/imgs/account-vectors/settings.svg) 00 no-repeat;
}
.account-holder .account-body .left-menu ul li #personal::before,
.account-holder .account-body .left-menu ul li #employees::before {
  background: url(/imgs/account-vectors/personal.svg) 00 no-repeat;
}
.account-holder .account-body .left-menu ul li #instruction::before {
  background: url(/imgs/account-vectors/instruction.svg) 00 no-repeat;
}
.account-holder .account-body .left-menu ul li #platforms::before,
.account-holder .account-body .left-menu ul li #platform::before {
  background: url(/imgs/account-vectors/platforms.svg) 00 no-repeat;
}
.account-holder .account-body .left-menu ul li #slots::before {
  background: url(/imgs/account-vectors/slots.svg) 00 no-repeat;
}
.account-holder .account-body .left-menu ul li #tasks::before,
.account-holder .account-body .left-menu ul li #diaries::before,
.account-holder .account-body .left-menu ul li #exams::before {
  background: url(/imgs/account-vectors/exams.svg) 00 no-repeat;
}
.account-holder.platform .account-body .left-menu ul li #programs::before {
  background: url(/imgs/account-vectors/classes.svg) 00 no-repeat;
}
.account-holder .account-body .left-menu ul li #instructors::before {
  background: url(/imgs/account-vectors/instructors.svg) 00 no-repeat;
}
.account-holder .account-body .left-menu ul li #nomenclature::before {
  background: url(/imgs/account-vectors/nomenclature.svg) 00 no-repeat;
}
.account-holder .account-body .left-menu ul li #documentManagment::before,
.account-holder .account-body .left-menu ul li #documents::before {
  background: url(/imgs/account-vectors/documentManagment.svg) 00 no-repeat;
}
.account-holder .account-body .left-menu ul li #extra::before {
  background: url(/imgs/account-vectors/extra.svg) 00 no-repeat;
}
.account-holder .account-body .left-menu ul li #orders::before {
  background: url(/imgs/account-vectors/orders.svg) 00 no-repeat;
}
.account-holder .account-body .left-menu ul li #schedule::before {
  background: url(/imgs/account-vectors/schedule.svg) 00 no-repeat;
}
.account-holder .account-body .left-menu ul li #groups::before {
  background: url(/imgs/account-vectors/groups.svg) 00 no-repeat;
}
.account-holder .account-body .left-menu ul li #curriculum::before {
  background: url(/imgs/account-vectors/curriculum.svg) 00 no-repeat;
}
.account-holder .account-body .left-menu ul li.disabled a {
  color: #c6d0db;
  cursor: default;
}
.account-holder .account-body .left-menu ul li.disabled a::before {
  filter: invert(87%) sepia(16%) saturate(160%) hue-rotate(171deg) brightness(94%) contrast(91%);
  opacity: 0.5;
}
.account-holder .account-body .main-content {
  position: relative;
  height: 100%;
  width: calc(100% - 230px);
  overflow: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.account-holder .account-body .content-container {
  position: relative;
  padding: 32px 56px;
  min-height: 100%;
  max-width: 1400px;
}
.account-holder.platform .account-body .content-container {
  max-width: 100%;
}
.account-holder .breadcrumb {
  background-color: transparent;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  padding: 0;
  color: #6c788a;
  margin-bottom: 36px;
  overflow: hidden;
}
.account-holder .breadcrumb.noMargin {
  margin: 0;
}
.account-holder .account-body .breadcrumb li {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 285px;
}
.account-holder .account-body .breadcrumb li:last-child {
  max-width: none;
}
.account-holder .account-body .breadcrumb li a {
  color: #6c788a;
}
.account-holder .account-body .instructions-container .breadcrumb li a {
  color: #3977c8;
}
.account-holder .account-body .breadcrumb li div {
  display: inline;
}
.account-holder .account-body .breadcrumb a:hover,
.account-holder .account-body .instructions-container .breadcrumb li a:hover {
  color: #5097f4;
  text-decoration: none;
}
.account-holder .account-body .content-container > .name {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #262b43;
  margin-bottom: 36px;
}
.account-holder .account-body .title {
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  color: #3977c8;
  margin-bottom: 22px;
}
.account-holder .account-body .title.bold {
  font-weight: 500;
  margin-bottom: 14px;
}
.account-holder .account-body .error-main {
  position: absolute;
  text-align: center;
  font-size: 20px;
  line-height: 24px;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.account-holder .account-body .tiles-container {
  flex-wrap: wrap;
  align-items: stretch;
  gap: 16px;
}
.account-holder .account-body .tiles-container.practice{
  .tile-title.nobefore:first-of-type{
    margin-bottom: 12px;
  }
}
.account-holder .account-body .tiles-container:not(:last-child) {
  margin-bottom: 40px;
}
.account-holder .account-body .tiles-container .white-tile {
  display: block;
  position: relative;
  
  width: calc((100% - 16px) / 2);
  transition: linear 0.2s;
  box-shadow: 0px 4px 20px rgba(83, 93, 150, 0.1);
}

.account-holder .account-body .tiles-container.practice .white-tile .tile-title {
  position: relative;
  justify-content: space-between;
  align-items: center;
  color: #262b43;
  flex-wrap: wrap;
  gap: 8px;
}
.account-holder .account-body .tiles-container.practice .white-tile .tile-title:first-child {
  margin-bottom: 24px;
}
.account-holder .account-body .tiles-container.practice .white-tile .tile-title .name {
  color: #5097f4;
  font-size: 18px;
  line-height: 18px;
}
.account-holder .account-body .tiles-container.practice .white-tile .tile-title > div {
  width: fit-content;
}
.account-holder .account-body .tiles-container.practice .white-tile .tile-title .status {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  line-height: 1.1;
  font-weight: 400;
  color: #ffffff;
  background: #a7b4c7;
  border-radius: 20px;
  padding: 4px 8px;
}
.account-holder .account-body .tiles-container.practice .white-tile .tile-title .status::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-size: contain !important;
  flex: 0 0 auto;
}
.account-holder .account-body .tiles-container.practice .white-tile .tile-title .status.empty::before {
  display: none;
}
.account-holder .account-body .tiles-container.practice .white-tile .tile-title .status.approved::before {
  background: url(/imgs/vectors/study_status-checked.svg) 0 0 no-repeat;
}
.account-holder .account-body .tiles-container.practice .white-tile .tile-title .status.canceled::before {
  background: url(/imgs/vectors/study_status-checked.svg) 0 0 no-repeat;
}
.account-holder .account-body .tiles-container.practice .white-tile .tile-title .status.inProcess::before {
  background: url(/imgs/vectors/study_status-checked.svg) 0 0 no-repeat;
}
.account-holder .account-body .tiles-container.practice .white-tile .tile-title .status.approved {
  background: #27ae60;
}
.account-holder .account-body .tiles-container.practice .white-tile .tile-title .status.canceled {
  background: #eb5757;
}
.account-holder .account-body .tiles-container.practice .white-tile .tile-title .status.inProcess {
  background: #f2994a;
}
.account-holder .account-body .tiles-container.practice .white-tile .info {
  gap: 12px 16px;
}
.account-holder .account-body .tiles-container.practice .white-tile .info > div {
  font-weight: 600;
  font-size: 10px;
  line-height: 12px;
  color: #6c788a;
  
}
.account-holder .account-body .tiles-container.practice .white-tile .info > div span {
  font-weight: 400;
  color: #262b43;
  margin-left: 4px;
}
.account-holder .account-body .tiles-container.practice .white-tile .info .address {
  width: 100%;
}
.account-holder .account-body .tiles-container.practice .white-tile .tile-title .address.link {
  text-decoration: underline;
  color: #19297c;
  gap: 6px;
}
.account-holder .account-body .tiles-container.practice .white-tile .tile-title .address.link .map {
  display: block;
  width: 12px;
  height: 12px;
  background: url(/imgs/account-vectors/platforms.svg) 00 no-repeat;
  background-size: contain;
  filter: invert(39%) sepia(97%) saturate(406%) hue-rotate(166deg) brightness(91%) contrast(64%);
  filter: invert(12%) sepia(71%) saturate(4581%) hue-rotate(229deg) brightness(50%) contrast(94%);
}
.account-holder .account-body .tiles-container.practice .white-tile .tile-title .address.link:hover {
  color: #337ab7;
}
.account-holder .account-body .tiles-container.practice .white-tile .tile-title .address.link:hover .map {
  filter: invert(57%) sepia(84%) saturate(2502%) hue-rotate(192deg) brightness(99%) contrast(94%);
  filter: invert(45%) sepia(16%) saturate(1853%) hue-rotate(166deg) brightness(93%) contrast(94%);
}
.account-holder .account-body .tiles-container.practice .white-tile .tile-title {
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
}
.account-holder .account-body .tiles-container.practice .white-tile .info .middle {
  text-align: center;
}
.account-holder .account-body .tiles-container a.white-tile:hover {
  box-shadow: 0px 4px 20px 0px rgba(83, 93, 150, 0.3);
}
.account-holder .account-body .tiles-container a.white-tile.disabled:hover {
  box-shadow: 0px 4px 20px rgba(83, 93, 150, 0.1);
}
.account-holder .account-body .white-tile.completed::before{
  content: "";
    display: block;
  width: 24px;
  height: 24px;
  background: url(/imgs/vectors/clock-approved24.svg) 0 0 no-repeat;
  background-size: contain !important;
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 1;
}
.account-holder .account-body .white-tile .tile-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  background: #ffffff;
  
  padding: 16px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  color: #262b43;
  height: 100%;
}
.account-holder .account-body .white-tile .tile-up > span:first-child {
  margin-bottom: 8px;
  display: block;
}
.account-holder .account-body .white-tile .tile-up .tile-img {
  width: calc(100% + 32px);
  height: 160px;
  background-size: cover !important;
  background-position: center center !important;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  margin-left: -16px;
  margin-top: -24px;
  margin-bottom: 10px;
}

.account-holder .account-body .white-tile .tile-title {
  display: flex;
  align-items: baseline;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: #5097f4;
}
.account-holder .account-body .white-tile .tile-title > div {
  width: calc(100% - 21px);
  text-align: justify;
}
.account-holder .account-body .white-tile .tile-title::before {
  content: "";
  display: inline-block;
  background: url(/imgs/vectors/tile-book.svg) 00 no-repeat;
  width: 18px;
  height: 14px;
  background-size: contain;
  background-position: bottom;
  margin-right: 8px;
  flex: 0 0 auto;
}
.account-holder .account-body .white-tile .tile-title.heli::before {
  background: url(/imgs/vectors/tile-heli.svg) 00 no-repeat;
  background-size: contain;
  width: 21px;
  height: 15px;
  filter: invert(49%) sepia(97%) saturate(818%) hue-rotate(191deg) brightness(96%) contrast(99%);
}
.account-holder .account-body .white-tile .tile-title.nobefore::before {
  content: "";
  display: none;
}
.account-holder .account-body .white-tile .stage-status.complete {
  position: absolute;
  top: 16px;
  right: 16px;
}
.account-holder .account-body .white-tile .stage-status.complete::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-size: contain !important;
  background: url(/imgs/vectors/clock-approved24.svg) 0 0 no-repeat;
}
.account-holder .account-body .white-tile.disabled .tile-title.heli::before {
  filter: none;
}
.account-holder .account-body .white-tile .tile-down::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  border: 1px solid #a7b4c7;
  opacity: 0.5;
  margin: 16px 0 8px 0;
}
.account-holder .account-body .white-tile .info {
  flex-wrap: wrap;
  font-weight: 400;
  gap: 8px;
}
.account-holder .account-body .white-tile .info + .info {
  margin: 10px 0;
}
.account-holder .account-body .white-tile .info span {
  margin-left: 8px;
}
.account-holder .account-body .white-tile .gap {
  gap: 40px;
}
.account-holder .account-body .white-tile .scale {
  position: relative;
  background: #e2edff;
  border-radius: 50px;
  height: 14px;
  width: 100%;
  margin-top: 16px;
}
.account-holder .account-body .white-tile .scale.invisible {
  opacity: 0;
}
.account-holder .account-body .white-tile .scale .strip {
  position: absolute;
  left: 0;
  height: 100%;
  width: 50%;
  background: #5097f4;
  border-radius: 50px;
}
.account-holder .account-body .white-tile .scale .strip.finished {
  background: #24cc85;
}
.account-holder .account-body .white-tile.disabled:hover {
  filter: none;
  cursor: default;
}
.account-holder .account-body .white-tile.disabled .tile-content::before {
  content: "";
  display: block;
  position: absolute;
  background: url(/imgs/vectors/lock.svg) 00 no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  right: 16px;
  top: 24px;
}
.account-holder .account-body .tiles-container .white-tile.disabled .blockMsg {
  display: block;
  position: absolute;
  color: #5097f4;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  z-index: 100;
  width: 100%;
  text-align: center;
}
.account-holder .account-body .tiles-container .white-tile.disabled .blockMsg:hover,
.account-holder .account-body .tiles-container .white-tile.disabled .blockMsg:active,
.account-holder .account-body .tiles-container .white-tile.disabled .blockMsg:target {
  color: #5097f4;
}
.account-holder .account-body .white-tile.disabled .tile-content,
.account-body .white-tile.disabled .tile-title {
  color: #a7b4c7;
}
.account-holder .account-body .white-tile.disabled .tile-title {
  margin-right: 24px;
}
.account-holder .account-body .white-tile.disabled .tile-title::before {
  filter: invert(48%) sepia(87%) saturate(407%) hue-rotate(176deg) brightness(99%) contrast(94%);
  opacity: 0.5;
}
.account-holder .account-body .white-tile .attribution {
  font-style: italic;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  margin-top: 8px;
}
.account-holder .account-body .white-tile.disabled .attribution {
  margin-right: 24px;
}
.account-holder .account-body .white-tile.disabled .tile-down::before {
  border: 1px solid #a7b4c7;
}
.account-holder .account-body .white-tile.disabled .scale {
  background: #edf4ff;
}
.account-holder .account-body .white-tile.disabled .scale .strip {
  display: none;
}
.account-holder .account-body .white-tile .objects-info .object {
  margin: 10px 0;
  gap: 8px;
  border-radius: 10px;
  padding: 10px 10px;
  background-color: #5097f4;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
}
.account-holder .account-body .white-tile .objects-info .object .object-info {
  gap: 4px;
  font-size: 11px;
}

.account-holder .account-body .subject-item {
  position: relative;
}
.account-body .subject-item:not(:last-child) {
  border-bottom: 1px solid #a7b4c7;
}
.account-holder .account-body .subjects-container {
  border: 1px solid #a7b4c7;
  border-left: none;
  border-right: none;
  border-top: 0;
}
.account-holder .account-body .subjects-container.no-result {
  border: none;
}
.account-holder .account-body .subject-item > a:first-child {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #262b43;
  text-decoration: none;
  padding: 16px 0;
  align-items: center;
}
.account-holder .account-body .subject-item:first-child > a:first-child {
  padding-top: 0;
}
.account-holder .account-body .subject-item > a:hover {
  color: #5097f4;
  text-decoration: none;
}
.account-holder .account-body .subject-item > a > span {
  width: calc(100% - 40px);
}
.account-holder .account-body .subject-item > a::after {
  content: "";
  display: inline-block;
  background: url(/imgs/vectors/arrow-grey.svg) 0 0 no-repeat;
  width: 14px;
  height: 7px;
  margin-left: 16px;
  position: relative;
  transition: 0.2s;
  transition-property: "transform";
}
.account-holder .account-body .subject-item > a:hover::after {
  filter: brightness(0) saturate(100%) invert(44%) sepia(32%) saturate(3256%) hue-rotate(208deg) brightness(101%) contrast(102%);
}
.account-holder .account-body .subject-item.expanded > a::after {
  transform: rotate(-180deg);
}
.account-holder .account-body .subject-item .subject-content {
  visibility: hidden;
  opacity: 0;
  height: 1px;
  overflow: hidden;
  transition: 0.2s;
  -webkit-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);
}
.account-holder .account-body .subject-item.expanded .subject-content {
  visibility: visible;
  opacity: 1;
  height: initial;
  overflow: initial;
  padding-bottom: 20px;
}
.account-holder .account-body .subject-topics {
  flex-wrap: wrap;
  align-items: stretch;
  gap: 24px;
}
.account-holder .account-body .topic-selector .subject-topics {
  gap: 6px 16px;
}
.account-holder .account-body .subject-topics .topic-item {
  position: relative;
  
  width: calc((100% - 72px) / 4);
  display: flex;
  flex-direction: column;
  
  color: #000000;
  text-decoration: none;
}
.account-holder .account-body .subject-topics .topic-item:hover {
  color: #5097f4;
  text-decoration: none;
}
.account-holder .account-body .subject-topics .topic-item > .preview {
  width: 100%;
  height: 165px;
  background-color: #d9d9d9;
  border-radius: 10px;
  margin-bottom: 16px;
  background-size: cover !important;
  background-position: center center !important;
}
.account-holder .account-body .subject-topics .topic-item.disabled{
  &> .preview{
    background-blend-mode: luminosity;
    position:relative;
    &::before{
      content: '';
      display: block;
      position:absolute;
      height: 100%;
      width: 100%;
      border-radius: 10px;
      background: #d4d4d4;
      opacity: 0.5;
      filter: grayscale(1);
    }
    &:after{
      content: '';
      display: block;
      position:absolute;
      right: 8px;
      top: 8px;
      width: 24px;
      height: 24px;
      background: url(/imgs/vectors/lock.svg) 00 no-repeat;
      background-size: contain;
    }
  }
  & > .name {
    color: gray !important;
  }
}
.account-holder .lesson-container .video-content .video-blocked{
  position:relative;
  display: flex;
  align-items: center;
  justify-content: center;
  img{
    border-radius: 10px;
    filter: grayscale(1);
  }
  .video-block-msg{
    position: absolute;
    display: flex;
    gap: 4px;
    color: gray;
    padding: 10px 18px;
    background: #fff;
    border-radius: 6px;
    font-size: 20px;
    box-shadow: 0px 7px 10px 0px rgb(76 76 76 / 10%);
    &:before{
      content: '';
      display: block;
      width: 24px;
      height: 24px;
      background: url(/imgs/vectors/lock.svg) 00 no-repeat;
      background-size: contain;
      flex:  0 0 auto;
    }
  }
}
.account-holder .account-body .subject-topics .topic-item > .name {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  padding: 0 2px;
}
.account-holder .account-body .subject-topics .topic-item > .preview .ico,
.account-holder .account-body .subject-item > a > .ico {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  top: 8px;
  left: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.account-holder .account-body .subject-item > a > .ico {
  position: relative;
  top: unset;
  left: unset;
  margin-left: 10px;
  width: 24px;
  height: 24px;
}
.account-holder .account-body .topic-selector .subject-item > a > .ico {
  width: 16px;
  height: 16px;
  align-items: baseline;
}

.account-holder .account-body .subject-topics .topic-item > .preview .ico::before,
.account-holder .account-body .subject-item > a > .ico::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-size: contain !important;
}
.account-holder .account-body .subject-item > a > .ico.completed::before {
  background: url(/imgs/vectors/clock-approved24.svg) 0 0 no-repeat;
}
.account-holder .account-body .subject-topics .topic-item > .preview .ico.completed::before,
.account-holder .account-body .topic-selector .subject-item > a > .ico.completed::before {
  background: url(/imgs/vectors/clock-approved.svg) 0 0 no-repeat;
}
.account-holder .account-body .subject-topics .topic-item > .preview .ico.hold::before,
.account-holder .account-body .subject-item > a > .ico.hold::before {
  background: url(/imgs/vectors/clock-hold24.svg) 0 0 no-repeat;
}
.account-holder .account-body .subject-topics .topic-item > .preview .ico.hold::before,
.account-holder .account-body .topic-selector .subject-item > a > .ico.hold::before {
  background: url(/imgs/vectors/clock-hold.svg) 0 0 no-repeat;
}
.account-holder .account-body .subject-item > a > .ico::before {
  width: 24px;
  height: 24px;
}
.account-holder .account-body .subjects-container .completed {
  text-align: center;
}
.account-holder .account-body .subjects-container .btn-blue {
  display: block;
  width: fit-content;
  margin: auto;
  margin-top: 24px;
}
#TestInfo .flex-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
#TestInfo .flex-row.between {
  align-items: center;
  justify-content: space-between;
}
#TestInfo {
  width: 90%;
  margin: auto;
  background: #ffffff;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0px 2px 2px 0px rgb(0 0 0 / 7%);
  background: #c3d9ff;
  box-shadow: 0px 4px 20px 0px rgba(83, 93, 150, 0.1);
  margin-bottom: 90px;
}
#TestInfo > .name {
  font-size: 22px;
  text-align: center;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: solid 1px #ececec;
  color: #000;
  font-family: Inter;
  font-weight: 600;
  border-bottom: solid 1px #afcadd;
}
#TestInfo .flex-row > .col {
  font-size: 12px;
}
#TestInfo .flex-row > .col > span {
  font-weight: bold;
  margin: 0px 5px;
}
#TestInfo .flex-row > .col > #testTimer {
  min-width: 60px;
  display: inline-block;
}
#TestInfo .flex-row {
  margin: 10px 0;
}
.testing-preview {
  display: block;
  text-align: center;
  width: 90%;
  margin: auto;
  padding: 25px;
  border-radius: 8px;
  margin-top: 30px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 4px 20px 0px rgba(83, 93, 150, 0.1);
}
.testing-preview .preview-text {
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
  padding-bottom: 5px;
}
.testing-preview .btn-blue {
  padding: 14px 30px;
  border-radius: 80px;
  background: linear-gradient(91.89deg, #3977c8 0.48%, #5097f4 99.67%);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.testing-preview .btn-blue:hover {
  background: linear-gradient(91.89deg, #679de2 0.48%, #8fbffe 99.67%);
  text-decoration: none;
}
.testing-module ul.question-bar {
  margin: 0;
  padding: 0;
  list-style-type: none;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  flex-basis: 1px;
  flex-wrap: nowrap;
  background: #accbff;
  border-radius: 10px;
  padding: 0px 10px;
}
.testing-module ul.question-bar > li {
  display: inline-block;
  width: 16px;
  height: 10px;
  margin: 0px 2px;
  background: #e2e6ff;
  flex-grow: 1;
  border-radius: 25%;
}
.testing-module ul.question-bar > li.current {
  background: #f8e13d;
}
.testing-module ul.question-bar > li.postponed {
  background: #b4c0d1;
}
.testing-module ul.question-bar > li.correct {
  background: #a1f2a1;
}
.testing-module ul.question-bar > li.wrong {
  background: #ff4545;
}
#TestQuestion {
  width: 90%;
  margin: auto;
  padding: 25px;
  border-radius: 8px;
  margin-top: 30px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 4px 20px 0px rgba(83, 93, 150, 0.1);
}
#TestQuestion > .answers {
  margin: 20px 0;
}
#TestQuestion > .pre-info {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
  color: #4d669f;
}
#TestQuestion > .name {
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
  padding-bottom: 5px;
}
#TestQuestion .hint {
  font-size: 11px;
  text-align: left;
  line-height: 11px;
  color: #4d669f;
}
.testing-module .answer {
  display: flex;
  align-items: center;
  margin: 10px 0;
  padding-left: 33px;
  position: relative;
}
.testing-module .answer > input {
  width: 24px;
  height: 24px;
  float: left;
  position: absolute;
  left: 0px;
  top: 0px;
  margin: 0;
}
.testing-module .answer > label {
  cursor: pointer;
  font-weight: normal;
  margin: 0;
}
#TestQuestion .buttons {
  text-align: center;
  margin: 15px;
  margin-top: 30px;
}
#TestQuestion .buttons > .button {
  background: #5097f4;
  border-radius: 80px;
  padding: 10px 16px;
  padding: 14px 30px;
  color: #fff;
  transition: 0.2s linear;
  margin: 10px;
  text-decoration: none;
  background: linear-gradient(91.89deg, #3977c8 0.48%, #5097f4 99.67%);
  font-size: 16px;
}
#TestQuestion .buttons > .button:hover {
  background: linear-gradient(91.89deg, #679de2 0.48%, #8fbffe 99.67%);
}
#TestQuestion .buttons > .button.light {
  background: transparent;
  color: #000;
  border: 2px solid #3977c8;
}
#TestQuestion .buttons > .button.light:hover {
  background: #3977c8;
  color: #ffffff;
}
#TestQuestion .error-text {
  text-align: center;
  color: red;
  font-size: 14px;
  min-height: 20px;
  margin: 15px;
}
.testing-module .test-stat {
  text-align: center;
  line-height: 1.7;
}
#TestInfo,
#TestQuestion {
  max-width: 1440px;
}
#TestQuestion .custom-answer {
  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;
  margin: 10px 0;
  background: white;
  border: solid 1px #3977c8;
}
#TestQuestion .additional {
  text-align: center;
  padding: 10px 0;
}
#TestQuestion .additional > a {
  color: #05548f;
  font-size: 12px;
  text-decoration: underline;
}

.account-holder .lesson-title {
  margin-bottom: 42px;
  align-items: center;
}
.account-holder .lesson-title .title.bold {
  margin: 0;
}
.account-holder .play {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #5097f4;
  border-radius: 50%;
  min-width: 31px;
  height: 31px;
}
.account-holder .play::before {
  content: "";
  display: block;
  background: url(/imgs/vectors/PlayProgram.svg) 00 no-repeat;
  background-size: contain;
  background-position: center center;
  width: 31px;
  height: 31px;
}

.account-holder .lesson-title .play {
  transition: linear 0.2s;
}
.account-holder .lesson-title .play:hover {
  background: #3977c8;
}
.account-holder .navigation {
  position: fixed;
  top: 50%;
  left: 286px;
  width: calc(100% - 350px);
  z-index: 500;
}
.account-holder .navigation .play {
  display: none;
}
.account-holder .navigation .next,
.account-holder .navigation .prev {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 31px;
  height: 31px;
  background: #5097f4;
  border-radius: 50%;
  transition: linear 0.2s;
}
.account-holder .navigation .next::before {
  content: "";
  background: url(/imgs/vectors/lesson-next.svg) 00 no-repeat;
  background-size: contain;
  background-position: center center;
  width: 17px;
  height: 15px;
}
.account-holder .navigation .prev::before {
  content: "";
  background: url(/imgs/vectors/lesson-prev.svg) 00 no-repeat;
  background-size: contain;
  background-position: center center;
  width: 17px;
  height: 15px;
}
.account-holder .navigation .next:hover,
.account-holder .navigation .prev:hover {
  background: #3977c8;
}
.account-holder .navigation .next:active,
.account-holder .navigation .prev:active,
.account-holder .lesson-title .play:active {
  background: #5a60f1;
}
.account-holder .lesson-holder {
  position: relative;
  width: 100%;
  height: 100%;
  padding-left: 56px;
}
.account-holder .lesson-holder.noLeft {
  padding-left: 0;
}
.account-holder .lesson-holder .lesson-container {
  padding-right: 56px;
}
.account-holder .lesson-holder .lesson-container.noRight {
  padding-right: 0;
}
.account-holder .lesson-holder .lesson-container .flex-row.video-progress-bar{
  display: block;
  align-items: flex-start;
  gap: 2px;
  line-height: 1.1;
  margin-top: 6px;
  div{
    display: inline;
  }
  .count{
    display: inline;
    line-height: 1.1;
    &>strong{
        color: red;
        margin: 0 6px 0 3px;
    }
  }
  &.completed{
    .count >strong{
      color: #00d300;
    }
  }  
  span{
    
    color: gray;
    font-size: 12px;
    line-height: 1.1;
    
  }
}
.account-holder .lesson-container > div:nth-child(n + 3) {
  border-top: 1px solid #a7b4c7;
}
.account-holder .lesson-container .video-content {
  position: relative;
  width: 100%;
  height: initial;
  margin-bottom: 64px;
}
.account-holder .lesson-container .text-content {
  position: relative;
  height: auto;
  margin-bottom: 32px;
}
.account-holder .lesson-container .text-content a {
  color: #337ab7;
}
.account-holder .lesson-container .text-content a:hover {
  color: #5097f4;
}
.account-holder .lesson-container .text-content img,
.lesson-container .text-content video {
  max-width: 100%;
}
.account-holder .lesson-container .video-content > * {
  width: 100%;
  height: 100%;
}
.account-holder .lesson-container .tabs-menu {
  margin-bottom: 16px;
}
.account-holder .lesson-container .tabs-menu ul.menu {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: flex-start;
  list-style-type: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: #3977c8;
  margin-bottom: 16px;
  padding: 0;
}
.account-holder .lesson-container .tabs-menu ul.menu li:not(:last-child)::after {
  content: "/";
  padding: 0 4px;
}
.account-holder .lesson-container .tabs-menu ul.menu li:first-child {
  margin-left: 0;
}
.account-holder .lesson-container .tabs-menu ul.menu li.active a,
.account-holder .lesson-container .tabs-menu ul.menu li a:hover,
.account-holder .lesson-container .tabs-menu ul.menu li a:focus {
  color: #3977c8;
  text-decoration: underline;
}
.account-holder .lesson-container .tabs-menu ul.menu li a {
  color: #6c788a;
}
.account-holder .lesson-container .tabs-menu ul.menu li {
  margin: 0;
}
.account-holder .lesson-container .tabs-menu ul.menu li a:hover,
.account-holder .lesson-container .tabs-menu ul.menu li a:focus {
  color: #5097f4;
}
.account-holder .lesson-container .tabs-menu .tab {
  display: none;
}
.account-holder .lesson-container .tabs-menu .tab.active {
  display: block;
}
.account-holder .lesson-container .tabs-menu .tab ul.time-codes {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: flex-start;
  list-style-type: none;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #262b43;
  padding: 0;
  margin-bottom: 4px;
}
.account-holder .lesson-container .tabs-menu .tab ul.time-codes li {
  display: flex;
}
.account-holder .lesson-container .tabs-menu .tab ul.time-codes li:not(:last-child) {
  margin-bottom: 8px;
}
.account-holder .lesson-container .tabs-menu .tab ul.time-codes li a {
  color: #3977c8;
  text-decoration: underline;
  margin-right: 10px;
}
.account-holder .lesson-container .tabs-menu .tab ul.time-codes li a:hover {
  color: #5097f4;
}
.account-holder .lesson-container .tabs-menu .tab .show-all {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #6c788a;
  text-decoration: underline;
}
.account-holder .lesson-container .part-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: #3977c8;
  margin: 16px 0;
}
.account-holder .lesson-container .presentations {
  
  border-left: none;
  border-right: none;
}
.account-holder .lesson-container .presentations .presentations-container .presentation {
  display: flex;
  align-items: center;
  
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #262b43;
  padding-bottom: 16px;
  gap: 40px;
}

.account-holder .download-icon {
  display: block;
  background: url(/imgs/vectors/download.svg) 00 no-repeat;
  background-size: contain;
  width: 17px;
  height: 15px;
  margin-left: 8px;
  flex: 0 0 auto;
}
.account-holder .lesson-container .presentations .download-icon {
  filter: invert(51%) sepia(14%) saturate(529%) hue-rotate(177deg) brightness(89%) contrast(87%);
}
.account-holder .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;
}
.account-holder .lesson-container .materials .part-title {
  margin: 0;
  margin-bottom: 16px;
}
.account-holder .lesson-container .materials {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: flex-start;
  list-style-type: none;
  
  border-left: none;
  border-right: none;
  padding: 18px 0;
}
.account-holder .lesson-container .materials ul {
  padding: 0;
}
.account-holder .lesson-container .materials .links-container li {
  display: flex;
  align-items: center;
}
.account-holder .lesson-container .materials .links-container li:not(:last-child) {
  margin-bottom: 8px;
}
.account-holder .lesson-container .materials .links-container li::before {
  content: "";
  display: block;
  background: #000;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  margin-right: 8px;
}
.account-holder .lesson-container .materials .links-container li a {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #19297c;
  text-decoration: underline;
}

.account-holder .lesson-container .materials .doc-container .doc,
.account-holder .request-page .textarea-container .doc,
.account-holder .messanger-chat .message-chat-holder .message-input .doc,
.account-holder .alert-content .alert-files .doc,
.account-holder.instructor .account-body .group-cot .cot-content .doc,
.account-holder.platform .account-body .group-cot .cot-content .doc,
.account-holder.manager .account-body .group-cot .cot-content .doc {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #262b43;
  
}
.account-holder.instructor .account-body .group-cot .cot-content .doc,
.account-holder.platform .account-body .group-cot .cot-content .doc,
.account-holder.manager .account-body .group-cot .cot-content .doc {
  
  width: 100%;
  width: fit-content;
  justify-content: flex-end;
}
.account-holder .lesson-container .materials .doc-container .doc:not(:last-child) {
  margin-bottom: 8px;
}
.account-holder .lesson-container .materials .doc-container .doc .name,
.account-holder .request-page .textarea-container .doc .name,
.account-holder .alert-content .alert-files .doc .name {
  display: flex;
}
.account-holder .lesson-container .materials .doc-container .doc:hover .name,
.account-holder .alert-content .alert-files .doc:hover .name {
  color: initial;
  text-decoration: underline;
}
.account-holder .lesson-container .materials .doc-container .doc .name::before,
.account-holder .request-page .textarea-container .doc::before,
.account-holder .messanger-chat .message-chat-holder .message-input .doc::before,
.account-holder .alert-content .alert-files .doc::before,
.account-holder.instructor .account-body .group-cot .cot-content .doc .name::before,
.account-holder.platform .account-body .group-cot .cot-content .doc .name::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%);
}
.account-holder .lesson-container .materials .doc-container .doc > .flex-row,
.account-holder .request-page .textarea-container .doc > .flex-row,
.account-holder .messanger-chat .message-chat-holder .message-input .doc > .flex-row.size,
.account-holder.instructor .account-body .group-cot .cot-content .doc > .flex-row.size,
.account-holder.platform .account-body .group-cot .cot-content .doc > .flex-row.size {
  margin-left: 18px;
}
.account-holder .rate {
  position: relative;
  background: #e3eefd;
  border: 1px solid #9cbbe3;
  border-radius: 10px;
  width: 100%;
  gap: 8px;
  padding: 10px 32px;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  color: #3977c8;
}
.account-holder .rate .emotes {
  gap: 16px;
}
.account-holder .rate .emotes > a {
  display: block;
  width: 24px;
  height: 24px;
  opacity: 0.7;
  background-size: contain !important;
  filter: drop-shadow(0px 2px 3px rgba(109, 120, 137, 0.4));
}
.account-holder .rate .emotes > a:hover,
.account-holder .rate .emotes > a:focus,
.account-holder .rate .emotes > a:target {
  opacity: 1;
}
.account-holder .rate .emotes .emote-1 {
  background: url(/imgs/emotes/emote-wicked.svg) 00 no-repeat;
}
.account-holder .rate .emotes .emote-2 {
  background: url(/imgs/emotes/emote-sad.svg) 00 no-repeat;
}
.account-holder .rate .emotes .emote-3 {
  background: url(/imgs/emotes/emote-norm.svg) 00 no-repeat;
}
.account-holder .rate .emotes .emote-4 {
  background: url(/imgs/emotes/emote-pleased.svg) 00 no-repeat;
}
.account-holder .rate .emotes .emote-5 {
  background: url(/imgs/emotes/emote-happy.svg) 00 no-repeat;
}
.account-holder .rate .features {
  gap: 8px;
}
.account-holder .rate .btn-feature {
  background: #5097f4;
  border-radius: 50px;
  padding: 10px 24px;
  color: #fff;
  line-height: 19px;
  transition: 0.1s linear;
  text-align: center;
}
.account-holder .rate .btn-feature:hover {
  background: #3977c8;
  color: #fff;
  cursor: pointer;
}
.account-holder .rate .btn-feature:active {
  background: #5a60f1;
}
.account-holder .rate .gratitude {
  width: 100%;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
}
.account-holder .lesson-container .tabs-menu .tab textarea.note-area {
  border: 1px solid #9cbbe3;
  border-radius: 10px;
  width: 100%;
  min-height: 80px;
  resize: none;
  padding: 8px 16px;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  
}
.account-holder .lesson-container .tabs-menu .tab textarea.note-area:focus-visible {
  outline: none;
  background: #f7fbff;
}
.account-holder .lesson-container .tabs-menu .tab .save {
  display: block;
  padding: 8px 12px;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  background: #5097f4;
  border-radius: 20px;
  width: fit-content;
  margin-bottom: 20px;
  transition: linear 0.2s;
}
.account-holder .lesson-container .tabs-menu .tab .save:hover {
  background: #3977c8;
}
.account-holder .lesson-container .tabs-menu .tab .save:active {
  background: #5a60f1;
}
.account-holder .lesson-container .tabs-menu .tab .notes-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.account-holder .lesson-container .tabs-menu .tab .note {
  position: relative;
  align-items: baseline;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #262b43;
  gap: 16px;
}
.account-holder .lesson-container .tabs-menu .tab .note .time {
  text-decoration: underline;
  min-width: 45px;
  
  color: #3977c8;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  flex: 0 0 auto;
}
.account-holder .lesson-container .tabs-menu .tab .note .text {
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
}
.account-holder .lesson-container .tabs-menu .tab .note .delete-note {
  display: block;
  position: absolute;
  align-self: flex-start;
  opacity: 0;
  margin-left: -16px;
  width: 10px;
  height: 10px;
  background: url(/imgs/vectors/cross-delete.svg) 00 no-repeat;
  background-size: contain;
  cursor: pointer;
  margin-top: 2px;
}
.account-holder .lesson-container .tabs-menu .tab .note:hover .delete-note,
.account-holder .lesson-container .tabs-menu .tab .note .delete-note:hover {
  display: block;
  opacity: 1;
}
.account-holder textarea.note:focus-visible {
  outline: none;
}
.account-holder .custom-checkbox,
.personal-popup .custom-checkbox {
  display: inline-block;
  margin: 5px 0;
  cursor: pointer;
  min-width: 24px;
  min-height: 24px;
}
.account-holder .custom-checkbox > .cb-container,
.personal-popup .custom-checkbox > .cb-container {
  display: flex;
  justify-content: flex-start;
  position: relative;
}
.account-holder .custom-checkbox > .cb-container > input,
.personal-popup .custom-checkbox > .cb-container > input {
  width: 24px;
  height: 24px;
  margin: 0;
  padding: 0;
  margin-right: 10px;
  cursor: pointer;
  visibility: hidden;
  display: none;
}
.account-holder .custom-checkbox > .cb-container > label,
.personal-popup .custom-checkbox > .cb-container > label {
  cursor: pointer;
  user-select: none;
  font-weight: normal;
  padding-left: 35px;
  padding-top: 2px;
}
.account-holder .custom-checkbox > .cb-container > input + label.imposter,
.personal-popup .custom-checkbox > .cb-container > input + label.imposter {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin: 0;
  padding: 0;
  background: #ffffff;
  border: 0.5px solid #adadad;
  border: 0.5px solid #d6dbde;
  box-sizing: border-box;
  
  border-radius: 4px;
  
  float: left;
  position: absolute;
  top: 0px;
  right: 0px;
  transition: all 0.11s ease-out;
}
.account-holder .custom-checkbox > .cb-container > input:checked + label.imposter,
.personal-popup .custom-checkbox > .cb-container > input:checked + label.imposter {
  background: linear-gradient(147.53deg, #6bffe4 5.83%, #5197ff 100.28%);
  
  background-size: cover;
  background-position: center center;
  border: 0.5px solid #adadad;
}
.account-holder .custom-checkbox > .cb-container > input + label.imposter:after,
.personal-popup .custom-checkbox > .cb-container > input + label.imposter:after {
  content: "";
  display: block;
  width: 15px;
  height: 14px;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 4px;
  left: 4px;
  background: url(/s_TaskManager/image/iconset/Task/ok_vector.svg) 0 0 no-repeat;
  background-size: contain;
  opacity: 0;
  transition: all 0.11s ease-out;
}
.account-holder .custom-checkbox > .cb-container > input:checked + label.imposter:after {
  opacity: 1;
}
.account-holder .custom-checkbox.full-width {
  display: block;
  width: 100%;
}
.account-holder .custom-checkbox {
  min-height: 20px;
  min-width: 40px;
}
.account-holder .custom-checkbox,
.personal-popup .custom-checkbox {
  width: 100%;
}
.account-holder .custom-checkbox > .cb-container,
.personal-popup .custom-checkbox > .cb-container {
  position: relative;
  align-items: center;
  min-height: 20px;
}
.account-holder .custom-checkbox > .cb-container > label,
.personal-popup .custom-checkbox > .cb-container > label {
  font-size: 12px;
  line-height: 14px;
  margin: 0;
  padding: 0;
  padding-right: 65px;
}
.account-holder .custom-checkbox > .cb-container > label,
.personal-popup .custom-checkbox > .cb-container > label {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  flex: 0 0 auto;
}
.account-holder .hide-subjects .custom-checkbox > .cb-container > label {
  color: #6c788a;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 400;
  padding-right: 56px;
}
.account-holder .hide-subjects .custom-checkbox > .cb-container > input + label.imposter {
  box-shadow: none;
}
.account-holder .custom-checkbox > .cb-container > input + label.imposter,
.personal-popup .custom-checkbox > .cb-container > input + label.imposter {
  width: 40px;
  height: 20px;
  background: #a7b4c7;
  box-shadow: inset 0px 0px 13px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  border: none;
  padding: 0;
}
.account-holder .custom-checkbox > .cb-container > input:checked + label.imposter,
.personal-popup .custom-checkbox > .cb-container > input:checked + label.imposter {
  background: #5097f4;
  box-shadow: inset 0px 0px 13px rgba(0, 0, 0, 0.25);
  border: none;
}
.account-holder .custom-checkbox > .cb-container > input + label.imposter:after,
.personal-popup .custom-checkbox > .cb-container > input + label.imposter:after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 3px;
  left: 4px;
  
  background: white;
  opacity: 1;
  transition: all 0.08s ease-out;
  border-radius: 15px;
}
.account-holder .custom-checkbox > .cb-container > input:checked + label.imposter:after,
.personal-popup .custom-checkbox > .cb-container > input:checked + label.imposter:after {
  opacity: 1;
  background: url(/s_TaskManager/image/iconset/common/ico_power_hover.svg) 2px 0 no-repeat white;
  background-size: contain;
  background: white;
  left: 22px;
}
.account-holder .account-body .title.bold.margin {
  margin-bottom: 24px;
}
.account-holder .account-body .title.bold.margin-big {
  margin-bottom: 32px;
}
.account-holder .account-body .title.dark {
  color: #19297c;
}
.account-holder .account-body .block-title {
  margin-bottom: 8px;
  align-items: flex-start;
}
.account-holder .account-body .block-title .title {
  margin-bottom: 0;
}
.account-holder .account-body .block-title .subject-counter {
  display: block;
  color: #6c788a;
  font-size: 12px;
  line-height: 12px;
  user-select: none;
  opacity: 0;
  visibility: hidden;
}
.account-holder .account-body .block-title .subject-counter.visible {
  opacity: 1;
  visibility: visible;
}
.account-holder .account-header .no-results {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: calc(100vh - 180px);
  text-align: center;
  font-size: 20px;
  line-height: 24px;
}
.account-holder .account-body .white-tile.certificate .tile-content {
  display: block;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.account-holder .account-body .white-tile.certificate .tile-title {
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 24px;
  font-weight: 500;
}
.account-holder .account-body .white-tile.certificate .tile-title > div:first-child {
  display: flex;
  align-items: flex-start;
  line-height: 18px;
  gap: 4px;
  text-align: left;
}
.account-holder .account-body .white-tile.certificate .tile-title > div:first-child:before {
  content: "";
  display: block;
  width: 17px;
  height: 18px;
  background: url(/imgs/vectors/certificate-blue.svg) 00 no-repeat;
  background-size: contain;
  flex: 0 0 auto;
  margin-top: 2px;
}
.account-holder .account-body .white-tile.certificate .tile-title .time {
  width: auto;
  gap: 8px;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #6c788a;
  margin-top: 2px;
}
.account-holder .account-body .white-tile.certificate .tile-content .tile-top .name,
.account-holder .account-body .white-tile.certificate .grade {
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
}
.account-holder .account-body .white-tile.certificate .tile-content .tile-top .name {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.account-holder .account-body .white-tile.certificate .tile-content .tile-bot::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.5px;
  background: #9cbbe3;
  margin-top: 16px;
  margin-bottom: 8px;
}
.account-holder .account-body .white-tile.certificate .grade {
  margin-bottom: 8px;
  gap: 20px;
}
.account-holder .white-tile .doc {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #6c788a;
  width: fit-content;
}
.account-holder .account-body .white-tile.certificate .doc {
  width: 100%;
}
.account-holder .account-body .white-tile.certificate .doc .name {
  display: flex;
  align-items: center;
}
.account-holder .account-body .white-tile.certificate .doc:hover {
  text-decoration: none;
  color: #6c788a;
}
.account-holder .white-tile .doc .name,
.account-holder .personal-content .document .name {
  display: flex;
}
.account-holder .white-tile .doc:hover {
  color: initial;
  text-decoration: underline;
}
.account-holder .white-tile .doc .name::before,
.account-holder .personal-content .document .name::before {
  content: "";
  display: block;
  background: url(/imgs/vectors/document.svg) 00 no-repeat;
  background-size: contain !important;
  width: 12px;
  height: 16px;
  margin-right: 6px;
}
.account-holder .white-tile.certificates .doc .name::before {
  background: url(/imgs/account-vectors/certificate.svg) 00 no-repeat;
}
.account-holder .account-body .settings-content,
.account-holder .account-body .personal-content,
.account-holder .account-body .platform-content {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 10px;
  padding: 12px 16px 24px 16px;
}






.account-holder .settings-content .portrait-box {
  margin: 0;
  margin-bottom: 16px;
}
.account-holder .settings-content .portrait-load {
  height: 20px;
}
.account-holder .settings-content .portrait-box:hover .portrait-load {
  height: 100%;
}
.account-holder .settings-content .portrait-load::after {
  width: 20px;
  height: 20px;
}

.account-holder .settings-content .fields-container,
.account-holder .platform-content .fields-container,
.account-holder #employeeTabControl .fields-container,
.account-holder #studentsManagerTabControl .fields-container {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 100%;
  gap: 8px;
}
.account-holder .settings-content .tab-fields,
.account-holder .platform-content .tab-fields,
.account-holder #employeeTabControl .fields-container .tab-fields,
.account-holder #studentsManagerTabControl .fields-container .tab-fields {
  width: 100%;
  gap: 8px 36px;
  max-width: 792px;
  align-items: flex-start;
}
.account-holder .platform-content .tab-fields {
  max-width: 840px;
}
.account-holder .settings-content .tab-fields.withWrap {
  flex-wrap: wrap;
}
.account-holder .settings-content .pass-container.new {
  max-width: 510px;
}
.account-holder .settings-content .pass-container.new > .flex-row {
  gap: 8px;
}
.account-holder .settings-content .pass-container.new .silver-control {
  width: 100%;
}
.account-holder .settings-content .generate,
.account-holder.platform .instructor-tile .generate {
  display: block;
  text-decoration: none;
  background: #5097f4;
  border-radius: 50px;
  padding: 6px 10px;
  color: #fff;
  transition: linear 0.2s;
}
.account-holder .settings-content .generate:hover,
.account-holder.platform .instructor-tile .generate:hover {
  background: #8fbffe;
  color: #fff;
}
.account-holder .silver-textbox {
  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;
  border: solid 1px transparent;
}
.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);
}
.account-holder .settings-content .tb-name,
.account-holder #employeeTabControl .tb-name,
.account-holder #studentsManagerTabControl .tb-name {
  margin-bottom: 4px;
  font-size: 14px;
  text-transform: uppercase;
}
.account-holder .settings-content .field-container,
.account-holder #employeeTabControl .field-container,
.account-holder #studentsManagerTabControl .field-container {
  max-width: 240px;
  width: 33%;
  min-height: 80px;
}
.account-holder .settings-content .field-container.full-width,
.account-holder #employeeTabControl .field-container.full-width,
.account-holder #studentsManagerTabControl .field-container.full-width {
  max-width: 792px;
  width: 100%;
}
.account-holder .settings-content .field-container.full {
  max-width: 100%;
  width: 100%;
}
.account-holder .settings-content .field-container.big,
.account-holder #employeeTabControl .field-container.big,
.account-holder #studentsManagerTabControl .field-container.big {
  max-width: 516px;
  width: 72%;
}
.account-holder .settings-content .field-container.error .silver-textbox,
.account-holder .personal-content .field-container.error .silver-textbox {
  border: 1px solid red;
}
.account-holder .settings-content .field-container .error-text,
.account-holder .personal-content .field-container .error-text {
  display: none;
  color: red;
  font-size: 12px;
  line-height: 12px;
  margin-top: 4px;
}
.account-holder .settings-content .field-container.error .error-text,
.account-holder .personal-content .field-container.error .error-text {
  display: block;
}
.account-holder .silver-control.silver-date {
  width: 100% !important;
}

.account-holder .custom-combo,
.SilverCombo {
  width: 100%;
  
  outline: none;
  font-family: inherit;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  min-height: 34px;
  transition: border-color 0.2s;
  position: relative;
  overflow: initial;
  padding: 0;
  border-radius: 10px;
}
.SilverCombo {
  min-height: auto;
}
.SilverCombo td {
  border: none;
  border-color: transparent;
  border-radius: 10px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.SilverCombo .td-carret {
  border-radius: 10px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-color: transparent;
}
.SilverCombo .silver-textbox {
  cursor: pointer;
}
.SilverCombo .silver-textbox:focus-visible,
.SilverCombo .silver-textbox:focus {
  border-color: transparent;
  box-shadow: none;
}
.account-holder .custom-combo.disabled,
.account-holder .slot-scheduler-holder .silver-textbox.disabled {
  background: #e0edff;
  color: #000000;
  opacity: 0.5;
}
.account-holder .custom-combo > .combo-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 8px 16px;
  cursor: pointer;
  height: auto;
  
  box-sizing: border-box;
  border-radius: 10px;
}
.account-holder.platform .instructor-content .schedule-filters .custom-combo > .combo-container,
.account-holder.platform .slots-filters .custom-combo > .combo-container {
  background: #fff;
}
.account-holder .slot-scheduler-new .custom-combo > .combo-container {
  background: #e0edff;
}
.silver-uploader.validate-error input {
  border: 1px solid red;
}
.silver-uploader.validate-error .error-message {
  display: block;
}
.silver-uploader .error-message {
  display: none;
  color: red;
  font-size: 11px;
  line-height: 0px;
  text-align: left;
  margin-top: 8px;
}
.account-holder .custom-combo .error-message {
  font-size: 12px;
  color: red;
}
.account-holder .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;
}
.account-holder .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: 12px;
  line-height: 18px;
}
.account-holder .custom-combo > .combo-dropdown,
.SilverCombo .holder {
  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);
  -webkit-transition: opacity 0.1s;
  transition: opacity 0.1s;
  box-sizing: border-box;
  outline: none;
  z-index: 999;
  max-height: 300px;
}

.SilverCombo .holder .table-combo-header {
  display: none;
}
.SilverCombo .holder {
  min-height: unset;
  
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.account-holder .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;
}
.account-holder .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%;
}
.account-holder .custom-combo > .combo-dropdown {
  z-index: 900;
}
.account-holder .custom-combo > .combo-dropdown > .combo-filter:before {
  content: " ";
  width: 20px;
  display: inline-block;
  background: red;
}
.account-holder .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;
}
.account-holder .custom-combo > .combo-dropdown > .combo-items::-webkit-scrollbar {
  width: 6px;
  height: 8px;
  background-color: #e2edff;
  border-radius: 10px;
}
.account-holder .custom-combo > .combo-dropdown > .combo-items::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #5097f4;
  border: 2px solid #e2edff;
}
.account-holder .custom-combo > .combo-dropdown > .combo-items::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 10%);
  background-color: #e2edff;
  border-radius: 5px;
}
.account-holder .custom-combo > .combo-dropdown > .combo-items > .item,
.SilverCombo .holder .table-silver > tbody > tr > td {
  width: 100%;
  min-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;
}
.SilverCombo .holder .overflow {
  overflow: auto;
}
.SilverCombo .holder .overflow::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #e2edff;
  border-radius: 10px;
}
.SilverCombo .holder .overflow::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #5097f4;
  border: 2px solid #e2edff;
}
.SilverCombo .holder .overflow::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 10%);
  background-color: #e2edff;
  border-radius: 5px;
}
.account-holder .custom-combo > .combo-dropdown > .combo-items > .item:hover {
  background: #ebeff3;
  color: #262b43;
}
.account-holder .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;
}
.SilverCombo .table-silver.table-combo {
  width: 100%;
}
.SilverCombo .holder .table-silver > tbody > tr > td,
.prof-grid.grid-org .SilverCombo .holder .table-silver > tbody > tr > td {
  border: none !important;
  padding-top: 0;
  padding-bottom: 0;
  
  font-size: 14px;
  line-height: 1.1;
  min-height: 26px;
  color: #262b43;
  border-radius: 0;
  padding: 5px 20px;
}
.prof-grid.grid-org .SilverCombo .holder .table-silver > tbody > tr > td {
  font-size: 12px;
  min-height: 24px;
}
.prof-grid.grid-org .SilverCombo .btn-silver-carret {
  padding-top: 10px;
}
.prof-grid.grid-org .SilverCombo .holder .table-silver > tbody > tr > td:hover {
  background: #ebeff3;
  color: #262b43;
}
.account-holder .custom-combo > .combo-container > .carret,
.SilverCombo .btn-silver-carret {
  background: url(/imgs/vectors/arrow.svg) 0 0 no-repeat;
  width: 12px;
  height: 7px;
  margin-left: 11px;
  position: relative;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
}
.SilverCombo .btn-silver-carret {
  margin-left: 0;
  padding: 26px 16px 0px 10px;
  background-position: center;
}
.SilverCombo .btn-silver-carret:active {
  box-shadow: none;
}
.account-holder .settings-content .custom-combo > .combo-container,
.account-holder .custom-combo.background > .combo-container {
  background: #e0edff;
}
.account-holder #employeeTabControl .employeeInfoTile .silver-textbox,
.account-holder #employeeTabControl .employeeInfoTile .custom-combo > .combo-container,
.account-holder #employeeTabControl .employeeInfoTile .custom-combo.disabled,
.account-holder #studentsManagerTabControl .employeeInfoTile .silver-textbox,
.account-holder #studentsManagerTabControl .employeeInfoTile .custom-combo > .combo-container,
.account-holder #studentsManagerTabControl .employeeInfoTile .custom-combo.disabled {
  background: #e0edff;
  opacity: 0.8;
  color: #a5a5a5;
}
.account-holder #employeeTabControl .employeeInfoTile,
.account-holder #studentsManagerTabControl .employeeInfoTile {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 10px;
  padding: 12px 16px 24px 16px;
}
.save-indication {
  gap: 8px;
  margin-top: 16px;
}
.save-indication .save {
  display: block;
  padding: 10px 16px;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  background: #c6d0db;
  border-radius: 20px;
  width: fit-content;
  
  visibility: visible;
  cursor: default;
  transition: linear 0.2s;
}
.save-indication .save.modified,
.save-indication.generate-password .save {
  
  cursor: pointer;
  background: #5097f4;
}
.save-indication.loader .save {
  
  cursor: default;
  background: #c6d0db;
}
.save-indication.generate-password {
  align-self: flex-start;
}
.save-indication .save.modified:hover,
.save-indication.generate-password .save:hover {
  
  background: #3977c8;
  color: #fff;
}
.save-indication .save.modified:active,
.save-indication.generate-password .save:active {
  background: #5a60f1;
}
.save-indication .indicator {
  width: 19px;
  height: 19px;
  background: url(/imgs/vectors/clock-approved.svg) 00 no-repeat;
  background-size: contain !important;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
.save-indication.error .indicator {
  background: url(/imgs/vectors/clock-error.svg) 00 no-repeat;
  transition: all 0s;
}
.save-indication.loader .indicator {
  background: url(/img/AjaxLoader/ajax-loader5.gif) 00 no-repeat;
  transition: all 0s;
}
.save-indication .text {
  display: none;
  color: red;
}
.save-indication.success .indicator,
.save-indication.error .indicator,
.save-indication.error .text,
.save-indication.loader .indicator {
  display: block;
  visibility: visible;
  opacity: 1;
}
.password-holder .save-indication {
  margin: 0;
}
.account-holder.platform .instructor-content .save-indication {
  justify-content: center;
}
.account-holder .settings-content .personal-holder .custom-combo,
.account-holder .settings-content .personal-holder .silver-textbox,
.account-holder .settings-content .pass-container .silver-textbox {
  font-size: 14px;
}

.account-holder .settings-content .notes-holder .save-indication {
  margin-top: 16px;
}
.account-holder .settings-content .notes-holder .notes-container {
  max-width: 340px;
}
.account-holder .settings-content .notes-holder .notes-container:not(:last-child)::after {
  content: "";
  content: "";
  display: block;
  margin: 16px 0;
  width: 100%;
  height: 1px;
  background: #6c788a;
}
.account-holder .settings-content .notes-holder .notes-container .note-title {
  font-size: 16px;
  line-height: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.account-holder .settings-content .notes-holder .notes-container .note-little {
  font-size: 10px;
  line-height: 12px;
  margin-top: 8px;
}
.account-holder .settings-content .pass-container {
  max-width: 336px;
  width: 100%;
}
.account-holder .settings-content .pass-container:not(:last-child) {
  margin-bottom: 16px;
}
.account-holder .settings-content .pass-container .silver-control {
  position: relative;
}
.account-holder .settings-content .show-password {
  display: block;
  position: absolute;
  right: 0;
  width: 16px;
  height: 7px;
  cursor: pointer;
  background: url(/imgs/vectors/eye_closed.svg) 00 no-repeat;
  background-size: contain;
  margin-right: 8px;
}
.account-holder .settings-content .show-password.shown {
  background: url(/imgs/vectors/eye_open.svg) 00 no-repeat;
  width: 16px;
  height: 12px;
}
.account-holder .main-overlay {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: calc(100% - 72px);
  opacity: 0;
  margin-top: 72px;
  z-index: 999;
  visibility: hidden;
  background: rgb(108 120 138 / 50%);
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.account-holder .main-overlay.opened {
  opacity: 1;
  visibility: visible;
}
.account-holder .topic-selector {
  position: absolute;
  top: 0;
  right: -100%;
  height: 100%;
  z-index: 1001;
  background: #ffffff;
  max-width: 365px;
  width: 100%;
  transition: all 0.2s;
  overflow: auto;
  overflow-x: hidden;
}

.account-holder .topic-selector.opened {
  right: 0;
}
.account-holder .topic-selector .topic-selector-container {
  padding: 32px 16px;
}
.account-holder .topic-selector .topic-selector-container .toggler {
  position: relative;
  z-index: 99;
  width: 16px;
  height: 16px;
  padding: 0px;
  margin-right: 10px;
  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;
  cursor: pointer;
}
.account-holder .topic-selector .topic-selector-container .navbar-toggle .icon-bar {
  position: absolute;
}
.account-holder .account-body .topic-selector .subject-item:first-child {
  padding-top: 16px;
  border-top: 1px solid #a7b4c7;
}
.account-holder .account-body .topic-selector .subjects-container {
  border-bottom: 0;
}
.account-holder .topic-selector .navbar-toggle {
  width: 16px;
  height: 16px;
}
.account-holder .topic-selector .navbar-toggle::before {
  content: "";
  display: block;
  background: url(/imgs/vectors/clock-close.svg) 0 0 no-repeat;
  width: 16px;
  height: 16px;
  background-size: contain !important;
}
.account-holder .topic-selector .navbar-toggle .sr-only,
.account-holder .topic-selector .navbar-toggle .icon-bar {
  display: none;
}
.account-holder .topic-selector .topic-selector-container .navbar-toggle .icon-bar:nth-child(2) {
  transform: rotate(45deg);
}
.account-holder .topic-selector .topic-selector-container .navbar-toggle .icon-bar:nth-child(3) {
  transform: rotate(-45deg);
  top: 0px;
}
.account-holder .topic-selector .topic-selector-container .topic-title {
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #3977c8;
}
.account-holder .topic-selector .topic-selector-container .subject-item > a {
  font-size: 14px;
  line-height: 16px;
}
.account-holder .topic-selector .topic-selector-container .subject-topics .topic-item {
  width: 154px;
}
.account-holder .topic-selector .topic-selector-container .subject-topics .topic-item > .preview {
  height: 100px;
  margin-bottom: 4px;
}
.account-holder .topic-selector .topic-selector-container .subject-topics .topic-item > .name {
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
}

.account-holder .content-container > .support-content:not(:last-child)::after,
.account-holder .alerts-containew-holder .alerts-container:not(:last-child)::after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: #7e7e7e;
}
.account-holder .alerts-containew-holder .alerts-container.no-separator::after {
  display: none;
}
.account-holder .content-container > .support-content:not(:last-child),
.account-holder .content-container .alerts-container {
  margin-bottom: 20px;
}
.account-holder .content-container .alerts-container.read {
  margin: 0;
}
.account-holder .support-content .support-title,
.account-holder .alerts-container .alert-title {
  
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 16px;
  color: #19297c;
}
.account-holder .requests-holder,
.account-holder .alerts-tiles-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 20px;
}
.account-holder .request-tile,
.account-holder .alert-tile,
.account-holder .instruction-tile {
  display: block;
  background: #fff;
  padding: 16px;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  color: #5097f4;
  width: 100%;
  border-radius: 10px;
  transition: linear 0.2s;
  
  margin: 0;
}
.account-holder .alert-tile {
  opacity: 1;
  transition: opacity 1s, visibility 0s;
}
.account-holder .alert-tile.deleting {
  opacity: 0;
  margin-top: -8px;
  visibility: hidden;
  max-height: 0px;
  padding: 0px 16px;
  transition: margin-top 0.6s, opacity 0.6s, visibility 0s 0.6s, max-height 0.6s, padding 0.6s;
}
.account-holder .request-tile {
  font-size: 16px;
  line-height: 18px;
}
.account-holder .request-tile .name {
  font-size: 12px;
  line-height: 14px;
  margin-top: 8px;
}
.account-holder .instruction-tile > .content-title {
  font-size: 18px;
  line-height: 1.1;
}
.account-holder .request-tile:hover,
.account-holder .instruction-tile.section:hover {
  
  box-shadow: 0px 4px 20px 0px rgba(79, 92, 172, 0.1);
}
.account-holder .request-tile .date {
  margin-right: 16px;
}
.account-holder .request-tile .name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
  color: #626262;
}
.account-holder .request-tile .size {
  font-weight: 400;
}
.account-holder .request-tile .size.closed {
  color: #6c788a;
}
.account-holder .alert-tile .name {
  margin-top: 8px;
  font-weight: 400;
  color: #626262;
}
.account-holder .alert-tile .date-gap {
  gap: 16px;
}
.account-holder .context-menu-container .context-menu ul li {
  color: #222222;
  font-weight: 500;
}
.account-holder .support-content .btn.request {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #ffffff;
  padding: 6px 16px;
  background: #5097f4;
  border: none;
  border-radius: 50px;
  transition: linear 0.2s;
}
.account-holder .support-content .btn.request:hover {
  background: #3977c8;
  color: #fff;
}
.account-holder .support-content .btn.request:active {
  background: #5a60f1;
}
.account-holder .request-page {
  position: relative;
  
  height: calc(100vh - 136px);
  max-width: 1200px;
  margin: auto;
}
.account-holder .request-page.new {
  max-width: 480px;
  margin: 0;
}
.account-holder .request-page > .name,
.account-holder .request-page .field-container > .name {
  font-size: 12px;
  line-height: normal;
  font-weight: 500;
  margin-bottom: 8px;
  color: #19297c;
}
.account-holder .request-page .fields-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.account-holder .request-page .custom-combo .combo-container,
.account-holder .request-page .silver-textbox {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #a7b4c7;
  color: #262b43;
  line-height: 14px;
}
.account-holder .request-page .custom-combo .combo-container::placeholder,
.account-holder .request-page .silver-textbox::placeholder {
  color: #a7b4c7;
}
.account-holder .request-page .custom-combo,
.account-holder .request-page .custom-combo > .combo-dropdown > .combo-items > .item > span,
.account-holder .request-page .silver-textbox {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
}
.account-holder .request-page .field-container.error {
  display: flex;
  flex-direction: column;
}
.account-holder .request-page .field-container > .error-text,
.account-holder .request-page .textarea-tile-container .error-text,
.account-holder .settings-content .pass-container .error-text,
.account-holder .rate .textarea-tile-container .error-text {
  display: none;
}
.account-holder .request-page .field-container.error > .error-text,
.account-holder .request-page .textarea-tile-container.error .error-text,
.account-holder .settings-content .pass-container.error .error-text,
.account-holder .rate .textarea-tile-container.error .error-text {
  display: block;
  color: red;
  font-size: 12px;
  margin-top: 8px;
}
.account-holder .request-page .field-container.error .custom-combo,
.account-holder .request-page .field-container.error .silver-textbox,
.account-holder .request-page .textarea-tile-container.error .textarea-container,
.account-holder .settings-content .pass-container.error .textarea-container,
.account-holder .rate .textarea-tile-container.error .textarea-container {
  border-color: red;
}
.account-holder .rate .textarea-tile-container {
  width: 100%;
}
.account-holder .request-page .textarea-container {
  display: block;
  background: #fff;
  width: 100%;
  
  padding: 16px;
  border: 1px solid #a7b4c7;
  border-radius: 10px;
}
.account-holder .request-page .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;
  color: #262b43;
}
.account-holder .request-page .textarea-container textarea::placeholder {
  color: #a7b4c7;
}
.account-holder .rate .textarea-container textarea {
  display: block;
  background: #fff;
  width: 100%;
  border: 1px solid #e2e8f6;
  border-radius: 10px;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  margin-bottom: 16px;
  min-height: 80px;
  max-height: 180px;
  resize: none;
  padding: 10px 16px;
}
.account-holder .request-page .textarea-container textarea:focus-visible,
.account-holder .rate .textarea-container textarea:focus-visible {
  outline: none;
}

.account-holder .request-page .textarea-container > .flex-row {
  align-items: flex-start;
  gap: 16px;
}
.account-holder .request-page .textarea-container .newfiles-container,
.account-holder .personal-content .document .newfiles-container,
.account-holder .personal-content .document .flex-files {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
}
.account-holder .request-page .textarea-container .newfiles-container .flex-files,
.account-holder .personal-content .document .flex-files {
  flex-wrap: wrap;
  gap: 12px 32px;
}
.account-holder .personal-content .document .flex-files.server {
  margin-top: 12px;
  margin-bottom: 24px;
}
.account-holder .personal-content .document .flex-files.server .doc {
  color: #222222;
}
.account-holder .personal-content .document .flex-files.server .doc:hover .text {
  text-decoration: underline;
}
.account-holder .request-page .textarea-container .add-file,
.account-holder .personal-content .document .add-file {
  width: fit-content;
  color: initial;
  user-select: none;
  color: #a7b4c7;
}
.account-holder .request-page .textarea-container .add-file:hover,
.account-holder .personal-content .document .add-file:hover {
  text-decoration: underline;
  color: initial;
}
.account-holder .request-page .textarea-container .clip,
.account-holder .personal-content .document .clip {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #5097f4;
  width: 24px;
  height: 24px;
  margin-right: 12px;
}
.account-holder .request-page .textarea-container .clip {
  background: #a7b4c7;
}
.account-holder .request-page .textarea-container .clip:before,
.account-holder .personal-content .document .clip:before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url(/imgs/vectors/clip.svg) 00 no-repeat;
  background-size: contain;
  align-self: center;
}
.account-holder .request-page .textarea-tile-container .send,
.account-holder .rate .send {
  display: block;
  padding: 6px 16px;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  background: #5097f4;
  color: #fff;
  border-radius: 50px;
  transition: linear 0.2s;
  width: fit-content;
  margin-top: 8px;
}
.account-holder .rate .send {
  width: fit-content;
  float: right;
  padding: 10px 20px;
}
.account-holder .rate .send.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transition: 0s;
}
.account-holder .rate .send.disabled:hover {
  background: #5097f4;
}
.account-holder .request-page .textarea-tile-container .send:hover,
.account-holder .request-page .textarea-tile-container .send:focus,
.account-holder .rate .send:hover,
.account-holder .rate .send:focus {
  background: #3977c8;
  color: #fff;
}
.account-holder .request-page .textarea-tile-container .send:active {
  background: #5a60f1;
}
.account-holder .request-page .textarea-container .doc .name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 190px;
  margin-left: 18px;
}
.account-holder .request-page .textarea-container .doc::before {
  position: absolute;
}
.account-holder .request-page .request-chat,
.account-holder .messanger-chat .message-chat-holder .messages-container {
  display: flex;
  position: relative;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 54px;
  overflow: auto;
}

.account-holder .request-page .request-chat .message,
.account-holder .messanger-chat .message-chat-holder .message {
  position: relative;
  display: flex;
  flex-direction: column;
  width: calc(100% - 20px);
}
.account-holder .request-page .request-chat .message.blue,
.account-holder .messanger-chat .message-chat-holder .message.blue {
  align-items: flex-end;
}
.account-holder .request-page .request-chat .message .time {
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 8px;
  font-weight: 400;
  margin-left: 12px;
  color: #3977c8;
}
.account-holder .request-page .request-chat .message.blue .time {
  margin-right: 12px;
}
.account-holder .request-page .request-chat .message .message-block,
.account-holder .messanger-chat .message-chat-holder .message-block {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  max-width: calc(100% - 12px);
}
.account-holder .request-page .request-chat .message.blue .message-block {
  flex-direction: row;
  justify-content: flex-start;
}

.account-holder .request-page .request-chat .message .cut,
.account-holder .messanger-chat .message-chat-holder .message .cut {
  display: block;
  position: relative;
  align-self: flex-end;
  background: #fff;
  width: 12px;
  height: 20px;
}
.account-holder .request-page .request-chat .message .cut::before,
.account-holder .messanger-chat .message-chat-holder .message .cut::before {
  content: "";
  display: block;
  position: absolute;
  right: 1px;
  bottom: 0;
  border-radius: 50%;
  background: #f1f6ff;
  width: 30px;
  height: 40px;
}
.account-holder .request-page .request-chat .message.blue .cut,
.account-holder .messanger-chat .message-chat-holder .message.blue .cut {
  
  background: #ccddf4;
  width: 12px;
}
.account-holder .request-page .request-chat .message.blue .cut::before,
.account-holder .messanger-chat .message-chat-holder .message.blue .cut::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  bottom: 0;
  border-radius: 50%;
  background: #f1f6ff;
  width: 30px;
  height: 40px;
}
.account-holder .request-page .request-chat .message .text,
.account-holder .messanger-chat .message-chat-holder .message .text {
  position: relative;
  min-width: 110px;
  max-width: calc(100% - 12px);
  padding: 10px 8px 10px 12px;
  background-color: #fff;
  border-radius: 15px 15px 15px 0px;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  overflow-x: hidden;
  word-wrap: break-word;
  padding-right: 36px;
  color: #262b43;
}
.account-holder .messanger-chat .message-chat-holder .message .text {
  padding-bottom: 20px;
}
.account-holder .request-page .request-chat .message.blue .text,
.account-holder .messanger-chat .message-chat-holder .message.blue .text {
  
  background: #ccddf4;
  border-radius: 15px 15px 0 15px;
}
.account-holder .request-page .request-chat .message .text .time,
.account-holder .messanger-chat .message-chat-holder .message .text .time {
  position: absolute;
  font-size: 10px;
  font-weight: 400;
  line-height: 12px;
  color: #6c788a;
  margin: 0;
  bottom: 4px;
  right: 8px;
}
.account-holder .request-page .request-chat .message.blue .text .time,
.account-holder .messanger-chat .message-chat-holder .message.blue .text .time {
  right: 4px;
}
.account-holder .request-page .request-chat .message .message-files,
.account-holder .messanger-chat .message-chat-holder .message .message-files {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 16px;
}
.account-holder .request-page .request-chat .message .message-files .doc,
.account-holder .messanger-chat .message-chat-holder .message-files .doc {
  color: #222222;
}
.account-holder .request-page .request-chat .message .message-files .doc .name,
.account-holder .messanger-chat .message-chat-holder .message-files .doc .name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 190px;
  margin-right: 8px;
  margin-left: 6px;
  font-size: 12px;
}
.account-holder .request-page .request-chat .message .message-files .doc:hover .name,
.account-holder .messanger-chat .message-chat-holder .message-files .doc:hover .name,
.account-holder.instructor .account-body .group-cot .cot-content .doc:hover .name,
.account-holder.platform .account-body .group-cot .cot-content .doc:hover .name {
  color: initial;
  text-decoration: underline;
}
.account-holder .request-page .request-chat .message .message-files .doc::before,
.account-holder .messanger-chat .message-chat-holder .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%);
}
.account-holder .request-page .doc .size,
.account-holder .messanger-chat .doc .size {
  font-size: 12px;
}
.account-holder.organization .account-body .content-container .prof-grid.grid-org .flex-files {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  gap: 12px;
}
.account-holder.organization .account-body .content-container .doc {
  width: 100%;
  gap: 8px;
  color: #222222;
}
.account-holder.organization .account-body .content-container .prof-grid.grid-org .doc .name,
.account-holder.manager .account-body .content-container .prof-grid.grid-org .doc .name {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  
  width: 100%;
  text-align: left;
}
.account-holder.organization .account-body .content-container .prof-grid.grid-org .doc .name::before,
.account-holder.manager .account-body .content-container .prof-grid.grid-org .doc .name::before {
  filter: none;
}
.account-holder.organization .account-body .content-container .doc:hover .name {
  color: initial;
  text-decoration: underline;
}
.account-holder.organization .account-body .content-container .doc .name::before,
.account-holder.manager .account-body .content-container .doc .name::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  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%);
  flex: 0 0 auto;
  margin-right: 8px;
}
.account-holder .account-body .content-container .doc .size {
  font-size: 12px;
  flex: 0 0 auto;
}
.account-holder .messanger-holder {
  display: flex;
  position: relative;
  width: calc(100% + 112px);
  height: calc(100vh - 72px);
  margin: -32px -56px -32px -56px;
}
.account-holder .contact-menu {
  display: block;
  overflow: auto;
  height: 100%;
  width: 360px;
  background: #f0f8ff;
  border-right: 1px solid #ddebfd;
}

.account-holder .contact-menu .contact-tile {
  display: block;
  position: relative;
  width: 100%;
  
  background: #c2e3ff;
  border-bottom: 1px solid #a6a4a4;
  cursor: pointer;
  min-height: 75px;
  background: #f0f8ff;
  border-bottom: 1px solid #ddebfd;
}
.account-holder .contact-menu .contact-tile:hover {
  background: #95cdff;
  background: #e0f0ff;
}
.account-holder .contact-menu .contact-tile .contact-tile-container {
  position: relative;
  padding: 12px;
  width: 100%;
  height: 100%;
  gap: 10px;
}
.account-holder .contact-menu .contact-tile .contact-avatar,
.account-holder .messanger-chat .message-contact .avatar {
  display: block;
  width: 73px;
  height: 56px;
  background-position: center center !important;
  background-size: contain !important;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}
.account-holder .contact-menu .contact-tile .info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: baseline;
  gap: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  width: calc(100% - 56px);
  font-size: 14px;
}
.account-holder .contact-menu .contact-tile .info > .flex-row {
  width: 100%;
}
.account-holder .contact-menu .contact-tile .info .name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 85px);
}
.account-holder .contact-menu .contact-tile .info .marks {
  gap: 8px;
}
.account-holder .contact-menu .contact-tile .info .marks .check {
  display: block;
  width: 11px;
  height: 8px;
  background: url(/imgs/vectors/check-sent.svg) 00 no-repeat;
  background-size: contain;
  filter: brightness(0) saturate(100%) invert(44%) sepia(32%) saturate(3256%) hue-rotate(208deg) brightness(101%) contrast(102%);
}
.account-holder .contact-menu .contact-tile .info .marks .check.read {
  width: 20px;
  background: url(/imgs/vectors/check-read.svg) 00 no-repeat;
}
.account-holder .contact-menu .contact-tile .info .marks .time {
  font-weight: 400;
  font-size: 10px;
  line-height: 10px;
}
.account-holder .contact-menu .contact-tile .info .text {
  font-weight: 300;
  font-size: 12px;
  line-height: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 32px);
  min-height: 18px;
}
.account-holder .contact-menu .contact-tile .isnew {
  display: block;
  background: #5097f4;
  color: #fff;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  font-size: 10px;
  line-height: 14px;
  text-align: center;
}
.account-holder .messanger-chat {
  display: block;
  position: relative;
  background: #f1f6ff;
  width: calc(100% - 360px);
  height: 100%;
}
.account-holder .messanger-chat .message-chat-holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  width: 100%;
  height: 100%;
  max-height: calc(100% - 61px);
  
}
.account-holder .messanger-chat .message-chat-holder .messages-container {
  display: flex;
  flex-direction: column;
  
  margin-bottom: 8px;
  padding: 10px 0;
  
}
.account-holder .messanger-chat .message-chat-holder .messages-container .messages-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}


.account-holder .messanger-chat .message-chat-holder .messages-container .files-rows .message-files {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 6px;
  font-size: 12px;
  flex-direction: column;
  gap: 3px;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  margin-right: 16px;
}
.account-holder .messanger-chat .message-chat-holder .messages-container .time {
  display: inline-block;
  position: relative;
  float: right;
  font-weight: 300;
  font-size: 12px;
  line-height: 15px;
  color: #7a7a7a;
  margin-top: 4px;
  white-space: nowrap;
}
.account-holder .messanger-chat .message-chat-holder .messages-container .files-rows .time {
  align-self: flex-end;
}
.account-holder .messanger-chat .message-chat-holder .messages-container .time > div {
  display: inline-block;
}
.account-holder .messanger-chat .message-chat-holder .messages-container .message.blue .text .time::after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 8px;
  background: url(/imgs/vectors/check-sent.svg) 00 no-repeat;
  background-size: contain;
  margin-left: 4px;
  filter: brightness(0) saturate(100%) invert(44%) sepia(32%) saturate(3256%) hue-rotate(208deg) brightness(101%) contrast(102%);
}
.account-holder .messanger-chat .message-chat-holder .messages-container .message.blue .text .time.read::after {
  background: url(/imgs/vectors/check-read.svg) 00 no-repeat;
  width: 18px;
}
.account-holder .messanger-chat .message-chat-holder .message-textarea-container {
  position: relative;
  font-weight: 300;
  font-size: 12px;
  line-height: 15px;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  min-height: 56px;
  z-index: 800;
}
.account-holder .messanger-chat .message-chat-holder .message-textarea-container .cut {
  display: block;
  position: relative;
  align-self: flex-end;
  background: #fff;
  width: 15px;
  height: 20px;
}
.account-holder .messanger-chat .message-chat-holder .message-textarea-container .cut::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  bottom: 0;
  border-radius: 50%;
  background: #f1f6ff;
  width: 30px;
  height: 40px;
}
.account-holder .messanger-chat .message-chat-holder .message-input {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 15px;
  padding: 7px 16px;
  min-height: 56px;
}
.account-holder .messanger-chat .message-chat-holder .message-input.loaded {
  padding-bottom: 16px;
}
.account-holder .messanger-chat .message-chat-holder .message-input .flex-textarea {
  align-items: flex-end;
  height: 100%;
}
.account-holder .messanger-chat .message-chat-holder .message-input .clip {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 32px;
  height: 24px;
  margin: 9px 0;
  cursor: pointer;
}
.account-holder .messanger-chat .message-chat-holder .message-input .clip:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(/imgs/vectors/clip.svg) 00 no-repeat;
  background-size: contain;
  filter: invert(56%) sepia(18%) saturate(1801%) hue-rotate(177deg) brightness(98%) contrast(95%);
}
.account-holder .messanger-chat .message-chat-holder .message-input textarea {
  display: block;
  resize: none;
  border: none;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  width: 100%;
  max-height: 180px;
  padding: 0 16px;
  padding-top: 6px;
  margin-top: 6px;
  min-height: 34px;
  max-height: 65px;
  background: #fff;
}
.account-holder .messanger-chat .message-chat-holder .message-input textarea:focus-visible {
  outline: none;
}

.account-holder .messanger-chat .message-chat-holder .message-input .send {
  display: block;
  padding: 6px 12px;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  background: #5097f4;
  color: #fff;
  border-radius: 50px;
  transition: linear 0.2s;
  margin-bottom: 8px;
  margin-left: 12px;
}
.account-holder .messanger-chat .message-chat-holder .message-input .send:hover,
.account-holder .messanger-chat .message-chat-holder .message-input .send:focus {
  background: #8fbffe;
  color: #fff;
}
.account-holder .messanger-chat .message-chat-holder .message-input .flex-files {
  flex-wrap: wrap;
  gap: 12px 32px;
}
.account-holder .messanger-chat .message-chat-holder .message-input .doc .name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 190px;
}
.account-holder .messanger-chat .message-chat-holder .messages-page {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.account-holder .messanger-chat .message-contact-container {
  display: block;
  position: relative;
  width: 100%;
  background: #ddefff;
  
  
  border-bottom: 1px solid rgb(134 155 177 / 12%);
}
.account-holder .messanger-chat .message-contact {
  width: 100%;
  padding: 10px 20px;
  gap: 16px;
}
.account-holder .messanger-chat .message-contact .back {
  display: none;
  background: url(/imgs/header/header-back-ai.svg) 00 no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  filter: invert(47%) sepia(11%) saturate(3638%) hue-rotate(175deg) brightness(89%) contrast(85%);
  cursor: pointer;
}
.account-holder .messanger-chat .message-contact .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.account-holder .messanger-chat .message-contact .contact-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
}
.account-holder .contact-menu > .no-messages {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  border-right: 1px solid #ddebfd;
}
.account-holder .contact-menu > .no-messages div,
.account-holder .messanger-chat > .no-messages,
.account-holder .main-content .no-messages {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}
.account-holder .messanger-chat .message-chat-holder .messages-container .no-messages {
  margin: auto;
}
.account-holder .messanger-chat .message-chat-holder .message-textarea-container .scroll-down {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 45px;
  top: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ddefff;
  z-index: -1;
  cursor: pointer;
  transition: linear 0.2s;
}
.account-holder .messanger-chat .message-chat-holder .message-textarea-container .scroll-down::before {
  content: "";
  display: block;
  background: url(/imgs/vectors/chevron-down.svg) 00 no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  filter: brightness(0) saturate(100%) invert(44%) sepia(32%) saturate(3256%) hue-rotate(208deg) brightness(101%) contrast(102%);
}
.account-holder .messanger-chat .message-chat-holder .message-textarea-container .scroll-down.visible {
  top: -40px;
}
.account-holder .alert-tile .more {
  margin-top: 8px;
  text-align: end;
}
.account-holder .alert-tile .more > div {
  cursor: pointer;
}
.account-holder .alerts-container .alert-content {
  position: relative;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  height: 1px;
  transition: 0.2s;
  -webkit-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);
  color: #262b43;
  border-top: 1px solid #dceaff;
  font-weight: 400;
}
.account-holder .alerts-container .alert-content a {
  color: #337ab7;
}
.account-holder .alerts-container .alert-content a:hover,
.account-holder .alerts-container .alert-content a:focus {
  color: #5097f4;
}
.account-holder .alerts-container .alert-content.opened {
  visibility: visible;
  opacity: 1;
  height: initial;
  overflow: initial;
  margin-top: 16px;
  padding-top: 16px;
}
.account-holder .alerts-container .alert-content .alert-files {
  gap: 32px;
  margin-top: 8px;
}
.auc-mgr-response > .btn {
  padding: 10px 16px;
  font-size: 14px;
  line-height: 1.1;
}
.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;
}
.account-holder .load-more {
  display: block;
  width: fit-content;
  margin: auto;
  background: #5097f4;
  border-radius: 100px;
  padding: 10px 20px;
  color: #fff;
  cursor: pointer;
  transition: 0.2s;
}
.account-holder .load-more:hover {
  text-decoration: none;
  color: #fff;
  background: #8fbffe;
}
.account-holder .video-js {
  background-color: #f1f6ff;
}
.account-holder .video-js *,
.account-holder .video-js *:before,
.account-holder .video-js *:after {
  border-radius: 20px;
}
.account-holder .video-js .vjs-big-play-button {
  border: none;
  background-color: transparent;
  background-image: url(/imgs/vectors/play.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.account-holder .video-js .vjs-big-play-button .vjs-icon-placeholder {
  display: none !important;
}
.account-holder .video-js:hover .vjs-big-play-button,
.account-holder .video-js .vjs-big-play-button:focus {
  border: none;
  background-color: transparent;
}

.account-holder .account-body .personal-content .personal-tab-holder {
  overflow: hidden;
  padding: 12px 0px;
  padding-bottom: 0px;
}
.account-holder .account-body .personal-content .tab-content {
  overflow: hidden;
  padding: 0 16px;
}
.account-holder .account-body .personal-content .document-holder {
  position: relative;
}

.account-holder .account-body .personal-content .personal-tab .scale {
  width: 100%;
}
.account-holder .personal-content .fields-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: start;
  flex-wrap: wrap;
  gap: 16px 36px;
  width: 100%;
  height: 100%;
  margin-bottom: 16px;
  max-width: 908px;
}
.account-holder .personal-content .group-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: #000000;
  margin-bottom: 24px;
}
.account-holder .personal-content .field-container {
  position: relative;
  min-width: 270px;
  min-height: 85px;
}
.account-holder .personal-content .field-container.tiny,
.account-holder .personal-content .field-container.small,
.account-holder .personal-content .field-container.medium,
.account-holder .personal-content .field-container.big {
  min-width: unset;
  max-width: unset;
}
.account-holder .personal-content .field-container.tiny {
  width: 168px;
}
.account-holder .personal-content .field-container.small {
  width: 270px;
}
.account-holder .personal-content .field-container.medium {
  width: 400px;
  width: 385px;
}
.account-holder .personal-content .field-container.big {
  width: 690px;
}
.account-holder .personal-content .tb-name {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #7e7e7e;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.account-holder .personal-content .document .tb-name {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.account-holder .personal-content .document .tb-name .control-tooltip {
  display: block;
  background: url(/imgs/account-vectors/instruction.svg) 00 no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  filter: invert(52%) sepia(46%) saturate(717%) hue-rotate(176deg) brightness(98%) contrast(94%);
  cursor: pointer;
}
.account-holder .personal-content .field-container .flex-managerMode {
  gap: 16px;
}
.account-holder .personal-content .field-container .flex-managerMode .manager-btns {
  gap: 8px;
}
.account-holder .personal-content .field-container .flex-managerMode .manager-btns .approve-row,
.account-holder .personal-content .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;
}
.account-holder .personal-content .field-container .flex-managerMode .manager-btns .decline-row {
  background: url(/imgs/vectors/clock-error.svg) 00 no-repeat;
}
.account-holder .personal-content .field-container .flex-managerMode .manager-btns .approve-row:hover,
.account-holder .personal-content .field-container .flex-managerMode .manager-btns .decline-row:hover,
.account-holder .personal-content .field-container .flex-managerMode .manager-btns .approve-row.active,
.account-holder .personal-content .field-container .flex-managerMode .manager-btns .decline-row.active {
  opacity: 1;
}
.account-holder .personal-content .field-container .silver-control.silver-date {
  width: 256px;
}
.account-holder .personal-content .document .flex-btns .btn-approve,
.account-holder .personal-content .document .flex-btns .btn-decline {
  display: flex;
  align-items: center;
  background: #24cc85;
  padding: 10px 18px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  border-radius: 50px;
  gap: 8px;
  cursor: pointer;
  transition: linear 0.2s;
}
.account-holder .personal-content .document .flex-btns .btn-approve.disabled,
.account-holder .personal-content .document .flex-btns .btn-decline.disabled {
  opacity: 0.4;
  cursor: default;
}
.account-holder .personal-content .document .flex-btns .btn-decline {
  background: #e84444;
}
.account-holder .personal-content .document .flex-btns .btn-approve::before,
.account-holder .personal-content .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;
}
.account-holder .personal-content .document .flex-btns .btn-approve:hover {
  background: #1ae791;
}
.account-holder .personal-content .document .flex-btns .btn-decline:hover {
  background: #ff3f3f;
}
.account-holder .personal-content .document .flex-btns .btn-decline::before {
  background: url(/imgs/vectors/cross-withBorder.svg) 00 no-repeat;
}
.account-holder .personal-content .document .silver-control.approved input {
  border: 1px solid #24cc85;
}
.account-holder .personal-content .document .silver-control.declined input {
  border: 1px solid #e84444;
}
.account-holder .personal-content .document .manager-comment textarea {
  font-size: 16px;
  line-height: 20px;
  background: #e0edff;
  min-height: 120px;
  max-width: 650px;
  padding: 16px;
  margin-bottom: 16px;
}
.account-holder .personal-content .document {
  margin-bottom: 24px;
}
.account-holder .personal-content .document .newfiles-container {
  margin-bottom: 24px;
  margin-top: 12px;
}
.account-holder .personal-content .document .flex-files .doc {
  max-width: 250px;
  width: 100%;
}
.account-holder .personal-content .document .flex-files .name .text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
  width: 100%;
  padding-left: 22px;
}
.account-holder .personal-content .document .name::before {
  position: absolute;
  left: 0;
}
.account-holder .personal-content .document .flex-files {
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.account-holder .personal-content .document .status {
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  margin-bottom: 16px;
  white-space: nowrap;
}
.account-holder .personal-content .document .status::before {
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  background-size: contain !important;
  margin-right: 8px;
}
.account-holder .personal-content .document .status.empty {
  display: none;
}
.account-holder .personal-content .document .status.wait::before {
  background: url(/imgs/vectors/clock-wait.svg) 00 no-repeat;
}
.account-holder .personal-content .document .status.approved::before {
  background: url(/imgs/vectors/clock-approved.svg) 00 no-repeat;
}
.account-holder .personal-content .document .status.error::before {
  background: url(/imgs/vectors/clock-error.svg) 00 no-repeat;
}
.account-holder .personal-content .document .manager-remark {
  margin-left: 16px;
  font-size: 12px;
  line-height: 14px;
  color: red;
  white-space: normal;
}
.account-holder .personal-content .document .flex-btns {
  display: flex;
  gap: 16px;
}
.account-holder .personal-content .document .btn-save {
  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;
}
.account-holder .personal-content .document .btn-save:hover {
  background: #3977c8;
  color: #fff;
}
.account-holder .personal-content .document .btn-save:active {
  background: #5a60f1;
}
.account-holder .personal-content .field-container .error-text {
  font-size: 12px;
  line-height: 14px;
}
.account-holder .personal-content .document-holder .add-document {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #7e7e7e;
  cursor: pointer;
  width: fit-content;
}
.account-holder .personal-content .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;
}
.account-holder .personal-content .document-holder .add-document:hover {
  text-decoration-line: underline;
}
.account-holder .silver-textbox[disabled="disabled"] {
  background: #f3f3f3;
  color: #a5a5a5;
  cursor: default;
}
.account-holder .personal-content .field-container.important .silver-control {
  width: calc(100% - 22px);
}
.account-holder .personal-content .field-container.important .silver-control::after {
  content: "";
  display: block;
  position: absolute;
  right: 8px;
  bottom: 12px;
  width: 14px;
  height: 14px;
  background: url(/imgs/vectors/clock-error.svg) 00 no-repeat;
  background-size: contain !important;
  margin-left: 8px;
}

.account-holder .personal-content .document .newfiles-container .file-msg,
.account-holder .personal-content .document .newfiles-container .file-msg-error {
  font-size: 12px;
  line-height: 14px;
  color: #949494;
  user-select: none;
  font-style: italic;
}
.account-holder .personal-content .document .newfiles-container .file-msg-error {
  margin-top: 8px;
}
.account-holder .personal-content .document .newfiles-container .file-msg-error {
  display: none;
  color: red;
}
.account-holder .personal-content .document .newfiles-container .file-msg-error.show {
  display: block;
}
.account-holder .basket-body .basket-container {
  padding: 0;
}

.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;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  overflow: auto;
}
.custom-slider > .slides > .slide:first-child {
  left: 0;
}


.account-holder.platform .slots-filters {
  gap: 16px;
  margin-bottom: 24px;
}
.account-holder.platform .slots-filters label {
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 4px;
}
.account-holder.platform .slots-filters .btn-blue.add {
  display: flex;
  align-self: flex-end;
  align-items: center;
  gap: 8px;
}
.account-holder.platform .slots-filters .btn-blue.add::after {
  content: "";
  display: block;
  background: url(/imgs/vectors/plus-add.svg) 00 no-repeat;
  width: 16px;
  height: 16px;
  filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0) brightness(1000%) contrast(106%);
}
.account-holder.platform .slots-filters .custom-combo,
.account-holder.platform .slots-filters .silver-textbox,
.account-holder.platform .instructor-content .schedule-filters .custom-combo,
.account-holder.instructor .schedule-filters .custom-combo {
  background: #fff;
}
.account-holder.platform .slot-scheduler-holder {
  position: relative;
  height: calc(100vh - 300px);
  gap: 8px;
}
.account-holder.platform .slot-scheduler {
  position: relative;
  height: 100%;
  max-width: calc(100% - 300px);
}
.account-holder.platform .table-scheduler .cal-body {
  background: #fff;
}
.account-holder.platform .table-scheduler .months-container .cal-month {
  color: #222222;
}
.account-holder.platform .table-scheduler .months-container .cal-month.filial {
  color: rgb(57, 119, 200);
}
.account-holder.platform .table-scheduler .cal-weeks .cal-week {
  min-width: 255px;
}
.account-holder.platform .table-scheduler .cell-row .cell {
  min-width: 255px;
  width: 255px;
}
.account-holder.platform .table-scheduler .cell-row .cell.no-border {
  background-color: #f9f9f9;
}
.account-holder.platform .table-scheduler .cell-row .cell.no-border:not(:last-child) {
  border-right: 0;
}
.account-holder.platform .table-scheduler .cell-row .cell .onAdd {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translate(-50%, -50%);
  color: #bdbdbd;
  font-size: 12px;
  line-height: 16px;
}
.account-holder.platform .table-scheduler .cell-row .cell .onAdd::after {
  content: "";
  background: url(/imgs/vectors/plus-add.svg) 00 no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
  margin-left: 4px;
}
.account-holder.platform .table-scheduler .cell-row .cell.add:hover {
  
  box-shadow: inset 0px 0px 4px rgb(57 119 200 / 80%);
  cursor: pointer;
}
.account-holder.platform .table-scheduler .cell-row .cell.add:hover .onAdd,
.account-holder.platform .table-scheduler .cell-row .cell.add.adding .onAdd {
  display: flex;
  align-items: center;
}
.account-holder.platform .table-scheduler .cell-row .cell.add.adding .onAdd::after {
  display: none;
}
.account-holder.platform .table-scheduler .cell-row .cell.adding {
  border: dotted 2px #5f9ca5;
  background: #e7fdfc;
}
.account-holder.platform .slot-scheduler-new {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 10px;
  font-size: 12px;
  line-height: 14px;
  overflow: hidden;
  max-width: 300px;
}
.account-holder.platform .slot-scheduler-new .data-saved {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: linear 0.5s;
}
.account-holder.platform .slot-scheduler-new .data-saved.error {
  opacity: 1;
  visibility: visible;
  transition: unset;
}
.account-holder.platform .slot-scheduler-new .data-saved.error .text::before {
  background: url(/imgs/vectors/clock-error.svg) 00 no-repeat;
}
.account-holder.platform .slot-scheduler-new .data-saved .text {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  padding: 0 24px;
}
.account-holder.platform .slot-scheduler-new .data-saved .text::before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background-size: contain !important;
  flex: 0 0 auto;
  background: url(/imgs/vectors/clock-approved.svg) 00 no-repeat;
}
.account-holder.platform .slot-scheduler-new .data-saved.visible {
  display: flex !important;
  opacity: 1;
  visibility: visible;
}
.account-holder.platform .slot-new-container {
  overflow: auto;
  padding: 16px 24px;
  padding-top: 50px;
  width: 100%;
  height: 100%;
}
.account-holder.platform .slot-scheduler-new .new-slot-container,
.account-holder.platform .slot-scheduler-new .slot-edit-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.account-holder.platform .slot-scheduler-new .slot-edit-container.smallGap {
  gap: 8px;
}
.account-holder.platform .slot-scheduler-new .slot-edit-container:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #6c788a;
  margin-top: 8px;
}
.account-holder.platform .slot-scheduler-new .slot-edit-container > .context-menu-container {
  position: absolute;
  right: 0;
  top: -5px;
}
.personal-popup.addToEmptyGroup .btn-blue {
  display: block;
  width: fit-content;
  margin: auto;
}
.account-holder.platform .slot-scheduler-new .new-slot-container .custom-combo > .combo-dropdown > .combo-items > .item,
.account-holder.platform .slots-filters .custom-combo > .combo-dropdown > .combo-items > .item {
  height: 24px;
}
.account-holder.platform .slot-scheduler-new .new-slot-container .custom-combo > .combo-dropdown > .combo-items > .item > span,
.account-holder.platform .slots-filters .custom-combo > .combo-dropdown > .combo-items > .item > span,
.account-holder.platform .slots-filters .silver-date .silver-textbox {
  font-size: 12px;
  line-height: 14px;
}
.account-holder.platform .slots-filters .silver-date .silver-textbox {
  border: 1px solid #e2e8f6;
}

.account-holder.platform .slot-scheduler-new .flex-controls .custom-combo {
  border: none;
}

.account-holder.platform .slot-scheduler-new .fixed-title {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0px;
  background: #fff;
  width: calc(100% - 8px);
  height: 48px;
  
  
  z-index: 20;
}
.account-holder.platform .slot-scheduler-new .fixed-title.on-scroll {
  box-shadow: 0px 4px 20px rgba(83, 93, 150, 0.1);
}
.account-holder.platform .slot-scheduler-new .fixed-title .toggler {
  position: absolute;
  right: 6px;
  top: 6px;
  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%);
  cursor: pointer;
}
.account-holder.platform .slot-scheduler-new .title {
  font-size: 18px;
  line-height: 18px;
  font-weight: 600;
  margin: 0;
  text-align: center;
}
.account-holder.platform .slot-scheduler-new .little-title {
  font-size: 12px;
  line-height: 14px;
}
.account-holder.platform .slot-scheduler-new .big-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
}
.account-holder.platform .slot-scheduler-new .switch-holder .little-title {
  text-align: center;
  margin-bottom: 8px;
}
.account-holder.platform .slot-scheduler-new .flex-controls,
.account-holder.platform .platform-content .flex-controls,
.personal-popup.platform .flex-controls {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.account-holder.platform .slot-scheduler-new .flex-controls {
  gap: 16px;
}
.account-holder.platform .slot-scheduler-new .flex-controls.error .custom-combo,
.account-holder.platform .slot-scheduler-new .flex-controls.error .silver-textbox,
.account-holder.platform .slot-scheduler-new .date.error .silver-date input {
  border: 1px solid red;
}
.account-holder.platform .slot-scheduler-new .flex-controls .date span {
  margin-right: 10px;
  width: 15px;
  text-align: end;
}
.account-holder.platform .slot-scheduler-new .silver-textbox {
  font-size: 12px;
  line-height: 14px;
}
.account-holder.platform .slot-scheduler-new .silver-control.silver-date {
  width: 130px !important;
}
.account-holder.platform .slot-scheduler-new .silver-checkbox.checkbox-label,
.personal-popup .silver-checkbox.checkbox-label {
  display: flex;
  
}
.account-holder.platform .slot-scheduler-new .silver-checkbox.checkbox-label label.imposter + span,
.personal-popup .silver-checkbox.checkbox-label label.imposter + span {
  width: fit-content;
  text-align: start;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #262b43;
  margin: 0;
}
.account-holder.platform .slot-scheduler-new .silver-checkbox.checkbox-label label.imposter + span,
.personal-popup .silver-checkbox.checkbox-label label.imposter + span {
  user-select: none;
}
.account-holder.platform .slot-scheduler-new .silver-checkbox.checkbox-label label.imposter + span em,
.personal-popup .silver-checkbox.checkbox-label label.imposter + span em {
  background: #d6e7f9 none repeat 0 0;
  color: Black;
  font-style: normal;
}
.account-holder.platform .slot-scheduler-new .silver-checkbox label:before,
.personal-popup .silver-checkbox label:before {
  content: "";
  background-image: none;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #3977c8;
  border-radius: 3px;
  cursor: pointer;
}
.account-holder.platform .slot-scheduler-new .silver-checkbox input:checked + label:before,
.personal-popup .silver-checkbox input:checked + label:before {
  background: url(/imgs/vectors/checked-arrow-white.svg) 00 no-repeat;
  background-position: center center;
  background-color: #3977c8;
}
.account-holder.platform .slot-scheduler-new .add-instructor {
  width: fit-content;
  gap: 8px;
  font-size: 12px;
  line-height: 14px;
  color: #222222;
}
.account-holder.platform .slot-scheduler-new .add-instructor:hover div {
  text-decoration: underline;
}
.account-holder.platform .slot-scheduler-new .add-instructor .plus {
  display: block;
  flex: 0 0 auto;
  border-radius: 20px;
  background: #337ab7;
  color: #fff;
  width: 18px;
  height: 18px;
  text-align: center;
  font-size: 20px;
  line-height: 16px;
}
.account-holder.platform .slot-scheduler-new .add-instructor:hover .plus {
  text-decoration: none;
}
.account-holder.platform .slot-scheduler-new .flex-controls .positions {
  gap: 16px;
}
.account-holder.platform .slot-scheduler-new .flex-controls .positions span {
  width: 28px;
  text-align: end;
}
.account-holder.platform .slot-scheduler-new .flex-controls.schedule .little-title,
.personal-popup.recruitment .flex-controls.schedule .little-title {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: #337ab7;
}
.personal-popup.recruitment .flex-controls.schedule .little-title {
  font-size: 12px;
  padding-left: 16px;
}
.account-holder.platform .slot-scheduler-new .flex-controls.schedule .little-title::before,
.personal-popup.recruitment.flex-controls.schedule .little-title::before {
  content: "";
  display: block;
  flex: 0 0 auto;
  background: url("/imgs/vectors/calendar.svg") 00 no-repeat;
  background-size: contain;
  width: 16px;
  height: 15px;
  filter: invert(40%) sepia(77%) saturate(493%) hue-rotate(166deg) brightness(90%) contrast(86%);
}
.account-holder.platform .slot-scheduler-new .flex-controls.schedule .clear-schedule,
.personal-popup.schedule-grid .schedule-popup-body .clear-schedule,
.personal-popup.recruitment .clear-schedule {
  display: block;
  background: url(/imgs/vectors/cross-delete.svg) 00 no-repeat;
  width: 16px;
  height: 16px;
}
.personal-popup.schedule-grid .schedule-popup-body .clear-schedule {
  width: 12px;
  height: 12px;
}
.account-holder.platform .slot-scheduler-new .btn-blue {
  width: fit-content;
  margin: auto;
}
.account-holder.platform .slot-scheduler-new .controls-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.account-holder.platform .slot-scheduler-new .flex-controls .delete-instructor {
  position: absolute;
  right: -16px;
  top: 10px;
  width: 10px;
  height: 10px;
  background: url(/imgs/vectors/cross-delete.svg) 00 no-repeat;
  background-size: contain;
}
.personal-popup.schedule-grid .schedule-popup-body {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 16px 0;
}
.personal-popup.schedule-grid .schedule-popup-body.small {
  height: auto;
}
.personal-popup.schedule-grid .control {
  margin-bottom: 8px;
}
.personal-popup.schedule-grid .control label {
  font-size: 14px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.personal-popup.schedule-grid .grid-schedule.error .table-silvergrid-header-holder,
.personal-popup.schedule-grid .grid-schedule.error .table-silver > tbody > tr > td,
.personal-popup.schedule-grid .grid-schedule.error .table-silvergrid-header thead tr th {
  border-color: red;
}
.personal-popup.schedule-grid .grid-schedule .table-silver tbody tr:last-child td {
  line-height: 10px;
}
.account-holder.platform .slot-scheduler-new .flex-participants {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.account-holder.platform .slot-scheduler-new .flex-participants .organization {
  font-size: 13px;
  line-height: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.account-holder.platform .slot-scheduler-new .flex-participants .organization:nth-child(n + 1) {
  margin-top: 8px;
}
.account-holder.platform .slot-scheduler-new .flex-participants .organization.grey {
  color: #a6a4a4;
}
.account-holder.platform .slot-scheduler-new .flex-participants .participant {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  line-height: 16px;
}
.account-holder.platform .slot-scheduler-new .flex-participants .participant .info,
.account-holder.platform .slot-scheduler-new .flex-participants .participant .actions {
  gap: 8px;
  font-size: 12px;
  line-height: 1.1;
  flex-direction: row;
  width: fit-content;
}
.account-holder.platform .slot-scheduler-new .flex-participants .participant .pre-info {
  width: 100%;
}
.account-holder.platform .slot-scheduler-new .flex-participants .participant .actions .context-menu-container,
.account-holder.platform .slot-scheduler-new .flex-participants .participant .actions .context-menu-container .context-menu-toggler {
  width: 16px;
  height: 16px;
}
.account-holder.platform .slot-scheduler-new .flex-participants .participant .actions .context-menu-container .context-menu {
  top: 15px;
}
.account-holder.platform .slot-scheduler-new .flex-participants .participant .actions .context-menu-container .context-menu.up {
  top: unset;
  bottom: 0;
}
.account-holder.platform .slot-scheduler-new .flex-participants .participant .actions .await {
  display: block;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  background-size: contain !important;
  background: url(/imgs/vectors/clock-wait.svg) 00 no-repeat;
}
.account-holder.instructor .account-body .student-tile .student-tile-container .status::after,
.account-holder.platform .account-body .student-tile .student-tile-container .status::after {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  background-size: contain !important;
  
}
.account-holder.platform .slot-scheduler-new .flex-participants .participant .silver-checkbox label:before {
  width: 16px;
  height: 16px;
  margin: 0;
  top: 2px;
  background-size: 80% !important;
}
.account-holder.platform .slot-scheduler-new .flex-participants .participant .picture {
  display: block;
  background-size: contain !important;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.account-holder.platform .slot-scheduler-new .new-slot-container .create-activeSlot {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #5097f4;
  border-radius: 20px;
  border: none;
  color: #fff;
  transition: linear 0.2s;
  padding: 8px 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  cursor: pointer;
  gap: 8px;
}
.account-holder.platform .slot-scheduler-new .new-slot-container .create-activeSlot:hover {
  background: #8fbffe;
  color: #fff;
}
.account-holder.platform .slot-scheduler-new .new-slot-container .create-activeSlot::after {
  content: "+";
  display: block;
  flex: 0 0 auto;
  border-radius: 20px;
  background: #fff;
  color: #5097f4;
  width: 18px;
  height: 18px;
  text-align: center;
  font-size: 20px;
  line-height: 16px;
  transition: linear 0.2s;
}
.account-holder.platform .slot-scheduler-new .new-slot-container .create-activeSlot:hover::after {
  color: #8fbffe;
}
.account-holder.platform .slot-scheduler-new .new-slot-container .create-activeSlot.disabled {
  opacity: 0.5;
  cursor: default;
}
.account-holder.platform .slot-scheduler-new .new-slot-container .create-activeSlot.disabled:hover {
  background: #5097f4;
}
.account-holder.platform .slot-scheduler-new .new-slot-container .create-activeSlot.change::after {
  content: "";
  display: none;
}
.account-holder.platform .slot-scheduler-new .new-slot-container .remark {
  font-size: 10px;
  line-height: 12px;
  font-style: italic;
  color: #a5a5a5;
}
.account-holder.platform .slot-scheduler-new .reserv-pos div:not(.switcher),
.account-holder.platform .slot-scheduler-new .reserv-pos input {
  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;
  font-size: 12px;
  line-height: 14px;
  padding: 6px 16px;
  min-width: 50px;
  text-align: center;
}
.account-holder.platform .slot-scheduler-new .reserv-pos input {
  border-radius: 0;
  padding: 6px 4px;
  min-height: unset;
  width: 50px;
}
.personal-popup.recruitment .personal-popup-body {
  overflow: visible;
  padding-top: 0;
}
.personal-popup.recruitment .text {
  text-align: center;
  margin-bottom: 16px;
}
.personal-popup.recruitment .flex-row.fields {
  width: 100%;
  gap: 16px;
  margin-bottom: 24px;
}
.personal-popup.recruitment .flex-row.fields .field-container {
  min-width: unset;
  max-width: none;
  min-height: unset;
  width: 100%;
}
.personal-popup.recruitment .flex-row.fields.start {
  align-items: flex-start;
}
.personal-popup.recruitment .flex-row.fields .field-container.marker {
  display: flex;
  padding-top: 32px;
  align-self: center;
}
.personal-popup.recruitment .flex-row.fields .field-container.date {
  width: 25%;
}
.personal-popup.recruitment .silver-checkbox.checkbox-label label.imposter + span {
  font-size: 14px;
}
.personal-popup.recruitment .btn-blue {
  display: flex;
  margin: auto;
  width: fit-content;
}
.prof-token.silver-control.validate-error .error-message {
  position: absolute;
}
.silver-control.validate-error .silver-tokenbox {
  border: 1px solid red;
}
.personal-popup.recruitment .silver-control.validate-error .error-message {
  font-size: 14px;
}
.silver-control .eraser {
  position: absolute;
  display: none;
  right: 10px;
  top: 12px;
  background: url(/imgs/vectors/cross-delete.svg) 00 no-repeat;
  width: 13px;
  height: 13px;
  background-size: contain;
  cursor: pointer;
}
.silver-control.erase .eraser {
  display: block;
}
.personal-popup.recruitment .schedule .silver-textbox[readonly="readonly"] {
  opacity: 1;
  cursor: pointer;
}
.personal-popup.recruitment .tb-name {
  margin-bottom: 10px;
}

.account-holder.platform .gridPlatforms-holder {
  position: relative;
  height: 80vh;
}
.account-holder.platform .platform-content .tab-content-holder,
.account-holder.platform .platform-content .photo-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.account-holder.platform .platform-content .flex-controls {
  max-width: 500px;
}
.account-holder.platform .platform-content .flex-controls.bank {
  max-width: 833px;
}
.account-holder.platform .platform-content .flex-controls {
  max-width: 500px;
}
.account-holder.platform .platform-content .flex-controls.inline {
  flex-direction: row;
  gap: 12px;
}
.account-holder.platform .platform-content .flex-controls.inline .silver-control {
  width: 100%;
}
.account-holder.platform .platform-content .flex-controls-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 60px;
  margin-bottom: 16px;
}
.account-holder.platform .platform-content .flex-controls-container .controls-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
  width: 100%;
}
.account-holder.platform .platform-content .flex-controls-container .controls-column .control-title {
  min-width: 50px;
}
.account-holder.platform .platform-content .auc-textarea,
.account-holder.platform .student-textarea .auc-textarea {
  font-size: 16px;
  line-height: 20px;
  background: #e0edff;
  min-height: 170px;
  padding: 16px;
}
.account-holder.platform .platform-content .flex-controls-container .controls-column .auc-textarea {
  min-height: 125px;
}
.account-holder.platform .platform-content .auc-textarea::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #e2edff;
  border-radius: 10px;
}
.account-holder.platform .platform-content .auc-textarea::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #5097f4;
  border: 2px solid #e2edff;
}
.account-holder.platform .platform-content .auc-textarea::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 10%);
  background-color: #e2edff;
  border-radius: 5px;
}
.account-holder.platform .platform-content .flex-row.controls {
  max-width: 500px;
  gap: 20px;
}
.account-holder.platform .platform-content .controls-row {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: flex-start;
  gap: 20px;
}
.account-holder.platform .platform-content .controls-row .flex-controls:first-child {
  width: 100%;
}
.account-holder.platform .platform-content .photo-title {
  margin-top: 16px;
}
.account-holder.platform .platform-content .flex-controls .silver-uploader {
  position: relative;
}
.account-holder.platform .platform-content .flex-controls .silver-uploader .btn {
  font-size: 12px;
  line-height: 14px;
  padding: 8px 24px;
  margin-left: 12px;
  min-width: 130px;
}
.account-holder.platform .platform-content .flex-controls .silver-uploader table {
  width: 100%;
}
.account-holder.platform .platform-content .flex-controls .control-photo {
  background-size: contain !important;
  width: 300px;
  height: 150px;
}
.account-holder.platform .platform-content .flex-controls .auc-textarea.photo {
  min-height: 100px;
}
.account-holder.platform .platform-content .add-step,
.account-holder.platform .platform-content .delete-photo {
  font-size: 14px;
  line-height: 16px;
  text-decoration: underline;
  color: #556066;
  cursor: pointer;
  margin-top: 16px;
  width: fit-content;
}
.account-holder.platform .platform-content .tab-title {
  margin-bottom: 0px;
}
.account-holder.platform .platform-content .delete-photo {
  margin: 0;
}
.silver-uploader .clearButton {
  background: url(/imgs/vectors/cross-delete.svg) 00 no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 12px;
  right: 153px;
  cursor: pointer;
}
.account-holder.platform .platform-content .gridInstructors-container {
  position: relative;
  height: 50vh;
  
}
.account-holder.platform .gridInstructors-container .prof-grid .table-silver > tbody > tr > td .draft {
  color: #7e7e7e;
}
.account-holder.platform .gridInstructors-container .prof-grid .table-silver > tbody > tr > td .await,
.account-holder.platform .gridInstructors-container .prof-grid .table-silver > tbody > tr > td .active {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.account-holder.platform .gridInstructors-container .prof-grid .table-silver > tbody > tr > td .await {
  color: #f8b24a;
}
.account-holder.platform .gridInstructors-container .prof-grid .table-silver > tbody > tr > td .active {
  color: #24cc85;
}
.account-holder.platform .gridInstructors-container .prof-grid .table-silver > tbody > tr > td .await:before,
.account-holder.platform .gridInstructors-container .prof-grid .table-silver > tbody > tr > td .active:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-size: contain !important;
  background: url(/imgs/vectors/clock-approved.svg) 00 no-repeat;
}
.account-holder.platform .gridInstructors-container .prof-grid .table-silver > tbody > tr > td .await:before {
  background: url(/imgs/vectors/clock-wait.svg) 00 no-repeat;
}
.schedule-popup-body td.schedule-add {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: underline;
  cursor: pointer;
  margin-left: -1px;
  width: 150px;
}
.schedule-popup-body tr:nth-child(2) td.schedule-add {
  margin: 0;
}
.schedule-popup-body td.schedule-add::after {
  content: "";
  display: block;
  background: url(/imgs/vectors/plus-add.svg) 00 no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
  margin-left: 4px;
}
.schedule-grid .save-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}
.schedule-grid .save-options .silver-control {
  max-width: 300px;
  width: 100%;
}
.schedule-grid .save-options .error-text,
.schedule-grid .schedule-popup-body .error-text {
  display: none;
  color: red;
  font-size: 14px;
  line-height: 16px;
}
.schedule-grid .save-options .error-text.active,
.schedule-grid .schedule-popup-body .error-text.active {
  display: block;
  text-align: center;
}
.schedule-grid .schedule-popup-body .error-text.active {
  margin-top: 16px;
}
.schedule-grid .schedule-popup-body .control {
  margin: 0;
  margin-top: 16px;
  font-size: 14px;
}
.silver-checkbox.checkbox-label.disabled {
  opacity: 0.5;
}
.schedule-grid .save-options .silver-checkbox.checkbox-label label.imposter + span {
  width: fit-content;
  text-align: start;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #262b43;
  margin: 0;
}
.schedule-grid .save-options .silver-checkbox.checkbox-label label.imposter + span {
  user-select: none;
  display: flex;
  align-items: center;
}
.schedule-grid .save-options .silver-checkbox.checkbox-label label.imposter + span em {
  background: #d6e7f9 none repeat 0 0;
  color: Black;
  font-style: normal;
}
.schedule-grid .save-options .silver-checkbox label:before {
  content: "";
  background-image: none;
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid #3977c8;
  border-radius: 3px;
  cursor: pointer;
}
.schedule-grid .save-options .silver-checkbox input:checked + label:before {
  background: url(/imgs/vectors/checked-arrow-white.svg) 00 no-repeat;
  background-position: center center;
  background-color: #3977c8;
  background-size: 80%;
}
.schedule-grid .save-options > .flex-row.center {
  gap: 16px;
}

.prof-grid .table-silver > thead > tr > th,
.prof-grid .table-silver > tbody > tr > th,
.prof-grid .table-silver > tfoot > tr > th {
  font-weight: normal;
  padding: 3px 3px 5px;
  text-align: center;
  
  background: #fff;
  color: #3c3c3c;
  padding: 10px 6px;
  border: 1px solid #3977c8;
  font-size: 12px;
  line-height: 16px;
}
.prof-grid .table-silver > tbody > tr > td,
.table-silver > thead > tr > td,
.prof-grid .table-silver > tfoot > tr > td {
  padding: 10px 6px;
  border: 1px solid #3977c8;
  border-top: 1px solid #3977c8;
  vertical-align: middle;
}
.prof-grid .table-silver.td-white > tbody > tr > td {
  background: white;
}
.prof-grid .table-silver.td-center > tbody > tr > td {
  text-align: center;
}
.prof-grid .table-silver > tbody > tr > td.t-c,
.table-silver > thead > tr > td.t-c,
.table-silver > tfoot > tr > td.t-c {
  text-align: center;
}
.prof-grid .table-silver-hover > tbody > tr:hover > td,
.table-silver-hover > tbody > tr.selected > td {
  color: #3c3c3c;
  background: #f8f9ff;
  border-color: #3977c8;
  cursor: pointer;
}
.prof-grid .table-silver.table-silvergrid-body > tbody > tr:first-child > td,
.prof-grid .table-silvergrid-body > tbody > tr:first-child:hover > td {
  border-top: none !important;
}
.prof-grid {
  position: relative;
  width: 100%;
}
.prof-grid .detail-ico {
  background-image: url("https://demo.sroreestr.ru/SiteCMS/img/DXImages2.png");
  background-repeat: no-repeat;
  background-color: transparent;
  width: 13px;
  height: 13px;
  background-position: -42px -175px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: block;
  margin-top: 5px;
}
.prof-grid .detail-ico.show {
  background-position: -80px -159px;
}
.prof-grid .table-silvergrid-header,
.prof-grid .table-silvergrid-body,
.prof-grid .table-silvergrid-footer {
  margin-bottom: 0px;
}
.prof-grid .table-silvergrid-body {
  border-collapse: collapse;
  border-spacing: 0;
}
.prof-grid .overflow-t {
  width: 100%;
  height: 500px;
  overflow: scroll;
}
.prof-grid .table-silver td {
  font-size: 12px;
  line-height: 16px;
  color: #3c3c3c;
  text-align: center;
  background-color: white;
}
.prof-grid .table-silver td em {
  background: #e2ecf7 none repeat 0 0;
  color: Black;
  font-weight: bold;
  font-style: normal;
}
.prof-grid .table-silver tbody tr:nth-child(n + 3) td {
  border-top: none;
}
.prof-grid .table-silver tbody tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}
.prof-grid .table-silvergrid-body-overflow .table-silver tbody tr:last-child td:first-child,
.prof-grid .table-silvergrid-body-overflow .table-silver tbody tr:last-child td:last-child {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.prof-grid .table-silver > tbody > tr.hover:hover > td {
  color: #3c3c3c;
  background: #fcf8e5 url("https://demo.sroreestr.ru/img/custom/silver-line-hover.png") repeat-x left top;
  border: 1px solid #eecc53;
}
.prof-grid .table-silver > tbody > tr.hover.selected > td {
  color: #3c3c3c;
  background: #fcf8e5 url("https://demo.sroreestr.ru/img/custom/silver-line-hover.png") repeat-x left top;
  border: 1px solid #eecc53;
  
}
.prof-grid .table-silvergrid-header th.sortable {
  cursor: pointer;
}
.prof-grid .td-radio span {
  margin-left: 5px;
  position: relative;
  top: -2px;
  font-size: 13px;
}
.sort-indication {
  
  background-image: url(/SiteCMS/img/DXImages2.png);
  background-repeat: no-repeat;
  background-color: transparent;
  background-position: -87px -17px;
  width: 7px;
  height: 5px;
  display: inline-block;
  float: right;
  margin-top: 5px;
  position: absolute;
  right: 6px;
  
  margin-bottom: 5px;
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(208deg) brightness(141%) contrast(118%);
}
.sort-indication.sort-1 {
  background-position: -95px -17px;
}
#ChooseScheduleGrid.prof-grid .silver-grid-body {
  max-height: 400px;
  overflow: auto;
  overflow-x: hidden;
}
#ChooseScheduleGrid.prof-grid .silver-grid-body::-webkit-scrollbar {
  height: 8px;
  width: 8px;
  background-color: #c8e0ff;
  border-radius: 10px;
}
#ChooseScheduleGrid.prof-grid .silver-grid-body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #5097f4;
  border: 2px solid #c8e0ff;
}
#ChooseScheduleGrid.prof-grid .silver-grid-body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 10%);
  background-color: #f5f5f5;
  border-radius: 10px;
}
.prof-grid .table-silver tr,
.prof-grid .table-silver th,
.prof-grid .table-silver td {
  vertical-align: middle;
}
.prof-grid .td-posnum {
  width: 60px;
  text-align: center;
}
.prof-grid .td-name {
  text-align: center;
}
.prof-grid .td-prop {
  width: 200px;
  text-align: center;
}
.prof-grid th.last,
.prof-grid td.last {
  border-left: none;
  width: 4px;
}
.prof-grid.no-border .table-silvergrid-header-holder {
  width: 100%;
  
  border: 1px solid #3977c8;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom: 0;
}
.prof-grid.no-border .table-silvergrid-header-holder th:first-child {
  border-top-left-radius: 10px;
}
.prof-grid.no-border .table-silvergrid-header-holder th:first-child {
  border-left: none;
}
.prof-grid.no-border .table-silvergrid-header-holder th:last-child {
  border-top-right-radius: 10px;
}
.prof-grid.no-border .table-silvergrid-header-holder th:last-child {
  border-right: none;
}
.prof-grid .table-silvergrid-header-overflow > table > thead > tr > th {
  border-top: none !important;
  border-bottom: none !important;
  background: #fff;
}
.prof-grid .table-silvergrid-header-overflow {
  border: 1px solid #3977c8;
  border-top: none;
}
.prof-grid .table-silvergrid-header-overflow .filter-row > td {
  background: #e2edff;
  border-bottom: none;
  overflow: visible;
}
.prof-grid .table-silvergrid-header-overflow .filter-row > td:first-child {
  border-left: 0;
}
.prof-grid .table-silvergrid-header-overflow .filter-row > td .silver-textbox {
  background-color: #fdfdfd;
  padding: 4px 12px;
  min-height: 24px;
  font-size: 12px;
  line-height: 14px;
}
.prof-grid .table-silver tr td.error .silver-control input,
.schedule-grid .save-options.error .silver-control input {
  border: 1px solid red;
}
.prof-grid .table-silvergrid-header-overflow {
  overflow: hidden;
  
}
.prof-grid .table-silvergrid-header-overflow .table-silvergrid-header {
  table-layout: fixed;
}
.prof-grid.no-borderd .table-silvergrid-header-overflow {
  border-top: none;
}
.prof-grid.grid-attendance .table-silvergrid-header-overflow {
  border-bottom: 0;
}
.prof-grid.grid-attendance .table-silvergrid-header-overflow,
.prof-grid.grid-attendance .table-silver > tbody > tr > td {
  border-top: 1px solid #3977c8 !important;
}

.prof-grid .table-silvergrid-body-overflow {
  height: 400px;
  overflow: scroll;
  background-color: #e9edf1;
}
.prof-grid.no-border .table-silvergrid-body-overflow {
  border-left: 0;
}
.prof-grid .table-silvergrid-body-overflow {
  border-left: 1px solid #3977c8;
}
.prof-grid .table-silvergrid-body-overflow .table-silver {
  table-layout: fixed;
}
.prof-grid .table-silvergrid-body-overflow .prof-grid-body {
  table-layout: fixed;
}
.prof-grid .prof-grid tr.hiddenrow > td {
  height: 0;
  padding: 0;
  border: none;
}
.prof-grid .table-col-width td,
.prof-grid .table-col-width th {
  height: 0px;
  border: 0px !important;
  padding: 0px !important;
}
.prof-grid .table-silvergrid-header thead tr th {
  position: relative;
  border-top: 0;
  border-bottom: 0;
}
.prof-grid .table-silvergrid-header thead tr th table {
  border-collapse: collapse;
  width: 100%;
  margin: 0;
}
.prof-grid .table-silvergrid-header thead tr th table tbody tr td {
  background-color: transparent !important;
  border: none;
  padding: 0;
}
.prof-grid .table-silver th,
.prof-grid .table-silver tr td {
  overflow: hidden;
}
.prof-grid .table-silver th,
.prof-grid .table-silver tr td:not(:last-child) {
  border-right: none;
}
.prof-grid .table-silver tbody tr:last-child td:last-child {
  border-right: 1px solid #3977c8;
  border-bottom-right-radius: 10px;
}
.prof-grid .table-silver tbody tr:last-child td:last-child.td-carret {
  border: 0;
}
.prof-grid .resizer {
  cursor: e-resize;
  top: 0;
  position: absolute;
  background: transparent;
  height: 100%;
  right: 0;
  width: 2px;
}
.prof-grid .responsive {
  width: auto;
}
.prof-grid .table-silvergrid-body-overflow {
  width: 100%;
  height: 100px;
  overflow-y: scroll;
  
  border-top: none;
  border-bottom: none;
}
.prof-grid .table-silvergrid-body-overflow > table > tbody > tr > td {
  border-top: none !important;
}
.prof-grid .table-silvergrid-body-overflow > table > tbody > tr > td:first-child {
  border-left: none;
}
.prof-grid .table-silvergrid-body-overflow > table > tbody > tr > td:last-child,
.prof-grid .table-silvergrid-body-overflow .table-silver tbody tr:last-child td:first-child,
.prof-grid .table-silvergrid-body-overflow .table-silver tbody tr:last-child td:last-child {
  border-right: none;
}
.prof-grid .table-silvergrid-body-overflow > table > tbody > tr > td.empty-row{
  position: relative;
  &>div{
    top: 12px !important;
  }
}
.prof-grid .prof-grid-body > .table-silvergrid-body-simple {
  border: solid 1px #dbdee1;
  border-top: none;
  border-bottom: none;
}
.prof-grid .prof-grid -body > .table-silvergrid-body-simple > table > tbody > tr > td {
  border-top: none !important;
}
.prof-grid .prof-grid -body > .table-silvergrid-body-simple > table > tbody > tr > td:first-child {
  border-left: none;
}
.prof-grid .prof-grid -body > .table-silvergrid-body-simple > table > tbody > tr > td:last-child {
  border-right: none;
}
.prof-grid .loader-holder {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  user-select: none;
  display: none;
  background: #ffffff5f;
}
.prof-grid .loader-holder .loader-block {
  font-weight: bold;
  z-index: 30000;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
}
.prof-grid .loader-holder .loader-block span {
  margin-left: 5px;
}
.prof-grid .grid-row-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 5px 0;
}
.prof-grid .grid-row-flex > span {
  margin-left: 10px;
  font-size: 12px;
}
.prof-grid .table-silver-hover > tbody > tr.group-header > td {
  padding: 5px;
  border: solid 1px #dbdee1;
  border-left: none;
  border-right: none;
}
.prof-grid .table-silver-hover > tbody > tr.group-header:hover > td {
  background: transparent;
  border: solid 1px #dbdee1;
  padding: 5px;
  border-left: none;
  border-right: none;
}
.prof-grid .table-silver > tbody > tr > td.group-td {
  border-bottom: none;
  border-top: none;
  background: #fff !important;
}
.prof-grid .SilverHeader > .title-table > tbody > tr > td {
  padding: 0px 2px;
  text-align: center;
}
.prof-grid .gb-td-combo > img ~ span {
  margin-left: 5px;
}
.prof-grid .SilverHeader {
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  color: #3977c8;
  margin-bottom: 22px;
}
.prof-grid.grid-org .SilverHeader {
  background: #3977c8;
  margin-bottom: 0;
  padding: 6px 6px 16px 6px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border: 1px solid #3977c8 !important;
  border-bottom-color: #afc5ef !important;
}
.prof-grid.grid-org.no-border .SilverHeader {
  border: none !important;
  border-bottom: 1px solid #3977c8 !important;
}

.prof-grid:not(.grid-exam) .table-silvergrid-header-holder th:first-child {
  border-left: 0;
}


.prof-grid:not(.grid-exam) .table-silvergrid-header-holder th:last-child {
  border-right: 0;
}
.prof-grid .table-silvergrid-header-overflow {
  background: #3977c8;
  
}
.prof-grid .table-silvergrid-header-overflow.patch {
  position: relative;
}
.prof-grid .table-silvergrid-header-overflow.patch::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 0;
  width: 8px;
  height: 0.5px;
  background: #3977c8;
  
}
.prof-grid.grid-org .SilverHeader .btn {
  display: inline-block;
  padding: 6px 10px;
  gap: 0.75px;
  background: white;
  border-radius: 80px;
  text-align: center;
  font-weight: 500;
  color: #4a7cdb;
  font-family: Inter;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: none;
}
.prof-grid.grid-org .SilverHeader .btn:hover {
  box-shadow: 0px 4px 4px rgb(33 74 130 / 17%);
}
.prof-grid.grid-org .table-silver > thead > tr > th,
.prof-grid.grid-org .table-silver td {
  border-color: #3977c8;
}
.prof-grid.grid-org .table-silver > thead > tr > th {
  border-color: #afc5ef;
}
.prof-grid.grid-org.no-border .table-silvergrid-header-holder {
  border: none;
}
.prof-grid.grid-org.no-border .table-silver td:last-child,
.prof-grid.grid-org.no-border .table-silver tbody tr:last-child td:last-child {
  border-right: none;
}
.prof-grid.grid-org.no-border .table-silver td:first-child {
  border-left: none;
}
.prof-grid.grid-org.no-border .table-silver tbody tr:last-child td {
  border-bottom: 0;
}
.prof-grid.grid-org .table-silver > thead > tr > th {
  background: #3977c8;
  font-weight: 500;
  font-size: 13px;
  color: #fff;
}
.prof-grid.grid-org:not(.grid-documents) .table-silver > tbody > tr > td {
  padding: 20px 6px;
  line-height: 16px;
}
.prof-grid.grid-org .table-silver > tbody > tr > td a {
  color: inherit;
  text-decoration: underline;
}
.prof-grid.grid-org .table-silver > tbody > tr > td a:not(.btn-blue):hover {
  color: #5097f4;
}
.prof-grid.grid-org .table-silver > tbody > tr > td .btn-blue {
  text-decoration: none;
  color: #fff;
  padding: 6px 10px;
  font-size: 12px;
}
.prof-grid.grid-org .table-silver td .employee-fio {
  color: inherit;
  text-decoration: underline;
}
.prof-grid.grid-org .table-silver > tbody > tr > td .grid-status::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 19px;
  height: 19px;
  background-size: contain !important;
  margin-right: 8px;
  flex: 0 0 auto;
  vertical-align: middle;
}
.prof-grid.grid-org .table-silver > tbody > tr > td .grid-status.created::before,
.account-holder.organization .account-body .content-container .employee-info .text .status.created::before {
  background: url(/imgs/vectors/clock-wait-gray.svg) 00 no-repeat;
}
.prof-grid.grid-org .table-silver > tbody > tr > td .grid-status.approving::before,
.account-holder.organization .account-body .content-container .employee-info .text .status.approving::before {
  background: url(/imgs/vectors/clock-wait.svg) 00 no-repeat;
}
.prof-grid.grid-org .table-silver > tbody > tr > td .grid-status.approved::before,
.account-holder.organization .account-body .content-container .employee-info .text .status.approved::before {
  background: url(/imgs/vectors/clock-approved.svg) 00 no-repeat;
}
.prof-grid.grid-org .table-silver > tbody > tr > td .grid-status.declined::before,
.account-holder.organization .account-body .content-container .employee-info .text .status.declined::before {
  background: url(/imgs/vectors/clock-error.svg) 00 no-repeat;
}
.prof-grid.grid-org .table-silver > tbody > tr > td .grid-link {
  text-decoration: underline;
}
.prof-grid.grid-org .table-silver > tbody > tr > td .grid-link:hover {
  color: #5097f4;
}
.prof-grid.grid-org .table-silver > tbody > tr > td .prof-grid-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.prof-grid.grid-org .table-silver > tbody > tr > td .prof-grid-inner-row {
  min-height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.prof-grid.grid-org .table-silver > tbody > tr > td .prof-grid-inner-row.red .strip {
  background: #e84444;
}
.prof-grid.grid-org .table-silver > tbody > tr > td .prof-grid-inner-row.green .strip {
  background: #24cc85;
}
.prof-grid.grid-org .table-silver > tbody > tr > td .prof-grid-inner-row .attempt {
  gap: 8px;
  justify-content: center;
}
.prof-grid.grid-org .table-silver > tbody > tr > td .prof-grid-inner-row .attempt .retry {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50px;
  background: #5097f4;
  cursor: pointer;
}
.prof-grid.grid-org .table-silver > tbody > tr > td .prof-grid-inner-row .attempt .retry::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url(/imgs/vectors/retry.svg) 00 no-repeat;
  background-size: contain;
}
.prof-grid.grid-org .silver-checkbox input:disabled + label:before {
  content: "";
  background-image: none;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #3977c8;
  border-radius: 3px;
  cursor: pointer;
  opacity: 0.7;
}
.prof-grid.grid-org .silver-checkbox input:checked:disabled + label:before {
  background: url(/imgs/vectors/checked-arrow-white.svg) 00 no-repeat;
  background-position: center center;
  background-color: #3977c8;
}
.progressBar {
  position: relative;
  width: 100%;
  height: 3px;
}
.account-holder.organization .account-body .content-container .employee-info {
  gap: 24px;
  margin-bottom: 24px;
}
.account-holder.organization .account-body .content-container .employee-info .avatar,
.account-holder.platform .account-body .content-container .student-info .avatar,
.account-holder.manager .account-body .content-container .student-info .avatar {
  background-size: contain !important;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.account-holder.organization .account-body .content-container .employee-info .text,
.account-holder.platform .account-body .content-container .student-info .text,
.account-holder.manager .account-body .content-container .student-info .text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 16px;
  line-height: 20px;
}
.account-holder.organization .account-body .content-container .employee-info .text > div:first-child,
.account-holder.platform .account-body .content-container .student-info .text > div:first-child,
.account-holder.manager .account-body .content-container .student-info .text > div:first-child {
  font-weight: 600;
}
.account-holder.manager .account-body .content-container .student-info .text > div:first-child::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-size: contain !important;
}
.account-holder.manager .account-body .content-container .student-info .text > div.offline::after {
  background: url(/img/off.png) 00 no-repeat;
}
.account-holder.manager .account-body .content-container .student-info .text > div.online::after {
  background: url(/img/on.png) 00 no-repeat;
}
.account-holder.organization .account-body .content-container .employee-info .text a,
.account-holder.platform .account-body .content-container .student-info .text a,
.account-holder.manager .account-body .content-container .student-info .text a {
  font-size: 14px;
  line-height: 18px;
  color: inherit;
  text-decoration: underline;
}
.account-holder.manager .account-body .content-container .student-info .text .externalAuth {
  font-size: 14px;
  line-height: 18px;
}
.account-holder.organization .account-body .content-container .employee-info .text a:hover,
.account-holder.platform .account-body .content-container .student-info .text a:hover,
.account-holder.manager .account-body .content-container .student-info .text a:hover {
  color: #5097f4;
}
.account-holder.organization .account-body .content-container .employee-info .text .flex-row,
.account-holder.platform .account-body .content-container .student-info .text .flex-row,
.account-holder.manager .account-body .content-container .student-info .text .flex-row {
  gap: 8px;
  flex-wrap: wrap;
}
.account-holder.organization .account-body .content-container .employee-info .text .status {
  font-size: 14px;
  line-height: 18px;
}
.account-holder.organization .account-body .content-container .employee-info .text .status::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 19px;
  height: 19px;
  background-size: contain !important;
  margin-right: 8px;
  flex: 0 0 auto;
}
.prof-rotate {
  width: 100%;
  height: 100%;
}
.prof-rotate > .rotate-menu {
  width: fit-content;
}
.prof-rotate > .rotate-menu > ul {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.prof-rotate > .rotate-menu > ul > li {
  cursor: pointer;
  padding: 0 16px;
  text-align: center;
  color: #337ab7;
  width: 200px;
}
.prof-rotate > .rotate-menu.doc-manager > ul > li {
  width: 250px;
}
.prof-rotate > .rotate-menu > ul > li.active,
.prof-rotate > .rotate-menu > ul > li:hover {
  color: #5097f4;
}
.prof-rotate > .rotate-content {
  position: relative;
  height: 100%;
  overflow: auto;
  width: 100%;
  padding-top: 16px;
}
.prof-rotate > .rotate-content > .tab {
  display: none;
}
.prof-rotate > .rotate-content > .tab.active {
  display: block;
  overflow: hidden;
  position: relative;
  height: 100%;
}
.prof-rotate > .rotate-menu .scale {
  position: relative;
  background: #e2edff;
  border-radius: 50px;
  height: 6px;
  width: 100%;
  margin-top: 12px;
}
.prof-rotate > .rotate-menu .strip {
  position: absolute;
  left: 0;
  height: 100%;
  width: 33%;
  background: #5097f4;
  border-radius: 50px;
  transition: linear 0.2s;
}

.account-holder.manager .account-body .content-container .check-mainHolder {
  position: relative;
  overflow: auto;
  height: calc(100vh - 302px);
}
.account-holder.manager .account-body .content-container .check-holder .check-container .gridCheck-container {
  overflow: auto;
  height: calc(100% - 325px);
}
.account-holder.manager .account-body .content-container .check-holder .check-container {
  height: 100%;
}
.account-holder.organization .account-body .content-container .check-holder,
.account-holder.manager .account-body .content-container .check-holder {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 10px;
}
.account-holder.organization .account-body .content-container .check-holder .check-container,
.account-holder.manager .account-body .content-container .check-holder .check-container {
  position: relative;
  padding: 24px;
}
.account-holder.organization .account-body .content-container .check-holder .check-container .check-name,
.account-holder.manager .account-body .content-container .check-holder .check-container .check-name {
  position: relative;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
}
.account-holder.organization .account-body .content-container .check-holder .check-container .check-name::after,
.account-holder.manager .account-body .content-container .check-holder .check-container .check-name::after {
  content: "";
  display: block;
  margin-top: 16px;
  margin-bottom: 16px;
  width: 100%;
  height: 1px;
  background: #6c788a;
}
.account-holder.organization .account-body .content-container .check-holder .check-container .check-btns,
.account-holder.manager .account-body .content-container .check-holder .check-container .check-btns {
  gap: 16px;
}
.account-holder.organization .account-body .content-container .check-holder .check-container .check-btns .btn-blue.load,
.account-holder.manager .account-body .content-container .check-holder .check-container .check-btns .btn-blue.load {
  display: flex;
  gap: 8px;
}
.account-holder.organization .account-body .content-container .check-holder .check-container .check-btns .btn-blue.load::after,
.account-holder.manager .account-body .content-container .check-holder .check-container .check-btns .btn-blue.load::after {
  content: "";
  display: block;
  background: url(/imgs/vectors/download-white.svg) 00 no-repeat;
  background-size: contain;
  width: 17px;
  height: 15px;
}
.account-holder.organization .account-body .content-container .check-holder .check-container .check-description,
.account-holder.manager .account-body .content-container .check-holder .check-container .check-description {
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 18px;
}
.account-holder.organization .account-body .content-container .check-holder .check-container .check-description span,
.account-holder.manager .account-body .content-container .check-holder .check-container .check-description span {
  font-weight: 600;
}
.account-holder.organization .account-body .content-container .check-holder .check-container .check-description div,
.account-holder.manager .account-body .content-container .check-holder .check-container .check-description div {
  display: inline-block;
}
.account-holder.organization .account-body .content-container .check-holder .check-container .check-description .payTill,
.account-holder.manager .account-body .content-container .check-holder .check-container .check-description .payTill {
  display: block;
  margin-top: 8px;
}
.account-holder.organization .account-body .content-container .check-holder .check-container .gridCheck-container,
.account-holder.manager .account-body .content-container .check-holder .check-container .gridCheck-container {
  margin-bottom: 24px;
}
.account-holder.organization .account-body .content-container .check-holder .check-container .check-controls,
.account-holder.manager .account-body .content-container .check-holder .check-container .check-controls {
  position: relative;
  width: 100%;
  gap: 32px;
}
.account-holder.organization .account-body .content-container .check-holder .check-container .check-controls .remark,
.account-holder.manager .account-body .content-container .check-holder .check-container .check-controls .remark {
  position: relative;
  width: 100%;
}
.account-holder.organization .account-body .content-container .check-holder .check-container .check-controls .remark span,
.account-holder.manager .account-body .content-container .check-holder .check-container .check-controls .remark span {
  display: flex;
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
}
.account-holder.organization .account-body .content-container .check-holder .check-container .check-controls .remark textarea,
.account-holder.manager .account-body .content-container .check-holder .check-container .check-controls .remark textarea {
  width: 100%;
  display: block;
  background: #fff;
  width: 100%;
  padding: 8px 16px;
  border: 1px solid #e2e8f6;
  border-radius: 10px;
  resize: none;
  font-size: 14px;
  line-height: 18px;
}
.account-holder.organization .account-body .content-container .check-holder .check-controls .remark textarea.disabled,
.account-holder.manager .account-body .content-container .check-holder .check-controls .remark textarea.disabled {
  background: #f3f3f3;
  color: #a5a5a5;
  cursor: not-allowed;
}
.account-holder.organization .account-body .content-container .check-holder .check-controls .check-right-controls,
.account-holder.manager .account-body .content-container .check-holder .check-controls .check-right-controls {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
.account-holder.organization .content-container .check-holder .check-controls .check-right-controls .right-control,
.account-holder.manager .content-container .check-holder .check-controls .check-right-controls .right-control {
  gap: 8px;
  font-size: 14px;
  line-height: 18px;
}
.account-holder.organization .content-container .check-holder .check-controls .check-right-controls .right-control .silver-control input,
.account-holder.manager .content-container .check-holder .check-controls .check-right-controls .right-control .silver-control input {
  font-size: 14px;
  line-height: 18px;
  text-align: end;
}
.account-holder.organization .content-container .check-holder .check-controls .check-right-controls .right-control span,
.account-holder.manager .content-container .check-holder .check-controls .check-right-controls .right-control span {
  white-space: pre;
}
.account-holder.organization .account-body .content-container .check-holder .check-container .check-name .name-items,
.account-holder.manager .account-body .content-container .check-holder .check-container .check-name .name-items {
  gap: 8px;
}
.account-holder.organization .account-body .content-container .check-holder .check-container .check-name .name-items .status,
.account-holder.manager .account-body .content-container .check-holder .check-container .check-name .name-items .status {
  display: none;
  width: 19px;
  height: 19px;
  background: url(/imgs/vectors/clock-approved.svg) 00 no-repeat;
  background-size: contain !important;
  margin-right: 8px;
  flex: 0 0 auto;
}
.account-holder.organization .account-body .content-container .check-holder .check-container .check-name .name-items .status.paid,
.account-holder.manager .account-body .content-container .check-holder .check-container .check-name .name-items .status.paid {
  display: block;
}
.account-holder.organization .account-body .content-container .check-holder .check-container .check-name .name-items .status.wait,
.account-holder.manager .account-body .content-container .check-holder .check-container .check-name .name-items .status.wait {
  display: block;
  background: url(/imgs/vectors/clock-wait.svg) 00 no-repeat;
}
.personal-popup.payment-order .personal-popup-body {
  padding: 0;
}
.personal-popup.payment-order .document {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
}
.personal-popup.payment-order .document .error {
  display: none;
  color: red;
  align-self: center;
}
.personal-popup.payment-order .document .error.active {
  display: block;
}
.personal-popup.payment-order .document .btn-blue {
  align-self: center;
  width: fit-content;
  margin-bottom: 8px;
}
.personal-popup.retry .personal-popup-body {
  padding: 0;
  text-align: center;
}
.personal-popup.retry .personal-popup-body div {
  font-size: 15px;
  line-height: 24px;
}
.personal-popup.retry .personal-popup-body div:first-child {
  font-weight: 600;
}
.personal-popup.retry .personal-popup-body div:not(:last-child) {
  margin-bottom: 16px;
}
.account-holder.organization .account-body .content-container .prof-grid .doc:hover .name {
  color: #5097f4;
}

.account-holder.instructor .account-body .group-tile,
.account-holder.platform .account-body .group-tile,
.account-holder.manager .account-body .group-tile,
.account-holder.instructor .account-body .student-tile,
.account-holder.platform .account-body .student-tile,
.account-holder.platform .program-card .spec-tile,
.account-holder.manager .account-body .student-tile {
  position: relative;
  width: 100%;
  box-shadow: 4px 4px 8px 0px rgba(113, 113, 113, 0.25);
  backdrop-filter: blur(4px);
  border-radius: 4px;
  background: #fff;
  margin-bottom: 16px;
}

.account-holder.platform .account-body .schedule-list-content .group-tile,
.account-holder.platform .program-card .spec-tile {
  margin: 0;
}
.account-holder.instructor .account-body .schedule-list-content {
}
.account-holder.instructor .account-body .student-tile,
.account-holder.manager .account-body .student-tile,
.account-holder.platform .account-body .student-tile {
  margin-bottom: 10px;
}
.account-holder.instructor .account-body .group-cot.opened .cot-content > .exam-doc,
.account-holder.platform .account-body .group-cot.opened .cot-content > .exam-doc {
  position: relative;
  display: flex;
  justify-content: flex-end;
  height: 100%;
}
.account-holder.instructor .account-body .cot-content > .student-tile.noData,
.account-holder.platform .account-body .cot-content > .student-tile.noData {
  padding: 16px;
}
.account-holder.instructor .account-body .student-tile.noData::before,
.account-holder.platform .account-body .student-tile.noData::before {
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  vertical-align: text-top;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  background: url(/imgs/vectors/clock-error-yellow.svg) 00 no-repeat;
  background-size: contain !important;
}
.account-holder.instructor .account-body .group-tile.point,
.account-holder.platform .account-body .group-tile.point {
  cursor: pointer;
  transition: all 0.2s;
}
.account-holder.instructor .account-body .student-tile .student-tile-container,
.account-holder.manager .account-body .student-tile .student-tile-container,
.account-holder.platform .account-body .student-tile .student-tile-container,
.account-holder.platform .program-card .spec-tile .spec-container {
  position: relative;
  padding: 16px;
}
.account-holder.instructor .account-body .student-tile .student-tile-container > .flex-row,
.account-holder.manager .account-body .student-tile .student-tile-container > .flex-row,
.account-holder.manager .account-body .student-tile .student-tile-container > .flex-row > .flex-row,
.account-holder.platform .account-body .student-tile .student-tile-container > .flex-row {
  gap: 8px;
  cursor: pointer;
}
.account-holder.manager .account-body .student-tile .student-tile-container .date {
  font-size: 10px;
  font-weight: 400;
  line-height: 12px;
  color: #6c788a;
}
.account-holder.instructor .account-body .student-tile .student-tile-container .status,
.account-holder.platform .account-body .student-tile .student-tile-container .status {
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 8px;
}
.account-holder.instructor .account-body .student-tile .student-tile-container .status:has(.diary-0, .diary-1, .diary-2)::before,
.account-holder.platform .account-body .student-tile .student-tile-container .status:has(.diary-0, .diary-1, .diary-2)::before {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  background-size: contain !important;
}

.account-holder.instructor .account-body .student-tile .student-tile-container .status span,
.account-holder.platform .account-body .student-tile .student-tile-container .status span {
  font-size: 11px;
  line-height: 11px;
  color: #556066;
  text-align: start;
}
.account-holder.instructor .account-body .student-tile .student-tile-container .status::after,
.account-holder.platform .account-body .student-tile .student-tile-container .status::after {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  background-size: contain !important;
  
}
.account-holder.instructor .account-body .student-tile .student-tile-container .status.await::after,
.account-holder.platform .account-body .student-tile .student-tile-container .status.await::after {
  background: url(/imgs/vectors/clock-wait.svg) 00 no-repeat;
  filter: invert(50%) sepia(3%) saturate(1608%) hue-rotate(180deg) brightness(132%) contrast(107%);
}
.account-holder.instructor .account-body .student-tile .student-tile-container .status.passed::after,
.account-holder.platform .account-body .student-tile .student-tile-container .status.passed::after {
  background: url(/imgs/vectors/clock-approved.svg) 00 no-repeat;
}
.account-holder.instructor .account-body .student-tile .student-tile-container .status.failed::after,
.account-holder.platform .account-body .student-tile .student-tile-container .status.failed::after {
  background: url(/imgs/vectors/clock-error.svg) 00 no-repeat;
}

.personal-popup.confirm .flex-column {
  position: relative;
  align-items: flex-start;
  gap: 16px;
  height: 100%;
}
.personal-popup.confirm .flex-column > div:not(.btn-blue) {
  width: 100%;
}
.personal-popup.confirm .flex-column .silver-uploader {
  width: 100%;
}
.personal-popup.confirm .flex-column .btn-blue {
  align-self: center;
}
.account-holder.instructor .account-body .group-tile.point:hover,
.account-holder.platform .account-body .group-tile.point:hover {
  box-shadow: 4px 4px 20px 0px rgba(113, 113, 113, 0.25);
}
.account-holder.instructor .account-body .group-tile .group-tile-container,
.account-holder.manager .account-body .group-tile .group-tile-container,
.account-holder.platform .account-body .group-tile .group-tile-container {
  padding: 16px;
}
.account-holder.instructor .account-body .group-tile .group-tile-container .group-info,
.account-holder.manager .account-body .group-tile .group-tile-container .group-info,
.account-holder.platform .account-body .group-tile .group-tile-container .group-info {
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.account-holder.instructor .account-body .group-tile .group-tile-container .group-info .group-tile-block,
.account-holder.manager .account-body .group-tile .group-tile-container .group-info .group-tile-block,
.account-holder.platform .account-body .group-tile .group-tile-container .group-info .group-tile-block {
  flex-wrap: wrap;
  gap: 16px 48px;
}
.account-holder.instructor .account-body .group-tile .group-tile-container .group-info .group-tile-block:last-child,
.account-holder.manager .account-body .group-tile .group-tile-container .group-info .group-tile-block:last-child,
.account-holder.platform .account-body .group-tile .group-tile-container .group-info .group-tile-block:last-child {
  justify-content: flex-end;
}
.account-holder.instructor .account-body .group-tile .group-tile-container .group-info .group-tile-block.spec,
.account-holder.manager .account-body .group-tile .group-tile-container .group-info .group-tile-block.spec,
.account-holder.platform .account-body .group-tile .group-tile-container .group-info .group-tile-block.spec {
  justify-content: flex-end;
}
.account-holder.instructor .account-body .group-tile .group-tile-container .group-info .group-tile-block .flex-col.small,
.account-holder.manager .account-body .group-tile .group-tile-container .group-info .group-tile-block .flex-col.small,
.account-holder.platform .account-body .group-tile .group-tile-container .group-info .group-tile-block .flex-col.small {
  min-width: 180px;
}
.account-holder.instructor .account-body .group-tile .group-tile-container .group-info .flex-col,
.account-holder.manager .account-body .group-tile .group-tile-container .group-info .flex-col,
.account-holder.platform .account-body .group-tile .group-tile-container .group-info .flex-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.account-holder.instructor .account-body .group-tile .group-tile-container .group-info .flex-col.start,
.account-holder.manager .account-body .group-tile .group-tile-container .group-info .flex-col.start,
.account-holder.platform .account-body .group-tile .group-tile-container .group-info .flex-col.start {
  align-self: flex-start;
  min-width: 123px;
}
.account-holder.instructor .account-body .group-tile .group-tile-container .group-info .flex-col .big,
.account-holder.manager .account-body .group-tile .group-tile-container .group-info .flex-col .big,
.account-holder.platform .account-body .group-tile .group-tile-container .group-info .flex-col .big {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.account-holder.instructor .account-body .group-tile .group-tile-container .group-info .flex-col.small,
.account-holder.manager .account-body .group-tile .group-tile-container .group-info .flex-col.small,
.account-holder.platform .account-body .group-tile .group-tile-container .group-info .flex-col.small {
  font-size: 12px;
  line-height: 16px;
}
.account-holder.instructor .account-body .group-tile .group-tile-container .group-info .flex-col .number,
.account-holder.manager .account-body .group-tile .group-tile-container .group-info .flex-col .number,
.account-holder.platform .account-body .group-tile .group-tile-container .group-info .flex-col .number {
  font-weight: 600;
}
.account-holder.instructor .account-body .group-tile .group-tile-container .group-info .flex-col .corp,
.account-holder.manager .account-body .group-tile .group-tile-container .group-info .flex-col .corp,
.account-holder.platform .account-body .group-tile .group-tile-container .group-info .flex-col .corp {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #2f80ed;
}
.account-holder.instructor .account-body .group-tile .group-tile-container .group-info .flex-col .corp::before,
.account-holder.manager .account-body .group-tile .group-tile-container .group-info .flex-col .corp::before,
.account-holder.platform .account-body .group-tile .group-tile-container .group-info .flex-col .corp::before {
  content: "";
  display: block;
  width: 15px;
  height: 12px;
  background: url(/imgs/vectors/corp.svg) 0 0 no-repeat;
  background-size: contain !important;
}
.account-holder.instructor .account-body .group-tile .group-tile-container .group-info .flex-col.status,
.account-holder.manager .account-body .group-tile .group-tile-container .group-info .flex-col.status,
.account-holder.platform .account-body .group-tile .group-tile-container .group-info .flex-col.status {
  align-self: center;
}
.account-holder.instructor .account-body .group-tile .group-tile-container .group-info .flex-col.status div,
.account-holder.manager .account-body .group-tile .group-tile-container .group-info .flex-col.status div,
.account-holder.platform .account-body .group-tile .group-tile-container .group-info .flex-col.status div {
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 12px;
  min-width: 110px;
  justify-content: flex-end;
}
.account-holder.instructor .account-body .group-tile .group-tile-container .group-info .flex-col.status div:after,
.account-holder.manager .account-body .group-tile .group-tile-container .group-info .flex-col.status div:after,
.account-holder.platform .account-body .group-tile .group-tile-container .group-info .flex-col.status div:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-size: contain !important;
  margin-left: 8px;
  flex: 0 0 auto;
}
.account-holder.instructor .account-body .group-tile .group-tile-container .group-info .flex-col.status div.empty::after,
.account-holder.manager .account-body .group-tile .group-tile-container .group-info .flex-col.status div.empty::after,
.account-holder.platform .account-body .group-tile .group-tile-container .group-info .flex-col.status div.empty::after {
  display: none;
}
.account-holder.instructor .account-body .group-tile .group-tile-container .group-info .flex-col.status div.approved::after,
.account-holder.manager .account-body .group-tile .group-tile-container .group-info .flex-col.status div.diaryStatus-2::after,
.account-holder.manager .account-body .group-tile .group-tile-container .group-info .flex-col.status div.diaryStatus-3::after,
.account-holder.platform .account-body .group-tile .group-tile-container .group-info .flex-col.status div.approved::after {
  background: url(/imgs/vectors/clock-approved.svg) 0 0 no-repeat;
}
.account-holder.instructor .account-body .group-tile .group-tile-container .group-info .flex-col.status div.canceled::after,
.account-holder.platform .account-body .group-tile .group-tile-container .group-info .flex-col.status div.canceled::after {
  background: url(/imgs/vectors/clock-error.svg) 0 0 no-repeat;
}
.account-holder.instructor .account-body .group-tile .group-tile-container .group-info .flex-col.status div.inProcess::after,
.account-holder.manager .account-body .group-tile .group-tile-container .group-info .flex-col.status div.diaryStatus-1::after,
.account-holder.platform .account-body .group-tile .group-tile-container .group-info .flex-col.status div.inProcess::after {
  background: url(/imgs/vectors/clock-wait.svg) 0 0 no-repeat;
}
.account-holder.instructor .account-body .group-tile .group-tile-container .group-info .flex-col.program-name,
.account-holder.manager .account-body .group-tile .group-tile-container .group-info .flex-col.program-name,
.account-holder.platform .account-body .group-tile .group-tile-container .group-info .flex-col.program-name {
  max-width: 45%;
}
.account-holder.instructor .account-body .group-tile .group-tile-container .group-info .menu,
.account-holder.platform .account-body .group-tile .group-tile-container .group-info .menu {
  position: absolute;
  top: 4px;
  right: 5px;
}
.account-holder.instructor .account-body .group-cot-container,
.account-holder.manager .account-body .group-cot-container,
.account-holder.platform .account-body .group-cot-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.account-holder.instructor .account-body .group-cot,
.account-holder.manager .account-body .group-cot,
.account-holder.platform .account-body .group-cot {
  position: relative;
  width: 100%;
}
.account-holder.instructor .account-body .group-cot .title-toggler,
.account-holder.manager .account-body .group-cot .title-toggler,
.account-holder.manager .account-body .student-tile .title-toggler,
.account-holder.platform .account-body .group-cot .title-toggler,
.account-holder.platform .program-card .spec-tile .title-toggler {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  cursor: pointer;
  width: fit-content;
  user-select: none;
}
.account-holder.instructor .account-body .group-cot .title-toggler::before,
.account-holder.manager .account-body .group-cot .title-toggler::before,
.account-holder.manager .account-body .student-tile .title-toggler::before,
.account-holder.platform .account-body .group-cot .title-toggler::before,
.account-holder.platform .program-card .spec-tile .title-toggler::before {
  content: "";
  position: relative;
  display: block;
  align-self: center;
  background: url(/imgs/vectors/chevron-down.svg) 00 no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  transition: 0.2s linear;
  flex: 0 0 auto;
  filter: invert(0%) sepia(13%) saturate(26%) hue-rotate(137deg) brightness(87%) contrast(100%);
}
.account-holder.instructor .account-body .group-cot.opened > .title-toggler::before,
.account-holder.manager .account-body .group-cot.opened > .title-toggler::before,
.account-holder.manager .account-body .student-tile-container.opened .title-toggler::before,
.account-holder.platform .account-body .group-cot.opened > .title-toggler::before,
.account-holder.manager .account-body .student-tile-container.opened .title-toggler::before,
.account-holder.instructor .account-body .student-tile-container.opened .title-toggler::before,
.account-holder.platform .account-body .student-tile-container.opened .title-toggler::before,
.account-holder.platform .program-card .spec-tile .spec-container.opened .title-toggler::before {
  transform: rotate(180deg);
}
.account-holder.instructor .account-body .group-cot .cot-content,
.account-holder.manager .account-body .group-cot .cot-content,
.account-holder.platform .account-body .group-cot .cot-content,
.account-holder.instructor .account-body .student-tile-container .student-exam-content,
.account-holder.manager .account-body .student-tile-container .student-exam-content,
.account-holder.platform .account-body .student-tile-container .student-exam-content,
.account-holder.platform .program-card .spec-tile .spec-container .spec-content {
  position: relative;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  height: 1px;
  transition: 0.2s;
  -webkit-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);
  text-align: center;
  text-align: end;
  padding-left: 24px;
}
.account-holder.instructor .account-body .student-tile-container .student-exam-content,
.account-holder.manager .account-body .student-tile-container .student-exam-content,
.account-holder.platform .acco .personal-popup .personal-popup-contentunt-body .student-tile-container .student-exam-content {
  padding-left: 0;
}
.account-holder.instructor .account-body .group-cot.opened .cot-content > div,
.account-holder.platform .account-body .group-cot.opened .cot-content > div {
  position: relative;
  height: 100%;
  text-align: center;
}
.account-holder.instructor .account-body .group-cot.opened .cot-content,
.account-holder.platform .account-body .group-cot.opened .cot-content,
.account-holder.manager .account-body .group-cot.opened .cot-content,
.account-holder.instructor .account-body .student-tile-container.opened .student-exam-content,
.account-holder.manager .account-body .student-tile-container.opened .student-exam-content,
.account-holder.platform .account-body .student-tile-container.opened .student-exam-content,
.account-holder.platform .program-card .spec-tile .spec-container.opened .spec-content {
  visibility: visible;
  opacity: 1;
  height: auto;
  overflow: auto;
  margin-top: 16px;
  overflow: visible;
}
.account-holder.platform .account-body .student-tile-container.opened .student-exam-content .grid > .flex-row {
  margin-top: 8px;
}
.account-holder.platform .account-body .student-tile-container .student-exam-content .btn-blue,
.account-holder.instructor .account-body .student-tile-container .student-exam-content .btn-blue {
  margin-top: 16px;
  margin-bottom: 8px;
}
.account-holder.platform .account-body .student-tile-container .student-exam-content .btn-container,
.account-holder.instructor .account-body .student-tile-container .student-exam-content .btn-container {
  transition: linear 0.2s;
}
.account-holder.platform .account-body .student-tile-container .student-exam-content .btn-container span,
.account-holder.instructor .account-body .student-tile-container .student-exam-content .btn-container span {
  display: none;
}
.account-holder.platform .account-body .student-tile-container .student-exam-content .btn-container.disabled span,
.account-holder.instructor .account-body .student-tile-container .student-exam-content .btn-container.disabled span {
  content: "Для подтверждения результата необходимо поставить результат оценки всех критериев";
  display: block;
  position: relative;
  font-size: 10px;
  line-height: 12px;
  font-style: italic;
  color: #556066;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}
.account-holder.instructor .account-body .student-tile-container .student-exam-content .btn-blue.diary,
.account-holder.manager .account-body .student-tile-container .student-exam-content .btn-blue.diary,
.account-holder.platform .account-body .student-tile-container .student-exam-content .btn-blue.diary {
  margin-top: 0;
}
.prof-grid.grid-org.grid-attendance .table-silver tr.classes th,
.prof-grid.grid-org.grid-attendance .table-silver tr.classes th {
  font-size: 10px;
  line-height: 14px;
  font-style: italic;
  border-top: 1px solid #3977c8 !important;
}
.prof-grid .table-silvergrid-header-holder tr.classes th:first-child,
.prof-grid .table-silvergrid-header-holder tr.classes th:last-child {
  border-radius: 0;
}
.prof-grid.grid-org.grid-attendance .table-silver.table-silvergrid-body > tbody > tr > td .status-btns {
  justify-content: center;
  gap: 24px;
}
.account-holder.instructor .account-body .group-cot .carousel-container .carousel-class-container .status-btns,
.account-holder.platform .account-body .group-cot .carousel-container .carousel-class-container .status-btns,
.account-holder.instructor .account-body .student-tile-container .student-exam-content .list .status-btns,
.account-holder.platform .account-body .student-tile-container .student-exam-content .list .status-btns {
  gap: 8px;
}
.prof-grid.grid-org.grid-attendance .table-silver.table-silvergrid-body > tbody > tr > td .status-btns .accept,
.prof-grid.grid-org.grid-attendance .table-silver.table-silvergrid-body > tbody > tr > td .status-btns .decline,
.account-holder.instructor .account-body .group-cot .carousel-container .carousel-class-container .status-btns .accept,
.account-holder.instructor .account-body .group-cot .carousel-container .carousel-class-container .status-btns .decline,
.account-holder.platform .account-body .group-cot .carousel-container .carousel-class-container .status-btns .accept,
.account-holder.platform .account-body .group-cot .carousel-container .carousel-class-container .status-btns .decline,
.account-holder.instructor .account-body .student-tile-container .student-exam-content .list .status-btns .accept,
.account-holder.instructor .account-body .student-tile-container .student-exam-content .list .status-btns .decline,
.account-holder.platform .account-body .student-tile-container .student-exam-content .list .status-btns .accept,
.account-holder.platform .account-body .student-tile-container .student-exam-content .list .status-btns .decline {
  display: block;
  width: 16px;
  height: 16px;
  background: url(/imgs/vectors/clock-approved.svg) 00 no-repeat;
  background-size: contain !important;
  cursor: pointer;
  opacity: 0.5;
}
.prof-grid.grid-org.grid-attendance .table-silver.table-silvergrid-body > tbody > tr > td .status-btns .markAll,
.account-holder.instructor .account-body .group-cot .carousel-container .carousel-class .carousel-class-container .students-container .markAll-holder .markAll,
.account-holder.platform .account-body .group-cot .carousel-container .carousel-class .carousel-class-container .students-container .markAll-holder .markAll {
  gap: 4px;
  cursor: pointer;
}
.account-holder.instructor .account-body .group-cot .carousel-container .carousel-class .carousel-class-container .students-container .markAll-holder .markAll,
.account-holder.platform .account-body .group-cot .carousel-container .carousel-class .carousel-class-container .students-container .markAll-holder .markAll {
  font-size: 14px;
}
.prof-grid.grid-org.grid-attendance .table-silver.table-silvergrid-body > tbody > tr > td .status-btns .markAll:before,
.account-holder.instructor
  .account-body
  .group-cot
  .carousel-container
  .carousel-class
  .carousel-class-container
  .students-container
  .markAll-holder
  .markAll:before,
.account-holder.platform
  .account-body
  .group-cot
  .carousel-container
  .carousel-class
  .carousel-class-container
  .students-container
  .markAll-holder
  .markAll:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url(/imgs/vectors/clock-approved.svg) 00 no-repeat;
  background-size: contain !important;
  opacity: 0.5;
}

.prof-grid.grid-org.grid-exam .table-silver.table-silvergrid-body > tbody > tr > td .status-btns .accept,
.prof-grid.grid-org.grid-exam .table-silver.table-silvergrid-body > tbody > tr > td .status-btns .decline {
  width: 30px;
  height: 30px;
}
.prof-grid.grid-org.grid-attendance .table-silver.table-silvergrid-body > tbody > tr > td .status-btns .decline,
.account-holder.instructor .account-body .group-cot .carousel-container .carousel-class-container .status-btns .decline,
.account-holder.platform .account-body .group-cot .carousel-container .carousel-class-container .status-btns .decline,
.account-holder.platform .account-body .student-tile-container .student-exam-content .list .status-btns .decline,
.account-holder.instructor .account-body .student-tile-container .student-exam-content .list .status-btns .decline {
  background: url(/imgs/vectors/cross-red.svg) 00 no-repeat;
}
.prof-grid.grid-org.grid-attendance .table-silver.table-silvergrid-body > tbody > tr > td .status-btns div.hidden,
.account-holder.instructor .account-body .group-cot .carousel-container .carousel-class-container .status-btns div.hidden,
.account-holder.platform .account-body .group-cot .carousel-container .carousel-class-container .status-btns div.hidden,
.account-holder.instructor .account-body .student-tile-container .student-exam-content .list .status-btns div.hidden,
.account-holder.platform .account-body .student-tile-container .student-exam-content .list .status-btns div.hidden,
.prof-grid.grid-org.grid-attendance .table-silver.table-silvergrid-body > tbody > tr > td .status-btns .markAll.hidden,
.account-holder.instructor
  .account-body
  .group-cot
  .carousel-container
  .carousel-class
  .carousel-class-container
  .students-container
  .markAll-holder
  .markAll.hidden,
.account-holder.platform
  .account-body
  .group-cot
  .carousel-container
  .carousel-class
  .carousel-class-container
  .students-container
  .markAll-holder
  .markAll.hidden {
  display: none;
}
.prof-grid.grid-org.grid-attendance .table-silver.table-silvergrid-body > tbody > tr > td .status-btns .accept.active,
.prof-grid.grid-org.grid-attendance .table-silver.table-silvergrid-body > tbody > tr > td .status-btns .decline.active,
.account-holder.instructor .account-body .student-tile-container .student-exam-content .list .status-btns .decline.active,
.account-holder.platform .account-body .student-tile-container .student-exam-content .list .status-btns .decline.active,
.account-holder.instructor .account-body .student-tile-container .student-exam-content .list .status-btns .accept.active,
.account-holder.platform .account-body .student-tile-container .student-exam-content .list .status-btns .accept.active,
.prof-grid.grid-org.grid-attendance .table-silver.table-silvergrid-body > tbody > tr > td .status-btns .accept:hover,
.prof-grid.grid-org.grid-attendance .table-silver.table-silvergrid-body > tbody > tr > td .status-btns .decline:hover,
.account-holder.instructor .account-body .group-cot .carousel-container .carousel-class-container .status-btns .accept.active,
.account-holder.instructor .account-body .group-cot .carousel-container .carousel-class-container .status-btns .decline.active,
.account-holder.instructor .account-body .group-cot .carousel-container .carousel-class-container .status-btns .accept:hover,
.account-holder.instructor .account-body .group-cot .carousel-container .carousel-class-container .status-btns .decline:hover,
.account-holder.platform .account-body .group-cot .carousel-container .carousel-class-container .status-btns .accept.active,
.account-holder.platform .account-body .group-cot .carousel-container .carousel-class-container .status-btns .decline.active,
.account-holder.platform .account-body .group-cot .carousel-container .carousel-class-container .status-btns .accept:hover,
.account-holder.platform .account-body .group-cot .carousel-container .carousel-class-container .status-btns .decline:hover,
.account-holder.instructor .account-body .student-tile-container .student-exam-content .list .status-btns .accept:hover,
.account-holder.instructor .account-body .student-tile-container .student-exam-content .list .status-btns .decline:hover,
.account-holder.platform .account-body .student-tile-container .student-exam-content .list .status-btns .accept:hover,
.account-holder.platform .account-body .student-tile-container .student-exam-content .list .status-btns .decline:hover,
.prof-grid.grid-org.grid-attendance .table-silver.table-silvergrid-body > tbody > tr > td .status-btns .markAll:hover:before,
.prof-grid.grid-org.grid-attendance .table-silver.table-silvergrid-body > tbody > tr > td .status-btns .markAll.active:before,
.account-holder.instructor
  .account-body
  .group-cot
  .carousel-container
  .carousel-class
  .carousel-class-container
  .students-container
  .markAll-holder
  .markAll:hover:before,
.account-holder.instructor
  .account-body
  .group-cot
  .carousel-container
  .carousel-class
  .carousel-class-container
  .students-container
  .markAll-holder
  .markAll.active:before,
.account-holder.instructor
  .account-body
  .group-cot
  .carousel-container
  .carousel-class
  .carousel-class-container
  .students-container
  .markAll-holder
  .markAll:target:before,
.account-holder.platform
  .account-body
  .group-cot
  .carousel-container
  .carousel-class
  .carousel-class-container
  .students-container
  .markAll-holder
  .markAll:hover:before,
.account-holder.platform
  .account-body
  .group-cot
  .carousel-container
  .carousel-class
  .carousel-class-container
  .students-container
  .markAll-holder
  .markAll:target:before,
.account-holder.platform
  .account-body
  .group-cot
  .carousel-container
  .carousel-class
  .carousel-class-container
  .students-container
  .markAll-holder
  .markAll.active:before {
  opacity: 1;
}
.account-holder.instructor .account-body .student-tile-container .student-exam-content .list .status-btns .active,
.account-holder.platform .account-body .student-tile-container .student-exam-content .list .status-btns .active,
.prof-grid.grid-org.grid-attendance .table-silver.table-silvergrid-body > tbody > tr > td .status-btns .active {
  cursor: default;
}
.account-holder.instructor .account-body .student-tile-container .student-exam-content .photo,
.account-holder.platform .account-body .student-tile-container .student-exam-content .photo {
  display: flex;
  text-align: start;
  color: #337ab7;
  margin-top: 12px;
  align-items: center;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #262b43;
  width: fit-content;
}
.account-holder.account-body .student-tile-container .student-exam-content .flex-row.between .context-menu-container {
  margin-top: 12px;
}
.account-holder .account-body .student-tile-container .student-exam-content .flex-row.between .context-menu-container .context-menu {
  top: unset;
  bottom: 15px;
}
.account-holder.instructor .account-body .student-tile-container .student-exam-content .photo:hover,
.account-holder.platform .account-body .student-tile-container .student-exam-content .photo:hover {
  text-decoration: underline;
}
.account-holder.instructor .account-body .student-tile-container .student-exam-content .photo::before,
.account-holder.platform .account-body .student-tile-container .student-exam-content .photo::before {
  content: "";
  display: block;
  background: url(/imgs/vectors/document.svg) 00 no-repeat;
  background-size: contain;
  flex: 0 0 auto;
  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%);
}
.account-holder.instructor .account-body .student-tile-container .student-exam-content .remark,
.account-holder.platform .account-body .student-tile-container .student-exam-content .remark {
  text-align: start;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  margin-top: 12px;
}
.account-holder.instructor .account-body .student-tile-container .grid .table-silvergrid-body tr.criteria-group td,
.account-holder.manager .account-body .student-tile-container .grid .table-silvergrid-body tr.criteria-group td,
.account-holder.platform .account-body .student-tile-container .grid .table-silvergrid-body tr.criteria-group td {
  background-color: #f9f9f9;
  font-size: 14px;
  padding-right: 100px;
}
.prof-grid.grid-org.grid-exam .silver-grid-body .table-silver tr.all-btns{
  td{
    background: #f5f5f5;
    &>span{
      display: block;
      margin-bottom: 10px;
      font-size: 16px;
      color: #000;
    }
  }
}
.prof-grid.grid-org.grid-attendance .table-silver.table-silvergrid-body > tbody > tr > td .student-name {
  justify-content: space-between;
  min-height: 28px;
}
.prof-grid.grid-org.grid-attendance .table-silver.table-silvergrid-body > tbody > tr > td .context-menu-container {
  visibility: hidden;
  opacity: 0;
}
.prof-grid.grid-org.grid-attendance .table-silver.table-silvergrid-body > tbody > tr > td:hover .context-menu-container {
  visibility: visible;
  opacity: 1;
}
.account-holder.instructor .account-body .group-cot.opened .cot-content .attendance-overflow,
.account-holder.platform .account-body .group-cot.opened .cot-content .attendance-overflow {
  position: relative;
  width: 100%;
  overflow: auto;
  border-radius: 10px;
}
.account-holder .account-body .group-cot.opened .cot-content .attendance-overflow .table-silver > thead > tr > th {
  border-bottom: 1px solid #afc5ef !important;
}
.cot-content.attendance .prof-grid.grid-org.grid-attendance .table-silvergrid-header-holder {
  width: fit-content;
}
.prof-grid.grid-org.grid-attendance .table-silver tr.classes .class-hours {
  font-size: 8px;
  margin-top: 4px;
}
.prof-grid.grid-org.grid-exam .silver-grid-body .table-silver span,
.prof-grid.grid-org.grid-examCriterias .silver-grid-body .table-silver span {
  color: red;
}
.prof-grid.grid-org.grid-exam .silver-grid-body .table-silver .remark,
.prof-grid.grid-org.grid-examCriterias .silver-grid-body .table-silver .remark {
  font-size: 10px;
  line-height: 1.1;
  color: #a5a5a5;
  margin-top: 2px;
  text-align: center;
  font-style: italic;
}
.account-holder.instructor .account-body .group-cot .carousel-container .carousel-class,
.account-holder.platform .account-body .group-cot .carousel-container .carousel-class {
  position: relative;
  width: calc(100% - 8px);
  box-shadow: 4px 4px 8px 0px rgba(113, 113, 113, 0.25);
  backdrop-filter: blur(4px);
  border-radius: 4px;
  background: #fff;
}
.account-holder.instructor .account-body .group-cot .carousel-container .carousel-class .carousel-class-container,
.account-holder.platform .account-body .group-cot .carousel-container .carousel-class .carousel-class-container {
  font-size: 12px;
  line-height: 16px;
  padding: 16px;
}
.account-holder.instructor .account-body .group-cot .carousel-container .carousel-class .carousel-class-container .class-title,
.account-holder.platform .account-body .group-cot .carousel-container .carousel-class .carousel-class-container .class-title {
  margin-bottom: 18px;
}
.account-holder.instructor .account-body .group-cot .carousel-container .carousel-class .carousel-class-container .class-title .date,
.account-holder.instructor .account-body .group-cot .carousel-container .carousel-class .carousel-class-container .class-title .hours,
.account-holder.platform .account-body .group-cot .carousel-container .carousel-class .carousel-class-container .class-title .date,
.account-holder.platform .account-body .group-cot .carousel-container .carousel-class .carousel-class-container .class-title .hours {
  font-weight: 600;
  font-size: 16px;
}
.account-holder.instructor .account-body .group-cot .carousel-container .carousel-class .carousel-class-container .class-title .name,
.account-holder.platform .account-body .group-cot .carousel-container .carousel-class .carousel-class-container .class-title .name {
  font-size: 12px;
  margin-top: 4px;
}
.account-holder.instructor .account-body .group-cot .carousel-container .carousel-class .carousel-class-container .students-container,
.account-holder.platform .account-body .group-cot .carousel-container .carousel-class .carousel-class-container .students-container {
  display: flex;
  flex-direction: column;
  gap: 8px 0;
}
.account-holder.instructor .account-body .group-cot .carousel-container .carousel-class .carousel-class-container .students-container .student,
.account-holder.platform .account-body .group-cot .carousel-container .carousel-class .carousel-class-container .students-container .student {
  font-size: 14px;
  gap: 35px;
  justify-content: space-between;
}
.account-holder.instructor .account-body .group-cot .carousel-container .carousel-class .carousel-class-container .students-container .markAll-holder,
.account-holder.platform .account-body .group-cot .carousel-container .carousel-class .carousel-class-container .students-container .markAll-holder {
  justify-content: flex-end;
}

.account-holder.instructor
  .account-body
  .group-cot
  .carousel-container
  .carousel-class
  .carousel-class-container
  .students-container
  .student
  > div:first-child,
.account-holder.platform .account-body .group-cot .carousel-container .carousel-class .carousel-class-container .students-container .student > div:first-child {
  min-width: 240px;
  text-align: start;
}
.account-holder.instructor .account-body .group-cot .cot-content .exam-doc,
.account-holder.platform .account-body .group-cot .cot-content .exam-doc {
  margin-bottom: 16px;
}
.account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .tile-top,
.account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .tile-top {
  text-align: center;
}
.account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .tile-top::after,
.account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .tile-top::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #a8a8a8;
  margin: 16px 0;
}
.personal-popup.inactive .personal-popup-content {
  padding-right: 0;
}
.personal-popup.inactive .personal-popup-body {
  padding: 0;
  height: 100%;
  overflow: hidden;
}
.personal-popup.inactive .text {
  overflow: auto;
  max-height: 205px;
  text-align: center;
  padding-right: 56px;
}
.personal-popup.cancelTest .text {
  padding-bottom: 24px;
}
.personal-popup.cancelTest .silver-uploader {
  padding-right: 56px;
}
.personal-popup.inactive .flex-row {
  gap: 16px;
  position: absolute;
  width: calc(100% - 56px);
  bottom: 48px;
}
.account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .tile-top .name,
.account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .tile-top .name {
  font-weight: 600;
  font-size: 14px;
}
.account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .tile-top .theoryExamPhoto,
.account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .tile-top .theoryExamPhoto {
  display: flex;
  gap: 4px;
  color: #222222;
  justify-content: center;
  
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: auto;
  width: fit-content;
}
.account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .tile-top .theoryExamPhoto *,
.account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .tile-top .theoryExamPhoto * {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .tile-top .theoryExamPhoto:hover,
.account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .tile-top .theoryExamPhoto:hover {
  text-decoration: underline;
}
.account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .tile-top .theoryExamPhoto::before,
.account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .tile-top .theoryExamPhoto::before {
  content: "";
  display: block;
  background: url(/imgs/vectors/document.svg) 00 no-repeat;
  background-size: contain !important;
  width: 12px;
  height: 24px;
  margin-right: 6.5px;
  flex: 0 0 auto;
}
.account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .tile-top .btn-blue,
.account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .tile-top .btn-blue {
  margin-top: 16px;
}
.account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .exam-students-list,
.account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .exam-students-list {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .exam-student,
.account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .exam-student {
  font-size: 16px;
  line-height: 20px;
  width: 100%;
}
.account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .exam-student > .flex-row,
.account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .exam-student > .flex-row {
  gap: 8px 16px;
}
.account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .exam-student::after,
.account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .exam-student::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #e9e8e8;
  margin: 16px 0;
}
.account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .flex-left,
.account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .flex-left {
  gap: 24px;
}
.account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .flex-left .FIO,
.account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .flex-left .FIO {
  font-weight: 500;
}
.account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .flex-right,
.account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .flex-right {
  gap: 68px;
  margin-right: 54px;
}
.account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .flex-right .status-container,
.account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .flex-right .status-container {
  min-width: 185px;
  text-align: center;
}
.account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .flex-right .status,
.account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .flex-right .status {
  gap: 8px;
  justify-content: center;
}
.account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .flex-right .status.inProcess,
.account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .flex-right .status.inProcess {
  color: #f90;
}
.account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .flex-right .status.inProcess.grey,
.account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .flex-right .status.inProcess.grey {
  color: #c6d0db;
  filter: invert(50%) sepia(3%) saturate(1608%) hue-rotate(180deg) brightness(132%) contrast(107%);
}
.account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .flex-right .status:after,
.account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .flex-right .status:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-size: contain !important;
  margin-left: 8px;
}
.account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .flex-right .status.inProcess:after,
.account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .flex-right .status.inProcess:after {
  background: url(/imgs/vectors/clock-wait.svg) 00 no-repeat;
}
.account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .flex-right .status.passed:after,
.account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .flex-right .status.passed:after {
  background: url(/imgs/vectors/clock-approved.svg) 00 no-repeat;
}
.account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .flex-right .status.failed:after,
.account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .flex-right .status.suspended:after,
.account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .flex-right .status.failed:after,
.account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .flex-right .status.suspended:after {
  background: url(/imgs/vectors/cross-red.svg) 00 no-repeat;
}
.account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .flex-right .points,
.account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .flex-right .points {
  text-align: center;
}
.account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .flex-right .points.passed,
.account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .flex-right .points.passed {
  color: #36ab18;
}
.account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .flex-right .points.failed,
.account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .flex-right .status.suspended,
.account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .flex-right .points.failed,
.account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .flex-right .status.suspended {
  color: #ff0000;
  max-width: 185px;
}
.account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .flex-right .points.failed span,
.account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .flex-right .status.suspended span,
.account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .flex-right .points.failed span,
.account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .flex-right .status.suspended span {
  display: block;
  font-size: 12px;
  line-height: 14px;
}
.account-holder.instructor .account-body .group-cot .cot-content .doc .name,
.account-holder.platform .account-body .group-cot .cot-content .doc .name {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.account-holder.instructor .account-body .group-cot .cot-content .doc .name div,
.account-holder.platform .account-body .group-cot .cot-content .doc .name div {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  
}
.personal-popup.disqualify .personal-popup-body {
  padding: 0;
}
.personal-popup.disqualify .personal-popup-body .big-title {
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
}
.personal-popup.disqualify .personal-popup-body .small-title {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 8px;
}
.personal-popup.disqualify .personal-popup-body .reasons-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
  padding-left: 90px;
}
.personal-popup.disqualify .personal-popup-body .reasons-container .radio-row {
  cursor: pointer;
}
.personal-popup.disqualify .personal-popup-body .reasons-container input {
  margin-right: 8px;
  cursor: pointer;
}
.personal-popup.disqualify .personal-popup-body .reasons-container .radio-row:not(:last-child) {
  margin-bottom: 8px;
}
.personal-popup.disqualify .personal-popup-body .reasons-container label {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
.personal-popup.disqualify .personal-popup-body .btns {
  justify-content: center;
  gap: 16px;
}

.personal-popup.org-info .personal-popup-content,
.personal-popup.group-settings .personal-popup-content {
  padding: 0 32px;
  padding-top: 8px;
}
.personal-popup.org-info .personal-popup-body {
  padding: 0;
}
.personal-popup.org-info .title {
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 16px;
  color: #222222;
}
.personal-popup.org-info .tb-name {
  font-weight: 400;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.personal-popup.org-info .field-container {
  min-width: unset;
  max-width: 100%;
}
.personal-popup.org-info .silver-textbox[readonly="readonly"] {
  opacity: 1;
  user-select: all;
}
.personal-popup.org-info .flex-fields {
  gap: 32px;
  flex-wrap: nowrap;
}
.personal-popup.org-info .flex-fields.half .field-container {
  width: 66%;
}
.personal-popup.org-info .flex-fields .field-container {
  width: 33%;
}
.personal-popup.org-info .flex-fields:not(.half) .field-container {
  max-width: 244px;
}
.personal-popup.org-info .controls-container {
  max-width: 520px;
  width: 100%;
}
.personal-popup.org-info .controls-container .flex-fields .field-container {
  width: 100%;
}
.personal-popup.org-info .payment-status {
  display: block;
  max-width: 244px;
  width: 100%;
  background: #e0edff;
  border-radius: 10px;
  min-height: 36px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.1;
  border: none;
  padding: 8px 16px;
  color: #000000;
}
.personal-popup.org-info .payment-status .text {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
.personal-popup.org-info .payment-status .text.success::before,
.personal-popup.org-info .payment-status .text.await::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-size: contain !important;
  background: url(/imgs/vectors/clock-approved.svg) 00 no-repeat;
}
.personal-popup.org-info .payment-status .text.await::before {
  background: url(/imgs/vectors/clock-wait.svg) 00 no-repeat;
}
.personal-popup.group-settings .flex-row.fields .field-container.token {
  width: 100%;
  max-width: 384px;
}
.personal-popup.group-settings .flex-row.fields .field-container.marker {
  width: auto;
}

.account-holder .account-body .schedule-switch {
  gap: 16px;
}
.account-holder .account-body .schedule-switch .list,
.account-holder .account-body .schedule-switch .calendar {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  cursor: pointer;
}
.account-holder .account-body .schedule-switch .list::before,
.account-holder .account-body .schedule-switch .calendar::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-size: contain !important;
  background: url(/imgs/vectors/schedule-list.svg) 00 no-repeat;
}
.account-holder .account-body .schedule-switch .calendar::before {
  background: url(/imgs/vectors/schedule-calendar.svg) 00 no-repeat;
}
.account-holder .account-body .schedule-switch .list:hover,
.account-holder .account-body .schedule-switch .calendar:hover,
.account-holder .account-body .schedule-switch .list.active,
.account-holder .account-body .schedule-switch .calendar.active {
  background: #5097f4;
}
.account-holder .account-body .schedule-switch .list:hover::before,
.account-holder .account-body .schedule-switch .calendar:hover::before,
.account-holder .account-body .schedule-switch .list.active::before,
.account-holder .account-body .schedule-switch .calendar.active::before {
  filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0) brightness(1000%) contrast(106%);
}
.account-holder .account-body .schedule-content .schedule-filters,
.account-holder.platform .instructor-content .schedule-filters,
.account-holder.instructor .content-container .schedule-filters {
  gap: 16px;
  margin-bottom: 16px;
}
.account-holder .account-body .schedule-content .schedule-filters .filter-container:nth-child(-n + 2),
.account-holder.platform .instructor-content .schedule-filters .filter-container:nth-child(-n + 2),
.account-holder.instructor .content-container .schedule-filters .filter-container:nth-child(-n + 2) {
  flex: 0 0 auto;
}
.account-holder .custom-combo.small-items > .combo-dropdown > .combo-items > .item {
  height: 24px;
}
.account-holder .custom-combo.small-items > .combo-dropdown > .combo-items > .item > span {
  font-size: 12px;
  line-height: 14px;
}
.account-holder.platform .instructor-content .schedule-filters .filter-container.filials,
.account-holder.instructor .schedule-filters .filter-container.filials {
  max-width: 180px;
  width: 100%;
}
.account-holder.platform .instructor-content .schedule-filters .filter-container.programs,
.account-holder.instructor .schedule-filters .filter-container.programs {
  max-width: 360px;
  width: 100%;
}
.account-holder.platform .instructor-content .schedule-filters .filter-container > div:first-child,
.account-holder.instructor .schedule-filters .filter-container > div:first-child {
  margin-bottom: 4px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
}
.account-holder .account-body .schedule-content .schedule-list-content,
.account-holder.platform .instructor-content .schedule-list-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.account-holder.platform .content-container > .noContent,
.account-holder.platform .instructor-content > .noContent,
.account-holder.platform .instructor-content .schedule-list-content .noContent,
.account-holder.instructor .account-body .schedule-content .noContent,
.account-holder.instructor .account-body .rotate-content .noContent,
.account-holder .account-body .content-container .instructions-container .noContent {
  text-align: center;
  background: #fff;
  padding: 10px;
  width: 100%;
  border-radius: 4px;
  border: 1px solid #e2e8f6;
}
.account-holder .account-body .open-schedule {
  color: #7a7a7a;
  font-size: 10px;
  line-height: 14px;
  gap: 8px;
  width: fit-content;
  cursor: pointer;
  text-decoration: underline;
  margin-top: 8px;
}
.account-holder .account-body .open-schedule:hover {
  color: #ababab;
}
.account-holder .account-body .open-schedule::after {
  content: "";
  display: block;
  width: 8px;
  height: 5px;
  background: url(/imgs/vectors/arrow-down.svg) 00 no-repeat;
  background-size: contain;
  filter: invert(53%) sepia(99%) saturate(0%) hue-rotate(190deg) brightness(94%) contrast(93%);
  transition: all 0.2s;
}
.account-holder .account-body .open-schedule:hover::after {
  filter: invert(53%) sepia(99%) saturate(0%) hue-rotate(190deg) brightness(115%) contrast(93%);
}
.account-holder .account-body .open-schedule.opened::after {
  transform: rotate(180deg);
}
.account-holder.instructor .account-body .group-tile .small-schedule,
.account-holder.platform .account-body .group-tile .small-schedule {
  position: relative;
  visibility: hidden;
  opacity: 0;
  width: 100%;
  height: 1px;
  overflow: hidden;
  transition: 0.2s;
}
.account-holder.instructor .account-body .group-tile .small-schedule.opened,
.account-holder.platform .account-body .group-tile .small-schedule.opened {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: auto;
  visibility: visible;
  opacity: 1;
  height: initial;
  overflow: initial;
  min-height: 60px;
}
.account-holder.instructor .account-body .group-tile .small-schedule.opened::before,
.account-holder.platform .account-body .group-tile .small-schedule.opened::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #6c788a;
  margin-top: 12px;
  margin-bottom: 8px;
}
.account-holder.instructor .account-body .group-tile .small-schedule .record,
.account-holder.platform .account-body .group-tile .small-schedule .record {
  font-size: 12px;
  line-height: 16px;
  gap: 24px;
}
.account-holder.instructor .account-body .group-tile .record .time,
.account-holder.platform .account-body .group-tile .small-schedule .record {
  font-weight: 600;
  min-width: 75px;
}
.learning-calendar .leaf-month {
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}
.learning-calendar .leaf-month div {
  text-align: center;
}
.learning-calendar .leaf-month .month {
  font-weight: 600;
  min-width: 78px;
}
.learning-calendar .leaf-month .year {
  color: #7e7e7e;
  font-size: 12px;
  font-weight: 500;
}
.learning-calendar .leaf-month .next,
.learning-calendar .leaf-month .prev {
  width: 15px;
  height: 15px;
  background: url(/imgs/vectors/chevron-down.svg) 00 no-repeat;
  background-size: contain;
  transform: rotate(270deg);
  cursor: pointer;
  filter: invert(0%) sepia(100%) saturate(0%) hue-rotate(21deg) brightness(97%) contrast(103%);
}
.learning-calendar .leaf-month .prev {
  transform: rotate(90deg);
}
.learning-calendar .table-calendar {
  border-collapse: collapse;
  border-style: hidden;
  border-radius: 10px;
  box-shadow: 0 0 0 1px #3977c8;
  
  width: 100%;
}
.learning-calendar .table-calendar thead th {
  position: relative;
  background: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  padding: 24px;
  border: 1px solid #3977c8;
  text-align: center;
  border-top: 0;
  width: calc(100% / 7);
}
.learning-calendar .table-calendar thead th:last-child {
  border-right: 0;
  border-top-right-radius: 10px;
}
.learning-calendar .table-calendar thead th:first-child {
  border-left: 0;
  border-top-left-radius: 10px;
}
.learning-calendar .table-calendar thead th div:first-child {
  display: block;
}
.learning-calendar .table-calendar thead th div:nth-child(2) {
  display: none;
}
.learning-calendar .table-calendar tbody td {
  position: relative;
  background: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  border: 1px solid #3977c8;
  border-top: 0;
  padding: 16px;
  padding-right: 8px;
  vertical-align: top;
}
.learning-calendar .table-calendar tbody td.type-1 {
  background: #fcf2ff;
}
.learning-calendar .table-calendar tbody td.type-2 {
  background: #eef6ff;
}
.learning-calendar .table-calendar tbody td.type-3 {
  background: #edffe9;
}
.learning-calendar .table-calendar tbody td.type-1:before,
.learning-calendar .table-calendar tbody td.type-2:before,
.learning-calendar .table-calendar tbody td.type-3:before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  width: 4px;
  height: 100%;
  background: #50285a;
}
.learning-calendar .table-calendar tbody td.type-2:before {
  background: #4e739d;
}
.learning-calendar .table-calendar tbody td.type-3:before {
  background: #5e9d4e;
}
.learning-calendar .table-calendar tbody td .day {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 16px;
}
.learning-calendar .table-calendar tbody td.excess .day {
  color: #c5c5c5;
}
.learning-calendar .table-calendar tbody td .day-content {
  min-height: 110px;
}
.learning-calendar .table-calendar tbody td .day-content > .flex-cell-content:not(:last-child):after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #6c788a;
}
.learning-calendar .table-calendar tbody td .flex-cell-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-size: 10px;
  line-height: 14px;
}
.learning-calendar .table-calendar tbody td .flex-cell-content:not(:first-child) {
  margin-top: 8px;
}
.learning-calendar .table-calendar tbody td .flex-cell-content .corp {
  display: flex;
  gap: 6px;
  align-items: center;
  color: #2f80ed;
}
.learning-calendar .table-calendar tbody td .flex-cell-content .corp::before {
  content: "";
  display: block;
  width: 15px;
  height: 12px;
  background: url(/imgs/vectors/corp.svg) 0 0 no-repeat;
  background-size: contain !important;
  flex: 0 0 auto;
}
.learning-calendar .table-calendar tbody td .flex-cell-content .group {
  gap: 4px;
}
.learning-calendar .table-calendar tbody td .flex-cell-content .group .name {
  font-weight: 700;
}
.learning-calendar .table-calendar tbody td .flex-cell-content .group .count {
  text-decoration: underline;
}
.learning-calendar .table-calendar tbody td .flex-cell-content .object-name {
  font-weight: 700;
}
.learning-calendar .table-calendar tbody td .flex-cell-content .class-name {
  font-style: italic;
}
.learning-calendar .table-calendar tbody tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}
.learning-calendar .table-calendar tbody tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

.account-holder .account-body .cell-tile {
  display: none;
}

.account-holder.platform .instructor-tile {
  position: relative;
  width: 100%;
  filter: drop-shadow(0px 4px 20px rgba(83, 93, 150, 0.1));
}
.account-holder.platform .instructor-tile .tile-content {
  display: block;
  position: relative;
  background: #ffffff;
  padding: 24px 16px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  color: #262b43;
  height: 100%;
}
.account-holder.platform .instructor-tile .tile-content .tile-info {
  position: relative;
  gap: 24px;
  align-items: flex-start;
}
.account-holder.platform .instructor-tile .tile-content .tile-info .portrait-box {
  margin: 0;
  width: 100px;
  height: 100px;
  flex: 0 0 auto;
}
.account-holder.platform .instructor-tile .tile-content .tile-info .portrait-box .portrait {
  width: 100px;
  height: 100px;
}
.account-holder.platform .instructor-tile .tile-content .tile-info .instructor-controls {
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}
.account-holder.platform .instructor-tile .tile-content .tile-info .instructor-controls .flex-controls {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 8px;
  max-width: 31%;
  width: 100%;
  max-height: 200px;
}
.account-holder.platform .instructor-tile .tile-content .tile-info .instructor-controls .flex-controls .control-title {
  font-size: 14px;
  line-height: 18px;
}
.account-holder.platform .instructor-tile .tile-content .tile-info .instructor-commonMenu {
  position: absolute;
  top: -16px;
  right: 0;
}
.account-holder.platform .instructor-tile .generate {
  align-self: flex-start;
  margin-top: 6px;
}
.account-holder.platform .instructor-tile .tile-content .tile-info .auth-controls {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.account-holder.platform .instructor-tile .tile-content .tile-info .auth-controls .flex-controls {
  max-width: 100%;
}
.account-holder.platform .instructor-tile .tile-content .tile-info .auth-controls .login .flex-controls {
  
}
.account-holder.platform .instructor-tile .tile-content .tile-info .auth-controls .login {
  gap: 8px;
}
.account-holder.platform .instructor-tile .tile-content .tile-info .auth-controls .flex-controls > .flex-row {
  gap: 8px;
}
.account-holder.platform .instructor-tile .tile-content .tile-info .auth-controls .flex-controls .silver-control {
  position: relative;
  max-width: 31%;
  width: 100%;
}
.account-holder.platform .instructor-tile .tile-content .tile-info .auth-controls .flex-controls .show-password {
  display: block;
  position: absolute;
  top: 16px;
  right: 0;
  width: 16px;
  height: 7px;
  cursor: pointer;
  background: url(/imgs/vectors/eye_closed.svg) 00 no-repeat;
  background-size: contain;
  margin-right: 8px;
}
.account-holder.platform .instructor-tile .tile-content .tile-info .auth-controls .flex-controls .show-password.shown {
  background: url(/imgs/vectors/eye_open.svg) 00 no-repeat;
  width: 16px;
  height: 12px;
  top: 12px;
}
.account-holder.platform .instructor-tile .tile-content .btn-container {
  text-align: center;
  margin-top: 24px;
}
.account-holder.platform .instructor-tile .tile-content .tile-info .profilte-status {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 30px;
  font-size: 14px;
  line-height: 18px;
}
.account-holder.platform .instructor-tile .tile-content .tile-info .profilte-status::before {
  content: "";
  display: block;
  background: url(/imgs/vectors/mail.svg) 00 no-repeat;
  background-size: contain;
  width: 20px;
  height: 12px;
  flex: 0 0 auto;
}
.account-holder.platform .instructor-tile .tile-content .tile-info .profilte-status.green {
  color: #24cc85;
}
.account-holder.platform .instructor-tile .tile-content .tile-info .profilte-status.green::before {
  filter: invert(63%) sepia(97%) saturate(352%) hue-rotate(99deg) brightness(86%) contrast(93%);
}
.account-holder.platform .instructor-tile .tile-content .tile-info .profilte-status.yellow {
  color: #f8b24a;
}
.account-holder.platform .instructor-tile .tile-content .tile-info .profilte-status.yellow::before {
  filter: invert(83%) sepia(27%) saturate(1376%) hue-rotate(325deg) brightness(103%) contrast(94%);
}
.account-holder.platform .instructor-tile .tile-content .tile-info .profilte-status.red {
  color: #e84444;
}
.account-holder.platform .instructor-tile .tile-content .tile-info .profilte-status.red::before {
  filter: invert(50%) sepia(65%) saturate(4760%) hue-rotate(336deg) brightness(96%) contrast(90%);
}
.account-holder .account-body .prof-rotate {
  position: relative;
}
.account-holder.platform .account-body .instructor-content .prof-rotate > .rotate-menu,
.account-holder.instructor .account-body .prof-rotate > .rotate-menu {
  position: relative;
  padding: 12px;
}
.account-holder.platform .account-body .instructor-content .prof-rotate::before,
.account-holder.instructor .account-body .prof-rotate::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  filter: drop-shadow(0px 4px 20px rgba(83, 93, 150, 0.1));
  border-radius: 10px;
  padding: 12px;
  width: 100%;
  height: 66px;
  z-index: 0;
}
.account-holder .account-body .prof-rotate > .rotate-menu {
  position: relative;
  padding: 12px;
}
.account-holder .account-body .prof-rotate::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  filter: drop-shadow(0px 4px 20px rgba(83, 93, 150, 0.1));
  border-radius: 10px;
  padding: 12px;
  width: 100%;
  height: 66px;
  z-index: 0;
}
.account-holder.platform .account-body .content-container .student-info,
.account-holder.manager .account-body .content-container > .student-info {
  background: #fff;
  border-radius: 10px;
  gap: 24px;
  margin-bottom: 24px;
  padding: 10px;
  align-items: flex-start;
}
.account-holder.manager .account-body .content-container .student-info {
  align-items: flex-start;
  gap: 24px;
}
.account-holder.manager .account-body .content-container > .student-info {
  justify-content: space-between;
}
.account-holder.manager .account-body .content-container .student-info .rightActions {
  gap: 24px;
  align-items: flex-end;
}
.account-holder.manager .docStatusCombo .custom-combo > .combo-container {
  background: #e0edff;
}
.account-holder.manager .docStatusCombo .custom-combo > .combo-container > .img {
  margin-right: 6px;
}
.account-holder .custom-combo > .combo-dropdown > .combo-items > .item > img {
  margin-right: 6px;
  width: 16px;
  height: 16px;
  background-size: contain !important;
}
.account-holder.manager .docStatusCombo .little-title {
  margin-bottom: 6px;
  font-size: 12px;
  line-height: 1;
  color: gray;
}
.account-holder.platform .account-body .content-container .student-content {
  position: relative;
  height: 100%;
}
.account-holder.platform .student-remarks-container {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  height: calc(80vh - 188px);
}
.account-holder.platform .account-body .content-container .student-content .student-tab {
  position: relative;
  height: calc(80vh - 188px);
}
.account-holder.platform .student-textarea .auc-textarea {
  min-height: 100px;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 12px;
}
.account-holder.platform .student-textarea label {
  margin-bottom: 8px;
}
.account-holder.platform .student-remarks,
.account-holder.platform .student-remarks .flex-remark .remark-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.account-holder.platform .student-remarks .flex-remark {
  align-items: flex-start;
  gap: 16px;
}
.account-holder.platform .student-remarks .flex-remark .avatar {
  background-size: contain !important;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex: 0 0 auto;
}
.account-holder.platform .student-remarks .remark-container:not(:last-child)::after,
.account-holder.platform .student-textarea:not(.noRemarks)::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #d9d9d9a3;
  margin: 12px 0;
}
.account-holder.platform .student-remarks .remark-container {
  width: 100%;
}
.account-holder.platform .student-remarks .flex-remark .remark-content {
  gap: 4px;
}
.account-holder.platform .student-remarks .flex-remark .remark-content .remark-header {
  gap: 6px;
}
.account-holder.platform .student-remarks .flex-remark .remark-content .remark-header .name {
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
}
.account-holder.platform .student-remarks .flex-remark .remark-content .remark-header .time {
  font-size: 12px;
  line-height: 14px;
  color: #bebebe;
}
.account-holder.platform .student-remarks .flex-remark .remark-content .text {
  font-size: 14px;
  line-height: 18px;
}
.account-holder.platform .student-remarks .flex-remark .remark-content .context-menu-container .context-menu-toggler {
  color: #bebebe;
  filter: invert(87%) sepia(0%) saturate(14%) hue-rotate(178deg) brightness(91%) contrast(83%);
  opacity: 0.5;
  width: 20px;
}

.account-holder .account-body .content-container .instructions-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
.account-holder .account-body .content-container .instructions-container .breadcrumb {
  align-self: flex-start;
  margin: 0;
}
.account-holder .instruction-tile .body {
  color: #222222;
  margin-top: 8px;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.1;
}
.account-holder .instruction-tile .body img {
  max-width: 100% !important;
  border-radius: 10px;
  box-shadow: 0px 4px 20px rgba(83, 93, 150, 0.1);
}

.prof-grid.grid-classes .table-silver > tbody > tr > td .await,
.prof-grid.grid-classes .table-silver > tbody > tr > td .active,
.prof-grid.grid-classes .table-silver > tbody > tr > td .disabled {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.prof-grid.grid-classes .active {
  color: #24cc85;
}
.prof-grid.grid-classes .await {
  color: #f8b24a;
}
.prof-grid.grid-classes .table-silver > tbody > tr > td .await:before,
.prof-grid.grid-classes .table-silver > tbody > tr > td .active:before,
.prof-grid.grid-classes .table-silver > tbody > tr > td .disabled:before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-size: contain !important;
  background: url(/imgs/vectors/clock-approved.svg) 00 no-repeat;
}
.prof-grid.grid-classes .table-silver > tbody > tr > td .await:before {
  background: url(/imgs/vectors/clock-wait.svg) 00 no-repeat;
}
.prof-grid.grid-classes .table-silver > tbody > tr > td .disabled:before {
  background: url(/imgs/vectors/clock-wait.svg) 00 no-repeat;
  filter: grayscale(100%);
}
.prof-grid.grid-classes .filail {
  font-weight: 600;
}
.prof-grid.grid-classes .filail:not(:first-child)::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #3977c8;
  margin: 6px 0;
}
.account-holder.platform .grid-container {
  position: relative;
  height: calc(100vh - 190px);
}
.account-holder.platform .program-card {
  position: relative;
  height: 100%;
}
.account-holder.platform .program-card .flex-tiles {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.account-holder.platform .program-card .prof-rotate > .rotate-menu > ul > li {
  width: 300px;
}
.account-holder.platform .program-card .spec-content .callback-message {
  display: none;
}
.account-holder.platform .program-card .spec-content.callback .callback-message,
.account-holder.platform .program-card .spec-tile .noData {
  display: block;
  text-align: start;
  font-size: 11px;
  font-style: italic;
  line-height: 1.1;
  margin-top: 16px;
}
.account-holder.platform .program-card .spec-content .callback-message span:before,
.account-holder.platform .program-card .spec-tile .noData::before {
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  
  width: 18px;
  height: 18px;
  background: url(/imgs/vectors/clock-error-yellow.svg) 00 no-repeat;
  background-size: contain !important;
  align-self: flex-start;
  vertical-align: middle;
  margin-right: 4px;
}
.account-holder.platform .program-card .spec-content .custom-checkbox > .cb-container > input + label.imposter {
  position: relative;
  margin-right: 8px;
}
.account-holder.platform .program-card .spec-tile .spec-container .spec-content {
  padding-left: 24px;
}
.account-holder.platform .program-card .spec-tile .noData {
  font-size: 14px;
  gap: 12px;
  justify-content: center;
}
.account-holder.platform .program-card .flex-tiles .btn-blue {
  margin-top: 8px;
}
.account-holder.platform .program-card .program-tab {
  position: relative;
  height: calc(89vh - 188px);
}
.account-holder.platform .program-card .grid-examSettings .criteria-info .appointed,
.account-holder.platform .program-card .grid-examSettings .criteria-info .empty {
  display: flex;
  align-items: center;
  justify-content: center;
  
}


.account-holder.platform .program-card .grid-examSettings .criteria-info .appointed {
  color: #24cc85;
}
.account-holder.platform .program-card .grid-examSettings .criteria-info .empty {
  color: #f8b24a;
}
.account-holder.platform .program-card .grid-examSettings .criteria-info .count {
  font-style: italic;
  color: #a5a5a5;
  font-size: 10px;
}
.account-holder.platform .program-card .grid-examSettings .criteria-info .appointed span:before,
.account-holder.platform .program-card .grid-examSettings .criteria-info .empty span:before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-size: contain !important;
  background: url(/imgs/vectors/clock-approved.svg) 00 no-repeat;
  flex: 0 0 auto;
  vertical-align: bottom;
  margin-right: 4px;
}
.account-holder.platform .program-card .grid-examSettings .criteria-info .empty span:before {
  background: url(/imgs/vectors/clock-wait.svg) 00 no-repeat;
}
.account-holder.platform .program-card .grid-examSettings .btn-blue {
  width: 111px;
}
.personal-popup.criterias .grid-container {
  position: relative;
  height: calc(100% - 70px);
}
.personal-popup.criterias .btn-blue {
  margin: auto !important;
  display: block !important;
  width: fit-content !important;
  margin-top: 8px !important;
}
.personal-popup.criterias .prof-grid.grid-examCriterias .table-silvergrid-body-overflow > table > tbody > tr > td {
  overflow: visible;
}
.personal-popup.criterias .prof-grid.grid-examCriterias .table-silvergrid-body-overflow > table > tbody > tr > td .context-menu-container {
  margin: auto;
}
.personal-popup.criterias .personal-popup-content {
  padding: 0 16px;
  padding-top: 8px;
}
.personal-popup.criterias .head {
  padding-left: 16px;
}
.personal-popup.handbook .field-container {
  max-width: 100%;
  min-width: unset;
  min-height: 70px;
}
.personal-popup.handbook .field-container .SilverCombo {
  background: #e0edff;
  border-radius: 10px;
}
.personal-popup.handbook .field-container .SilverCombo .silver-textbox[readonly="readonly"] {
  opacity: 1;
  cursor: pointer;
}
.personal-popup.handbook .flex-row.examHandbook {
  gap: 0 16px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.personal-popup.handbook .flex-row.examHandbook > .field-container:not(:first-child) {
  width: fit-content;
}
.personal-popup.handbook .flex-row.examHandbook .marksError {
  width: 100%;
  color: red;
  text-align: center;
  font-size: 14px;
}
.personal-popup.handbook .grid-container {
  
  height: calc(100% - 420px);
  margin-top: 16px;
  overflow: hidden;
}
.personal-popup.handbook .prof-grid.grid-attendance .table-silvergrid-header-overflow {
  border: 0;
  border-top: 0 !important;
}
.personal-popup.handbook .prof-grid .table-silver tr.criteria-group td {
  background-color: #eeebeb;
}
.personal-popup.handbook .prof-grid .table-silver tr.criteria-group td:nth-child(2) {
  font-size: 14px;
  
}
.personal-popup.handbook .tb-name {
  margin-bottom: 6px;
}
.personal-popup.handbook.addCriteria .flex-row.controls {
  gap: 8px;
}
.personal-popup.handbook .context-menu-container .context-menu.up {
  bottom: 0;
}
.personal-popup.handbook.addCriteria .flex-row.controls .field-container:last-child {
  width: 100%;
}
.personal-popup.handbook.addCriteria .flex-row.controls .field-container.marker {
  min-height: unset;
}
.personal-popup.handbook .custom-checkbox > .cb-container > input + label.imposter {
  position: relative;
  margin-right: 8px;
}

.prof-grid .table-silver tr:nth-child(2) .context-menu {
  bottom: unset;
  top: 20px;
}
.prof-grid.grid-examCriterias .criteria-group td:nth-child(2) {
  font-weight: 600;
}
.prof-grid.grid-org.grid-examCriterias .table-silver > tbody > tr > td {
  padding: 10px 6px;
}
.personal-popup .prof-grid.grid-examCriterias .custom-checkbox > .cb-container > input + label.imposter {
  position: relative;
}
.personal-popup .prof-grid.grid-examCriterias .custom-checkbox > .cb-container {
  justify-content: center;
}
.silver-control.prof-token .holder .overflow .table-silver.table-combo tr td {
}

.account-holder.manager .grid-container {
  position: relative;
  width: 100%;
  height: calc(100vh - 190px);
}
.account-holder.manager .grid-requests .table-silver > tbody > tr > td a.btn-blue,
.account-holder.manager .grid-requests .table-silver > tbody > tr > td a.btn-blue:hover {
  color: #fff;
}
.account-holder.manager .grid-requests .table-silver > tbody > tr > td a {
  color: #337ab7;
}
.account-holder.manager .grid-requests .table-silver > tbody > tr > td a:hover {
  color: #5097f4;
}
.account-holder.manager .grid-requests .userIP {
  font-size: 10px;
  line-height: 1.1;
  color: #a5a5a5;
  text-align: center;
  margin-top: 4px;
}
.account-holder.manager .grid-requests .message-text .message .text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.account-holder.manager .grid-requests .message-text .message .more {
  display: block;
  margin: 0;
}
.account-holder.manager .grid-requests .message-text .message.opened .text {
  display: block;
}
.account-holder.manager .grid-requests .message-text .message:not(:last-child)::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.5px;
  background: #e9e8e8;
  margin: 4px 0;
}
.account-holder.manager .grid-requests .message-text .message.message-counter {
  font-size: 10px;
  line-height: 1.1;
  font-style: italic;
  color: #a5a5a5;
}

.account-holder.manager .grid-requests .status-new img {
  filter: invert(50%) sepia(3%) saturate(1608%) hue-rotate(180deg) brightness(132%) contrast(107%);
}
.account-holder.manager .grid-requests .status-underway {
  color: #f8b24a;
}
.account-holder.manager .grid-requests .status-closed {
  color: #24cc85;
}
.account-holder.manager .student-tile .doc-counter {
  text-align: end;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}
.account-holder.manager .allDocs-holder {
  position: relative;
  height: calc(80vh - 85px);
}
.account-holder.manager #gridOrders .separator {
  display: block;
  width: 100%;
  height: 0.5px;
  background: #e9e8e8;
  margin: 6px 0;
}
.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 .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 0.5s;
}
.appPreloader.loading .progress {
  width: 100%;
}
.account-holder.manager .order-tab.prof-rotate > .rotate-menu {
  width: 100%;
  overflow: hidden;
}
.account-holder.manager .order-tab.prof-rotate > .rotate-menu > ul > li {
  width: 200px;
  flex: 0 0 auto;
}
.account-holder.manager .basket-body .order-comment {
  margin-left: 16px;
}
.prof-rotate > .rotate-menu > ul {
  width: fit-content;
}
.account-holder.manager .basket-body .order-comment::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background: #5097f4;
  border-radius: 100%;
  background-image: url(/imgs/vectors/retry.svg);
  background-size: 65%;
  background-position: center center;
  background-repeat: no-repeat;
  flex: 0 0 auto;
  margin-right: 8px;
}
.personal-popup.newDoc .personal-popup-body .flex-docTypes {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.personal-popup.newDoc .personal-popup-body {
  padding-top: 0;
}
.personal-popup.newDoc .personal-popup-body .flex-docTypes .btn-blue {
  text-align: center;
  width: 100%;
}
.personal-popup.paymentEditor .btn {
  padding: 10px 16px;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
}
.personal-popup.paymentEditor .btn.btn-disabled {
  cursor: not-allowed;
  opacity: 0.65;
}
.personal-popup.paymentEditor .btn[disabled]:active,
.personal-popup.paymentEditor .btn.btn-disabled:active,
.personal-popup.paymentEditor .btn[disabled]:hover,
.personal-popup.paymentEditor .btn.btn-disabled:hover {
  background: initial;
  color: #3977c8;
  box-shadow: none;
}
.personal-popup.paymentEditor .ft-editor {
  padding: 0 16px;
}
.personal-popup.paymentEditor .content.recipt-card > table > tbody > tr > td {
  padding: 10px 6px;
  font-size: 14px;
  line-height: 1.1;
}
.personal-popup.paymentEditor .content.recipt-card > table > tbody > tr > td.fieldname {
  width: 100px;
  padding-top: 20px !important;
}
.personal-popup.paymentEditor .content.recipt-card > table > tbody > tr {
  vertical-align: top;
}
.personal-popup.paymentEditor .ft-editor .SilverHeader {
  gap: 6px;
}
.personal-popup.paymentEditor .ft-editor .SilverHeader > div > a {
  display: none !important;
}
.personal-popup.paymentEditor .ft-editor .SilverHeader > .silver-popup.show {
  display: none !important;
}
.personal-popup .changeWarning {
  border: 1px solid #a5acb5;
  background-color: #fff9c5;
  text-align: center;
  padding: 6px 12px;
  font-size: 12px;
  line-height: 1;
  border-radius: 5px;
}
.personal-popup.moveParticipant .move-title {
  margin-bottom: 12px;
}
.personal-popup.moveParticipant .move-title label {
  margin-bottom: 0;
}
.personal-popup.moveParticipant > .popup-container .content.nice-scroll {
  height: calc(100% - 50px);
}
.personal-popup.moveParticipant .flex-col {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.personal-popup.moveParticipant .personal-popup-body {
  padding-bottom: 16px;
}
.personal-popup.moveParticipant .personal-popup-body .year-separator {
  position: relative;
  width: 100%;
  gap: 4px;
}
.personal-popup.moveParticipant .personal-popup-body .year-separator:after {
  content: "";
  width: 100%;
  height: 1px;
  border-top: 1px solid #d7d7d7;
}
.account-holder.manager .grid-RBKPayment .table-silvergrid-body td {
  text-align: start;
  overflow: visible;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.account-holder.manager .grid-RBKPayment .table-silvergrid-body tr > td:first-child {
  font-weight: 800;
}
.account-holder .account-body .title.bold.marginMin {
  margin-bottom: 4px;
}
.account-holder.manager .orderInfo {
  margin-bottom: 24px;
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.3;
}
.account-holder.manager .orderInfo .orderStatus {
  gap: 4px;
  margin-bottom: 4px;
}
.account-holder.manager .orderInfo .clientInfo {
  flex-wrap: wrap;
  gap: 4px 8px;
}
.account-holder.manager .orderInfo .clientInfo a {
  color: #222222;
  text-decoration: underline;
}
.account-holder.manager .orderInfo .clientInfo a:hover {
  color: #5097f4;
}

.LearningUserPracticalTasks {
  position: relative;
  width: 100%;
  height: 100%;
}
.LearningUserPracticalTasks .task-info {
  position: relative;
  width: 100%;
  
  backdrop-filter: blur(4px);
  border-radius: 4px;
  background: #fff;
  background: #c3d9ff;
  padding: 16px;
  border: 1px solid #e2e8f6;
  box-shadow: 0px 4px 20px 0px rgba(83, 93, 150, 0.1);
  
}
.LearningUserPracticalTasks .task-info > .flex-row {
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
}
.LearningUserPracticalTasks .task-info{
  .taskFAQ{
    span{
      color: gray;
      font-size: 14px;
      line-height: 24px;
      margin-top: 4px;
      flex: 0 0 auto;
    }
  }
}
.LearningUserPracticalTasks .task-info .taskUserName,
.LearningUserPracticalTasks .task-info .taskInstructorName {
  font-size: 14px;
  
}
.LearningUserPracticalTasks .task-info .taskInstructorName {
    display: flex;
    align-items: center;
    line-height: 1;
    gap: 4px;
  a{
    font-size: 12px;
    &::before{
      content: none;
    }
    display: inline-block;
    margin: 0;
  }
}
.personal-popup.taskUpdateInstructor{
  overflow: visible;
  &>.popup-container{
    overflow: visible;
     &>.content{
      overflow: visible;
      .personal-popup-body{
        overflow: visible;
      }
    }
  }
}
.LearningUserPracticalTasks .task-info .taskDescription {
  font-size: 14px;
  line-height: 1;
  margin-top: 4px;
}
.LearningUserPracticalTasks .task-info a,
.LearningUserPracticalTasks .taskTiles .tile-container .file {
  display: flex;
  align-items: center;
  color: #337ab7;
  text-decoration: underline;
  margin-top: 4px;
  width: auto;
  flex: 0 0 auto;
}
.LearningUserPracticalTasks .taskTiles .tile-container .file a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: fit-content;
  color: #337ab7;
}
.LearningUserPracticalTasks .task-info a::before,
.LearningUserPracticalTasks .taskTiles .tile-container .file::before {
  content: "";
  display: block;
  position: relative;
  background: url(/imgs/vectors/document.svg) 00 no-repeat;
  background-size: contain;
  width: 14px;
  height: 20px;
  margin-right: 8px;
  filter: brightness(0) saturate(100%) invert(44%) sepia(32%) saturate(3256%) hue-rotate(208deg) brightness(101%) contrast(102%);
  flex: 0 0 auto;
}
.LearningUserPracticalTasks .task-info a:hover,
.LearningUserPracticalTasks .taskTiles .tile-container .file a:hover {
  color: #5097f4;
}
.LearningUserPracticalTasks .taskTiles {
  overflow: auto;
  padding: 10px;
}
.LearningUserPracticalTasks .taskTiles .task-tile {
  position: relative;
  width: 100%;
  box-shadow: 0px 4px 20px 0px rgba(83, 93, 150, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 4px;
  background: #fff;
  margin-bottom: 16px;
}
.LearningUserPracticalTasks .taskTiles .tile-container {
  padding: 16px;
  
}
.LearningUserPracticalTasks .noTask {
  height: 85vh;
  width: 100%;
  text-align: center;
}
.LearningUserPracticalTasks .taskTiles .tile-container > .flex-row {
  gap: 16px;
}
.LearningUserPracticalTasks .taskTiles .tile-container > .flex-row > .flex-row {
  gap: 8px;
}
.LearningUserPracticalTasks .taskTiles .tile-container .dateCreated {
  font-size: 12px;
  line-height: 1;
}
.LearningUserPracticalTasks .taskTiles .tile-container .status {
  display: flex;
  align-items: center;
  gap: 6px;
}
.LearningUserPracticalTasks .taskTiles .tile-container .status::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-size: contain !important;
}
.LearningUserPracticalTasks .taskTiles .tile-container .status.send:before {
  background: url(/imgs/vectors/clock-wait.svg) 0 0 no-repeat;
}
.LearningUserPracticalTasks .taskTiles .tile-container .status.checked:before {
  background: url(/imgs/vectors/clock-approved.svg) 0 0 no-repeat;
}
.LearningUserPracticalTasks .taskTiles .tile-container .status.returned:before {
  background: url(/imgs/vectors/clock-error-yellow.svg) 0 0 no-repeat;
}
.LearningUserPracticalTasks .taskTiles .tile-container .status.canceled:before {
  background: url(/imgs/vectors/clock-error.svg) 0 0 no-repeat;
}
.LearningUserPracticalTasks .taskTiles .tile-container .separator {
  display: block;
  width: 100%;
  height: 0.5px;
  background: #e9e8e8;
  margin: 6px 0;
}
.LearningUserPracticalTasks .textarea-tile-container .error-text {
  display: none;
}
.LearningUserPracticalTasks .textarea-tile-container.error .error-text {
  display: block;
  position: absolute;
  top: 90px;
  left: 26px;
  height: auto;
  color: red;
  font-size: 12px;
  margin-top: 8px;
}
.LearningUserPracticalTasks .textarea-tile-container.error .textarea-container {
  border-color: red;
}
.LearningUserPracticalTasks .textarea-tile-container {
  position: relative;
  background: #f1f6ff;
}
.LearningUserPracticalTasks .textarea-tile-container .remarkTitle {
  display: block;
  position: absolute;
  left: 24px;
  top: 16px;
}
.LearningUserPracticalTasks .textarea-tile-container:has(.remarkTitle) .textarea-container{
  padding-top: 48px;
}
.LearningUserPracticalTasks .textarea-tile-container .noSend {
  padding: 32px 24px;
  min-height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
  background: #fff;
  width: 100%;
  border: 1px solid #e2e8f6;
  border-radius: 20px;
}
.LearningUserPracticalTasks .textarea-tile-container .textarea-container,
.LearningUserPracticalTasks .taskTiles .managerRemark {
  display: block;
  background: #fff;
  width: 100%;
  padding: 32px 24px;
  border: 1px solid #e2e8f6;
  border-radius: 20px;
}
.LearningUserPracticalTasks .taskTiles .managerRemark.error{
  border-color: red;
}
.LearningUserPracticalTasks .textarea-tile-container .textarea-container textarea,
.LearningUserPracticalTasks .taskTiles .managerRemark 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;
}
.LearningUserPracticalTasks .textarea-tile-container .textarea-container textarea:focus-visible,
.LearningUserPracticalTasks .taskTiles .managerRemark textarea:focus-visible {
  outline: none;
}
.LearningUserPracticalTasks .textarea-tile-container .textarea-container > .flex-row {
  align-items: flex-start;
  gap: 16px;
}
.LearningUserPracticalTasks .textarea-tile-container .textarea-container .newfiles-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
}
.LearningUserPracticalTasks .textarea-tile-container .textarea-container .newfiles-container .add-file {
  width: fit-content;
  color: initial;
  user-select: none;
}
.LearningUserPracticalTasks .textarea-tile-container .textarea-container .newfiles-container .add-file .clip {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #a7b4c7;
  width: 32px;
  height: 32px;
  margin-right: 12px;
}
.LearningUserPracticalTasks .textarea-tile-container .textarea-container .newfiles-container .add-file .clip::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(/imgs/vectors/clip.svg) 00 no-repeat;
  background-size: contain;
}
.LearningUserPracticalTasks .textarea-tile-container .textarea-container .newfiles-container .flex-files {
  flex-wrap: wrap;
  gap: 12px 32px;
}
.LearningUserPracticalTasks .textarea-tile-container .textarea-container .doc {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #262b43;
  flex-wrap: wrap;
}
.LearningUserPracticalTasks .textarea-tile-container .textarea-container .doc::before {
  content: "";
  display: block;
  position: absolute;
  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%);
}
.LearningUserPracticalTasks .textarea-tile-container .textarea-container .doc .name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 190px;
  margin-left: 18px;
}
.LearningUserPracticalTasks .textarea-tile-container .textarea-container .doc > .size {
  margin-left: 18px;
}
.LearningUserPracticalTasks .textarea-tile-container .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;
}
.LearningUserPracticalTasks .textarea-tile-container .textarea-container .send:hover,
.LearningUserPracticalTasks .textarea-tile-container .textarea-container .send:focus,
.LearningUserPracticalTasks .textarea-tile-container .textarea-container .send:target {
  
  background: #3977c8;
  color: #fff;
}
.LearningUserPracticalTasks .textarea-tile-container .textarea-container .send:active {
  background: #5a60f1;
  color: #fff;
}
.LearningUserPracticalTasks .textarea-tile-container .error-text {
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 20px;
  line-height: 24px;
  height: 100%;
}
.LearningUserPracticalTasks .taskTiles .managerRemark {
  padding: 12px 16px;
  margin-bottom: 12px;
}
.LearningUserPracticalTasks .taskTiles .managerRemark textarea {
  margin-bottom: 0px;
  min-height: 45px;
}
.LearningUserPracticalTasks .taskTiles .checker-btns {
  gap: 8px;
}
.LearningUserPracticalTasks .taskTiles .checker-btns .btn-blue.decline {
  background: #fd5555;
}
.LearningUserPracticalTasks .taskTiles .checker-btns .btn-blue.decline:hover,
.LearningUserPracticalTasks .taskTiles .checker-btns .btn-blue.decline:target,
.LearningUserPracticalTasks .taskTiles .checker-btns .btn-blue.decline:focus {
  background: red;
}
.LearningUserPracticalTasks .taskTiles .checker-btns .btn-blue.accept {
  background: #59e2a9;
}
.LearningUserPracticalTasks .taskTiles .checker-btns .btn-blue.accept:hover,
.LearningUserPracticalTasks .taskTiles .checker-btns .btn-blue.accept:target,
.LearningUserPracticalTasks .taskTiles .checker-btns .btn-blue.accept:focus {
  background: #24cc85;
}
.LearningUserPracticalTasks .taskTiles .flex-marks {
  gap: 4px;
}
.LearningUserPracticalTasks .taskTiles .btn-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  width: 36px;
  border-radius: 100%;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  background: #5097f4;
  color: #ffffff;
  cursor: pointer;
}
.LearningUserPracticalTasks .taskTiles .btn-mark:hover,
.LearningUserPracticalTasks .taskTiles .btn-mark:focus,
.LearningUserPracticalTasks .taskTiles .btn-mark:target {
  background: #3977c8;
}
.LearningUserPracticalTasks .taskTiles .btn-mark.active,
.LearningUserPracticalTasks .taskTiles .btn-mark:active {
  background: #464bce;
}
.LearningUserPracticalTasks .taskTiles .checker-error {
  display: none;
  color: red;
  font-size: 14px;
  line-height: 1;
}
.LearningUserPracticalTasks .taskTiles .checker-error.active {
  display: block;
}
.account-holder.platform .account-body .student-tile-container.opened .student-exam-content .fillDiary .personal-popup-content {
  padding-bottom: 24px;
  text-align: left;
}
.account-holder.platform .account-body .student-tile-container.opened .student-exam-content .fillDiary .fields-container .separator {
  width: 100%;
}
.account-holder.platform .account-body .student-tile-container.opened .student-exam-content .fillDiary .fields-container .separator .name {
  flex: 0 0 auto;
  max-width: 100%;
  margin: 0;
}
.account-holder.platform .account-body .student-tile-container.opened .student-exam-content .fillDiary .fields-container .separator::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #e9e8e8;
  margin-left: 8px;
  
  width: 100%;
}
.account-holder.platform .account-body .student-tile-container.opened .student-exam-content .fillDiary .fields-container {
  position: relative;
  width: 100%;
  height: auto;
  gap: 10px;
}
.account-holder.platform .account-body .student-tile-container.opened .student-exam-content .fillDiary .fields-container .silver-memo {
  resize: none;
  overflow: auto;
}
.account-holder.platform .account-body .student-tile-container.opened .student-exam-content .fillDiary .fields-container .silver-memo[readonly="readonly"] {
  opacity: 1;
  background: #d7e1ef;
}
.account-holder.platform .account-body .student-tile-container.opened .student-exam-content .fillDiary .flex-column {
  position: relative;
  height: calc(100% - 68px);
  overflow: auto;
}
.account-holder.platform .account-body .student-tile-container.opened .student-exam-content .fillDiary .bot-btn {
  text-align: center;
  padding-top: 12px;
}
.account-holder.platform .account-body .student-tile-container.opened .student-exam-content .fillDiary .bot-btn .error {
  display: block;
  color: red;
  font-size: 12px;
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0;
  visibility: hidden;
}
.account-holder.platform .account-body .student-tile-container.opened .student-exam-content .fillDiary .bot-btn .error.active {
  opacity: 1;
  visibility: visible;
}
.account-holder.platform .account-body .student-tile-container.opened .student-exam-content .fillDiary .custom-combo > .combo-container{
  background: #e0edff;
  &>input{
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
  }
}
.personal-popup .silver-textbox, 
.personal-popup .silver-memo ,
.account-holder.platform .account-body .student-tile-container.opened .student-exam-content .silver-textbox,
.account-holder.platform .account-body .student-tile-container.opened .student-exam-content .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;
}
.account-holder.platform .account-body .student-tile-container.opened .student-exam-content .loadDiary .name {
  margin-bottom: 16px;
  line-height: 1.1;
}
.account-holder.platform .account-body .student-tile-container.opened .student-exam-content .loadDiary .name > div:first-child {
  margin-bottom: 6px;
}
.account-holder.platform .account-body .student-tile-container.opened .student-exam-content .loadDiary .name > a {
  display: flex;
  align-items: center;
  color: #337ab7;
  width: fit-content;
  gap: 4px;
  font-size: 14px;
}
.account-holder.platform .account-body .student-tile-container.opened .student-exam-content .loadDiary .name > a:hover {
  text-decoration: underline;
}
.account-holder.platform .account-body .student-tile-container.opened .student-exam-content .loadDiary .name > a::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%);
}
.account-holder.platform .account-body .student-tile-container.opened .student-exam-content .loadDiary .name > a::after {
  content: "";
  display: block;
  background: url(/imgs/vectors/download.svg) 00 no-repeat;
  background-size: contain;
  width: 17px;
  height: 15px;
  margin-left: 8px;
  flex: 0 0 auto;
}
.account-holder.platform .account-body .student-tile-container.opened .student-exam-content .loadDiary .btn-blue {
  display: block;
  margin: auto;
  width: fit-content;
}
.account-holder.platform .account-body .student-tile-container.opened .student-exam-content .loadDiary .personal-popup-content {
  padding: 0 32px;
  padding: 0 12px;
}
.account-holder.platform .account-body .student-tile-container.opened .student-exam-content .loadDiary .flex-column {
  height: calc(100% - 224px);
  padding-right: 10px;
}
.account-holder.platform .account-body .student-tile-container.opened .student-exam-content .loadDiary .silver-memo[readonly="readonly"],
.account-holder.platform .account-body .student-tile-container.opened .student-exam-content .loadDiary .custom-combo.disabled,
.account-holder.platform .account-body .student-tile-container.opened .student-exam-content .loadDiary .custom-combo > .combo-container {
  opacity: 1;
  background: #d7e1ef;
}
.account-holder.platform .account-body .student-tile-container.opened .student-exam-content .loadDiary .silver-textbox[readonly="readonly"] {
  opacity: 1;
}
.account-holder.platform .account-body .student-tile-container.opened .student-exam-content .loadDiary .controlsTitle {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1;
  color: #3977c8;
}
.account-holder.manager .account-body .group-cot #gridDiarySchedule,
.account-holder.manager .account-body .group-cot #gridDiaryCharacteristics {
  
}
.account-holder.manager .account-body .group-cot #gridDiarySchedule .accept {
  display: block;
  width: 16px;
  height: 16px;
  background: url(/imgs/vectors/clock-approved.svg) 00 no-repeat;
  background-size: contain !important;
  background-position: center;
  width: 100%;
}
.account-holder.manager .account-body .file-tile {
  
  
}
.account-holder.manager .account-body .file-tile::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #e9e8e8;
  margin-top: 10px;
}
.account-holder.manager .account-body .file-tile .group-tile-container{
  padding: 10px 0 0;
}
.account-holder.manager .account-body .file-tile .name {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.2;
}
.account-holder.manager .account-body .file-tile .time {   
   color: gray;
  font-size: 12px;
}
.account-holder.manager .account-body .file-tile .name > div:first-child {
  margin-bottom: 4px;
}
.account-holder.manager .account-body .file-tile .name a.download {
  display: flex;
  align-items: center;
  color: #337ab7;
  width: fit-content;
  gap: 4px;
  font-size: 14px;
}
.account-holder.manager .account-body .file-tile .name .silver-uploader{
  max-width: 700px;
}
.account-holder.manager .account-body .file-tile .name a.download::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%);
}
.account-holder.manager .account-body .file-tile .name a.download::after {
  content: "";
  display: block;
  background: url(/imgs/vectors/download.svg) 00 no-repeat;
  background-size: contain;
  width: 17px;
  height: 15px;
  margin-left: 8px;
  flex: 0 0 auto;
}
.account-holder.manager .account-body .file-tile .btn-blue {
  display: block;
  width: fit-content;
  margin: auto;
}
.account-holder .settings-content .pass-container > span{
  margin-bottom: 4px;
  font-size: 14px;
  text-transform: uppercase;
}
.account-holder .settings-content .tab-title {
   font-size: 22px;
}
.account-holder .group-cot-container > .group-cot{
  .student-tile{
    .exam-tab{
      overflow: hidden;
      .rotate-content{
        padding-top: 0;        
        .assessmentStatus-0,
        .assessmentStatus-1,
        .assessmentStatus-2{
          position: relative;
          height: 100%;
          justify-content: center;
          margin-bottom: 8px;
          &:before{
            content: "";
            display: inline-block;
            flex: 0 0 auto;
            vertical-align: text-top;
            width: 18px;
            height: 18px;
            margin-right: 8px;
            background: url(/imgs/vectors/clock-error-yellow.svg) 00 no-repeat;
            background-size: contain !important;
          }
        }
        
        .assessmentStatus-1{
          color: red;
          &::before{            
            background: url(/imgs/vectors/clock-error.svg) 00 no-repeat;
          }          
        }
        .assessmentStatus-2{
          color: #35c42e;
          &::before{            
            background: url(/imgs/vectors/clock-approved.svg) 00 no-repeat;
          }          
        }    
        .assessmentBtns{
          gap: 8px;
          justify-content: center;
          margin-top: 8px;
          .btn{
            text-decoration: none;
            padding: 8px 22px;
            width: fit-content;
            min-width: auto;
            font-size: 12px;
            line-height: 1;
            color: #fff;
            border: 1px solid #fff;
            transition: linear 0.2s;
            &.green{
              background: #24d66f;
              &:hover{
                background: #1ae791;
              }
            }
            &.red{
              background: #eb5757;
              &:hover{
                background: #ff3f3f;
              }
            }
          }
        }  
      }
      & > .rotate-menu{
        width: 100%;
        overflow: auto;
        &> ul > li{
        width: 260px;
        }
        &::-webkit-scrollbar {
          width: 4px;
          height: 0px;
          
          border-radius: 10px;
        }
        &::-webkit-scrollbar-thumb {
          border-radius: 10px;
          background-color: transparent;
          border: transparent;
        }
        &::-webkit-scrollbar-track {
          -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 10%);
          background-color: transparent;
          border-radius: 5px;
        }
      }
      &::before{
        content: '';
        display: none;
      }
    }
  }
}
.silver-grid.grid-examFile{
  .status{
    gap: 6px;
    text-align: left;
    &::after{
      display: none;
    }
    &::before{
      flex: 0 0 auto;
      content: "";
      display: block;
      width: 16px;
      height: 16px;
      background-size: contain !important;
    }
    &.uploaded{
      &::before{
        background: url(/imgs/vectors/clock-approved.svg) 00 no-repeat;
      }
    }
    &.unloaded{
      &::before{
        background: url(/imgs/vectors/clock-wait-gray.svg) 00 no-repeat;
      }            
      &.req{
        &::before{
          background: url(/imgs/vectors/cross-red.svg) 00 no-repeat;
        }               
      }
    }
  }
  .fileLoader{      
    justify-content: center;
    gap: 6px;
    &.fileSent{
      color: #35c42e;
      &:before{
        content: "";
        display: inline-block;
        flex: 0 0 auto;
        vertical-align: text-top;
        width: 18px;
        height: 18px;
        margin-right: 8px;
        background: url(/imgs/vectors/clock-approved.svg) 00 no-repeat;
        background-size: contain !important;
      }
    }
    a.download{
      display: block;
      font-size: 14px;
      color: #5097f4;
      width: fit-content;
      margin: auto;
      margin-bottom: 4px;
    }        
    .uploadInfo{
      font-size: 10px;
      line-height: 1;
      color: gray;
    }
    .silver-uploader {
      td{
        border: 0 ;
        overflow: visible;              
        .clearButton{
          right: 115px;
        }
      }
    }          
    .btn{
      text-decoration: none;
      padding: 8px 22px;
      width: fit-content;
      min-width: auto;
      margin-left: 6px;
      font-size: 12px;
      line-height: 1;
      img{
        position: absolute;
        left: 14px;
        top: 10px;
      }
      &:hover{
        color: #fff ;
      }
      &.send{
        background: #3977c8;
        color: #fff;
        &:hover{
          background: transparent;
          color: #3c3c3c;
        }
      }
    }
    td{
      border: 0 !important;
    }
  }
}
#popupBigFileUploader{
  width: 650px !important;
  height: 220px !important;
}
.account-holder.platform .account-body .student-tile-container .student-exam-content .btn-blue.diary{
  display: block;
  width: fit-content;
  margin: auto;
  margin-top: 16px;
  margin-bottom: 8px;
}
#popupCancelBigUpload{
  width: 400px !important;
  height: 200px !important;
  .btn{
    font-size: 14px;
    padding: 6px;
  }
}
.account-holder .account-body .student-tile-container.opened .student-exam-content{
  .exam-tab{
    overflow: hidden;
    .rotate-menu{
      overflow: auto;
      width: 100%;
    }
  }
}
.context-menu-container .context-menu-toggler::before {
    display: none !important;
  }
@media (min-width: 992px) {
  .account-holder .account-header .profile-tile {
    
    max-width: 250px;
  }
  .account-holder .account-header .profile-tile .profile-box {
    font-size: 16px;
    line-height: 18px;
  }
  .account-holder .account-header .profile-box .portrait-box {
    
    width: 110px;
    height: 110px;
  }
  .account-holder .account-header .profile-box .portrait {
    
    width: 110px;
    height: 110px;
  }
  .account-holder .account-header .profile-box > span {
    font-size: 16px;
  }
}
@media (min-width: 1300px) {
  .learning-calendar .table-calendar thead th div:first-child {
    display: none;
  }
  .learning-calendar .table-calendar thead th div:nth-child(2) {
    display: block;
  }
}
@media (max-width: 1200px) {
  .account-holder.organization .account-body .content-container .check-holder .check-container .gridCheck-container {
    overflow: scroll;
    overflow-y: hidden;
  }
  .account-holder.organization .account-body .content-container .check-holder .check-container .gridCheck-container > div,
  .account-holder.manager .account-body .content-container .check-holder .check-container .gridCheck-container > div {
    position: relative;
    width: 1100px;
  }
  .account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .flex-right,
  .account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .flex-right {
    gap: 32px;
    margin: 0;
  }
  .account-holder.platform .instructor-tile .tile-content .tile-info {
    flex-direction: column;
  }
  .account-holder.platform .instructor-tile .tile-content .tile-info .instructor-controls .flex-controls {
    max-width: 100%;
  }
  .account-holder.platform .instructor-tile .tile-content .tile-info .portrait-box {
    align-self: center;
  }
  .account-holder.platform .instructor-tile .tile-content .tile-info .auth-controls .flex-controls .silver-control {
    max-width: 351px;
  }
}
@media (min-width: 1350px) {
  .account-holder.instructor .account-body .group-tile .group-tile-container .group-info .group-tile-block,
  .account-holder.platform .account-body .group-tile .group-tile-container .group-info .group-tile-block {
    flex: 0 0 auto;
    flex-wrap: nowrap;
  }
}
@media (max-width: 1350px) {
  .account-holder.instructor .account-body .group-tile .group-tile-container .group-info .flex-col.small,
  .account-holder.platform .account-body .group-tile .group-tile-container .group-info .flex-col.small {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .account-holder .account-body .subject-topics .topic-item > .preview {
    height: 124px;
  }
  .account-holder .lesson-container .video-content .video-blocked{
    .video-block-msg{
      flex-direction: column;
      align-items: center;
      font-size: 20px;
      text-align: center  ;
      margin: 0 16px;
      &:before{
        width: 42px;
        height: 42px;
      }
    }
  }
}
@media (max-width: 1200px) {
  .account-holder .account-body .subject-topics .topic-item {
    width: calc((100% - 48px) / 3);
  }
}
@media (min-width: 1800px) {
  .account-holder.platform .slot-scheduler {
    max-width: calc(100% - 400px);
  }
  .account-holder.platform .slot-scheduler-new {
    max-width: 400px;
  }
}


@media (max-width: 992px) {
    body {
        
    }
    .account-holder {
        
        position: relative;
    }
    .account-holder .mobile-only {
        display: initial;
    }
    .account-holder .desktop-only {
        display: none;
    }
    .account-holder .account-header {
        padding: 7px 10px;
        height: 50px;
        position: relative;
    }
    .account-holder .account-header .toggler {
        position: relative;
        z-index: 99;
        width: 40px;
        height: 36px;
        padding: 0px;
        margin-right: 10px;
        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;
    }
    .account-holder .account-header .logo {
        height: 36px;
        width: 200px;
    }
    .account-holder .account-header .back {
        margin: 0;
        padding: 2px 10px;
        font-size: 12px;
    }
    .account-holder .account-header>.flex-row {
        min-height: 36px;
    }
    .account-holder .account-body {
        
        
        height: calc(100% - 50px);
        margin: 0;
    }
    .account-holder .account-body .left-menu {
        position: absolute;
        left: -100%;
        transition: all .2s;
    }
    .account-holder .account-body .left-menu.opened {
        left: 0;
    }
    .account-holder .account-body .left-menu ul li a::before {
        width: 12px;
        height: 12px;
    }
    .account-holder .account-body .left-menu ul:not(:first-child)::before {
        margin-bottom: 16px;
    }
    .account-holder .account-body .left-menu ul:not(:last-child) {
        margin-bottom: 16px;
    }
    .account-holder .account-body .main-content {
        width: 100%;
    }
    .account-holder #menu-overlay,
    .account-holder .main-overlay,
    .account-holder #messager-overlay {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100%;
        height: calc(100% - 50px);
        opacity: 0;
        margin-top: 50px;
        z-index: 999;
        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;
    }
    .account-holder .messanger-holder #messager-overlay {
        display: none;
        z-index: 500;
    }
    .account-holder #menu-overlay.opened,
    .account-holder .messanger-holder.toggle #messager-overlay {
        opacity: 1;
        visibility: visible;
    }
    .account-holder .account-header .functions {
        right: 10px;
        gap: 15px;
    }
    .account-holder .account-header .alert-box .bell,
    .account-holder .account-header .message-box .message {
        height: 20px;
        width: 20px;
    }
    .account-holder .profile-info .avatar {
        height: 36px;
        width: 36px;
    }
    .account-holder .account-header .alert-box .note-count,
    .account-holder .account-header .message-box .note-count {
        height: 10px;
        min-width: 10px;
    }
    .account-holder .account-body .content-container {
        padding: 16px 10px;
        height: initial;
    }
    .account-holder .account-body .tiles-container .white-tile {
        width: 100%;
    }
    .account-holder .account-body .white-tile .tile-content {
        padding: 16px 12px;
    }
    .account-holder .account-body .white-tile .tile-up .tile-img {
        width: calc(100% + 24px);
        margin-left: -12px;
        margin-top: -16px;
    }
    .account-holder .account-body .white-tile .tile-down::before {
        margin-top: 12px;
    }
    .account-holder .account-body .content-container>.name {
        margin-bottom: 12px;
    }
    .account-holder .account-body .title {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 16px;
    }
    .account-holder .account-body .title.bold {
        margin-bottom: 8px;
    }
    .account-holder .account-body .white-tile .scale.invisible {
        display: none;
    }
    .account-holder .account-body .subject-item>a:first-child {
        font-size: 16px;
        line-height: 18px;
    }
    .account-holder .account-body .subject-topics {
        display: block;
    }
    .account-holder .topic-selector .topic-selector-container .subject-topics {
        display: flex;
    }
    .account-holder .account-body .subject-topics .topic-item {
        width: 100%;
        margin-bottom: 24px;
    }
    .account-holder .account-body .subject-topics .topic-item:last-child {
        margin-bottom: 0;
    }
    .account-holder .account-body .subject-topics .topic-item .preview {
        height: 24vh;
    }
    #TestInfo {
        font-size: 14px;
        line-height: 18px;
    }
    #TestInfo .flex-row {
        display: block;
        margin: 0px;
    }
    #TestInfo>.name {
        font-size: 16px;
        line-height: 20px;
    }
    .testing-module ul.question-bar {
        margin: 5px 0;
    }
    #TestQuestion {
        padding: 12px;
    }
    #TestQuestion>.name {
        font-size: 16px;
    }
    #TestQuestion .answer {
        margin-bottom: 12px;
    }
    #TestQuestion .buttons {
        text-align: center;
        margin: 0 5px;
        margin-top: 5px;
    }
    #TestQuestion .buttons>.button {
        border-radius: 40px;
        padding: 10px 16px;
        font-size: 14px;
        display: block;
    }
    .testing-module ul.question-bar {
        margin: 0;
        margin-left: 0;
    }
    .account-holder .navigation {
        position: relative;
        left: 0;
        width: auto;
        margin-bottom: 8px;
    }
    .account-holder .navigation .play {
        display: flex;
    }
    
    .account-holder .lesson-title {
        margin-bottom: 16px;
    }
    .account-holder .lesson-container .part-title {
        margin-bottom: 8px;
    }
    .account-holder .lesson-container .video-content {
        margin-bottom: 32px;
    }
    .account-holder .lesson-container .tabs-menu ul.menu {
        margin-bottom: 16px;
    }
    .account-holder .lesson-container .tabs-menu ul.menu li {
        font-size: 16px;
    }
    .account-holder .lesson-container .tabs-menu {
        margin-bottom: 24px;
    }
    .account-holder .lesson-container .presentations {
        margin-bottom: 24px;
    }
    .account-holder .lesson-container .materials {
        margin-bottom: 24px;
    }
    .account-holder .account-body .settings-content {
        padding: 4px 10px 16px 10px;
    }
    .account-holder .account-body .settings-content .settings-tab-holder {
        width: calc(100% + 20px);
        margin-left: -10px;
    }
    .account-holder .account-body .settings-content .settings-tab {
        margin: 0 10px;
    }
    .account-holder .account-body .settings-content .settings-tab .menu-item {
        font-size: 12px;
        line-height: 16px;
        width: fit-content;
    }
    .account-holder .account-body .block-title {
        flex-wrap: wrap;
    }
    .account-holder .topic-selector .topic-selector-container {
        padding: 16px 10px;
    }
    .account-holder .topic-selector .topic-selector-container .topic-title {
        margin-bottom: 8px;
    }
    .account-holder .topic-selector .topic-selector-container .subject-topics {
        justify-content: space-between;
        gap: 12px;
    }
    .account-holder .request-page .textarea-container {
        padding: 16px;
    }
    .account-holder .request-page .textarea-container>.flex-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .account-holder .request-page .textarea-container .send {
        align-self: center;
    }
    .account-holder .request-page .request-chat {
        margin-bottom: 32px;
        height: calc(100% - 254px);
    }
    .account-holder .request-page .textarea-container textarea {
        max-height: 150px;
    }
    .account-holder .messanger-holder {
        width: calc(100vw + 20px);
        height: calc(100vh + 32px);
        margin: -16px -10px -16px -10px;
    }
    .account-holder .contact-menu {
        width: 300px;
    }
    .account-holder .messanger-chat {
        width: calc(100% - 300px);
    }
    .account-holder .messanger-chat .message-chat-holder .messages-container .files-rows .message-files {
        gap: 8px;
    }
    .account-holder .messanger-chat .message-chat-holder .message .text {
        font-size: 14px;
        line-height: 16px;
    }
    .account-holder .lesson-container .tabs-menu .tab textarea.note-area {
        margin-bottom: 8px;
        min-height: 60px;
    }
    .account-holder .lesson-container .tabs-menu .tab textarea.note-area,
    .account-holder .lesson-container .tabs-menu .tab .note {
        font-size: 14px;
        line-height: 16px;
    }
    .account-holder .lesson-container .tabs-menu .tab .note .delete-note {
        display: block;
        left: unset;
        right: 0;
        opacity: 1;
        margin: 0;
    }
    .account-holder .lesson-container .tabs-menu .tab .note .text {
        padding-right: 16px;
    }
    .account-holder .personal-content .document .newfiles-container {
        margin: 12px 0;
    }
    .account-holder .personal-content .document .status {
        margin: 12px 0;
    }
    .account-holder .personal-content .group-title {
        margin: 16px 0;
    }
    .account-holder .personal-content .document-holder:not(:last-child):after {
        margin: 16px 0;
    }
    
    .account-holder .contact-menu,
    .account-holder .messanger-chat {
        width: 100vw;
        position: absolute;
        top: 0;
        transition: all .3s;
    }
    .account-holder .messanger-chat .message-chat-holder {
        height: calc(100% - 68px);
    }
    .account-holder .messanger-holder {
        width: 100vw;
        height: calc(100vh - 50px);
    }
    .account-holder .messanger-holder .contact-menu {
        left: 0;
        z-index: 200;
        border: none;
    }
    .account-holder .messanger-holder.toggle .contact-menu {
        left: -110%;
        transition: all .5s;
    }
    .account-holder .messanger-holder .messanger-chat {
        right: -110%;
        z-index: 900;
    }
    .account-holder .messanger-holder.toggle .messanger-chat {
        right: 0;
    }
    .account-holder .messanger-chat .message-contact-container {
        display: block;
    }
    .account-holder .messanger-chat .message-chat-holder .message-files .doc .name {
        max-width: 100px;
    }
    .account-holder .messanger-holder #messager-overlay {
        display: block;
    }
    .account-holder .messanger-chat .message-contact .back {
        display: block;
        margin: 0;
    }
    .account-holder .messanger-chat .message-contact .contact-name {
        max-width: 200px;
    }
    .account-holder.organization .account-body .content-container .check-holder .check-container .check-name {
        font-size: 16px;
        line-height: 20px;
    }
    .account-holder.organization .account-body .content-container .check-holder .check-container .check-name>.flex-row {
        flex-wrap: wrap;
        gap: 16px;
    }
    .account-holder.organization .account-body .content-container .check-holder .check-container .check-btns .btn-blue.load {
        font-size: 12px;
        line-height: 16px;
        padding: 8px 12px;
    }
    .account-holder.organization .account-body .content-container .check-holder .check-container .check-description {
        font-size: 14px;
        line-height: 18px;
    }
    .account-holder.organization .account-body .content-container .check-holder .check-container .check-controls {
        flex-direction: column-reverse;
        gap: 16px;
    }
    .account-holder.organization .account-body .content-container .check-holder .check-container .check-controls .check-right-controls {
        width: 100%;
        align-items: flex-start;
    }
    .account-holder.organization .account-body .content-container .check-holder .check-container .check-controls .remark span {
        margin-bottom: 8px;
    }
    .account-holder.organization .account-body .content-container .check-holder .check-container .check-controls .check-right-controls .right-control span {
        font-size: 14px;
        line-height: 18px;
        min-width: 70px;
    }
    .account-holder .settings-content .tab-title,
    .account-holder .personal-content .tab-title {
        margin-top: 16px;
    }
    .prof-rotate>.rotate-menu {
        width: 100%;
        overflow: auto;
    }
    .prof-rotate>.rotate-menu .prof-rotate>.rotate-menu::-webkit-scrollbar {
        display: none;
        height: 0;
    }
    
    .prof-rotate>.rotate-menu>ul {
        width: fit-content;
    }
    .account-holder.instructor .account-body .group-tile .group-tile-container,
    .account-holder.platform .account-body .group-tile .group-tile-container {
        padding: 10px;
    }
    .account-holder.instructor .account-body:not(:has(.instructor-content)) .group-tile .group-tile-container,
    .account-holder.platform .account-body:not(:has(.instructor-content)) .group-tile .group-tile-container {
        padding-top: 22px;
    }
    .account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .exam-student,
    .account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .exam-student {
        font-size: 14px;
        line-height: 18px;
    }
    .account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .exam-student::after,
    .account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .exam-student::after {
        margin: 12px 0;
    }
    
    .learning-calendar .table-calendar tbody td .day-content {
        display: none;
    }
    .learning-calendar .table-calendar thead th {
        padding: 12px;
    }
    .learning-calendar .table-calendar tbody td {
        padding: 8px;
    }
    .learning-calendar .table-calendar tbody td .day {
        font-size: 20px;
        line-height: 20px;
        margin-bottom: 0px;
    }
    
    .learning-calendar .table-calendar tbody td.active .day {
        color: #5097F4;
    }
    .learning-calendar .table-calendar tbody td:hover {
        box-shadow: 0 1px 9px 1px rgba(0, 0, 0, 0.28);
    }
    .account-holder .account-body .schedule-content,
    .account-holder .account-body .instructor-content {
        margin-bottom: 16px;
    }
    .account-holder .account-body .instructor-content {
        position: relative;
        
    }
    .account-holder .account-body .schedule-content {
        position: relative;
        padding-top: 48px;
    }
    .account-holder .account-body .schedule-content .schedule-filters,
    .account-holder.platform .instructor-content .schedule-filters,
    .account-holder.instructor .content-container .schedule-filters {
        flex-direction: column;
        align-items: flex-start;
    }
    .account-holder.platform .instructor-content .schedule-filters .filter-container,
    .account-holder.instructor .content-container .schedule-filters .filter-container {
        width: 100%;
        max-width: 100% !important;
    }
    .account-holder .account-body .instructor-content #filter-menu .toggler {
        top: 0;
    }
    .account-holder .account-body .schedule-content #filter-menu .toggler {
        top: 4px;
        right: 0;
    }
    .account-holder .account-body .cell-tile {
        display: block;
        position: relative;
        width: 100%;
        box-shadow: 4px 4px 8px 0px rgba(113, 113, 113, 0.25);
        backdrop-filter: blur(4px);
        border-radius: 10px;
        background: #fff;
        margin-bottom: 31px;
    }
    .account-holder .account-body .cell-tile-container {
        padding: 10px;
    }
    .account-holder .account-body .cell-tile .flex-tile-cell {
        display: flex;
        flex-direction: column;
        gap: 8px;
        font-size: 12px;
        line-height: 16px;
    }
    .account-holder .account-body .cell-tile .flex-tile-cell .group-info {
        flex-wrap: wrap;
        gap: 8px;
    }
    .account-holder .account-body .cell-tile .flex-tile-cell .group-info .name,
    .account-holder .account-body .cell-tile .flex-tile-cell .group-info .object-name {
        font-weight: 700;
    }
    .account-holder .account-body .cell-tile .flex-tile-cell .group-info .count {
        text-decoration: underline;
    }
    .account-holder .account-body .cell-tile .flex-tile-cell .group-info .corp {
        display: flex;
        gap: 8px;
        align-items: center;
        color: #2F80ED;
    }
    .account-holder .account-body .cell-tile .flex-tile-cell .group-info .corp::before {
        content: '';
        display: block;
        width: 15px;
        height: 12px;
        background: url(/imgs/vectors/corp.svg) 0 0 no-repeat;
        background-size: contain !important;
    }
    .account-holder .account-body .cell-tile .flex-tile-cell .group-info>.flex-row {
        flex-wrap: wrap;
        gap: 8px;
    }
    .account-holder .account-body .cell-tile .flex-tile-cell .class {
        align-items: flex-start;
        gap: 16px;
    }
    .account-holder .account-body .cell-tile .flex-tile-cell .class .time {
        min-width: 70px;
    }
    .account-holder .account-body .cell-tile .flex-tile-cell .class .name {
        font-style: italic;
    }
    .account-holder.instructor .account-body .student-tile .student-tile-container .status,
    .account-holder.platform .account-body .student-tile .student-tile-container .status,
    .account-holder.instructor .account-body .student-tile .student-tile-container .title-toggler,
    .account-holder.platform .account-body .student-tile .student-tile-container .title-toggler {
        font-size: 11px;
        line-height: 14px;
    }
    .account-holder.instructor .account-body .student-tile .student-tile-container .status,
    .account-holder.platform .account-body .student-tile .student-tile-container .status {
        margin-left: 24px;
    }
    .account-holder.instructor .account-body .student-tile .student-tile-container .status::after,
    .account-holder.platform .account-body .student-tile .student-tile-container .status::after {
        width: 11px;
        height: 11px;
    }
    .account-holder.platform .account-body .student-tile-container .student-exam-content .btn-blue,
    .account-holder.instructor .account-body .student-tile-container .student-exam-content .btn-blue {
        margin-bottom: 20px;
    }
    .account-holder.instructor .account-body .group-cot .carousel-container .carousel-class .carousel-class-container .students-container .student>div:first-child,
    .account-holder.platform .account-body .group-cot .carousel-container .carousel-class .carousel-class-container .students-container .student>div:first-child {
        min-width: 190px;
        text-align: start;
    }
    .account-holder.instructor .account-body .student-tile-container.opened .student-exam-content>.list,
    .account-holder.platform .account-body .student-tile-container.opened .student-exam-content>.list {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .account-holder.instructor .account-body .student-tile-container.opened .student-exam-content>.list .student-record.group,
    .account-holder.platform .account-body .student-tile-container.opened .student-exam-content>.list .student-record.group {
        background-color: #E9E8E8;
        margin: 0 -16px;
        padding: 0 16px;
    }
    .account-holder.instructor .account-body .student-tile-container.opened .student-exam-content>.list .student-record>.flex-row,
    .account-holder.platform .account-body .student-tile-container.opened .student-exam-content>.list .student-record>.flex-row {
        gap: 8px;
    }
    .account-holder.instructor .account-body .student-tile-container.opened .student-exam-content>.list .student-record.group:not(:first-child),
    .account-holder.platform .account-body .student-tile-container.opened .student-exam-content>.list .student-record.group:not(:first-child) {
        margin-top: -9px;
        padding-top: 8px;
    }
    .account-holder.instructor .account-body .student-tile-container.opened .student-exam-content>.list .student-record::after,
    .account-holder.platform .account-body .student-tile-container.opened .student-exam-content>.list .student-record::after,
    .account-holder.instructor .account-body .student-tile-container.opened .student-exam-content>.list .student-record:first-child::before,
    .account-holder.platform .account-body .student-tile-container.opened .student-exam-content>.list .student-record:first-child::before {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background: #E9E8E8;
        margin-top: 8px;
    }
    .account-holder.instructor .account-body .student-tile-container.opened .student-exam-content>.list .student-record:first-child::before,
    .account-holder.platform .account-body .student-tile-container.opened .student-exam-content>.list .student-record:first-child::before {
        margin-top: 0;
        margin-bottom: 8px;
    }
    .account-holder.instructor .account-body .student-tile-container.opened .student-exam-content>.list>.flex-row,
    .account-holder.platform .account-body .student-tile-container.opened .student-exam-content>.list>.flex-row {
        gap: 8px;
    }
    .account-holder.instructor .account-body .student-tile-container.opened .student-exam-content>.list .text,
    .account-holder.platform .account-body .student-tile-container.opened .student-exam-content>.list .text {
        font-size: 12px;
        line-height: 1.1;
        max-width: calc(100% - 40px);
        text-align: start;
    }
    .account-holder.platform .slots-filters {
        justify-content: space-between;
    }
    .account-holder.platform .slots-filters .toggler {
        line-height: 0;
    }
    .account-holder.platform .slots-filters .filter-icon {
        width: 36px;
        height: 36px;
    }
    .account-holder.platform .slots-filters #filter-menu-toggler {
        top: unset;
        left: unset;
        border: 0;
    }
    .account-holder.platform .slots-filters #filter-menu .toggler {
        top: unset;
    }
    .account-holder.platform .slots-filters .apply-filter {
        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%);
    }
    .account-holder.platform .slots-filters label,
    .account-holder.platform .instructor-content .schedule-filters .filter-container>div:first-child,
    .account-holder.instructor .schedule-filters .filter-container>div:first-child {
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 6px;
    }
    .account-holder.platform .slots-filters #filter-menu #filter-menu-holder,
    .account-holder .instructor-content #filter-menu #filter-menu-holder,
    .account-holder .schedule-content #filter-menu #filter-menu-holder {
        padding-top: 40px;
    }
    .account-holder.platform .slots-filters #filter-menu .filter-menu-content,
    .account-holder .account-body .instructor-content #filter-menu .filter-menu-content {
        height: calc(100% - 81px);
    }
    .account-holder.platform .slots-filters #filter-menu .filter-menu-content .filters {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .account-holder.platform .slots-filters #filter-menu .filter-menu-content .filters .filter:last-child {
        margin: 0;
    }
    .account-holder.platform .slots-filters #filter-menu .filter-menu-content .filters>.flex-row {
        gap: 16px;
    }
    .account-holder.platform .slots-filters #filter-menu .filter-menu-content .filters>.flex-row .filter {
        width: 100%;
    }
    .account-holder.platform .slots-filters .filter-menu-reset {
        display: none !important;
    }
    .account-holder.platform .slots-filters .filter-menu-reset.visible {
        display: initial !important;
    }
    .account-holder.platform .slot-scheduler {
        max-width: 100%;
    }
    .account-holder.platform .slot-scheduler-holder {
        height: calc(100vh - 190px);
    }
    .account-holder.platform .slot-scheduler-new {
        display: block;
        position: fixed;
        top: 0;
        left: 1000px;
        width: 100%;
        height: 100%;
        z-index: 1001;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        border-radius: 0;
        margin-top: 50px;
    }
    .account-holder.platform .slot-scheduler-new.opened {
        background: #F8F9FF;
        height: calc(100vh - 50px);
        left: 0;
        left: calc(100% - 300px);
        overflow: auto;
    }
    .account-holder.platform .slot-scheduler-new .fixed-title {
        background: #F8F9FF;
    }
    .account-holder.platform .slot-scheduler-new.opened .person-type {
        margin: auto;
    }
    .account-holder.instructor .account-body .cot-content>.student-tile.noData,
    .account-holder.platform .account-body .cot-content>.student-tile.noData {
        font-size: 14px;
        line-height: 18px;
    }
    .account-holder.instructor .account-body .student-tile.noData::before,
    .account-holder.platform .account-body .student-tile.noData::before {
        width: 14px;
        height: 14px;
        vertical-align: middle;
    }
    .account-holder.instructor .account-body .group-cot .cot-content .doc,
    .account-holder.platform .account-body .group-cot .cot-content .doc {
        width: 100%;
    }
    .account-holder.platform .platform-content .tab-fields,
    .account-holder.platform .platform-content .controls-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .account-holder.platform .platform-content .flex-controls {
        width: 100%;
        gap: 4px;
    }
    .account-holder.platform .platform-content .flex-controls .control-title {
        font-size: 14px;
    }
    .account-holder.platform .platform-content .flex-controls.bank {
        max-width: 500px;
    }
    .account-holder.platform .platform-content .silver-textbox {
        font-size: 12px;
        padding: 8px;
    }
    .account-holder.platform .instructor-content #filter-menu .toggler {
        top: -46px;
    }
    .account-holder.platform .instructor-content .instructor-card #filter-menu .toggler {
        top: 4px;
    }
    .account-holder.platform .instructor-content .schedule-list-content {
        margin-top: 20px;
    }
    .account-holder.platform .instructor-content .schedule-list-content {
        margin-top: 46px;
    }
    .account-holder.platform .account-body .student-tile-container.opened .student-exam-content>.list .text .remark,
    .account-holder.instructor .account-body .student-tile-container.opened .student-exam-content>.list .text .remark {
        font-size: 10px;
        line-height: 1.1;
        color: #a5a5a5;
        margin-top: 2px;
        text-align: start;
        font-style: italic;
    }
    .account-holder.platform .account-body .student-tile-container .student-exam-content .list .status-btns .accept,
    .account-holder.platform .account-body .student-tile-container .student-exam-content .list .status-btns .decline,
    .account-holder.instructor .account-body .student-tile-container .student-exam-content .list .status-btns .accept,
    .account-holder.instructor .account-body .student-tile-container .student-exam-content .list .status-btns .decline {
        width: 24px;
        height: 24px;
    }
    .account-holder.platform .program-card .spec-tile .custom-checkbox.settings>.cb-container>label:not(.imposter) {
        width: 100%;
        text-align: start;
    }
    .account-holder.platform .program-card .spec-content.callback .callback-message,
    .account-holder.platform .program-card .spec-tile .noData {
        margin-top: 8px;
    }
    .personal-popup.handbook .grid-container {
        
        height: calc(100vh - 600px);
    }
    .personal-popup.handbook .field-container:not(:last-child),
    .personal-popup.handbook.addCriteria .flex-row.controls {
        margin-bottom: 8px;
    }
    .personal-popup.handbook.addCriteria .flex-row.controls .field-container {
        margin: 0;
    }
    .account-holder.platform .account-body .mobile-only.list .student-tile.noData {
        box-shadow: none;
        font-size: 14px;
        line-height: 1.1;
    }
    .account-holder.platform .account-body .mobile-only.list .student-tile.noData::before {
        vertical-align: middle;
    }
    .account-holder.instructor .account-body .group-cot .title-toggler::before,
    .account-holder.platform .account-body .group-cot .title-toggler::before,
    .account-holder.platform .program-card .spec-tile .title-toggler::before {
        align-self: baseline;
    }
    .account-holder.instructor .account-body .group-cot.opened .cot-content>div .owl-carousel .owl-stage-outer,
    .account-holder.platform .account-body .group-cot.opened .cot-content>div .owl-carousel .owl-stage-outer {
        overflow: visible;
    }
    .account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .flex-right .points.failed,
    .account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .flex-right .status.suspended,
    .account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .flex-right .points.failed,
    .account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .flex-right .status.suspended {
        font-size: 14px;
    }
    .account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .tile-top .btn-blue,
    .account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .tile-top .btn-blue,
    .account-holder.instructor .account-body .group-tile .group-tile-container .update .btn-blue,
    .account-holder.platform .account-body .group-tile .group-tile-container .update .btn-blue {
        padding: 8px 10px;
        font-size: 13px;
        line-height: 1;
    }
    .account-holder.instructor .account-body .group-cot .cot-content.attendance,
    .account-holder.platform .account-body .group-cot .cot-content.attendance {
        padding-left: 12px;
    }
    .personal-popup.disqualify .personal-popup-body .reasons-container {
        padding-left: 130px;
    }
    .personal-popup.instructor>.popup-container>.head {
        padding-left: 16px;
    }
    .personal-popup.instructor .personal-popup-content {
        padding: 8px 16px;
    }
    .account-holder .lesson-holder {
        padding: 0;
    }
    .account-holder .lesson-holder .lesson-container {
        padding-right: 0;
    }
    .account-holder .breadcrumb {
        margin-bottom: 18px;
    }
    .account-holder .account-body .white-tile .stage-status.complete {
        right: 12px;
    }
    .prof-grid.grid-org .table-silver>tbody>tr>td .grid-status::before {
        width: 14px;
        height: 14px;
        margin-right: 4px;
    }
    .account-holder.platform .instructor-tile .tile-content .tile-info {
        gap: 16px;
    }
    .account-holder.platform .slot-scheduler-holder .table-scroller {
        bottom: 0;
    }
    .table-scroller {
        z-index: 9;
    }
    .account-holder .support-content .support-title,
    .account-holder .alerts-container .alert-title {
        font-size: 20px;
        line-height: 24px;
    }
    .account-holder .request-tile {
        font-size: 14px;
        line-height: 18px;
    }
    .account-holder .request-tile .date {
        margin-right: 8px;
    }
    .account-holder .content-container>.support-content:not(:last-child),
    .account-holder .content-container .alerts-container {
        margin-bottom: 12px;
    }
    .account-holder .request-page .request-chat .message .text,
    .account-holder .messanger-chat .message-chat-holder .message .text {
        font-size: 14px;
        line-height: 16px;
    }
    .account-holder .account-body .white-tile.certificate .tile-title .time {
        flex-direction: column;
        align-items: flex-end;
    }
    .account-holder.platform .account-body .group-tile .group-tile-container .group-info .flex-col.small.program-name,
    .account-holder.instructor .account-body .group-tile .group-tile-container .group-info .flex-col.small.program-name {
        width: 100%;
        max-width: 100%;
    }
    .account-holder.manager .account-body .content-container .check-mainHolder {
        height: calc(100vh - 268px);
    }
    .account-holder #employeeTabControl .employeeInfoTile {
        padding: 4px 10px 16px 10px;
    }
    .personal-popup.handbook .flex-row.examHandbook>.field-container:not(:first-child) {
        margin-bottom: 0;
    }
}
@media (max-width: 850px) {
    .account-holder .settings-content .tab-fields,
    .account-holder #employeeTabControl .fields-container .tab-fields {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .account-holder .settings-content .tab-fields.wrapped,
    .account-holder #employeeTabControl .fields-container .tab-fields.wrapped {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .account-holder .settings-content .fields-container,
    .account-holder #employeeTabControl .fields-container {
        gap: 16px;
    }
    .account-holder .settings-content .field-container,
    .account-holder .settings-content .field-container.big,
    .account-holder #employeeTabControl .field-container,
    .account-holder #employeeTabControl .field-container.big {
        max-width: none;
        width: 100%;
        min-height: auto;
    }
    .account-holder .settings-content .field-container.small,
    .account-holder #employeeTabControl .field-container.small {
        max-width: 48%;
    }
    .account-holder .account-body .settings-content .settings-tab .scale {
        height: 4px;
    }
    .personal-popup.handbook.addCriteria .flex-row.controls .field-container.marker {
        align-self: flex-end;
    }
    .personal-popup.org-info .flex-fields {
        margin-bottom: 16px;
    }
    .account-holder.platform .slot-scheduler-new .fixed-title .toggler {
        right: 16px;
        top: 16px;
    }
}
@media (max-width: 750px) {
    .personal-popup.org-info .personal-popup-body {
        padding-bottom: 16px;
    }
    .personal-popup.org-info .personal-popup-content {
        padding: 0 16px;
    }
    .personal-popup.org-info .flex-fields {
        flex-direction: column;
        gap: 16px;
    }
    .personal-popup.org-info .control-avatar {
        flex-direction: column;
    }
    .personal-popup.org-info .portrait-box,
    .personal-popup.org-info .portrait-box .portrait {
        width: 71px;
        height: 71px;
    }
    .personal-popup.org-info .flex-fields:not(.half) .field-container,
    .personal-popup.org-info .flex-fields.half .field-container,
    .personal-popup.org-info .flex-fields .field-container,
    .personal-popup.org-info .controls-container {
        width: 100%;
        max-width: 100% !important;
    }
    .personal-popup.org-info .personal-popup-body>.field-container:not(:last-child) {
        margin-bottom: 16px;
    }
}
@media (max-width: 720px) {
    .account-holder .custom-checkbox.settings {
        width: 100%;
    }
    .account-holder .custom-checkbox.settings>.cb-container>label {
        width: 100%;
        text-align: end;
    }
    .account-holder .lesson-container .tabs-menu .tab .note .time {
        margin-right: 0px;
    }
    .account-holder .personal-content .field-container {
        min-width: 100%;
        margin-right: 0;
        min-height: auto;
    }
    .account-holder .account-body .personal-content .tab-content {
        overflow-x: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .horizontal-tab-holder::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }
    .account-holder .personal-content .fields-container {
        gap: 16px 0;
    }
    .account-holder .settings-content .tab-title,
    .horizontal-tabcontrol .tab-content-holder .telegramIntegration .title,
    .account-holder .personal-content .tab-title {
        font-size: 16px;
        line-height: 18px;
    }
    .account-holder .personal-content .group-title {
        font-size: 14px;
        line-height: 16px;
    }
    .account-holder .personal-content .tb-name {
        font-size: 12px;
        line-height: 14px;
    }
    .horizontal-tab .menu-item {
        max-width: 175px;
        font-size: 14px;
        line-height: 16px;
    }
    .horizontal-tab .strip {
        width: 175px;
        height: 4px;
    }
    .account-holder .personal-content .document .flex-btns .btn-approve,
    .account-holder .personal-content .document .flex-btns .btn-decline {
        font-size: 12px;
        line-height: 14px;
        padding: 8px 12px;
    }
    .account-holder .personal-content .document .flex-btns .btn-approve:before,
    .account-holder .personal-content .document .flex-btns .btn-decline:before {
        width: 20px;
        height: 20px;
    }
    .account-holder .personal-content .field-container.tiny {
        min-width: 100%;
        max-width: 100%;
    }
    .account-holder .personal-content .field-container.small {
        min-width: 100%;
        max-width: 100%;
    }
    .account-holder .personal-content .field-container.medium {
        min-width: 100%;
        max-width: 100%;
    }
    .account-holder .personal-content .field-container.big {
        min-width: 100%;
        max-width: 100%;
    }
    .account-holder.instructor .account-body .group-cot .carousel-container .carousel-class .carousel-class-containerm .account-holder.platform .account-body .group-cot .carousel-container .carousel-class .carousel-class-container {
        padding: 8px;
    }
    .account-holder.instructor .account-body .group-tile .group-tile-container .group-info,
    .account-holder.platform .account-body .group-tile .group-tile-container .group-info {
        gap: 8px;
        flex-wrap: wrap;
    }
    .account-holder.instructor .account-body .group-tile .group-tile-container .group-info .group-tile-block,
    .account-holder.instructor .account-body .group-tile .group-tile-container .group-info .group-tile-block:last-child,
    .account-holder.platform .account-body .group-tile .group-tile-container .group-info .group-tile-block,
    .account-holder.platform .account-body .group-tile .group-tile-container .group-info .group-tile-block:last-child {
        justify-content: space-between;
        width: 100%;
        gap: 8px;
    }
    .account-holder.instructor .account-body .group-tile .group-tile-container .group-info .flex-col.program-name,
    .account-holder.platform .account-body .group-tile .group-tile-container .group-info .flex-col.program-name {
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .account-holder.instructor .account-body .group-tile .group-tile-container .group-info .flex-col.program-name,
    .account-holder.platform .account-body .group-tile .group-tile-container .group-info .flex-col.program-name {
        width: 100%;
    }
    .account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .exam-student>.flex-row,
    .account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .exam-student>.flex-row {
        flex-direction: column;
        flex-direction: column;
        align-items: flex-start;
    }
    .account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .flex-right .status-container,
    .account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .flex-right .status-container {
        min-width: auto;
        max-width: 185px;
        width: 100%;
    }
    .account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .flex-right .btn-blue,
    .account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .flex-right .btn-pink,
    .account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .flex-right .btn-blue,
    .account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .flex-right .btn-pink {
        font-size: 11px;
        line-height: 11px;
        padding: 8px 10px;
    }
    .account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .flex-right,
    .account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .flex-right {
        gap: 16px;
        width: 100%;
        justify-content: center;
    }
    .account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .flex-left .FIO,
    .account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .flex-left .FIO {
        font-size: 14px;
    }
    .account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .tile-top .time,
    .account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .tile-top .time {
        font-size: 13px;
    }
    .account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .tile-top .name,
    .account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .tile-top .name {
        font-size: 14px;
    }
    .account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .tile-top .theoryExamPhoto,
    .account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .tile-top .theoryExamPhoto{
        font-size: 13px;
        width: auto;
    }
    
    .personal-popup .silver-textbox,
    .personal-popup .silver-memo {
        font-size: 12px;
    }
    .table-scheduler .months-container .cal-month {
        font-size: 10px;
        line-height: 1.1;
        
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .table-scheduler.addscroll .months-container,
    .table-scheduler.addscroll .cal-week.static {
        width: 100px;
        min-width: 100px;
    }
    .table-scheduler.addscroll .cell-container {
        max-width: calc(100% - 100px);
    }
    .table-scroller {
        left: 100px;
    }
    .personal-popup.recruitment .flex-row.fields .field-container.date {
        width: 50%;
    }
    .personal-popup.recruitment .flex-row.fields.start {
        flex-wrap: wrap;
    }
    .personal-popup.recruitment .flex-row.fields .field-container.marker {
        padding-top: 0;
    }
    .personal-popup.instructor .instructor-controls .flex-controls {
        max-width: 100%;
    }
    .silver-control.prof-token .silver-tokenbox>div {
        font-size: 12px;
    }
    .personal-popup.instructor .btn-container {
        text-align: center;
    }
    .personal-popup.instructor .btn-blue {
        position: relative;
        margin: 16px 0;
        bottom: unset;
    }
    .account-holder .lesson-container .video-content .video-blocked{
        .video-block-msg{            
            font-size: 14px;
            line-height: 1.2;
            padding: 6px;
            &:before{
                width: 32px;
                height: 32px;
            }
        }
    }
}
@media (max-width: 600px) {
    .account-holder .account-header .logo {
        background: url(/imgs/header/logo-notext.svg) 00 no-repeat;
        width: 30px;
    }
    .account-holder .account-body .breadcrumb li {
        max-width: 50%;
    }
    .account-holder .account-body .white-tile .attribution {
        font-size: 10px;
        line-height: 11px;
    }
    .account-holder .lesson-container .tabs-menu .tab .save {
        margin-bottom: 16px;
    }
    .account-holder .lesson-container .tabs-menu .tab .notes-container {
        gap: 8;
    }
    .account-holder .lesson-container .tabs-menu .tab .note {
        font-size: 12px;
        line-height: 14px;
        gap: 8px;
    }
    .account-holder .lesson-container .tabs-menu .tab .note .time {
        min-width: 35px;
    }
    .account-holder .settings-content .pass-container.new {
        max-width: 336px;
    }
    .account-holder .settings-content .pass-container.new>.flex-row {
        flex-wrap: wrap;
    }
    .account-holder .topic-selector {
        max-width: 100%;
    }
    .account-holder .topic-selector .topic-selector-container .subject-topics .topic-item {
        width: 100%;
    }
    .account-holder .topic-selector .topic-selector-container .subject-topics .topic-item>.preview {
        height: 180px;
    }
    .account-holder .account-body .breadcrumb {
        display: none;
    }
    .account-holder .topic-selector .topic-selector-container .subject-topics {
        gap: 0;
    }
    .account-holder .request-page .request-chat .message .message-files {
        gap: 8px 16px;
    }
    .account-holder .request-page .textarea-container textarea {
        min-height: 60px;
        max-height: 110px;
    }
    .account-holder .support-content .support-title.flex-row {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 16px;
    }
    .account-holder .support-content .btn.request {
        align-self: flex-end;
    }
    .account-holder .messanger-chat .message-chat-holder .messages-container {
        margin-bottom: 60px;
    }
    .account-holder .messanger-chat .message-chat-holder .messages-textinput {
        position: absolute;
        width: 100%;
        left: 0;
        bottom: -7px;
    }
    .account-holder .account-body .white-tile.certificate .tile-title {
        font-size: 14px;
        line-height: 16px;
        gap: 16px;
    }
    .account-holder .account-body .white-tile.certificate .tile-content>.name,
    .account-holder .account-body .white-tile.certificate .grade,
    .account-holder .white-tile.certificate .doc {
        font-size: 12px;
        line-height: 14px;
    }
    .account-holder.organization .account-body .content-container .check-holder .check-container .check-controls .check-right-controls .right-control {
        width: 100%;
    }
    .account-holder.organization .account-body .content-container .check-holder .check-container .check-controls .check-right-controls .right-control .silver-control {
        width: 100% !important;
    }
    .prof-rotate>.rotate-menu .strip {
        width: 150px !important;
    }
    .prof-rotate>.rotate-menu>ul>li {
        width: 150px !important;
        font-size: 14px;
        line-height: 14px;
        padding: 0 10px;
    }
    .account-holder.organization .account-body .content-container .employee-info .text {
        font-size: 14px;
        line-height: 18px;
    }
    .account-holder.organization .account-body .content-container .employee-info .text a {
        font-size: 12px;
        line-height: 16px;
    }
    .account-holder.organization .account-body .content-container .employee-info {
        gap: 10px;
    }
    .account-holder.organization .account-body .content-container .employee-info .avatar {
        width: 60px;
        height: 60px;
    }
    .account-holder.instructor .account-body .group-tile .small-schedule .record,
    .account-holder.platform .account-body .group-tile .small-schedule .record {
        gap: 16px;
        font-size: 10px;
        line-height: 14px;
    }
    .account-holder.instructor .account-body .group-tile .small-schedule .record .time,
    .account-holder.platform .account-body .group-tile .small-schedule .record .time {
        min-width: 62px;
    }
    .account-holder.instructor .account-body .student-tile .student-tile-container>.flex-row,
    .account-holder.platform .account-body .student-tile .student-tile-container>.flex-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .account-holder.instructor .account-body .student-tile .student-tile-container .status,
    .account-holder.platform .account-body .student-tile .student-tile-container .status {
        gap: 0;
        align-items: flex-end;
    }
    .account-holder.instructor .account-body .student-tile .student-tile-container .status::after,
    .account-holder.platform .account-body .student-tile .student-tile-container .status::after {
        display: none;
    }
    .account-holder.instructor .account-body .student-tile .student-tile-container .status::before,
    .account-holder.platform .account-body .student-tile .student-tile-container .status::before {
        content: '';
        display: block;
        flex: 0 0 auto;
        width: 14px;
        height: 14px;
        background-size: contain !important;
        margin-right: 8px;
    }
    .account-holder.instructor .account-body .student-tile .student-tile-container .status.failed::before,
    .account-holder.platform .account-body .student-tile .student-tile-container .status.failed::before {
        background: url(/imgs/vectors/clock-error.svg) 00 no-repeat;
    }
    .account-holder.instructor .account-body .student-tile .student-tile-container .status.passed::before,
    .account-holder.platform .account-body .student-tile .student-tile-container .status.passed::before {
        background: url(/imgs/vectors/clock-approved.svg) 00 no-repeat;
    }
    .account-holder.instructor .account-body .student-tile .student-tile-container .status.await::before,
    .account-holder.platform .account-body .student-tile .student-tile-container .status.await::before {
        background: url(/imgs/vectors/clock-wait.svg) 00 no-repeat;
        filter: invert(50%) sepia(3%) saturate(1608%) hue-rotate(180deg) brightness(132%) contrast(107%);
    }
    .account-holder.instructor .account-body .student-tile .student-tile-container .status span:first-child,
    .account-holder.platform .account-body .student-tile .student-tile-container .status span:first-child {
        min-width: 95px;
    }
    .account-holder.instructor .account-body .group-cot .cot-content .doc,
    .account-holder.platform .account-body .group-cot .cot-content .doc {
        justify-content: space-between;
    }
    .account-holder.platform .instructor-tile .tile-content .tile-info .auth-controls .flex-controls>.flex-row,
    .account-holder.platform .instructor-tile .tile-content .tile-info .auth-controls .login {
        flex-direction: column;
        align-items: flex-start;
    }
    .account-holder.platform .instructor-tile .tile-content .tile-info .profilte-status {
        margin: 0;
    }
    .account-holder.platform .account-body .student-tile-container.opened .student-exam-content>.list .text .remark,
    .account-holder.instructor .account-body .student-tile-container.opened .student-exam-content>.list .text .remark {
        font-size: 9px;
    }
    .account-holder.platform .program-card .prof-rotate>.rotate-menu>ul>li,
    .account-holder.platform .program-card .prof-rotate>.rotate-menu .strip {
        width: 170px !important;
    }
    .account-holder.platform .program-card .program-tab {
        height: calc(89vh - 175px);
    }
    .account-holder.platform .account-body .student-tile.noData,
    .account-holder.platform .account-body .cot-content>.student-tile.noData {
        font-size: 12px;
        line-height: 1.1;
    }
    .account-holder.platform .account-body .student-tile.noData::before {
        width: 12px;
        height: 12px;
    }
    .personal-popup.disqualify .personal-popup-body .reasons-container .radio-row {
        display: flex;
        align-items: flex-start;
        font-size: 14px;
        line-height: 1.1;
    }
    .personal-popup.disqualify .personal-popup-body .big-title {
        font-size: 16px;
        line-height: 1.1;
    }
    .personal-popup.disqualify .personal-popup-body .reasons-container {
        padding-left: 90px;
    }
    .account-holder .account-body .tiles-container.practice .white-tile .info>div {
        width: 100% !important;
    }
    
    
    .account-holder.manager .orderInfo {
        font-size: 14px;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    .account-holder .lesson-holder .lesson-container .flex-row.video-progress-bar span{
        display: block;
    }
}
@media (max-width: 500px) {
    .account-holder .account-body .white-tile .tile-title>div {
        width: calc(100% - 15px);
    }
    .account-holder .account-body .white-tile .tile-title::before {
        width: 12px;
        margin-right: 5px;
    }
    .account-holder .account-body .white-tile .tile-title.heli::before {
        width: 15px;
    }
    .horizontal-tab .menu-item {
        font-size: 12px;
        line-height: 14px;
        max-width: 155px;
    }
    .horizontal-tab .strip {
        width: 155px;
    }
    .account-holder .rate {
        flex-direction: column;
        padding: 10px 16px;
    }
    .account-holder .rate .features {
        flex-direction: row;
        
    }
    .account-holder.organization .account-body .content-container .check-holder .check-container .check-name .name-items:first-child {
        width: 100%;
    }
    .account-holder.organization .account-body .content-container .check-holder .check-container .check-name .context-menu-container {
        position: absolute;
        right: 0;
        top: 0;
    }
    .personal-popup.disqualify .personal-popup-body .reasons-container {
        align-items: center;
        padding-left: 14px;
    }
    .account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .flex-right.mobile-break,
    .account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .flex-right.mobile-break {
        flex-direction: column;
        gap: 8px;
    }
    .account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .flex-right .status-container,
    .account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .flex-right .status-container {
        max-width: unset;
        width: auto;
    }
    .account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .flex-right .points.failed,
    .account-holder.instructor .account-body .group-cot .cot-content .group-tile-container.access .flex-right .status.suspended,
    .account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .flex-right .points.failed,
    .account-holder.platform .account-body .group-cot .cot-content .group-tile-container.access .flex-right .status.suspended {
        max-width: unset;
        width: auto;
    }
    .account-holder.platform .account-body .group-tile .group-tile-container {
        padding: 10px;
    }
    .account-holder.manager .grid-RBKPayment .table-silvergrid-body td {
        max-width: 140px;
    }
}
@media (max-width: 480px) {
    .personal-popup.handbook .flex-row.examHandbook>.field-container:not(:first-child) {
        width: 100%;
    }
}
@media (max-width: 460px) {
    .account-holder .settings-content .tab-fields.wrapped,
    .account-holder #employeeTabControl .tab-fields.wrapped {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .account-holder .settings-content .field-container.small,
    .account-holder #employeeTabControl .field-container.small {
        max-width: 100%;
    }
    .account-holder.instructor .account-body .group-cot .carousel-container .carousel-class .carousel-class-container .students-container .student,
    .account-holder.platform .account-body .group-cot .carousel-container .carousel-class .carousel-class-container .students-container .student {
        justify-content: space-between;
    }
    .account-holder .account-body .settings-content {}
    .account-holder.platform .program-card .program-tab {
        height: calc(89vh - 200px);
    }
}

.context-menu-container {
  display: block;
  position: relative;
  border-radius: 80px;
  background: transparent;
  width: 24px;
  height: 24px;
  text-align: center;
}
.context-menu-container .context-menu,
.context-menu.relative {
  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:hover .context-menu,
.context-menu.hover {
  display: block;
}
.context-menu-container .context-menu.right,
.context-menu.relative.right {
  right: 5px;
}
.context-menu-container .context-menu.left,
.context-menu.relative.left {
  left: 5px;
}
.context-menu-container .context-menu.up {
  top: unset;
  bottom: 0;
}
.context-menu-container .context-menu ul,
.context-menu.relative ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}
.context-menu-container .context-menu ul li,
.context-menu.relative ul li {
  padding: 7px;
  cursor: pointer;
  padding-left: 20px;
  border-radius: 4px;
  font-size: 14px;
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.context-menu-container .context-menu ul li:hover,
.context-menu.relative ul li:hover {
  background: #f2f6fa;
  color: #181717;
}
.context-menu-container .context-menu ul li.disabled,
.context-menu.relative ul li.disabled {
  cursor: default;
  color: #969696;
}
.context-menu-container .context-menu ul li.disabled:hover,
.context-menu.relative ul li.disabled:hover {
  background: unset;
}
.context-menu-container .context-menu li.toggler::after,
.context-menu.relative li.toggler::after {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  float: right;
  right: 0;
  top: 10px;
  background: url(/SiteCMS/img/DXImages2.png) no-repeat 0px -174px;
}
.context-menu-container .context-menu li.toggler.toggled::after,
.context-menu.relative li.toggler.toggled::after {
  transform: rotate(180deg);
  right: 3px;
  top: 9px;
}
.context-menu-container .context-menu .inner-menu,
.context-menu.relative .inner-menu {
  visibility: hidden;
  opacity: 0;
  height: 1px;
  overflow: hidden;
  transition: 0.2s;
}
.context-menu-container .context-menu .inner-menu.toggled,
.context-menu.relative .inner-menu.toggled {
  visibility: visible;
  opacity: 1;
  height: initial;
  overflow: initial;
  padding-top: 5px;
  
}
.context-menu-container .context-menu-toggler{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.context-menu-container .context-menu-toggler::before {
    content: "";
    display: block;
    width: 22px;
    height: 4px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAICAYAAAD0g6+qAAAATklEQVQoz2NYse245+odJx+DMIjNgARIkgNzdp76D8ZANrJikuSoZhDVvDZ54U7PSYv3PAZhEBtZMUlyYMbiPf9BGMRGVkySHNUMopbXAKLSDnCjcfmIAAAAAElFTkSuQmCC) no-repeat 50% 0;
  }






.telegramIntegration {
    position: relative;
}
.telegramIntegration .title {
    font-size: 24px;
    line-height: 28px;
    color: #3977C8;
    font-weight: 500;
}
.telegramIntegration .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;
}
.telegramIntegration .loader-holder .loader-block {
    visibility: hidden;
}
.telegramIntegration .loader-holder.shown .loader-block {
    visibility: visible;
}
.telegramIntegration .loader-holder.shown {
    background: rgba(255, 255, 255, 0.6);
}
.telegramIntegration .from-btn {
    display: inline-block;
    background: #5097F4;
    border-radius: 20px;
    border: none;
    color: #FFF;
    transition: linear .2s;
    padding: 10px 16px;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    cursor: pointer;
    user-select: none;
}
.telegramIntegration .from-btn:hover,
.telegramIntegration .from-btn:focus,
.telegramIntegration .from-btn:target {
    
    background: #3977C8;
    color: #FFF;
}
.telegramIntegration .from-btn:active {
    background: #5A60F1;
    color: #FFF;
}
.telegramIntegration .from-btn.disabled {
    opacity: 0.5;
    cursor: default;
}
.telegramIntegration .from-btn.disabled:hover,
.telegramIntegration .from-btn.disabled:focus,
.telegramIntegration .from-btn.disabled:target {
    background: #5097F4;
}
.telegramIntegration .from-btn.hidden {
    display: none;
}
.telegramIntegration .telTiles-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 8px;
    overflow: auto;
    
}
.telegramIntegration .telTiles-list::-webkit-scrollbar {
    width: 8px;
    background-color: #C8E0FF;
    border-radius: 10px;
}
.telegramIntegration .telTiles-list::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #5097F4;
    border: 2px solid #C8E0FF;
}
.telegramIntegration .telTiles-list::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 10%);
    background-color: #F5F5F5;
    border-radius: 5px;
}
.telegramIntegration .from-btn {
    margin-bottom: 16px;
}
.telegramIntegration .telTiles-list .tile {
    position: relative;
    width: 100%;
    
    box-shadow: 1px 1px 8px 0px rgba(113, 113, 113, 0.25);
    backdrop-filter: blur(4px);
    border-radius: 4px;
    padding: 16px;
    background: #fff;
    max-width: 800px;
}
.telegramIntegration .telTiles-list .tile>.flex-row {
    gap: 16px;
}
.telegramIntegration .telTiles-list .tile .control-container.date {
    width: 250px;
}
.telegramIntegration .telTiles-list .tile .status {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    margin-top: 29px;
}
.telegramIntegration .telTiles-list .tile .status::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-size: contain !important;
}
.telegramIntegration .telTiles-list .tile .status.error {
    color: red;
}
.telegramIntegration .telTiles-list .tile .status.approved {
    color: green;
}
.telegramIntegration .telTiles-list .tile .status.wait::before {
    background: url(/imgs/vectors/clock-wait.svg) 00 no-repeat;
}
.telegramIntegration .telTiles-list .tile .status.error::before {
    background: url(/imgs/vectors/clock-error.svg) 00 no-repeat;
}
.telegramIntegration .telTiles-list .tile .status.approved::before {
    background: url(/imgs/vectors/clock-approved.svg) 00 no-repeat;
}
.telegramIntegration .telTiles-list .tile .context-menu-container {
    position: absolute;
    top: 8px;
    right: 8px;
}
.telegramIntegration .silver-textbox[disabled='disabled'] {
    background: #e5eefb;
}
.telegramIntegration .botName {
    margin-top: -12px;
    margin-bottom: 16px;
    font-size: 14px;
}
.telegramIntegration .botName a {
    color: #3977C8;
    text-decoration: underline;
}
@media (max-width: 1030px) {
    .telegramIntegration .telTiles-list .tile .status {
        font-size: 12px;
    }
    .telegramIntegration .telTiles-list .tile .status::before {
        width: 14px;
        height: 14px;
    }
    .telegramIntegration .telTiles-list .tile .control-container>label {
        font-size: 14px;
    }
}
@media (max-width: 670px) {
    .telegramIntegration .telTiles-list .tile>.flex-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .telegramIntegration .telTiles-list .tile .status {
        margin: 0;
    }
    .telegramIntegration .telTiles-list .tile .control-container .silver-textbox {
        font-size: 14px;
        line-height: 1;
    }
    .telegramIntegration .telTiles-list .tile .control-container,
    .telegramIntegration .telTiles-list .tile .control-container.date {
        width: 205px;
    }
    .telegramIntegration .telTiles-list .tile .control-container .silver-control.silver-spin {
        width: 100% !important;
    }
}
