* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  outline: none;
}
.button {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  background: none;
  cursor: pointer;
  font-size: 16px;
  text-align: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  color: #424242;
  outline: none;
}

.button.stylized {
  background: #ffffff;
  border-radius: 5px;
  border: 1px solid #d3d3d3;
  padding: 10px;
  height: 40px;
}

.button:disabled {
  cursor: default;
  opacity: 0.5;
}

.dash-loader {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  height: 32px;
  width: 32px;
  -webkit-animation: dash-loader-1 3s linear infinite;
          animation: dash-loader-1 3s linear infinite;
  margin: auto;
}

.dash-loader ::after,
.dash-loader ::before {
  box-sizing: border-box;
}

@-webkit-keyframes dash-loader-1 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes dash-loader-1 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.dash-loader span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: inherit;
  width: inherit;
  clip: rect(16px, 32px, 32px, 0);
  -webkit-animation: dash-loader-2 1.5s cubic-bezier(0.77, 0, 0.175, 1) infinite;
          animation: dash-loader-2 1.5s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
@-webkit-keyframes dash-loader-2 {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes dash-loader-2 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.dash-loader span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: inherit;
  width: inherit;
  border: 3px solid transparent;
  border-top: 3px solid #424242;
  border-radius: 50%;
  -webkit-animation: dash-loader-3 1.5s cubic-bezier(0.77, 0, 0.175, 1) infinite;
          animation: dash-loader-3 1.5s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
@-webkit-keyframes dash-loader-3 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes dash-loader-3 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.dash-loader span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: inherit;
  width: inherit;
  border: 3px solid rgba(66, 66, 66, 0.5);
  border-radius: 50%;
}

.text {
  display: block;
  color: #424242;
}

.text.capitalized::first-letter {
  text-transform: capitalize;
}

.text.bold {
  font-weight: bold;
}

.text.multiline { 
  white-space: pre-wrap;
  word-break: break-word;
}
.button-with-loader {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
}

.button-with-loader__button {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.button-with-loader__button.loading:disabled {
  opacity: 1;
}

.button-with-loader__loader {
  width: 16px;
  height: 16px;
}

.button-with-loader__loader > span {
  clip: rect(8px, 16px, 16px, 0);
}
.button-with-loader__loader span::before,
.button-with-loader__loader span::after {
  border-width: 3px;
}

.button-with-loader__success,
.button-with-loader__error {
  text-align: center;
  margin-top: 4px;
  font-size: 14px;
}
.button-with-loader__error {
  color: #d22c75;
}

.checkbox {
  width: 20px;
  height: 20px;
  border: 1px solid #d3d3d3;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 2px;
  font-size: 14px;
  background: #ffffff;
}

.checkbox.checked {
  color: #424242;
}

.checkbox-with-label {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  cursor: pointer;
}

.checkbox-with-label__label {
  margin-left: 5px;
  line-height: 20px;
  font-size: 14px;
  white-space: pre-wrap;
}

.checkbox-with-label.disabled {
  cursor: default;
}

.checkbox-with-label.disabled > .checkbox-with-label__label {
  opacity: 0.5;
}
.cluster-loader {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  height: 32px;
  width: 32px;
  -webkit-animation: cluster-loader-1 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
          animation: cluster-loader-1 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
  margin: auto;
}
@-webkit-keyframes cluster-loader-1 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes cluster-loader-1 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.cluster-loader::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: auto;
  margin: auto;
  width: 8px;
  height: 8px;
  background: #424242;
  border-radius: 50%;
  -webkit-animation: cluster-loader-2 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
          animation: cluster-loader-2 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
@-webkit-keyframes cluster-loader-2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    -webkit-transform: translate3d(24px, 0, 0) scale(0.5);
            transform: translate3d(24px, 0, 0) scale(0.5);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes cluster-loader-2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    -webkit-transform: translate3d(24px, 0, 0) scale(0.5);
            transform: translate3d(24px, 0, 0) scale(0.5);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
}
.cluster-loader::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: auto;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  background: #424242;
  border-radius: 50%;
  -webkit-animation: cluster-loader-3 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
          animation: cluster-loader-3 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
@-webkit-keyframes cluster-loader-3 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    -webkit-transform: translate3d(-24px, 0, 0) scale(0.5);
            transform: translate3d(-24px, 0, 0) scale(0.5);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes cluster-loader-3 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    -webkit-transform: translate3d(-24px, 0, 0) scale(0.5);
            transform: translate3d(-24px, 0, 0) scale(0.5);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
}
.cluster-loader span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: inherit;
  width: inherit;
}
.cluster-loader span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: auto;
  right: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  background: #424242;
  border-radius: 50%;
  -webkit-animation: cluster-loader-4 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
          animation: cluster-loader-4 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
@-webkit-keyframes cluster-loader-4 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    -webkit-transform: translate3d(0, 24px, 0) scale(0.5);
            transform: translate3d(0, 24px, 0) scale(0.5);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes cluster-loader-4 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    -webkit-transform: translate3d(0, 24px, 0) scale(0.5);
            transform: translate3d(0, 24px, 0) scale(0.5);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
}
.cluster-loader span::after {
  content: "";
  display: block;
  position: absolute;
  top: auto;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  background: #424242;
  border-radius: 50%;
  -webkit-animation: cluster-loader-5 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
          animation: cluster-loader-5 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
@-webkit-keyframes cluster-loader-5 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    -webkit-transform: translate3d(0, -24px, 0) scale(0.5);
            transform: translate3d(0, -24px, 0) scale(0.5);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes cluster-loader-5 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    -webkit-transform: translate3d(0, -24px, 0) scale(0.5);
            transform: translate3d(0, -24px, 0) scale(0.5);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
}

.column {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

.input {
  border-radius: 5px;
  border: 1px solid #d3d3d3;
  outline: none;
  padding: 10px;
  color: #424242;
  font-size: 16px;
  height: 40px;
  background: #ffffff;
}

.input:focus {
  border: 1px solid #b0bec5;
  box-shadow: 0 0 6px 0 #b0bec5;
}

.input.error {
  border: 1px solid #d22c75;
  box-shadow: 0 0 6px 0#d22c75;
}

.input::-webkit-input-placeholder {
  color: #bdcad0;
}

.input:-ms-input-placeholder {
  color: #bdcad0;
}

.input::placeholder {
  color: #bdcad0;
}

.input:disabled {
  opacity: 0.5;
}
.scrollbar__track {
  position: absolute;
  border: none;
  border-radius: 3px;
}

.scrollbar__track.horizontal {
  width: 100%;
  height: 6px;
  right: 0px;
  bottom: 0px;
}

.scrollbar__track.vertical {
  width: 6px;
  height: 100%;
  top: 0px;
  right: 0px;
}

.scrollbar__track.hidden {
  display: none;
}

.scrollbar__thumb {
  border-radius: inherit;
  background: #bdcad0;
}

.content-height-scrollbar__content-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
}

.combo-box-selected-item {
  position: relative;
  padding-right: 50px !important;
}

.combo-box-selected-item.disabled {
  opacity: 0.5;
}

.combo-box-selected-item__value {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.combo-box-selected-item__deselect-button {
  width: 40px;
  height: 100%;
  line-height: 100%;
  font-weight: bold;
  position: absolute;
  right: 0;
  top: 0;
  background: #e7e7e7;
  border-left: 1px solid #d3d3d3;
  border-radius: inherit;
  border-bottom-left-radius: unset;
  border-top-left-radius: unset;
}

.combo-box-selected-item__deselect-button:disabled {
  opacity: unset;
}

.combo-box {
  position: relative;
  background: #ffffff;
  border-radius: 5px;
}
.combo-box.error {
  border-color: #d22c75;
  box-shadow: 0 0 6px 0#d22c75;
}

.combo-box__item {
  position: relative;
  width: 100%;
  text-align: left;
  -ms-flex-pack: left;
      justify-content: left;
  -ms-flex-align: start;
      align-items: flex-start;
  font-size: 16px;
  padding: 10px;
  border-top: 1px solid #d3d3d3;
  overflow-wrap: break-word;
  line-height: 23px;
}

.combo-box__input {
  width: 100%;
  border-radius: inherit;
}
.combo-box__input:focus {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.combo-box__selected-item {
  height: 40px;
  padding: 10px;
  border: 1px solid #d3d3d3;
  border-radius: inherit;
}

.combo-box__content-wrap {
  position: absolute;
  width: 100%;
  max-height: 140px;
  border-radius: inherit;
  background: inherit;
}

.combo-box__scrollbar {
  max-height: inherit;
  background: inherit;
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  border: 1px solid #d3d3d3;
  border-top: unset;
  z-index: 1;
}

.combo-box__scrollbar > .scrollbar__track.horizontal {
  visibility: hidden;
}

.combo-box__item:hover {
  background: #eceff1;
}

.wrap-with-label__label {
  line-height: 27px;
  font-size: 12px;
  color: #a7a7a7;
}

.wrap-with-label.mandatory > .wrap-with-label__label::after {
  content: " *";
  color: #d22c75;
  font-weight: normal;
}

.wrap-with-label__empty-text {
  line-height: 27px;
}

.dropdown {
  position: relative;
  background: #ffffff;
  border-radius: 5px;
}
.dropdown.error {
  border-color: #d22c75;
  box-shadow: 0 0 6px 0#d22c75;
}

.dropdown__title,
.dropdown__item {
  position: relative;
  width: 100%;
  height: 40px;
  text-align: left;
  -ms-flex-pack: left;
      justify-content: left;
  -ms-flex-align: start;
      align-items: flex-start;
  font-size: 16px;
  padding: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.dropdown__title {
  background: inherit;
  border-radius: inherit;
  padding-right: 30px;
  border: 1px solid #d3d3d3;
}

.dropdown__item {
  border-top: 1px solid #d3d3d3;
}

.dropdown.open > .dropdown__title {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.dropdown__title:disabled {
  background: unset;
  opacity: 0.5;
}

.dropdown__title:before {
  content: "";
  position: absolute;
  right: 15px;
  top: calc(50% - 2.5px);
  display: block;
  border: 5px solid transparent;
  border-top: 5px solid #424242;
}

.dropdown.open > .dropdown__title:before {
  top: unset;
  bottom: calc(50% - 2.5px);
  border: 5px solid transparent;
  border-bottom: 5px solid #424242;
}

.dropdown__content-wrap {
  position: absolute;
  width: 100%;
  max-height: 140px;
  border-radius: inherit;
  background: inherit;
}

.dropdown__scrollbar {
  max-height: inherit;
  background: inherit;
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  border: 1px solid #d3d3d3;
  border-top: unset;
  z-index: 1;
}

.dropdown__scrollbar > .scrollbar__track.horizontal {
  visibility: hidden;
}

.dropdown__item:hover {
  background: #eceff1;
}

.external-link {
  color: #42a5f5;
  outline: none;
  cursor: pointer;
  text-decoration: underline;
}
.ReactTable{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;border:1px solid rgba(0,0,0,0.1);}.ReactTable *{box-sizing:border-box}.ReactTable .rt-table{-ms-flex:auto 1;flex:auto 1;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:stretch;align-items:stretch;width:100%;border-collapse:collapse;overflow:auto}.ReactTable .rt-thead{-ms-flex:1 0 auto;flex:1 0 auto;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-webkit-user-select:none;-ms-user-select:none;user-select:none;}.ReactTable .rt-thead.-headerGroups{background:rgba(0,0,0,0.03);border-bottom:1px solid rgba(0,0,0,0.05)}.ReactTable .rt-thead.-filters{border-bottom:1px solid rgba(0,0,0,0.05);}.ReactTable .rt-thead.-filters input,.ReactTable .rt-thead.-filters select{border:1px solid rgba(0,0,0,0.1);background:#fff;padding:5px 7px;font-size:inherit;border-radius:3px;font-weight:normal;outline-width:0}.ReactTable .rt-thead.-filters .rt-th{border-right:1px solid rgba(0,0,0,0.02)}.ReactTable .rt-thead.-header{box-shadow:0 2px 15px 0 rgba(0,0,0,0.15)}.ReactTable .rt-thead .rt-tr{text-align:center}.ReactTable .rt-thead .rt-th,.ReactTable .rt-thead .rt-td{padding:5px 5px;line-height:normal;position:relative;border-right:1px solid rgba(0,0,0,0.05);transition:box-shadow .3s cubic-bezier(.175,.885,.32,1.275);box-shadow:inset 0 0 0 0 transparent;}.ReactTable .rt-thead .rt-th.-sort-asc,.ReactTable .rt-thead .rt-td.-sort-asc{box-shadow:inset 0 3px 0 0 rgba(0,0,0,0.6)}.ReactTable .rt-thead .rt-th.-sort-desc,.ReactTable .rt-thead .rt-td.-sort-desc{box-shadow:inset 0 -3px 0 0 rgba(0,0,0,0.6)}.ReactTable .rt-thead .rt-th.-cursor-pointer,.ReactTable .rt-thead .rt-td.-cursor-pointer{cursor:pointer}.ReactTable .rt-thead .rt-th:last-child,.ReactTable .rt-thead .rt-td:last-child{border-right:0}.ReactTable .rt-thead .rt-th:focus{outline-width:0}.ReactTable .rt-thead .rt-resizable-header{overflow:visible;}.ReactTable .rt-thead .rt-resizable-header:last-child{overflow:hidden}.ReactTable .rt-thead .rt-resizable-header-content{overflow:hidden;text-overflow:ellipsis}.ReactTable .rt-thead .rt-header-pivot{border-right-color:#f7f7f7}.ReactTable .rt-thead .rt-header-pivot:after,.ReactTable .rt-thead .rt-header-pivot:before{left:100%;top:50%;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none}.ReactTable .rt-thead .rt-header-pivot:after{border-color:rgba(255,255,255,0);border-left-color:#fff;border-width:8px;margin-top:-8px}.ReactTable .rt-thead .rt-header-pivot:before{border-color:rgba(102,102,102,0);border-left-color:#f7f7f7;border-width:10px;margin-top:-10px}.ReactTable .rt-tbody{-ms-flex:99999 1 auto;flex:99999 1 auto;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;overflow:auto;}.ReactTable .rt-tbody .rt-tr-group{border-bottom:solid 1px rgba(0,0,0,0.05);}.ReactTable .rt-tbody .rt-tr-group:last-child{border-bottom:0}.ReactTable .rt-tbody .rt-td{border-right:1px solid rgba(0,0,0,0.02);}.ReactTable .rt-tbody .rt-td:last-child{border-right:0}.ReactTable .rt-tbody .rt-expandable{cursor:pointer;text-overflow:clip}.ReactTable .rt-tr-group{-ms-flex:1 0 auto;flex:1 0 auto;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:stretch;align-items:stretch}.ReactTable .rt-tr{-ms-flex:1 0 auto;flex:1 0 auto;display:-ms-inline-flexbox;display:inline-flex}.ReactTable .rt-th,.ReactTable .rt-td{-ms-flex:1 0 0px;flex:1 0 0;white-space:nowrap;text-overflow:ellipsis;padding:7px 5px;overflow:hidden;transition:.3s ease;transition-property:width,min-width,padding,opacity;}.ReactTable .rt-th.-hidden,.ReactTable .rt-td.-hidden{width:0 !important;min-width:0 !important;padding:0 !important;border:0 !important;opacity:0 !important}.ReactTable .rt-expander{display:inline-block;position:relative;margin:0;color:transparent;margin:0 10px;}.ReactTable .rt-expander:after{content:'';position:absolute;width:0;height:0;top:50%;left:50%;-webkit-transform:translate(-50%,-50%) rotate(-90deg);-ms-transform:translate(-50%,-50%) rotate(-90deg);transform:translate(-50%,-50%) rotate(-90deg);border-left:5.04px solid transparent;border-right:5.04px solid transparent;border-top:7px solid rgba(0,0,0,0.8);transition:all .3s cubic-bezier(.175,.885,.32,1.275);cursor:pointer}.ReactTable .rt-expander.-open:after{-webkit-transform:translate(-50%,-50%) rotate(0);-ms-transform:translate(-50%,-50%) rotate(0);transform:translate(-50%,-50%) rotate(0)}.ReactTable .rt-resizer{display:inline-block;position:absolute;width:36px;top:0;bottom:0;right:-18px;cursor:col-resize;z-index:10}.ReactTable .rt-tfoot{-ms-flex:1 0 auto;flex:1 0 auto;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;box-shadow:0 0 15px 0 rgba(0,0,0,0.15);}.ReactTable .rt-tfoot .rt-td{border-right:1px solid rgba(0,0,0,0.05);}.ReactTable .rt-tfoot .rt-td:last-child{border-right:0}.ReactTable.-striped .rt-tr.-odd{background:rgba(0,0,0,0.03)}.ReactTable.-highlight .rt-tbody .rt-tr:not(.-padRow):hover{background:rgba(0,0,0,0.05)}.ReactTable .-pagination{z-index:1;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:stretch;align-items:stretch;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:3px;box-shadow:0 0 15px 0 rgba(0,0,0,0.1);border-top:2px solid rgba(0,0,0,0.1);}.ReactTable .-pagination input,.ReactTable .-pagination select{border:1px solid rgba(0,0,0,0.1);background:#fff;padding:5px 7px;font-size:inherit;border-radius:3px;font-weight:normal;outline-width:0}.ReactTable .-pagination .-btn{-webkit-appearance:none;appearance:none;display:block;width:100%;height:100%;border:0;border-radius:3px;padding:6px;font-size:1em;color:rgba(0,0,0,0.6);background:rgba(0,0,0,0.1);transition:all .1s ease;cursor:pointer;outline-width:0;}.ReactTable .-pagination .-btn[disabled]{opacity:.5;cursor:default}.ReactTable .-pagination .-btn:not([disabled]):hover{background:rgba(0,0,0,0.3);color:#fff}.ReactTable .-pagination .-previous,.ReactTable .-pagination .-next{-ms-flex:1;flex:1;text-align:center}.ReactTable .-pagination .-center{-ms-flex:1.5;flex:1.5;text-align:center;margin-bottom:0;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.ReactTable .-pagination .-pageInfo{display:inline-block;margin:3px 10px;white-space:nowrap}.ReactTable .-pagination .-pageJump{display:inline-block;}.ReactTable .-pagination .-pageJump input{width:70px;text-align:center}.ReactTable .-pagination .-pageSizeOptions{margin:3px 10px}.ReactTable .rt-noData{display:block;position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);background:rgba(255,255,255,0.8);transition:all .3s ease;z-index:1;pointer-events:none;padding:20px;color:rgba(0,0,0,0.5)}.ReactTable .-loading{display:block;position:absolute;left:0;right:0;top:0;bottom:0;background:rgba(255,255,255,0.8);transition:all .3s ease;z-index:-1;opacity:0;pointer-events:none;}.ReactTable .-loading > div{position:absolute;display:block;text-align:center;width:100%;top:50%;left:0;font-size:15px;color:rgba(0,0,0,0.6);-webkit-transform:translateY(-52%);-ms-transform:translateY(-52%);transform:translateY(-52%);transition:all .3s cubic-bezier(.25,.46,.45,.94)}.ReactTable .-loading.-active{opacity:1;z-index:2;pointer-events:all;}.ReactTable .-loading.-active > div{-webkit-transform:translateY(50%);-ms-transform:translateY(50%);transform:translateY(50%)}.ReactTable .rt-resizing .rt-th,.ReactTable .rt-resizing .rt-td{transition:none !important;cursor:col-resize;-webkit-user-select:none;-ms-user-select:none;user-select:none}
.table__loader {
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
}

.table__loader__inner {
  width: 120px;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.ReactTable .-pagination .-btn {
  width: 110px;
  text-align: center;
}
.ReactTable .-pagination {
  -ms-flex-pack: center;
      justify-content: center;
}
.ReactTable .-pagination .-previous,
.ReactTable .-pagination .-center,
.ReactTable .-pagination .-next {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: none;
      flex: none;
}

.ReactTable.-highlight .rt-tbody .rt-tr:hover {
  background: rgba(0, 0, 0, 0.1) !important;
  cursor: pointer;
}

.ReactTable .rt-thead.-filters .rt-th {
  overflow: visible;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.ReactTable .rt-thead.-filters .input,
.ReactTable .rt-thead.-filters .combo-box__input,
.ReactTable .rt-thead.-filters .combo-box__selected-item {
  border: 1px solid #d3d3d3;
  border-radius: 3px;
}

.ReactTable .rt-thead.-filters .input,
.ReactTable .rt-thead.-filters .dropdown__title,
.ReactTable .rt-thead.-filters .dropdown__item,
.ReactTable .rt-thead.-filters .combo-box__item,
.ReactTable .rt-thead.-filters .combo-box__selected-item {
  height: 100%;
  width: 100%;
  padding: 5px 7px;
}

.ReactTable .rt-thead.-filters .dropdown__title {
  padding-right: 30px;
  border-radius: 3px;
}

.ReactTable .rt-thead.-filters .dropdown.open > .dropdown__title,
.ReactTable .rt-thead.-filters .combo-box__input:focus {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.ReactTable .rt-thead.-filters .dropdown__scrollbar,
.ReactTable .rt-thead.-filters .combo-box__scrollbar {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}

.ReactTable .rt-thead.-filters .combo-box-selected-item__deselect-button {
  height: 100%;
  padding: unset;
  width: 30px;
}

.ReactTable .rt-tbody .rt-td {
  line-height: 18px;
}
.manual-table .-pageInfo > .-totalPages {
  display: none;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 100vw;
  height: 100%;
  background: rgba(88, 106, 141, 0.9);
}

.modal__wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-width: 30%;
  background: #ffffff;
  border-radius: 4px;
  position: relative;
}

.modal__header {
  display: -ms-flexbox;
  display: flex;
  padding: 20px 20px 10px 20px;
  -ms-flex-pack: center;
      justify-content: center;
  border-radius: 4px 4px 0 0;
}

.modal__header__header-text {
  font-size: 18px;
  text-align: center;
}

.modal__header__close-button {
  font-weight: bold;
  position: absolute;
  top: 3px;
  right: 8px;
  font-size: 22px;
  font-weight: bold;
  width: unset;
  padding: unset;
  border: unset;
}

.modal__content {
  padding: 20px;
  min-height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
}
.modal__content.with-header {
  padding: 10px 20px 20px 20px;
  min-height: calc(100% - 52px);
}
.multi-select {
  max-height: 200px;
}

.multi-select__combo-box {
  width: inherit;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.multi-select__scrollbar {
  max-height: calc(100% - 42px);
  margin-top: 5px;
}

.multi-select__scrollbar > div:nth-child(1) > div {
  padding-right: 12px;
}

.multi-select__list-item {
  padding: 10px;
  -ms-flex-align: center;
      align-items: center;
}

.multi-select__list-item__deselect-button {
  width: unset;
  padding: unset;
  border: unset;
  margin-left: auto;
}
.progress-loader {
  width: 32px;
  height: 32px;
}

.progress-loader > .CircularProgressbar .CircularProgressbar-path {
  stroke: #424242;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.5s ease 0s;
}

.progress-loader > .CircularProgressbar .CircularProgressbar-trail {
  stroke: #d3d3d3;
}

.progress-loader > .CircularProgressbar .CircularProgressbar-text {
  stroke: #424242;
  text-anchor: middle;
}

.radio {
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #d3d3d3;
  border-radius: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #ffffff;
}

.radio.selected::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: #424242;
  background-clip: padding-box;
  border-radius: inherit;
}

.radio-with-label {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  cursor: pointer;
}

.radio-with-label__label {
  margin-left: 5px;
  line-height: 20px;
  font-size: 14px;
  white-space: pre-wrap;
}

.radio-with-label.disabled {
  cursor: default;
}

.radio-with-label.disabled > .radio-with-label__label {
  opacity: 0.5;
}
.router-link > a,
.router-link > a:focus,
.router-link > a:hover,
.router-link > a:active {
  outline: none;
}
.router-link {
  color: #424242;
}

.teardrop-loader {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  height: 32px;
  width: 32px;
  margin: auto;
}
.teardrop-loader span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: inherit;
  width: inherit;
}
.teardrop-loader span::before,
.teardrop-loader span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: inherit;
  width: inherit;
  border: 2px solid #424242;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: teardrop-loader-1 1.5s cubic-bezier(0.075, 0.82, 0.165, 1) infinite;
          animation: teardrop-loader-1 1.5s cubic-bezier(0.075, 0.82, 0.165, 1) infinite;
}
@-webkit-keyframes teardrop-loader-1 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale(0);
            transform: translate3d(0, 0, 0) scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1.5);
            transform: translate3d(0, 0, 0) scale(1.5);
    opacity: 0;
  }
}
@keyframes teardrop-loader-1 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale(0);
            transform: translate3d(0, 0, 0) scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1.5);
            transform: translate3d(0, 0, 0) scale(1.5);
    opacity: 0;
  }
}
.teardrop-loader span::after {
  -webkit-animation: teardrop-loader-2 1.5s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s
    infinite;
          animation: teardrop-loader-2 1.5s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s
    infinite;
}
@-webkit-keyframes teardrop-loader-2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale(0);
            transform: translate3d(0, 0, 0) scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
    opacity: 0;
  }
}
@keyframes teardrop-loader-2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale(0);
            transform: translate3d(0, 0, 0) scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
    opacity: 0;
  }
}
.text-with-label__text {
  line-height: 21px;
}

