* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  outline: none;
}
.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: none;
  cursor: pointer;
  font-size: 16px;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: 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: -webkit-box;
  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-wrap: 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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -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: -webkit-box;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -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::-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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -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;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: start;
      -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;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: start;
      -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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;border:1px solid rgba(0,0,0,0.1);}.ReactTable *{box-sizing:border-box}.ReactTable .rt-table{-webkit-box-flex:1;-ms-flex:auto 1;flex:auto 1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;width:100%;border-collapse:collapse;overflow:auto}.ReactTable .rt-thead{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-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);-webkit-transition:box-shadow .3s cubic-bezier(.175,.885,.32,1.275);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{-webkit-box-flex:99999;-ms-flex:99999 1 auto;flex:99999 1 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-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{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.ReactTable .rt-tr{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.ReactTable .rt-th,.ReactTable .rt-td{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0;white-space:nowrap;text-overflow:ellipsis;padding:7px 5px;overflow:hidden;-webkit-transition:.3s ease;transition:.3s ease;-webkit-transition-property:width,min-width,padding,opacity;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);-webkit-transition:all .3s cubic-bezier(.175,.885,.32,1.275);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{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:stretch;-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;-moz-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);-webkit-transition:all .1s ease;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{-webkit-box-flex:1;-ms-flex:1;flex:1;text-align:center}.ReactTable .-pagination .-center{-webkit-box-flex:1.5;-ms-flex:1.5;flex:1.5;text-align:center;margin-bottom:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-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);-webkit-transition:all .3s ease;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);-webkit-transition:all .3s ease;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%);-webkit-transition:all .3s cubic-bezier(.25,.46,.45,.94);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{-webkit-transition:none !important;transition:none !important;cursor:col-resize;-webkit-user-select:none;-ms-user-select:none;user-select:none}
.table__loader {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
}

.table__loader__inner {
  width: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.ReactTable .-pagination .-btn {
  width: 110px;
  text-align: center;
}
.ReactTable .-pagination {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ReactTable .-pagination .-previous,
.ReactTable .-pagination .-center,
.ReactTable .-pagination .-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: 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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 20px 10px 20px;
  -webkit-box-pack: center;
      -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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -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;
  -webkit-box-align: center;
      -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;
  -webkit-transition: stroke-dashoffset 0.5s ease 0s;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -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: -webkit-box;
  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{
  -webkit-box-align: start;
      -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);
}
.auth-text {
  -ms-flex-item-align: start;
      align-self: flex-start;
  color: #ffffff;
  line-height: 27px;
}

.auth-page {
  height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #42a5f5;
}

.auth-page__wrap {
  max-width: 100%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.auth-text.auth-error {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
}
.auth-page__feedback {
  position: relative;
  text-align: left;
  text-decoration: underline;
  font-size: 14px;
  color: #fff;
  border: none;
  bottom: 10px;
}
.auth-link {
  color: #ffffff;
  text-decoration: underline;
  line-height: 27px;
}

.auth-button {
  width: 352px;
  height: 48px;
  margin: 37px 0 29px;
}


.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: 200px;
}

.confirm-phone__input-note {
  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;
}



.auth-button-link__button {
  width: 352px;
  height: 48px;
  margin: 37px 0 29px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: unset;
}

.auth-button-link__link {
  width: 100%;
  height: 100%;
  line-height: 48px;
  text-decoration: none;
  color: inherit;
}

.login__input-wrap {
  width: 416px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.login__password-label-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.login__agreement-links-wrap {
  margin-top: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.login__agreement-links-wrap .text,
.login__agreement-links-wrap .external-link {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 14px;
  white-space: pre;
  color: #ffffff;
  line-height: 21px;
}
.mobile-browser-warning {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: 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(d14c4841001c6a2ff594ad0ca2a4bcd3.png);
}

.mobile-browser-warning__android-link {
  background-image: url(3239b2e54cec79cf3587563764c8fdea.png);
}

.mobile-browser-warning__continue-button {
  position: absolute;
  bottom: 20px;
  font-size: 14px;
  color: #a7a7a7;
}

.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; 
  border-radius: 3px;
}

.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;
 }
.menu-item {
  color: #696969;
  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: #42a5f5;
   color: #ffffff;
}
.avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  background: #42a5f5;
  background-size: cover;
  background-position: center;
}

.avatar__edit {
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

.avatar__delete {
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  background: red;
  cursor: pointer;
  width: 27px;
}

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

.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: #ffffff;
}

.header__user-info__avatar {
  height: 44px;
  width: 44px;
  border-radius: 50%;
}

.header-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-tab-item {
  text-decoration: none;
  padding: 20px;
  color: #4a4a4a;
  display: inline-block;
  position: relative;
}

.header-tab-item:hover {
  color: #42a5f5;
}

.header-tab-item.active {
  color: #42a5f5;
  text-decoration: underline;
}

.header-tab-item.unread::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #f50057;
  position: absolute;
  top: 15px;
  right: 10px;
  border-radius: 100%;
}

.header-tab-item.covid-19 {
  color: #db0000;
}
.logo__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.logo {
  width: 200px;
  cursor: pointer;
}

.region-list-item {
  height: 40px;
  width: 100%;
  font-size: 16px;
  text-align: left;
  padding-left: 5px;
  border: none;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.region-list-item.selected {
  background-color: #e8f5fd;
}

.region-list-item:hover {
  background-color: #e8f5fd;
}

.region-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.region-list__scrollbar {
  min-height: 120px;
}

.region-list__input {
  width: 100%;
  height: 30px;
}

.region-list__empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 120px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.region-list__title {
  font-size: 17px;
  margin: 0 20px 5px;
}

.select-region-dropdown {
  position: absolute;
  z-index: 9999;
  top: 130%;
  left: calc(50% - 150px);
  width: 300px;
  border-radius: 3px;
  box-shadow: 0 4px 20px 0 rgba(40, 177, 227, 0.31);
  background-color: #ffffff;
  border-radius: 5px;
  padding: 10px;
}

.select-region-dropdown__region {
  position: relative;
  z-index: 9999;
  color: #42a5f5;
  font-size: 15px;
  margin: 0 20px 10px;
  cursor: default;
}

.select-region-dropdown__region::before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: -15px;
  display: block;
  border: 5px solid transparent;
  border-top: 5px solid #42a5f5;
}

.select-region-dropdown__button-container {
  padding-top: 10px;
}

.select-region-dropdown__button {
  padding: 10px 15px;
  margin: 0 auto;
}

.select-region-dropdown__selected-region {
  position: relative;
  z-index: 9999;
  color: #42a5f5;
  font-size: 15px;
  margin: 0 20px 10px;
  cursor: default;
}

.select-region-dropdown__selected-region::before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: -15px;
  display: block;
  border: 5px solid transparent;
  border-top: 5px solid #42a5f5;
}

.select-region__button {
  z-index: 9999;
  margin-top: 15px;
  color: #42a5f5;
  font-size: 15px;
  border: none;
  padding: 0;
  position: relative;
}

.select-region__button::before {
  content: '';
  position: absolute;
  top: calc(50% - 2px);
  right: -13px;
  display: block;
  border: 5px solid transparent;
  border-top: 5px solid #42a5f5;
}

.logo-and-region {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  min-width: 203px;
}
.horizontal-header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 104px;
  padding: 0 50px;
  border-bottom: 1px solid #e1e1e1;
  background-color: #fff;
}

.horizontal-header__login-button {
  width: 197px;
  height: 48px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 24px;
  background-color: #42a5f5;
  color: #ffffff;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .horizontal-header {
    padding: 0 10px;
  }

  .horizontal-header .header-tab-item {
    padding: 10px;
  }
}

@media screen and (max-width: 700px) {
  .horizontal-header {
    display: none;
  }
}
.vertical-header {
  display: none;
  padding: 10px;
  border-bottom: 1px solid #e1e1e1;
  background-color: #fff;
}

.vertical-header .logo__wrap {
  height: 60px;
}

.vertical-header .select-region__button {
  top: 35px;
}

.vertical-header .select-region-dropdown {
  top: 80px;
}

.vertical-header .header-menu {
  margin: 20px 10px 10px;
}

.vertical-header .header__user-info__button {
  height: 36px;
}

.vertical-header .menu-item {
  padding: 15px;
}

