@charset "UTF-8";
/* SCREEN SIZE */
/* FIGMA VARIABLES */
.header {
  display: flex;
  align-items: center;
  background-color: #fff;
  height: 65px;
  padding: 0 32px;
}
.header__link {
  color: var(--text-3);
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  text-align: right;
  letter-spacing: -0.03em;
  white-space: nowrap;
  cursor: pointer;
  margin-left: 16px;
}
@media screen and (max-width: 640px) {
  .header__link {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
  }
}
.header__link--active {
  color: var(--primary-2);
  pointer-events: none;
}
.header__link:hover {
  color: var(--main-text);
}
.header__btn-wrapper {
  margin-left: auto;
}
.header__logo {
  padding-top: 3px;
}
.button {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  color: #212529;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  outline: none;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.button[disabled] {
  cursor: not-allowed;
}
.button--primary.button--outline-default {
  color: var(--primary-2);
  border-color: var(--primary-2);
}
.button--primary.button--outline-default:active,
.button--primary.button--outline-active {
  color: #fff;
  background-color: var(--primary-2);
  border-color: var(--primary-2);
}
.button--primary.button--fill-default {
  color: #fff;
  background-color: var(--primary-2);
  border-color: var(--primary-2);
}
.button--primary.button--fill-default:active,
.button--primary.button--fill-active {
  color: #fff;
  background-color: var(--primary-2);
  border-color: var(--primary-2);
}
.button--secondary.button--outline-default {
  color: var(--grey-text);
  border-color: var(--grey-text);
}
.button--secondary.button--outline-default:active,
.button--secondary.button--outline-active {
  color: #fff;
  background-color: var(--grey-text);
  border-color: var(--grey-text);
}
.button--secondary.button--fill-default {
  color: #fff;
  background-color: var(--grey-text);
  border-color: var(--grey-text);
}
.button--secondary.button--fill-default:active,
.button--secondary.button--fill-active {
  color: #fff;
  background-color: var(--grey-text);
  border-color: var(--grey-text);
}
.button--default.button--outline-default {
  color: var(--base-5);
  border-color: var(--base-4);
}
.button--default.button--outline-default:active,
.button--default.button--outline-active {
  color: #fff;
  background-color: var(--base-5);
  border-color: var(--base-4);
}
.button--default.button--fill-default {
  color: #fff;
  background-color: var(--base-5);
  border-color: var(--base-4);
}
.button--default.button--fill-default:active,
.button--default.button--fill-active {
  color: #fff;
  background-color: var(--base-5);
  border-color: var(--base-4);
}
.custom-pagination {
  display: flex;
}
.custom-pagination__item {
  padding: 8px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  border: 1px solid #606a71;
  color: #606a71;
  transition: var(--transition-dur) var(--transition-func);
  transition-property: color, background-color;
  margin-right: 4px;
  border-radius: 4px;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  .custom-pagination__item {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
  }
}
.custom-pagination__item:last-of-type {
  margin-right: 0;
}
.custom-pagination__item--active {
  background-color: #606a71;
  color: #FFF;
  cursor: auto;
}
@media (hover: hover) {
  .custom-pagination__item:hover {
    background-color: #606a71;
    color: #FFF;
  }
}
.custom-button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  padding: 12px 20px;
  cursor: pointer;
  transition: background-color var(--transition-dur) var(--transition-func);
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0, 53, 134, 0.2);
  letter-spacing: 0.16px;
  min-height: 44px;
  border: none;
  font: inherit;
}
.custom-button--primary {
  color: #fff;
  background-color: var(--primary-2);
}
@media (hover: hover) {
  .custom-button--primary:hover {
    background-color: var(--primary-3);
  }
}
.custom-button--primary.custom-button--disabled {
  background-color: #C2CDD6;
  cursor: auto;
}
.custom-button--secondary {
  color: var(--main-text);
  background-color: var(--border-color);
}
@media (hover: hover) {
  .custom-button--secondary:hover {
    background-color: var(--grey-text);
  }
}
.custom-button--secondary.custom-button--disabled {
  background-color: #F2F2F2;
  cursor: auto;
}
.custom-button--loading {
  cursor: wait;
}
.custom-button--loading .custom-button__content {
  opacity: 0;
}
.custom-button__content {
  display: flex;
  align-items: center;
  opacity: 1;
}
.custom-button__loading {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-button__icon--spinner {
  position: absolute;
  width: 25px;
  height: 25px;
  color: #FFF;
}
.custom-popup {
  position: fixed;
  z-index: 6;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  overflow: auto;
  padding: 12px 0;
  display: flex;
}
.custom-popup--enter {
  opacity: 0;
}
.custom-popup--enter-active, .custom-popup--enter-done {
  transition: var(--transition-dur) var(--transition-func);
  transition-property: opacity;
  opacity: 1;
}
.custom-popup--enter-active .custom-popup__wrapper, .custom-popup--enter-done .custom-popup__wrapper {
  transform: translateY(0);
}
.custom-popup--exit {
  opacity: 1;
}
.custom-popup--exit-active, .custom-popup--exit-done {
  transition: var(--transition-dur) var(--transition-func);
  transition-property: opacity;
  opacity: 0;
}
.custom-popup__wrapper {
  transition: 0.5s var(--transition-func);
  transition-property: transform;
  transform: translateY(50px);
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 53, 134, 0.2);
  max-width: 70vw;
  margin: auto;
}
.custom-popup__header {
  position: relative;
  padding: 25px 40px 0 40px;
}
.custom-popup__title {
  color: var(--main-text);
}
.custom-popup__icon {
  width: 20px;
  height: 20px;
}
.custom-popup__icon--close {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  transition: color var(--transition-dur) var(--transition-func);
  color: var(--grey-text);
}
@media (hover: hover) {
  .custom-popup__icon--close:hover {
    color: var(--main-text);
  }
}
.custom-popup__body {
  margin: 20px 0 30px;
  padding: 0 40px;
}
.custom-popup__footer {
  padding: 0 40px 40px;
  display: flex;
}
.custom-popup__btn--close {
  background-color: #f2f2f2;
  box-shadow: none;
}
.custom-popup__btn--ok {
  margin-left: auto;
}
.custom-textarea {
  display: flex;
  flex-direction: column;
}
.custom-textarea__label {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
@media screen and (max-width: 640px) {
  .custom-textarea__label {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
  }
}
.custom-textarea__input {
  padding: 10px 15px;
  transition: border-color var(--transition-dur) var(--transition-func);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 640px) {
  .custom-textarea__input {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
  }
}
.custom-textarea__input--invalid {
  border-color: var(--main-red);
}
.education-snippet {
  display: flex;
  align-items: flex-start;
  padding: 16px 0 15px;
}
@media screen and (max-width: 640px) {
  .education-snippet__icon-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
  }
}
.education-snippet__icon {
  width: 60px;
  margin-right: 20px;
}
@media screen and (max-width: 640px) {
  .education-snippet__icon {
    margin-bottom: 8px;
  }
}
.education-snippet__icon--main {
  height: 35px;
}
.education-snippet__icon--additional {
  height: 40px;
}
.education-snippet__description-wrapper {
  color: var(--main-text);
  display: flex;
  flex-direction: column;
}
.education-snippet__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 5px;
}
@media screen and (max-width: 640px) {
  .education-snippet__title {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
  }
}
.competence-snippet {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 15px 0 0;
  color: var(--main-text);
}
.competence-snippet__icon-wrapper {
  display: flex;
}
.competence-snippet__icon {
  margin-right: 15px;
  width: 65px;
  height: 65px;
}
@media screen and (max-width: 640px) {
  .competence-snippet__icon {
    width: 52px;
    height: 52px;
    margin-right: 8px;
  }
}
.tag-snippet {
  padding: 1px 8px;
  border: 1px solid #CBCBCB;
  border-radius: 5px;
  margin: 0 4px 4px 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 640px) {
  .tag-snippet {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
  }
}
.request-loader {
  z-index: 999999999999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
}
.request-loader__bar {
  width: 0;
  height: 100%;
  background-color: var(--primary-2);
}
.request-loader__bar--90 {
  animation: progress-90 5s ease;
  animation-fill-mode: forwards;
}
.request-loader__bar--100 {
  animation: progress-100 0.2s ease;
}
.request-loader__bar--error {
  transition-duration: 1s;
  background-color: var(--main-red);
  opacity: 1;
  width: 100%;
}
.request-loader__bar--hidden {
  display: none;
}
.request-loader--visible {
  visibility: visible;
}
.request-loader__popup .custom-popup__wrapper {
  width: 600px;
}
.request-loader__error-body {
  display: flex;
  margin-top: 12px;
}
.request-loader__error-body > code {
  color: var(--primary-2);
  border-radius: 4px;
  padding: 10px;
  width: 100%;
  border: 1px solid var(--border-color);
  box-shadow: inset 0 0 6px -4px #000;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
@media screen and (max-width: 640px) {
  .request-loader__error-body > code {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
  }
}
.request-loader__error-body .copy-to-clipboard__btn-copy {
  width: 48px;
  height: 48px;
  margin-right: 24px;
}
@keyframes progress-90 {
  0% {
    opacity: 1;
    width: 0;
  }
  100% {
    width: 90%;
    opacity: 1;
  }
}
@keyframes progress-100 {
  0% {
    width: 90%;
  }
  100% {
    width: 100%;
    opacity: 0;
  }
}
.custom-datepicker {
  display: inline-flex;
  flex-direction: column;
  position: relative;
}
.custom-datepicker-rtl {
  direction: rtl;
}
.custom-datepicker-focused .custom-datepicker-input, .custom-datepicker:hover .custom-datepicker-input {
  border-color: var(--primary-2);
}
.custom-datepicker-panels {
  display: flex;
  flex: 1;
  justify-content: space-around;
}
.custom-datepicker-panels .custom-datepicker-panel:last-of-type {
  padding-left: 0;
}
.custom-datepicker-panels .custom-datepicker-panel:first-of-type {
  padding-right: 0;
}
.custom-datepicker-panel {
  background: #fff;
  display: inline-block;
  vertical-align: top;
  padding: 8px;
}
.custom-datepicker-panel-rtl {
  direction: rtl;
}
.custom-datepicker .custom-ui-modules__error-message {
  top: 75px;
}
.custom-datepicker-ok > button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  padding: 6px 10px;
  cursor: pointer;
  transition: background-color var(--transition-dur) var(--transition-func);
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0, 53, 134, 0.2);
  letter-spacing: 0.16px;
  background-color: var(--primary-2);
  color: #FFF;
  border: none;
  font: inherit;
}
@media (hover: hover) {
  .custom-datepicker-ok > button:hover {
    background-color: var(--primary-3);
  }
}
.custom-datepicker-now-btn {
  display: none;
}
.custom-datepicker-decade-panel, .custom-datepicker-year-panel, .custom-datepicker-month-panel, .custom-datepicker-week-panel, .custom-datepicker-date-panel, .custom-datepicker-time-panel {
  display: flex;
  flex-direction: column;
}
.custom-datepicker-decade-panel table, .custom-datepicker-year-panel table, .custom-datepicker-month-panel table, .custom-datepicker-week-panel table, .custom-datepicker-date-panel table, .custom-datepicker-time-panel table {
  text-align: center;
  border-collapse: collapse;
}
.custom-datepicker-header {
  display: flex;
  justify-content: center;
}
.custom-datepicker-header > * {
  flex: none;
}
.custom-datepicker-header-view {
  text-align: center;
  border-radius: 8px;
  display: flex;
  align-items: center;
  border: 0;
  padding: 0;
  line-height: 34px;
  background-color: #fff;
  cursor: pointer;
  font: 700 18px/2 "Montserrat";
}
.custom-datepicker-header-view > button {
  border: 0;
  padding: 0;
  line-height: 34px;
  background-color: #FFF;
  cursor: pointer;
  font: inherit;
}
.custom-datepicker-header-super-prev-btn, .custom-datepicker-header-super-next-btn, .custom-datepicker-header-prev-btn, .custom-datepicker-header-next-btn {
  width: 34px;
  height: 34px;
  background-color: #FFF;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  padding: 0;
}
.custom-datepicker-header-super-prev-btn > svg, .custom-datepicker-header-super-next-btn > svg, .custom-datepicker-header-prev-btn > svg, .custom-datepicker-header-next-btn > svg {
  width: 20px;
  height: 20px;
}
.custom-datepicker-header-super-prev-btn:hover, .custom-datepicker-header-super-next-btn:hover, .custom-datepicker-header-prev-btn:hover, .custom-datepicker-header-next-btn:hover {
  background-color: var(--primary-1);
}
.custom-datepicker-header-prev-btn, .custom-datepicker-header-super-prev-btn {
  transform: rotate(90deg);
  margin-right: 10px;
}
.custom-datepicker-header-next-btn, .custom-datepicker-header-super-next-btn {
  transform: rotate(-90deg);
  margin-left: 10px;
}
.custom-datepicker-suffix {
  position: absolute;
  width: 20px;
  height: 20px;
  left: 15px;
  top: calc(50% - 10px);
}
.custom-datepicker-suffix svg {
  width: 20px;
  height: 20px;
  color: var(--grey-text);
}
.custom-datepicker-content th {
  padding: 0 10px;
  line-height: 34px;
}
.custom-datepicker-cell {
  color: var(--border-color);
  cursor: pointer;
  transition: var(--transition-dur) var(--transition-func);
  transition-property: background-color, color;
  background-color: #FFF;
  width: 36px;
  height: 36px;
}
.custom-datepicker-cell-disabled {
  opacity: 0.2;
}
.custom-datepicker-cell-selected.custom-datepicker-cell, .custom-datepicker-cell:hover {
  color: var(--primary-2);
  background-color: var(--primary-1);
  border-radius: 8px;
}
.custom-datepicker-cell-inner {
  width: 100%;
  line-height: 34px;
  display: inline-block;
  box-sizing: border-box;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
  outline: none;
  border: none;
  transition: background 0.3s, border 0.3s;
  font-weight: 500;
  white-space: nowrap;
}
.custom-datepicker-cell-in-view {
  color: inherit;
}
.custom-datepicker-cell-in-view:nth-child(6), .custom-datepicker-cell-in-view:nth-child(7) {
  color: var(--grey-text);
}
.custom-datepicker-cell-range-hover-start, .custom-datepicker-cell-range-hover-end, .custom-datepicker-cell-range-hover, .custom-datepicker-cell-range-start, .custom-datepicker-cell-in-range, .custom-datepicker-cell-range-end {
  position: relative;
  background-color: var(--primary-1);
}
.custom-datepicker-cell-in-range, .custom-datepicker-cell-range-hover {
  border-radius: 0;
}
.custom-datepicker-cell-range-start {
  background-color: var(--primary-1);
}
.custom-datepicker-cell-range-hover-end, .custom-datepicker-cell-range-end, .custom-datepicker-cell-range-hover-start, .custom-datepicker-cell-range-start {
  background-color: var(--primary-2) !important;
  color: #FFF !important;
}
.custom-datepicker-cell-range-hover-end, .custom-datepicker-cell-range-end {
  border-radius: 0 8px 8px 0 !important;
}
.custom-datepicker-cell-range-hover-start, .custom-datepicker-cell-range-start {
  border-radius: 8px 0 0 8px !important;
}
.custom-datepicker-cell-range-start-near-hover, .custom-datepicker-cell-range-end-near-hover {
  background-color: var(--primary-1) !important;
  color: var(--primary-2) !important;
  border-radius: 0;
}
.custom-datepicker-cell-range-start-near-hover::after, .custom-datepicker-cell-range-end-near-hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border: 1px dashed var(--primary-2);
}
.custom-datepicker-cell-range-start-near-hover::after {
  border-radius: 8px 0 0 8px;
}
.custom-datepicker-cell-range-end-near-hover::after {
  border-radius: 0 8px 8px 0;
}
.custom-datepicker-cell-today > .custom-datepicker-cell-inner {
  color: var(--primary-2) !important;
}
.custom-datepicker-ranges {
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style: none;
}
.custom-datepicker-ranges > li {
  display: inline-block;
}
.custom-datepicker-ok {
  float: right;
}
.custom-datepicker-year-panel .custom-datepicker-cell-inner, .custom-datepicker-month-panel .custom-datepicker-cell-inner {
  width: 80px;
}
.custom-datepicker-week-panel-row:hover .custom-datepicker-cell {
  background: red;
}
.custom-datepicker-week-panel-row-selected .custom-datepicker-cell {
  background: rgba(0, 0, 255, 0.3);
}
.custom-datepicker-week-panel .custom-datepicker-cell,
.custom-datepicker-week-panel .custom-datepicker-cell-inner {
  width: 20px;
}
.custom-datepicker-week-panel .custom-datepicker-cell:hover > .custom-datepicker-cell-inner,
.custom-datepicker-week-panel .custom-datepicker-cell-selected > .custom-datepicker-cell-inner {
  background: transparent;
}
.custom-datepicker-date-panel .custom-datepicker-cell-inner {
  width: 20px;
}
.custom-datepicker-date-panel .custom-datepicker-header-super-prev-btn,
.custom-datepicker-date-panel .custom-datepicker-header-super-next-btn {
  display: none;
}
.custom-datepicker-time-panel {
  width: auto;
}
.custom-datepicker-time-panel .custom-datepicker-content {
  display: flex;
  max-height: 200px;
  font-size: 18px;
  font-weight: 400;
  line-height: 34px;
  color: var(--main-text);
  margin-top: 34px;
}
@media screen and (max-width: 640px) {
  .custom-datepicker-time-panel .custom-datepicker-content {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
  }
}
.custom-datepicker-time-panel-column {
  flex: none;
  text-align: left;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-y: hidden;
  overflow-x: hidden;
  transition: background 0.3s;
  width: 70px;
}
.custom-datepicker-time-panel-column-active {
  background: rgba(0, 0, 255, 0.1);
}
.custom-datepicker-time-panel-column:hover {
  overflow-y: auto;
}
.custom-datepicker-time-panel-column > li {
  padding: 0;
  margin: 0;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color var(--transition-dur) var(--transition-func);
  color: var(--main-text);
}
@media (hover: hover) {
  .custom-datepicker-time-panel-column > li:hover {
    background-color: var(--primary-1);
    color: var(--primary-2);
  }
}
.custom-datepicker-time-panel-column > li.custom-datepicker-time-panel-cell-selected {
  background-color: var(--primary-1);
  color: var(--primary-2);
}
.custom-datepicker-time-panel-column > li .custom-datepicker-time-panel-cell-inner {
  color: inherit;
  padding: 0 16px;
  margin: 0;
  display: block;
  width: 100%;
  text-align: left;
  font-weight: 500;
}
.custom-datepicker-panel-rtl .custom-datepicker-time-panel-column > li .custom-datepicker-time-panel-cell-inner {
  padding: 0 12px 0;
  text-align: right;
}
.custom-datepicker-datetime-panel {
  display: flex;
}
.custom-datepicker-datetime-panel .custom-datepicker-date-panel,
.custom-datepicker-datetime-panel .custom-datepicker-time-panel {
  transition: opacity 0.3s;
}
.custom-datepicker-datetime-panel-active .custom-datepicker-date-panel,
.custom-datepicker-datetime-panel-active .custom-datepicker-time-panel {
  opacity: 0;
}
.custom-datepicker-datetime-panel-active .custom-datepicker-date-panel-active,
.custom-datepicker-datetime-panel-active .custom-datepicker-time-panel-active {
  opacity: 1;
}
.custom-datepicker-input {
  position: relative;
}
.custom-datepicker-rtl .custom-datepicker-input {
  text-align: right;
}
.custom-datepicker-input > input {
  width: 100%;
  outline: none;
  font: 400 16px "Montserrat";
  position: relative;
  display: inline-flex;
  transition: var(--transition-dur) var(--transition-func);
  transition-property: border-color;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  padding: 12px 15px 11px 40px;
  background-color: #FFF;
  cursor: pointer;
}
.custom-datepicker-input > input:focus {
  border-color: var(--primary-2);
}
.custom-datepicker-input > input[readonly] {
  cursor: pointer;
}
.custom-datepicker-input > input[aria-invalid=true] {
  border-color: var(--main-red);
}
.custom-datepicker-input-placeholder > input {
  color: var(--grey-text);
}
.custom-datepicker-clear {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 32px;
  font-weight: 400;
  line-height: 40px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .custom-datepicker-clear {
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
  }
}
@media (hover: hover) {
  .custom-datepicker-clear:hover > svg {
    color: var(--primary-2);
  }
}
.custom-datepicker-rtl .custom-datepicker-clear {
  right: auto;
  left: 4px;
}
.custom-datepicker-clear-btn::after {
  content: "×";
}
.custom-datepicker-clear > svg {
  width: 22px;
  height: 22px;
  color: var(--base-4);
  transition: color var(--transition-dur) var(--transition-func);
}
.custom-datepicker-dropdown {
  position: absolute;
  box-shadow: 0 3px 10px rgba(0, 53, 134, 0.2);
  z-index: 6;
  margin: 0;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  background-color: #FFF;
}
.custom-datepicker-dropdown-range {
  padding: 10px 0;
}
.custom-datepicker-dropdown-hidden {
  display: none;
}
.custom-datepicker-dropdown-placement-topLeft .custom-datepicker-range-arrow, .custom-datepicker-dropdown-placement-topRight .custom-datepicker-range-arrow {
  bottom: 1.6px;
  display: block;
  transform: rotate(135deg);
}
.custom-datepicker-dropdown-placement-bottomLeft .custom-datepicker-range-arrow, .custom-datepicker-dropdown-placement-bottomright .custom-datepicker-range-arrow {
  top: 1.6px;
  display: block;
  transform: rotate(-45deg);
}
.custom-datepicker-range {
  display: inline-flex;
  position: relative;
  flex-direction: row;
}
.custom-datepicker-range .custom-datepicker-input {
  width: 100%;
}
.custom-datepicker-range-wrapper {
  display: flex;
  justify-content: center;
}
.custom-datepicker-range-separator {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
}
@media screen and (max-width: 640px) {
  .custom-datepicker-range-separator {
    font-size: 22px;
    font-weight: 400;
    line-height: 28px;
  }
}
.custom-datepicker-range .custom-datepicker-active-bar {
  background: var(--primary-2);
  bottom: 0;
  height: 2px;
  pointer-events: none;
  transition: all 0.3s;
  opacity: 0;
}
.custom-datepicker-range.custom-datepicker-focused .custom-datepicker-active-bar {
  opacity: 1;
}
.custom-datepicker-panel-container {
  display: flex;
  flex: 1;
  justify-content: center;
  vertical-align: top;
  transition: margin 0.3s;
}
.custom-datepicker-dropdown-slide-up-enter, .custom-datepicker-dropdown-slide-up-appear {
  animation-duration: 0.3s;
  animation-fill-mode: both;
  transform-origin: 0 0;
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  animation-play-state: paused;
}
.custom-datepicker-dropdown-slide-up-leave {
  animation-duration: 0.3s;
  animation-fill-mode: both;
  transform-origin: 0 0;
  opacity: 1;
  animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
  animation-play-state: paused;
}
.custom-datepicker-dropdown-slide-up-leave-active.custom-datepicker-dropdown-placement-bottomLeft {
  animation-name: slideUpOut;
  animation-play-state: running;
}
.custom-datepicker-dropdown-slide-up-leave-active.custom-datepicker-dropdown-placement-topLeft {
  animation-name: slideDownOut;
  animation-play-state: running;
}
.custom-datepicker-dropdown-slide-up-enter.custom-datepicker-dropdown-slide-up-enter-active.custom-datepicker-dropdown-placement-bottomLeft, .custom-datepicker-dropdown-slide-up-appear.custom-datepicker-dropdown-slide-up-appear-active.custom-datepicker-dropdown-placement-bottomLeft {
  animation-name: slideUpIn;
  animation-play-state: running;
}
.custom-datepicker-dropdown-slide-up-enter.custom-datepicker-dropdown-slide-up-enter-active.custom-datepicker-dropdown-placement-topLeft, .custom-datepicker-dropdown-slide-up-appear.custom-datepicker-dropdown-slide-up-appear-active.custom-datepicker-dropdown-placement-topLeft {
  animation-name: slideDownIn;
  animation-play-state: running;
}
.custom-dropdown {
  position: relative;
}
.custom-dropdown__list {
  border-radius: 5px;
  overflow: hidden;
  position: absolute;
  display: flex;
  flex-direction: column;
  z-index: 3;
  box-shadow: 0px -4px 20px rgba(0, 0, 0, 0.03);
  background-color: #FFF;
}
.custom-dropdown__list--enter {
  opacity: 0;
  transform: translateY(10px);
}
.custom-dropdown__list--enter-active, .custom-dropdown__list--enter-done {
  transition: var(--transition-dur) var(--transition-func);
  transition-property: opacity, transform;
  opacity: 1;
  transform: translateY(0);
}
.custom-dropdown__list--exit {
  opacity: 1;
  transform: translateY(0);
}
.custom-dropdown__list--exit-active, .custom-dropdown__list--exit-done {
  transition: var(--transition-dur) var(--transition-func);
  transition-property: opacity, transform;
  opacity: 0;
  transform: translateY(10px);
}
.custom-dropdown__list--right {
  right: 0;
}
.custom-dropdown__list-item-wrapper {
  padding: 16px;
  transition: background-color var(--transition-dur) var(--transition-func);
  cursor: pointer;
  position: relative;
}
.custom-dropdown__list-item-wrapper::after {
  content: "";
  position: absolute;
  width: calc(100% - 16px * 2);
  left: 16px;
  bottom: 0;
  height: 1px;
  background-color: var(--border-separator-color);
}
.custom-dropdown__list-item-wrapper:last-of-type::after {
  display: none;
}
@media (hover: hover) {
  .custom-dropdown__list-item-wrapper:hover {
    background-color: var(--primary-1);
  }
}
.custom-radio-tabs {
  display: flex;
  flex-direction: column;
}
.custom-radio-tabs__tabs {
  display: flex;
}
.custom-radio-tabs__tab-wrapper {
  border: 1px solid var(--border-color);
  box-shadow: inset 0 0 0;
  transition: var(--transition-dur) var(--transition-func);
  display: flex;
  flex: 1;
  cursor: pointer;
}
.custom-radio-tabs__tab-wrapper--active {
  border-color: var(--primary-2);
  box-shadow: inset 0 0 1px 1px var(--primary-2);
  transition-delay: 0.1s;
}
.custom-radio-tabs__tab-wrapper:first-of-type {
  border-radius: 5px 0 0 5px;
}
.custom-radio-tabs__tab-wrapper:last-of-type {
  border-radius: 0 5px 5px 0;
}
.custom-radio-tabs__tab {
  padding: 10px 15px;
  display: flex;
  justify-content: center;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 640px) {
  .custom-radio-tabs__tab {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
  }
}
.custom-radio-tabs__label {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 8px;
  color: var(--grey-text);
  white-space: nowrap;
}
@media screen and (max-width: 640px) {
  .custom-radio-tabs__label {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
  }
}
.custom-input {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.custom-input__wrapper {
  position: relative;
}
.custom-input__input {
  padding: 10px 15px;
  transition: var(--transition-dur) var(--transition-func);
  transition-property: border-color, background-color;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  outline: none;
  font: 400 16px "Montserrat";
  width: 100%;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 640px) {
  .custom-input__input {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
  }
}
.custom-input__input::placeholder {
  color: #BDBDBD;
}
.custom-input__input:focus {
  border-color: var(--primary-2);
}
@media (hover: hover) {
  .custom-input__input:hover {
    border-color: var(--primary-2);
  }
}
.custom-input__input--invalid {
  border-color: var(--main-red);
}
.custom-input__input--invalid:focus {
  border-color: var(--main-red);
}
@media (hover: hover) {
  .custom-input__input--invalid:hover {
    border-color: var(--main-red);
  }
}
.custom-input__input:disabled {
  background-color: #F2F2F2;
}
.custom-input__icon {
  position: absolute;
  right: 15px;
  top: calc(50% - 20px / 2);
  width: 20px;
  height: 20px;
  pointer-events: none;
  color: var(--grey-text);
}
.custom-input__icon + .custom-input__input {
  padding-right: 45px;
}
.custom-input__icon + .custom-input__icon {
  right: 45px;
}
.custom-input__icon--loading {
  color: var(--primary-2);
}
.custom-input__icon--success {
  color: #0A9D2B;
}
.custom-input__icon--error {
  color: var(--main-red);
}
.custom-input__icon--suffix {
  cursor: pointer;
  pointer-events: all;
}
.tippy-box[data-animation=fade][data-state=hidden] {
  opacity: 0;
}
[data-tippy-root] {
  max-width: calc(100vw - 10px);
}
.tippy-box {
  position: relative;
  background-color: #FFF;
  color: var(--text-3);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  outline: 0;
  transition-property: transform, visibility, opacity;
  box-shadow: 0 3px 21px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 640px) {
  .tippy-box {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
  }
}
.tippy-box[data-placement^=top] > .tippy-arrow {
  bottom: 0;
}
.tippy-box[data-placement^=top] > .tippy-arrow:before {
  bottom: -7px;
  left: 0;
  border-width: 8px 8px 0;
  border-top-color: initial;
  transform-origin: center top;
}
.tippy-box[data-placement^=bottom] > .tippy-arrow {
  top: 0;
}
.tippy-box[data-placement^=bottom] > .tippy-arrow:before {
  top: -7px;
  left: 0;
  border-width: 0 8px 8px;
  border-bottom-color: initial;
  transform-origin: center bottom;
}
.tippy-box[data-placement^=left] > .tippy-arrow {
  right: 0;
}
.tippy-box[data-placement^=left] > .tippy-arrow:before {
  border-width: 8px 0 8px 8px;
  border-left-color: initial;
  right: -7px;
  transform-origin: center left;
}
.tippy-box[data-placement^=right] > .tippy-arrow {
  left: 0;
}
.tippy-box[data-placement^=right] > .tippy-arrow:before {
  left: -7px;
  border-width: 8px 8px 8px 0;
  border-right-color: initial;
  transform-origin: center right;
}
.tippy-box[data-inertia][data-state=visible] {
  transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
}
.tippy-arrow {
  width: 16px;
  height: 16px;
  color: #FFF;
}
.tippy-arrow:before {
  content: "";
  position: absolute;
  border-color: transparent;
  border-style: solid;
}
.tippy-content {
  position: relative;
  padding: 12px 16px;
  z-index: 1;
}
/* ANIMATION SHIFT TOWARD */
.tippy-box[data-animation=shift-toward-subtle][data-state=hidden] {
  opacity: 0;
}
.tippy-box[data-animation=shift-toward-subtle][data-state=hidden][data-placement^=top][data-state=hidden] {
  transform: translateY(-5px);
}
.tippy-box[data-animation=shift-toward-subtle][data-state=hidden][data-placement^=bottom][data-state=hidden] {
  transform: translateY(5px);
}
.tippy-box[data-animation=shift-toward-subtle][data-state=hidden][data-placement^=left][data-state=hidden] {
  transform: translateX(-5px);
}
.tippy-box[data-animation=shift-toward-subtle][data-state=hidden][data-placement^=right][data-state=hidden] {
  transform: translateX(5px);
}
/********************************************/
.custom-select {
  display: flex;
  flex-direction: column;
  position: relative;
}
.custom-select .custom-ui-modules__error-message {
  top: 75px;
}
.custom-select .custom-select {
  display: inline-block;
  position: relative;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 640px) {
  .custom-select .custom-select {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
  }
}
.custom-select .custom-select .custom-select-selection-placeholder {
  color: #BDBDBD;
  pointer-events: none;
}
.custom-select .custom-select .custom-select-selection-search-input {
  -webkit-appearance: none;
  appearance: none;
}
.custom-select .custom-select .custom-select-selection-search-input::-webkit-search-decoration {
  display: none;
  -webkit-appearance: none;
  appearance: none;
}
.custom-select .custom-select .custom-select-selection-search-input::-webkit-search-cancel-button {
  display: none;
  -webkit-appearance: none;
  appearance: none;
}
.custom-select .custom-select-disabled,
.custom-select .custom-select-disabled input {
  cursor: not-allowed;
}
.custom-select .custom-select-disabled .custom-select-selector {
  opacity: 0.3;
}
.custom-select .custom-select-show-arrow.custom-select-loading .custom-select-arrow-icon::after {
  box-sizing: border-box;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  border: 2px solid #999;
  border-top-color: transparent;
  border-bottom-color: transparent;
  transform: none;
  margin-top: 4px;
  animation: rcSelectLoadingIcon 0.5s infinite;
}
.custom-select .custom-select-show-arrow.custom-select-multiple .custom-select-selector {
  padding-right: 20px;
}
.custom-select .custom-select-show-arrow .custom-select-arrow {
  transition: transform var(--transition-dur) var(--transition-func);
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 13px;
  width: 20px;
  height: 20px;
  color: var(--grey-text);
}
.custom-select .custom-select-show-arrow.custom-select-open .custom-select-arrow {
  transform: rotate(180deg);
}
.custom-select .custom-select-show-arrow .custom-select-arrow-icon::after {
  content: "";
  border: 5px solid transparent;
  width: 0;
  height: 0;
  display: inline-block;
  border-top-color: #999;
  transform: translateY(5px);
}
.custom-select .custom-select-show-search .custom-select-selector {
  min-height: 44px;
  border-radius: inherit;
}
.custom-select .custom-select-show-search .custom-select-selection-search-input {
  padding: 10px 40px 10px 15px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 640px) {
  .custom-select .custom-select-show-search .custom-select-selection-search-input {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
  }
}
.custom-select .custom-select-single .custom-select-selector {
  display: flex;
  position: relative;
}
.custom-select .custom-select-single .custom-select-selector .custom-select-selection-search {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.custom-select .custom-select-single .custom-select-selector .custom-select-selection-search-input {
  width: 100%;
}
.custom-select .custom-select-single:not(.custom-select-customize-input) .custom-select-selector {
  transition: var(--transition-dur) var(--transition-func);
  transition-property: border-color;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  position: relative;
  padding: 10px 40px 10px 15px;
  background-color: #FFF;
}
@media (hover: hover) {
  .custom-select .custom-select-single:not(.custom-select-customize-input) .custom-select-selector:hover {
    border-color: var(--primary-2);
  }
}
.custom-select .custom-select-single:not(.custom-select-customize-input) .custom-select-selector .custom-select-selection-search-input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  height: 100%;
}
.custom-select--invalid .custom-select-selector {
  border: 1px solid var(--main-red) !important;
}
.custom-select .custom-select-single .custom-select-selector .custom-select-selection-item,
.custom-select .custom-select-single .custom-select-selector .custom-select-selection-placeholder {
  position: relative;
  pointer-events: none;
  width: 100%;
  min-height: 22px;
  white-space: nowrap;
}
.custom-select .custom-select-multiple .custom-select-selector {
  display: flex;
  flex-wrap: wrap;
  padding: 1px;
  border: 1px solid #000;
}
.custom-select .custom-select-multiple .custom-select-selector .custom-select-selection-item {
  flex: none;
  background: #bbb;
  border-radius: 4px;
  margin-right: 2px;
  padding: 0 8px;
}
.custom-select .custom-select-multiple .custom-select-selector .custom-select-selection-item-disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.custom-select .custom-select-multiple .custom-select-selector .custom-select-selection-overflow {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.custom-select .custom-select-multiple .custom-select-selector .custom-select-selection-overflow-item {
  flex: none;
  max-width: 100%;
}
.custom-select .custom-select-multiple .custom-select-selector .custom-select-selection-search {
  position: relative;
  max-width: 100%;
}
.custom-select .custom-select-multiple .custom-select-selector .custom-select-selection-search-mirror {
  position: absolute;
  z-index: 999;
  white-space: nowrap;
  position: none;
  left: 0;
  top: 0;
  visibility: hidden;
}
.custom-select .custom-select-multiple .custom-select-selector .custom-select-selection-search-input {
  border: none;
  outline: none;
  background: rgba(255, 0, 0, 0.2);
  width: 100%;
}
.custom-select .custom-select-multiple .custom-select-selector .custom-select-selection-search-input,
.custom-select .custom-select-multiple .custom-select-selector .custom-select-selection-search-mirror {
  padding: 1px;
}
.custom-select .custom-select-allow-clear.custom-select-multiple .custom-select-selector {
  padding-right: 20px;
}
.custom-select .custom-select-allow-clear .custom-select-clear {
  position: absolute;
  right: 45px;
  top: 13px;
  width: 20px;
  height: 20px;
  color: var(--grey-text);
}
.custom-select .custom-select-focused .custom-select-selector {
  border-color: var(--primary-2) !important;
}
.custom-select-item {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding: 16px;
  transition: background-color var(--transition-dur) var(--transition-func);
  color: var(--main-text);
}
@media screen and (max-width: 640px) {
  .custom-select-item {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
  }
}
@media (hover: hover) {
  .custom-select-item:hover {
    background-color: rgba(0, 148, 255, 0.05);
  }
}
.custom-select-item-group {
  color: #999;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
}
@media screen and (max-width: 640px) {
  .custom-select-item-group {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
  }
}
.custom-select-item-option {
  position: relative;
}
.custom-select-item-option-state {
  position: absolute;
  right: 0;
  top: 4px;
  pointer-events: none;
}
.custom-select-item-option-grouped {
  padding-left: 24px;
}
.custom-select-item-option-active {
  background-color: rgba(0, 148, 255, 0.05);
}
.custom-select-item-option-disabled {
  color: #999;
  cursor: not-allowed;
}
.custom-select-item-empty {
  text-align: center;
  color: #999;
}
.custom-select-dropdown {
  position: absolute;
  background: #fff;
  box-shadow: var(--box-shadow-normal);
  border-radius: 8px;
  padding: 0;
  width: auto !important;
  cursor: pointer;
  z-index: 5;
}
.custom-select-dropdown.custom-select-dropdown-hidden {
  display: none;
}
.custom-select-dropdown [aria-selected=true] {
  background-color: rgba(0, 148, 255, 0.05);
}
.custom-select-dropdown [role=option] {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.custom-select-dropdown-selection__choice-zoom {
  transition: all 0.3s;
}
.custom-select-dropdown-selection__choice-zoom-appear {
  opacity: 0;
  transform: scale(0.5);
}
.custom-select-dropdown-selection__choice-zoom-appear-active {
  opacity: 1;
  transform: scale(1);
}
.custom-select-dropdown-selection__choice-zoom-leave {
  opacity: 1;
  transform: scale(1);
}
.custom-select-dropdown-selection__choice-zoom-leave-active {
  opacity: 0;
  transform: scale(0.5);
}
.custom-select-dropdown-slide-up-enter, .custom-select-dropdown-slide-up-appear {
  animation-duration: 0.3s;
  animation-fill-mode: both;
  transform-origin: 0 0;
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  animation-play-state: paused;
}
.custom-select-dropdown-slide-up-leave {
  animation-duration: 0.3s;
  animation-fill-mode: both;
  transform-origin: 0 0;
  opacity: 1;
  animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
  animation-play-state: paused;
}
.custom-select-dropdown-slide-up-leave-active.custom-select-dropdown-placement-bottomLeft {
  animation-name: slideUpOut;
  animation-play-state: running;
}
.custom-select-dropdown-slide-up-leave-active.custom-select-dropdown-placement-topLeft {
  animation-name: slideDownOut;
  animation-play-state: running;
}
.custom-select-dropdown-slide-up-enter.custom-select-dropdown-slide-up-enter-active.custom-select-dropdown-placement-bottomLeft, .custom-select-dropdown-slide-up-appear.custom-select-dropdown-slide-up-appear-active.custom-select-dropdown-placement-bottomLeft {
  animation-name: slideUpIn;
  animation-play-state: running;
}
.custom-select-dropdown-slide-up-enter.custom-select-dropdown-slide-up-enter-active.custom-select-dropdown-placement-topLeft, .custom-select-dropdown-slide-up-appear.custom-select-dropdown-slide-up-appear-active.custom-select-dropdown-placement-topLeft {
  animation-name: slideDownIn;
  animation-play-state: running;
}
@keyframes rcSelectLoadingIcon {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.custom-select__banned-message {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--main-red);
  margin-left: 10px;
}
@media screen and (max-width: 640px) {
  .custom-select__banned-message {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
  }
}
.copy-to-clipboard__field {
  display: flex;
  align-items: center;
}
.copy-to-clipboard__field > div {
  display: flex;
}
.copy-to-clipboard__btn-copy {
  width: 20px;
  height: 20px;
  color: #B9C4CC;
  transition: color var(--transition-dur) var(--transition-func);
  cursor: pointer;
}
@media (hover: hover) {
  .copy-to-clipboard__btn-copy:hover {
    color: var(--primary-2);
  }
}
.custom-ui-modules__error-message {
  font-weight: normal;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  line-height: 15px;
  color: var(--main-red);
  position: absolute;
  left: 0;
  top: 45px;
}
@media screen and (max-width: 640px) {
  .custom-ui-modules__error-message {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
  }
}
.custom-ui-modules__label {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 8px;
  color: var(--grey-text);
  white-space: nowrap;
}
@media screen and (max-width: 640px) {
  .custom-ui-modules__label {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
  }
}
@media screen and (max-width: 640px) {
  .custom-ui-modules__label {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
  }
}
@media screen and (max-width: 640px) and (max-width: 640px) {
  .custom-ui-modules__label {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
  }
}
.custom-checkbox__checkbox {
  position: relative;
  display: flex;
  height: 20px;
  cursor: pointer;
}
.custom-checkbox__input, .custom-checkbox__svg {
  display: block;
}
.custom-checkbox__wrapper {
  display: flex;
}
.custom-checkbox__input {
  position: relative;
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  transition: 0.3s;
  border: none;
  border-radius: 4px;
  outline: none;
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--border-color);
  -webkit-appearance: none;
  -moz-appearance: none;
}
.custom-checkbox__input:hover {
  box-shadow: inset 0 0 0 2px var(--border-color);
}
.custom-checkbox__input:checked {
  box-shadow: inset 0 0 0 11px var(--primary-2);
}
@media (hover: hover) {
  .custom-checkbox__input:checked:hover {
    box-shadow: inset 0 0 0 11px var(--primary-3);
  }
}
.custom-checkbox__input:checked + svg {
  animation: bounce 0.2s linear forwards 0.2s;
}
.custom-checkbox__svg {
  position: absolute;
  top: 6px;
  left: 3px;
  width: 14px;
  height: 12px;
  transform: scale(0) translateZ(0);
  pointer-events: none;
  fill: none;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: var(--primary-2);
}
.custom-checkbox__label {
  margin-left: 5px;
  color: var(--main-text);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  .custom-checkbox__label {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
  }
}
@keyframes bounce {
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes rotateCircle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.custom-tabs-left {
  display: grid;
  grid-template-columns: 286px 1fr;
  gap: 30px;
}
.custom-tabs-tabpane,
.custom-tabs-tabpane-active {
  outline: none;
}
.custom-tabs-nav {
  padding: 11px 8px 8px 8px;
  border-radius: 8px;
  background-color: #fff;
  height: min-content;
}
.custom-tabs-tab {
  padding: 2px 0 3px 12px;
  background-color: #fff;
  border-radius: 4px;
  color: var(--text-3);
  margin-bottom: 8px;
}
.custom-tabs-tab:last-of-type {
  margin-bottom: 0;
}
.custom-tabs-tab:hover {
  background-color: var(--primary-1);
}
.custom-tabs-tab-btn {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  outline: none;
}
@media screen and (max-width: 640px) {
  .custom-tabs-tab-btn {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
  }
}
.custom-tabs-tab-active {
  background-color: var(--primary-2);
  color: #fff;
}
.custom-tabs-tab-active:hover {
  background-color: var(--primary-2);
}
.custom-tabs-ink-bar {
  display: none;
}
.custom-tabs-nav-operations {
  display: none;
}
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 20px;
}
/* Hide default HTML checkbox */
.switch input {
  width: 0;
  height: 0;
  opacity: 0;
}
/* The slider */
.slider {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: #ccc;
}
.slider:before {
  position: absolute;
  width: 14px;
  height: 14px;
  margin-top: 3px;
  content: "";
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: white;
}
input:checked + .slider {
  background-color: var(--primary-2);
}
input:focus + .slider {
  box-shadow: 0 0 1px var(--primary-2);
}
input:checked + .slider:before {
  -webkit-transform: translateX(17px);
  -ms-transform: translateX(17px);
  transform: translateX(17px);
}
/* Rounded sliders */
.slider.round {
  border-radius: 30px;
}
.slider.round:before {
  -webkit-transform: translateX(3px);
  -ms-transform: translateX(3px);
  transform: translateX(3px);
  border-radius: 50%;
}
.typography {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}
.typography--h1 {
  font-size: 32px;
  font-weight: bold;
  line-height: 40px;
  font-style: normal;
}
@media screen and (max-width: 640px) {
  .typography--h1 {
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
  }
}
.typography--h2 {
  font-size: 24px;
  font-weight: bold;
  line-height: 32px;
  font-style: normal;
}
@media screen and (max-width: 640px) {
  .typography--h2 {
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
  }
}
.typography--h3 {
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
  font-style: normal;
}
@media screen and (max-width: 640px) {
  .typography--h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
  }
}
.typography--p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  font-style: normal;
}
@media screen and (max-width: 640px) {
  .typography--p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
  }
}
.typography--sm {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  font-style: normal;
}
@media screen and (max-width: 640px) {
  .typography--sm {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
  }
}
.typography--xs {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  font-style: normal;
}
@media screen and (max-width: 640px) {
  .typography--xs {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
  }
}
.typography--regular {
  font-weight: normal;
}
.typography--medium {
  font-weight: medium;
}
.typography--bold {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .typography--h1 {
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
  }
}
@media screen and (max-width: 767px) and (max-width: 640px) {
  .typography--h1 {
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
  }
}
@media screen and (max-width: 767px) {
  .typography--h3 {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
  }
}
@media screen and (max-width: 767px) and (max-width: 640px) {
  .typography--h3 {
    font-size: 22px;
    font-weight: 400;
    line-height: 28px;
  }
}
@media screen and (max-width: 767px) {
  .typography--p {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
  }
}
@media screen and (max-width: 767px) and (max-width: 640px) {
  .typography--p {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .typography--sm {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
  }
}
@media screen and (max-width: 767px) and (max-width: 640px) {
  .typography--sm {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
  }
}
@media screen and (max-width: 767px) {
  .typography--xs {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
  }
}
@media screen and (max-width: 767px) and (max-width: 640px) {
  .typography--xs {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
  }
}
.typography__color--default {
  color: var(--text-3);
}
.typography__color--disabled {
  color: var(--text-2);
}
.typography__color--primary {
  color: var(--base-1);
}
.typography__color--error {
  color: var(--main-red);
}
.typography__color--not-active {
  color: var(--text-color-not-active);
}
.typography__color--body {
  color: #000000;
}
.typography__color--action {
  color: var(--primary-2);
}
.typography--text-align-center {
  text-align: center;
}
.typography--text-align-left {
  text-align: left;
}
.typography--text-align-right {
  text-align: right;
}
.typography-margin--xs {
  margin-bottom: 8px;
}
.typography-margin--sm {
  margin-bottom: 16px;
}
.typography-margin--md {
  margin-bottom: 20px;
}
.typography-margin--bg {
  margin-bottom: 24px;
}
.suspense {
  position: fixed;
  top: calc(50% - 50px / 2);
  left: calc(50% - 50px / 2);
  width: 50px;
  height: 50px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  text-indent: -9999em;
  border-top: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--primary-2);
  border-left: 6px solid var(--primary-2);
  border-radius: 50%;
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  animation: spin 1s infinite linear, appear 0.2s linear;
}
@media screen and (max-width: 640px) {
  .suspense {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes appear {
  from {
    opacity: 0;
  }
}
.custom-table-body-cell {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  color: var(--main-text);
  transition: var(--transition-dur) var(--transition-func);
}
.custom-table-header {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}
@media screen and (max-width: 640px) {
  .custom-table-header {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
  }
}
.custom-table-header__cell {
  text-align: left;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  min-width: 32px;
}
.hr {
  margin: 0;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
.hr--margin {
  margin: 1rem 0;
}
.message {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  font-weight: 500;
}
.message--closable {
  padding-right: 4rem;
}
.message--success {
  color: #1b5e20;
  background-color: #c5e1a5;
  border-color: #aed581;
}
.message--warning {
  color: #856404;
  background-color: #ffecb3;
  border-color: #ffe082;
}
.message--info {
  color: #0d47a1;
  background-color: #b3e5fc;
  border-color: #81d4fa;
}
.message--error {
  color: #b71c1c;
  background-color: #ffccbc;
  border-color: #ffab91;
}
.message__close-icon {
  position: absolute;
  right: 15px;
  cursor: pointer;
  transition: color var(--transition-dur) var(--transition-func);
  color: var(--grey-text);
  width: 20px;
  height: 20px;
}
.message__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 10px;
  color: inherit;
}
@media screen and (max-width: 640px) {
  .message__title {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
  }
}
.add-lesson-layout {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.add-lesson-layout__form {
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  padding: 0 5px;
}
.add-lesson-layout__wrapper {
  display: flex;
  flex-direction: column;
  padding: 5px 0;
}
.add-lesson-layout__wrapper--row {
  flex: 1;
  flex-direction: row;
  padding: 0 5px;
  column-gap: 10px;
}
.add-lesson-layout__wrapper--date {
  padding: 0;
  padding-bottom: 8px;
}
.add-lesson-layout__wrapper--left {
  flex: 4;
  overflow: hidden;
  padding: 0 5px;
}
.add-lesson-layout__wrapper--search {
  flex-direction: row;
  align-items: flex-start;
  padding-bottom: 8px;
}
.add-lesson-layout__wrapper--right {
  flex: 6;
  overflow: hidden;
}
.add-lesson-layout__search-btn {
  margin: 24px 0 8px 8px;
}
.add-lesson-manual {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.add-lesson-manual__form {
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  padding: 0 5px;
}
.add-lesson-manual__wrapper {
  display: flex;
  flex: 1;
  flex-direction: row;
  padding: 0 5px;
}
.add-lesson-manual__datepicker {
  display: flex;
  flex-direction: column;
  padding-bottom: 24px;
}
.add-lesson-manual__column {
  display: flex;
  flex-direction: column;
  padding: 0 5px;
}
.add-lesson-manual__column--left {
  flex: 4;
  overflow: hidden;
}
.add-lesson-manual__column--right {
  flex: 6;
  overflow: hidden;
}
.add-lesson-manual__select-wrapper {
  padding-bottom: 24px;
}
.add-lesson-manual__select.custom-select-dropdown {
  z-index: 7;
}
.add-lesson-manual__select-not-found {
  padding: 16px;
}
.add-lesson-slot-picker {
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
}
.add-lesson-slot-picker--disabled {
  color: var(--grey-text);
  opacity: 0.5;
  cursor: not-allowed;
}
.add-lesson-slot-picker__label {
  display: inline-block;
  margin-bottom: 8px;
}
.add-lesson-slot-picker__field {
  display: flex;
  flex-direction: column;
  height: 40px;
  padding: 6px 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #000;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 4px;
  outline: none;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media screen and (max-width: 640px) {
  .add-lesson-slot-picker__field {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
  }
}
.add-lesson-slot-picker__field--error {
  box-shadow: 0 0 0 4px rgba(255, 82, 82, 0.25);
  border-color: #ff5252;
}
.add-lesson-slot-picker__loading {
  display: flex;
  flex: 1;
  justify-content: center;
  margin: 16px;
  text-align: center;
  color: var(--main-text);
  white-space: pre-wrap;
}
.add-lesson-slot-picker__no-content {
  display: flex;
  flex: 1;
  justify-content: center;
  margin: 16px;
  text-align: center;
  color: var(--grey-text);
  white-space: pre-wrap;
}
.add-lesson-slot-picker__psychologist {
  display: flex;
  margin-bottom: 8px;
}
.add-lesson-slot-picker__banned {
  margin: 10px 0;
  padding: 0;
  color: var(--main-red);
  font-size: 20px;
  line-height: 26px;
  font-weight: bold;
}
.add-lesson-slot-picker__weekday-wrapper {
  display: flex;
  flex-direction: row;
}
.add-lesson-slot-picker__weekday {
  display: flex;
  flex: none;
  margin-right: 8px;
  min-width: 43px;
}
.add-lesson-slot-picker__timeslots-wrapper {
  display: flex;
  flex-direction: row;
  margin-left: 8px;
  flex-wrap: wrap;
}
.add-lesson-slot-picker__timeslot {
  margin: 0 8px 8px 0;
}
.add-lesson-slot-picker__error-message {
  color: #ff5252;
  margin-top: 8px;
}
.add-lesson-modal__tabs {
  display: flex;
  flex-direction: row;
}
.add-lesson-modal__tab {
  color: var(--grey-text);
  margin-right: 24px;
  padding: 0;
  white-space: nowrap;
  background-color: transparent;
  border: none;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
  outline: none;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  .add-lesson-modal__tab {
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
  }
}
.add-lesson-modal__tab:last-child {
  margin-right: 0;
}
.add-lesson-modal__tab--active {
  color: var(--primary-2);
}
.add-lesson-modal__tab--inactive {
  font-weight: 500;
}
.add-lesson-modal__layout {
  display: flex;
  flex-direction: row;
  padding: 1rem 1rem 0 1rem;
  width: 55vw;
}
.add-lesson-modal__controls {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 1rem 0;
}
.add-lesson-modal__control-btn {
  margin: 0 0.5rem;
}
.add-psychologist-layout {
  display: flex;
  flex-direction: column;
  max-width: 620px;
  width: 100%;
}
.add-psychologist-layout__wrapper {
  display: flex;
  flex-direction: column;
}
.add-psychologist-layout__field {
  margin-bottom: 24px;
}
.add-psychologist-layout__btn-group {
  display: flex;
  padding: 32px 0;
}
.add-psychologist-layout__btn-reset {
  margin-left: auto;
}
.psychologist-info {
  padding-top: 24px;
}
.psychologist-info__header {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.psychologist-info__click-back {
  display: flex;
  align-items: center;
  cursor: pointer;
  border: none;
  background-color: transparent;
  transition: var(--transition-dur) var(--transition-func);
  color: var(--primary-2);
  padding: 0;
  margin-right: 24px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 640px) {
  .psychologist-info__click-back {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
  }
}
@media (hover: hover) {
  .psychologist-info__click-back:hover {
    color: var(--primary-3);
  }
}
.psychologist-info__icon {
  width: 21px;
  height: 8px;
  margin-right: 4px;
}
.psychologist-info__spinner {
  width: 50px;
  height: 50px;
  color: var(--primary-2);
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.psychologist-info-profile {
  display: flex;
  align-items: center;
}
.psychologist-info-profile .tooltip-wrapper {
  display: flex;
}
.psychologist-info-profile input:checked + .slider {
  background-color: var(--warning-2);
}
.psychologist-info-profile__popup .custom-popup__wrapper {
  max-width: 450px;
}
.psychologist-info-profile__popup .custom-popup__header {
  padding: 40px 30px 0 30px;
}
.psychologist-info-profile__popup .custom-popup__title {
  color: var(--text-3);
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}
@media screen and (max-width: 640px) {
  .psychologist-info-profile__popup .custom-popup__title {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
  }
}
.psychologist-info-profile__popup .custom-popup__body {
  padding: 0 30px;
}
.psychologist-info-profile__popup .custom-popup__footer {
  padding: 0 30px 40px;
}
.psychologist-info-profile__popup .custom-popup__btn--close {
  background-color: var(--primary-2);
  color: #fff;
  width: 180px;
  padding: 12px 0;
  outline: none;
}
@media (hover: hover) {
  .psychologist-info-profile__popup .custom-popup__btn--close:hover {
    background-color: var(--primary-3);
  }
}
.psychologist-info-profile__popup .custom-popup__btn--ok {
  background-color: var(--base-2);
  color: var(--base-5);
  box-shadow: none;
  width: 180px;
  padding: 12px 0;
  outline: none;
}
@media (hover: hover) {
  .psychologist-info-profile__popup .custom-popup__btn--ok:hover {
    background-color: var(--base-3);
  }
}
.psychologist-info-profile__popup .custom-popup__icon--close {
  display: none;
}
.psychologist-info-profile__text {
  color: var(--text-3);
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  margin-left: 10px;
  margin-right: 9px;
}
@media screen and (max-width: 640px) {
  .psychologist-info-profile__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
  }
}
.psychologist-info-profile__tooltip {
  top: 10px;
}
.psychologist-info-profile__icon--info {
  width: 18px;
  height: 18px;
  color: #fff;
  fill: var(--base-3);
  cursor: pointer;
}
.psychologist-info-profile__icon circle {
  stroke: var(--base-3);
}
.psychologist-info-history__wrapper {
  display: flex;
  align-items: flex-end;
}
.psychologist-info-history__select {
  max-width: 280px;
  width: 100%;
  margin-right: 16px;
}
.psychologist-info-history__text {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text-2);
}
@media screen and (max-width: 640px) {
  .psychologist-info-history__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
  }
}
.psychologist-info-history__phone {
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text-3);
}
@media screen and (max-width: 640px) {
  .psychologist-info-history__phone {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
  }
}
.psychologist-info-history__spinner {
  width: 40px;
  height: 40px;
  color: var(--primary-2);
}
.psychologist-client-info-item .custom-table-body-cell {
  border-top: none;
  border-bottom: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text-3);
}
@media screen and (max-width: 640px) {
  .psychologist-client-info-item .custom-table-body-cell {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
  }
}
.psychologist-client-info-item__status {
  color: var(--text-3);
}
.psychologist-client-info-item__status--approved, .psychologist-client-info-item__status--passed, .psychologist-client-info-item__status--certificate, .psychologist-client-info-item__status--booked {
  color: var(--text-3);
}
.psychologist-client-info-item__status--cancelled {
  color: var(--warning-2);
}
.psychologist-client-info-item__status--visited {
  color: var(--success-3);
}
.psychologist-client-info-list {
  height: calc(100vh - 126px - 146px);
  overflow-y: scroll;
  margin-top: 20px;
  position: relative;
  max-width: 1000px;
}
.psychologist-client-info-list tbody::before {
  display: block;
  padding-top: var(--virtualPaddingTop);
  content: "";
}
.psychologist-client-info-list tbody::after {
  display: block;
  padding-bottom: var(--virtualPaddingBottom);
  content: "";
}
.psychologist-client-info-list .custom-table-header__cell {
  border-top: none;
}
.psychologist-client-info-list__table {
  width: 100%;
  border-spacing: 0;
}
.psychologist-client-info-list__head {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--base-5);
}
@media screen and (max-width: 640px) {
  .psychologist-client-info-list__head {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
  }
}
.psychologist-client-info-list__head .custom-table-header__cell {
  font-weight: normal;
}
.psychologist-client-info-list__head .custom-table-header__cell:nth-child(2) {
  width: 220px;
  padding-right: 20px;
}
.psychologist-client-info-list__column {
  display: flex;
  align-items: center;
  min-width: 110px;
}
.psychologist-client-info-list__column--active .psychologist-client-info-list__sort-link, .psychologist-client-info-list__column--active .psychologist-client-info-list__filter-chevron,
.psychologist-client-info-list__column--active .psychologist-client-info-list .custom-select__label {
  color: #545C63;
}
.psychologist-client-info-list__column--active .psychologist-client-info-list__sort-icon > span {
  background-color: #545C63;
}
.psychologist-client-info-list__column--active .psychologist-client-info-list__sort-icon--asc > span:nth-child(1) {
  height: 8px;
}
.psychologist-client-info-list__column--active .psychologist-client-info-list__sort-icon--asc > span:nth-child(2) {
  height: 10px;
}
.psychologist-client-info-list__column--active .psychologist-client-info-list__sort-icon--asc > span:nth-child(3) {
  height: 12px;
}
.psychologist-client-info-list__controls {
  display: flex;
  align-items: center;
}
.psychologist-client-info-list__sort-link {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.psychologist-client-info-list__sort-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5px;
  margin-left: 6px;
}
.psychologist-client-info-list__sort-icon > span {
  width: 2px;
  background-color: #B9C4CC;
  transition: height 0.5s var(--transition-func);
  margin: 0 2px;
  border-radius: 2px;
}
.psychologist-client-info-list__sort-icon > span:nth-child(1) {
  height: 12px;
}
.psychologist-client-info-list__sort-icon > span:nth-child(2) {
  height: 10px;
}
.psychologist-client-info-list__sort-icon > span:nth-child(3) {
  height: 8px;
}
/* montserrat-regular - latin_cyrillic */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("/assets/montserrat-v18-latin_cyrillic-regular-9b33b6e7.woff2") format("woff2"), url("/assets/montserrat-v18-latin_cyrillic-regular-fb013e0c.woff") format("woff"), url("/assets/montserrat-v18-latin_cyrillic-regular-bf1f6363.ttf") format("truetype"), url("/assets/montserrat-v18-latin_cyrillic-regular-9f48facb.svg#Montserrat") format("svg");
  /* Legacy iOS */
}
/* montserrat-500 - latin_cyrillic */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  src: local(""), url("/assets/montserrat-v18-latin_cyrillic-500-5291d57e.woff2") format("woff2"), url("/assets/montserrat-v18-latin_cyrillic-500-9ef9ffb5.woff") format("woff"), url("/assets/montserrat-v18-latin_cyrillic-500-5cfaa515.ttf") format("truetype"), url("/assets/montserrat-v18-latin_cyrillic-500-39057687.svg#Montserrat") format("svg");
  /* Legacy iOS */
}
/* montserrat-600 - latin_cyrillic */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  src: local(""), url("/assets/montserrat-v18-latin_cyrillic-600-40766edf.woff2") format("woff2"), url("/assets/montserrat-v18-latin_cyrillic-600-d50f3b36.woff") format("woff"), url("/assets/montserrat-v18-latin_cyrillic-600-c5819576.ttf") format("truetype"), url("/assets/montserrat-v18-latin_cyrillic-600-949bcb3b.svg#Montserrat") format("svg");
  /* Legacy iOS */
}
/* montserrat-700 - latin_cyrillic */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: local(""), url("/assets/montserrat-v18-latin_cyrillic-700-2e59a212.woff2") format("woff2"), url("/assets/montserrat-v18-latin_cyrillic-700-b8211b82.woff") format("woff"), url("/assets/montserrat-v18-latin_cyrillic-700-74d40568.ttf") format("truetype"), url("/assets/montserrat-v18-latin_cyrillic-700-9dca6b9a.svg#Montserrat") format("svg");
  /* Legacy iOS */
}
:root {
  --text-3: #242424;
  --text-2: #949A9E;
  --text-1: #C9CDCF;
  --primary-1: #E6F1FF;
  --primary-2: #0169ED;
  --primary-3: #015FD5;
  --main-red: #FF5252;
  --main-text: #0D1C26;
  --grey-text: #8A8A8A;
  --border-color: #DEDEDE;
  --border-separator-color: #EFEFEF;
  --success-3: #63B207;
  --warning-2: #FB7070;
  --base-1: #F9FAFA;
  --base-2: #F0F2F4;
  --base-3: #E2E5E9;
  --base-4: #B9C1CC;
  --base-5: #545C63;
  --text-3: #07090A;
  --box-shadow-card: 0px 8px 32px rgba(0, 0, 0, 0.15);
  --box-shadow-normal: 0 4px 20px rgba(0, 0, 0, 0.08);
  --box-shadow-error: 0 0 0 0.2rem rgba(255, 82, 82, 0.25);
  --transition-dur: 0.2s;
  --transition-func: cubic-bezier(0.22, 1, 0.36, 1);
  --outline: 0 0 1px 2px var(--primary-1) ;
}
@keyframes slideUpIn {
  0% {
    transform: scaleY(0.8);
    transform-origin: 0 0;
    opacity: 0;
  }
  to {
    transform: scaleY(1);
    transform-origin: 0 0;
    opacity: 1;
  }
}
@keyframes slideUpOut {
  0% {
    transform: scaleY(1);
    transform-origin: 0 0;
    opacity: 1;
  }
  to {
    transform: scaleY(0.8);
    transform-origin: 0 0;
    opacity: 0;
  }
}
@keyframes slideDownIn {
  0% {
    transform: scaleY(0.8);
    transform-origin: 100% 100%;
    opacity: 0;
  }
  to {
    transform: scaleY(1);
    transform-origin: 100% 100%;
    opacity: 1;
  }
}
@keyframes slideDownOut {
  0% {
    transform: scaleY(1);
    transform-origin: 0 0;
    opacity: 1;
  }
  to {
    transform: scaleY(0.8);
    transform-origin: 0 0;
    opacity: 0;
  }
}
* {
  box-sizing: border-box;
}
body {
  font-family: "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  background-color: #f7f8f9;
}
@media screen and (max-width: 640px) {
  body {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
  }
}
html, body, #root {
  height: 100%;
  display: flex;
  flex-direction: column;
}
h1, h2, h3 {
  margin-block-start: 0;
  margin-block-end: 0;
}
h1 {
  font-size: 40px;
  font-weight: bold;
  line-height: 48px;
  color: var(--main-text);
}
@media screen and (max-width: 640px) {
  h1 {
    font-size: 28px;
    font-weight: 600;
    line-height: 32px;
  }
}
h2 {
  font-size: 24px;
  font-weight: bold;
  line-height: 32px;
  color: var(--main-text);
}
@media screen and (max-width: 640px) {
  h2 {
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
  }
}
h3 {
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
  color: var(--main-text);
}
@media screen and (max-width: 640px) {
  h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
  }
}
a {
  text-decoration: none;
}._wrapper_1c9kq_1 {
  flex: 1;
}