.text-with-scrollbar-and-label__text {
  line-height: 21px;
  padding-right: 9px;
}
.textarea {
  outline: none;
  cursor: text;
  resize: none;
  padding: 10px;
  overflow: hidden;
  border: solid 1px #d3d3d3;
  border-radius: 5px;
  color: #424242;
  font-size: 16px;
  line-height: 18px;
  background: #ffffff;
}

.textarea:focus {
  border: 1px solid #b0bec5;
  box-shadow: 0 0 6px 0 #b0bec5;
}

.textarea:disabled {
  cursor: default;
  opacity: 0.5;
}
.textarea-with-scrollbar {
  padding-bottom: 10px;
  border: 1px solid #d3d3d3;
  border-radius: 5px;
  background: #ffffff;
}

.textarea-with-scrollbar__textarea:disabled {
  opacity: unset;
}

.textarea-with-scrollbar:focus-within {
  border: 1px solid #b0bec5;
  box-shadow: 0 0 6px 0 #b0bec5;
}

.textarea-with-scrollbar__scrollbar.scrollbar > .scrollbar__track.vertical {
  margin: 10px;
  height: calc(100% - 20px);
}

.textarea-with-scrollbar__textarea {
  margin-right: 9px;
  width: calc(100% - 9px);
  padding: 10px 10px 0px 10px;
  border: unset;
}

.textarea-with-scrollbar__textarea:focus {
  box-shadow: none;
  border: unset;
}

.textarea-with-scrollbar.disabled {
  opacity: 0.5;
}

.tooltip__column{
  -ms-flex-align: start;
      align-items: flex-start;
}

.tootlip__block{
  position: relative;
}

.tootlip__block{
  background-color: #e3f6fd;
  padding: 15px;
}

.tootlip__block::before, .tootlip__block::after {
  content: '';
  position: absolute;
  width: 20px; 
  height: 20px;
  bottom: -10px;
  left: 50%;
  background: #e3f6fd;
  z-index: -1;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg); 
}
.rounded-button {
  text-decoration: none;
  font-size: 16px;
  border-radius: 24px;
  height: 40px;
  padding: 10px 20px;
}

.red-outline-button:disabled {
  box-shadow: none;
}

.blue-button {
  background: #42a5f5;
  color: #ffffff;
}

.blue-button:hover {
  box-shadow: 0 0 10px 0 rgba(66, 165, 245, 0.61);
}

.blue-button:active {
  background: #1f95c0;
}
.blue-outline-button {
  border: 2px solid #42a5f5;
  background: transparent;
  color: #42a5f5;
}

.blue-outline-button:hover {
  box-shadow: 0 0 10px 0 #42a5f5;
}

.blue-outline-button:active {
  border: #1565c0;
}
.green-button {
  background: #00c853;
  color: #ffffff;
}

.green-button:hover {
  box-shadow: 0 0 10px 0 #00c853;
}

.green-button:active {
  background: #00c688;
}
.red-button {
  background: #f50057;
  color: #ffffff;
}

.red-button:hover {
  box-shadow: 0 0 10px 0 #d22c75;
}

.red-button:active {
  background: #b11049;
}

.red-outline-button {
  border: 2px solid #f50057;
  background: transparent;
  color: #f50057;
}

.red-outline-button:hover {
  box-shadow: 0 0 10px 0 #f50057;
}

.red-outline-button:active {
  border: #b11049;
}

.white-button {
  background: #eceff1;
  color: #42a5f5;
}

.white-button:hover {
  box-shadow: 0 0 10px 0 #bdcad0;
}

.white-button:active {
  background: #e8f5fd;
}

/* ButtonWithLoader */
.button-with-loader > .button-with-loader__button.blue-button > .button-with-loader__loader.dash-loader span::before,
.button-with-loader > .button-with-loader__button.blue-button > .button-with-loader__loader.dash-loader span::after {
  border-color: #ffffff;
}
.button-with-loader > .button-with-loader__button.green-button > .button-with-loader__loader.dash-loader span::before,
.button-with-loader > .button-with-loader__button.green-button > .button-with-loader__loader.dash-loader span::after {
  border-color: #ffffff;
}
.button-with-loader > .button-with-loader__button.red-button > .button-with-loader__loader.dash-loader span::before,
.button-with-loader > .button-with-loader__button.red-button > .button-with-loader__loader.dash-loader span::after {
  border-color: #ffffff;
}
.button-with-loader > .button-with-loader__button.red-outline-button > .button-with-loader__loader.dash-loader span::before,
.button-with-loader > .button-with-loader__button.red-outline-button > .button-with-loader__loader.dash-loader span::after {
  border-color: #f50057;
}

/* Checkbox */
.checkbox.checked {
  color: #42a5f5;
}

/* ClusterLoader */
.cluster-loader::before,
.cluster-loader::after,
.cluster-loader span::before,
.cluster-loader span::after {
  background: #42a5f5;
}

/* ComboBox */
.combo-box-selected-item__deselect-button {
  background: #42a5f5;
  color: #ffffff;
}

/* Input */
.input:focus {
  border: 1px solid #28b1e3;
  box-shadow: 0 0 6px 0 rgba(40, 177, 227, 0.57);
}

/* Modal */
.modal__header__close-button {
  color: #42a5f5;
}

/* Scrollbar */
.scrollbar__track > .scrollbar__thumb {
  background: #42a5f5;
}

/* Table */
.ReactTable .-pagination .-btn {
  background: #42a5f5;
  color: #ffffff;
}
.ReactTable .-pagination .-btn:not([disabled]):hover {
  background: #42a5f5;
  box-shadow: 0 0 8px 0 rgba(66, 165, 245, 0.61);
}
.ReactTable .-pagination .-btn:disabled {
  opacity: 0.3;
}
.ReactTable.-striped .rt-tr.-odd {
  background: #dcf0ff;
}
.ReactTable.-highlight .rt-tbody .rt-tr:hover {
  background: #42a5f5 !important;
  color: #ffffff;
  cursor: pointer;
}

/* DashLoader */
.dash-loader span::before {
  border-top: 3px solid #1565c0;
}

.dash-loader span::after {
  border: 3px solid #42a5f5;
}

/* Dropdown */
.dropdown__title:before {
  border-top: 5px solid #42a5f5;
}
.dropdown.open > .dropdown__title:before {
  border: 5px solid transparent;
  border-bottom: 5px solid #42a5f5;
}

/* ProgressLoader */
.progress-loader > .CircularProgressbar .CircularProgressbar-path {
  stroke: #42a5f5;
}

/* Radio */
.radio.selected::after {
  background: #42a5f5;
}

/* TeardropLoader */
.teardrop-loader span::before,
.teardrop-loader span::after {
  border: 2px solid #42a5f5;
}

/* Textarea */
.textarea:focus {
  border: 1px solid #28b1e3;
  box-shadow: 0 0 6px 0 rgba(40, 177, 227, 0.57);
}
.textarea-with-scrollbar__textarea:focus {
  box-shadow: none;
  border: unset;
}
.textarea-with-scrollbar:focus-within {
  border: 1px solid #28b1e3;
  box-shadow: 0 0 6px 0 rgba(40, 177, 227, 0.57);
}
.mobile-browser-warning {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 20px;
  position: relative;
}

.mobile-browser-warning__text {
  line-height: 21px;
  font-size: 18px;
  text-align: center;
  white-space: pre-wrap;
}

.mobile-browser-warning__ios-link,
.mobile-browser-warning__android-link {
  margin-top: 30px;
  width: 150px;
  height: 44px;
  background-repeat: no-repeat;
  background-size: contain;
}

.mobile-browser-warning__ios-link {
  background-image: url(resource/appstore380856a3eb124106814f.png);
}

.mobile-browser-warning__android-link {
  background-image: url(resource/googleplay2302a3f0a20caa1a4637.png);
}

.mobile-browser-warning__continue-button {
  position: absolute;
  bottom: 20px;
  font-size: 14px;
  color: #a7a7a7;
}

.auth-text {
  -ms-flex-item-align: start;
      align-self: flex-start;
  color: #ffffff;
  line-height: 27px;
}

.auth-page {
  height: 100vh;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  background: var(--primary-color);
}
.auth-page-form__wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
}

.auth-page__wrap {
  max-width: 100%;
  margin: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
}

.auth-page__name {
  color: #ffffff;
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 24px;
  font-weight: bold;
}

.auth-page__title {
  color: #ffffff;
  font-size: 30px;
  line-height: 34px;
  font-weight: bold;
  margin-bottom: 29px;
}

.auth-page__content-wrap {
  position: relative;
  width: 416px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
}

.auth-text.auth-error {
  margin-bottom: 30px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
}

.auth-page__feedback {
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: 10px;
  text-align: center;
  text-decoration: underline;
  font-size: 14px;
  color: var(--auth-text-color);
  border: none;
}

.auth-link {
  text-decoration: underline;
  line-height: 27px;
  color: var(--auth-link-color);
}

.auth-link-button {
  display: block;
  width: 100%;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 40px;
  color: var(--auth-button-text-color);
  background-color: var(--auth-button-bg-color);
  text-decoration: none;
}

.auth-link-button:hover {
  box-shadow: 0 0 10px 0 var(--auth-button-shadow-color);
}

.auth-link-button:active {
  background-color: var(--auth-button-active-color);
}

.login__skip-link {
  color: var(--auth-text-color);
  line-height: 30px;
  display: block;
  text-align: center;
}

.auth-button-link__button {
  width: 352px;
  height: 48px;
  margin: 37px 0 29px;
  display: -ms-flexbox;
  display: flex;
  padding: unset;
}

.auth-button-link__link {
  width: 100%;
  height: 100%;
  line-height: 48px;
  text-decoration: none;
  color: inherit;
}

.auth-button {
  width: 100%;
  height: 48px;
  margin: 25px 0 29px;
  color: var(--auth-button-text-color);
  background-color: var(--auth-button-bg-color);
}

.auth-button:hover {
  box-shadow: 0 0 10px var(--auth-button-shadow-color);
}

.auth-button:active {
  background-color: var(--auth-button-active-color);
}

.esia-auth {
  background-color: var(--auth-button-bg-color);
  color: var(--auth-button-text-color);
}

.esia-auth:hover {
  box-shadow: 0 0 10px 0 var(--auth-button-shadow-color);
}

.esia-auth:active {
  background-color: var(--auth-button-active-color) !important;
}

.auth-input {
  width: 100%;
  margin-top: 7px;
  margin-bottom: 8px;
}

.auth-input:focus {
  border-color: #d3d3d3;
}

.confirm-phone__input__country-code {
  width: 200px;
  margin: 7px 4px 8px 0px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.confirm-phone__input__phone {
  width: 100%;
}

.confirm-phone__input-note {
  color: var(--auth-default-text-color);
  margin: 8px 0 8px;
}

.confirm-phone__resend-text {
  -ms-flex-item-align: center;
      align-self: center;
  cursor: default;
  opacity: 0.6;
}

.confirm-phone__resend-text.confrim-phone__resend-text__clickable {
  cursor: pointer;
  opacity: unset;
}



.login__input-wrap {
  width: 416px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

.login__password-label-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.login__agreement-links-wrap {
  margin-top: 10px;
  -ms-flex-align: center;
      align-items: center;
}

.login__basic-auth-button {
  width: 100%;
  background-color: var(--auth-button-bg-color);
  color: var(--auth-button-text-color);
}

.login__agreement-links-wrap .text {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 14px;
  white-space: pre;
  color: var(--auth-default-text-color);
  line-height: 21px;
}

.login__agreement-links-wrap .external-link {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 14px;
  white-space: pre;
  color: var(--auth-link-color);
  line-height: 21px;
}

.modal.unexpected-error > .modal-wrap {
  width: 520px;
}

.unexpected-error__error-text {
  text-align: center;
  margin: 10px 20px;
}

.unexpected-error__reload-button {
  margin-top: 15px;
  width: 210px;
  height: 48px;
}

.small {
  height: var(--button-small-height) !important;
  line-height: var(--button-small-line-height) !important;
}

.base-button-icon {
  background-color: transparent !important;
}
.base-button-icon:hover {
  box-shadow: none !important;
}

.base-button {
  border-style: none;
  text-decoration: none;
  font-size: var(--button-font-size);
  line-height: var(--button-line-height);
  color: var(--base-button-text-color);
  border-radius: var(--button-border-radius);
  background-color: var(--base-button-bg-color);
}

.base-button:hover {
  box-shadow: var(--button-shadow) var(--base-button-hover-color);
}

.base-button:active {
  background-color: var(--base-button-active-color);
}

.base-button:disabled {
  background-color: var(--base-button-disabled-bg-color);
  color: var(--base-button-disabled-text-color);
  border: none;
  box-shadow: none;
}

.base-button-inverted {
  border-style: none;
  text-decoration: none;
  font-size: var(--button-font-size);
  color: var(--base-button-inverted-text-color);
  border-radius: var(--button-border-radius);
  background-color: var(--base-button-inverted-bg-color);
}

.base-button-inverted:hover {
  box-shadow: var(--button-shadow) var(--base-button-inverted-hover-color);
}

.base-button-inverted:active {
  background-color: var(--base-button-inverted-active-color);
}

.install-chrome-modal {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
}

.install-chrome-modal__header {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  padding: 0 0 30px 0;
}

.install-chrome-modal__text {
  margin: 5px 0;
}

.install-chrome-modal__link {
  color: var(--primary-color);
}

.install-chrome-modal__button {
  margin-top: 20px;
  width: 150px;
  padding: 15px;
}

.set-password__note {
  margin-bottom: 10px;
}



.layout {
  width: 100%;
  min-height: 100%;
  display: -ms-flexbox;
  display: flex;
}

.layout__loader {
  margin: auto;
}

.feedback {
  height: 100%;
  width: 80%;
  margin: auto;
  -ms-flex-align: start;
      align-items: flex-start;
}

.feedback_content-wrap {
  border-radius: 5px;
  background-color: var(--feedback-bacground-form-color);
  padding: 30px;
  margin-bottom: 128px;
}

.feedback_column-wrap {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.feedback__control {
  width: 300px;
  margin-bottom: 5px;
  margin-right: 15px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.feedback__control > .input {
  width: 300px;
}

.feedback__control.mandatory > .text::after {
  content: ' *';
  color: var(--alert-color-red);
  font-weight: normal;
}

.feedback__title {
  font-size: 38px;
  font-weight: bold;
  color: var(--feedback-title-color);
  margin: 30px 0 20px;
}

.feedback__wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-direction: column;
      flex-direction: column;
  min-height: calc(100% - 90px);
  width: 70%;
  margin: 0 auto;
}

.feedback__save-button {
  width: auto;
  -ms-flex-direction: row;
      flex-direction: row;
  margin-top: 10px;
  margin-right: 15px;
}

.feedback__save-button > .button-with-loader__button {
  width: 100%;
  height: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: var(--feedback-button-text-color);
  background-color: var(--feedback-button-bg-color);
  border-radius: 40px;
}
.feedback__save-button > .button-with-loader__error {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.feedback__textarea {
  width: 448px;
  height: 184px;
  resize: none;
  margin-bottom: 20px;
}

.captcha {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
.captcha_button {
  width: 190px;
}

.captcha_input {
  width: 140px;
  border-radius: 5px;
  border: 1px solid #d3d3d3;
  outline: none;
  padding: 10px;
  color: #424242;
  font-size: 16px;
  height: 40px;
  background: #ffffff;
  margin-right: 10px;
}

.captcha_button_reload {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.captcha_item {
  margin-top: 10px;
}

.captcha_group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: row;
      flex-direction: row;
  width: 190px;
}

.agreements-modal .modal__content {
  -ms-flex-align: start !important;
      align-items: flex-start !important;
}

.agreements-modal__header {
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  padding: 0 20px 20px 0;
}

.agreements-modal__scrollbar {
  height: 450px !important;
}

.agreements-modal__tabs {
  width: 720px !important;
}

.agreements-modal__text {
  height: 450px !important;
}

.agreements-modal__checkbox {
  margin-top: 20px;
}

.agreements-modal__checkbox .checkbox-with-label__label {
  max-width: 685px;
}

.agreements-modal__button {
  height: 48px;
  margin-top: 20px;
  padding: 0 20px;
}

.agreements-modal__button button {
  color: var(--agreement-button-text-color);
  background-color: var(--agreement-button-bg-color);
}

.agreements-modal__button:hover button {
  box-shadow: 0 0 10px var(--agreement-button-shadow-color);
}

.agreements-modal__button:active button {
  background-color: var(--agreement-button-active-color);
}

.agreement-view .modal__wrap {
  min-width: 650px;
}

.agreement-view .agreements-modal__text {
  padding: 5px;
}

.tabs {
  border: 1px solid #d3d3d3;
}
.tabs .tabs__content {
  padding: 5px;
}
.tabs .tabs__label:first-child {
  border-left: none;
}
.tabs .tabs__label {
  display: block;
  width: 100%;
  cursor: pointer;
  padding: 5px;
  background-color: #e6e6e6;
  border-left: 1px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}
.tabs .tabs__label.active {
  background-color: #fff;
  border-bottom: none;
  font-weight: bold;
  cursor: default;
}

.close-session__button {
  height: 40px;
  margin-top: 20px;
  width: 100px;
  border-radius: 40px;
  color: var(--session-button-text-color);
  background-color: var(--session-button-bg-color);
}

.close-session__button:hover {
  box-shadow: 0 0 10px var(--session-button-shadow-color);
}

.close-session__button:active {
  background-color: var(--session-button-active-color);
}

.close-session__container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  width: 100%;
}

.logo__wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 80px;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.logo {
  width: 200px;
  cursor: pointer;
}

.header-user-card {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: start;
      align-items: flex-start;
}

.header-user-card__name {
  font-size: 18px;
  font-weight: bold;
  line-height: 20px;
  margin-bottom: 5px;
}

.header-user-card__own-profile-button {
  color: var(--primary-color);
  font-size: 16px;
  line-height: 18px;
  text-decoration: underline;
  border: none;
  padding: 0;
  height: auto;
}

.user-card__initials {
  line-height: 27px;
}

.user-card__wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.user-card__icon {
  background-repeat: no-repeat;
  background-size: contain;
  margin: 18px 10px 0 0;
}

.user-card__child-icon {
  background-image: url(resource/user-child631a7594babf84510e0e.svg);
  height: 35px;
  width: 35px;
}

.user-card__parent-icon {
  background-image: url(resource/user-adultf706cef9833d6e50fe32.svg);
  height: 30px;
  width: 30px;
}

.header-menu {
  outline: none;
}

.header-menu__icon {
  width: 48px;
  height: 48px;
}

.header-menu__icon > img {
  width: 100%;
  height: 100%;
}

.header-menu__user-card {
  margin: 0 10px;
  color: #ffffff;
}

.header__user-info__button__text,
.header-menu__menu-item:hover > .text {
  color: var(--primary-color);
}

.header__user-info__avatar {
  height: 44px;
  width: 44px;
  border-radius: 50%;
}

.header-menu__two_layer {
  left: -100px;
}

.menu-opened {
  position: absolute;
  z-index: 9999;
  margin-top: 15px;
  border-radius: 3px;
  width: 193px;
  box-shadow: 0 4px 20px 0 rgba(40, 177, 227, 0.31);
  background-color: #ffffff;
}

.menu-opened::before,
.menu-opened::after {
  content: '';
  position: absolute;
  background: #ffffff;
  width: 20px;
  height: 20px;
  top: -10px;
  left: calc(50% - 10px);
  box-shadow: -11px -11px 40px 0 rgba(40, 177, 227, 0.31);
  z-index: -1;
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.menu-opened::before {
  z-index: -1;
  box-shadow: none;
}

.header__user-info__button {
  width: 197px;
}

.menu-item {
  padding: 20px;
  cursor: pointer;
  color: #424242;
}

.menu-item:first-child {
  border-radius: 3px 3px 0 0;
}

.menu-item:last-child {
  border-radius: 0 0 3px 3px;
}

.menu-item:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}

.menu-item-list {
  padding: 20px;
  cursor: pointer;
  color: #424242;
}

.menu-item-list:first-child {
  border-radius: 3px 3px 0 0;
}

.menu-item-list:last-child {
  border-radius: 0 0 3px 3px;
}

.menu-item-list:hover {
  background-color: var(--primary-color) !important;
  color: #ffffff;
}

.menu-opened-list {
  position: absolute;
  left: -110%;
  top: 45px;
  right: calc(0% + 40px);
  z-index: 9999;
  margin-top: 10px;
  border-radius: 3px;
  width: 193px;
  box-shadow: 0 4px 20px 0 var(--service-shadow-color);
  background-color: #ffffff;
}

.menu-opened-list::before,
.menu-opened-list::after {
  content: '';
  position: absolute;
  background: #ffffff;
  width: 20px;
  height: 20px;
  top: 20px;
  right: calc(0% - 10px);
  box-shadow: -11px -11px 40px 0 var(--service-shadow-color);
  z-index: -1;
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.menu-opened-list::before {
  z-index: -1;
  box-shadow: none;
}

.header {
  height: 80px;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #e1e1e1;
  padding: 18px 50px;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.header__logo {
  height: 100%;
}

.header__right-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -webkit-column-gap: 4px;
          column-gap: 4px;
}

.header__text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  color: var(--primary-color);
  font-size: 20px;
  height: 100%;
}

.header-patient-discussion-link {
  padding: 10px 14px;
  font-size: 14px;
  margin-right: 24px;
}

.header-patient-discussion-link__router-link {
  text-decoration: none;
}

.header-patient-discussion-link__button {
  padding: 20px;
  font-size: 14px;
  margin-right: 24px;
}

.header-doctor-schedule-button {
  padding: 10px 30px;
  margin-right: 30px;
}

.small {
  height: var(--button-small-height);
  line-height: var(--button-small-line-height);
  min-width: auto !important;
}

.outline-button {
  display: inline-block;
  height: var(--button-default-height);
  line-height: var(--button-line-height);
  font-size: var(--button-font-size);
  color: var(--outline-button-text-color);
  text-decoration: none;
  border-radius: var(--button-border-radius);
  background-color: var(--outline-button-bg-color);
  border: var(--outline-button-border-size) solid var(--outline-button-border-color);
}

.outline-button:hover {
  border-color: var(--outline-button-border-color);
  box-shadow: var(--button-shadow) var(--outline-button-hover-color);
}

.outline-button:active {
  border-color: var(--outline-button-active-color);
}

.outline-button:disabled {
  background-color: var(--outline-button-disabled-bg-color);
  color: var(--outline-button-disabled-text-color);
  box-shadow: none;
  border: none;
}

.header-notification-list {
  position: absolute;
  border-radius: 0 0 4px 4px;
  width: 500px;
  z-index: 10;
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.19);
  top: 60px;
  right: -150px;
  background: white;
}

.header-notification-list__main-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  margin: 16px 0 16px 0;
  font-size: 14pt;
  border-bottom: 1px solid lightgray;
  padding: 0 0 16px 16px;
}

.header-notification-list__event-group-selector-container {
  gap: 8px;
  -ms-flex-align: center;
      align-items: center;
}

.header-notification-list__content {
  max-height: 300px;
}

.header-notification-list__group {
  row-gap: 16px;
  padding: 16px;
}

.header-notification-list__title {
  margin: 8px 0 12px 0;
  font-size: 12pt;
}

.header-notification-list__body {
  font-size: 11pt;
  line-height: 18px;
}

.header-notification-list__item {
  border-radius: 8px;
  background-color: #eceff1;
  padding: 16px;
}

.header-notification-list__item_unread {
  background-color: var(--unread-notifications);
}

.header-notification-list__close {
  width: 20px;
  height: 20px;
  margin-right: 20px;
}

.header-notifications {
  position: relative;
}

.header-notifications__button {
  fill: white;
  height: 40px;
  width: 40px;
  background: var(--primary-color);
}

.header-notifications__button_unread::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--alert-color-red);
  position: absolute;
  top: 1px;
  right: 4px;
  border-radius: 100%;
}