.vertical-header .header-tabs {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.vertical-header .header-tab-item {
  padding: 5px 10px;
}

.vertical-header__login-button {
  width: 197px;
  height: 36px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 24px;
  background-color: #42a5f5;
  color: #ffffff;
  text-align: center;
  margin: 20px 10px 10px;
}

.vertical-header__toggle-button {
  position: relative;
  font-weight: bold;
}
.vertical-header__toggle-button::after {
  content: "";
  position: absolute;
  right: -25px;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(b62b31f7ab47388aefa8a2ea236d19c4.png);
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.vertical-header__toggle-button.opened {
  margin: 20px 10px 5px;
}
.vertical-header__toggle-button.opened::after {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}

@media screen and (max-width: 700px) {
  .vertical-header {
    display: unset;
  }
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 104px;
  padding: 0 50px;
  border-bottom: 1px solid #e1e1e1;
  background-color: #fff;
}

.header__user-info__button {
  width: 197px;
  height: 48px;
  padding: unset;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.header__user-info__button.active {
  background-color: #1565c0;
  box-shadow: none;
}

.header__user-info__button__unauthorized {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 197px;
  height: 48px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 24px;
  background-color: #42a5f5;
  color: #ffffff;
  text-align: center;
}

.header__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #42a5f5;
  font-size: 20px;
  height: 100%;
}

.weekday {
  font-size: 14px;
  width: 110px;
  height: 20px;
  margin: 5px 10px 0 0;
  padding: 1px;
  border: 1px solid #696969;
}

.weekday.selected {
  font-weight: bold;
  border: 1px solid #42a5f5;
}

.weekdays {
  height: 105px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.time-period-control {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.time-period-control__input-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.time-period-control__label {
  margin-right: 5px;
}

.time-period-control__input {
  width: 65px;
  height: 30px;
}

.date-period-control {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.date-period-control__input-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.date-period-control__label {
  margin-right: 5px;
}

.date-period-control__day-picker-input.day-picker-input__input {
  height: 30px;
}

/* DayPicker styles */

.DayPicker {
  display: inline-block;
  font-size: 1rem;
}

.DayPicker-wrapper {
  position: relative;

  -webkit-box-orient: horizontal;

  -webkit-box-direction: normal;

      -ms-flex-direction: row;

          flex-direction: row;
  padding-bottom: 1em;

  -webkit-user-select: none;

      -ms-user-select: none;

          user-select: none;
}

.DayPicker-Months {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -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;
}

.day-picker-input__input {
  width: 110px;
}

.month-navigation-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 0px 10px 0px;
}

.month-navigation-bar__button {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 5px;
  width: 29px;
  color: #42a5f5;
  height: auto;
  border: none;
  background-repeat: no-repeat;
  background-size: contain;
}
.month-navigation-bar__button.previous {
  background-image: url(93b87e0702ab3539ac4addf1d3a2ddeb.svg);
}
.month-navigation-bar__button.next {
  background-image: url(0162fddde1c942fdaba91f41ae490207.svg);
}

.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;
}

.waitlist-modal .modal-wrap {
  width: 570px;
}

.modal-content.waitlist-modal {
  height: 570px;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
  padding: 10px 45px 20px 45px;
}

.waitlist-modal__info-block,
.waitlist-modal__schedule-section,
.waitlist-modal__phone-wrap {
  margin-bottom: 15px;
}

.waitlist-modal__label {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 3px;
}

.waitlist-modal__schedule-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.waitlist-modal__radio-with-label {
  margin-top: 10px;
}

.waitlist-modal__submit-button {
  -ms-flex-item-align: center;
      align-self: center;
  height: 35px;
  width: 250px;
}

.waitlist-modal__phone-input {
  margin-top: 10px;
  height: 30px;
  width: 180px;
}

.waitlist-modal__schedule-section__options {
  width: 200px;
}

.waitlist-modal__schedule-section__control-wrap {
  margin-left: 50px;
  height: 100%;
}

.modal.cancel-service > .modal-wrap {
  width: 400px;
}

.cancel-service__text {
  margin-bottom: 20px;
}

.cancel-service__button-wrap {
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cancel-service__button, .cancel-service__button .button-with-loader__button{
  width: 100px;
  height: 48px;
  margin: 0px 15px;
}

.cancel-service__cancellation-text {
  margin-top: 10px;
  font-size: 12px;
  color: #a7a7a7;
  line-height: 21px;
}

.login-modal > .modal__wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.login-modal > .modal__content {
  width: 630px;
}

.login-modal__note {
  margin-bottom: 5px;
}

.login-modal__button {
  margin: 10px;
  width: 260px;
}

.login-modal__button > .button {
  height: inherit;
  width: inherit;
}

.login-modal__footer-wrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.login-modal__text,
.login-modal__external-link {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 14px;
  white-space: pre;
  line-height: 21px;
}

@media screen and (max-width: 700px) {
  .login-modal__button {
    width: 230px;
  }
}
.modal-header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 10px 20px;
  -webkit-box-pack: center;
      -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 {
  color: #42a5f5;
  font-weight: bold;
  position: absolute;
  top: 3px;
  right: 8px;
  font-size: 22px;
  font-weight: bold;
}

.transparent-blue-button {
    padding: 10px;
    font-size: 16px;
    color:  #42a5f5;
    display: inline-block;
    border: 2px solid #42a5f5;
    border-radius: 24px;
}

.transparent-blue-button:hover {
    box-shadow: 0 0 10px 0 #42a5f5;  
}

.transparent-blue-button:active {
    border: 2px solid #1f95c0;
    box-shadow: none;  
}

.transparent-blue-button:disabled {
    background-color: #e1f5fe;
    color: #ffffff;
    border: none;
    box-shadow: none;
}
.confirm-appointment {
    padding: 40px;
}

.confirm-appointment__text {
    padding-left: 10px;
    -ms-flex-item-align: start;
        align-self: flex-start;
}

.confirm-appointment__dropdown {
   -ms-flex-item-align: start;
       align-self: flex-start;
   margin-left: 10px;
   width: 80%; 
}

.confirm-appointment__text.label {
    font-size: 12px;
    color: #a7a7a7;
    margin: 10px 0 5px;
}

.confirm-appointment__button {
    margin-top: 30px;
    padding: 15px 40px;
}
.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;
  }
}
.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 51px;
}

.incoming-call__button-wrap {
  width: 94px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -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(71a747e445afc0e68df4ee51742c76dd.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.incoming-call__button.decline {
  background-image: url(4d8d96cb16fcbba06db26a958d9992ef.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.avatar-big-size__close-button {
  width: 148px;
  height: 48px;
  padding: 15px 0;
}

.modal.avatar-big-size > .modal-wrap {
  width: 450px;
}

.avatar-wrong-type__close-button {
  width: 148px;
  height: 48px;
  padding: 15px 0;
}

.modal.avatar-wrong-type > .modal-wrap {
  width: 450px;
}

.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;
}

.modal.new-dms-input > .modal-wrap {
  width: 600px;
}

.new-dms-input__text {
  margin-bottom: 20px;
}

.new-dms-input__button-wrap {
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.new-dms-input__button {
  width: 100px;
  height: 48px;
  margin: 0px 15px;
}

.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;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.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: 48px;
  width: 400px;
}

.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-record-modal > .modal-wrap {
  width: 464px;
}

.add-or-edit-health-diary-record-modal__control {
  width: 100%;
  margin-bottom: 24px;
}

.add-or-edit-health-diary-record-modal__save-button {
  width: 400px;
}

.add-or-edit-health-diary-record-modal__save-button
  > .button-with-loader__button {
  width: 400px;
  height: 48px;
}

.add-or-edit-health-diary-record-modal__save-button
  > .button-with-loader__button
  > .button-with-loader__loader
  > span::after {
  border: 3px solid #fff;
}

.add-or-edit-health-diary-record-modal__save-button
  > .button-with-loader__error {
  text-align: center;
  margin-top: 5px;
}


.add-or-edit-health-diary-record-modal__label {
  line-height: 27px;
  font-size: 12px;
  color: #a7a7a7;
}

.day-picker.date-time-input__calendar{
  position: absolute;
  z-index: 1;
  left: 150px;
}

.add-or-edit-health-diary-record-modal__day-picker-input.day-picker-input__input {
  width: 100%;
  height: 40px;
  background-image: url(7859c434f078426d25ca541c021ad872.svg);
  background-repeat: no-repeat;
  background-position: 97%;
}
.modal.delete-health-diary-record-modal > .modal-wrap {
  width: 400px;
}

.delete-health-diary-record-modal__text {
  margin-bottom: 20px;
}

.delete-health-diary-record-modal__button-wrap {
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.delete-health-diary-record-modal__button, .delete-health-diary-record-modal__button .button-with-loader__button {
  width: 100px;
  height: 48px;
  margin: 0px 15px;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100vw;
  height: 100%;
  background-color: rgba(88, 106, 141, 0.9);
}

.modal-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 30%;
  background-color: #fff;
  border-radius: 4px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.modal-content {
  padding: 20px;
  min-height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal-content.with-header {
  padding: 10px 20px 20px 20px;
  min-height: calc(100% - 52px);
}

.warning-clinic__close-button {
  width: 180px;
  height: 48px;
  padding: 15px 0;
}

.modal.warning-clinic > .modal-wrap {
  width: 450px;
}
.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -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: #42a5f5;
}

.star {
  padding: 0;
  font-size: 50px;
  line-height: 1;
  color: lightgrey;
  cursor: pointer;
}

.star:before {
  content: '★';
}

.star.active {
  color: gold;
}

.rating-item {
  padding: 5px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.rating-item__text {
  margin-right: 40px;
}

.rating {
  width: 100%;
}

.service-review__text {
  font-weight: bold;
}

.service-review__textarea-with-scrollbar {
  width: 100%;
  height: 97px;
  margin-bottom: 15px;
}

.service-review__textarea-with-scrollbar .textarea-with-scrollbar__textarea {
  min-height: 81px;
}

.service-review__textarea-with-scrollbar > .textarea-with-scrollbar__scrollbar {
  height: 90px !important;
}

.add-or-edit-metric-threshold-value-modal > .modal-wrap {
  width: 464px;
}

.add-or-edit-metric-threshold-value-modal .modal-content.with-header {
  min-height: 250px;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.add-or-edit-metric-threshold-value-modal__metric-type__label,
.add-or-edit-metric-threshold-value-modal__input-with-label > .text {
  font-size: 16px;
  line-height: 27px;
  margin-bottom: 7px;
}

.add-or-edit-metric-threshold-value-modal__input-with-label .input,
.add-or-edit-metric-threshold-value-modal__metric-type__dropdown {
  height: 48px;
  width: 400px;
}

.add-or-edit-metric-threshold-value-modal__save-button {
  width: 400px;
  margin-top: 24px;
}

.add-or-edit-metric-threshold-value-modal__save-button > .button {
  height: 48px;
  width: 400px;
}

.add-or-edit-metric-threshold-value-modal__save-button
  > .button-with-loader__error {
  text-align: center;
  margin-top: 5px;
}
.delete-health-diary-time-metric-button__icon {
  height: 24px;
  width: 24px;
  margin-bottom: 13px;
  margin-left: 15px;
  padding: 0;
  background-image: url(da6cb6fbe3601c8d271fdba2935d5e0d.svg);
  background-size: cover;
}

.add-health-diary-time-metric-button__icon {
  height: 24px;
  width: 24px;
  margin-bottom: 13px;
  margin-left: 15px;
  padding: 0;
  background-image: url(8fe902d5c961a721bb39ad43f5d2c001.svg);
  background-size: cover;
}
  
.add-health-diary-time-metric-field {
  margin-top: 5px;
  width: 90%;
}
.add-or-edit-metric-threshold-value-reminder-form-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.add-or-edit-metric-threshold-value-reminder-form-container span {
    font-size: 16px;
    line-height: 27px;
}
.add-or-edit-metric-threshold-value-selectable-title {
    margin-top: 10px;
    font-size: 16px;
}

.add-or-edit-metric-threshold-value-selectable-help-text {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 576px;
}
.add-or-edit-metric-threshold-value-selectable-help-text h6 {
    font-size: 10px;
    color: rgb(156, 156, 211)
}

.add-or-edit-metric-threshold-value-modal__input-with-label input.input {
    width: 535px
}
.service-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0px 120px 66px 120px;
  margin: auto;
}

.service-info__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.service-info__note {
  font-size: 14px;
  line-height: 20px;
  color: #42a5f5;
  margin-bottom: 10px;
  white-space: pre;
}

.service-info__content {
  padding: 0px 40px;
}

.service-info__header {
  margin: 28px 0px 20px 0px;
}

.service-info > .label-and-value {
  margin-top: 12px;
}

.service-info__buttons-wrap {
  margin-top: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.service-info__button {
  width: 256px;
  height: 48px;
  margin-right: 12px;
  text-align: center;
  line-height: 46px;
  border-radius: 26px;
  text-decoration: none;
}

.service-info__status .label-and-value__value {
  background-repeat: no-repeat;
}

.service-info__status.approved .label-and-value__value,
.service-info__status.declined .label-and-value__value {
  padding: 0 20px;
}

.service-info__status.approved .label-and-value__value {
  color: #00c853;
  background-position: 0 5px;
  background-size: 16px 16px;
  background-image: url(0725591bf90a603981948aea0cd99f6a.svg);
}

.service-info__status.declined .label-and-value__value {
  color: #f50057;
  background-size: 25px 25px;
  background-position: -5px 0;
  background-image: url(327df7745090ac4db5ea6f65c9a84716.svg);
}

.service-info__map-wrap {
  margin-top: 80px;
  width: 50%;
  height: 510px;
}

.service-info__go-back-button {
  font-size: 16px;
}

.service-info__go-back-link {
  margin-top: 30px;
  display: block;
  text-decoration: none;
  color: #42a5f5;
  background-image: url(1b7d057d202a90fdf4fce5dc2d7434f2.svg);
  background-repeat: no-repeat;
  background-size: 25px 17px;
  background-position: 0 center;
  padding: 0 30px;
}

.service-info__text-content {
  max-width: 45%;
}

.service-info__label {
  line-height: 27px;
  font-size: 12px;
  color: #a7a7a7;
}

.map__container {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}

.on-map-block {
  position: absolute;
  bottom: 50px;
  padding: 10px 30px 30px;
  border-radius: 5px;
  box-shadow: 0 4px 20px 0 rgba(111, 111, 132, 0.22);
  background-color: #ffffff;
  left: 40px;
  right: 40px;
}

.on-map-block__modal-header {
  color: #42a5f5;
}

.on-map-block__buttons__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.on-map-block__button {
  padding: 10px 30px;
  margin: 5px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 260px;
}

.on-map-block__name {
  font-size: 18px;
  font-weight: bold;
  margin: 5px 0;
}

.on-map-block__address {
  margin: 10px 0;
}

.marker {
  background-color: #42a5f5;
  height: 30px;
  width: 30px;
  border-radius: 0 100% 100% 100%;
  -webkit-transform: rotateZ(225deg);
      -ms-transform: rotate(225deg);
          transform: rotateZ(225deg);
}

.marker.selected {
  background-color: #01579b;
  box-shadow: 0 0 12px 0 #42a5f5;
}

ymaps {
  white-space: pre;
  line-height: 21px;
}

.map__container {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}

.on-map-block {
  position: absolute;
  bottom: 50px;
  padding: 10px 30px 30px;
  border-radius: 5px;
  box-shadow: 0 4px 20px 0 rgba(111, 111, 132, 0.22);
  background-color: #ffffff;
  left: 40px;
  right: 40px;
}

.on-map-block__modal-header {
  color: #42a5f5;
}

.on-map-block__buttons__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.on-map-block__button {
  padding: 10px 30px;
  margin: 5px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 260px;
}

.on-map-block__name {
  font-size: 18px;
  font-weight: bold;
  margin: 5px 0;
}

.on-map-block__address {
  margin: 10px 0;
}

.marker {
  background-color: #42a5f5;
  height: 30px;
  width: 30px;
  border-radius: 0 100% 100% 100%;
  -webkit-transform: rotateZ(225deg);
      -ms-transform: rotate(225deg);
          transform: rotateZ(225deg);
}

.marker.selected {
  background-color: #01579b;
  box-shadow: 0 0 12px 0 #42a5f5;
}

ymaps {
  white-space: pre;
  line-height: 21px;
}

.file-attachment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.file-attachment__progressbar,
.file-attachment__icon {
  width: 30px;
  height: 30px;
  padding: 5px;
  background: #42a5f5;
  border-radius: 5px;
}

.file-attachment__icon {
  background-image: url(f4ea8def70cf39ec9f8fef5e7ba07e9f.svg);
  background-repeat: no-repeat;
  background-position: 5px;
  cursor: pointer;
}

.file-attachment__progressbar {
  position: relative;
}

.file-attachment__progressbar__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__name {
  margin-left: 10px;
  color: #42a5f5;
  font-size: 16px;
  line-height: 27px;
  cursor: pointer;
}

.service-status {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0 20px;
  width: 100%;
  height: 48px;
  top: -27px;
  border-radius: 5px 5px 0 0;
  color: #ffffff;
}

.service-status__bottom-block {
  position: absolute;
  height: 32px;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 5px 0 0 0;
}

.service-status__top-block {
  position: absolute;
  height: 30px;
  width: 245px;
  right: 0;
  top: 0;
  border-radius: 30px 5px 0 0;
}

.service-status__bottom-block::before {
  content: "";
  display: block;
  position: absolute;
  height: 17px;
  width: 17px;
  background-color: #fff;
  top: 15px;
}

.service-status__bottom-block::after {
  content: "";
  display: block;
  position: absolute;
  height: 17px;
  width: 17px;
  top: 15px;
  border-radius: 5px 0 0 0;
}

.service-status::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 31px;
  width: 114px;
  background-color: #fff;
  border-radius: 0 0 30px 0;
  z-index: 2;
}

.service-status__text {
  position: absolute;
  padding: 10px 0 10px 30px;
  background-repeat: no-repeat;
  background-position: center left;
  max-width: 210px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #ffffff;
}

.service-status.red > .service-status__top-block,
.service-status.red > .service-status__bottom-block,
.service-status.red > .service-status__bottom-block::after {
  background-color: #f50057;
}

.service-status.green > .service-status__top-block,
.service-status.green > .service-status__bottom-block,
.service-status.green > .service-status__bottom-block::after {
  background-color: #00c853;
}

.service-status.blue > .service-status__top-block,
.service-status.blue > .service-status__bottom-block,
.service-status.blue > .service-status__bottom-block::after {
  background-color: #42a5f5;
}

.service-status.grey > .service-status__top-block,
.service-status.grey > .service-status__bottom-block,
.service-status.grey > .service-status__bottom-block::after {
  background-color: #90a4ae;
}

.service-status.red > .service-status__text {
  background-image: url(465ae15ffca3e394fb117eba21cd8742.svg);
  background-size: 25px 25px;
}

.service-status.green > .service-status__text {
  background-image: url(d17b03ca6bb65829d9ee111723a8020e.svg);
  background-size: 15px 15px;
}

.service-status__empty {
  position: absolute;
  width: 100%;
  height: 21px;
  border-radius: 5px 5px 0 0;
  background-color: #00c853;
}

@media screen and (max-width: 430px) {
  .service-status::before,
  .service-status__top-block,
  .service-status__bottom-block,
  .service-status__bottom-block::after {
    display: none;
  }

  .service-status.red {
    background-color: #f50057;
  }

  .service-status.green {
    background-color: #00c853;
  }

  .service-status.blue {
    background-color: #42a5f5;
  }

  .service-status.grey {
    background-color: #90a4ae;
  }
}

.service-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  -ms-flex-preferred-size: 352px;
      flex-basis: 352px;
  height: 358px;
  cursor: pointer;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.13);
  margin: 0 16px 56px;
  background-repeat: no-repeat;
  background-position: 30px 38px;
  background-size: 50px 40px;
}

.service-list-item.appointment {
  background-image: url(7a887be1b2d5e10fdd5d6c60ec025858.svg);
}

.service-list-item.doctor-request {
  background-image: url(dba0a72e72a9e5be70f5303daafd281f.svg);
}

.service-list-item.examination {
  background-image: url(b5a8b915bf062fab58469c6114fac919.svg);
}

.service-list-item.waitlist {
  background-image: url(3e98ed916dadb8f67edb141460d79b6b.svg);
}

.service-list-item.telemed {
  background-image: url(c66c7d5e5c9ecdcd89f41c97800ab498.svg);
}

.service-list-item.prescription {
  background-image: url(c66c7d5e5c9ecdcd89f41c97800ab498.svg);
}

.service-list-item.ambulance {
  background-image: url(9b2b09340297eadb144b9a61280075f8.svg);
}

.service-list-item__bottom-block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #eceff1;
  padding: 10px 30px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-radius: 0 0 5px 5px;
}

.service-list-item__bottom-block__bold {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
  color: #424244;
}

.service-list-item__top-block__date {
  padding: 48px 30px 0 0;
  margin-left: auto;
  text-align: right;
  max-width: 260px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service-list-item__top-block__name {
  padding: 30px 30px 0;
  font-size: 26px;
  font-weight: bold;
  color: #424244;
}

.service-list-item__top-block__patient {
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  color: #424244;
}

@media screen and (max-width: 430px) {
  .service-list-item {
    background-image: none !important;
  }

  .service-list-item__top-block__date {
    margin-left: 30px;
    text-align: left;
    max-width: 100%;
  }

  .service-list-item__top-block__name {
    padding: 15px 30px 0;
    font-size: 21px;
  }

  .service-list-item__top-block__patient {
    padding: 15px 30px;
    font-size: 16px;
  }
}

.service-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 70%;
  margin: auto;
  padding: 50px 0 0;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

@media screen and (max-width: 1366px) {
  .service-list {
    width: 80%;
  }
}

@media screen and (max-width: 1024px) {
  .service-list {
    width: 90%;
  }
}
.service-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-right: 32px;
  margin-bottom: 32px;
  text-decoration: none;
  height: 183px;
  width: 256px;
  border-radius: 5px;
  box-shadow: 0 4px 20px 0 rgba(111, 111, 132, 0.22);
  background-color: #42a5f5;
  background-repeat: no-repeat;
  background-position: 40px 40px;
  background-size: auto 43px;
  padding: 40px;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
}

.service-item.appointment {
  background-image: url(688cb57b566ce892df3df721b1fc0993.svg);
}

.service-item.examination {
  background-image: url(fdb46aaaee5d6ebb9709fa3f3685c68a.svg);
}

.service-item.doctor-request {
  background-image: url(734a485f737945373a8068d9d0236717.svg);
}

.service-item.waitlist {
  background-image: url(a47f602c485bbabe3383c2a64e902174.svg);
}

.service-item.telemed {
  background-image: url(b61c776631367f5124248f1bbfd30c46.svg);
  background-position: 40px 30px;
  background-size: 23%;
}

.service-item.prescription {
  background-image: url(b61c776631367f5124248f1bbfd30c46.svg);
  background-position: 40px 30px;
  background-size: 23%;
}

.service-item.ambulance {
  background-image: url(f1139c28c4cf666f75e09ff3b02d9d1b.svg);
}

.service-item.covid-vaccination-form {
  background-image: url(b61c776631367f5124248f1bbfd30c46.svg);
  background-position: 40px 30px;
  background-size: 23%;
}
.covid-note {
  margin-bottom: 15px;
}

.covid-note__link-wrap {
  margin-bottom: 5px;
}

.covid-note__link {
  color: #42a5f5;
  margin: 0px 5px;
}
.first-available-service__title {
  padding: 17px 0 11px 0;
  font-size: 38px;
  font-weight: bold;
}

.first-available-service__description {
  max-width: 50%;
  padding: 0 0 30px 0;
  line-height: 27px;
}

.first-available-service__button {
  padding: 15px 80px;
  border-radius: 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.available-services__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #e8f5fd;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: right center;
  background-image: url(239ec54595e9a34cf0688f82086454be.png);
  color: #424242;
}

.available-services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 70%;
  margin: auto;
  padding: 40px 0 0;
}

.available-services__title {
  padding: 17px 0 11px 0;
  font-size: 38px;
  font-weight: bold;
}

.available-services__description {
  max-width: 50%;
  margin-bottom: 30px;
  line-height: 27px;
}

.available-services__button {
  padding: 15px 80px;
  border-radius: 24px;
  height: auto;
}

.available-services__more {
  position: relative;
  margin: 20px 0 30px 0;
  font-size: 18px;
  font-weight: bold;
}

.available-services__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 1366px) {
  .available-services {
    width: 80%;
  }
}

@media screen and (max-width: 1024px) {
  .available-services {
    width: 90%;
  }
}

@media screen and (max-width: 800px) {
  .available-services__wrap {
    background-image: none;
  }

  .available-services__title {
    font-size: 26px;
  }

  .available-services__description {
    max-width: 100%;
    line-height: 21px;
  }
}
.faq-item {
  border-radius: 3px;
  box-shadow: 0 7px 9px -3px rgba(111, 111, 132, 0.16);
  background-color: #f9f9f9;
  font-size: 18px;
  margin: 20px 0;
  cursor: pointer;
  padding: 20px;
}

.faq-item__question {
  position: relative;
  font-weight: bold;
  font-size: 18px;
  width: calc(100% - 20px);
}

.faq-item__question::after {
  content: "";
  position: absolute;
  right: -20px;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(b62b31f7ab47388aefa8a2ea236d19c4.png);
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.faq-item__question.opened::after {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}

.faq-item__answer {
  margin-top: 20px;
  line-height: 21px;
}

.faq {
  width: 70%;
  margin: auto;
  color: #424242;
  margin-bottom: 117px;
}

.faq__title {
  color: #424242;
  margin-top: 49px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: bold;
}

.faq__list {
  width: 100%;
}

@media screen and (max-width: 1366px) {
  .faq {
    width: 80%;
  }
}

@media screen and (max-width: 1024px) {
  .faq {
    width: 90%;
  }
}

@media screen and (max-width: 800px) {
  .faq__title {
    margin-top: 20px;
    font-size: 26px;
  }
}
.footer__wrap {
  height: 90px;
  background-color: #42a5f5;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer {
  width: 70%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__text-container {
  width: 20%;
}

.footer__text {
  font-size: 10px;
  color: #fff;
}

.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__list-item {
  text-align: left;
  text-decoration: underline;
  font-size: 12px;
  color: #fff;
  border: none;
}

.footer__images-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer__android-link,
.footer__ios-link {
  margin: 5px;
  width: 110px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: contain;
}

.footer__android-link {
  background-image: url(3239b2e54cec79cf3587563764c8fdea.png);
}
.footer__ios-link {
  background-image: url(d14c4841001c6a2ff594ad0ca2a4bcd3.png);
}

@media screen and (max-width: 800px) {
  .footer {
    width: 90%;
  }
}

@media screen and (max-width: 500px) {
  .footer__text-container {
    display: none;
  }

  .footer__images-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.main-page__content {
  min-height: 100%;
}

.file-input {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 34px;
  height: 34px;
  background-image: url(d932799262346dc40462cffe6db58d01.svg);
  background-repeat: no-repeat;
  background-position: 7px;
  border: none;
}

.file-input__input {
  display: none;
}

.chat-input {
  margin-top: 12px;
  display: -webkit-box;
  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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.chat-input__textarea-with-scrollbar {
  padding: 0;
  border: none;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.chat-input__textarea-with-scrollbar:focus-within {
  border: none;
  box-shadow: none;
}

.chat-input__textarea-with-scrollbar > .textarea-with-scrollbar__scrollbar {
  max-height: 108px;
}

.chat-input__textarea-with-scrollbar > .textarea-with-scrollbar__textarea:focus {
  border: none;
  outline: none;
}

.chat-input__scrollbar {
  max-height: 108px;
  margin: 4px 10px 0px 10px;
}

.chat-input__send-button {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 34px;
  height: 34px;
  background-image: url(a5070d3a070e91bdb3d1a6142c6836b5.svg);
  background-repeat: no-repeat;
  background-position: 6px;
  border: none;
}

.loader-or-empty {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.loader-or-empty__empty {
  height: 32px;
  line-height: 32px;
  color: #9e9e9e;
}

.message-status {
  width: 20px;
  background-repeat: no-repeat;
  background-position: 0px;
}

.message-status.undelivered {
  background-image: url(a74d6450fcbd71f45adbe785e3d0dd59.svg);
}

.message-status.read {
  background-image: url(0294bc800c954e5c6c49041550865777.svg);
}

.message-status.delivered {
  background-image: url(8bdc823826788bad7ee1776db5e7b269.svg);
}

.message-status.sending {
  background-image: url(dc7956e2c0b063e04ae9e84c117ece2d.svg);
}

.attachment-loader {
  position: relative;
  width: 30px;
  height: 30px;
  background: #42a5f5;
  border-radius: 5px;
  padding: 2px;
}

.attachment-loader > .CircularProgressbar .CircularProgressbar-trail {
  stroke: #42a5f5;
}

.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.file-attachment.downloadable {
  cursor: pointer;
}

.file-attachment__icon {
  width: 30px;
  height: 30px;
  padding: 3px;
  background: #42a5f5;
  border-radius: 5px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-origin: content-box;
  background-image: url(1a67a5e514b440f6536ad428e9303061.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;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -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: #42a5f5;
  border-radius: 5px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-origin: content-box;
}

.audio-attachment__download-button {
  background-image: url(759dbc117564a12189e8d8493c2a7896.png)
}

.audio-attachment__play-button {
  margin-left: 3px;
  background-image: url(3c13a248bb5db03e5a95f70005cbef88.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;
}
.orange-button {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 40px;
  padding: 0px 20px;
  color: white;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fdb17e), to(#ff6e02));
  background-image: linear-gradient(#fdb17e, #ff6e02);
  border-radius: 4px;
  font-size: 18px;
  outline: none;
  cursor: pointer;
  border: none;
}
.orange-button:hover {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fdb788), to(#ff740c));
  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: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-pack: center;
      -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 {
  width: 100%;
  margin-top: 9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.message.own {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.message__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.message.own .message__wrap {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.message.others .message__wrap {
  width: 100%;
}

.message__inner-wrap {
  display: -webkit-box;
  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: #42a5f5;
}

.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 27px;
}

.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 48px;
  width: 220px;
  margin: auto;
  margin-top: 20px;
}

.system-message {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.system-message .message__wrap {
  -webkit-box-pack: center;
      -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;
}

.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
}

.chat-list-item {
  width: calc(100% - 40px); /* 100% - горизонтальные отступы */
  min-height: 40px;
  padding: 40px;
  margin: 20px;
  border-radius: 5px;
  box-shadow: 0 4px 20px 0 rgba(111, 111, 132, 0.22);
}

.chat-list-item__chat-name {
  text-align: left;
  width: calc(100% - 30px);
}

.chat-list-item__notification-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background-color: #f50057;
  border-radius: 50%;
  font-size: 12px;
  color: white;
}

.chat-list {
  border-right: 1px solid #e1e1e1;
  padding: 25px 12px;
  width: 100%;
  height: 100%;
  max-width: 400px;
}

.chat-bot-area,
.chat-bot-area__frame {
  width: 100%;
  height: 100%;
}

.chat-bot-area__frame.loading {
  display: none;
}
.chat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: calc(100vh - 104px);
}

.chat__chat-area {
  width: 100%;
  height: 100%;
  background: #ffffff;
  padding: 25px 22px;
}

.service-header {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 55px 0 34px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.service-header__redirect-button {
  width: 160px;
  margin: 10px 0px;
}

@media screen and (max-width: 1024px) {
  .service-header {
    margin: 30px 0;
  }

  .service-header__title {
    font-size: 26px !important;
  }
}

@media screen and (max-width: 700px) {
  .service-header {
    margin: 15px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .service-header__title {
    font-size: 19px !important;
  }

  .service-header__redirect-button {
    display: none;
  }
}
.expandable-block__header {
  width: 100%;
  height: 48px;
  border: none;
  padding: 0;
  background-color: #e8f5fd;
  border-radius: inherit;
  padding: 10px 33px 11px 41px;
}

.expandable-block__header:disabled {
  opacity: 0.4;
}

.expandable-block.expanded > .expandable-block__header {
  border-bottom: 1px solid #e1e1e1;
  background-color: unset;
}

.expandable-block__header__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  line-height: inherit;
}

.expandable-block__header__content__label {
  color: #1565c0;
  margin-right: 11px;
}

.expandable-block__header__content__value {
  max-width: 50%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #1565c0;
  font-weight: bold;
}

.expandable-block__header__content__reselect-label {
  position: absolute;
  right: 0;
  color: #1565c0;
}

.expandable-block__header__content__reselect-label:before {
  position: absolute;
  content: "";
  width: 22px;
  height: 22px;
  left: -24px;
  bottom: -1px;
  background-size: contain;
  background-image: url(3844a2822b681b5a44b5986234882495.svg);
}

@media screen and (max-width: 1024px) {
  .expandable-block__header {
    padding: 5px 17px 6px 21px;
  }
}

@media screen and (max-width: 700px) {
  .expandable-block__header {
    padding: 2px 9px 3px 11px;
  }
}
.expandable-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 11px;
  border-radius: 5px;
}

.expandable-block.expanded {
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.13);
  padding: 9px 32px 10px 40px;
}

.expandable-block__content-header {
  margin-bottom: 24px;
}

.expandable-block__content {
  width: 100%;
  max-height: 590px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-color: #ffffff;
  padding: 29px 63px 29px 63px;
}

@media screen and (max-width: 1024px) {
  .expandable-block.expanded {
    padding: 4px 16px 5px 20px;
  }

  .expandable-block__content {
    padding: 14px 31px 14px 31px;
  }
}

@media screen and (max-width: 700px) {
  .expandable-block.expanded {
    padding: 2px 8px 3px 10px;
  }

  .expandable-block__content {
    padding: 7px 0px 7px 0px;
  }

  .expandable-block__content-header {
    margin-bottom: 10px;
  }
}
.expandable-block__scrollbar {
  /* Макс высота блока - высота заголовка - внутренние отступы блока */
  max-height: calc(590px - 50px - 29px - 29px);
  max-width: 500px;
}

.agreement-selector-block__content-wrap {
  max-width: unset;
}

.agreement-selector-block__content {
  margin-right: 10px
}

.agreement-selector-block__confirm-button {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: 48px;
  margin-top: 20px;
}

.agreement-selector-block__confirm-button > .button-with-loader__button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.agreement-selector-block__confirm-button > .text {
  margin-left: 15px;
}

.agreement-selector-block__confirm-button
  > .button
  > .button-with-loader__loader
  > span::after {
  border: 3px solid #fff;
}

.agreement-selector-block__checkbox {
  margin-top: 20px;
}
.service-page__wrap {
  padding: 0px 160px 66px 160px;
  margin: auto;
}

@media screen and (max-width: 1440px) {
  .service-page__wrap {
    padding: 0px 60px 66px 60px;
  }
}

@media screen and (max-width: 1024px) {
  .service-page__wrap {
    padding: 0px 30px 36px 30px;
  }
}

@media screen and (max-width: 700px) {
  .service-page__wrap {
    padding: 0px 10px 16px 10px;
  }
}
.expandable-block__item {
  padding: 6px 0px 6px 6px;
  background-repeat: no-repeat;
  background-position: left 30px center;
  height: auto;
  border: none;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.expandable-block__item.dms {
  background-image: url(6c3a0b00d84367b9989874ac863339c8.svg);
}

.expandable-block__item.oms {
  background-image: url(fb76b49df87faf78c2c95c99e173c92e.svg);
}

.expandable-block__item.chargeable {
  background-image: url(9ff5be2011c5c24e9b12e422affb8526.svg);
}
.expandable-block__item.patient {
  background-image: url(05b7988388dbc73f1f866998c0b497ae.svg);
}

.expandable-block__item.children {
  background-image: url(e0b900dd83a2ac7564f2b69dad1b1b3b.svg);
}

.expandable-block__item.children > .expandable-block__item__content,
.expandable-block__item.patient > .expandable-block__item__content,
.expandable-block__item.dms > .expandable-block__item__content,
.expandable-block__item.oms > .expandable-block__item__content,
.expandable-block__item.chargeable > .expandable-block__item__content {
  padding: 18px 37px 18px 110px;
  font-weight: bold;
}


.expandable-block__item__content {
  width: 458px;
  min-height: 86px;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: initial;
  padding: 18px 37px;
  box-shadow: 0 4px 20px 0 rgba(111, 111, 132, 0.22);
}

.expandable-block__item__content:hover {
  box-shadow: 0 4px 20px 0 rgba(40, 177, 227, 0.31);
}

.expandable-block__item__content.selected {
  box-shadow: 0 4px 20px 0 rgba(40, 177, 227, 0.31);
}

.expandable-block__item__content > .text {
  text-align: left;
}

@media screen and (max-width: 700px) {
  .expandable-block__item__content {
    width: 100%;
  }

  .expandable-block__item {
    width: 100%;
    padding-left: 0px;
  }
}
.additional-data-input {
  margin: 25px 0px 0px 0;
  width: 100%;
}

.additional-data-input__input {
  width: 300px;
  height: 48px;
}

.additional-data-input__create-button {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-top: 37px;
  height: 48px;
}

.additional-data-input__create-button > .button-with-loader__button {
  width: 175px;
}

.additional-data-input__create-button > .text {
  margin-left: 15px;
}


.additional-data-input__scrollbar {
  min-height: 220px;
  width: 100%;
  max-width: 500px;
}


.additional-data-input__dropdown {
  width: 300px;
}
.patient-selector-block__item__name {
  font-size: 18px;
}

.patient-selector-block__item__birth-date {
  font-size: 12px;
}

.insurance-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.insurance-list__scrollbar {
  /* Макс высота блока - высота заголовка - внутренние отступы блока - высота кнопки "Назад" */
  max-height: calc(590px - 50px - 29px - 29px - 86px);
}

.insurance-list__insurance-name {
  font-size: 18px;
  font-weight: bold;
}

.insurance-list__return-button {
  margin-top: 37px;
  width: 129px;
  height: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.adress-selector-block__item-title {
  font-size: 18px;
}

.adress-selector-block__item-value {
  font-size: 12px;
}
.phone-selector-block__item-title {
  font-size: 18px;
}

.phone-selector-block__item-value {
  font-size: 12px;
}

.dms-input__create-button
  > .button
  > .button-with-loader__loader
  > span::after {
  border: 3px solid #fff;
}

.reason__button {
  display: block;
  padding: 15px 90px;
  margin: 20px 0; 
}

.reason__label {
  margin: 10px 0; 
  color: #696969;
}

.reason-selector-block__reason-textarea {
  width: 448px;
  height: 189px;
  resize: none;
}
.slot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 92px;
  height: 46px;
  background: #e8f5fd;
  color: #42a5f5;
  font-size: 14px;
  margin: 6px 3px 5px 4px;
  border-radius: 24px;
  border-style: none;
  cursor: pointer;
}

.slot:not(.occupied):hover {
  box-shadow: 0 0 10px 0 #42a5f5;
}

.slot:active {
  background: #bbdefb;
}

.slot:not(.occupied).selected {
  font-weight: bold;
  box-shadow: 0px 0px 5px 1px #42a5f5;
}

.slot.occupied {
  background: #eceff1;
  color: #b0bec5;
  cursor: default;
}

.slot:not(.occupied).selected {
  font-weight: bold;
}

.slot-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.slot-selector-block__content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: 360px;
}

.slot-selector-block__right-block {
  margin-left: 50px;
  width: 510px;
  height: 100%;
  position: relative;
  height: 360px;
}

.slot-selector-block__doctor-info {
  margin-bottom: 20px;
}

.slot-selector-block__text {
  color: #424242;
  margin-bottom: 10px;
}

.slot-selector-block__slot-list {
  max-height: 290px;
  min-height: 290px;
  max-width: 420px;
}

.slot-selector-block__waitlist-button {
  width: 250px;
  height: 48px;
  position: absolute;
  bottom: 0px;
}

.slot-selector-block__confirm-button {
  height: 48px;
  width: 200px;
  margin-top: 20px;
}

.slot-selector-block__loader-or-empty {
  position: absolute;
  left: 25%;
}

.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: #42a5f5;
  font-weight: bold;
}

.day-picker .DayPicker-Day--disabled {
  font-weight: unset;
  color: #b0bec5;
}

.day-picker .DayPicker-Day--selected {
  background: #42a5f5 !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;
}

.confirmation-block > .expandable-block__content {
  max-height: unset;
}

.confirmation-block__info-block {
  margin: 6px 0px;
}

.confirmation-block__confirm-button {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: 48px;
  margin-top: 20px;
}

.confirmation-block__confirm-button > .button-with-loader__button {
  width: 200px;
}

.confirmation-block__confirm-button > .text {
  margin-left: 15px;
}

.confirmation-block__confirm-button
  > .button
  > .button-with-loader__loader
  > span::after {
  border: 3px solid #fff;
}

.confirmation-block__info-block_big {
  width: 400px;
}

.confirmation-block__info-block-width_scrollbar {
  max-width: 100%;
}
.confirmation-block__agreement-block {
  margin: 6px 0;
}

.confirmation-block__agreement-block_checkbox {
  margin-right: 5px;
}


.confirmation-block__agreement-block_text,
.confirmation-block__agreement-block_external-link {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 14px;
  white-space: pre;
  line-height: 21px;
}

.clinic-selector-block__content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
}

.clinic-selector-block__left-block {
  width: 50%;
  padding-top: 10px;
}

.clinic-selector-block__filter-input {
  width: 100%;
  max-width: 400px;
}

.clinic-selector-block__clinic-count {
  margin: 15px 0;
  font-weight: bold;
}

.clinic-selector-block__scrollbar {
  /* Макс высота блока - высота текста с количеством результатов - высота поля фильтра - внутренние отступы обертки - высота заголовка - внутренние отступы блока */
  max-height: calc(590px - 46px - 40px - 10px - 50px - 29px - 29px);
}

.clinic-selector-block__clinic__name {
  text-align: left;
  font-weight: bold;
}

.clinic-selector-block__clinic__address {
  text-align: left;
  color: rgb(170, 170, 170);
}

.clinic-selector-block__map {
  width: unset;
  margin: 20px;
}

.specialization-selector-block__item > .expandable-block__item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.doctor-slot-list {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.doctor-slot-list__day {
  width: 50px;
  margin-right: 20px;
}

.doctor-slot-list__slot-list > .slot {
  width: 77px;
  height: 28px;
  margin: 0px 3px 11px 3px;
}

.doctor-item__name {
  font-size: 18px;
  font-weight: bold;
}

.doctor-item__text {
  font-size: 16px;
  font-weight: bold;
  margin: 30px 0 15px 0;
}

.doctor-item {
  padding: 27px 26px;
  width: 458px;
  min-height: 86px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 6px;
  margin-bottom: 5px;
  opacity: unset;
  box-shadow: 0 4px 20px 0 rgba(111, 111, 132, 0.22);
}

.doctor-item:hover {
  box-shadow: 0 4px 20px 0 rgba(40, 177, 227, 0.31);
}

.doctor-item.selected {
  box-shadow: 0 4px 20px 0 rgba(40, 177, 227, 0.31);
}

.doctor-item__schedule-label {
  text-align: left;
  font-weight: bold;
  margin-top: 13px;
  margin-bottom: 12px;
}

doctor-item__price {
  color: #a7a7a7;
  margin-left: auto;
}

.block-button { 
  display: block;  
  opacity: 0.8;
  border-radius: 5px;
  color: #424242;
  font-size: 18px;
  box-shadow: 0 4px 20px 0 rgba(111, 111, 132, 0.22);
  padding: 30px; 
}

.block-button:hover {
  box-shadow: 0 4px 20px 0 rgba(40, 177, 227, 0.31);
}
.doctor-select__loader {
  position: absolute;
  left: calc(10% + 225px);
  margin-top: 50px;
}

.doctor__item {
  text-align: left;
  width: 450px;
  min-height: 100px;
  margin: 15px 0;
}

.doctor-item__name {
  font-size: 18px;
  font-weight: bold;
}

.doctor-item__text {
  font-size: 16px;
  font-weight: bold;
  margin: 30px 0 15px 0;
}

.doctor-item__loader {
  margin-top: 20px;
}

.schedule {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 13px;
  text-align: left;
}

.schedule__text {
  display: inline;
  margin-right: 20px;
}

.schedule__button {
  padding: 5px 20px;
  margin: 0 5px 5px;
}

.schedule__button__text {
  color: #ffffff;
}

.doctor-item__clinic {
  font-size: 14px;
  line-height: 16px;
  margin-top: 8px;
}


.clinic-radio-button__clinic-wrap {
  margin-left: 5px;
  cursor: pointer;
}

.clinic-radio-button__clinic-name {
  line-height: 19px;
}

.clinic-radio-button__clinic-address {
  font-size: 12px;
  color: #a7a7a7;
}

.doctors__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  /* 100% - футер */
  min-height: calc(100% - 90px);
  width: 70%;
  margin: 0 auto;
}

.doctors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.doctors__title {
  font-size: 38px;
  font-weight: bold;
  color: #424242;
  margin: 20px 0;
  padding-left: 5px;
}

.doctors__doctor-item {
  width: 100%;
  margin: 10px 0;
  min-height: 100px;
}

.doctors__doctor-item:first-of-type {
  margin-top: 39px;
}

.doctors__left-column {
  width: 448px;
  padding-left: 5px;
}

.doctors__left-column__text {
  margin-bottom: 10px;
}

.doctors__right-column {
  position: fixed;
  top: 130px;
  left: calc(15% + 468px);
  max-width: 450px;
  right: 15%;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 4px 20px 0 rgba(111, 111, 132, 0.22);
  min-width: 300px;
}

.doctors__right-column__text {
  margin-bottom: 7px;
}

.doctors__right-column__label {
  font-size: 12px;
  color: #a7a7a7;
  margin-top: 10px;
  margin-bottom: 10px;
}

.doctors__left-column__input {
  width: 100%;
  height: 48px;
  background-image: url(4c5481e82765c1256a3252cd7111ba56.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.doctors__remove-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #1565c0;
  color: #ffffff;
  width: 117px;
  margin: 10px 10px 0 0;
  padding: 4px;
  border-radius: 20px;
  color: #fff;
}

.doctors__remove-button img {
  height: 20px;
}

.doctors__remove-button_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.doctor__remove-button__text {
  margin-left: 5px;
  font-size: 12px;
  color: #ffffff;
}

.doctors__right-column__link {
  margin-top: 10px;
  color: #42a5f5;
  line-height: 17px;
  -webkit-text-decoration: underline dashed;
          text-decoration: underline dashed;
}

.doctors__radio-button {
  padding: 5px 0;
  margin-right: 10px;
}

@media screen and (max-height: 720px) {
  .doctors__scrollbar {
    max-height: 80px;
  }
}

@media screen and (min-height: 720px) {
  .doctors__scrollbar {
    max-height: 120px;
  }
}

.doctors__link-button {
  font-size: 16px;
  color: #42a5f5;
  border-bottom: 1px dashed #42a5f5;
  margin: 5px 0;
}

.doctors__right-column__input {
  width: 100%;
  height: 48px;
  margin: 0 0 10px;
}

.doctors__scrollbar > .scrollbar__track.horizontal {
  height: 8px;
}

.doctors__scrollbar > .scrollbar__track.vertical {
  width: 8px;
}

.doctors__empty-text {
  min-height: 160px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.clinic-catalog__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  /* 100% - футер */
  min-height: calc(100% - 90px);
  width: 70%;
  margin: 0 auto;
}

.clinic-catalog__title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 10px;
}

.clinic-catalog__title {
  font-size: 38px;
  font-weight: bold;
  color: #424242;
}

.clinic-catalog__wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.clinic-catalog__left-column {
  width: 500px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.clinic-catalog__right-column {
  top: 124px;
  height: calc(100vh - 224px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: calc(15% + 500px + 6%);
  right: 6%;
  position: fixed;
}

.clinic-catalog__left-column__top-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 0 10px;
}

.clinic-catalog__left-column__dropdowns-container {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.organizations__clinic-item {
  width: calc(100% - 20px);
  min-height: 100px;
  margin: 10px auto;
}

.organizations__clinic-item.selected {
  box-shadow: 0 4px 20px 0 rgba(40, 177, 227, 0.31);
}

.organizations__dropdown {
  width: 238px;
}

.organizations__first-col__input {
  width: 100%;
  height: 48px;
  margin-bottom: 30px;
  background-image: url(4c5481e82765c1256a3252cd7111ba56.svg);
  background-repeat: no-repeat;
  background-position: right 15px center;
}

.organizations__second-col {
  width: 50%;
  position: relative;
}

.organizations__second-col__address {
  padding: 0 40px;
  position: absolute;
  width: 100%;
  top: 38px;
}

.organizations__second-col__address__text {
  color: #424242;
  font-weight: bold;
  margin-bottom: 5px;
}

.organizations__second-col__address__input {
  width: 100%;
  height: 48px;
}

.organizations__second-col__address__input.empty {
  background-image: url(01062fa874b549e05699b81276afdc4d.svg);
  background-repeat: no-repeat;
  background-position: right 5px center;
}

.organizations__label {
  margin-bottom: 7px;
}

.clinics-list {
  position: relative;
  width: 100%;
}

.clinic-catalog__remove-button {
  position: absolute;
  width: 48px;
  height: 48px;
  background-image: url(20c859b30adb87ccb090d8c243c8c4d0.svg);
  background-repeat: no-repeat;
  background-position: center center;
  right: 33px;
}


.clinic-list__empty-text {
  min-height: 160px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.services-archive {
  /* 100% - футер */
  min-height: calc(100% - 90px);
  margin: 0 auto;
  overflow: hidden;
}

.archive__title {
  font-size: 38px;
  font-weight: bold;
  color: #424242;
}

.services-archive__title__container {
  width: 60%;
  margin: 20px auto;
}

.profile-block-user__avatar {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 100px;
  height: 100px;
}

.profile-inputs-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.profile-inputs-row .input {
  width: 135px;
}

.profile-label {
  color: #a7a7a7;
  font-size: 12px;
  margin-bottom: 5px;
}

.profile-dropdown {
  height: 40px;
  background-color: #fff;
  margin-bottom: 10px;
}

.profile-block-user__sub-block {
  border-bottom: solid 1px #c9c9c9;
  padding: 15px 0;
}

.profile-block-user__sub-block:first-child {
  padding-top: 0;
}

.profile-block-user__sub-block:nth-child(3) {
  border: none;
}

.medical-card {
  border-radius: 5px;
  background-color: #eceff1;
  padding: 20px;
}

.medical-card__iemk-link {
  margin: 10px 0px;
}

.profile__wrap {
  /* 100% - футер */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: calc(100% - 90px);
  width: 70%;
  margin: 0 auto;
}

.profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.profile__title {
  font-size: 38px;
  font-weight: bold;
  color: #424242;
  margin: 30px 0 20px;
}

.profile-menu {
  width: 238px;
  height: 219px;
  border-radius: 5px;
  background-color: #eceff1;
  padding: 25px;
}

.profile-menu__item {
  display: block;
  font-size: 16px;
  color: #696969;
  margin-bottom: 10px;
  text-decoration: none;
  border: none;
  padding: 0;
  height: auto;
}

.profile-menu__item.active {
  color: #42a5f5;
  font-weight: bold;
}

.profile-block {
  margin-left: 30px;
  width: 501px;
  position: relative;
}

.profile-block__label {
  font-size: 12px;
  color: #a7a7a7;
  margin-bottom: 3px;
}

.profile-block__text {
  color: #696969;
  margin-bottom: 10px;
}

.profile-block__button-with-loader {
  margin-top: 25px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.profile-block__button-with-loader > .button-with-loader__button {
  width: 210px;
  height: 48px;
}

.profile-block__input {
  width: 100%;
  margin-bottom: 10px;
}

.profile-block__input-short {
  width: 70%;
  margin-bottom: 10px;
}

.profile__child-item {
  width: 448px;
  min-height: 100px;
  background-color: #ffffff;
  text-align: left;
  margin: 0;
  border: none;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.profile-block-children {
  border-radius: 5px;
  background-color: #eceff1;
  padding: 20px;
}

.profile-block-user {
  border-radius: 5px;
  background-color: #eceff1;
  padding: 30px;
  margin-bottom: 128px;
}

.profile__child-item__title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.finding-district__content {
  width: 70%;
  margin: auto;
  /* 100% - футер */
  min-height: calc(100% - 90px);
  overflow: hidden;
}

.finding-district__title {
  font-size: 38px;
  font-weight: bold;
  padding: 27px 5px 20px;
  color: #424242;
}

.finding-district__text {
  padding-left: 5px;
  line-height: 1.5;
  padding-bottom: 20px;
}

.finding-district__button {
  text-align: left;
  width: 448px;
  height: 100px;
  margin: 15px 5px;
}

.finding-district__button__bold-text {
  font-size: 18px;
  font-weight: bold;
}

.finding-district__input {
  width: 545px;
  height: 48px;
}

.finding-district__input__small {
  width: 257px;
  height: 48px;
}

.finding-district__label {
  padding: 15px 0 5px;
}

.finding-district__input-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 545px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 38px;
}

.finding-district__button-transparent {
  padding: 15px 50px;
}

.finding-district__button-blue {
  padding: 15px 70px;
}

.finding-district__buttons-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 545px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}


.set-address__modal__buttons-container {
    margin: 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.set-address__modal__button {
    width: 80px;
    padding: 15px 0;
    margin: 0 30px;
}
.doctor-select__loader {
  position: absolute;
  left: calc(10% + 225px);
  margin-top: 50px;
}

.doctor__item {
  text-align: left;
  width: 450px;
  min-height: 100px;
  margin: 15px 0;
}

.doctor-item__name {
  font-size: 18px;
  font-weight: bold;
}

.doctor-item__text {
  font-size: 16px;
  font-weight: bold;
  margin: 30px 0 15px 0;
}

.doctor-item__loader {
  margin-top: 20px;
}

.schedule {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 13px;
  text-align: left;
}

.schedule__text {
  display: inline;
  margin-right: 20px;
}

.schedule__button {
  padding: 5px 20px;
  margin: 0 5px 5px;
}

.schedule__button__text {
  color: #ffffff;
}

.doctor-item__clinic {
  font-size: 14px;
  line-height: 16px;
  margin-top: 8px;
}

.finding-district__loader-or-empty {
  position: absolute;
  margin-top: 50px;
  margin-left: 150px;
}

.history__content {
  /* 100% - футер */
  min-height: calc(100% - 90px);
  overflow: hidden;
  width: 80%;
  margin: 0 auto;
}

.history__table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.history__table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  background-color: #eceff1;
  margin: 10px 0;
  min-height: 40px;
  border-radius: 5px;
}

.history__table__row.table__header {
  background-color: #fff;
}

.history__table__cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px;
}

.history__table__cell:first-child {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 20px;
}

.history__table__cell:last-child {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 20px;
}

.history__title {
  color: #424242;
  font-size: 38px;
  font-weight: bold;
  margin: 20px 0;
}

.history__dropdown {
  width: 448px;
  height: 48px;
  margin: 20px 0;
}

.table__header .history__text {
  font-weight: bold;
}

.history__text {
  color: #424242;
}

.department-selector-block__name {
  text-align: left;
  font-weight: bold;
}

.department-selector-block__address {
  text-align: left;
  color: rgb(170, 170, 170);
}
.schedule-route-selector-block__item > .expandable-block__item__content {
  padding-left: 97px;
  background-repeat: no-repeat;
  background-size: 53px 40px;
  background-position: 27px 25px;
}

.schedule-route-selector-block__item.by_doctor
  > .expandable-block__item__content {
  background-image: url(1463de2082488742587b55671dd8a22c.svg);
}

.schedule-route-selector-block__item.by_day > .expandable-block__item__content {
  background-image: url(569451c3ff81c6b72274df25f5bfe472.svg);
}

.custom-schedule-block > .expandable-block__content {
  position: relative;
}

.custom-schedule-block__radio-with-label {
  margin-bottom: 8px;
}

.custom-schedule-block__exact-date-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
  margin-bottom: 30px;
}

.day-picker-input__input.custom-schedule-block__calendar {
  width: 150px;
  margin-left: 24px;
  background-image: url(7859c434f078426d25ca541c021ad872.svg);
  background-repeat: no-repeat;
  background-position: 115;
}

.day-picker-input__wrapper.custom-schedule-block__calendar {
  position: unset;
  background: unset;
  border-radius: unset;
  border: unset;
}

.day-picker.custom-schedule-block__calendar {
  position: absolute;
  z-index: 1;
  top: calc(29px + 50px + 27px);
  left: calc(63px + 24px + 270px + 24px);
}

.custom-schedule-block__checkbox-with-label {
  margin-bottom: 8px;
}

.custom-schedule-block__textarea-with-scrollbar {
  margin-top: 30px;
  width: 550px;
  height: 97px;
}

.custom-schedule-block__textarea-with-scrollbar__wrap {
  margin-top: 30px;
  width: 550px;
  height: 97px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 7px 10px;
  border: 1px solid #d3d3d3;
  border-radius: 5px;
}

.custom-schedule-block__confirm-button {
  height: 48px;
  width: 200px;
  margin-top: 20px;
}

.custom-schedule-block__textarea-with-scrollbar .textarea-with-scrollbar__scrollbar {
  max-height: 94px;
}

.custom-schedule-block__textarea-with-scrollbar .textarea-with-scrollbar__textarea {
  min-height: 81px;
}

.schedule-by-day > .expandable-block__content {
  position: relative;
  height: 590px;
}

.schedule-by-day__content-header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 5px;
  margin-bottom: 22px;
}

.schedule-by-day__select-day-button {
  width: 200px;
  height: 28px;
  margin-left: 63px;
}

.schedule-by-day__calendar {
  position: absolute;
  z-index: 1;
  top: 79px;
}

.schedule-by-day__scrollbar {
  max-width: 500px;
  max-height: 390px;
}

.schedule-by-day__doctor-item {
  margin-left: 5px;
}

.schedule-by-day__confirm-button {
  height: 48px;
  width: 200px;
  position: absolute;
  bottom: 29px;
}

.payment-block__iframe {
  width: 1000;
}

.editable-service-attachment {
  -webkit-box-align: center;
      -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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 45px;
  width: 100%;
  border: solid 1px #42a5f5;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.editable-service-attachment-upload-button__text {
  padding: 10px 25px;
  color: #42a5f5;
  background-image: url(d932799262346dc40462cffe6db58d01.svg);
  background-repeat: no-repeat;
  background-position: 0 center;
}

.editable-service-attachment-upload-button__input {
  display: none;
}

.attachment-list {
  width: 350px;
  margin-top: 20px;
}

.attachment-list__scrollbar {
  margin-bottom: 15px;
  max-height: 150px;
}

.additional-info-selector-block__radio-with-label {
  padding: 5px 0;
}

.additional-info-selector-block__button {
  margin-top: 20px;
}
.urgency-selector-block__radio-with-label {
  padding: 5px 0;
}

.urgency-selector-block__button {
  margin-top: 20px;
  padding: 20px 40px;
}
.reason__button {
  display: block;
  padding: 15px 90px;
  margin: 20px 0; 
}

.reason__label {
  margin: 10px 0; 
  color: #696969;
}

.reason-selector-block__reason-textarea {
  width: 448px;
  height: 189px;
  resize: none;
}
.permission-status {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0 20px;
  width: 100%;
  height: 48px;
  top: -27px;
  border-radius: 5px 5px 0 0;
  color: #ffffff;
}

.permission-status__bottom-block {
  position: absolute;
  height: 32px;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 5px 0 0 0;
}

.permission-status__top-block {
  position: absolute;
  height: 30px;
  width: 245px;
  right: 0;
  top: 0;
  border-radius: 30px 5px 0 0;
}

.permission-status__bottom-block::before {
  content: "";
  display: block;
  position: absolute;
  height: 17px;
  width: 17px;
  background-color: #fff;
  top: 15px;
}

.permission-status__bottom-block::after {
  content: "";
  display: block;
  position: absolute;
  height: 17px;
  width: 17px;
  top: 15px;
  border-radius: 5px 0 0 0;
}

.permission-status::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 31px;
  width: 114px;
  background-color: #fff;
  border-radius: 0 0 30px 0;
  z-index: 2;
}

.permission-status__text {
  position: absolute;
  padding: 10px 0 10px 30px;
  background-repeat: no-repeat;
  background-position: center left;
  max-width: 230px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #ffffff;
}



.permission-status.green > .permission-status__top-block,
.permission-status.green > .permission-status__bottom-block,
.permission-status.green > .permission-status__bottom-block::after {
  background-color: #00c853;
}


.permission-status.grey > .permission-status__top-block,
.permission-status.grey > .permission-status__bottom-block,
.permission-status.grey > .permission-status__bottom-block::after {
  background-color: #90a4ae;
}



.permission-status.green {
  position: absolute;
  width: 100%;
  height: 48px;
  top: -27px;
  border-radius: 5px 5px 0 0;
}



.permission-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  -ms-flex-preferred-size: 352px;
      flex-basis: 352px;
  height: 358px;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.13);
  margin: 0 16px 56px;
  background-repeat: no-repeat;
  background-position: 30px 18px;
  background-size: 50px 40px;
}

.permission-item.active {
  cursor: pointer;
}

.permission-item__bottom-block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #eceff1;
  padding: 10px 30px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.permission-item__bottom-block__bold {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
  color: #424244;
}

.permission-item__top-block__name {
  padding: 48px 30px 0;
  font-size: 26px;
  font-weight: bold;
  color: #424244;
}

.permission-item__top-block__patient {
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  color: #424244;
}

.permission-item__top-block__doctor {
  padding: 0px 30px 15px;
  font-size: 18px;
  font-weight: bold;
  color: #424244;
}


.permission-selector-block_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1232px;
  margin: auto;
  padding: 50 0 0;
}

.permission-selector-block .expandable-block__content {
  max-height: unset;
}

.prescription-confirmation-block > .expandable-block__content {
  max-height: unset;
}

.prescription-confirmation-block__info-block {
  margin: 6px 0px;
}

.prescription-confirmation-block__confirm-button {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: 48px;
  margin-top: 20px;
}

.prescription-confirmation-block__confirm-button > .button-with-loader__button {
  width: 200px;
}

.prescription-confirmation-block__confirm-button > .text {
  margin-left: 15px;
}

.prescription-confirmation-block__info-block_big {
  width: 400px;
}
.error-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0px 160px 66px 160px;
  margin: auto;
}

.error-page__title {
  font-size: 38px;
  font-weight: bold;
  color: #f50057;
  margin-top: 55px;
  margin-bottom: 28px;
}

.error-page__text {
  margin-bottom: 28px;
  line-height: 27px;
  white-space: pre-line;
}

.error-page__button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 48px;
  padding: 10px 40px;
}

@media screen and (max-width: 1440px) {
  .error-page {
    padding: 0px 60px 66px 60px;
  }
}

.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(ea42febc1edc0297e88706f06c37090b.svg);
}