._label_1c9kq_5 {
  display: inline-block;
  margin-bottom: 0.5rem;
}

._input_1c9kq_10 {
  display: flex;
  height: 2.5rem; /*1.5rem*/
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  color: #000;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  outline: none;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
._input_1c9kq_10:hover {
  border-color: #b3d7ff;
}
._input_1c9kq_10:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  border-color: #80bdff;
}

._disabled_1c9kq_37 {
  color: var(--grey-text);
  opacity: 0.5;
}
._input_1c9kq_10[disabled] {
  cursor: not-allowed;
}

._error_1c9kq_45,
._error_1c9kq_45:hover,
._error_1c9kq_45:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 82, 82, 0.25);
  border-color: #ff5252;
}

._errorMessage_1c9kq_52 {
  color: #ff5252;
}
._wrapper_1kknf_1 {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5rem;
}

._input_1kknf_7 {
  flex: 1;
}
._wrapper_knxzu_1 {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5rem;
}

._input_knxzu_7 {
  /*flex: 1;*/
}

._errorLabel_knxzu_11 {

}

._errorMessage_knxzu_15 {
  margin-top: 0.5rem;
}
/* для элемента input c type="radio" */
._radio_ano4c_2 {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
/* для элемента label связанного с .radio */
._radio_ano4c_2+label {
  display: inline-flex;
  align-items: center;
  user-select: none;
}
/* создание в label псевдоэлемента  before со следующими стилями */
._radio_ano4c_2+label::before {
  content: '';
  display: inline-block;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #adb5bd;
  border-radius: 50%;
  margin-right: 0.5rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
  transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
/* стили при наведении курсора на радио */
._radio_ano4c_2:not(:disabled):not(:checked)+label:hover::before {
  border-color: #b3d7ff;
}
/* стили для активной радиокнопки (при нажатии на неё) */
._radio_ano4c_2:not(:disabled):active+label::before {
  background-color: #b3d7ff;
  border-color: #b3d7ff;
}
/* стили для радиокнопки, находящейся в фокусе */
._radio_ano4c_2:focus+label::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
/* стили для радиокнопки, находящейся в фокусе и не находящейся в состоянии checked */
._radio_ano4c_2:focus:not(:checked)+label::before {
  border-color: #80bdff;
}
/* стили для радиокнопки, находящейся в состоянии checked */
._radio_ano4c_2:checked+label::before {
  border-color: #0b76ef;
  background-color: #0b76ef;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
/* стили для радиокнопки, находящейся в состоянии disabled */
._radio_ano4c_2:disabled+label::before {
  background-color: #e9ecef;
}
._group_cooor_1 {
  display: flex;
  flex-direction: column;
}

._wrapper_cooor_6 {
  margin-bottom: 0.5rem;
  margin-right: 1rem;
}

._label_cooor_11 {

}
._group_1m4qk_1 {
  display: flex;
  flex-direction: column;
}

._wrapper_1m4qk_6 {
  margin-bottom: 0.5rem;
  margin-right: 1rem;
}

._label_1m4qk_11 {

}

._error_1m4qk_15 {

}

._errorMessage_1m4qk_19 {
  margin-bottom: 0.5rem;
}

/* стили при наведении курсора на радио */
._errorRadio_1m4qk_24:not(:disabled):not(:checked)+label:hover::before {
  border-color: #ff5252;
}
/* стили для активной радиокнопки (при нажатии на неё) */
._errorRadio_1m4qk_24:not(:disabled):active+label::before {
  background-color: #ff5252;
  border-color: #ff5252;
}
/* стили для радиокнопки с ошибкой */
._errorRadio_1m4qk_24+label::before,

._errorRadio_1m4qk_24:focus+label::before {
  box-shadow: 0 0 0 0.2rem rgba(255, 82, 82, 0.25);
}
/* стили для радиокнопки с ошибкой */
._errorRadio_1m4qk_24+label::before,

._errorRadio_1m4qk_24:focus:not(:checked)+label::before {
  border-color: #ff5252;
}
/* стили для радиокнопки, находящейся в состоянии checked */
._errorRadio_1m4qk_24:checked+label::before {
  border-color: red;
  background-color: red;
}
/* стили для радиокнопки, находящейся в состоянии disabled */
._errorRadio_1m4qk_24:disabled+label::before {
  background-color: darkred;
}
._range_1by3e_1 {
  width: 86px;
}

._symbol_1by3e_5 {
  margin: 0 0.5rem;
}
._wrapper_1lxiv_1 {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5rem;
}

._subwrapper_1lxiv_7 {
  display: flex;
  flex-direction: row;
  align-items: center;
}
._wrapper_duoag_1 {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5rem;
}

._subwrapper_duoag_7 {
  display: flex;
  flex-direction: row;
  align-items: center;
}

._errorMessageWrapper_duoag_13 {
  display: flex;
  flex-direction: column;
}

._errorMessage_duoag_13 {
  margin-top: 0.5rem;
}
._select_1sap8_1 {
  flex: 1;
  padding: .375rem 1.75rem .375rem .75rem;
  color: #495057;
}
._select_1sap8_1:not([multiple]) {
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px;
}
._select_1sap8_1[multiple] {
  padding-right: 0;
  flex: none;
}
._select_1sap8_1[multiple] option {
  white-space: normal;
  margin-bottom: 0.25rem;
}

._select_1sap8_1[disabled] {
  overflow: hidden;
}
._wrapper_owqfg_1 {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5rem;
}
._wrapper_1w62u_1 {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5rem;
}

._errorMessage_1w62u_7 {
  margin-top: 0.5rem;
}

/* SCREEN SIZE */
/* FIGMA VARIABLES */
.promocode {
  padding: 32px 0 0 21px;
}
.promocode__view {
  border-top: 1px solid var(--border-separator-color);
  margin-bottom: 20px;
}
.promocode__popup .custom-popup__wrapper {
  width: 475px;
}
.promocode__header {
  margin-bottom: 16px;
}
.promocode-header {
  max-width: 1480px;
}
.promocode-header__btn {
  outline: transparent;
}
.promocode-header__block {
  background-color: #FFF;
  border-radius: 4px;
  padding: 24px 32px;
  display: flex;
  align-items: flex-end;
  width: 100%;
}
.promocode-header__content {
  display: flex;
  align-items: flex-end;
}
.promocode-header__fields-wrapper {
  display: flex;
  width: 100%;
}
.promocode-header__aside-wrapper {
  display: flex;
  position: relative;
  background-color: #FFF;
  padding: 24px 32px;
  border-radius: 4px;
  margin-left: 16px;
}
.promocode-header__input--validity {
  width: 100%;
}
.promocode-header__field {
  flex: 1;
  margin-right: 16px;
}
.promocode-header__field--count {
  width: 100px;
  flex: initial;
}
.promocode-header__field--count [data-value]::after {
  content: attr(data-value) " шт.";
  position: absolute;
  top: 12px;
  left: 16px;
  pointer-events: none;
  color: var(--main-text);
}
.promocode-header__field--count input {
  color: #FFF;
}
.promocode-header__field--price {
  width: 120px;
  flex: initial;
}
.promocode-header__field--price [data-value]::after {
  content: attr(data-value) " ₽";
  position: absolute;
  top: 12px;
  left: 16px;
  pointer-events: none;
  color: var(--main-text);
}
.promocode-header__field--price input {
  color: #FFF;
}
.promocode-header__field--percentages {
  width: 120px;
  flex: initial;
}
.promocode-header__field--percentages [data-value]::after {
  content: attr(data-value) " %";
  position: absolute;
  top: 12px;
  left: 16px;
  pointer-events: none;
  color: var(--main-text);
}
.promocode-header__field--percentages input {
  color: #FFF;
}
.promocode-header__field--search {
  margin-right: 0;
  width: 270px;
}
.promocode-header__field--type {
  flex-basis: 50px;
}
.promocode-header__icon--search {
  color: #B9C4CC;
}
.promocode-header__active-filter {
  position: absolute;
  right: 16px;
  top: -30px;
}
.promocode-header__active-filter .custom-checkbox__wrapper {
  flex-direction: row-reverse;
  align-items: center;
}
.promocode-header__active-filter .custom-checkbox__svg {
  left: unset;
  right: 3px;
}
.promocode-header__active-filter .custom-checkbox__label {
  margin-right: 8px;
}
.promocode-list {
  height: calc(100vh - 126px - 146px);
  overflow-y: scroll;
  margin-top: 20px;
  position: relative;
  max-width: 1480px;
  background-color: #FFF;
}
.promocode-list__table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  background-color: #FFF;
  table-layout: fixed;
}
.promocode-list__table-head {
  background-color: #FFF;
}
.promocode-list__column {
  display: flex;
  align-items: center;
  min-width: 110px;
}
.promocode-list__column--active .promocode-list__sort-link, .promocode-list__column--active .promocode-list__filter-chevron,
.promocode-list__column--active .promocode-list .custom-select__label {
  color: #545C63;
}
.promocode-list__column--active .promocode-list__sort-icon > span {
  background-color: #545C63;
}
.promocode-list__column--active .promocode-list__sort-icon--asc > span:nth-child(1) {
  height: 8px;
}
.promocode-list__column--active .promocode-list__sort-icon--asc > span:nth-child(2) {
  height: 10px;
}
.promocode-list__column--active .promocode-list__sort-icon--asc > span:nth-child(3) {
  height: 12px;
}
.promocode-list__sort-link {
  display: flex;
  align-items: center;
  cursor: pointer;
  background-color: transparent;
  padding: 0;
  border: none;
  color: var(--text-2);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 640px) {
  .promocode-list__sort-link {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
  }
}
.promocode-list__filter-select .rc-virtual-list-holder {
  max-height: none !important;
}
.promocode-list__filter-select .custom-select {
  position: absolute;
  width: 100%;
}
.promocode-list__filter-select .custom-select-arrow {
  display: none;
}
.promocode-list__filter-select .custom-select-selector {
  padding: 0 !important;
  background-color: inherit !important;
  border: none !important;
}
.promocode-list__filter-select .custom-select-selection-search-input {
  cursor: pointer;
}
.promocode-list__filter-select .custom-select-selection-item {
  visibility: hidden;
}
.promocode-list__filter-select .custom-ui-modules__label {
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #949A9E;
  margin-bottom: 0;
}
@media screen and (max-width: 640px) {
  .promocode-list__filter-select .custom-ui-modules__label {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
  }
}
.promocode-list__controls {
  display: flex;
  align-items: center;
}
.promocode-list__sort-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5px;
  margin-left: 6px;
}
.promocode-list__sort-icon > span {
  width: 2px;
  background-color: #B9C4CC;
  transition: height 0.5s var(--transition-func);
  margin: 0 2px;
  border-radius: 2px;
}
.promocode-list__sort-icon > span:nth-child(1) {
  height: 12px;
}
.promocode-list__sort-icon > span:nth-child(2) {
  height: 10px;
}
.promocode-list__sort-icon > span:nth-child(3) {
  height: 8px;
}
.promocode-list__filter-chevron {
  width: 15px;
  height: 15px;
  color: #B9C4CC;
  margin-left: 5px;
}
.promocode-list .promocode-list__table-head .custom-table-header__cell {
  position: sticky;
  top: 0;
  z-index: 2;
  background-color: #FFF;
  padding: 16px 0;
  border-bottom-color: #F9FAFA;
  border-top: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #949A9E;
}
@media screen and (max-width: 640px) {
  .promocode-list .promocode-list__table-head .custom-table-header__cell {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
  }
}
.promocode-list .promocode-list__table-head .custom-table-header__cell:first-of-type {
  padding-left: 24px;
}
.promocode-list .promocode-list__table-head .custom-table-header__cell:nth-child(2) {
  width: 220px;
}
.promocode-list .promocode-list__table-head .custom-table-header__cell:nth-child(3), .promocode-list .promocode-list__table-head .custom-table-header__cell:nth-child(4) {
  width: 110px;
}
.promocode-list .promocode-list__table-head .custom-table-header__cell:nth-child(7) {
  width: 160px;
}
.promocode-list .promocode-list__table-head .custom-table-header__cell:last-of-type {
  padding-right: 24px;
  width: 90px;
}
.promocode-list tbody::before {
  display: block;
  padding-top: var(--virtualPaddingTop);
  content: "";
}
.promocode-list tbody::after {
  display: block;
  padding-bottom: var(--virtualPaddingBottom);
  content: "";
}
.promocode-list-item {
  transition: background-color 0.15s var(--transition-func);
  white-space: nowrap;
}
@media (hover: hover) {
  .promocode-list-item:hover {
    background-color: var(--primary-1);
  }
  .promocode-list-item:hover .copy-to-clipboard__btn-copy {
    visibility: visible;
  }
}
.promocode-list-item__copy-name .copy-to-clipboard__btn-copy {
  visibility: hidden;
  margin-left: 4px;
}
.promocode-list-item__cell {
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.promocode-list-item__cell--active {
  position: relative;
}
.promocode-list-item__cell--active::before {
  content: "";
  position: absolute;
  left: -14px;
  top: calc(50% - 3px);
  width: 6px;
  height: 6px;
  border-radius: 10px;
  background-color: var(--success-3);
}
.promocode-list-item__cell--inactive {
  position: relative;
}
.promocode-list-item__cell--inactive::before {
  content: "";
  position: absolute;
  left: -14px;
  top: calc(50% - 3px);
  width: 6px;
  height: 6px;
  border-radius: 10px;
  background-color: var(--warning-2);
}
.promocode-list-item__cell--btn-group {
  color: #B9C4CC;
}
.promocode-list-item__icon {
  width: 14px;
  height: 14px;
}
.promocode-list-item__icon--remove {
  color: inherit;
  opacity: inherit;
}
.promocode-list-item__icon--edit {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  color: inherit;
  transform: translateY(0);
  transition: color var(--transition-dur) var(--transition-func);
  cursor: pointer;
}
@media (hover: hover) {
  .promocode-list-item__icon--edit:hover {
    color: var(--primary-3);
  }
}
.promocode-list-item__icon--edit-save {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  color: var(--success-3);
  transform: translateY(-100%);
  transition: color var(--transition-dur) var(--transition-func);
  cursor: pointer;
}
@media (hover: hover) {
  .promocode-list-item__icon--edit-save:hover {
    color: var(--primary-3);
  }
}
.promocode-list-item__icon--switch {
  width: 20px;
  height: 20px;
  color: inherit;
  margin-left: 24px;
  transition: color var(--transition-dur) var(--transition-func);
  cursor: pointer;
}
@media (hover: hover) {
  .promocode-list-item__icon--switch:hover {
    color: var(--primary-3);
  }
}
.promocode-list-item .custom-table-body-cell {
  padding: 16px 0;
  border-top: none;
  border-bottom: none;
}
.promocode-list-item .custom-table-body-cell:first-of-type {
  padding-left: 24px;
}
.promocode-list-item .custom-table-body-cell:last-of-type {
  padding-right: 24px;
}
.promocode-list-item__calendar input {
  padding: 0 5px;
  line-height: 100%;
  border: none;
  box-shadow: 0 0 1px 1px var(--primary-2);
  margin-left: -5px;
  width: calc(100% - 20px);
}
.promocode-list-item__calendar .custom-datepicker-suffix {
  display: none;
}
.promocode-list-item .custom-datepicker__label {
  display: none;
}
.promocode-list-item__edit {
  width: 20px;
  height: 20px;
  position: relative;
  overflow: hidden;
}
.promocode-list-item__edit .promocode-list-item__icon--edit-save,
.promocode-list-item__edit .promocode-list-item__icon--edit {
  transition: transform 0.5s var(--transition-func);
}
.promocode-list-item__edit--on-edit .promocode-list-item__icon--edit-save {
  transform: translateY(0);
  transition: transform 0.5s var(--transition-func);
}
.promocode-list-item__edit--on-edit .promocode-list-item__icon--edit {
  transform: translateY(100%);
  transition: transform 0.5s var(--transition-func);
}
.promocode-list-item__popup .custom-popup__footer {
  display: flex;
}
.promocode-list-item__popup .custom-popup__btn {
  width: calc(50% - 6px);
}
.promocode-list-item__popup .custom-popup__btn--close {
  order: 1;
  margin-left: 12px;
}
.promocode-list-item__popup .custom-popup__wrapper {
  width: 380px;
}/* SCREEN SIZE */
/* FIGMA VARIABLES */
.psychologists {
  padding: 32px 21px 0;
}
.psychologists__view {
  border-top: 1px solid var(--border-separator-color);
  margin-bottom: 20px;
}
.psychologists__popup .custom-popup__wrapper {
  width: 475px;
}
.psychologists__header {
  margin-bottom: 16px;
}
.psychologists-header__btn {
  outline: transparent;
}
.psychologists-header__block {
  background-color: #FFF;
  border-radius: 4px;
  padding: 24px 32px;
  display: flex;
  align-items: flex-end;
  width: 100%;
}
.psychologists-header__content {
  display: flex;
  align-items: flex-end;
}
.psychologists-header__fields-wrapper {
  display: flex;
  width: 100%;
}
.psychologists-header__aside-wrapper {
  display: flex;
  position: relative;
  background-color: #FFF;
  padding: 24px 32px;
  border-radius: 4px;
  width: 100%;
  align-items: flex-end;
}
.psychologists-header__input--validity {
  width: 100%;
}
.psychologists-header__field {
  flex: 1;
  margin-right: 16px;
}
.psychologists-header__field--practices {
  margin-right: 0;
}
.psychologists-header__field--custom-actions {
  flex-grow: 0;
  margin-left: 16px;
  margin-right: 0;
  height: 42px;
  display: flex;
  align-items: center;
}
.psychologists-header__icon--search, .psychologists-header__icon--gear {
  color: #B9C4CC;
}
.psychologists-header__icon--gear {
  height: 30px;
  width: 30px;
}
.psychologists-header__active-filter {
  position: absolute;
  right: 16px;
  top: -30px;
}
.psychologists-header__active-filter__active {
  right: 360px;
}
.psychologists-header__active-filter__banned {
  right: 203px;
}
.psychologists-header__active-filter .custom-checkbox__wrapper {
  flex-direction: row-reverse;
  align-items: center;
}
.psychologists-header__active-filter .custom-checkbox__svg {
  left: unset;
  right: 3px;
}
.psychologists-header__active-filter .custom-checkbox__label {
  margin-right: 8px;
}
.psychologists-list {
  height: calc(100vh - 126px - 146px);
  overflow-y: scroll;
  margin-top: 20px;
  position: relative;
  background-color: #FFF;
}
.psychologists-list__table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  background-color: #FFF;
  table-layout: fixed;
}
.psychologists-list__table-head {
  background-color: #FFF;
}
.psychologists-list__column {
  display: flex;
  align-items: center;
  min-width: 110px;
}
.psychologists-list__column--active .psychologists-list__sort-link, .psychologists-list__column--active .psychologists-list__filter-chevron, .psychologists-list__column--active .psychologists-list .custom-select__label {
  color: #545C63;
}
.psychologists-list__column--active .psychologists-list__sort-icon > span {
  background-color: #545C63;
}
.psychologists-list__column--active .psychologists-list__sort-icon--asc > span:nth-child(1) {
  height: 8px;
}
.psychologists-list__column--active .psychologists-list__sort-icon--asc > span:nth-child(2) {
  height: 10px;
}
.psychologists-list__column--active .psychologists-list__sort-icon--asc > span:nth-child(3) {
  height: 12px;
}
.psychologists-list__sort-link {
  display: flex;
  align-items: center;
  cursor: pointer;
  background-color: transparent;
  padding: 0;
  border: none;
  color: var(--text-2);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 640px) {
  .psychologists-list__sort-link {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
  }
}
.psychologists-list__filter-select .rc-virtual-list-holder {
  max-height: none !important;
}
.psychologists-list__filter-select .custom-select {
  position: absolute;
  width: 100%;
}
.psychologists-list__filter-select .custom-select-arrow {
  display: none;
}
.psychologists-list__filter-select .custom-select-selector {
  padding: 0 !important;
  background-color: inherit !important;
  border: none !important;
}
.psychologists-list__filter-select .custom-select-selection-search-input {
  cursor: pointer;
}
.psychologists-list__filter-select .custom-select-selection-item {
  visibility: hidden;
}
.psychologists-list__filter-select .custom-ui-modules__label {
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #949A9E;
  margin-bottom: 0;
}
@media screen and (max-width: 640px) {
  .psychologists-list__filter-select .custom-ui-modules__label {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
  }
}
.psychologists-list__controls {
  display: flex;
  align-items: center;
}
.psychologists-list__sort-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5px;
  margin-left: 6px;
}
.psychologists-list__sort-icon > span {
  width: 2px;
  background-color: #B9C4CC;
  transition: height 0.5s var(--transition-func);
  margin: 0 2px;
  border-radius: 2px;
}
.psychologists-list__sort-icon > span:nth-child(1) {
  height: 12px;
}
.psychologists-list__sort-icon > span:nth-child(2) {
  height: 10px;
}
.psychologists-list__sort-icon > span:nth-child(3) {
  height: 8px;
}
.psychologists-list__filter-chevron {
  width: 15px;
  height: 15px;
  color: #B9C4CC;
  margin-left: 5px;
}
.psychologists-list .psychologists-list__table-head .custom-table-header__cell {
  position: sticky;
  top: 0;
  z-index: 2;
  background-color: #FFF;
  padding: 16px 0;
  border-bottom-color: #F9FAFA;
  border-top: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #949A9E;
}
@media screen and (max-width: 640px) {
  .psychologists-list .psychologists-list__table-head .custom-table-header__cell {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
  }
}
.psychologists-list .psychologists-list__table-head .custom-table-header__cell:first-of-type {
  padding-left: 24px;
  box-sizing: content-box;
}
.psychologists-list .psychologists-list__table-head .custom-table-header__cell:last-of-type {
  padding-right: 24px;
  box-sizing: content-box;
}
.psychologists-list .psychologists-list__table-head--sex {
  width: 85px;
}
.psychologists-list .psychologists-list__table-head--skype {
  width: 60px;
}
.psychologists-list .psychologists-list__table-head--phoneNumber {
  width: 80px;
}
.psychologists-list .psychologists-list__table-head--isShownInAutomatch {
  width: 105px;
}
.psychologists-list .psychologists-list__table-head--isActive {
  width: 80px;
}
.psychologists-list .psychologists-list__table-head--isBanned {
  width: 130px;
}
.psychologists-list .psychologists-list__table-head--skypeLink {
  width: 80px;
}
.psychologists-list .psychologists-list__table-head--urlProfile {
  width: 95px;
}
.psychologists-list .psychologists-list__table-head--hash {
  width: 80px;
}
.psychologists-list tbody::before {
  display: block;
  padding-top: var(--virtualPaddingTop);
  content: "";
}
.psychologists-list tbody::after {
  display: block;
  padding-bottom: var(--virtualPaddingBottom);
  content: "";
}
.psychologists-list-item {
  transition: background-color 0.15s var(--transition-func);
  white-space: nowrap;
}
.psychologists-list-item .custom-table-body-cell {
  padding: 16px 0;
  border-top: none;
  border-bottom: none;
  white-space: wrap;
  text-overflow: ellipsis;
  overflow: hidden;
  vertical-align: top;
}
.psychologists-list-item .custom-table-body-cell:first-of-type {
  padding-left: 24px;
}
.psychologists-list-item .custom-table-body-cell:last-of-type {
  padding-right: 24px;
}
.psychologists-list-item__cell--practice, .psychologists-list-item__cell--topics {
  padding-right: 10px;
  white-space: normal;
}
.psychologists-list-item__cell--long {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.psychologists-list-item__cell__icon--eye {
  cursor: pointer;
  color: #B9C4CC;
  height: 20px;
  width: 20px;
}
.psychologists-list-item__popup .custom-popup__footer {
  display: flex;
}
.psychologists-list-item__popup .custom-popup__btn {
  width: calc(50% - 6px);
}
.psychologists-list-item__popup .custom-popup__btn--close {
  order: 1;
  margin-left: 12px;
}
.psychologists-list-item__popup .custom-popup__wrapper {
  width: 380px;
}