.header-notifications__icon {
  fill: white;
  height: 24px;
  width: 24px;
}

.loader-or-empty {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}

.loader-or-empty__empty {
  height: 32px;
  line-height: 32px;
  color: #9e9e9e;
}

.sidebar-item-list__scrollbar > :nth-child(2),
.sidebar-item-list__scrollbar > :nth-child(3) {
  visibility: hidden;
}

.sidebar-item-list__loader-or-empty > .loader-or-empty__empty {
  font-size: 26px;
  line-height: 29px;
  font-weight: bold;
}

.sidebar-item-list__item {
  height: 70px;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: left;
      justify-content: left;
  -ms-flex-align: center;
      align-items: center;
  padding: 0 22px;
  text-decoration: none;
}

.sidebar-item-list__item:hover {
  box-shadow: 0 4px 20px 0 var(--patient-sidebar-shadow-color);
}

.sidebar-item-list__item.selected {
  background: var(--primary-color);
}

.notification-count {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 26px;
  height: 26px;
  text-align: center;
  line-height: 22px;
  font-size: 14px;
  color: #ffffff;
  background: #f50057;
  border-radius: 100px;
  border: 2px solid #ffffff;
}

.avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  background: var(--primary-color);
  background-size: cover;
  background-position: center;
}
.avatar__edit {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  background: var(--avatar-edit-color);
}

.avatar__edit:after {
  content: '';
  display: block;
  width: 27px;
  height: 27px;
  background: #ffffff;
  -webkit-mask: url(resource/edit-white2f80e4497f3231e887ea.svg) no-repeat center;
          mask: url(resource/edit-white2f80e4497f3231e887ea.svg) no-repeat center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}

.avatar__delete {
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  background: red;
  cursor: pointer;
  width: 27px;
}