.record-control-block__edit-button {
  background-image: url(259bb5928824e163f33d3ef1df0c320c.svg);
}

.record-control-block__delete-button {
  background-image: url(ee0183ddfe06ac5f000fc8c7f647aa51.svg);
}

.record-control-block__attachment-button:hover {
  background-image: url(100ea62792c3c8cf46a6a36fe135b06a.svg);
}

.record-control-block__edit-button:hover {
  background-image: url(1760e3fd16b212455ba2c9dac017c28f.svg);
}

.record-control-block__delete-button:hover {
  background-image: url(da6cb6fbe3601c8d271fdba2935d5e0d.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -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: #42a5f5;
}

.graph-scale-select-button.active {
  color: #42a5f5;
  text-decoration: underline;
}

.health-diary-record-graph {
  padding: 8px;
  height: calc(100% - 67px); /* 100% - высота шапки */
}

.health-diary-record-graph__header,
.health-diary-record-graph__body {
  -webkit-box-align: center;
      -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(bb19ff313032ea1a28b218d8e15330e0.svg);
  background-repeat: no-repeat;
}
.health-diary-record-graph__time-frame-button:hover::after {
  background-image: url(70c0e926b76e3c32cf7a12f6d2c8a29d.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;
  -webkit-box-align: center;
      -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: #42a5f5;
}

.health-diary-record-list__header__tab-button.active {
  color: #42a5f5;
  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(dd9ded4fa447f8dae8430e6ad6ca909f.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -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: #42a5f5;
}
.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -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(bb19ff313032ea1a28b218d8e15330e0.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(c7780871be235aabbdb409671adefc2a.svg);
}

.health-diary-metric.active .add-or-edit-health-diary-metric-threshold-value-button {
  -webkit-mask-image: url(7fa553a7ed2b96573f0cf63deed6676e.svg);
          mask-image: url(7fa553a7ed2b96573f0cf63deed6676e.svg);
  background-color: white;
}

.health-diary-metric.active .add-or-edit-health-diary-metric-threshold-value-button:hover {
  -webkit-mask-image: url(7fa553a7ed2b96573f0cf63deed6676e.svg);
          mask-image: url(7fa553a7ed2b96573f0cf63deed6676e.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(f740c9f47acdf18b2223435a9562bd03.svg);
          mask-image: url(f740c9f47acdf18b2223435a9562bd03.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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.add-health-diary-metric-button__icon {
  height: 48px;
  width: 48px;
  background-image: url(8fe902d5c961a721bb39ad43f5d2c001.svg);
  margin-bottom: 8px;
}

.add-health-diary-metric-button__label {
  text-align: center;
  width: 100%;
  font-size: 14px;
  line-height: 16px;
  color: #42a5f5;
}

.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: -webkit-box;
  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(2f90aabb0ff653012910c3669096e921.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;
}

.health-diary-page {
  height: 100%;
  width: 80%;
  margin: auto;
}

.health-diary-page__title {
  font-size: 38px;
  font-weight: bold;
  color: #3a4146;
  margin-top: 55px;
  margin-left: 10px;
  margin-bottom: 16px;
}

.health-diary-page__link-wrap {
  margin-left: 10px;
  margin-bottom: 5px;
}

.health-diary-page__link {
  color: #42a5f5;
  margin: 0px 5px;
}

.health-diary-page__dropdown-wrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 10px;
}

.health-diary-page__dropdown-label {
  margin-right: 15px;
  font-size: 24px;
}

.health-diary-page__dropdown {
  width: 300px;
}

.feedback {
  height: 100%;
  width: 80%;
  margin: auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.feedback__control-label {
  color: #a7a7a7;
  font-size: 12px;
  margin-bottom: 5px;
}

.feedback_content-wrap {
  border-radius: 5px;
  background-color: #eceff1;
  padding: 30px;
  margin-bottom: 128px;
 
}

.feedback_column-wrap {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.feedback__control {
  width: 300px;
  margin-bottom: 5px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.feedback__control > .input {
  width: 300px;
}

.feedback__control.mandatory > .text::after {
  content: " *";
  color: #f50057;
  font-weight: normal;
}


.feedback__title {
  font-size: 38px;
  font-weight: bold;
  color: #424242;
  margin: 30px 0 20px;
}

.feedback__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: calc(100% - 90px);
  width: 70%;
  margin: 0 auto;
}


.feedback__save-button {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.feedback__save-button > .button-with-loader__button {
  width: 300px;
  height: 48px;
  margin-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 15px;
}

.feedback__save-button > .button-with-loader__error {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.feedback__textarea {
  width: 448px;
  height: 189px;
  resize: none;
  margin-bottom: 20px;
}



.covid-form-page {
  width: 90%;
}

.covid-form-page__title {
  font-size: 38px;
  font-weight: bold;
  color: #3a4146;
  margin-top: 45px;
  margin-bottom: 16px;
}

.covid-form-page__button {
  margin-top: 30px;
  margin-bottom: 10px;
  -webkit-box-orient: unset;
  -webkit-box-direction: unset;
      -ms-flex-direction: unset;
          flex-direction: unset;
}
.covid-form-page__button > .button-with-loader__success {
  margin-left: 10px;
}

.covid-form-page__text {
  line-height: 21px;
  margin-bottom: 6px;
  margin-top: 17px;
  font-size: 15px;
}

.covid-form-page__button > .button-with-loader__error{
  margin-left: 10px;
}

@media screen and (max-width: 700px) {

  .covid-form-page__text {
    margin-top: 6px;
    font-size: 13px;
    line-height: 17px;
  }

  .covid-form-page {
    width: 100%;
  }
  
  .covid-vaccination-form-combo-box .combo-box__item{
    font-size: 14px;
  }

  .covid-form-dropdown .dropdown__title,.dropdown__item{
    font-size: 14px;
  }

  .covid-form-page__button{
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .covid-form-page__button .button-with-loader__success,.button-with-loader__error{
    text-align: left;
  }

}
.not-autorized-warning__link{
  color: #42a5f5;
  text-decoration: underline;
  cursor: pointer;
}
.trueconf-view {
  position: relative;
  width: 100%;
  height: 100%;
}

.trueconf-view__header {
  position: absolute;
  top: 0px;
  width: 100%;
  padding: 25px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -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;
  -webkit-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);
  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%;
}
.conference-area {
  display: -webkit-box;
  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%;
}

.patient-portal-link {
  position: relative;
  width: 100%;
  height: 40px;
  background-color: #42a5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.patient-portal-link__close-button {
  position: absolute;
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  background-image: url(6dde1d49585778112139a40ead941892.svg);
  right: 20px;
  top: 10px;
}

.patient-portal-link__text, .patient-portal-link__link {
  color: #fff;
  margin: 0 5px;
}
.main-frame {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main-frame__content {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-frame__loader {
  margin: auto;
}
.auth-input-with-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.registration-page .auth-page__content-wrap {
  width: 600px;
}

.auth-input-with-label.registration-page__input {
  width: 230px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}


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


.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;
}

.install-chrome-modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -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: #42a5f5;
}

.install-chrome-modal__button {
  margin-top: 20px;
  width: 150px;
  padding: 15px;
}
.layout {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.layout__loader {
  margin: auto;
}
/* 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-size: 100%;
  font: inherit;
  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(985d9f698af7e2d9e1e7815ab61db435.woff2) format('woff2'), url(e0f802c67193ac4964eff31a8111e135.woff) format('woff'), url(bd4c8d3cfb8aa4aae1183cc8908c23ee.ttf) format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: block;
}
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;
}

.list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -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 rgba(40, 177, 227, 0.31);
}

@media screen and (max-width: 700px) {
  html * {
    font-size: 12px;
  }
}