.user-ava__initials {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.patients-tab-item__name {
  font-size: 16px;
  line-height: 27px;
  width: calc(100% - 55px);
}

.patients-tab-item.selected .text {
  color: #ffffff;
}

.patients-tab-item__avatar {
  height: 46px;
  width: 46px;
  border-radius: 50%;
  margin-right: 9px;
}

.patients-tab-item__avatar.dispensary {
  border: 3px solid darkred;
}

.patient-tab-item__dispensary-mark {
  position: relative;
  bottom: 17px;
  right: 26px;
  border: 3px solid darkred;
  border-radius: 50%;
  color: darkred;
  font-size: 15px;
  width: 23px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  background: white;
  font-weight: bolder;
  height: 23px;
  margin-right: -23px;
}

.patients-tab-item__remove-button {
  width: 39px;
  height: 39px;
  padding: 0;
  margin-left: 9px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.patients-tab-item {
  width: 100%;
  margin: auto;
  padding-left: 5%;
  padding-right: 5%;
}

.add-patient-button {
  width: 331px;
  height: 48px;
  margin-bottom: 25px;
}

.last-message-preview {
  font-size: 12px;
  line-height: 27px;
  color: #a7a7a7;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.doctors-tab-item {
  position: relative;
}

.doctors-tab-item__left-block {
  position: relative;
  margin-left: 40px;
  width: 305px;
}

.doctors-tab-item__left-block > .text {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.doctors-tab-item__subordinate::before {
  content: url(resource/avatar939b9e07fdbc1e4d5d2d.svg);
  display: block;
  position: absolute;
  left: -35px;
  width: 30px;
  height: 30px;
}

.doctors-tab-item__name {
  font-size: 16px;
  line-height: 27px;
}

.doctors-tab-item.selected .text {
  color: #ffffff;
}

.doctor-notification {
  position: absolute;
  right: 5px;
  top: 9px;
}

.doctors-tab__button {
  width: 331px;
  height: 48px;
  margin-top: 17px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.doctors-tab__button:last-of-type {
  margin-bottom: 25px;
}

.sidebar {
  width: 376px;
  height: 100%;
  border-right: 1px solid #e1e1e1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
}

.sidebar__tab-buttons-wrap {
  margin-top: 25px;
  display: -ms-flexbox;
  display: flex;
  width: 90%;
  -ms-flex-pack: center;
      justify-content: center;
}

.sidebar__tab-button {
  width: 162px;
  height: 42px;
  background: #fff;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 16px;
  border-radius: unset;
}

.sidebar__tab-button.left {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}

.sidebar__tab-button.right {
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}

.sidebar__tab-button.active {
  background: var(--primary-color);
  color: #fff;
}

.sidebar__filter {
  width: 90%;
  height: 42px;
  margin-top: 26px;
  margin-right: -20px;
}
.sidebar__filter__wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  padding-left: 2px;
  width: 100%;
}

.sidebar__filter__wrapper:after {
  position: relative;
  content: '';
  right: 13px;
  bottom: -13px;
  width: 25px;
  height: 25px;
  background-color: var(--primary-color);
  -webkit-mask: url(resource/search-icon23f4de90b27a1b6b52e8.svg) no-repeat;
          mask: url(resource/search-icon23f4de90b27a1b6b52e8.svg) no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}

.sidebar__sort {
  width: 90%;
  margin-bottom: 10px;
}

.sidebar__tab {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 10px;
}

.sidebar__dispensary-patients-only-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
  width: 90%;
  cursor: pointer;
}

.sidebar__dispensary-patients-only__text {
  color: var(--primary-color);
  font-size: 14px;
  margin-left: 10px;
}

.header-text {
  font-weight: bold;
  color: #424242;
}

.header-text.h1 {
  font-size: 38px;
}

.header-text.h2 {
  font-size: 26px;
}

.header-text.h3 {
  font-size: 18px;
}

@media screen and (max-width: 700px) {
  .header-text.h2 {
    font-size: 17px;
  }
}

.list-item-not-selected {
  background: #eceff1;
}

.list-item-not-selected__text {
  margin: 27px 0px 0px 22px;
  color: #9e9e9e;
  line-height: 29px;
}

.service-card__service-field {
  width: 100%;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  margin: 4px 0;
}

.service-card__service-field__title {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
}

.service-card__service-field__value {
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
}

.doctor-card__info-wrap {
  overflow: hidden;
}

.doctor-card__title {
  width: 110px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.doctor-card__title,
.doctor-card__doctor-name,
.doctor-card__doctor-position,
.doctor-card__clinic-name {
  line-height: 21px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.doctor-card__clinic-name {
  font-size: 14px;
}

.clinic-card {
  margin: 4px 0 6px 0;
  max-width: 70%;
}
.clinic-card__clinic-name {
  font-size: 14px;
  margin-bottom: 4px;
}

.service-card-wrap {
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.service-card {
  position: relative;
  transition: all 0.5s ease-out;
  box-shadow: 0 4px 20px 0 rgba(111, 111, 132, 0.22);
  background-color: #ffffff;
  width: 485px;
  min-height: 140px;
  border-radius: 5px;
  padding: 30px 15px 15px 15px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  margin: 0 20px 20px 0;
  -ms-flex-pack: justify;
      justify-content: space-between;
  text-decoration: none;
}

.service-card__schedule-date {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 4px 0 4px;
}

.service-card__schedule-date:before {
  content: '';
  margin-right: 10px;
  display: block;
  width: 24px;
  height: 24px;
  background-color: var(--primary-color);
  -webkit-mask: url(resource/calendar-icon905e2845600f15dcfcc0.svg) no-repeat;
          mask: url(resource/calendar-icon905e2845600f15dcfcc0.svg) no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}

.service-card__title,
.service-card__title__little {
  font-size: 18px;
  font-weight: bold;
  margin: 4px 0 7px;
}

.service-card__title__little {
  font-size: 15px;
}

.service-card__small-text {
  color: #a7a7a7;
  font-size: 12px;
  margin-top: auto;
  padding-top: 10px;
}

.service-card__notification-count {
  position: absolute;
  top: -12px;
  right: 8px;
}

.service-card__service-status {
  position: absolute;
  top: -11px;
  right: 20px;
  min-width: 190px;
}

.service-card__doctor-card {
  margin: 5px 0px;
}

.service-card__comment-button {
  margin-left: auto;
}

.service-card__comment-button > img {
  width: 30px;
}

.service-card__modal-comment {
  width: 100%;
}

.service_card__information {
  min-height: 45px;
}
.service-card__bottom-row {
  -ms-flex-positive: 1;
      flex-grow: 1;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: flex-start;
  margin-top: 20px;
}

.service_card__button {
  height: 40px;
  width: 100px;
  margin: 5px;
}

.service-card__doctor-card_multiple {
  margin: 0 0 5px 5px;
}

.service-card__consultants {
  -ms-flex-pack: baseline;
      justify-content: baseline;
  -ms-flex-line-pack: center;
      align-content: center;
}

.service-card__doctor-cards .doctor-card__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.service-card__doctor-cards .doctor-card__clinic-name,
.service-card__doctor-cards .doctor-card__position-name {
  font-size: 9pt;
}

.service_card__bottom {
  position: absolute;
  bottom: 40px;
  right: 40px;
  max-width: 18%;
  opacity: 0;
  transition: all 0.2s ease-out;
}

.service-card:hover ~ .service_card__bottom,
.service_card__bottom:hover {
  opacity: 1;
}

.service_card__sign-button,
.service_card__edit-button {
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 2px;
  height: 28px;
  width: 28px;
  padding: unset;
}

.service_card__sign-button {
  background-image: url(resource/sign2006660bd5f00713b73f.svg);
  background-size: 16px;
}

.service_card__edit-button {
  background: var(--primary-color);
  background-image: url(resource/edit-white-no-background2f80e4497f3231e887ea.svg);
  background-size: 28px;
}

.service_card__edit-button:active {
  background: var(--primary-color);
}
.service_card__edit-button:hover {
  box-shadow: var(--button-shadow) var(--button-shadow);
}

.service-card__urgent {
  border: 2px solid salmon;
  background-color: rgb(255, 254, 254);
  box-shadow: 0 4px 30px 0 rgba(255, 102, 102, 0.308);
}

.disabled {
  opacity: 0.5;
}

.service-card__comment-button {
  margin-left: auto;
}

.service-card__comment-button > img {
  width: 30px;
}

.service-button__wrap {
  position: relative;
  width: 100%;
  -ms-flex-align: center;
      align-items: center;
}

.service-button__tip {
  opacity: 0;
  z-index: 2;
  position: absolute;
  top: -25px;
  min-width: -webkit-max-content;
  min-width: max-content;
  transition: 0.2s all ease-in;
  font-size: 12px;
  border-radius: 10px;
  color: white;
  padding: 5px 7px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.534);
}

.service-button__tip::before {
  content: '';
  width: 0px;
  height: 0px;
  position: absolute;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 3px solid rgba(0, 0, 0, 0.534);
  border-bottom: 5px solid transparent;
  top: 22px;
  right: 45%;
}

.service-button__wrap:hover .service-button__tip {
  opacity: 1;
}

.blue {
  background-color: var(--primary-color);
}

.red {
  background-color: #f50057;
}

.green {
  background-color: #00c853;
}

.grey {
  background-color: #90a4ae;
}

.yellow {
  background-color: #f5cc00;
}

.service-status {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  height: 24px;
  border-radius: 12px;
  color: #ffffff;
  font-size: 14px;
  padding: 12px 20px;
}

.supervisor-controls__controls {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
        justify-content: flex-end;
    gap: 15px;
}

.supervisor-controls__control-item {
    all: unset;
    cursor: pointer;
}

.permission-card {
  position: relative;
  box-shadow: 0 4px 20px 0 rgba(111, 111, 132, 0.22);
  background-color: #ffffff;
  width: 485px;
  min-height: 140px;
  border-radius: 5px;
  padding: 30px 15px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  margin: 0 20px 20px 0;
  -ms-flex-pack: justify;
      justify-content: space-between;
  text-decoration: none;
}

.permission-card__schedule-date {
  background-image: url(resource/calendar-icon905e2845600f15dcfcc0.svg);
  background-repeat: no-repeat;
  background-size: 24px 24px;
  padding: 4px 0 4px 30px;
}

.permission-card__title {
  margin-top: 4px;
  font-size: 18px;
  font-weight: bold;
}

.permission-card__small-text {
  color: #a7a7a7;
  font-size: 12px;
  margin-top: auto;
}

.permission-card__information {
  min-height: 45px;
}

.service-section__title {
  font-size: 26px;
  font-weight: bold;
  padding: 30px 0;
}

.service-section__services {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.create-service-button {
  width: 485px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 140px;
  margin: 0 20px 20px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  border-radius: 5px;
  box-shadow: 0 4px 20px 0 rgba(111, 111, 132, 0.22);
  padding: 23px 0px 27px;
  background-image: url(resource/plus-button7285821f20cb4d3f8138.svg);
  background-repeat: no-repeat;
  background-position: center 23px;
}

.create-service-button > .text {
  color: #ffffff;
}

.create-service-button__title {
  margin-top: 46px;
  font-size: 18px;
  line-height: 20px;
}

.create-service-button__text {
  width: 300px;
  margin-top: 9px;
  line-height: 27px;
  text-align: center;
  white-space: pre-wrap;
}

.patient-page {
  height: 100%;
}

.patient-page__top-block {
  background-color: #fff;
  box-shadow: 0 4px 20px 0 rgba(111, 111, 132, 0.22);
  border-radius: 5px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 30px;
  margin: 20px 34px 0px 23px;
  -ms-flex-align: center;
      align-items: center;
}

.patient-page__top-block__left {
  display: -ms-flexbox;
  display: flex;
}

.patient-page__top-block__right {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
}

.patient-page__top-block__left__user-info {
  height: 122px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.patient-page__header {
  font-size: 26px;
  font-weight: bold;
}

.patient-page__subheader {
  font-size: 18px;
  font-weight: bold;
}

.patient-page__avatar {
  width: 122px;
  height: 122px;
  margin-right: 25px;
  border-radius: 50%;
}

.patient-page__avatar > span {
  font-size: 40px;
}

.patient-page__top-block__left__phone {
  display: -ms-flexbox;
  display: flex;
}
.patient-page__top-block__left__phone:before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: var(--primary-color);
  -webkit-mask: url(resource/phone-blue3cc0a2c158bf9aaf3fea.svg) no-repeat;
          mask: url(resource/phone-blue3cc0a2c158bf9aaf3fea.svg) no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}

.patient-page__link {
  color: var(--primary-color);
  margin: 5px 0;
}

.patient-page__content-wrap {
  min-height: calc(100% - 200px - 25px);
  margin: 0px 34px 12px 23px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

.patient-page__content-wrap__loader {
  border-top-color: #eceff1;
}

.patient-page__create-consultation-button {
  background-color: #00c853;
}

.patient-page__create-discussion-button {
  background-color: var(--primary-color);
}

.patient-page__create-permission-button {
  background-color: #ffc400;
}

.patient-page__create-concilium-button {
  background-color: #b001e6;
}

.go-back-and-title__link {
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  color: var(--primary-text-color);
  padding-right: 30px;
  background-size: 18px;
  background-position: 5px 2px;
}

.go-back-and-title__link:before {
  content: '';
  display: block;
  margin-right: 10px;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  -webkit-mask: url(resource/blue-arrow-leftd2090f210a978a8b5cbc.svg) no-repeat;
          mask: url(resource/blue-arrow-leftd2090f210a978a8b5cbc.svg) no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}

.go-back-and-title {
  margin-top: 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 19px;
}

.go-back-and-title__title {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  font-size: 26px;
  font-weight: bold;
  padding: 5px 20px;
  border-left: 1px solid #979797;
}

.patient-child-info {
  margin-bottom: 20px;
  padding-top: 10px;
  border-top: 1px solid #a7a7a7;
}

.patient-info {
  padding: 0 20px;
}

.patient-info__content {
  display: -ms-flexbox;
  display: flex;
}

.patient-info__avatar {
  width: 125px;
  height: 125px;
  margin-right: 25px;
  border-radius: 50%;
}

.patient-info__avatar > span {
  font-size: 39px;
}

.patient-info__children-info {
  margin-left: 100px;
}

.patient-info__children-info-title {
  margin-bottom: 20px;
}

.patient-info__children-info-empty-text {
  font-size: 14px;
}

.add-health-diary-record-button {
  width: 222px;
  margin-left: auto;
  margin-bottom: auto;
}

.record-created-date__header {
  font-size: 16px;
  line-height: 18px;
  color: #95a3b4;
  text-align: left;
}

.record-control-block {
  margin-left: auto;
}

.record-control-block__attachment-button,
.record-control-block__edit-button,
.record-control-block__delete-button {
  width: 24px;
  height: 24px;
  background-size: contain;
  margin: 0px 4px;
}

.record-control-block__attachment-button {
  background-image: url(resource/file-greyf5585210ff761a595bc8.svg);
}

.record-control-block__edit-button {
  background-image: url(resource/edit-greyf272b442625ac1d9718a.svg);
}

.record-control-block__delete-button {
  background-image: url(resource/delete-grey3f8dc0627ef52e055c2e.svg);
}

.record-control-block__attachment-button:hover {
  background-image: url(resource/file-bluee465d91b621e3f070c47.svg);
}

.record-control-block__edit-button:hover {
  background-image: url(resource/edit-blue87cf8b8a05bb3d808e23.svg);
}

.record-control-block__delete-button:hover {
  background-image: url(resource/delete-blue0e539859fadbff43d204.svg);
}

.record-value__header {
  font-size: 16px;
  line-height: 18px;
  color: #95a3b4;
  text-align: left;
}

.health-diary-record-table {
  width: 100%;
  border: none;
  max-height: calc(100% - 46px); /* Высота обертки - высота шапки */
}

.health-diary-record-table .rt-thead.-header {
  height: 64px;
  box-shadow: none;
  border-bottom: 1px solid #cad1da;
  padding: 0px 8px;
}

.health-diary-record-table .rt-thead.-header .rt-th {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: unset;
  border: none;
}

.health-diary-record-table .rt-tbody .rt-tr-group {
  border-bottom: 1px solid #cad1da;
}

.health-diary-record-table .rt-tbody .rt-td {
  border: unset;
  padding: 15px 8px;
}

.health-diary-record-table .rt-tbody .rt-td,
.health-diary-record-table .rt-tbody .rt-td .text {
  font-size: 16px;
  line-height: 24px;
  color: #424242;
}

.health-diary-record-table .-pagination {
  margin-top: 15px;
  border: none;
  box-shadow: none;
}

.health-diary-record-table.-highlight .rt-tbody .rt-tr:not(.-padRow):hover {
  background: #f0f5f9 !important;
}

.health-diary-record-table.-highlight .rt-tbody .rt-tr .record-control-block {
  visibility: hidden;
}

.health-diary-record-table.-highlight .rt-tbody .rt-tr:not(.-padRow):hover .record-control-block {
  visibility: visible;
}

.graph-scale-select-button {
  font-size: 16px;
  margin-left: 10px;
}

.graph-scale-select-button:hover {
  color: var(--color-primary);
}

.graph-scale-select-button.active {
  color: var(--color-primary);
  text-decoration: underline;
}

.health-diary-record-graph {
  padding: 8px;
  height: calc(100% - 67px); /* 100% - высота шапки */
}

.health-diary-record-graph__header,
.health-diary-record-graph__body {
  -ms-flex-align: center;
      align-items: center;
}

.health-diary-record-graph__body {
  margin-top: 25px;
}

.health-diary-record-graph__header__label {
  font-weight: bold;
}

.health-diary-record-graph__time-frame-button {
  position: relative;
  width: 32px;
  height: 32px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.health-diary-record-graph__time-frame-button::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 8px;
  top: 12px;
  left: 8px;
  background-image: url(resource/arrow-grey0bbd7708120ea3140f7a.svg);
  background-repeat: no-repeat;
}
.health-diary-record-graph__time-frame-button:hover::after {
  background-image: url(resource/arrow-blue8fab1b1a8d99fc34180a.svg);
}

.health-diary-record-graph__time-frame-button.left::after {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.health-diary-record-graph__time-frame-button.right::after {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.health-diary-notification-settings-button {
  width: 218px;
  height: 32px;
  margin-left: auto;
  margin-bottom: auto;
  padding: unset;
}

.health-diary-record-list__header {
  padding: 8px;
  -ms-flex-align: center;
      align-items: center;
}

.health-diary-record-list__header__title {
  font-size: 24px;
  line-height: 30px;
  color: #3a4146;
  margin-bottom: 10px;
}

.health-diary-record-list__header__tab-button {
  font-size: 16px;
  line-height: 21px;
  margin-right: 15px;
}

.health-diary-record-list__header__tab-button:hover {
  color: var(--primary-color);
}

.health-diary-record-list__header__tab-button.active {
  color: var(--primary-color);
  text-decoration: underline;
}

.health-diary-record-list__empty__image {
  width: 339px;
  height: 353px;
  -ms-flex-item-align: center;
      align-self: center;
  margin-top: 49px;
  background-image: url(resource/health-record-list-emptye42b20fc9020361ef017.svg);
}

.health-diary-record-list__empty__label {
  margin: auto;
  text-align: center;
  margin-top: 25px;
  font-size: 16px;
  line-height: 18px;
  color: #95a3b4;
  white-space: pre-wrap;
}

.health-diary-metric {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: start;
      align-items: flex-start;
  width: 100%;
  min-height: 128px;
  border-bottom: 1px solid #d5e2ed;
  text-decoration: none;
  padding: 19px 16px 8px 16px;
}

.health-diary-metric.active {
  background-color: var(--primary-color);
}
.health-diary-metric.active .health-diary-metric__name,
.health-diary-metric.active .health-diary-metric__last-record__value,
.health-diary-metric.active .health-diary-metric__last-record__unit,
.health-diary-metric.active .health-diary-metric__last-record__created-date {
  color: #ffffff;
}

.health-diary-metric__name,
.health-diary-metric__last-record__unit,
.health-diary-metric__last-record__created-date {
  color: #95a3b4;
  font-size: 16px;
  line-height: 18px;
}

.health-diary-metric__last-record__value-wrap {
  overflow: hidden;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  margin: 12px 0px 8px;
}

.health-diary-metric__last-record__value {
  color: #3a4146;
  font-size: 32px;
  font-weight: bold;
  line-height: 38px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.health-diary-metric__last-record__unit {
  color: #3a4146;
  margin-left: 8px;
}

.health-diary-metric__name {
  position: relative;
  width: 100%;
}
.health-diary-metric__name::after {
  content: '';
  position: absolute;
  background-image: url(resource/arrow-grey0bbd7708120ea3140f7a.svg);
  width: 18px;
  height: 8px;
  right: 0px;
  top: 5px;
  background-repeat: no-repeat;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.health-diary-metric.active .health-diary-metric__name::after {
  background-image: url(resource/arrow-whitef6a98a035d6dcc3c3f8e.svg);
}

.health-diary-metric.active .add-or-edit-health-diary-metric-threshold-value-button {
  -webkit-mask-image: url(resource/gear-white52de2e9464b56a0e2ec6.svg);
          mask-image: url(resource/gear-white52de2e9464b56a0e2ec6.svg);
  background-color: white;
}

.health-diary-metric.active .add-or-edit-health-diary-metric-threshold-value-button:hover {
  -webkit-mask-image: url(resource/gear-white52de2e9464b56a0e2ec6.svg);
          mask-image: url(resource/gear-white52de2e9464b56a0e2ec6.svg);
  background-color: black;
}

.add-or-edit-health-diary-metric-threshold-value-button {
  position: absolute;
  height: 25px;
  width: 25px;
  right: 15px;
  bottom: 10px;
  -webkit-mask-image: url(resource/gear-grey230e180401e0c5bbc92c.svg);
          mask-image: url(resource/gear-grey230e180401e0c5bbc92c.svg);
  background-color: gray;
  cursor: pointer;
  background-repeat: no-repeat;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.add-or-edit-health-diary-metric-threshold-value-button:hover {
  background-color: black;
}

.add-health-diary-metric-button {
  max-width: 268px;
  height: 117px;
  margin: 6px 16px 0px 10px;
  background-color: #dbeefd;
  border-radius: 8px;
  cursor: pointer;
  padding: 22px 56px;
  -ms-flex-align: center;
      align-items: center;
}

.add-health-diary-metric-button__icon {
  height: 48px;
  width: 48px;
  margin-bottom: 8px;
  border-radius: 48px;
  background-color: var(--primary-color);
}

.add-health-diary-metric-button__icon::after {
  content: ' ';
  position: relative;
  display: block;
  background-color: #fff;
  height: 4px;
  width: 34px;
  bottom: 12px;
  left: 7px;
  z-index: 9;
  border-radius: 4px;
}
.add-health-diary-metric-button__icon::before {
  content: ' ';
  position: relative;
  display: block;
  top: 7px;
  left: 22px;
  background-color: #fff;
  width: 4px;
  height: 34px;
  z-index: 9;
  border-radius: 4px;
}

.add-health-diary-metric-button__label {
  text-align: center;
  width: 100%;
  font-size: 14px;
  line-height: 16px;
  color: var(--primary-color);
}

.health-diary-template-selector {
  width: 100%;
  height: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 10px 0px;
  padding: 0px 10px;
}

.health-diary-template-selector__dropdown {
  width: 100%;
  background-color: #fff;
}

.health-diary-template-selector__dropdown .dropdown__scrollbar {
  max-height: 350px;
}

.health-diary-metric-list {
  max-width: 294px;
  max-height: 710px;
  width: 100%;
  height: 100%;
}

.health-diary-metric-list__scrollbar.scrollbar > .scrollbar__track.horizontal {
  height: 8px;
}

.health-diary-metric-list__scrollbar.scrollbar > .scrollbar__track.vertical {
  width: 8px;
  height: calc(100% - 10px);
  top: 10px;
}

.health-diary-metric-list__list-wrap {
  border-radius: 8px;
  box-shadow: 0 0 10px 0 #d5e2ed;
  background-color: #ffffff;
  overflow: hidden;
  margin: 10px 16px 10px 10px;
}

.health-diary {
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.health-diary__loader {
  margin: auto;
}

.health-diary__error {
  margin: auto;
}

.health-diary__record-list-wrap {
  width: 100%;
  max-width: 700px;
  max-height: 700px;
  padding: 8px 16px 8px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 10px 0 #d5e2ed;
  margin-left: 8px;
  margin-top: 10px;
}

.health-diary__record-list-wrap__placeholder__image {
  width: 307px;
  height: 283px;
  -ms-flex-item-align: center;
      align-self: center;
  margin-top: 183px;
  background-image: url(resource/health-metric-list-unselected639c021760a8b455a24a.svg);
}

.health-diary__record-list-wrap__placeholder__label {
  margin: auto;
  text-align: center;
  margin-top: 25px;
  font-size: 16px;
  line-height: 18px;
  color: #95a3b4;
  white-space: pre-wrap;
}

.patient-health-diary {
  height: 100%;
  padding: 25px 22px 25px 0px;
}

.patient-health-diary__go-back-and-title {
  margin-left: 23px;
  margin-top: unset;
}

.patient-health-diary__health-diary {
  height: calc(100% - 55px);
  margin-left: 23px;
}

.patient-health-diary__health-diary > .loader {
  border-top-color: #eceff1;
}

.symptoms-nav {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-align: center;
      align-items: center;
  min-height: 40px;
}

.symptoms-nav__route {
  text-decoration: none;
  color: var(--primary-text-color);
}

.symptoms-nav__route .radio-with-label__label {
  font-size: 18px;
}

.symptoms-nav__content {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-pack: end;
      justify-content: flex-end;
  justify-self: flex-end;
  gap: 16px;
}

.patient-archive {
  height: 100%;
  padding: 25px 22px 25px 0px;
}

.patient-archive__go-back-and-title {
  margin-left: 23px;
  margin-top: unset;
}

.patient-archive__scrollbar {
  /* 100% - высота шапки раздела */
  max-height: calc(100% - 55px);
}

.patient-archive__loader-or-empty > .loader-or-empty__loader {
  border-top-color: #eceff1;
}

.patient-archive__services {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 12px 34px 0px 23px;
}

.diagnosis {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
}

.diagnosis:nth-child(odd) {
  background-color: #dcf0ff;
}

.diagnosis:nth-child(even) {
  background-color: #f6fbff;
}

.diagnosis__text {
  width: 80%;
  margin: 20px 15px;
  font-size: 15px;
}

.diagnosis__text:first-child {
  width: 60px;
}

.diagnoses-list {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.15);
}

.delete-questionnaire-notification__icon {
  height: 26px;
  width: 26px;
  margin-left: 5px;
  padding: 0;
  background-image: url(resource/close-whitefe05b184fb09f0504e0f.svg);
  background-size: cover;
}

.edit-questionnaire-notification__icon {
  height: 26px;
  width: 26px;
  margin-left: 15px;
  padding: 0;
  background-image: url(resource/edit-white-no-background2f80e4497f3231e887ea.svg);
  background-size: cover;
}

.diagnoses-list__questionnaire {
  margin: 10px;
  -ms-flex-align: center;
      align-items: center;
  color: #5bb4fd;
}

.diagnoses-list__questionnaire-wrap {
  margin: 20px 0;
}

.diagnoses-list__questionnaire-new {
  color: var(--primary-color);
  cursor: pointer;
  margin: 10px 0;
}

.diagnoses-list__questionnaire-new:hover {
  color: #5bb4fd;
}

.diagnoses-list__questionnaire-list-title {
  font-size: 26px;
  font-weight: bold;
}

.diagnoses-list__not-found-text {
  font-size: 20px;
  margin-top: 30px;
}

.file-select-popup__wrap {
  position: relative;
}

.file-select-popup__column {
  position: absolute;
  width: 320px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 10px;
  background-color: #f9f9f9;
  border-radius: 15px;
  box-shadow: 0 0 5px 2px rgba(111, 111, 132, 0.32);
  z-index: 10;
  bottom: 0;
  left: -50px;
}

.file-select-popup__row {
  width: 100%;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
  margin: 5px;
  cursor: pointer;
}

.file-select-popup__name {
  -ms-flex-preferred-size: 85%;
      flex-basis: 85%;
}

.file-select-popup__name:hover {
  color: gray;
}

.file-select-popup__dicom-icon {
  -ms-flex-preferred-size: 15%;
      flex-basis: 15%;
  width: 35px;
  height: 35px;
  background: var(--primary-color);
  -webkit-mask: url(resource/file-dicom868728ba00a797015b05.svg) no-repeat center;
          mask: url(resource/file-dicom868728ba00a797015b05.svg) no-repeat center;
  -webkit-mask-size: 80%;
          mask-size: 80%;
}

.file-select-popup__any-icon {
  -ms-flex-preferred-size: 15%;
      flex-basis: 15%;
  width: 35px;
  height: 35px;
  background: var(--primary-color);
  -webkit-mask: url(resource/file-any3706a43b7b55eb3c0a3a.svg) no-repeat center;
          mask: url(resource/file-any3706a43b7b55eb3c0a3a.svg) no-repeat center;
  -webkit-mask-size: 80%;
          mask-size: 80%;
}

.file-input {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 34px;
  height: 34px;
  background: var(--primary-color);
  -webkit-mask: url(resource/attach-icona10667266ab99bbc1a32.svg) no-repeat center;
          mask: url(resource/attach-icona10667266ab99bbc1a32.svg) no-repeat center;
  -webkit-mask-size: 70%;
          mask-size: 70%;
  border: none;
}

.file-input__input {
  display: none;
}

.chat-input {
  margin-top: 12px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  min-height: 48px;
  max-height: 136px;
  padding: 7px 10px;
  border: 1px solid #d3d3d3;
  border-radius: 5px;
  -ms-flex-align: start;
      align-items: flex-start;
}

.chat-input__textarea-label {
  padding: 0;
  border: none;
  position: relative;
  overflow: auto;
  height: 100%;
  width: 100%;
}

.chat_input_component:active {
  box-shadow: none !important;
  border: none !important;
}

.chat_input_component:focus {
  box-shadow: none !important;
  border: none !important;
}

.chat_input_component:focus-within {
  box-shadow: none !important;
  border: none !important;
}

.chat-input__textarea-label > .textarea-with-scrollbar__scrollbar {
  max-height: 120px;
}

.chat-input__textarea-label > .textarea-with-scrollbar__textarea:focus {
  border: none;
  outline: none;
}

.chat-input__scrollbar {
  max-height: 1200px;
  margin: 4px 10px 0px 10px;
}

.chat-input__send-button {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 34px;
  height: 34px;
  background: var(--primary-color);
  -webkit-mask: url(resource/send-icon204d1c2c958a216176dd.svg) no-repeat center;
          mask: url(resource/send-icon204d1c2c958a216176dd.svg) no-repeat center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  border: none;
}

.orange-button {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 40px;
  padding: 0px 20px;
  color: white;
  background-image: linear-gradient(#fdb17e, #ff6e02);
  border-radius: 4px;
  font-size: 18px;
  outline: none;
  cursor: pointer;
  border: none;
}
.orange-button:hover {
  background-image: linear-gradient(#fdb788, #ff740c);
}
.orange-button:disabled {
  opacity: 0.5;
}

@media screen and (max-width: 400px) {
  .orange-button {
    height: 30px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 16px;
  }
}

.form-button.selected {
  border: solid 2px #142f45;
}

.form {
  display: flex;
  display: -ms-flexbox;
  flex-direction: column;
  -ms-flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.form > .orange-button {
  max-width: 350px;
  margin: 2.5px 0;
}

.message-status {
  width: 20px;
  background-repeat: no-repeat;
  background-position: 0px;
}

.message-status.undelivered {
  background-image: url(resource/msg-undelivered-icon01b44d54f561e3e73789.svg);
}

.message-status.read {
  background-image: url(resource/msg-read-iconc37bcd869936abac1aae.svg);
}

.message-status.delivered {
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  -webkit-mask: url(resource/msg-delivered-icon15f31b53a49e86f1b5a3.svg) no-repeat center;
          mask: url(resource/msg-delivered-icon15f31b53a49e86f1b5a3.svg) no-repeat center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}

.message-status.sending {
  background-image: url(resource/msg-sending-icon0c663937d6bae4c803eb.svg);
}

.attachment-loader {
  position: relative;
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  border-radius: 5px;
  padding: 2px;
}

.attachment-loader > .CircularProgressbar .CircularProgressbar-trail {
  stroke: var(--primary-color);
}

.attachment-loader > .CircularProgressbar .CircularProgressbar-path {
  stroke: #fff;
}

.attachment-loader__cancel-button {
  position: absolute;
  color: #fff;
  font-size: 12px;
  line-height: 12px;
  width: 12px;
  height: 12px;
  top: calc(50% - 6px);
  right: calc(50% - 6px);
}

.file-attachment {
  display: -ms-flexbox;
  display: flex;
  margin: 5px 0;
  -ms-flex-align: center;
      align-items: center;
}

.file-attachment.downloadable {
  cursor: pointer;
}

.file-attachment__icon {
  width: 30px;
  height: 30px;
  padding: 3px;
  background: var(--primary-color);
  border-radius: 5px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-origin: content-box;
  background-image: url(resource/file-whitec2e67a0ae048e7efb8af.svg);
}

.file-attachment__name {
  margin-left: 10px;
  color: #696969;
  font-size: 12px;
  line-height: 27px;
}

.message.own .file-attachment__name {
  color: #ffffff;
}

.image-attachment {
  height: 150px;
  margin: 5px 0;
  position: relative;
}

.image-attachment.downloadable {
  cursor: pointer;
}

.image-attachment__image {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  opacity: 0.3;
}

.image-attachment.downloadable > .image-attachment__image {
  opacity: unset;
}

.image-attachment__loader {
  background: unset;
}

.audio-attachment {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.audio-attachment__loader {
  margin-right: 33px;
}

.audio-attachment__download-button,
.audio-attachment__play-button {
  width: 30px;
  height: 30px;
  padding: 3px;
  background: var(--color-primary);
  border-radius: 5px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-origin: content-box;
}

.audio-attachment__download-button {
  background-image: url(resource/download-white9757827e094dbc043544.png);
}

.audio-attachment__play-button {
  margin-left: 3px;
  background-image: url(resource/play-whiteaf8639c1fa73dd1f034e.png);
}

.audio-attachment__player {
  margin-left: 10px;
  width: 400px;
  height: 30px;
}

.audio-attachment__name {
  margin-left: 10px;
  color: #696969;
  font-size: 12px;
  line-height: 27px;
}

.message.own .audio-attachment__name {
  color: #ffffff;
}

.message {
  width: 100%;
  margin-top: 9px;
  display: -ms-flexbox;
  display: flex;
}

.message.own {
  -ms-flex-pack: end;
      justify-content: flex-end;
}

.message__wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

.message.own .message__wrap {
  -ms-flex-pack: end;
      justify-content: flex-end;
}

.message.others .message__wrap {
  width: 100%;
}

.message__inner-wrap {
  display: -ms-flexbox;
  display: flex;
}

.message__user-card {
  height: 27px;
  margin-bottom: 9px;
}

.message__content {
  padding: 19px 20px 15px 20px;
  border-radius: 17px;
  min-width: 200px;
  max-width: 707px;
}

.message.own .message__content {
  background: var(--primary-color);
}

.message.others .message__content {
  background: #eceff1;
}

.message__text {
  font-size: 16px;
  line-height: 27px;
  word-wrap: break-word;
  white-space: pre-wrap;
}

.message.own .message__text {
  color: #ffffff;
}

.message.others .message__text {
  color: #424242;
}

.message__right-block {
  display: -ms-flexbox;
  display: flex;
  height: 27px;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}

.message.own .message__right-block {
  margin-left: 26px;
}

.message.others .message__right-block {
  margin-left: auto;
}

.message__time {
  font-size: 12px;
  line-height: 27px;
  color: #a7a7a7;
  margin-left: 6px;
}

.message__consultation-button {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  height: 48px;
  width: 220px;
  margin: auto;
  margin-top: 20px;
}

.system-message {
  position: relative;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
.system-message .message__wrap {
  -ms-flex-pack: center;
      justify-content: center;
}

.system-message .message__right-block {
  position: absolute;
  margin-left: auto;
  right: 0;
}

.system-message .message__content {
  padding: 0;
}

.system-message .message__text {
  font-size: 14px;
  color: #a7a7a7;
  text-align: center;
}

.message__service-reason {
  font-size: 14px;
}

.messages-date {
  font-size: 14px;
  color: #a7a7a7;
  text-align: center;
  margin: 10px 0;
}

.message__tags {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 4px;
  gap: 4px;
}

.message__tag {
  color: var(--primary-color);
}

.chat-item-list__inner-wrap {
  /* Ширина вертикального скролл-бара + отступ */
  padding-right: calc(12px + 23px);
}

.chat-input-stub {
  height: 48px;
  width: 100%;
  background: #cfd8dc;
  border: 1px solid #d3d3d3;
  border-radius: 5px;
  padding: 11px 17px 10px;
  cursor: default;
  margin-top: 12px;
}

.chat-input-stub__text {
  line-height: 27px;
  color: #b0bec5;
}

.chat-area {
  width: 100%;
  height: 100%;
  background: #ffffff;
}

.chat-area__inner-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 100%;
  height: 100%;
}

.chat-area__search {
  width: 300px;
  margin-bottom: 6px;
}

.chat-page {
  width: 100%;
  height: 100%;
  background: #ffffff;
  padding: 25px 22px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

.chat-page__chat-area {
  /* 100% - высота шапки чата */
  height: calc(100% - 65px);
}

/* .consultation-protocol__lable {
  line-height: 27px;
  font-size: 12px;
  color: #a7a7a7;
} */

.consultation-protocol__wrap {
  width: 100%;
}

.consultation-protocol--readonly .disabled {
  opacity: 1 !important;
}
.consultation-protocol--readonly .disabled .checkbox-with-label__label,
.consultation-protocol--readonly :disabled {
  opacity: 0.7 !important;
}

.consultation-protocol__content {
  width: 50%;
  min-width: 595px;
}

.consultation-protocol__header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.consultation-protocol__number-input {
  padding-left: 20px;
  max-width: 100px;
}

.consultation-protocol__protocol {
  -ms-flex-positive: 1;
      flex-grow: 1;
  font-size: 26px;
  font-weight: bold;
}

.consultation-protocol__buttons-wrap {
  margin-top: 20px;
}

.consultation-protocol__button > .button {
  height: 40px;
  margin-right: 20px;
  width: 180px;
}

.consultation-protocol__button > button:disabled {
  cursor: not-allowed;
}

.consultation-protocol__success {
  margin: auto 20px;
  line-height: 27px;
  font-size: 12px;
  color: #a7a7a7;
}

.consultation-protocol__content > * {
  padding-bottom: 10px;
}

.consultation-protocol__content > .cluster-loader {
  margin: 0 !important;
}

.consultation-protocol__wrap .error-text {
  font-size: 14px;
  color: red;
}

.consultation-protocol__content__textarea-with-scrollbar {
  height: 80px;
}

.consultation-protocol__content__textarea-with-scrollbar .textarea-with-scrollbar__scrollbar {
  min-height: 77px;
}

.consultation-protocol__content__textarea-with-scrollbar .textarea-with-scrollbar__textarea {
  min-height: 63px;
}

.consultation-protocol__content__checkbox {
  margin-top: 15px;
}

.consultation-protocol__content__checkbox:empty {
  margin-top: 0;
  padding-bottom: 0;
}

.consultation-protocol__content__checkbox > * {
  margin-bottom: 20px;
}

.consultation-protocol__content__diagnosis {
  width: 100%;
}

.consultation-protocol__dropdown__item .dropdown__item {
  width: 100%;
  min-height: 40px;
  height: auto;
  white-space: unset;
  text-overflow: unset;
}

.consultation-protocol__mis-button {
  margin: 10px 0;
}

.consultation-protocol__mis-button > .button {
  width: 300px;
  height: 40px;
}

.consultation-protocol__checkboxes {
  gap: 5px;
}


.protocol-saving-error-msg{
  color: #d22c75;
  width: 160px;
  margin-top: 5px;
  margin-left: 10px;
  text-align: left;
}

.protocol-saving-error-msg p{
  font-size: 14px;
  display: block;
}

.disabled-checkbox{
  color: rgba(0, 0, 0, 0.5);
}

.diagnosis-select {
  position: relative;
}

.diagnosis-select__input {
  width: 100%;
}

.diagnosis-select__input.opened {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.diagnosis-list-item {
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  width: 100%;
  -ms-flex-align: center;
      align-items: center;
  cursor: pointer;
  padding: 0 7px;
  overflow: hidden;
}

.diagnosis-list-item > .text {
  line-height: 40px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.diagnosis-list-item:hover {
  background-color: #eceff1;
}

.diagnosis-select__list {
  position: absolute;
  width: 100%;
  max-height: 200px;
  box-sizing: content-box;
}

.diaglosis-select__scrollbar {
  max-height: inherit;
  background-color: #fff;
  border: 1px solid rgba(88, 106, 141, 0.3);
  border-top: none;
  border-radius: 0px 0px 5px 5px;
  z-index: 1;
}

.component-with-tooltip__wrap {
  position: relative;
}

.component-with-tooltip__on-input {
  position: absolute;
  right: 1%;
  top: 43%;
  z-index: 1;
}

.component-with-tooltip__question-image {
  width: 27px;
}

.component-with-tooltip__tooltip-text {
  font-size: 13px;
  line-height: 19px;
}

.component-with-tooltip .tootlip__block::before {
  z-index: 2;
}

.supervisor-page__title {
  font-size: 26px;
  font-weight: bold;
  padding: 30px 0;
}

.supervisor-page {
  height: 100%;
  overflow: hidden;
}

.supervisor-page_chat_modal {
  height: 100%;
  width: 100%;
}

.supervisor-page_chat_modal .modal__content {
  width: 900px;
  height: 700px;
}

.supervisor-page__loader {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  height: calc(100vh - 250px);
}

.supervisor-page__section {
  width: 100%;
  max-width: calc(100vw - 376px) !important;
}

.supervisor-page__section-content {
  width: 100%;
  max-width: calc(100vw - 376px) !important;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 20px;
}

/*.supervisor-page__scrollbar {*/
/*    width: calc(100vw - 376px)!important;*/
/*    height: calc(100vh - 200px)!important;*/
/*}*/

.chat-header {
  width: 100%;
  height: 100px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 0px 22px 25px 22px;
}

.chat-header-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  margin-left: 23px;
  margin-right: auto;
  min-width: 250px;
}

.chat-header-info__name {
  line-height: 27px;
}

.chat-header-info__bottom-block__wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.chat-header-info__bottom-block_sex {
  font-size: 14px;
  line-height: 27px;
  color: #a7a7a7;
}

.chat-header-info__bottom-block_iemk-link {
  margin-left: 10px;
  font-size: 14px;
  line-height: 27px;
  color: var(--primary-color);
}

.chat-header-info__status__positive,
.chat-header-info__status__negative,
.chat-header-info__status__neutral,
.chat-header-info__participants {
  margin-left: 8px;
  font-size: 12px;
  font-weight: bold;
  line-height: 22px;
}

.chat-header-info__status__positive,
.chat-header-info__participants {
  color: var(--primary-color);
}

.chat-header-info__status__negative {
  color: #f50057;
}

.chat-header-info__status__neutral {
  color: #686868;
}

.chat-header-info__participants {
  cursor: pointer;
  line-height: 30px;
}

.chat-header-timer_text {
  color: var(--primary-color);
}

.chat-header-button {
  width: 39px;
  height: 39px;
  margin-right: 11px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.conference-button {
  background-image: url(resource/video-call-icon70b63fc631a1841a29c3.svg);
  background-repeat: no-repeat;
  background-size: 20px 13px;
  background-position: 10px;
  margin-left: auto;
}

.consultation-chat-header-content__close-consultation-button {
  width: 120px;
  height: 40px;
}

.consultation-chat-header-content__tab-buttons-wrap {
  margin-left: 15px;
  display: -ms-flexbox;
  display: flex;
}

.consultation-chat-header-content__patient-info {
  margin-right: auto;
}

.consultation-chat-header-content__tab-button {
  width: 90px;
  height: 40px;
  background: #fff;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-size: 16px;
  border-radius: unset;
}

.consultation-chat-header-content__tab-button.left {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}

.consultation-chat-header-content__tab-button.right {
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}

.consultation-chat-header-content__tab-button.active {
  background: var(--color-primary);
  color: #fff;
}

.consultation-chat-header-content__start-consultation-button {
  margin-right: 15px;
  margin-left: 15px;
}

.discussion-chat-header-content__wrap {
  width: 100%;
}

.discussion-chat-header-content__buttons-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.discussion-chat-header-content__buttons-wrap > .button {
  width: 132px;
  height: 40px;
}

.discsussion-chat-header-content__cancel-discussion-button,
.discsussion-chat-header-content__complete-discussion-button {
  height: 40px;
  margin-left: 0 !important;
  margin-right: 33px;
}

.discsussion-chat-header-content__cancel-discussion-button {
  width: 177px;
}

.discsussion-chat-header-content__complete-discussion-button {
  width: 230px;
}

.consultation-chat-header-content__tab-buttons-wrap {
  margin-left: 15px;
  display: -ms-flexbox;
  display: flex;
}

.consultation-chat-header-content__tab-button {
  width: 90px;
  height: 40px;
  background: #fff;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 16px;
  border-radius: unset;
}

.consultation-chat-header-content__tab-button.left {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}

.consultation-chat-header-content__tab-button.right {
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}

.consultation-chat-header-content__tab-button.active {
  background: var(--primary-color);
  color: #fff;
}

.consultation-chat-header-content__start-consultation-button {
  margin-right: 15px;
  margin-left: 15px;
}

.discsussion-chat-header-content__button {
  padding: 0 10px;
  margin: 0 5px;
}

.consultation-chat-header-content__wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}


.buttons-disscussion{
    overflow: hidden;
    position:relative;
}



.buttons-disscussion > .button{
    display: inline-block;
    margin-bottom: 5px;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    padding-top: 10px
}

@media screen and (max-width: 1440px){
  .buttons-disscussion{
    overflow: hidden;
    position:absolute;
    right: 90px;
    top: 150px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center
  }
}


.discussion-chat-header-content__buttons-wrap {
  margin-left: auto;
  width: 272px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-right: 0;
}

.discussion-chat-header-content__buttons-wrap > .button {
  width: 132px;
  height: 40px;
}

.discsussion-chat-header-content__cancel-discussion-button,
.discsussion-chat-header-content__complete-discussion-button {
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -ms-flex-align: center;
      align-items: center;
  height: 40px;
  margin-right: 10px;
  line-height: 20px !important;
  padding: 0 10px;
}

.discsussion-chat-header-content__decline-discussion-button,
.discsussion-chat-header-content__accept-discussion-button {
  margin-right: 5px;
}

.discsussion-chat-header-content__cancel-discussion-button {
  width: 177px;
}

.discsussion-chat-header-content__complete-discussion-button {
  width: 230px;
}

.concilium-chat-header-content__tab-buttons-wrap {
  margin-left: 15px;
  display: -ms-flexbox;
  display: flex;
}

.concilium-chat-header-content__tab-button {
  width: 90px;
  height: 40px;
  background: #fff;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 16px;
  border-radius: unset;
}

.concilium-chat-header-content__tab-button.left {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}

.concilium-chat-header-content__tab-button.right {
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}

.concilium-chat-header-content__tab-button.active {
  background: var(--primary-color);
  color: #fff;
}

.concilium-chat-header-content__start-consultation-button {
  margin-right: 15px;
  margin-left: 15px;
}

.concilium-chat-header-content__decline-discussion-button,
.concilium-chat-header-content__accept-discussion-button {
  height: 40px;
  padding-inline: 10px;
}

.concilium-chat-header-content__decline-discussion-button {
  margin-right: 10px;
}

.concilium-chat-header-content__complete-discussion-button {
  height: 40px;
  padding: 0 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}

.discussion-chat-header-content__wrap {
  width: 100%;
}

.discussion-chat-header-content__buttons-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.discussion-chat-header-content__buttons-wrap > .button {
  width: 132px;
  height: 40px;
}

.discsussion-chat-header-content__cancel-discussion-button,
.discsussion-chat-header-content__complete-discussion-button {
  height: 40px;
  margin-left: 0 !important;
  margin-right: 33px;
}

.discsussion-chat-header-content__cancel-discussion-button {
  width: 177px;
}

.discsussion-chat-header-content__complete-discussion-button {
  width: 230px;
}

.consultation-chat-header-content__tab-buttons-wrap {
  margin-left: 15px;
  display: -ms-flexbox;
  display: flex;
}

.consultation-chat-header-content__tab-button {
  width: 90px;
  height: 40px;
  background: #fff;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 16px;
  border-radius: unset;
}

.consultation-chat-header-content__tab-button.left {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}

.consultation-chat-header-content__tab-button.right {
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}

.consultation-chat-header-content__tab-button.active {
  background: var(--primary-color);
  color: #fff;
}

.consultation-chat-header-content__start-consultation-button {
  margin-right: 15px;
  margin-left: 15px;
}

.discsussion-chat-header-content__button {
  padding: 0 10px;
  margin: 0 5px;
}

.consultation-chat-header-content__wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.modal.tmk .modal__wrap {
  padding: 40px 40px 30px;
}
.modal.tmk .modal__header__close-button {
  display: none;
}
.modal.tmk .modal__content.with-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
}

.patient-chat-header__profile-link {
  display: -ms-flexbox;
  display: flex;
  height: 29px;
  border-right: 1px solid #979797;
  padding: 0px 19px 0px 0;
  text-decoration: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.patient-chat-header__profile-link:before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 5px;
  background-color: var(--primary-color);
  -webkit-mask: url(resource/blue-arrow-leftd2090f210a978a8b5cbc.svg) no-repeat center;
          mask: url(resource/blue-arrow-leftd2090f210a978a8b5cbc.svg) no-repeat center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}

.patient-chat-header__user-card {
  font-size: 16px;
  line-height: 27px;
  color: var(--primary-color);
}

.patient-chat-header__header-content__wrap {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.medication-diary-selector {
  width: 100%;
  height: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 10px 0px;
  padding: 0px 10px;
}

.medication-diary-selector__dropdown {
  width: 100%;
  background-color: #fff;
}

.medication-diary-selector__dropdown .dropdown__scrollbar {
  max-height: 350px;
}

.medication-diary-filter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: start;
      align-items: flex-start;
  width: 100%;
  min-height: 128px;
  border-bottom: 1px solid #d5e2ed;
  text-decoration: none;
  padding: 19px 16px 8px 16px;
}

.medication-diary-filter.active {
  background-color: var(--primary-color);
}

.medication-diary-filter.active .medication-diary-filter__name,
.medication-diary-filter.active .medication-diary-filter__dosage,
.medication-diary-filter.active .medication-diary-filter__last-dose-date {
  color: #ffffff;
}

.medication-diary-filter__dosage,
.medication-diary-filter__last-dose-date {
  color: #95a3b4;
  font-size: 16px;
  line-height: 18px;
}

.medication-diary-filter__name-wrap {
  overflow: hidden;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  margin: 16px 0px 12px;
}

.medication-diary-filter__name {
  color: #3a4146;
  font-size: 32px;
  font-weight: bold;
  line-height: 30px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 100%;
}

.medication-diary-filter__dosage {
  color: #3a4146;
  margin: 16px 0px 12px;
}

.medication-diary-filter-list {
  max-width: 294px;
  max-height: 710px;
  width: 100%;
  height: 100%;
}

.medication-diary-filter-list__scrollbar.scrollbar > .scrollbar__track.horizontal {
  height: 8px;
}

.medication-diary-filter-list__scrollbar.scrollbar > .scrollbar__track.vertical {
  width: 8px;
  height: calc(100% - 10px);
  top: 10px;
}

.medication-diary-filter-list__list-wrap {
  border-radius: 8px;
  box-shadow: 0 0 10px 0 #d5e2ed;
  background-color: #ffffff;
  overflow: hidden;
  margin: 10px 16px 10px 10px;
}

.medication-diary-filter_name {
  padding: 19px;
  border-bottom: 1px solid #d5e2ed;
  background-color: #dbeefd;
}

.medication-diary-filter-list__list-wrap > .dash-loader {
  margin-top: 10px;
  margin-bottom: 10px;
}

.intake-date__header {
  font-size: 16px;
  line-height: 18px;
  color: #95a3b4;
  text-align: left;
}

.intake-value__header {
  font-size: 16px;
  line-height: 18px;
  color: #95a3b4;
  text-align: left;
}

.intake-value__state {
  width: 30px;
  background: inherit;
  margin-left: 3%;
  margin-right: 3%;
}

.medication-diary-intake-table {
  width: 100%;
  border: none;
  max-height: calc(100% - 46px); /* Высота обертки - высота шапки */
}

.medication-diary-intake-table .rt-thead.-header {
  height: 64px;
  box-shadow: none;
  border-bottom: 1px solid #cad1da;
  padding: 0px 8px;
}

.medication-diary-intake-table .rt-thead.-header .rt-th {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: unset;
  border: none;
}

.medication-diary-intake-table .rt-thead.-header .rt-th:last-child {
  -ms-flex-pack: center;
      justify-content: center;
}

.medication-diary-intake-table .rt-tbody .rt-tr-group {
  border-bottom: 1px solid #cad1da;
}

.medication-diary-intake-table .rt-tbody .rt-td {
  border: unset;
  padding: 15px 8px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.medication-diary-intake-table .rt-tbody .rt-td:last-child {
  -ms-flex-pack: center;
      justify-content: center;
}

.medication-diary-intake-table .rt-tbody .rt-td,
.medication-diary-intake-table .rt-tbody .rt-td .text {
  font-size: 16px;
  line-height: 24px;
  color: #424242;
}

.medication-diary-intake-table .-pagination {
  margin-top: 15px;
  border: none;
  box-shadow: none;
}

.medication-diary-intake-table.-highlight .rt-tbody .rt-tr:not(.-padRow):hover {
  background: #f0f5f9 !important;
  cursor: default;
}

.medication-diary-intake-table.-highlight .rt-tbody .rt-tr .record-control-block {
  visibility: hidden;
}

.medication-diary-intake-table.-highlight .rt-tbody .rt-tr:not(.-padRow):hover .record-control-block {
  visibility: visible;
}

.medication-diary-intake-list__header {
  padding: 8px;
  -ms-flex-align: center;
      align-items: center;
}

.medication-diary-intake-list__header__title {
  font-size: 24px;
  line-height: 30px;
  color: #3a4146;
  margin-bottom: 10px;
}

.medication-diary {
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.medication-diary__intake-list-wrap {
  width: 100%;
  max-width: 980px;
  max-height: 770px;
  padding: 8px 16px 8px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 10px 0 #d5e2ed;
  margin-left: 8px;
  margin-top: 10px;
}

.patient-medication-diary {
  height: 100%;
  padding: 25px 22px 25px 0px;
}

.patient-medication-diary__go-back-and-title {
  margin-left: 23px;
  margin-top: unset;
}

.patient-medication-diary__medication-diary {
  height: calc(100% - 55px);
  margin-left: 23px;
}

.patient-medication-diary__medication-diary > .loader {
  border-top-color: #eceff1;
}

.monitoring-program-table {
  height: inherit;
  width: 100%;
  padding: 20px;
  background: white;
  border-radius: 10px;
  border: solid 1px var(--primary-secondary-color);
}

.monitoring-program-table .rt-td {
  border-right: unset !important;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  line-height: normal !important;
  padding: 10px 10px;
}

.monitoring-program-table .rt-tr-group {
  border-bottom: solid 1px var(--primary-secondary-color) !important;
}

.monitoring-program-table .-header {
  box-shadow: unset !important;
  border-bottom: solid 1px var(--primary-secondary-color) !important;
  font-weight: bold;
  font-size: 23px !important;
  letter-spacing: 1;
}

.monitoring-program-table .rt-thead {
  padding: 10px !important;
}

.monitoring-program-table .-pagination {
  box-shadow: unset !important;
  border-top: unset !important;
  margin-top: 10px;
}

.monitoring-program-table .rt-tr-group:hover a {
  color: white;
}

.monitoring-program-table .-btn:hover {
  border: unset !important;
}

.patient-monitoring-program {
  height: 100%;
  padding: 25px 0;
}

.patient-monitoring-program__content {
  padding: 0 30px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}

.patient-monitoring-program__go-back-and-title {
  margin-left: 23px;
  margin-right: 23px;
  margin-top: unset;
}

.patient-monitoring-program__create-button {
  padding: 0 var(--button-border-radius);
  height: var(--button-small-height);
}

.patient-area__loader-or-empty > .loader-or-empty__loader {
  border-top-color: #eceff1;
}

.patient-permission {
  padding: 0 20px;
}

.patient-permission__content {
  display: -ms-flexbox;
  display: flex;
}

.small {
  display: -ms-flexbox;
  display: flex;
  height: var(--button-small-height) !important;
  line-height: var(--button-small-line-height) !important;
}

.base-button-icon {
  background-color: transparent !important;
}
.base-button-icon:hover {
  box-shadow: none !important;
}

.base-button {
  border-style: none;
  text-decoration: none;
  font-size: var(--button-font-size);
  line-height: var(--button-line-height);
  color: var(--base-button-text-color);
  border-radius: var(--button-border-radius);
  background-color: var(--base-button-bg-color);
}

.base-button:hover {
  box-shadow: var(--button-shadow) var(--base-button-hover-color);
}

.base-button:active {
  background-color: var(--base-button-active-color);
}

.base-button:disabled {
  background-color: var(--base-button-disabled-bg-color);
  color: var(--base-button-disabled-text-color);
  border: none;
  box-shadow: none;
}

.base-button-inverted {
  border-style: none;
  text-decoration: none;
  font-size: var(--button-font-size);
  color: var(--base-button-inverted-text-color);
  border-radius: var(--button-border-radius);
  background-color: var(--base-button-inverted-bg-color);
}

.base-button-inverted:hover {
  box-shadow: var(--button-shadow) var(--base-button-inverted-hover-color);
}

.base-button-inverted:active {
  background-color: var(--base-button-inverted-active-color);
}

.info-button {
  background-image: url(resource/info-iconfcd73a371ad398d15b23.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.doctor-chat-header {
  width: 100%;
  height: 65px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 0px 22px 25px 22px;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.doctor-chat-header__input {
  padding-right: 37px;
  height: 42px;
  width: 484px;
  color: #696969;
}

.doctor-chat-header__user-info {
  font-size: 18px;
  font-weight: bold;
}

.doctor-chat-header__buttons-block {
  display: -ms-flexbox;
  display: flex;
}

.doctor-chat-header__name__button {
  width: 20px;
  height: 20px;
}
.doctor-chat-header__name__button:after {
  content: '';
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  -webkit-mask: url(resource/edit55ca534f4381d94a2ca9.svg) center no-repeat;
          mask: url(resource/edit55ca534f4381d94a2ca9.svg) center no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}

.doctor-chat-header__name {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.doctor-chat-header__name > .text {
  overflow: hidden;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 500px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.doctor-chat-header__name__text {
  font-size: 18px;
  font-weight: bold;
  margin-right: 10px;
}

.doctor-chat-header__tick {
  position: absolute;
  right: 5px;
  top: calc(50% - 17px);
  width: 34px;
  height: 34px;
}
.doctor-chat-header__tick {
  display: block;
  content: '';
  width: 24px;
  height: 24px;
  top: 10px;
  background: var(--primary-color);
  -webkit-mask: url(resource/tick74daa9474bd989f78028.svg) no-repeat center;
          mask: url(resource/tick74daa9474bd989f78028.svg) no-repeat center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}

.doctor-chat-header__edit {
  position: relative;
}

.doctor-chat-header__controls {
  display: -ms-flexbox;
  display: flex;
}

.doctor-chat-header__conference-button {
  margin: 0 10px;
}

.remove-participants-button {
  margin-right: 11px;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0 15px;
}

.add-participants-button:after {
  content: '';
  display: block;
  width: 39px;
  height: 39px;
  background-color: var(--primary-color);
  -webkit-mask: url(resource/add-participants-icon50c6feec9f6d306d6f14.svg) center no-repeat;
          mask: url(resource/add-participants-icon50c6feec9f6d306d6f14.svg) center no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}

.add-participants-button {
  text-align: left;
  width: 39px;
  height: 39px;
  border: none;
}

.add-participants-button:disabled {
  opacity: 0.3;
  background-color: #c5cdd0;
}

.content-area {
  height: 100%;
  /* Ширина страницы - ширина левого сайдбара*/
  width: calc(100% - 376px);
  background: #eceff1;
}

.confirmation-modal {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

.confirmation-modal__header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 30px;
}

.confirmation-modal__buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}

.confirmation-modal__button {
  padding: 10px 30px;
  margin: 0 20px;
}

.confirmation-modal__button:active {
  border: 2px solid #ffffff;
}

.iframe {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.modal-content.iframe-modal {
  padding: unset;
  min-height: 200px;
  max-height: 90vh;
  max-width: 90vw;
  overflow: auto;
}

.incoming-call > .modal__wrap {
  width: unset;
  background: unset;
}

.incoming-call__title {
  color: #ffffff;
  line-height: 42px;
}

.incoming-call__participant-user-card {
  color: #d8d8d8;
  font-size: 30px;
  font-weight: bold;
  line-height: 34px;
  margin-top: 18px;
}

.incoming-call__more-users-text {
  color: #d8d8d8;
  font-size: 26px;
  line-height: 30px;
  margin-top: 18px;
}

.incoming-call__buttons-wrap {
  display: -ms-flexbox;
  display: flex;
  margin-top: 51px;
}

.incoming-call__button-wrap {
  width: 94px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  margin: 0px 58px;
}

.incoming-call__button {
  width: 94px;
  height: 94px;
  border-radius: 100px;
}

.incoming-call__button-text {
  line-height: 27px;
  color: #ffffff;
  margin-top: 10px;
}

.incoming-call__button.accept {
  background-image: url(resource/accept-call-iconf1d9eadece1cd44c75f0.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.incoming-call__button.decline {
  background-image: url(resource/end-call-icon4e3e8ce8e486fb0c0d30.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.modal.attachments-too-large > .modal-wrap {
  width: 520px;
}

.attachments-too-large__error-text {
  text-align: center;
  margin: 10px 20px;
}

.unexpected-error__reload-button {
  margin-top: 15px;
  width: 210px;
  height: 48px;
}

.attachments-too-large__close-button {
  margin-top: 10px;
  padding: 15px 30px;
}

.image-viewer-modal > .modal-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-width: 500px;
  min-height: 500px;
  max-width: 800px;
  max-height: 800px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

.image-viewer-modal.modal-content {
  margin: auto;
}

.image-viewer-modal__progressbar {
  width: 60px;
  height: 60px;
}

.image-viewer-modal__progressbar .CircularProgressbar-path {
  stroke: var(--color-primary);
}

.add-or-edit-health-diary-metric-modal > .modal-wrap {
  width: 464px;
}

.add-or-edit-health-diary-metric-modal .modal-content.with-header {
  min-height: 250px;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}

.add-or-edit-health-diary-metric-modal__input-with-label {
  width: 400px;
}

.add-or-edit-health-diary-metric-modal__metric-type__label,
.add-or-edit-health-diary-metric-modal__input-with-label > .text {
  font-size: 16px;
  line-height: 27px;
  margin-bottom: 7px;
}

.add-or-edit-health-diary-metric-modal__input-with-label .input,
.add-or-edit-health-diary-metric-modal__metric-type__dropdown {
  height: 40px;
  width: 400px;
}

.add-or-edit-health-diary-metric-modal__metric-type__dropdown .dropdown__item,
.add-or-edit-health-diary-metric-modal__metric-type__dropdown .dropdown__title {
  min-height: 40px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  white-space: normal;
}

.add-or-edit-health-diary-metric-modal__save-button {
  width: 400px;
  margin-top: 24px;
}

.add-or-edit-health-diary-metric-modal__save-button > .button {
  height: 48px;
  width: 400px;
}

.add-or-edit-health-diary-metric-modal__save-button > .button-with-loader__error {
  text-align: center;
  margin-top: 5px;
}

.add-or-edit-health-diary-metric-modal__no-available-metrics {
  margin: auto;
}

.add-or-edit-health-diary-metric-modal__error-text {
  color: red;
  margin-top: 16px;
  font-size: 14px;
}

.add-or-edit-health-diary-record-modal_title {
  margin-top: 40px;
  margin-bottom: 20px;
}

.add-or-edit-health-diary-record-modal__label {
  line-height: 27px;
  font-size: 12px;
  color: #a7a7a7;
}

.add-or-edit-health-diary-record-modal__day-picker-input {
  width: 100%;
}

.add-or-edit-health-diary-record-modal__day-picker-input.date-time-input__calendar {
  margin-right: -35px;
}

.date-time-input__calendar {
  display: -ms-flexbox;
  display: flex;
}

.day-picker-input.add-or-edit-health-diary-record-modal__day-picker-input.date-time-input__calendar:after {
  position: relative;
  display: block;
  top: 4px;
  right: 5px;
  content: '';
  width: 30px !important;
  height: 30px !important;
  background: var(--primary-color);
  -webkit-mask: url(resource/calendar-icon905e2845600f15dcfcc0.svg) no-repeat center;
          mask: url(resource/calendar-icon905e2845600f15dcfcc0.svg) no-repeat center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-repeat: no-repeat;
}

/* DayPicker styles */

.DayPicker {
  display: inline-block;
  font-size: 1rem;
}

.DayPicker-wrapper {
  position: relative;

  -ms-flex-direction: row;

      flex-direction: row;
  padding-bottom: 1em;

  -webkit-user-select: none;

      -ms-user-select: none;

          user-select: none;
}

.DayPicker-Months {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
}

.DayPicker-Month {
  display: table;
  margin: 0 1em;
  margin-top: 1em;
  border-spacing: 0;
  border-collapse: collapse;

  -webkit-user-select: none;

      -ms-user-select: none;

          user-select: none;
}

.DayPicker-NavBar {
}

.DayPicker-NavButton {
  position: absolute;
  top: 1em;
  right: 1.5em;
  left: auto;

  display: inline-block;
  margin-top: 2px;
  width: 1.25em;
  height: 1.25em;
  background-position: center;
  background-size: 50%;
  background-repeat: no-repeat;
  color: #8B9898;
  cursor: pointer;
}

.DayPicker-NavButton:hover {
  opacity: 0.8;
}

.DayPicker-NavButton--prev {
  margin-right: 1.5em;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAwCAYAAAB5R9gVAAAABGdBTUEAALGPC/xhBQAAAVVJREFUWAnN2G0KgjAYwPHpGfRkaZeqvgQaK+hY3SUHrk1YzNLay/OiEFp92I+/Mp2F2Mh2lLISWnflFjzH263RQjzMZ19wgs73ez0o1WmtW+dgA01VxrE3p6l2GLsnBy1VYQOtVSEH/atCCgqpQgKKqYIOiq2CBkqtggLKqQIKgqgCBjpJ2Y5CdJ+zrT9A7HHSTA1dxUdHgzCqJIEwq0SDsKsEg6iqBIEoq/wEcVRZBXFV+QJxV5mBtlDFB5VjYTaGZ2sf4R9PM7U9ZU+lLuaetPP/5Die3ToO1+u+MKtHs06qODB2zBnI/jBd4MPQm1VkY79Tb18gB+C62FdBFsZR6yeIo1YQiLJWMIiqVjQIu1YSCLNWFgijVjYIuhYYCKoWKAiiFgoopxYaKLUWOii2FgkophYp6F3r42W5A9s9OcgNvva8xQaysKXlFytoqdYmQH6tF3toSUo0INq9AAAAAElFTkSuQmCC);
}

.DayPicker-NavButton--next {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAwCAYAAAB5R9gVAAAABGdBTUEAALGPC/xhBQAAAXRJREFUWAnN119ugjAcwPHWzJ1gnmxzB/BBE0n24m4xfNkTaOL7wOtsl3AXMMb+Vjaa1BG00N8fSEibPpAP3xAKKs2yjzTPH9RAjhEo9WzPr/Vm8zgE0+gXATAxxuxtqeJ9t5tIwv5AtQAApsfT6TPdbp+kUBcgVwvO51KqVhMkXKsVJFXrOkigVhCIs1Y4iKlWZxB1rX4gwlpRIIpa8SDkWmggrFq4IIRaJKCYWnSgnrXIQV1r8YD+1Vrn+bReagysIFfLABRt31v8oBu1xEBttfRbltmfjgEcWh9snUS2kNdBK6WN1vrOWxObWsz+fjxevsxmB1GQDfINWiev83nhaoiB/CoOU438oPrhXS0WpQ9xc1ZQWxWHqUYe0I0qrKCQKjygDlXIQV2r0IF6ViEBxVTBBSFUQQNhVYkHIVeJAtkNsbQ7c1LtzP6FsObhb2rCKv7NBIGoq4SDmKoEgTirXAcJVGkFSVVpgoSrXICGUMUH/QBZNSUy5XWUhwAAAABJRU5ErkJggg==);
}

.DayPicker-NavButton--interactionDisabled {
  display: none;
}

.DayPicker-Caption {
  display: table-caption;
  margin-bottom: 0.5em;
  padding: 0 0.5em;
  text-align: left;
}

.DayPicker-Caption > div {
  font-weight: 500;
  font-size: 1.15em;
}

.DayPicker-Weekdays {
  display: table-header-group;
  margin-top: 1em;
}

.DayPicker-WeekdaysRow {
  display: table-row;
}

.DayPicker-Weekday {
  display: table-cell;
  padding: 0.5em;
  color: #8B9898;
  text-align: center;
  font-size: 0.875em;
}

.DayPicker-Weekday abbr[title] {
  border-bottom: none;
  text-decoration: none;
}

.DayPicker-Body {
  display: table-row-group;
}

.DayPicker-Week {
  display: table-row;
}

.DayPicker-Day {
  display: table-cell;
  padding: 0.5em;
  border-radius: 50%;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
}

.DayPicker-WeekNumber {
  display: table-cell;
  padding: 0.5em;
  min-width: 1em;
  border-right: 1px solid #EAECEC;
  color: #8B9898;
  vertical-align: middle;
  text-align: right;
  font-size: 0.75em;
  cursor: pointer;
}

.DayPicker--interactionDisabled .DayPicker-Day {
  cursor: default;
}

.DayPicker-Footer {
  padding-top: 0.5em;
}

.DayPicker-TodayButton {
  border: none;
  background-color: transparent;
  background-image: none;
  box-shadow: none;
  color: #4A90E2;
  font-size: 0.875em;
  cursor: pointer;
}

/* Default modifiers */

.DayPicker-Day--today {
  color: #D0021B;
  font-weight: 700;
}

.DayPicker-Day--outside {
  color: #8B9898;
  cursor: default;
}

.DayPicker-Day--disabled {
  color: #DCE0E0;
  cursor: default;
  /* background-color: #eff1f1; */
}

/* Example modifiers */

.DayPicker-Day--sunday {
  background-color: #F7F8F8;
}

.DayPicker-Day--sunday:not(.DayPicker-Day--today) {
  color: #DCE0E0;
}

.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside) {
  position: relative;

  background-color: #4A90E2;
  color: #F0F8FF;
}

.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside):hover {
  background-color: #51A0FA;
}

.DayPicker:not(.DayPicker--interactionDisabled)
  .DayPicker-Day:not(.DayPicker-Day--disabled):not(.DayPicker-Day--selected):not(.DayPicker-Day--outside):hover {
  background-color: #F0F8FF;
}

/* DayPickerInput */

.DayPickerInput {
  display: inline-block;
}

.DayPickerInput-OverlayWrapper {
  position: relative;
}

.DayPickerInput-Overlay {
  position: absolute;
  left: 0;
  z-index: 1;

  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.day-picker-input__wrapper {
  position: absolute;
  background: white;
  border-radius: 5px;
  border: 1px solid #d3d3d3;
  z-index: 1;
}

.day-picker-input__input {
  width: 110px;
}

.day-picker-offset .day-picker-input__wrapper {
  bottom: 215px;
}

.month-navigation-bar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 20px 0px 10px 0px;
}

.month-navigation-bar__button {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.month-navigation-bar__button.previous {
  position: relative;
  content: '';
  width: 25px;
  height: 25px;
  background-color: var(--primary-color);
  -webkit-mask: url(resource/arrow-left50c9631304706abfabdb.svg) no-repeat;
          mask: url(resource/arrow-left50c9631304706abfabdb.svg) no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-position: center;
          mask-position: center;
}
.month-navigation-bar__button.next {
  position: relative;
  content: '';
  width: 25px;
  height: 25px;
  background-color: var(--primary-color);
  -webkit-mask: url(resource/arrow-right443e9f1c19231306508e.svg) no-repeat;
          mask: url(resource/arrow-right443e9f1c19231306508e.svg) no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-position: center;
          mask-position: center;
}

.month-navigation-bar__caption {
  -ms-flex-item-align: center;
      align-self: center;
  text-align: center;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: bold;
  color: #424242;
  margin: 0 15px;
  width: 120px;
}

.day-picker-weekday {
  text-transform: capitalize;
  font-size: 14px;
  font-weight: bold;
  display: table-cell;
  text-align: center;
  padding: 15px;
}

.info-modal {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

.info-modal__header .modal__header {
  font-size: 18px;
  font-weight: bold;
  max-width: 700px;
  padding-top: 30px;
}

.info-modal__buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}

.info-modal__button {
  width: 200px;
  margin: 0 20px;
  font-weight: normal;
}

.info-modal__button:active {
  border: 2px solid #ffffff;
}

.saving-overlay {
  height: 100%;
  width: 100%;
  z-index: 5;
  top: 0;
  right: 0;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.404);
}

.saving-overlay__loader {
  top: 50%;
  height: 40px;
  width: 40px;
}

.day-picker .DayPicker-wrapper {
  background: #ffffff;
  outline: none;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.13);
  border-radius: 5px;
  height: 360px;
}

.day-picker .DayPicker-Caption {
  display: none;
}

.day-picker .DayPicker-Month {
  margin-top: unset;
  border-spacing: 5px;
  border-collapse: unset;
}

.day-picker .DayPicker-Day {
  outline: none;
  border-radius: 5px;
  padding: 6px 18px 15px 18px;
  position: relative;
  color: var(--primary-color);
  font-weight: bold;
}

.day-picker .DayPicker-Day--disabled {
  font-weight: unset;
  color: #b0bec5;
}

.day-picker .DayPicker-Day--selected {
  background: var(--primary-color) !important;
  color: #ffffff !important;
  font-weight: bold;
  padding: 5px 17px 14px 17px;
}

.day-picker .DayPicker-Day--highlighted:before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: rgb(62, 238, 76);
  left: calc(50% - 3px);
  bottom: 5px;
}

.day-picker .DayPicker-Day--highlighted.DayPicker-Day--selected:before {
  bottom: 4px;
}

.delete-health-diary-time-metric-button__icon {
  height: 30px;
  width: 30px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  text-align: center;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 13px;
  margin-left: 15px;
  padding: 0;
}
.delete-health-diary-time-metric-button__icon:after {
  content: '';
  width: 24px;
  height: 24px;
  display: block;
  background-color: var(--primary-color);
  -webkit-mask: url(resource/delete-blue0e539859fadbff43d204.svg) no-repeat center;
          mask: url(resource/delete-blue0e539859fadbff43d204.svg) no-repeat center;
  z-index: 100;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}

.add-health-diary-time-metric-button__icon {
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  width: 30px;
  margin-bottom: 13px;
  margin-left: 15px;
  padding: 0;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  text-align: center;
}

.add-health-diary-time-metric-button__icon::after {
  content: ' ';
  display: block;
  background-color: #fff;
  height: 2px;
  width: 20px;
  z-index: 9;
  border-radius: 4px;
}
.add-health-diary-time-metric-button__icon::before {
  position: absolute;
  content: ' ';
  display: block;
  background-color: #fff;
  width: 2px;
  height: 20px;
  z-index: 9;
  border-radius: 4px;
}

.add-health-diary-time-metric-field {
  margin-top: 5px;
  width: 90%;
}

.add-or-edit-metric-threshold-value-reminder-form-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  margin-top: 10px;
  width: 100%;
  margin-bottom: 10px;
}
.add-or-edit-metric-threshold-value-reminder-form-container input {
  height: 48px;
}

.add-or-edit-metric-threshold-value-reminder-form-container .dropdown__title {
  height: 48px;
  -ms-flex-pack: center;
      justify-content: center;
}
.add-or-edit-metric-threshold-value-reminder-form-container span {
  font-size: 16px;
  line-height: 27px;
}

.health-diary-notification-settings-modal > .modal-wrap {
  width: 464px;
  min-width: unset;
}

.health-diary-notification-settings-modal .modal-content.with-header {
  min-height: 250px;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}

.health-diary-notification-settings-modal__checkbox {
  margin-bottom: 10px;
}
.health-diary-notification-settings-modal__checkbox > .checkbox {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
}

.health-diary-notification-settings-modal__checkbox-label > span {
  font-size: 14px;
}

.health-diary-notification-settings-modal__control > .text {
  font-size: 16px;
  line-height: 27px;
  margin-bottom: 7px;
}

.health-diary-notification-settings-modal__control > .input {
  height: 48px;
  width: 100%;
}

.health-diary-notification-settings-modal__save-button {
  width: 400px;
  margin-top: 24px;
}

.health-diary-notification-settings-modal__save-button > .button {
  height: 48px;
  width: 200px;
}

.health-diary-notification-settings-modal__save-button > .button-with-loader__error {
  text-align: center;
  margin-top: 5px;
}

.health-diary-notification-settings-modal__label {
  line-height: 27px;
  font-size: 16px;
  color: #a7a7a7;
  margin-bottom: 10px;
}

.health-diary-notification-type > .day-picker.date-time-input__calendar {
  top: -200px;
}

.data-picker__wrapper {
  position: relative;
}

.data-picker__wrapper:before {
  position: absolute;
  content: '';
  width: 24px;
  height: 24px;
  right: 17px;
  bottom: 17px;
  display: block;
  background-color: var(--primary-color);
  -webkit-mask: url(resource/calendar-icon905e2845600f15dcfcc0.svg) no-repeat;
          mask: url(resource/calendar-icon905e2845600f15dcfcc0.svg) no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}

.health-diary-notification-settings-modal__monitoring-warning {
  max-width: 400px;
  word-break: break-word;
  text-align: center;
  -ms-flex-item-align: center;
      align-self: center;
  font-size: 13px;
  margin-top: 5px;
  color: #a7a7a7;
}

.monitoring-program-metrics {
  gap: 12px;
  padding: 0 15px 20px 15px;
}

.monitoring-program-metrics__metric {
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  border: 1px solid #d3d3d3;
  border-radius: 5px;
  padding: 0 10px;
  height: 40px;
}

.monitoring-program-metrics__metric_invalid {
  border: 1px solid #F50057;
}

.monitoring-program-metrics__metric_valid {
  border: 1px solid #42A5F5;
}

.monitoring-program-metrics__buttons {
  gap: 4px;
}

.monitoring-program-metrics__button,
.monitoring-program-metrics__trash-button {
  background: none !important;
  outline: none !important;
  box-shadow: none !important;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  justify-items: center;
}

.monitoring-program-metrics__button svg {
  width: 25px;
  height: 25px;
}

.monitoring-program-metrics__trash-button svg {
  width: 30px;
  height: 30px;
}

.monitoring-program-metrics__name {
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: unset !important;
  white-space: pre !important;
}

.monitoring-program-metrics__message {
  color: #a7a7a7;
  text-align: center;
}

.monitoring-program-modal .modal__wrap {
  padding: 20px;
  min-width: 400px;
}

.monitoring-program-modal .modal__header__text {
  font-size: 20px;
  color: var(--primary-text-color);
}

.monitoring-program-modal__content,
.monitoring-program-modal__settings,
.monitoring-program-modal__buttons {
  gap: 40px;
}

.monitoring-program-modal__content {
  -webkit-column-gap: 40px;
          column-gap: 40px;
  row-gap: 20px;
  margin-top: 5px;
  min-height: 300px;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.monitoring-program-modal__column {
  width: 350px;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  gap: 10px;
}

.monitoring-program-modal__title {
  font-size: 16px;
  color: var(--primary-text-color);
}

.monitoring-program-modal__control {
  width: 100%;
}

.monitoring-program-modal__metrics {
  max-height: 500px;
  padding: 4px;
  margin-top: 27px;
}

.monitoring-program-modal__add-metric {
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
  gap: 6px;
}

.monitoring-program-modal__add-metric-drop {
  -ms-flex-positive: 1;
      flex-grow: 1;
}

.monitoring-program-modal__add-metric-button {
  width: 80%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  vertical-align: middle;
  justify-items: center;
  background-color: var(--primary-secondary-color);
  border: none;
  height: 40px;
}

.monitoring-program-modal__buttons {
  -ms-flex-pack: center;
      justify-content: center;
}

.monitoring-program-modal__button {
  width: 200px;
  height: 40px;
  display: -ms-flexbox;
  display: flex;
}

.monitoring-program-modal__label {
  line-height: 27px;
  font-size: 12px;
  color: #a7a7a7;
  text-align: left;
  margin-top: 5px;
}

.monitoring-program-modal__text {
  width: 100%;
}

.monitoring-program-modal__error {
  -ms-flex-pack: center;
      justify-content: center;
}

.monitoring-program-modal__error-text {
  color: #d22c75;
}

.monitoring-program-modal__message {
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
  color: #a7a7a7;
}

.cancel-monitoring__buttons {
    margin-top: 15px;
    gap: 15px;
    -ms-flex-pack: end;
        justify-content: flex-end;
}

.cancel-monitoring__button {
    padding: 0 var(--button-border-radius);
}
.outgoing-call > .modal__wrap {
  background: unset;
  width: unset;
}

.outgoing-call__title {
  color: #ffffff;
  line-height: 42px;
}

.outgoing-call__participant-user-card {
  color: #d8d8d8;
  font-size: 30px;
  font-weight: bold;
  line-height: 34px;
  margin-top: 18px;
}

.outgoing-call__more-users-text {
  color: #d8d8d8;
  font-size: 26px;
  line-height: 30px;
  margin-top: 18px;
}

.outgoing-call__end-call-button {
  width: 94px;
  height: 94px;
  margin-top: 51px;
  border-radius: 100px;
  background-image: url(resource/end-call-icon4e3e8ce8e486fb0c0d30.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.outgoing-call__end-call-text {
  font-size: 16px;
  line-height: 27px;
  color: #ffffff;
  margin-top: 10px;
}

.group-chat-name-modal {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

.group-chat-name-modal__header {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  padding: 0 0 30px 0;
}

.group-chat-name-modal__buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 38px 0 18px 0;
}

.group-chat-modal__input__wrapper {
  position: relative;
  display: -ms-flexbox;
  display: flex;
}

.group-chat-modal__input__wrapper:after {
  position: absolute;
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  top: 10px;
  right: 10px;
  background-color: var(--primary-color);
  -webkit-mask: url(resource/search-icon23f4de90b27a1b6b52e8.svg) no-repeat center;
          mask: url(resource/search-icon23f4de90b27a1b6b52e8.svg) no-repeat center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.group-chat-modal__input {
  width: 100%;
}

.group-chat-name-modal__button {
  box-sizing: border-box;
  padding: 0 20px;
  height: 48px;
  -ms-flex-preferred-size: calc(50% - 10px);
      flex-basis: calc(50% - 10px);
}

.select-doctors-modal {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

.select-doctors-modal__header {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  padding: 0 0 30px;
}

.select-doctors-modal__doctor-item {
  display: -ms-flexbox;
  display: flex;
  width: 98%;
  -ms-flex-pack: justify;
      justify-content: space-between;
  height: 46px;
  -ms-flex-align: center;
      align-items: center;
  padding: 0 10px;
}

.select-doctors-modal__doctors-list {
  padding: 20px 0;
  height: 270px;
}

.select-doctors-modal__checkbox {
  background-color: #ffffff !important;
  border-radius: 50% !important;
}

.select-doctors-modal__checkbox.checked {
  background-color: var(--primary-color) !important;
  color: #ffffff;
}

.select-doctors-modal__buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.select-doctors-modal__button {
  height: 48px;
  -ms-flex-preferred-size: calc(50% - 10px);
      flex-basis: calc(50% - 10px);
}

.group-chat-modal__loader-or-empty {
  height: 270px;
  font-size: 18px;
}

.participants {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  padding: 0 0 30px;
  height: 380px;
}

.participants__header {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  padding: 0 0 30px 0;
}

.participants__doctor-list {
  height: 220px;
  padding: 20px 0;
}

.participants__doctor-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 100%;
  padding: 10px 20px;
}

.participants__doctor-item__button {
  font-size: 12px;
  color: #b0bec5;
}

.participants__doctor-item__button_user {
  font-size: 12px;
  color: #f50057;
}

.participants__doctor-item__green-text {
  font-size: 12px;
  color: #00c853;
}

.participants__red-button-container {
  margin-top: 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}

.participants__red-button {
  padding: 15px 30px;
}

.delete-chat-confirmation {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

.delete-chat-confirmation__header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 30px;
}

.delete-chat-confirmation__buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}

.delete-chat-confirmation__button {
  height: 40px;
  padding: 10px 30px;
  margin: 0 20px;
}

.side-modal.modal {
  background: unset;
}

.side-modal.modal > .modal__wrap {
  background-color: #fff;
  position: absolute;
  width: 376px;
  right: 0px;
  bottom: 25px;
  height: calc(100% - 107px - 25px);
  box-shadow: 0 0 39px 0 rgba(0, 0, 0, 0.19);
  border-radius: unset;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.side-modal .modal__content {
  padding: 39px;
  -ms-flex-align: unset;
      align-items: unset;
}

.side-modal__close-button {
  position: absolute;
  top: 40px;
  left: -18px;
  width: 36px;
  height: 36px;
  line-height: 16px;
  padding: 0;
}

.doctor-profile__name {
  font-size: 18px;
  line-height: 20px;
  font-weight: bold;
  max-width: 244px;
  margin-bottom: 21px;
}

.doctor-profile__label-and-value {
  margin-bottom: 13px;
}

.doctor-profile__logout-button {
  position: absolute;
  bottom: 31px;
  width: 229px;
  height: 48px;
  -ms-flex-item-align: center;
      align-self: center;
}

.select-doctor-modal__input {
  padding-right: 40px;
  width: 100%;
}

.select-doctor-modal__input-wrap {
  position: relative;
}

.select-doctor-modal__input-wrap::after {
  content: '';
  width: 16px;
  height: 16px;
  background-color: var(--primary-color);
  -webkit-mask: url(resource/search-icon23f4de90b27a1b6b52e8.svg) center no-repeat;
          mask: url(resource/search-icon23f4de90b27a1b6b52e8.svg) center no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  position: absolute;
  top: 12px;
  bottom: 12px;
  right: 12px;
}

.select-doctor-modal__header {
  text-align: center;
  height: 29px;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 31px;
}

.select-doctor-modal__loader,
.select-doctor-modal__doctors-list {
  height: 50vh;
}

.select-doctor-modal__doctors-list {
  padding: 20px 0;
}

.select-doctor-modal__loader {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}

.select-doctor-modal__loader > .loader-or-empty__empty {
  font-size: 26px;
  font-weight: bold;
}

.select-doctor-modal {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.select-doctor-modal__buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.select-doctor-modal__button {
  height: 48px;
  width: 230px;
  box-sizing: border-box;
  margin: 0 10px;
}

.select-doctors-modal__doctor-item.selected {
  background-color: var(--primary-color);
}

.select-doctors-modal__doctor-item.selected:hover {
  background-color: var(--primary-color);
}

.select-doctors-modal__doctor-item:hover {
  background-color: #eceff1;
  cursor: pointer;
}

.select-doctors-modal__doctor-item.selected > .text {
  color: #ffffff;
}

.confirmation-modal-with-schedule-date {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-direction: column;
      flex-direction: column;
}

.confirmation-modal-with-schedule-date__header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 30px;
}

.confirmation-modal-with-schedule-date__buttons {
  margin-top: 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}

.confirmation-modal-with-schedule-date__button {
  height: 40px;
  padding: 10px 30px;
  margin: 0 20px;
}
.confirmation-modal-with-schedule-date__error_text {
  max-width: 540px;
  margin-top: 10px;
}

.confirmation-modal-with-schedule-date__button-with-loader > .button-with-loader__button {
  height: 40px;
  width: 98px;
  -ms-flex-item-align: center;
      align-self: center;
}

.confirmation-modal-with-schedule-date__button:active {
  border: 2px solid #ffffff;
}

.date-time-input {
  width: 400px;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5px;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.date-time-input__input {
  width: 190px;
}

.date-time-input__input_wrapper {
  -ms-flex-direction: column;
      flex-direction: column;
  display: -ms-flexbox;
  display: flex;
}

.date-time-input__input_wrapper:before {
  position: absolute;
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  right: calc(50% + 20px);
  bottom: 96px;
  background-color: var(--primary-color);
  -webkit-mask: url(resource/calendar-icon905e2845600f15dcfcc0.svg) no-repeat center;
          mask: url(resource/calendar-icon905e2845600f15dcfcc0.svg) no-repeat center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}

.date-time-input__buttons {
  margin-top: 50px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.date-time-input__label {
  line-height: 27px;
  font-size: 12px;
  color: #a7a7a7;
}

.day-picker.date-time-input__calendar {
  position: absolute;
  z-index: 1;
  top: -41px;
  left: 190px;
}

.date-time-input__day-picker-input.day-picker-input__input {
  width: 100%;
  height: 40px;
}

.schedule-item-container {
  margin: 10px 5px;
  border-radius: 5px;
  padding: 10px 30px;
  box-shadow: 0 0 20px -5px rgba(111, 111, 132, 0.22);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  cursor: pointer;
}

.daily-schedule-item__text {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
  margin-left: 10px;
}

.schedule-item__title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.schedule-item__right-block {
  margin-left: 60px;
}

.schedule-item__text {
  margin-bottom: 10px;
}

.schedule-item__text.red {
  background-color: transparent;
  color: #f50057;
}

.schedule-item__text.green {
  background-color: transparent;
  color: #00c853;
}

.schedule-item__text.blue {
  background-color: transparent;
  color: var(--primary-color);
}

.schedule-item__text.light-grey {
  background-color: transparent;
  color: #90a4ae;
}

.expired-schedule-item-container > .schedule-item_time {
  color: orangered;
}

.my-schedule {
  width: 100%;
  min-width: 486px;
}

.my-schedule__list {
  height: 637px;
  width: 100%;
}

.my-schedule__title {
  padding: 0 10px;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 15px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}

.my-schedule__tab-buttons-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  margin-bottom: 15px;
}

.my-schedule__tab-button {
  width: 162px;
  height: 42px;
  background: #fff;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 16px;
  border-radius: unset;
}

.my-schedule__tab-button.left {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}

.my-schedule__tab-button.right {
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}

.my-schedule__tab-button.active {
  background: var(--primary-color);
  color: #fff;
}

.patient-search {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  height: 400px;
  width: 500px;
  position: relative;
}

.patient-search__title {
  font-size: 23px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 26px;
  -ms-flex-item-align: center;
      align-self: center;
}

.patient-search__button {
  height: 50px;
  width: 100px;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.patient-search__tooltip {
  font-size: 12px;
  color: #a7a7a7;
}

.patient-search__create-patient {
  cursor: pointer;
  color: var(--primary-color);
  text-decoration: underline;
  font-size: 12px;
}

.patient-search__bottom-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  position: absolute;
  bottom: 0;
}

.patient-search__combobox-wrap {
  position: relative;
}

.patient-search__loader {
  position: absolute;
  top: calc(50% - 8px);
  right: 16px;
  height: 16px;
  width: 16px;
}

.patient-search__loader > span {
  clip: rect(8px, 16px, 16px, 0);
}

.patient-search__empty-text {
  text-align: center;
  padding: 50px;
}

.patient-search__combobox-wrap input {
  font-size: 14px;
}

.input-with-error > .lable {
  font-size: 12px;
  color: #a7a7a7;
  line-height: 21px;
}

.input-with-error > .error {
  font-size: 12px;
  color: #f50057;
  line-height: 15px;
}

.input-with-error > .input {
  margin-top: 5px;
  margin-bottom: 5px;
}

.create-patient {
  width: 550px;
  height: 600px;
}

.create-patient__title {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.create-patient__input-container {
  width: 100%;
}
.create-patient__flex-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}

.create-patient__flex-item {
  width: calc(50% - 10px);
}

.create-patient__flex-item > .input {
  width: 100%;
}

.create-patient__flex-item,
.create-patient__input-container {
  padding: 5px 0;
}

.create-patient__buttons-container {
  padding: 5px;
  width: 95%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-top: 20px;
}

.create-patient__button {
  height: 48px;
  width: 156px;
}

.find-by-snils {
  width: 500px;
}

.create-patient__day-picker {
  width: 100%;
}

.create-patient .DayPickerInput {
  width: 100%;
}

.create-patient__input {
  width: 100%;
}

.create-patient__label {
  font-size: 12px;
  color: #a7a7a7;
  line-height: 21px;
}

.create-patient__error {
  margin-top: 10px;
  font-size: 12px;
  color: #f50057;
  text-align: center;
}

.profile-inputs-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.profile-inputs-row .input {
  width: 135px;
}

.profile-block__input {
  width: 100%;
  margin-bottom: 10px;
}

.add-patient-modal__title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 26px;
  text-align: center;
}

.add-patient-modal__input-container {
  width: 100%;
}

.add-patient-modal__label {
  margin-bottom: 7px;
}
.add-patient-modal__input {
  width: 100%;
  height: 92px;
}
.add-patient-modal__input > .input {
  width: 100%;
}

.add-patient-modal__input > .lable {
  color: black;
  font-size: 16;
}
.add-patient-modal__buttons-container {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  padding: 30px 5px;
}

.add-patient-modal__button {
  padding: 10px 25px;
}

.create-patient .scrollbar__track.horizontal {
  display: none;
}

.create-patient__content {
  width: 96%;
}

.create-patient__title {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
}

.create-patient__input-container {
  width: 100%;
}

.create-patient__input-container > .input {
  width: 100%;
}

.create-patient__flex-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}

.create-patient__flex-item {
  width: calc(50% - 10px);
}

.create-patient__flex-item > .input {
  width: 100%;
}

.create-patient__flex-item,
.create-patient__input-container {
  padding: 5px 0;
}

.create-patient__buttons-container {
  padding: 5px;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-top: 20px;
}

.create-patient__button {
  height: 48px;
  width: 156px;
}

.find-by-snils {
  width: 500px;
}

.create-patient__day-picker {
  width: 100%;
}

.create-patient .DayPickerInput {
  width: 100%;
}

.create-patient__input {
  width: 100%;
}

.create-patient__label {
  font-size: 12px;
  color: #a7a7a7;
  line-height: 21px;
}

.create-telemed-modal .slot-select__day-picker__wrap {
  padding: 0 20px 0 5px;
}

.telemed-form__header {
  font-size: 26px;
  text-align: center;
  -ms-flex-item-align: center;
      align-self: center;
  margin-bottom: 15px;
}

.telemed-form__first-appointment-column {
  width: 400px;
  max-width: 400px;
  margin-left: 15px;
}

.telemed-form__first-appointment-column.min {
  width: 260px;
}

.telemed-form__pay-method-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 100%;
}

.telemed-form__pay-method__selector-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

.telemed-form__label {
  font-size: 12px;
  color: #a7a7a7;
  line-height: 21px;
  margin: 5px 0;
}

.telemed-form__label-and-value {
  margin-top: 5px;
}

.telemed-form__pay-method-dropdown {
  width: 130px;
}

.telemed-form__consultation-formats-dropdown {
  width: 260px;
}

.telemed-form__appointment-types-dropdown {
  width: 130px;
}

.custom-appointment-comment__textarea-with-scrollbar {
  margin-top: 30px;
  height: 97px;
}

.custom-appointment-comment__textarea-with-scrollbar__wrap {
  margin-top: 30px;
  height: 97px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 7px 10px;
  border: 1px solid #d3d3d3;
  border-radius: 5px;
}

.custom-appointment-comment__textarea-with-scrollbar .textarea-with-scrollbar__scrollbar {
  max-height: 94px;
}

.custom-appointment-comment__textarea-with-scrollbar .textarea-with-scrollbar__textarea {
  min-height: 81px;
}

.telemed-form__dms-input > .input,
.telemed-form__dms-dropdown {
  width: 100%;
  min-width: 200px;
  padding-right: 5px;
}

.telemed-form__dms-input {
  width: 100%;
  min-width: 200px;
  padding-left: 5px;
}

.telemed-form__doctor-dropdown > .dropdown__content-wrap {
  max-height: 100px;
}

.telemed-form__create-appointment-button {
  height: 40px;
  margin-top: 20px;
  width: 100%;
}

.telemed-form__create-appointment-button > .button-with-loader__button {
  height: 48px;
  width: 200px;
  -ms-flex-item-align: center;
      align-self: center;
}

.telemed-form__slot-select {
  margin-left: 20px;
}

.telemed-form__slot-select > .slot-select__slot-list {
  max-height: 120px;
}

.error-message {
  padding: 5px 0;
  font-size: 12px;
  color: red;
}

.slot__wrap {
  position: relative;
}

.slot {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 104px;
  height: 46px;
  background: #e8f5fd;
  margin: 6px 3px 5px 4px;
  border-radius: 24px;
  border-style: none;
}

.slot__time,
.slot__timezone {
  color: var(--primary-color);
}

.slot__time {
  font-size: 16px;
  line-height: 21px;
}

.slot__timezone {
  font-size: 11px;
}

.slot:not(.clickable) {
  cursor: default;
}

.slot.clickable:not(.occupied):hover {
  box-shadow: 0 0 10px 0 var(--color-primary);
}

.slot.clickable:not(.occupied):active {
  background: #bbdefb;
}

.slot.selected {
  box-shadow: 0px 0px 5px 1px var(--color-primary);
  font-weight: bold;
}

.slot.old-selected {
  border: 2px solid var(--color-primary);
  background: #bbdefb;
}

.slot.occupied {
  background: #eceff1;
  color: #b0bec5;
  cursor: default;
}

.slot__remove-button {
  border-radius: 100%;
  color: #f50057;
  background: #fff;
  font-size: 15px;
  font-weight: bold;
  position: absolute;
  right: 0;
  top: 0;
  padding: 5px;
  line-height: 15px;
  border: none;
  width: 25px;
  height: 25px;
}

.slot-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.urgency-select__urgency-button {
  margin-right: 20px;
}

.slot-select__urgency-select {
  margin-bottom: 15px;
}

.slot-select__day-picker__wrap {
  position: relative;
}

.slot-select__loader-wrap {
  position: absolute;
  background-color: #ffffffad;
  width: 100%;
  height: 100%;
}

.slot-select__loader {
  margin: auto;
}

.slot-select__slot-list {
  margin: 10px 0px 20px;
  max-height: 230px;
}

.permission-form__control {
  width: 100%;
  margin-bottom: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.permission-form__header {
  font-size: 26px;
  text-align: center;
  -ms-flex-item-align: center;
      align-self: center;
  margin-bottom: 25px;
}
.permission-form__control__label {
  line-height: 27px;
  font-size: 12px;
  color: #a7a7a7;
}

.permission-form__control__label.permission-form__control__label::after {
  content: ' *';
  color: #d22c75;
  font-weight: normal;
}

.permission-form-control .day-picker-input__wrapper {
  right: 0;
}

.day-picker.date-time-input__calendar {
  position: absolute;
  z-index: 1;
  top: -20px;
  right: 0;
  left: auto;
  width: 410px;
}

.permission-form__control__day-picker-input.day-picker-input__input {
  width: 100%;
  margin-bottom: 10px;
}

.permission-form__button {
  margin-bottom: 90px;
}

.create-permission-modal {
  width: 510px;
  padding: 0 20px 0 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: start;
      align-items: flex-start;
  min-height: 170px;
}

.create-permission-modal .modal__header {
  padding: 0;
}

.comment-modal > .modal__wrap {
  max-width: 50%;
}

.certificate-dropdown-item {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 40px;
}

.certificate-dropdown-item__name {
  line-height: 21px;
}

.certificate-dropdown-item__issuer,
.certificate-dropdown-item__subject,
.certificate-dropdown-item__invalid {
  font-size: 12px;
  line-height: 18px;
}

.certificate-dropdown-item__invalid {
  color: #d22c75;
}

.certificate-selector {
  width: 100%;
}

.certificate-selector__dropdown {
  width: calc(100% - 16px - 10px); /* 100% - ширина лоадера - отступ от лоадера */
}

.certificate-selector__loader {
  width: 16px;
  height: 16px;
  margin-bottom: 13px;
}
.certificate-selector__loader > span {
  clip: rect(8px, 16px, 16px, 0);
}

.certificate-selector__error {
  margin-top: 10px;
  font-size: 12px;
  color: #d22c75;
}

.signature-tip {
  margin-bottom: 5px;
}

.signature-tip__number {
  min-width: 14px;
}

.signature-tip__text,
.signature-tip__url {
  font-size: 14px;
  line-height: 18px;
  margin-right: 3px;
}

.signature-tip-list__list-wrap {
  margin-top: 10px;
  padding-left: 15px;
}

.protocol-sending > .modal__wrap {
  width: 650px;
  min-width: unset;
}

.protocol-sending__certificate-selector {
  margin-top: 10px;
}

.protocol-sending__save-button {
  height: 40px;
  margin-top: 20px;
}

.protocol-sending__save-button > .button-with-loader__button {
  width: 250px;
}

.file-sign > .modal__wrap {
  width: 650px;
  min-width: unset;
}

.file-sign__certificate-selector {
  margin-top: 10px;
}

.file-sign__save-button {
  margin-top: 20px;
}

.file-sign__save-button > .button-with-loader__button {
  width: 250px;
}

.decline-consultation-modal__dropdown {
  width: 100%;
}

.decline-consultation-modal__buttons-container {
  padding-top: 20px;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.decline-consultation-modal__buttons-container .button {
  width: 100px;
  height: 45px;
}

.questionnaire-notification-settings-modal__checkbox {
  margin: 3px 0;
}

.questionnaire-notification-settings-modal__column {
  width: 450px;
  max-width: 800px;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 0 10%;
}

.questionnaire-notification-settings-modal__header {
  font-size: 17px;
  font-weight: bold;
  margin: 10px auto;
  color: #424242;
}

.questionnaire-notification-settings-modal__label {
  line-height: 12px;
  font-size: 12px;
  margin: 10px 0;
  color: #a7a7a7;
}

.questionnaire-notification-settings-modal__save-button {
  height: 40px;
  margin: 0 auto;
}

.close-consultation {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

.close-consultation__header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 30px;
}

.close-consultation__buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}

.close-consultation__button {
  padding: 10px 30px;
  margin: 0 20px;
  height: 48px;
}

.close-consultation__reason-input {
  height: 100px;
  margin-bottom: 30px;
}

.loader {
  border-style: solid;
  border-top-style: solid;
  border-radius: 50%;
  -webkit-animation: spin 1.5s linear infinite;
          animation: spin 1.5s linear infinite;
  margin: auto;
  border-color: var(--primary-color);
  border-top-color: white;
  position: unset;
  top: unset;
  left: unset;
  width: 32px;
  height: 32px;
  border-width: 8px;
  border-top-width: 8px;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.medium-loader {
  position: unset;
  top: unset;
  left: unset;
  width: 32px;
  height: 32px;
  border-width: 8px;
  border-top-width: 8px;
}

.blue-medium-loader {
  border-color: var(--primary-color);
  border-top-color: white;
}

.component-with-loader__component {
  position: relative;
}

.component-with-loader__loader {
  height: 20px;
  width: 20px;
  z-index: 2;
  position: absolute;
  top: 36px;
  right: 10px;
}

.editable-service-attachment {
  -ms-flex-align: center;
      align-items: center;
  min-height: 30px;
  margin: 2px 5px 2px 0px;
}

.editable-service-attachment.disabled {
  opacity: 0.5;
}

.editable-service-attachment__remove-button {
  border: none;
  padding: unset;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-weight: bold;
  color: #d22c75;
  margin-left: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.editable-service-attachment__remove-button:disabled {
  opacity: unset;
}

.editable-service-attachment-upload-button {
  display: -ms-flexbox;
  display: flex;
  height: 45px;
  width: 100%;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}

.editable-service-attachment-upload-button__text {
  padding: 10px 25px;
  color: #ffffff;
  background-image: url(resource/attach6abbddfd933556d9f7e8.svg);
  background-repeat: no-repeat;
  background-position: 0 center;
}

.editable-service-attachment-upload-button__input {
  display: none;
}

.attachment-list {
  width: 350px;
}

.attachment-list__scrollbar {
  margin-bottom: 15px;
  max-height: 150px;
}

.attachment-list__error {
  color: #f50057;
  margin: 5px auto;
}

.expandable-info {
  transition: all 0.3s ease-in-out;
  margin: 5px 0;
}

.expandable-info.open {
  max-height: 350px;
  opacity: 1;
}

.expandable-info.close {
  max-height: 0;
  opacity: 0;
  -webkit-transform: rotateX(90deg);
          transform: rotateX(90deg);
  -webkit-transform-origin: top;
      -ms-transform-origin: top;
          transform-origin: top;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.expandable-info__header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 10px 0;
  cursor: pointer;
  border-bottom: 1px solid rgb(201, 201, 201);
}

.expandable-info__arrow {
  -webkit-mask: url(resource/arrow-blue8fab1b1a8d99fc34180a.svg) no-repeat center;
          mask: url(resource/arrow-blue8fab1b1a8d99fc34180a.svg) no-repeat center;
  background-color: var(--primary-color);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  content: '';
  width: 15px;
  height: 15px;
  -ms-flex-item-align: center;
      align-self: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}

.expandable-info__arrow.close {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.expandable-info__arrow.open {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.expandable-info__mandatory::after {
  content: ' *';
  color: #d22c75;
  font-weight: normal;
}

.agreementIDSTooltlip{
    right: 220px;
    top: 13px;
}
.service-form__pill.service-form__pill--duplicate {
    background-color: #DC848480;
}

.chosen__duplicates-message {
    color: var(--alert-color-red);
}

.doctor-table__arrow:before {
    content: '';
    -webkit-transform: scaleX(-1);
        -ms-transform: scaleX(-1);
            transform: scaleX(-1);
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: var(--primary-color);
    -webkit-mask: url(resource/arrow-left-solidca43ed0c86db505f9526.svg) no-repeat center;
            mask: url(resource/arrow-left-solidca43ed0c86db505f9526.svg) no-repeat center;
    -webkit-mask-size: 100%;
            mask-size: 100%;
}

.doctor-table__button {
    position: absolute;
    right: 0;
    padding: 0 var(--button-border-radius);
    -ms-flex-direction: row;
        flex-direction: row;
    gap: 0.5em;
}

.doctor-table__header-row {
    position: relative;
    padding-bottom: 10px;
}

.slot__wrap {
  cursor: pointer;
  position: relative;
}

.slot {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 104px;
  height: 46px;
  background: #e8f5fd;
  margin: 6px 3px 5px 4px;
  border-radius: 24px;
  position: relative;
  border-style: none;
  cursor: pointer;
}

.slot__time,
.slot__timezone {
  color: var(--primary-color);
}

.slot__time {
  font-size: 16px;
  line-height: 21px;
}

.slot__timezone {
  font-size: 11px;
}

.slot:not(.clickable) {
  cursor: default;
}

.slot.clickable:not(.occupied):hover {
  box-shadow: 0 0 10px 0 var(--primary-color);
}

.slot.clickable:not(.occupied):active {
  background: #bbdefb;
}

.slot.selected {
  box-shadow: 0px 0px 5px 1px var(--primary-color);
  font-weight: bold;
}

.slot.old-selected {
  border: 2px solid var(--primary-color);
  background: var(--slot-color);
}

.slot.occupied {
  background: #eceff1;
  color: #b0bec5;
  cursor: default;
}

.slot-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.slot-select__urgency-select {
  margin-bottom: 15px;
}

.slot-select__day-picker__wrap {
  position: relative;
  padding: 10px;
}

.slot-select__loader-wrap {
  position: absolute;
  background-color: #ffffffad;
  width: 100%;
  height: 100%;
}

.slot-select__loader {
  margin: auto;
}

.slot-select__slot-list {
  margin: 10px 0 0 20px;
  min-width: 350px;
  max-height: 350px;
  min-height: 350px;
}

.service-form__urgent-time {
  max-width: 200px;
}

.slot-select__phones {
  -ms-flex-pack: center;
      justify-content: center;
}

.slot-select__urgency-text {
  margin: 25px 0 15px 10px;
  font-size: 14px;
}

.slot-select__phones-text {
  margin: 10px 0;
  font-size: 14px;
}


.custom-schedule-block__radio-with-label {
    margin-bottom: 8px;
}

.custom-schedule-block__exact-date-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    height: 40px;
    margin-bottom: 30px;
}
.custom-schedule-block__exact-date-wrap > .custom-schedule-block__calendar {
    display: -ms-flexbox;
    display: flex;
}

.custom-schedule-block__exact-date-wrap > .custom-schedule-block__calendar:after {
    position: relative;
    display: block;
    content: '';
    width: 28px;
    height: 28px;
    top: 6px;
    left: -35px;
    background: var(--primary-color);
    -webkit-mask: url(resource/calendar-icon905e2845600f15dcfcc0.svg) no-repeat center;
            mask: url(resource/calendar-icon905e2845600f15dcfcc0.svg) no-repeat center;
    -webkit-mask-size: 100%;
            mask-size: 100%;
}


.custom-schedule-block__checkbox-with-label {
    margin-bottom: 8px;
}


.service-form {
  font-size: 12px;
  font-weight: normal;
  padding: 0 20px;
}

.service-form .combo-box__content-wrap {
  position: absolute;
  z-index: 10;

  max-height: 125px;
}

.service-form__service-attachments {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.service-form__attachment-name {
  font-size: 12px;
}

.service-form__edit-attachments__button {
  width: 20px;
  height: 20px;
  padding: unset;
  position: absolute;
  margin-top: 4px;
  font-size: 14px;
  vertical-align: center;
  text-align: center;
}

.service-form__edit-attachments {
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.service-form__header {
  font-size: 20px;
  font-weight: bold;
  color: #424242;
  text-align: center;
  margin: 10px auto;
}

.service-form__scrollbar {
  min-width: 500px;
  overflow-x: hidden;
  overflow-y: hidden;
}

.service-form__scrollbar > .scrollbar__thumb,
.service-form__scrollbar > .scrollbar__track {
  opacity: 0;
}

.service-form__service-date {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.service-form__doctors {
  min-width: 80vw;
  max-width: 80vw;
  max-height: 90vh;
}

.service-form__user-info {
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.service-form__label {
  line-height: 27px;
  font-size: 12px;
  color: #a7a7a7;
  text-align: left;
  margin-top: 5px;
}

.service-form__patient-info__block__title {
  line-height: 27px;
  margin-top: 10px;
}

.service-form__checkbox {
  margin-top: 15px;
}

.service-form__attachments {
  width: 100%;
}

.service-form__attachments-scrollbar {
  margin-bottom: 15px;
  max-height: 60px;
}

.service-form__buttons {
  margin-top: 10px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.service-form__button {
  width: 150px;
}

.service-form__textarea {
  min-height: 100px;
  max-height: 100px;
}

.service-form__doctors__selected {
  width: 100%;
  margin-top: 20px;
}

.service-from__selected-doctor {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 10px 0;
}

.service-from__selected-doctor__field {
  margin-right: 30px;
}

.service-form__doctors__selected-container {
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.service-form__pill {
  border-radius: 15px;
  background-color: #dcf0ff;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 6px 12px;
  margin: 5px 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.service-form__pill-small {
  border-radius: 15px;
  background-color: #dcf0ff;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 6px 10px;
  margin: 3px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.service-form__pill-remove,
.service-form__pill-remove-small {
  margin-left: 5px;
  cursor: pointer;
}

.service-form__pill-remove-small {
  font-size: 14px;
}

.service-form__pill-remove:hover,
.service-form__pill-remove-small:hover {
  color: salmon;
}

.service-form__info__urgency {
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-top: 10px;
}

.service-form__info__urgency-button {
  max-width: 250px;
}

.service-form__date-time {
  margin-top: 5px;
  width: 62px;
  margin-left: 20px;
}

.service-form__info__date-time {
  margin: 5px auto;
}

@media (max-height: 750px) {
  .service-form__scrollbar {
    min-height: 500px;
  }
  .service-form__doctors .rt-td,
  .service-form__doctors .rt-resizable-header-content {
    font-size: 12px;
  }
  .service-form__doctors .rt-td {
    padding: 4px 5px;
  }
  .service-form__doctors__selected {
    margin-top: 0;
  }
  .service-from__selected-doctor {
    margin: 0;
  }
}

.concilium-participants__modal .modal__wrap .modal__header {
  padding: 0;
}

.concilium-participants__header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.concilium-participants__table {
  text-align: center;
  margin: 20px;
  border-collapse: collapse;
  border: 1px solid rgb(172, 172, 172);
}

.concilium-participants__table tbody tr:nth-child(odd) {
  background-color: #eaf3f3;
}
.concilium-participants__table tbody tr:nth-child(even) {
  background-color: white;
}

.concilium-participants__table td,
.concilium-participants__table tr,
.concilium-participants__table th {
  padding: 15px 14px;
  font-size: 14px;
  border: 1px solid #d9e4e6;
  color: #022441;
}

.concilium-participants__table td {
  position: relative;
}

.concilium-participants__table-header {
  font-weight: bold;
  background-color: white;
}

.concilium-participants__table-header tr,
.concilium-participants__table-header th {
  border-bottom: 1px solid #5f8ce0;
}

.concilium-participants__table-initiator tr,
.concilium-participants__table-initiator td {
  border-bottom: 1px solid #5f8ce0;
}

.concilium-participants__table-initiator td:first-of-type {
  border-left: 1px solid #5f8ce0;
}

.concilium-participants__table-initiator td:first-of-type::before {
  content: 'инициатор';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #5f8ce0;
  color: rgb(252, 252, 252);
  padding: 1px 6px;
  border-radius: 0 0 7px 0;
  font-size: 11px;
}

.concilium-participants__table-initiator td:last-of-type {
  border-right: 1px solid #5f8ce0;
}

@media (max-width: 1100px) {
  .concilium-participants__modal .modal__wrap {
    max-width: 100%;
  }
  .concilium-participants__table td,
  .concilium-participants__table th {
    padding: 10px;
    font-size: 10px;
  }
  .concilium-participants__table-initiator td:first-of-type::before {
    padding: 2px 6px;
    font-size: 7px;
  }
}
@media (max-width: 600px) {
  .concilium-participants__table td,
  .concilium-participants__table th {
    padding: 10px;
    font-size: 6px;
  }
  .concilium-participants__table-initiator td:first-of-type::before {
    font-size: 5px;
  }
}

.discussion-requests__modal .modal__wrap {
  width: 500px;
}

.discussion-requests__header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.discussion-requests__scroll {
  max-height: 600px;
}

.discussion-requests__request {
  width: 95%;
}

.discussion-requests__date {
  font-size: 16px;
  font-weight: bold;
}

.discussion-requests__service {
  width: 100%;
  border: 1px rgb(240, 240, 240) solid;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  padding: 15px 0;
  margin: 10px;
  box-shadow: 0 0 15px -5px rgba(111, 111, 132, 0.22);
  cursor: pointer;
}

.discussion-requests__service-time {
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
  text-align: center;
}

.discussion-requests__service-info {
  -ms-flex-preferred-size: 80%;
      flex-basis: 80%;
}

.discussion-requests__service-field,
.discussion-requests__service-topic {
  margin: 5px 0;
}

.discussion-requests__service-topic {
  font-weight: bold;
}

.cancel-discussion {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

.cancel-discussion__header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
}

.cancel-discussion__buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 20px;
}

.cancel-discussion__button {
  padding: 10px 30px;
  margin: 0 20px;
}

.consultant-note {
  -ms-flex-align: center;
      align-items: center;
}

.consultant-note__header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
}

.consultant-note__button {
  margin-top: 15px;
  width: 30%;
}

.continue-modal {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

.continue-modal__header .modal__header {
  font-size: 18px;
  font-weight: bold;
  max-width: 500px;
  padding-top: 30px;
}

.continue-modal__buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}

.continue-modal__button {
  padding: 10px 60px;
  margin: 0 20px;
  font-weight: normal;
}

.continue-modal__button:active {
  border: 2px solid #ffffff;
}

.decline-discussion__wrap .modal__wrap {
  width: 500px;
}

.decline-discussion__wrap .modal__header {
  padding: unset;
}

.decline-discussion__decision-button {
  height: 40px;
  width: 90%;
  margin: 10px;
}

.reshedule-request__button {
  width: 200px;
}

.comment-modal > .modal__wrap {
  max-width: 50%;
}

.close-tmk {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 100%;
  padding: 20px;
}

.close-tmk__header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 30px;
}

.close-tmk__buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
}

.close-tmk__button {
  padding: 10px 30px;
  margin: 0 20px;
  height: 45px;
}

.blue-button.close-tmk__button:disabled {
  background-color: var(--primary-color);
}

.close-tmk__reason-input {
  height: 100px;
  margin-bottom: 30px;
}

.fer-referal-clinic-card {
  padding: 10px 20px 15px;
  font-size: 16px;
  background: #ffffff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: start;
      align-items: flex-start;
  text-align: left;
  width: 380px;
  margin-bottom: 15px;
}

.selected {
  border: 1px solid #42a5f5;
}

.service-form {
  font-size: 12px;
  font-weight: normal;
  padding: 0 20px;
}

.service-form .combo-box__content-wrap {
  position: absolute;
  z-index: 10;
  max-height: 125px;
}

.service-form__service-attachments {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.service-form__attachment-name {
  font-size: 12px;
}

.service-form__edit-attachments__button {
  width: 20px;
  height: 20px;
  padding: unset;
  position: absolute;
  margin-top: 4px;
  font-size: 14px;
  vertical-align: center;
  text-align: center;
}

.service-form__edit-attachments {
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.service-form__header {
  font-size: 20px;
  font-weight: bold;
  color: #424242;
  text-align: center;
  margin: 10px auto;
}

.service-form__scrollbar {
  min-width: 500px;
  overflow-x: hidden;
  overflow-y: hidden;
}

.service-form__scrollbar > .scrollbar__thumb,
.service-form__scrollbar > .scrollbar__track {
  opacity: 0;
}

.service-form__service-date {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.service-form__doctors {
  min-width: 80vw;
  max-width: 80vw;
  max-height: 90vh;
}

.service-form__user-info {
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.service-form__label {
  line-height: 27px;
  font-size: 12px;
  color: #a7a7a7;
  text-align: left;
  margin-top: 5px;
}

.service-form__patient-info__block__title {
  line-height: 27px;
  margin-top: 10px;
}

.service-form__checkbox {
  margin-top: 15px;
}

.service-form__attachments {
  width: 100%;
}

.service-form__attachments-scrollbar {
  margin-bottom: 15px;
  max-height: 60px;
}

.service-form__buttons {
  margin-top: 10px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.service-form__button {
  width: 150px;
}

.service-form__textarea {
  min-height: 100px;
  max-height: 100px;
}

.service-form__doctors__selected {
  width: 100%;
  margin-top: 20px;
}

.service-from__selected-doctor {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 10px 0;
}

.service-from__selected-doctor__field {
  margin-right: 30px;
}

.service-form__doctors__selected-container {
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.service-form__pill {
  border-radius: 15px;
  background-color: #dcf0ff;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 6px 12px;
  margin: 5px 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.service-form__pill-small {
  border-radius: 15px;
  background-color: #dcf0ff;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 6px 10px;
  margin: 3px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.service-form__pill-remove,
.service-form__pill-remove-small {
  margin-left: 5px;
  cursor: pointer;
}

.service-form__pill-remove-small {
  font-size: 14px;
}

.service-form__pill-remove:hover,
.service-form__pill-remove-small:hover {
  color: salmon;
}

.service-form__info__urgency {
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-top: 10px;
}

.service-form__info__urgency-button {
  max-width: 250px;
}

.fer-form__slot-select {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

.clinic-additional-info-button {
  width: 120px;
  height: 40px;
}
.clinic-additional-info-buttons-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 10px;
}
.clinic-additional-info-clinic-wrapper {
  overflow: auto;
  max-height: 600px;
}
.clinic-additional-info-clinics-group {
  width: 400px;
  height: 376px;
  padding-top: 10px;
}
.clinic-additional-info-button {
  margin-right: 10px;
}

.fed-tmk-success {
  width: 550px;
  font-size: 18px;
  line-height: 22px;
  padding: 0 0 20px;
}

.fed-tmk-success-button {
  -ms-flex-item-align: end;
      align-self: end;
  width: 90px;
}

.quote-alert {
  line-height: 14px;
  font-size: 12px;
  color: #ef5397;
}

.clinic-additional-info-buttons-group-margin{
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  padding: 10px 10px 10px 0;
  margin-left: 410px;
}

.yes-no-modal {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

.yes-no-modal__header .modal__header {
  font-size: 18px;
  font-weight: bold;
  max-width: 585px;
  margin-bottom: 20px;
  padding: 0;
}
.yes-no-modal__header .modal__content {
  padding: 0;
}

.yes-no-modal__buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}

.yes-no-modal__button {
  padding: 10px 33px;
  margin: 0 10px;
  font-weight: normal;
}
.yes-no-modal__button:first-child {
  margin-left: 0;
}

.yes-no-modal__button:last-child {
  margin-right: 0;
}

.yes-no-modal__button:active {
  border: 2px solid #ffffff;
}

.trueconf-view {
  position: relative;
  width: 100%;
  height: 100%;
}

.trueconf-view__header {
  position: absolute;
  top: 0px;
  width: 100%;
  padding: 25px 0px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: center;
      justify-content: center;
  background: #333333;
}

.trueconf-view__hang-up-button {
  position: absolute;
  bottom: 0px;
  /* Центр - ширина половины всей панели управления ТруКонф */
  left: calc(50% - 144px);
  width: 48px;
  height: 48px;
  background: transparent;
  border-radius: unset;
  border: unset;
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.trueconf-view__hang-up-button:hover {
  background: hsla(0, 0%, 62%, 0.2);
}

.trueconf-view__hang-up-button.hidden:hover {
  background: transparent;
  cursor: none;
}

.jitsi-view {
  position: relative;
  width: 100%;
  height: 100%;
}

.blue-button {
  text-decoration: none;
  font-size: 16px;
  color: #ffffff;
  border-radius: 24px;
  background-color: var(--primary-color);
  border-style: none;
}

.blue-button:hover {
  box-shadow: 0 0 10px 0 var(--color-primary);
}

.blue-button:active {
  background-color: var(--surface-color);
}

.blue-button:disabled {
  background-color: #eceff1;
  color: #ffffff;
  border: none;
  box-shadow: none;
}

.vinteo-view {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 100000;
}

.vinteo-view__header {
  background-color: #202020;
  position: absolute;
  top: 0;
  width: 100%;
  padding: 25px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: center;
      justify-content: center;
  /*background: #333333;*/
}

.vinteo-view__hang-up-button {
  width: 200px;
  position: absolute;
  bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  height: 48px;
  border-radius: unset;
  border: unset;
  /*transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1),*/
  /*  background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1),*/
  /*  color 0.2s cubic-bezier(0.4, 0, 0.2, 1);*/
}

.vinteo-view__hang-up-button.hidden:hover {
  background: transparent;
  cursor: none;
}

.conference-area {
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.conference-area__conference-view-wrap {
  position: relative;
  width: 60%;
  height: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.conference-area__chat-area {
  padding: 25px 22px;
  width: 40%;
}

.conference-sidebar-header-content__wrap {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 20px;
}

.conference-sidebar-header-content__tab-buttons-wrap {
  margin-left: 10px;
  display: -ms-flexbox;
  display: flex;
}

.conference-sidebar-header-content__tab-button {
  width: 90px;
  height: 40px;
  background: #fff;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 16px;
  border-radius: unset;
}

.conference-sidebar-header-content__tab-button.left {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}

.conference-sidebar-header-content__tab-button.right {
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}

.conference-sidebar-header-content__tab-button.active {
  background: var(--primary-color);
  color: #fff;
}

.conference-sidebar-header-content__info {
  margin-left: 0;
  margin-right: auto;
}

.conference-sidebar__chat-area {
  height: calc(100% - 65px);
}

.conference-sidebar__wrap {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

.doctor-pay-method {
  padding-left: 15px;
  margin: 5px 0px;
  border-left: 1px solid #e1e1e1;
}

.doctor-pay-method__name {
  line-height: 21px;
}

.doctor-pay-method__appointment-type {
  padding-left: 10px;
  margin: 5px 0px;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.doctor-service {
  padding-left: 15px;
  margin: 5px 0px;
  border-left: 1px solid #e1e1e1;
}

.doctor-service__name {
  font-weight: bold;
  font-size: 14px;
  line-height: 21px;
}

.doctor-service__pay-methods > .wrap-with-label__label {
  line-height: 21px;
}

.doctor-specialization {
  border-left: 1px solid #e1e1e1;
  padding-left: 15px;
  margin: 5px 0px;
}

.doctor-specialization__name {
  font-weight: bold;
  line-height: 21px;
}

.doctor-specialization__position > .label-and-value__label {
  line-height: 21px;
}

.doctor-specialization__services > .wrap-with-label__label {
  line-height: 21px;
}

.doctor-clinic {
  width: 370px;
  margin: 10px;
  padding: 15px;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  box-shadow: 0 7px 9px -3px hsla(240, 9%, 48%, 0.16);
}

.doctor-clinic__name {
  font-weight: bold;
  line-height: 21px;
  margin-bottom: 5px;
}

.doctor-clinic__address {
  font-size: 14px;
}

.doctor-clinic__specializations {
  margin-top: 10px;
}

.doctor-clinic__specializations > .wrap-with-label__label {
  line-height: 21px;
}

.doctor-info {
  height: 100%;
  width: 60%;
  margin: auto;
  -ms-flex-align: start;
      align-items: flex-start;
}

.doctor-info__header {
  width: 100%;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 20px 0;
}

.doctor-info__header__text {
  font-weight: bold;
  font-size: 38px;
}

.doctor-info__content {
  width: 100%;
}

.doctor-info__column {
  margin-right: 80px;
}

.doctor-info__label-and-value {
  width: 300px;
  margin-bottom: 5px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.doctor-info__buttons-wrap {
  margin-top: 10px;
}

.doctor-info__button {
  width: 300px;
  height: 48px;
  margin-top: 10px;
}

.doctor-info__education__scrollbar {
  min-height: 27px;
  max-height: 97px;
  margin-bottom: 15px;
}

.doctor-info__education__scrollbar > .scrollbar__track.horizontal {
  height: 7px;
  border: none;
}

.doctor-info__education__scrollbar > .scrollbar__track.vertical {
  width: 7px;
  border: none;
}

.doctor-info__education__text {
  line-height: 27px;
  white-space: pre-wrap;
}

.doctor-info__avatar {
  margin-left: 30px;
  width: 100px;
  height: 100px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.go-back-link {
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  color: var(--primary-color);
  text-decoration: none;
  top: 38px;
  left: 80px;
  padding: 0 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.go-back-link:before {
  content: '';
  width: 16px;
  height: 16px;
  margin-right: 5px;
  display: block;
  background: var(--primary-color);
  -webkit-mask: url(resource/blue-arrow-leftd2090f210a978a8b5cbc.svg) no-repeat center;
          mask: url(resource/blue-arrow-leftd2090f210a978a8b5cbc.svg) no-repeat center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}

.editable-doctor {
  height: 100%;
  width: 70%;
  margin: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: start;
      align-items: flex-start;
}

.integration-chat-finder__error {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;

    -ms-flex-align: center;

        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    padding: 1rem;

    row-gap: 0.5rem;
}

.integration-chat-finder__home-button {
    margin-top: 0.5rem;
    padding: 0.375rem 0.75rem;
}

.main-frame {
  width: 100%;
  min-height: 100vh;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

.main-frame__content {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
}

.main-frame_go-back-link {
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  color: var(--primary-color);
  text-decoration: none;
  top: 38px;
  left: 80px;
  padding: 0 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.main-frame_go-back-link:before {
  content: '';
  width: 18px;
  height: 18px;
  display: block;
  margin-right: 5px;
  background: var(--primary-color);
  -webkit-mask: url(resource/blue-arrow-leftd2090f210a978a8b5cbc.svg) no-repeat, center;
          mask: url(resource/blue-arrow-leftd2090f210a978a8b5cbc.svg) no-repeat, center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
button {
  outline: none;
}

@font-face {
  font-family: 'Ubuntu';
  src: local('Ubuntu'), url(resource/ubuntu93436177d079783423bb.woff2) format('woff2'), url(resource/ubuntu820fd0c4fac40b3b60a7.woff) format('woff'), url(resource/ubuntu1f6b400c035efaa2a564.ttf) format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

:root {
  --button-small-height: 40px;
  --button-small-line-height: 20px;
  --button-default-height: 48px;
  --button-line-height: 1.5em;
  --button-font-size: 16px;
  --button-border-radius: 24px;
  --button-shadow: 0 0 10px 0;
  --outline-button-border-size: 2px;
  --service-shadow: 0 4px 20px 0;

  --primary-text-color: #424242;

  --alert-color-red: #f50057;

  --header-background-color: #fff;
  --header-border-color: #e1e1e1;
  --header-menu-user-card-text-color: #fff;
  --header-main-text-color: #4a4a4a;
  --header-covid-19-color: #db0000;

  --faq-background-color: #f9f9f9;

  --patient-main-background-color: #e8f5fd;
  --patient-footer-text-color: #fff;
  --patient-button-text-color: #fff;

  --feedback-title-color: #424242;
  --feedback-bacground-form-color: #eceff1;
}

body * {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html * {
  box-sizing: border-box;
  font-size: 16px;
  font-family: 'pt-sans-regular', Ubuntu, sans-serif;
}

.svg-primary-color {
  fill: var(--primary-color);
}

.textarea-with-scrollbar:hover {
  box-shadow: var(--button-shadow) var(--primary-color);
}

.textarea-with-scrollbar:focus {
  border-color: var(--primary-color) !important;
}

.textarea-with-scrollbar:focus-within {
  border: 1px solid var(--primary-color);
  box-shadow: 0 0 6px 0 var(--primary-color);
}

.external-link {
  color: var(--primary-color);
}

.combo-box-selected-item__deselect-button {
  background: var(--primary-color);
}

.ReactTable .-pagination .-btn {
  background: var(--primary-color);
}

.ReactTable .-pagination .-btn:not([disabled]):hover {
  border: 1px solid var(--primary-color);
  background: var(--primary-color);
  box-shadow: 0 0 6px 0 var(--base-button-hover-color);
}

.ReactTable.-highlight .rt-tbody .rt-tr:hover {
  background: var(--primary-color) !important;
}

.input:focus {
  border: 1px solid var(--primary-color);
  box-shadow: 0 0 6px 0 var(--service-shadow-color);
}

.radio.selected::after {
  background: var(--primary-color);
}

.checkbox.checked {
  color: var(--primary-color);
}

.dash-loader span::after {
  border: 3px solid var(--primary-color);
}

.scrollbar__track > .scrollbar__thumb {
  background-color: var(--primary-color);
}

.dropdown__title:before {
  border-top: 5px solid var(--primary-color);
}

.dropdown.open > .dropdown__title:before {
  border: 5px solid transparent;
  border-bottom: 5px solid var(--primary-color);
}

.modal__header__close-button {
  color: var(--primary-color);
}

.list-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  cursor: pointer;
  text-decoration: none;
  color: black;
}
.list-item:hover,
.list-item.selected,
.list-item.active {
  background: white;
  box-shadow: 0 4px 20px 0 var(--list-item-shadow-color);
}

@media screen and (max-width: 700px) {
  html * {
    font-size: 12px;
  }
}

.flex_jc_space-between {
  -ms-flex-pack: justify;
      justify-content: space-between;
}

:root {
  --primary-color: #42a5f5;
  --primary-secondary-color: #dbeefd;
  --surface-color: #1f95c0;

  --auth-text-color: #fff;
  --auth-default-text-color: #fff;

  --auth-button-bg-color: #eceff1;
  --auth-button-text-color: #42a5f5;
  --auth-button-shadow-color: #bdcad0;
  --auth-button-active-color: #e8f5fd;
  --auth-link-color: #fff;

  --feedback-button-bg-color: #42a5f5;
  --feedback-button-text-color: #fff;
  --feedback-button-active-color: #1f95c0;

  --agreement-button-bg-color: #eceff1;
  --agreement-button-text-color: #42a5f5;
  --agreement-button-shadow-color: #bdcad0;
  --agreement-button-active-color: #e8f5fd;

  --session-button-bg-color: #eceff1;
  --session-button-text-color: #42a5f5;
  --session-button-shadow-color: #bdcad0;
  --session-button-active-color: #e8f5fd;

  --list-item-shadow-color: rgba(40, 177, 227, 0.31);
  --service-shadow-color: rgba(40, 177, 227, 0.31);
  --patient-sidebar-shadow-color: rgba(40, 177, 227, 0.31);

  --avatar-edit-color: #1565c0;

  --slot-color: #bbdefb;

  --unread-notifications: #bbdefb;

  /*Base button*/
  --base-button-bg-color: #42a5f5;
  --base-button-text-color: #fff;
  --base-button-hover-color: #42a5f5;
  --base-button-active-color: #1565c0;
  --base-button-disabled-bg-color: #a1d2fa;
  --base-button-disabled-text-color: #eceff1;

  /*Base inverted button*/
  /*todo*/
  --base-button-inverted-bg-color: #eceff1;
  --base-button-inverted-text-color: #42a5f5;
  --base-button-inverted-hover-color: #bdcad0;
  --base-button-inverted-active-color: #e8f5fd;
  --base-button-inverted-disabled-bg-color: #eceff1;
  --base-button-inverted-disabled-text-color: #eceff1;

  /*Base outline button*/
  --outline-button-border-color: #42a5f5;
  --outline-button-bg-color: #fff;
  --outline-button-text-color: #42a5f5;
  --outline-button-hover-color: #bdcad0;
  --outline-button-active-color: #1565c0;
  --outline-button-disabled-bg-color: #eceff1;
  --outline-button-disabled-text-color: #a1d2fa;
}

