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

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

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

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

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

@keyframes dash-loader-1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    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);
  animation: dash-loader-2 1.5s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
@keyframes dash-loader-2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    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%;
  animation: dash-loader-3 1.5s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
@keyframes dash-loader-3 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.dash-loader span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: inherit;
  width: inherit;
  border: 3px solid rgba(66, 66, 66, 0.5);
  border-radius: 50%;
}

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

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

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

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

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

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

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

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

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

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

.checkbox.checked {
  color: #424242;
}

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

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

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

.checkbox-with-label.disabled > .checkbox-with-label__label {
  opacity: 0.5;
}
.cluster-loader {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  height: 32px;
  width: 32px;
  animation: cluster-loader-1 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
  margin: auto;
}
@keyframes cluster-loader-1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    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%;
  animation: cluster-loader-2 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
@keyframes cluster-loader-2 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(24px, 0, 0) scale(0.5);
  }
  100% {
    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%;
  animation: cluster-loader-3 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
@keyframes cluster-loader-3 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-24px, 0, 0) scale(0.5);
  }
  100% {
    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%;
  animation: cluster-loader-4 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
@keyframes cluster-loader-4 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, 24px, 0) scale(0.5);
  }
  100% {
    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%;
  animation: cluster-loader-5 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
@keyframes cluster-loader-5 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -24px, 0) scale(0.5);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

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

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

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

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

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

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

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

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

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

.scrollbar__track.hidden {
  display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dropdown__item:hover {
  background: #eceff1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tootlip__block{
  position: relative;
}

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

.tootlip__block::before, .tootlip__block::after {
  content: '';
  position: absolute;
  width: 20px; 
  height: 20px;
  bottom: -10px;
  left: 50%;
  background: #e3f6fd;
  z-index: -1;
  -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);
}
:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(
    to right,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index) px);
  position: fixed;
  padding: 4px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}
.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}
.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}
.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: 0;
    -ms-transform: translateX(0);
        transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: 0;
    -ms-transform: translateX(0);
        transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: initial;
  }
}
.Toastify__toast {
  position: relative;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  max-height: var(--toastify-toast-max-height);
  overflow: hidden;
  font-family: var(--toastify-font-family);
  cursor: pointer;
  direction: ltr;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast-body {
  margin: auto 0;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  padding: 6px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.Toastify__toast-body > div:last-child {
  -ms-flex: 1;
      flex: 1;
}
.Toastify__toast-icon {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  width: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -ms-flexbox;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.7s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}
.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}
.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}
.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}
.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}
.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}
.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}
.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}
.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}
.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: var(--toastify-z-index);
  opacity: 0.7;
  -ms-transform-origin: left;
      transform-origin: left;
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  -ms-transform-origin: right;
      transform-origin: right;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.logo__wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 80px;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

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

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

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

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

.header__user-info__button {
  -ms-flex-direction: row;
      flex-direction: row;
}

.menu-change-password{
  position: relative;
}

.menu-change-password-tooltip {
  position: absolute;
  background-color: #e3f6fd;
  color: #424242;
  padding: 15px;
  width: 335px;
  right: 0;
  -ms-transform: translateX( calc(50% - 22px)) translateY(22px);
      transform: translateX( calc(50% - 22px)) translateY(22px);
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  pointer-events: none;
  z-index: 1;
}
.menu-change-password-tooltip::before, .menu-change-password-tooltip::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: -10px;
  left: 50%;
  background: #e3f6fd;
  z-index: -1;
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
}

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

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

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


.menu-item:hover {
   background-color: #42a5f5;
   color: #ffffff;
}

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

.small {
  height: 40px !important;
  line-height: 20px !important;
}

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

.base-button {
  border-style: none;
  text-decoration: none;
  font-size: 16px;
  line-height: 48px;
  color: #fff;
  border-radius: 24px;
  background-color: #42a5f5;
}

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

.base-button:active {
  background-color: #1565c0;
}

.base-button:disabled {
  background-color: #a1d2fa;
  color: #eceff1;
  border: none;
  box-shadow: none;
}


.base-button-inverted {
  border-style: none;
  text-decoration: none;
  font-size: 16px;
  color: #42a5f5;
  border-radius: 24px;
  background-color: #eceff1;
}

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

.base-button-inverted:active {
  background-color: #e8f5fd;
}

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

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

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

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

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

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

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

.header-notification-list__item_unread {
  background-color: #bbdefb;
}

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

.header-notifications__button {
  fill: white;
  height: 40px;
  width: 40px;
  background: #42a5f5;
}

.header-notifications__button_unread::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #f50057;
  position: absolute;
  top: 1px;
  right: 4px;
  border-radius: 100%;
}

.header-notifications__icon {
  fill: white;
  height: 24px;
  width: 24px;
}
.header {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  height: 80px;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  padding: 0 25px;
  border-bottom: 1px solid #e1e1e1;
  background-color: #ffffff;
}

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

.header__link {
  font-size: 14px;
  padding-left: 30px;
  text-decoration: none;
  color: #4a4a4a;
}

.header__link:hover {
  color: #42a5f5;
}

.header__link.active {
  color: #42a5f5;
  text-decoration: underline;
}

.header__user-profile {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  right: 50px;
}

.header-user-card__name {
  font-size: 18px;
  font-weight: bold;
}

.header__title {
  width: 250px;
  font-size: 18px;
  color: #42a5f5;
}
.patient-discussion-list {
  height: 100%;
  width: 90%;
  margin: auto;
}

.patient-discussion-list__top-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding-top: 55px;
  margin-bottom: 50px;
  -ms-flex-align: center;
      align-items: center;
  height: 126px;
}

.patient-discussion-list__top-block__title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 26px;
}

.patient-discussion-list__top-block__controls {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.patient-discussion-list__top-block__controls * {
  font-size: 16px;
}

.patient-discussion-list__top-block__column {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column;
      flex-flow: column;
  -ms-flex-align: end;
      align-items: flex-end;
}

.patient-discussion-list__top-block__tab-link {
  line-height: 18px;
}

.patient-discussion-list__top-block__tab-link.active {
  color: #42a5f5;
  text-decoration: underline;
}

.patient-discussion-list__top-block__button,
.patient-discussion-list__top-block__save-button {
  width: 240px;
  padding: 2px;
  height: 50px;
}

.patient-discussion-list__top-block__save-button__wrap {
  margin-top: 15px;
  -ms-flex-align: center;
      align-items: center;
}

.patient-discussion-list__top-block__save-button__loader {
  margin-right: 15px;
}

.patient-discussion-list__top-block__text {
  margin-top: 20px;
}
.table-settings {
  margin-bottom: 15px;
}

.table-settings-title {
  cursor: pointer;
  background-color: transparent;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-align: center;
      align-items: center;
}

.table-settings-title .title {
  font-size: 14px;
  color: #686868;
}

.table-settings-title:hover {
  opacity: 0.7;
}

.table-settings-title .arrow-icon {
  background-image: url(ad7164b5c32e7ba1a7cd652bc7761c33.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  margin-left: 6px;
}

.table-settings-title .arrow-down {
  -ms-transform: rotate(180deg);
      transform: rotate(180deg);
}

.table-settings-view {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-align: center;
      align-items: center;
  margin-top: 15px;
}

.table-settings-view-label {
  font-size: 14px;
  margin-right: 20px;
}

.table-settings-view-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-align: center;
      align-items: center;
}

.table-settings-column {
  height: 250px;
  width: 250px;
  border: 1px solid #b4b4b4;
  overflow: auto;
}

.table-settings-column-item {
  padding: 7px 10px;
  font-size: 14px;
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
  width: 100%;
  background-color: #fff;
}

.table-settings-column-item:hover {
  background-color: #ebebeb;
}

.table-settings-arrows {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  margin: 0 20px;
}

.table-settings-arrow {
  padding: 5px 8px;
  margin-bottom: 8px;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #808080;
}

.table-settings-arrow:hover {
  background-color: rgb(238, 238, 238);
}

.table-settings-column-label {
  font-size: 12px;
  color: #808080;
  margin-bottom: 5px;
}

.active-column {
  background-color: #808080;
  color: #fff;
}

.active-column:hover {
  color: #fff;
  background-color: #808080;
}

.doctor-info__name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.bigText{
  width: 300px; 
  word-wrap: break-word;
}
.file-attachment {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin: 5px 0;
}

.file-attachment__progressbar,
.file-attachment__icon {
  width: 30px;
  height: 30px;
  padding: 5px;
  background: #42a5f5;
  border-radius: 5px;
}

.file-attachment__icon {
  background-image: url(e4c36a71f74cce7a12d616df20f8b4ec.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;
}

.lazy-load-image-background.opacity {
  opacity: 0;
}

.lazy-load-image-background.opacity.lazy-load-image-loaded {
  opacity: 1;
  transition: opacity .3s;
}

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

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

.image-attachment__image {
  max-width: 100%;
  max-height: 200px;
  position: absolute;
}

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

.image-attachment__progressbar {
  position: relative;
  width: 30px;
  padding: 5px;
}

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

.news-list-item .image-attachment {
  height: -webkit-fit-content;
  height: fit-content;
  max-width: 330px;
  text-align: center; 
  margin: 10px auto;
  position: unset;
}

.news-list-item .image-attachment__image {
  border-radius: 10px;
  position: unset;
  cursor: pointer;
}
.patient-discussion-info {
  width: 90%;
  margin: 0 auto;
}

.patient-discussion-info__go-back-button {
  color: #42a5f5;
  font-size: 16px;
  background-image: url(e6006f0da898072ea9dd9a07963342cc.svg);
  background-repeat: no-repeat;
  background-size: 25px 17px;
  padding: 0 30px;
  margin: 35px 0;
  border: none;
  height: unset;
}

.patient-discussion-info__title-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
}

.patient-discussion-info__title {
  font-size: 38px;
  font-weight: bold;
  -ms-flex-align: center;
      align-items: center;
}

.patient-discussion-info__control-button {
  margin: 5px;
  height: 40px;
  width: 160px;
}

.patient-discussion-info__main-info {
  margin-top: 40px;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 90px;
}

.patient-discussion-info__main-info .wrap-with-label  {
  margin-right: 30px;
}

.patient-discussion-info__doctors-info {
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.patient-discussion-info__doctors-info__title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 15px;
}

.patient-discussion-info__patient-info__title {
  margin-top: 90px;
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: bold;
}

.patient-discussion-info__label {
  font-size: 12px;
  color: #a7a7a7;
  margin: 10px 0;
}

.patient-discussion-info__attachments-container {
  margin-bottom: 20px;
  width: 448px;
}

.patient-discussion-info__attachments-container .downloadable {
  margin: 2px 0;
}

.service-page-header__go-back-button {
  color: #42a5f5;
  font-size: 16px;
  background-image: url(e6006f0da898072ea9dd9a07963342cc.svg);
  background-repeat: no-repeat;
  background-size: 25px 17px;
  padding: 0 30px;
  margin: 25px 0;
  width: -webkit-fit-content;
  width: fit-content;
  border: unset;
  height: unset;
}

.service-page-header__title-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
}

.service-page-header__title {
  font-size: 38px;
  font-weight: bold;
  -ms-flex-align: center;
      align-items: center;
}
.editable-service-control-with-loader {
  -ms-flex-align: center;
      align-items: center;
}

.editable-service-control-with-loader__loader {
  margin-left: 10px;
  width: 16px;
  height: 16px;
}

.editable-service-control-with-loader__loader > span {
  clip: rect(8px, 16px, 16px, 0);
}
.editable-service-control {
  width: 350px;
  margin-bottom: 5px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.editable-service-appointment-format {
  width: 250px !important;
}

.editable-service-insurance {
  width: 550px !important;
  margin-left: 0 !important;
}

.editable-service-insurance .dropdown__item {
  white-space: normal;
  height: initial !important;
  min-height: 40px;
}


.service-field-group {
  width: 400px;
}

.service-field-group__title {
  font-size: 24px;
  font-weight: bold;
}

.service-field-group__row{
  margin-bottom: 10px;
  -ms-flex-align: center;
      align-items: center;
}
.doctor-dropdown-item {
  height: -webkit-fit-content;
  height: fit-content;
  min-height: 38px;
}

.doctor-dropdown-item.dropdown__title {
  padding-right: 30px;
}

.doctor-dropdown-item__name {
  font-weight: bold;
  white-space: pre-wrap;
}

.doctor-dropdown-item__position,
.doctor-dropdown-item__phone {
  font-size: 14px;
  margin-top: 5px;
  white-space: pre-wrap;
}



.clinic-dropdown-item {
  height: -webkit-fit-content;
  height: fit-content;
  min-height: 60px;
}

.clinic-dropdown-item__name {
  font-weight: bold;
  white-space: pre-wrap;
}

.clinic-dropdown-item__address {
  font-size: 14px;
  white-space: pre-wrap;
  margin-top: 5px;
}

.clinic-dropdown-item__name_withChild::after {
  content: "★";
  font-size: 11px;
  vertical-align: super;
  margin-left: 2px;
  color: #42a5f5;
}

.editable-service-clinic__empty-text {
  color: #d22c75;
  margin: -5px 0 5px 0;
}

.editable-service-patient-oms__number {
  width: 220px;
}

.editable-service-patient-oms__series {
  width: 100px;
  margin-left: auto;
}

.component-with-tooltip__wrap > .editable-service-patient-oms__tooltip{
  top: -5px;
  left: 75px;
}


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

.component-with-tooltip__on-input {
  position: absolute;
  right: 2%;
  top: 40%;
  z-index: 0;
}

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

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

.component-with-tooltip .tootlip__block::before{
  z-index: 1;
}
.editable-service-patient-tooltip__question-image{
  width: 27px;
}

.editable-service-patient-tooltip__tooltip-text{
  font-size: 13px;
  line-height: 19px;
}

.tooltip.editable-service-patient-tooltip{
  margin-left: 10px;
}
.editable-service-patient {
  width: -webkit-fit-content;
  width: fit-content;
}

.editable-service-patient__address {
  margin-left: 50px;
}

.editable-service-patient__snils-with-tooltip__row{
  -ms-flex-align: center;
      align-items: center;
}
.date-time-input {
  display: -ms-flexbox;
  display: flex;
  width: 400px;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.date-time-input__buttons {
  margin-top: 50px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.day-picker.date-time-input__calendar{
  position: absolute;
  z-index: 1;
  top: -41px;
  left: 350px;
}

.day-picker-input__wrapper.date-time-input__calendar{
  z-index: 1;
}

.day-picker-input__input.date-time-input__calendar input{
  background-image: url(69aca706e980d163f42f7e8d956ac21d.svg);
  background-repeat: no-repeat;
  background-position: 95%;
}

.date-time-input__wrap{
  -ms-flex-align: center;
      align-items: center;
}
/* DayPicker styles */

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

.DayPicker-wrapper {
  position: relative;

  -ms-flex-direction: row;

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

  -webkit-user-select: none;

      -ms-user-select: none;

          user-select: none;
}

.DayPicker-Months {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
}

.DayPicker-Month {
  display: table;
  margin: 0 1em;
  margin-top: 1em;
  border-spacing: 0;
  border-collapse: collapse;

  -webkit-user-select: none;

      -ms-user-select: none;

          user-select: none;
}

.DayPicker-NavBar {
}

.DayPicker-NavButton {
  position: absolute;
  top: 1em;
  right: 1.5em;
  left: auto;

  display: inline-block;
  margin-top: 2px;
  width: 1.25em;
  height: 1.25em;
  background-position: center;
  background-size: 50%;
  background-repeat: no-repeat;
  color: #8B9898;
  cursor: pointer;
}

.DayPicker-NavButton:hover {
  opacity: 0.8;
}

.DayPicker-NavButton--prev {
  margin-right: 1.5em;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAwCAYAAAB5R9gVAAAABGdBTUEAALGPC/xhBQAAAVVJREFUWAnN2G0KgjAYwPHpGfRkaZeqvgQaK+hY3SUHrk1YzNLay/OiEFp92I+/Mp2F2Mh2lLISWnflFjzH263RQjzMZ19wgs73ez0o1WmtW+dgA01VxrE3p6l2GLsnBy1VYQOtVSEH/atCCgqpQgKKqYIOiq2CBkqtggLKqQIKgqgCBjpJ2Y5CdJ+zrT9A7HHSTA1dxUdHgzCqJIEwq0SDsKsEg6iqBIEoq/wEcVRZBXFV+QJxV5mBtlDFB5VjYTaGZ2sf4R9PM7U9ZU+lLuaetPP/5Die3ToO1+u+MKtHs06qODB2zBnI/jBd4MPQm1VkY79Tb18gB+C62FdBFsZR6yeIo1YQiLJWMIiqVjQIu1YSCLNWFgijVjYIuhYYCKoWKAiiFgoopxYaKLUWOii2FgkophYp6F3r42W5A9s9OcgNvva8xQaysKXlFytoqdYmQH6tF3toSUo0INq9AAAAAElFTkSuQmCC');
}

.DayPicker-NavButton--next {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAwCAYAAAB5R9gVAAAABGdBTUEAALGPC/xhBQAAAXRJREFUWAnN119ugjAcwPHWzJ1gnmxzB/BBE0n24m4xfNkTaOL7wOtsl3AXMMb+Vjaa1BG00N8fSEibPpAP3xAKKs2yjzTPH9RAjhEo9WzPr/Vm8zgE0+gXATAxxuxtqeJ9t5tIwv5AtQAApsfT6TPdbp+kUBcgVwvO51KqVhMkXKsVJFXrOkigVhCIs1Y4iKlWZxB1rX4gwlpRIIpa8SDkWmggrFq4IIRaJKCYWnSgnrXIQV1r8YD+1Vrn+bReagysIFfLABRt31v8oBu1xEBttfRbltmfjgEcWh9snUS2kNdBK6WN1vrOWxObWsz+fjxevsxmB1GQDfINWiev83nhaoiB/CoOU438oPrhXS0WpQ9xc1ZQWxWHqUYe0I0qrKCQKjygDlXIQV2r0IF6ViEBxVTBBSFUQQNhVYkHIVeJAtkNsbQ7c1LtzP6FsObhb2rCKv7NBIGoq4SDmKoEgTirXAcJVGkFSVVpgoSrXICGUMUH/QBZNSUy5XWUhwAAAABJRU5ErkJggg==');
}

.DayPicker-NavButton--interactionDisabled {
  display: none;
}

.DayPicker-Caption {
  display: table-caption;
  margin-bottom: 0.5em;
  padding: 0 0.5em;
  text-align: left;
}

.DayPicker-Caption > div {
  font-weight: 500;
  font-size: 1.15em;
}

.DayPicker-Weekdays {
  display: table-header-group;
  margin-top: 1em;
}

.DayPicker-WeekdaysRow {
  display: table-row;
}

.DayPicker-Weekday {
  display: table-cell;
  padding: 0.5em;
  color: #8B9898;
  text-align: center;
  font-size: 0.875em;
}

.DayPicker-Weekday abbr[title] {
  border-bottom: none;
  text-decoration: none;
}

.DayPicker-Body {
  display: table-row-group;
}

.DayPicker-Week {
  display: table-row;
}

.DayPicker-Day {
  display: table-cell;
  padding: 0.5em;
  border-radius: 50%;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
}

.DayPicker-WeekNumber {
  display: table-cell;
  padding: 0.5em;
  min-width: 1em;
  border-right: 1px solid #EAECEC;
  color: #8B9898;
  vertical-align: middle;
  text-align: right;
  font-size: 0.75em;
  cursor: pointer;
}

.DayPicker--interactionDisabled .DayPicker-Day {
  cursor: default;
}

.DayPicker-Footer {
  padding-top: 0.5em;
}

.DayPicker-TodayButton {
  border: none;
  background-color: transparent;
  background-image: none;
  box-shadow: none;
  color: #4A90E2;
  font-size: 0.875em;
  cursor: pointer;
}

/* Default modifiers */

.DayPicker-Day--today {
  color: #D0021B;
  font-weight: 700;
}

.DayPicker-Day--outside {
  color: #8B9898;
  cursor: default;
}

.DayPicker-Day--disabled {
  color: #DCE0E0;
  cursor: default;
  /* background-color: #eff1f1; */
}

/* Example modifiers */

.DayPicker-Day--sunday {
  background-color: #F7F8F8;
}

.DayPicker-Day--sunday:not(.DayPicker-Day--today) {
  color: #DCE0E0;
}

.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside) {
  position: relative;

  background-color: #4A90E2;
  color: #F0F8FF;
}

.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside):hover {
  background-color: #51A0FA;
}

.DayPicker:not(.DayPicker--interactionDisabled)
  .DayPicker-Day:not(.DayPicker-Day--disabled):not(.DayPicker-Day--selected):not(.DayPicker-Day--outside):hover {
  background-color: #F0F8FF;
}

/* DayPickerInput */

.DayPickerInput {
  display: inline-block;
}

.DayPickerInput-OverlayWrapper {
  position: relative;
}

.DayPickerInput-Overlay {
  position: absolute;
  left: 0;
  z-index: 1;

  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.day-picker-input__wrapper {
  position: absolute;
  background: white;
  border-radius: 5px;
  border: 1px solid #d3d3d3;
}

.day-picker-input__input {
  width: auto;
}

.month-navigation-bar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 20px 0px 10px 0px;
}

.month-navigation-bar__button {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 5px;
  width: 29px;
  height: 15px;
  color: #42a5f5;
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
}
.month-navigation-bar__button.previous {
  background-image: url(13bca97c528f97bcde7a2ef88727e656.svg);
}
.month-navigation-bar__button.next {
  background-image: url(8831570e06cf57aafd3965adb526c553.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;
}

.editable-service-schedule-date {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 350px;
  -ms-flex-direction: column;
      flex-direction: column;
}

.editable-service-schedule-date .date-time-input__date-input {
  width: 100%;
}

.editable-service-schedule-date .date-time-input__time-input {
  width: 100%;
}

.slot__wrap {
  position: relative;
}

.slot {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 104px;
  height: 46px;
  background: #e8f5fd;
  margin: 6px 3px 5px 4px;
  border-radius: 24px;
  border-style: none;
}

.slot__time,
.slot__timezone {
  color: #42a5f5;
}

.slot__time {
  font-size: 16px;
  line-height: 21px;
}

.slot__timezone {
  font-size: 11px;
}

.slot:not(.clickable) {
  cursor: default;
}

.slot.clickable:not(.occupied):hover {
  box-shadow: 0 0 10px 0 #42a5f5;
}

.slot.clickable:not(.occupied):active {
  background: #bbdefb;
}

.slot.selected {
  font-weight: bold;
  box-shadow: 0 0 5px 1px #42a5f5;
}

.slot.old-selected {
  border: 2px solid #42a5f5;
  background: #bbdefb;
}

.slot.occupied {
  background: #eceff1;
  color: #b0bec5;
  cursor: default;
}

.slot__remove-button {
  border-radius: 100%;
  color: #f50057;
  background: #fff;
  font-size: 15px;
  font-weight: bold;
  position: absolute;
  right: 0;
  top: 0;
  padding: 5px;
  line-height: 15px;
  border: none;
  width: 25px;
  height: 25px;
}

.slot-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.day-picker .DayPicker-wrapper {
  background: #ffffff;
  outline: none;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.13);
  border-radius: 5px;
}

.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--holidays:not(.day-picker .DayPicker-Day--disabled) {
  font-weight: unset;
  color: #f50057;
}

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

.urgency-select__wrap {
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.slot-select {
  height: 100%;
}

.slot-select__urgency-select {
  margin-bottom: 15px;
}

.slot-select__day-picker__wrap {
  position: relative;
}

.slot-select__loader-wrap {
  position: absolute;
  background-color: #ffffffad;
  width: 100%;
  height: 100%;
}

.slot-select__slot-list {
  margin: 10px 0px 20px;
  max-height: 230px;
}
.editable-service-slot .day-picker-weekday {
  padding: 10px;
}

.editable-service-slot .day-picker .DayPicker-Day {
  padding: 4px 12px 10px 12px;
}

.editable-service-slot .day-picker .DayPicker-Day--highlighted:before {
  bottom: 3px;
}

.editable-service-slot .day-picker .DayPicker-Day--selected {
  padding: 3px 11px 9px 11px;
}

.editable-service-slot
  .day-picker
  .DayPicker-Day--highlighted.DayPicker-Day--selected:before {
  bottom: 3px;
}

.editable-service-slot .slot {
  width: 100px;
  height: 42px;
  margin: 8px 6px 7px 7px;
}
.editable-service-video-requested {
  height: 40px;
}
.editable-attachment {
  -ms-flex-align: center;
      align-items: center;
  min-height: 30px;
  margin: 2px 5px 2px 0px;
}

.editable-attachment.disabled {
  opacity: 0.5;
}

.editable-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-attachment__remove-button:disabled {
  opacity: unset;
}
.editable-attachment-upload-button {
  display: -ms-flexbox;
  display: flex;
  height: 45px;
  width: 100%;
  border: solid 1px #42a5f5;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}

.editable-attachment-upload-button__text {
  padding: 0px 25px;
  color: #42a5f5;
  background-image: url(4bf6c01f7d08205cbc30a05b0608d68a.svg);
  background-repeat: no-repeat;
  background-position: 0 center;
}

.editable-attachment-upload-button__input {
  display: none;
}

.editable-attachment-list__scrollbar {
  margin-bottom: 15px;
  max-height: 150px;
}

.editable-news-list-item .editable-attachment-list__scrollbar {
  max-height: 175px;
  width: 100%;
}

.editable-attachment-list{
  width: 350px;
  margin-bottom: 5px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.editable-news-list-item .editable-attachment-list{
  width: 100%;
}
.editable-service-decline__info {
  margin-left: 20px;
}
.editable-patient-discussion {
  width: 90%;
  height: 100%;
  margin: 0 auto;
}

.editable-patient-discussion__main-info {
  margin-top: 35px;
  margin-bottom: 35px;
}

.editable-patient-discussion__main-info__item {
  width: 180px;
  margin-right: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.editable-patient-discussion__main-info__diagnosis {
  width: 400px;
}

.editable-patient-discussion__service-field-group {
  margin-top: 35px;
}

.editable-patient-discussion__reason .textarea-with-scrollbar__scrollbar {
  max-height: 126px;
}

.editable-patient-discussion__save-button {
  -ms-flex-direction: row;
      flex-direction: row;
  margin-bottom: 10px;
  margin-top: 20px;
  -ms-flex-align: center;
      align-items: center;
}

.editable-patient-discussion__save-button > .button-with-loader__button {
  width: 300px;
  height: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.editable-patient-discussion__save-button > .button-with-loader__error {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 10px;
}

.editable-patient-discussion__schedule {
  position: relative
}

.editable-patient-discussion__schedule__disabled::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
}
.editable-doctor-specialization .editable-doctor-specialization__position-input{
  margin: 5px 0;
  width: 281px
}

.editable-service-specialization .editable-doctor-specialization__position-input{
  margin-bottom: 5px;
  width: 350px
}

.doctor-info__name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.doctor-info__doctorName {
  display: -ms-flexbox;
  display: flex;
  column-gap: 8px;
}

.doctor-info__arrow {
  background: url(ad7164b5c32e7ba1a7cd652bc7761c33.svg) no-repeat center;
  background-color: var(--primary-color);
  content: "";
  width: 15px;
  height: 15px;
  -ms-flex-item-align: center;
      align-self: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.2s ease-out;
  -ms-transform: rotate(180deg);
      transform: rotate(180deg);
  margin-top: 14px;
}

.doctor-info__arrow_close {
  -ms-transform: rotate(90deg);
      transform: rotate(90deg);
}

.staff-member-page-header__go-back-link-1 {
  color: #42a5f5;
  font-size: 16px;
  background-image: url(dd1abd2a3276aa6fd99fbcabffc61cd6.svg);
  background-position: right;
  background-repeat: no-repeat;
  padding-right: 30px;
  margin: 25px 0;
}


.doctor-dropbox{
  width: 350px;
}

.buttons-doctor-info{
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.button-doctor-info{
  display: inline-block;
  font-size: 16px;
  margin: 0;
  cursor: pointer;
}
.concilium-info {
  width: 90%;
  margin: 0 auto;
}

.concilium-info__go-back-button {
  color: #42a5f5;
  font-size: 16px;
  background-image: url(e6006f0da898072ea9dd9a07963342cc.svg);
  background-repeat: no-repeat;
  background-size: 25px 17px;
  padding: 0 30px;
  margin: 35px 0;
  border: none;
  height: unset;
}

.concilium-info__title-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
}

.concilium-info__title {
  font-size: 38px;
  font-weight: bold;
  -ms-flex-align: center;
      align-items: center;
}

.concilium-info__control-button {
  margin: 5px;
  height: 40px;
  width: 160px;
}

.concilium-info__main-info {
  margin-top: 40px;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
}

.concilium-info__main-info .wrap-with-label  {
  margin-right: 30px;
}

.concilium-info__participants {
  display: -ms-flexbox;
  display: flex;
}


.concilium-info__participants__content {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
}

.concilium-info__participants__title {
  font-size: 26px;
  font-weight: bold;
  margin: 20px 0;
}

.concilium-info__label {
  font-size: 12px;
  color: #a7a7a7;
  margin: 10px 0;
}

.concilium-info__attachments-container {
  margin-bottom: 20px;
  width: 448px;
}

.concilium-info__attachments-container .downloadable {
  margin: 2px 0;
}

.patient-discussion-list {
  height: 100%;
  width: 90%;
  margin: auto;
}

.patient-discussion-list__top-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding-top: 55px;
  margin-bottom: 50px;
  -ms-flex-align: center;
      align-items: center;
  height: 126px;
}

.patient-discussion-list__top-block__title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 26px;
}

.patient-discussion-list__top-block__controls {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.patient-discussion-list__top-block__controls * {
  font-size: 16px;
}

.patient-discussion-list__top-block__column {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column;
      flex-flow: column;
  -ms-flex-align: end;
      align-items: flex-end;
}

.patient-discussion-list__top-block__tab-link {
  line-height: 18px;
}

.patient-discussion-list__top-block__tab-link.active {
  color: #42a5f5;
  text-decoration: underline;
}

.patient-discussion-list__top-block__button,
.patient-discussion-list__top-block__save-button {
  width: 240px;
  padding: 2px;
  height: 50px;
}

.patient-discussion-list__top-block__save-button__wrap {
  margin-top: 15px;
  -ms-flex-align: center;
      align-items: center;
}

.patient-discussion-list__top-block__save-button__loader {
  margin-right: 15px;
}

.patient-discussion-list__top-block__text {
  margin-top: 20px;
}

.editable-concilium-participants__participant-button {
  border-radius: 4px;
  position: relative;
  margin: 4px 0;
}

.editable-concilium-participants__participant-button:after  {
  content: "";
  position: absolute;
  right: 15px;
  top: calc(50% - 2.5px);
  display: block;
  border: 5px solid transparent;
  border-top: 5px solid white;
}


.editable-concilium-participants__participant-button_open:after {
  top: unset;
  bottom: calc(50% - 2.5px);
  border: 5px solid transparent;
  border-bottom: 5px solid white;
}

.editable-concilium-participants__participant_hidden {
  display: none;
}
.editable-concilium {
  width: 90%;
  height: 100%;
  margin: 0 auto;
}

.editable-concilium__main-info {
  margin-top: 35px;
  margin-bottom: 35px;
}

.editable-concilium__main-info__item {
  width: 180px;
  margin-right: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.editable-concilium__main-info__diagnosis {
  width: 400px;
}

.editable-concilium__service-field-group {
  margin-top: 35px;
}

.editable-concilium__reason .textarea-with-scrollbar__scrollbar {
  max-height: 126px;
}

.editable-concilium__save-button {
  -ms-flex-direction: row;
      flex-direction: row;
  margin-bottom: 10px;
  margin-top: 20px;
  -ms-flex-align: center;
      align-items: center;
}

.editable-concilium__save-button > .button-with-loader__button {
  width: 300px;
  height: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.editable-concilium__save-button > .button-with-loader__error {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 10px;
}

.editable-concilium__participant-button {
  width: 25px;
  height: 25px;
  margin: 0px 10px;
  padding: unset;
  line-height: 25px;
}


.editable-concilium__participants {
  margin-bottom: 30px;
}
.doctor-and-clinic-info {
  width: 430px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.doctor-and-clinic-info__title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 15px;
}

.doctor-and-clinic-info__name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  white-space: pre-wrap;
}

.doctor-and-clinic-info > .label-and-value > .label-and-value__value {
  white-space: pre-wrap;
}
.patient-info {
  width: 400px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.patient-info__title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 15px;
}

.patient-info__name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  white-space: pre-wrap;
}
.patient-address-info {
  padding-top: 70px;
}
.first-appointment-info__column {
  width: 430px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.first-appointment-info__title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 15px;
}

.first-appointment-info__wrap {
  margin: 10px 0;
  white-space: pre-wrap;
}
/* 
.doctor-and-clinic-info > .label-and-value > .label-and-value__value {
  white-space: pre-wrap;
} */
.service-info {
  width: 90%;
  height: 100%;
  margin: 0 auto;
}

.service-info__main-info {
  margin-top: 35px;
  margin-bottom: 48px;
}

.service-info__main-info__date-time {
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: fit-content;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.service-info__main-info__item,
.service-info__main-info__date-time__date,
.service-info__main-info__date-time__time {
  width: 180px;
  margin-bottom: 5px;
  margin-right: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.service-info__main-info__date-time__date {
  width: 150px;
}
.service-info__main-info__date-time__time {
  width: 210px;
}

.service-info__edit-button {
  width: 300px;
  height: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 10px;
}

.wrap-with-label > .wrap-with-label__label{
  line-height: 19px;
  margin-bottom: 5px;
}

.wrap-with-label > .wrap-with-label__content{
  margin-bottom: 8px;
}
.service-first-appointment__input{
  width: 350px;
  max-width: 350px;
}

.service-first-appointment__wrap{
  width: 750px;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.service-first-appointment__column{
  width: 350px;
}

.editable-service {
  width: 90%;
  height: 100%;
  margin: 0 auto;
}

.editable-service__main-info {
  margin-top: 35px;
  margin-bottom: 35px;
}

.editable-service__main-info__item {
  width: 180px;
  margin-left: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.editable-service__input {
  width: 750px;
}

.editable-service__save-button {
  -ms-flex-direction: row;
      flex-direction: row;
  padding-bottom: 50px;
  margin-top: 20px;
  -ms-flex-align: center;
      align-items: center;
}

.editable-service__save-button > .button-with-loader__button {
  width: 300px;
  height: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.editable-service__save-button > .button-with-loader__error {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 10px;
}

.editable-service__slot-select {
  margin-top: 20px;
}

.editable-service__mandatory-explanation{
  font-size: 12px;
  color: #a7a7a7;
}

.editable-service__mandatory-explanation::before {
  content: "* ";
  color: #d22c75;
}
.service-list-header {
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding-top: 55px;
  margin-bottom: 50px;
  -ms-flex-align: center;
      align-items: center;
  height: 126px;
}

.service-list-header__title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 26px;
}

.service-list-header__text {
  margin-top: 20px;
}

.service-list-header__button-block {
  -ms-flex-align: end;
      align-items: flex-end;
}

.service-list-header__button {
  width: 240px;
  padding: 2px;
  height: 50px;
}

.service-list-header__save-button__wrap {
  margin-top: 15px;
  -ms-flex-align: center;
      align-items: center;
}

.service-list-header__save-button__loader {
  margin-right: 15px;
}
.service-list {
  height: 100%;
  width: 90%;
  margin: auto;
}
.service-header {
  width: 100%;
  height: 80px;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  border-bottom: 1px solid #e1e1e1;
  background-color: #ffffff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.service-header__navigation {
  width: 90%;
  margin: 0 auto;
  -ms-flex-align: center;
      align-items: center;
}

.service-header__link {
  font-size: 14px;
  padding-right: 30px;
  text-decoration: none;
  color: #4a4a4a;
}

.service-header__link:hover {
  color: #42a5f5;
}

.service-header__link.active {
  color: #42a5f5;
  text-decoration: underline;
}

.services-page {
  height: 100%;
}

.staff-list-header {
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding-top: 50px;
  margin-bottom: 50px;
  -ms-flex-align: center;
      align-items: center;
  height: 126px;
}

.staff-list-header__title {
  font-size: 26px;
}

.staff-list-header__new-staff-member-button {
  height: 48px;
  width: 240px;
  right: 70px;
}

.staff-list-header__button-block {
  -ms-flex-align: end;
      align-items: flex-end;
}

.staff-list-header__outline-button {
  width: 240px;
  padding: 2px;
  height: 54px;
  margin-left: 15px;
}

.staff-list-header__save-button__wrap {
  margin-top: 15px;
  -ms-flex-align: center;
      align-items: center;
}

.staff-list-header__save-button__loader {
  margin-right: 15px;
}
.doctor-list {
  height: 100%;
  width: 90%;
  margin: auto;
}
.staff-member-page-header {
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding-top: 55px;
  margin-top: 30px;
  -ms-flex-align: center;
      align-items: center;
  height: 126px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.staff-member-page-header__go-back-link {
  text-decoration: none;
  color: #42a5f5;
  font-size: 16px;
  background-image: url(e6006f0da898072ea9dd9a07963342cc.svg);
  background-repeat: no-repeat;
  padding: 0 30px;
  margin: 25px 0;
  width: -webkit-fit-content;
  width: fit-content;
}

.staff-member-page-header__title {
  font-size: 26px;
}

.staff-member-page-header__row{
  margin-top: 15px;
  -ms-flex-align: center;
      align-items: center;
}
.editable-doctor-info__searching-loader {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-left: 10px;
  -ms-flex-item-align: center;
      align-self: center;
}
.editable-doctor-info__searching-loader > span {
  clip: rect(12px, 24px, 24px, 0);
}

.editable-doctor-info__control {
  width: 300px;
  margin-bottom: 5px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.editable-doctor-info__control > .input {
  width: 300px;
}

.editable-doctor-info__textarea {
  margin-bottom: 5px;
}

.editable-doctor-info__textarea .textarea-with-scrollbar__scrollbar {
  max-height: 300px;
}

.editable-doctor-info__generate-button {
  width: -webkit-fit-content;
  width: fit-content;
  color: #42a5f5;
  font-size: 14px;
  text-decoration: underline;
  padding: 5px 0;
  text-align: left;
  border: none;
  height: -webkit-fit-content;
  height: fit-content;
}

.editable-doctor-info__supplementary-info {
  position: absolute;
  left: 17.02rem;
  top: 1.4rem;
  fill-opacity: 1;
  z-index: 1;
 }
 .editable-doctor-info__tooltip-text{
   width: 400px;
 }

 .editable-doctor-info__textarea .textarea-with-scrollbar{
  width: 300px;
}
.editable-doctor-list-wrap__header {
  -ms-flex-align: center;
      align-items: center;
  width: -webkit-fit-content;
  width: fit-content;
}

.editable-doctor-list-wrap__header__label {
  line-height: 27px;
  font-size: 12px;
  color: #a7a7a7;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.editable-doctor-list-wrap.mandatory > .editable-doctor-list-wrap__header > .editable-doctor-list-wrap__header__label::after {
  content: " *";
  color: #f50057;
  font-weight: normal;
}

.editable-doctor-list-wrap__header__add-button {
  width: 21px;
  height: 21px;
  margin: 0px 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: unset;
  line-height: 21px;
}

.editable-doctor-list-wrap__content__empty-text {
  min-width: 200px;
  white-space: nowrap;
}

.editable-doctor-appointment-type {
  border-left: 1px solid #e1e1e1;
  padding-left: 15px;
  margin: 5px 0px;
}

.doctor-appointment-type-list__label {
  line-height: 27px;
  font-size: 12px;
  color: #a7a7a7;
}

.editable-doctor-pay-method {
  border-left: 1px solid #e1e1e1;
  padding-left: 15px;
  margin: 5px 0px;
}

.doctor-pay-method-list__label {
  line-height: 27px;
  font-size: 12px;
  color: #a7a7a7;
}

.editable-doctor-service {
  border-left: 1px solid #e1e1e1;
  padding-left: 15px;
  margin: 5px 0px;
}

.editable-doctor-service__textarea .textarea-with-scrollbar__scrollbar {
  max-height: 120px;
}

.doctor-service-list {
  margin-top: 5px;
}

.doctor-service-list__label {
  line-height: 27px;
  font-size: 12px;
  color: #a7a7a7;
}

.editable-doctor-specialization__position{
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin: 2px 0;
  padding: 3px;
  border-bottom: 1px #E1E1E1 solid;
}
.editable-doctor-specialization {
  border-left: 1px solid #e1e1e1;
  padding-left: 15px;
  margin: 5px 0px;
}

.editable-doctor-specialization__specialization-dropdown,
.editable-doctor-specialization__specialization-input {
  width: 100%;
}

.editable-doctor-specialization__specialization-dropdown
  > .dropdown__content-wrap {
  max-height: 270px;
}

.editable-doctor-specialization__specialization-dropdown .dropdown__item,
.editable-doctor-specialization__specialization-dropdown .dropdown__title {
  height: -webkit-fit-content;
  height: fit-content;
  white-space: pre-wrap;
}

.editable-doctor-specialization__specialization-dropdown .dropdown__title {
  padding-right: 30px;
}

.editable-doctor-specialization__remove-specialization {
  height: 21px;
  width: 21px;
  font-size: 11px;
  line-height: 21px;
  font-weight: bold;
  margin-left: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: unset;
}


.editable-doctor-specialization__add-position {
  height: 21px;
  width: 21px;
  margin-left: 20px;
  padding: unset;
  margin-top: 30px;
}

.site__header__label {
  line-height: 27px;
  font-size: 12px;
  color: #a7a7a7;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.site-header__tooltip{
  display: -ms-flexbox;
  display: flex;
}

.editable-doctor-clinic {
  width: 470px;
  margin: 10px;
  padding: 15px;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  box-shadow: 0 7px 9px -3px hsla(240, 9%, 48%, 0.16);
}

.editable-doctor-clinic__header {
  margin-bottom: 5px;
}

.editable-doctor-clinic__header__clinic-dropdown,
.editable-doctor-clinic__header__clinic-dropdown {
  width: 100%;
}

.editable-doctor-clinic__header__clinic-dropdown > .dropdown__content-wrap {
  max-height: 350px;
}

.editable-doctor-clinic__header__remove-clinic {
  height: 21px;
  width: 21px;
  font-size: 11px;
  line-height: 21px;
  font-weight: bold;
  margin-left: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: unset;
}

.editable-doctor-clinic__combobox-item__address {
  margin-top: 5px;
  font-size: 12px;
}

.form__doctors__selected-container {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.form__pill {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    border-radius: 15px;
    background-color: #dcf0ff;
    height: -webkit-fit-content;
    height: fit-content;
    padding: 6px 12px;
    margin: 5px 10px;
    width: -webkit-fit-content;
    width: fit-content;
}

.form__pill-remove,
.form__pill-remove-small {
    margin-left: 5px;
    cursor: pointer;
}

.form__pill-remove-small {
    font-size: 14px;
}

.form__pill-remove:hover,
.form__pill-remove-small:hover {
    color: salmon;
}

.form__doctors__selected{
    padding: 20px 0 0 0;

    width: 100%;
}

.form__doctors__selected-title{
    text-align: center;
    font-size: 20px;
}
.form__doctors__selected-container{
    border: 1px solid #d3d3d3;
}

.form__doctors__selected-button{
    width: -webkit-fit-content;
    width: fit-content;
    padding-right: 13px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    background-color: #42a5f5;
    color: #fff;
    border-radius: 5px;
    margin:5px 0;
    cursor: pointer;
}
.form__doctors__selected-button:hover {
    box-shadow: 0 0 10px 0 rgb(66 165 245 / 61%);
}


.form-doctor-list-wrap__header__label {
    line-height: 27px;
    font-size: 12px;
    color: #42a5f5;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.form__doctors__selected-container_button{
    margin-top: 10px;
    width: 100px;
}

.doctor-pay-method {
  padding-left: 15px;
  margin: 5px 0px;
  border-left: 1px solid #e1e1e1;
}

.doctor-pay-method__name {
  line-height: 21px;
}

.doctor-pay-method__appointment-type {
  padding-left: 10px;
  margin: 5px 0px;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.doctor-service {
  padding-left: 15px;
  margin: 5px 0px;
  border-left: 1px solid #e1e1e1;
}

.doctor-service__name {
  font-weight: bold;
  font-size: 14px;
  line-height: 21px;
}

.doctor-service__pay-methods > .wrap-with-label__label {
  line-height: 21px;
}

.doctor-specialization {
  border-left: 1px solid #e1e1e1;
  padding-left: 15px;
  margin: 5px 0px;
}

.doctor-specialization__name {
  font-weight: bold;
  line-height: 21px;
}

.doctor-specialization__position > .label-and-value__label {
  line-height: 21px;
}

.doctor-specialization__services > .wrap-with-label__label {
  line-height: 21px;
}

.doctor-clinic {
  width: 370px;
  margin: 10px;
  padding: 15px;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  box-shadow: 0 7px 9px -3px hsla(240, 9%, 48%, 0.16);
}

.doctor-clinic__name {
  font-weight: bold;
  font-size: 18px;
  line-height: 21px;
  margin-bottom: 5px;
}
.doctor-clinic__supervisor{
  font-weight: bold;
  font-size: 16px;
  line-height: 30px;
  margin: 15px 0 5px 0;
}

.doctor-site__container{
  margin-bottom: 5px;
}

.doctor-clinic__address {
  font-size: 14px;
}

.doctor-clinic__specializations {
  margin-top: 10px;
}

.doctor-clinic__specializations > .wrap-with-label__label {
  line-height: 21px;
}

.doctor-clinic__duty-button {
  padding: 10px 10px;
  height: 25px;
  margin: 0 auto;
  margin-bottom: 10px;
  width: 200px;
}

.doctor-clinic__duty-row {
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 100%;
  -ms-flex-line-pack: center;
      align-content: center;
}

.doctor-clinic__duty-text {
  color: white;
  font-size: 11pt;
}

.doctor-clinic__duty-image {
  width: 17px;
  height: 17px;
  background-image: url(85a4371fcf2c1f547a08490902219f9a.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.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;
  background-color: #1565C0;
}

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

.editable-doctor-avatar {
  margin-left: 30px;
  width: 100px;
  height: 100px;
}
.editable-doctor {
  height: 100%;
  width: 90%;
  margin: auto;
  -ms-flex-align: start;
      align-items: flex-start;
}

.editable-doctor__content-wrap {
  width: 100%;
  height: 100%;
}

.editable-doctor__column {
  width: 300px;
  margin-right: 80px;
}

.editable-doctor__save-button {
  margin-top: 20px;
}

.editable-doctor__save-button > .button-with-loader__button {
  width: 300px;
  height: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.editable-doctor__save-button > .button-with-loader__error {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.loader-or-empty {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}

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

.doctor-info {
  height: 100%;
  width: 90%;
  margin: auto;
  -ms-flex-align: start;
      align-items: flex-start;
}

.doctor-info__header {
  width: 100%;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.doctor-info__content {
  width: 100%;
}

.doctor-info__column {
  margin-right: 80px;
}

.doctor-info__label-and-value {
  width: 300px;
  margin-bottom: 5px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.doctor-info__buttons-wrap {
  margin-top: 10px;
}

.doctor-info__button {
  width: 300px;
  height: 48px;
  margin-top: 10px;
}

.doctor-info__education__scrollbar {
  min-height: 27px;
  max-height: 97px;
  margin-bottom: 15px;
}

.doctor-info__education__scrollbar > .scrollbar__track.horizontal {
  height: 7px;
  border: none;
}

.doctor-info__education__scrollbar > .scrollbar__track.vertical {
  width: 7px;
  border: none;
}

.doctor-info__education__text {
  line-height: 27px;
  white-space: pre-wrap;
}

.doctor-info__avatar {
  margin-left: 30px;
  width: 100px;
  height: 100px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.schedule-edit-form {
  margin-left: 100px;
  width: -webkit-fit-content;
  width: fit-content;
}

.schedule-edit-form__radio-buttons {
  padding: 15px 0;
}

.schedule-edit-form__urgency-button {
  margin-right: 20px;
  max-width: 300px;
}

.schedule-edit-form__control-group {
  margin: 10px 0px;
}

.schedule-edit-form__control {
  width: 200px;
  margin-right: 30px;
}

.schedule-edit-form__button {
  width: 150px;
  margin-right: 10px;
}

.schedule-edit-form__button  > .button-with-loader__button {
  width: 100%;
}

.schedule-edit-form__result,
.schedule-edit-form__error {
  font-size: 14px;
  line-height: 21px;
}

.schedule-edit-form__result {
  color: #a7a7a7;
}

.schedule-edit-form__error {
  color: #d22c75;
}

.day-picker.date-time-input__calendar{
  position: absolute;
  z-index: 1;
  top: -41px;
  left: 180px;
}
.doctor-schedule {
  height: 100%;
  width: 90%;
  margin: auto;
  -ms-flex-align: start;
      align-items: flex-start;
}

.doctor-schedule__header {
  width: 100%;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.doctor-schedule__content-wrap {
  height: 100%;
}
.staff-list {
  height: 100%;
  width: 90%;
  margin: auto;
}

.clinic-multi-select-item {
  height: -webkit-fit-content;
  height: fit-content;
  min-height: 60px;
  text-align: left;
  padding: 5px 0px;
  border-radius: unset;
}

.clinic-multi-select-item__name {
  font-weight: bold;
  white-space: pre-wrap;
}

.clinic-multi-select-item__address {
  font-size: 14px;
  white-space: pre-wrap;
  margin-top: 5px;
}

.clinic-multi-select-item__name_withChild::after {
  content: "★";
  font-size: 11px;
  vertical-align: super;
  margin-left: 2px;
  color: #42a5f5;
}
.editable-staff-member {
  height: 100%;
  width: 90%;
  margin: auto;
  -ms-flex-align: start;
      align-items: flex-start;
}

.editable-staff-member__content-wrap {
  width: 100%;
}

.editable-staff-member__column {
  margin-right: 80px;
}

.editable-staff-member__control {
  width: 300px;
  margin-bottom: 5px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.editable-staff-member__control > .input {
  width: 300px;
}

.editable-staff-member__control.dropdown.open {
  margin-bottom: 16px;
}

.editable-staff-member__save-button {
  -ms-flex-direction: row;
      flex-direction: row;
}

.editable-staff-member__save-button > .button-with-loader__button {
  width: 300px;
  height: 48px;
  margin-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.editable-staff-member__save-button > .button-with-loader__error {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.editable-staff-member__multi-select {
  width: 450px;
}

.editable-staff-member__multi-select .multi-select {
  max-height: 350px;
}

.editable-staff-member__combobox {
  width: 300px;
  border: none;
  margin-bottom: 5px;
}

.editable-staff-member__combobox .button {
  text-align: left;
  font-size: 16px;
  padding: 10px;
  border-radius: unset;
}

.editable-staff-member__combobox .input {
  width: 100%;
}

.editable-staff-member__multi-select {
  width: 450px;
}

.editable-staff-member__multi-select .multi-select {
  max-height: 350px;
}

.editable-staff-member__tooltip {
  z-index: 1;
  position: absolute;
  top: 30px;
}

.editable-staff-member__tooltip-text {
  width: 500px;
}
.staff-member-clinic {
  height: -webkit-fit-content;
  height: fit-content;
  min-height: 60px;
  text-align: left;
  padding: 5px 0px;
}

.staff-member-clinic__name {
  white-space: pre-wrap;
}

.staff-member-clinic__address {
  font-size: 14px;
  white-space: pre-wrap;
  margin-top: 5px;
}

.staff-member-info {
  height: 100%;
  width: 90%;
  margin: auto;
  -ms-flex-align: start;
      align-items: flex-start;
}

.staff-member-info__label-and-value {
  width: 300px;
  margin-bottom: 5px;
}

.staff-member-info__edit-button {
  width: 300px;
  height: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.staff-member-info__content-wrap {
  width: 100%;
}

.staff-member-info__column {
  margin-right: 80px;
}
.clinic-list-header {
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding-top: 50px;
  margin-bottom: 50px;
  -ms-flex-align: center;
      align-items: center;
  height: 126px;
}

.clinic-list-header__title {
  font-size: 26px;
}

.clinic-list-header__new-clinic-button {
  height: 48px;
  width: 240px;
  right: 70px;
}

.clinic-list-header__button-block {
  -ms-flex-align: end;
      align-items: flex-end;
}

.clinic-list-header__outline-button {
  width: 240px;
  padding: 2px;
  height: 54px;
}

.clinic-list-header__save-button__wrap {
  margin-top: 15px;
  -ms-flex-align: center;
      align-items: center;
}

.clinic-list-header__save-button__loader {
  margin-right: 15px;
}

.clinic-list {
  height: 100%;
  width: 90%;
  margin: auto;
}

.clinic-available-to-list__label {
  line-height: 27px;
  font-size: 12px;
  color: #a7a7a7;
}

.clinic-available-to-list__item {
  padding-left: 15px;
  margin: 2px 0px;
}

.editable-clinic-pay-method {
  border-left: 1px solid #e1e1e1;
  padding-left: 15px;
  margin: 3px 0px;
}

.editable-clinic-pay-method__header > .checkbox-with-label__label {
  font-weight: bold;
}

.editable-clinic-pay-method__scenario {
  padding-left: 15px;
  margin: 2px 0px;
}

.editable-clinic-pay-method__wrap-with-label > .wrap-with-label__label {
  line-height: 21px;
}

.clinic-pay-method-list__label {
  line-height: 27px;
  font-size: 12px;
  color: #a7a7a7;
}

.editable-clinic-service {
  border-left: 1px solid #e1e1e1;
  padding-left: 15px;
  margin: 5px 0px;
  width: 350px;
}

.editable-clinic-service__header > .checkbox-with-label__label {
  font-weight: bold;
}

.clinic-service-list__label {
  line-height: 27px;
  font-size: 12px;
  color: #a7a7a7;
}

.clinic-editor {
  height: 100%;
  width: 90%;
  margin: auto;
  -ms-flex-align: start;
      align-items: flex-start;
}

.clinic-editor_header {
  width: 100%;
  margin: 0 auto;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding-top: 55px;
  margin-bottom: 20px;
  height: 126px;
}

.clinic-editor__content-wrap {
  width: 100%;
}

.clinic-editor__column {
  margin-right: 30px;
}

.clinic-editor__control {
  width: 300px;
  margin-bottom: 5px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.clinic-editor__control .dropdown__content-wrap {
  z-index: 10;
}

.clinic-editor__control > .input {
  width: 300px;
}

.clinic-editor__control.dropdown.open {
  margin-bottom: 16px;
}

.clinic-editor__save-button > .button-with-loader__button {
  width: 300px;
  height: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 20px;
  margin-bottom: 5px;
}

.clinic-editor__tooltip {
  top: -5px;
}

.clinic-editor__supplementary-info {
  position: absolute;
  top: 1.5rem;
  fill-opacity: 1;
  z-index: 1;
  right: 0;
}
.clinic-editor__tooltip-text{
  width: 400px;
}

.clinic-editor__textarea .textarea-with-scrollbar{
  width: 300px;
}

.clinic-editor .combo-box__content-wrap {
  z-index: 2;
}

.service-scenario {
  padding-left: 15px;
  line-height: 21px;
}

.pay-method {
  padding-left: 15px;
  margin: 5px 0px;
  border-left: 1px solid #e1e1e1;
}

.pay-method__name {
  line-height: 21px;
  font-weight: bold;
  font-size: 14px;
}

.clinic-service {
  margin: 10px;
  padding: 15px;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  box-shadow: 0 7px 9px -3px hsla(240, 9%, 48%, 0.16);
  width: 350px;
}

.clinic-service__name {
  font-weight: bold;
  font-size: 14px;
}

.clinic-service__available-to {
  padding-left: 15px;
  line-height: 21px;
}

.clinic-info {
  height: 100%;
  width: 90%;
  margin: auto;
  -ms-flex-align: start;
      align-items: flex-start;
}

.clinic-page-header {
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding-top: 55px;
  margin-bottom: 20px;
  height: 126px;
}

.clinic-page-header__go-back-link {
  text-decoration: none;
  color: #42a5f5;
  font-size: 16px;
  background-image: url(e6006f0da898072ea9dd9a07963342cc.svg);
  background-repeat: no-repeat;
  padding: 0 30px;
  width: -webkit-fit-content;
  width: fit-content;
}

.clinic-page-header__title {
  margin-top: 15px;
  font-size: 26px;
  margin-bottom: 40px;
}

.clinic-info__label-and-value {
  width: 300px;
  margin-bottom: 5px;
}

.clinic-info__url .text-with-label__text {
  word-break: break-all;
}

.clinic-info__buttons-wrap {
  margin-top: 10px;
}

.clinic-info__edit-button,
.clinic-info__delete-button {
  width: 300px;
  height: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 10px;
}

.clinic-info__content-wrap {
  width: 100%;
}

.clinic-info__column {
  margin-right: 30px;
  width: 300px;
}

.clinic-info__insurance-name {
  margin: 5px 0px;
}

.clinic-info__education__scrollbar {
  min-height: 27px;
  max-height: 97px;
  margin-bottom: 15px;
}

.clinic-info__child-clinic {
  margin: 5px 0;
}
.patient-list {
  height: 100%;
  width: 90%;
  margin: auto;
}

.patient-list .with-checkboxes .rt-td:first-child,
.patient-list .with-checkboxes .rt-th:first-child {
  -ms-flex-item-align: center;
      align-self: center;
}
.patient-info {
  height: 100%;
  -ms-flex-align: start;
      align-items: flex-start;
  width: -webkit-fit-content;
  width: fit-content;
  margin: 0 5%;
}

.patient-info__header {
  width: 100%;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.patient-info__content {
  width: 100%;
}

.patient-info__column {
  margin-right: 80px;
}

.patient-info__label-and-value {
  width: 300px;
  margin-bottom: 5px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.patient-info__button {
  width: 300px;
  height: 48px;
}

.patient-info__row{
  -ms-flex-align: center;
      align-items: center;
  margin-top: 10px;
  width: 100%;
}

.patient-info__lastCovidFormDate__text{
  color: #42a5f5;
  font-size: 14px;
  margin-left: 10px;
}
.covid-form-page {
  width: 80%;
  margin: auto;
}

.covid-form-page__title {
  font-size: 38px;
  font-weight: bold;
  color: #3a4146;
  margin-top: 45px;
  margin-bottom: 16px;
}

.covid-form-page__button {
  margin: 10px 0;
  -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;
}
.group-radio-buttons__radio {
  padding: 10px;
  padding-left: 0;
}
.covid-form-input {
  margin: 10px;
  margin-left: 0;
  max-width: 250px;
}

.covid-form-dropdown {
  margin: 10px;
  margin-left: 0;
  max-width: 250px;
}

.editable-patient {
  height: 100%;
  width: 90%;
  margin: auto;
  -ms-flex-align: start;
      align-items: flex-start;
}

.editable-patient__column {
  width: 300px;
  margin-right: 80px;
}

.editable-patient__content-wrap {
  width: 100%;
  height: 100%;
}

.editable-patient__save-button {
  margin-top: 20px;
}

.editable-patient__save-button > .button-with-loader__button {
  width: 300px;
  height: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.editable-patient__save-button > .button-with-loader__error {
  -ms-flex-negative: 0;
      flex-shrink: 0;
} 

.refbooks-page-header {
  width: 100%;
  height: 80px;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  border-bottom: 1px solid #e1e1e1;
  background-color: #ffffff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.refbooks-page-header__navigation {
  width: 90%;
  margin: 0 auto;
  -ms-flex-align: center;
      align-items: center;
}

.refbooks-page-header__link {
  font-size: 14px;
  padding-right: 30px;
  text-decoration: none;
  color: #4a4a4a;
}

.refbooks-page-header__link:hover {
  color: #42a5f5;
}

.refbooks-page-header__link.active {
  color: #42a5f5;
  text-decoration: underline;
}

.editable-refbook-list-item {
  min-height: 40px;
  width: 340px;
  margin: 5px 0px;
}

.editable-refbook-list-item__controls-wrap {
  -ms-flex-align: center;
      align-items: center;
}

.editable-refbook-list-item__controls-wrap__input {
  margin-right: 5px;
}

.editable-refbook-list-item__controls-wrap__save-button,
.editable-refbook-list-item__controls-wrap__cancel-button {
  width: 26px;
  height: 26px;
  margin: 0px 2px;
  padding: unset;
}

.editable-refbook-list-item__controls-wrap__save-button {
  background-image: url(ba9d46fe8d928c607d3dfdeb63ebfc96.svg);
  background-size: contain;
}

.editable-refbook-list-item__controls-wrap__cancel-button {
  background-image: url(30e1c776ab83640b0abe6500b32e274c.svg);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
}

.editable-refbook-list-item__error-text {
  margin-top: 5px;
  font-size: 12px;
  color: #f50057;
  line-height: 15px;
}

.add-refbook-list-item-button {
  height: 40px;
  width: 300px;
  margin: 5px 0px;
}

.refbook-list-item {
  min-height: 40px;
  width: 100%;
  margin: 5px 0px;
  -ms-flex-align: center;
      align-items: center;
}

.refbook-list-item:hover > .refbook-list-item__edit-button,
.refbook-list-item:hover > .refbook-list-item__remove-button {
  visibility: visible;
}

.refbook-list-item__name {
  white-space: pre-wrap;
  word-break: break-word;
}

.refbook-list-item__edit-button {
  height: 26px;
  width: 26px;
  margin: 0px 2px 0px 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  visibility: hidden;
  background-image: url(fb8cb65a6c9e8ddff7b894a1fe7a203b.svg);
  background-size: contain;
  padding: unset;
}

.refbook-list-item__remove-button {
  height: 26px;
  width: 26px;
  margin: 0px 2px 0px 5px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 16px;
  visibility: hidden;
  padding: unset;
}

.specialization-refbook {
  width: 90%;
  height: 100%;
  margin: 0px auto;
  padding-top: 30px;
}

.specialization-refbook__content-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.specialization-refbook__column {
  width: 350px;
  margin-right: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.region-refbook-list-item {
  margin: 10px 0px;
  padding: 15px;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  box-shadow: 0 7px 9px -3px hsla(240, 9%, 48%, 0.16);
}

.region-refbook-list-item__cities-wrap > .wrap-with-label__content {
  padding-left: 15px;
  border-left: 1px solid #e1e1e1;
}

.region-refbook {
  width: 90%;
  height: 100%;
  margin: 0px auto;
  padding-top: 30px;
}

.region-refbook__content-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.region-refbook__column {
  width: 350px;
  margin-right: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.refbooks-page {
  height: 100%;
}

.feedback {
  height: 100%;
  width: 80%;
  margin: auto;
  -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: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-direction: column;
      flex-direction: column;
  min-height: calc(100% - 90px);
  width: 70%;
  margin: 0 auto;
}


.feedback__save-button {
  -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;
}



.editable-news-list-item__save-button,
.editable-news-list-item__cancel-button {
  width: 26px;
  height: 26px;
  margin: 3px 2px;
  padding: unset;
}

.editable-news-list-item__save-button {
  background-image: url(ba9d46fe8d928c607d3dfdeb63ebfc96.svg);
  background-size: contain;
}

.editable-news-list-item__cancel-button {
  background-image: url(30e1c776ab83640b0abe6500b32e274c.svg);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
}

.editable-news-list-item__error-text {
  margin-top: 5px;
  font-size: 12px;
  color: #f50057;
  line-height: 15px;
}

.editable-news-list-item__textarea {
  margin-top: 10px;
  width: 400px;
  height: 150px;
  border-radius: 8px 8px 0 0;
}

.editable-news-list-item {
  min-height: 250px;
  width: 400px;
  margin: 15px 20px;
}

.editable-news-list-item .image-attachment {
  height: 180px !important;
  text-align: center !important; 
  margin: 10px auto;
}

.editable-news-list-item .image-attachment.downloadable {
  cursor: pointer;
}

.editable-news-list-item .image-attachment__image {
  max-width: 100%;
  max-height: 100%;
  opacity: 0.3;
  border-radius: 10px;
}

.editable-news-list-item__attachments{
  margin-top: 200px;
  z-index: 1;
  position: absolute;
  border: 1px solid #E1E1E1; background-color: white;
  width: 400px;
  padding: 12px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0px 10px 15px 0px rgba(34, 60, 80, 0.062);
}

.editable-news-list-item__input:-ms-input-placeholder  {
  color: #757575;
}

.editable-news-list-item__input::placeholder  {
  color: #757575;
}

.editable-news-list-item__tags {
  column-gap: 8px;
  row-gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.editable-news-list-item__tag {
  font-size: 12px;
  margin: unset;
  padding: 4px 12px;
  -ms-flex-align: center;
      align-items: center;
}

.editable-news-list-item__tag-remove {
  font-size: 12px;
}
.add-news-list-item-button {
  height: 40px;
  width: 300px;
  margin: 10px 2%;
}
.add-news-list-item-edit{
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: start;
      align-content: flex-start;
}
.news-list-item {
  margin: 15px 20px;
  padding: 15px 10px 15px 15px;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  box-shadow: 0 7px 9px -3px hsla(240, 9%, 48%, 0.16);
  min-height: 250px;
  max-height: 250px;
  width:400px;
  transition: all 0.5s ease-out;
}

.news-list-item:hover {
  box-shadow: 0 7px 18px -3px hsla(240, 8%, 38%, 0.247);
}

.news-list-item:hover  .news-list-item__edit-button {
  opacity: 1;
}

.news-list-item__date {
  font-size: 0.7rem;
  margin-bottom: 7px;
  color: rgb(197, 197, 197);
}

.news-list-item__title {
  font-size: 1rem;
  word-break: break-word;
  margin-bottom: 15px;
}

.news-list-item__text, .news-list-item__text a {
  font-size: 0.8rem;
  margin-top: 10px;
}

.news-list-item__column{
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 100%;
}

.news-list-item__row {
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding-right: 10px;
}

.news-list-item__edit-button {
  transition: all 0.3s ease-in-out;
  height: 26px;
  width: 26px;
  opacity: 0;
  background-image: url(fb8cb65a6c9e8ddff7b894a1fe7a203b.svg);
  background-size: contain;
  padding: unset;
}

.news-list-item__tags {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 4px;
  column-gap: 4px;
}


.news-list-item__tag {
  font-size: 13px;
  color: #42a5f5;
}
.news__wrap {
  min-height: calc(100% - 90px);
  width: 90%;
  margin: 0 auto;
  padding-top: 30px;
}

.news__column {
  width: 100%;
  margin-right: 30px;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.news__clinic{
  width: 300px;
  margin: 0 2%;
}

.news__search {
  width: 300px;
  margin: 8px 2%;
}

.editable-faq-list-item__save-button,
.editable-faq-list-item__cancel-button {
  width: 26px;
  height: 26px;
  margin: 3px 2px;
  padding: unset;
}

.editable-faq-list-item__save-button {
  background-image: url(ba9d46fe8d928c607d3dfdeb63ebfc96.svg);
  background-size: contain;
}

.editable-faq-list-item__cancel-button {
  background-image: url(30e1c776ab83640b0abe6500b32e274c.svg);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
}

.editable-faq-list-item{
  width: 40%;
}

.faq__wrap__textarea {
  width: 400px;
  height: 130px;
}

.faq__wrap__input {
  margin-bottom: 10px;
}

.faq__wrap__input:-ms-input-placeholder  {
  color: #757575;
}

.faq__wrap__input::placeholder  {
  color: #757575;
}

.editable-faq-list-item {
  min-height: 200px;
  width: 400px;
  margin: 15px 20px 0 20px;
}

.faq-list-item {
  margin: 15px 20px 20px 20px;
  padding: 10px 5px 0 15px;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  box-shadow: 0 7px 9px -3px hsla(240, 9%, 48%, 0.16);
  min-height: 180px;
  max-height: 180px;
  width:400px;
  transition: all 0.5s ease-out;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

.faq-list-item:hover {
  box-shadow: 0 7px 18px -3px hsla(240, 8%, 38%, 0.247);
}

.faq-list-item__title {
  font-size: 12px;
  color:#a7a7a7;overflow: hidden
}

.faq-list-item__column{
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 100%;
  min-height: 160px;
  z-index: -10;
}

.faq-list-item__buttons{
  transition: all 0.3s ease-in-out;
  opacity: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 55px;
  -ms-flex-item-align: end;
      align-self: flex-end;
  position: absolute;
  z-index: 1;
  margin: 0 5px;
}

.faq-list-item:hover .faq-list-item__buttons {
  opacity: 1;
}

.faq-list-item__text, .faq-list-item__text * {
  font-size: 10pt;
  word-break: break-word;
  margin: 5px 0;
  padding-right: 15px;
}

.faq-list-item__edit-button {
  height: 25px;
  width: 25px;
  background-image: url(fb8cb65a6c9e8ddff7b894a1fe7a203b.svg);
  background-size: contain;
  padding: unset;
}

.faq-list-item__remove-button {
  height: 25px;
  width: 25px;
  line-height: 16px;
  padding: unset;
}
.health-diary-list-header {
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding-top: 50px;
  margin-bottom: 50px;
  -ms-flex-align: center;
      align-items: center;
  height: 126px;
}

.health-diary-list-header__title {
  font-size: 26px;
}

.health-diary-list-header__new-clinic-button {
  height: 48px;
  width: 240px;
  right: 70px;
}

.health-diary-list-header__button-block {
  -ms-flex-align: end;
      align-items: flex-end;
}

.health-diary-list-header__outline-button {
  width: 240px;
  padding: 2px;
  height: 54px;
}

.health-diary-list-header__save-button__wrap {
  margin-top: 15px;
  -ms-flex-align: center;
      align-items: center;
}

.health-diary-list-header__save-button__loader {
  margin-right: 15px;
}

.health-diary-list {
  height: 100%;
  width: 90%;
  margin: auto;
}

.health-diary-info {
  height: 100%;
  width: 90%;
  margin: auto;
  /* align-items: flex-start; */
}

.health-diary-page-header {
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding-top: 55px;
  margin-bottom: 50px;
  height: 126px;
}

.health-diary-page-header__go-back-link {
  text-decoration: none;
  color: #42a5f5;
  font-size: 16px;
  background-image: url(e6006f0da898072ea9dd9a07963342cc.svg);
  background-repeat: no-repeat;
  padding: 0 30px;
  width: -webkit-fit-content;
  width: fit-content;
}

.health-diary-page-header__title {
  font-size: 38px;
  font-weight: bold;
  -ms-flex-align: center;
      align-items: center;
}

.clinic-info__label-and-value {
  width: 300px;
  margin-bottom: 5px;
}

.health-diary__url .text-with-label__text {
  word-break: break-all;
}

.health-diary-info__buttons-wrap {
  margin-top: 10px;
}

.health-diary-info__edit-button,
.health-diary-info__delete-button {
  width: 300px;
  height: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 10px;
}

.health-diary-info__content-wrap {
  width: 80%;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.health-diary-info__column {
  margin-right: 30px;
  width: 300px;
}

.health-diary-info__column-header {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 15px;
}

.health-diary-info__column-header-bottom {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.health-diary-info__insurance-name {
  margin: 5px 0px;
}

.health-diary-info__mandatory-text ::after {
  content: " *";
  color: #d22c75;
  font-weight: normal;
}

.service-header {
  width: 100%;
  height: 80px;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  border-bottom: 1px solid #e1e1e1;
  background-color: #ffffff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.service-header__navigation {
  width: 90%;
  margin: 0 auto;
  -ms-flex-align: center;
      align-items: center;
}

.service-header__link {
  font-size: 14px;
  padding-right: 30px;
  text-decoration: none;
  color: #4a4a4a;
}

.service-header__link:hover {
  color: #42a5f5;
}

.service-header__link.active {
  color: #42a5f5;
  text-decoration: underline;
}

.monitoring-programs-list-header {
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding-top: 50px;
  margin-bottom: 50px;
  -ms-flex-align: center;
      align-items: center;
  height: 126px;
}

.monitoring-programs-list-header__title {
  font-size: 26px;
}

.monitoring-programs-list-header__new-clinic-button {
  height: 48px;
  width: 240px;
  right: 70px;
}

.monitoring-programs-list-header__button-block {
  -ms-flex-align: end;
      align-items: flex-end;
}

.monitoring-programs-list-header__outline-button {
  width: 240px;
  padding: 2px;
  height: 54px;
}

.monitoring-programs-list-header__save-button__wrap {
  margin-top: 15px;
  -ms-flex-align: center;
      align-items: center;
}

.monitoring-programs-list-header__save-button__loader {
  margin-right: 15px;
}

.health-diary-list {
  height: 100%;
  width: 90%;
  margin: auto;
}

.program-info {
  height: 100%;
  width: 90%;
  margin: auto;
  padding-bottom: 10px;
  /* align-items: flex-start; */
}

.program-info-header {
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding-top: 55px;
  margin-bottom: 50px;
  height: 126px;
}

.program-info-header__go-back-link {
  text-decoration: none;
  color: #42a5f5;
  font-size: 16px;
  background-image: url(e6006f0da898072ea9dd9a07963342cc.svg);
  background-repeat: no-repeat;
  padding: 0 30px;
  width: -webkit-fit-content;
  width: fit-content;
}

.program-info-header__title {
  font-size: 38px;
  font-weight: bold;
  -ms-flex-align: center;
      align-items: center;
}

.clinic-info__label-and-value {
  width: 300px;
  margin-bottom: 5px;
}

.health-diary__url .text-with-label__text {
  word-break: break-all;
}

.program-info__buttons-wrap {
  margin-top: 10px;
}

.program-info__edit-button,
.program-info__delete-button {
  width: 300px;
  height: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 10px;
}

.program-info__content-wrap {
  width: 80%;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.program-info__column {
  margin-right: 30px;
  width: 350px;
}

.patient-info__column {
  margin-right: 30px;
  width: 300px;
}

.program-info__column-header {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 15px;
}

.program-info__column-header-bottom {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.program-info__insurance-name {
  margin: 5px 0;
}

.program-info__mandatory-text ::after {
  content: " *";
  color: #d22c75;
  font-weight: normal;
}

.date-time-input__calendar input {
    cursor: pointer;
}

.health-records__column{
  width: 300px;
  max-height: calc(100vh - 240px);
  min-height: 200px;
}

.health-record{
  margin-bottom: 10px;
  margin-right: 10px;
}

.health-record-info--hidden{
  display: none;
}

.health-records__button{
  width: 100%;
  border: 1px solid #42A5F5;
  border-radius: 5px;
  position: relative;
  margin-bottom: 10px;
  -ms-flex-align: baseline;
      align-items: baseline;
}


.health-records__button:after  {
  content: "";
  position: absolute;
  right: 15px;
  top: calc(50% - 2.5px);
  display: block;
  border: 5px solid transparent;
  border-top: 5px solid white;
}


.health-records__button--open:after {
  top: unset;
  bottom: calc(50% - 2.5px);
  border: 5px solid transparent;
  border-bottom: 5px solid white;
}

.program-info__report-link{
  padding-top: 5px;
  border-top: 1px solid;
  text-align: right;
}
.patient-info__end-program-button{
  margin-top: 10px;
  height: 56px;
}

.program-modal{
  margin-top: 10px;
  text-align: center;
}

.program__notify-about-inability {
  height: 72px;
}

.monitoring-programs-list-header {
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding-top: 50px;
  margin-bottom: 50px;
  -ms-flex-align: center;
      align-items: center;
  height: 126px;
}

.monitoring-programs-list-header__title {
  font-size: 26px;
}

.monitoring-programs-list-header__new-clinic-button {
  height: 48px;
  width: 240px;
  right: 70px;
}

.monitoring-programs-list-header__button-block {
  -ms-flex-align: end;
      align-items: flex-end;
}

.monitoring-programs-list-header__outline-button {
  width: 240px;
  padding: 2px;
  height: 54px;
}

.monitoring-programs-list-header__save-button__wrap {
  margin-top: 15px;
  -ms-flex-align: center;
      align-items: center;
}

.monitoring-programs-list-header__save-button__loader {
  margin-right: 15px;
}

.health-diary-list {
  height: 100%;
  width: 90%;
  margin: auto;
}

.program-info {
  height: 100%;
  width: 90%;
  margin: auto;
  /* align-items: flex-start; */
}

.program-info-header {
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding-top: 55px;
  margin-bottom: 50px;
  height: 126px;
}

.program-info-header__go-back-link {
  text-decoration: none;
  color: #42a5f5;
  font-size: 16px;
  background-image: url(e6006f0da898072ea9dd9a07963342cc.svg);
  background-repeat: no-repeat;
  padding: 0 30px;
  width: -webkit-fit-content;
  width: fit-content;
}

.program-info-header__title {
  font-size: 38px;
  font-weight: bold;
  -ms-flex-align: center;
      align-items: center;
}

.clinic-info__label-and-value {
  width: 300px;
  margin-bottom: 5px;
}

.health-diary__url .text-with-label__text {
  word-break: break-all;
}

.program-info__buttons-wrap {
  margin-top: 10px;
}

.program-info__edit-button,
.program-info__delete-button {
  width: 300px;
  height: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 10px;
}

.program-info__content-wrap {
  width: 80%;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.program-info__column {
  margin-right: 30px;
  width: 350px;
}

.patient-info__column {
  margin-right: 30px;
  width: 300px;
}

.program-info__column-header {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 15px;
}

.program-info__column-header-bottom {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.program-info__insurance-name {
  margin: 5px 0;
}

.program-info__mandatory-text ::after {
  content: " *";
  color: #d22c75;
  font-weight: normal;
}

.program-device-editor-button {
  width: 140px !important;
}
.program-device-editor-button button {
  width: 140px !important;
}

.patient-device__active_checkbox {
  margin: 5px 0 15px;
}

.monitoring-device-usedInProgram-alert {
  font-size: 14px;
  padding: 0 0 15px 0;
  color: #DC8484;
}

.program-device-editor-buttons {
  display: -ms-flexbox;
  display: flex;
  max-width: 300px;
  width: 300px;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.program-info {
  height: 100%;
  width: 90%;
  margin: auto;
  /* align-items: flex-start; */
}

.program-info-header {
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding-top: 55px;
  margin-bottom: 50px;
  height: 126px;
}

.program-info-header__go-back-link {
  text-decoration: none;
  color: #42a5f5;
  font-size: 16px;
  background-image: url(e6006f0da898072ea9dd9a07963342cc.svg);
  background-repeat: no-repeat;
  padding: 0 30px;
  width: -webkit-fit-content;
  width: fit-content;
}

.program-info-header__title {
  font-size: 38px;
  font-weight: bold;
  -ms-flex-align: center;
      align-items: center;
}

.clinic-info__label-and-value {
  width: 300px;
  margin-bottom: 5px;
}

.health-diary__url .text-with-label__text {
  word-break: break-all;
}

.program-info__buttons-wrap {
  margin-top: 10px;
}

.program-info__edit-button,
.program-info__delete-button {
  width: 300px;
  height: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 10px;
}

.program-info__content-wrap {
  width: 80%;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.program-info__column {
  margin-right: 30px;
  width: 350px;
}

.patient-info__column {
  margin-right: 30px;
  width: 300px;
}

.program-info__column-header {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 15px;
}

.program-info__column-header-bottom {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.program-info__insurance-name {
  margin: 5px 0;
}

.program-info__mandatory-text ::after {
  content: " *";
  color: #d22c75;
  font-weight: normal;
}

.health-diary-metric-list {
  max-width: 294px;
  max-height: 710px;
  width: 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 0;
}

.health-diary-metric-list__list-name {
  text-align: center;
  margin: 10px 16px 10px 0;
}

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

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

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

.health-diary-metric__last-record__value-wrap {
  overflow: hidden;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  margin: 12px 0 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(f8d76db65a7c0af6b155f8762d8aca61.svg);
  width: 18px;
  height: 8px;
  right: 0;
  top: 5px;
  background-repeat: no-repeat;
  -ms-transform: rotate(90deg);
      transform: rotate(90deg);
}

.health-diary-metric.active .health-diary-metric__name::after {
  background-image: url(2efc263af1ad4e412dfdbda889205b1d.svg);
}

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

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

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

.health-diary__loader {
  margin: auto;
}

.health-diary__error {
  margin: auto;
}

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

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

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

.patient-select__dropdown-label {
  margin-right: 15px;
  font-size: 24px;
}

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

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

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

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

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

.health-diary-record-list__empty__image {
  width: 339px;
  height: 353px;
  -ms-flex-item-align: center;
      align-self: center;
  margin-top: 49px;
  /*background-image: url(../../../../img/health-record-list-empty.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;
}

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

.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: 0 8px;
}

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

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

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

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

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

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

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

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

.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: 0 4px;
}

.record-control-block__attachment-button {
  background-image: url(e06a6f1a9af73807932db782c52933d5.svg);
}

.record-control-block__edit-button {
  background-image: url(027e99d1c025a4dae260416be5dd2244.svg);
}

.record-control-block__delete-button {
  background-image: url(642c2a66fe933a146f2ff36ff690b9a3.svg);
}

.record-control-block__attachment-button:hover {
  background-image: url(1e4ee621fcbff8594ef139bfec0ccfd9.svg);
}

.record-control-block__edit-button:hover {
  background-image: url(c1a0ff1a7fb6f1026bec7a2fc7ae7249.svg);
}

.record-control-block__delete-button:hover {
  background-image: url(b5006c2ede945d01e7bc6f01a179ad15.svg);
}

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

.health-diary-template-constructor {
    height: 100%;

    display: -ms-flexbox;

    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center;
        align-items: center;

    padding: 1rem;
    padding-inline: 5%;

    gap: 1.5rem;
}

.health-diary-template-constructor__heading {
    font-size: 1.65rem;
    font-weight: 500;
}

.health-diary-template-constructor__template-info,
.health-diary-template-constructor__symptom-selector {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;

    gap: 1rem;

    padding: 0.5rem;

    width: min(40%, 360px);
}

.health-diary-template-constructor__template-info {
    -ms-flex-align: unset;
        align-items: unset;
    -ms-flex-pack: unset;
        justify-content: unset;

    gap: 0;
}

.health-diary-template-constructor__add-metric-button {
    background-color: #DBEEFDFF;
    border: none;
    height: 40px;
}

.health-diary-template-constructor__symptoms {
    width: 100%;
    gap: 0.5rem;
}

.health-diary-template-constructor__symptom {
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center;
    border: 1px solid #42A5F5;
    border-radius: 5px;
    padding: 0 10px;
    height: 40px;

    gap: 1rem;
}

.health-diary-template-constructor__trash-button {
    background: none !important;
    outline: none !important;
    box-shadow: none !important;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    justify-items: center;
}

.health-diary-template-constructor__trash-button svg {
    fill: #42A5F5;
    width: 30px;
    height: 30px;
}

.health-diary-template-constructor__actions {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 0.25rem;
    -ms-flex-align: center;
        align-items: center;
}

.health-diary-template-constructor__saving-disabled-text {
    font-size: 0.875rem;
    color: #aaa;
}

.health-diary-template-constructor__error {
    font-size: 0.875rem;
    color: #db0000;
}

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

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

.auth-input-with-label {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 100%;
}

.change-password-page {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  font-family: Ubuntu, sans-serif;
}

.change-password-page__wrap {
  margin-top: 30px;
  min-width: 350px;
}

.change-password-page__title {
  font-weight: 500;
  font-size: 26px;
  line-height: 30px;
  margin-bottom: 22px;
  text-align: center;
}

.change-password-page__buttons {
  display: -ms-flexbox;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
  margin: 22px 0 20px;
}

.change-password-button {
  height: 49px;
  border: 2px solid #42A5F5;
}

.change-password-button--disabled{
  opacity: 0.5;
}

.change-password__tooltip {
  right: -35px;
  top: calc(50% - 13px);
}

.change-password__tooltip--hidden {
  display: none;
}

.change-password__tooltip-text {
  max-width: 310px;
}

.change-password-page__error {
  text-align: right;
  font-size: 10px;
  height: 1em;
  color: #d22c75;
}

.change-password-white-button {
  background-color: #fff;
}

.auth-input.change-password{
  height: 40px;
}

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

.layout__content-area-wrap {
  width: 100%;
  /* Высота страницы - высота шапки */
  height: calc(100% - 80px);
}

.layout__loader {
  margin-top: 50vh;
}

.Toastify__toast--success {
  background-color: #42a5f5 !important;
}

.close-session__button {
  height: 40px;
  margin-top: 20px;
  width: 100px;
  border-radius: 40px;
  color: #42a5f5;
  background-color: #eceff1;
}

.close-session__button:hover{
  box-shadow: 0 0 10px #bdcad0;
}

.close-session__button:active {
  background-color: #e8f5fd;
}


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

.auth-page {
  height: 100vh;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  background: #42a5f5;
}

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

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

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

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

.auth-text.auth-error {
  position: absolute;
  bottom: 50px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
}

.auth-page__footer {
  position: absolute;
  text-decoration: underline;
  font-size: 14px;
  color: #fff;
  border: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-item-align: center;
      align-self: center;
  bottom: 20px;
}
.auth-button {
  width: 352px;
  height: 48px;
  margin: 37px 0 29px;
}

.login__go-back-text {
  text-decoration: underline;
  cursor: pointer;
  -ms-flex-item-align: center;
      align-self: center;
}

.side-modal.modal {
  background: unset;
}

.side-modal.modal > .modal__wrap {
  background-color: #fff;
  position: absolute;
  width: 376px;
  right: 0px;
  bottom: 25px;
  height: calc(100% - 107px - 25px);
  box-shadow: 0 0 39px 0 rgba(0, 0, 0, 0.19);
  border-radius: unset;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.side-modal .modal__content {
  padding: 39px;
  -ms-flex-align: unset;
      align-items: unset;
  height: 100%;
}

.side-modal__close-button {
  position: absolute;
  top: 40px;
  left: -18px;
  width: 36px;
  height: 36px;
  line-height: 16px;
  padding: unset;
}

.user-profile__name {
  font-size: 18px;
  line-height: 20px;
  font-weight: bold;
  max-width: 244px;
  margin-bottom: 21px;
}

.user-profile__label-and-value {
  margin-bottom: 13px;
}

.user-profile__label {
  font-size: 12px;
  color: #a7a7a7;
  line-height: 21px;
  margin-bottom: 5px;
}

.user-profile__clinic-item {
  margin-bottom: 15px;
  line-height: 21px;
}

.user-profile__logout-button {
  width: 229px;
  height: 48px;
  -ms-flex-item-align: center;
      align-self: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: auto;
}

.user-profile__no-decoration{
    text-decoration: none;
}
.change-password__link {
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 12px;
}

.change-password-button__link {
  width: 191px;
  -ms-flex-item-align: center;
      align-self: center;
  height: 49px;
}

.user-profile__modal.side-modal.modal > .modal__wrap {
  background-color: #fff;
  position: absolute;
  width: 350px;
  right: 15px;
  top: 100px;
  height: -webkit-fit-content;
  height: fit-content;
  box-shadow: 0 0 39px 0 rgba(0, 0, 0, 0.19);
  border-radius: 10px;
}

.user-profile__modal.side-modal.modal .modal__content {
  overflow: scroll;
  max-height: calc(90vh - 100px);
}

.combine-users .modal__header__text {
    font-weight: bold;
    font-size: 20px;
}

.combine-users .combine-users__subheader {
    position: relative;
    top: -15px;
}

.combine-users .table {
    min-width: 800px;
}

.combine-users__note {
    -ms-flex-item-align: self-start;
        align-self: self-start;
    margin: 20px 0;
    color: green;
}

.combine-users .table .rt-tr .rt-td:first-child {
    color: green;
    text-align: center;
    font-size: 16px;
}
.modal.remove-clinic > .modal__wrap {
  width: 400px;
}

.remove-clinic__text {
  margin-bottom: 20px;
}

.remove-clinic__button-wrap {
  margin: auto;
  display: -ms-flexbox;
  display: flex;
}

.remove-clinic__button {
  width: 100px;
  height: 48px;
  margin: 0px 15px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.remove-clinic__button > .button-with-loader__button {
  width: 100%;
  height: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.remove-clinic__cancellation-text {
  margin-top: 10px;
  font-size: 12px;
  color: #a7a7a7;
  line-height: 21px;
}

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

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

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

.install-chrome-modal__link {
  color: #42a5f5;
}


.install-chrome-modal__button {
  margin-top: 20px;
  width: 150px;
  padding: 15px;
}
.avatar-big-size__close-button {
  width: 148px;
  height: 48px;
  padding: 15px 0;
}

.avatar-big-size > .modal__wrap {
  width: 450px;
}

.avatar-wrong-type__close-button {
  width: 148px;
  height: 48px;
  padding: 15px 0;
}

.avatar-wrong-type > .modal__wrap {
  width: 450px;
}

.buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
  margin-top: 10px;
}

#stop-monitor-watching-reason {
  width: 100%;
  border: 1px solid;
  padding:8px;
}

.news-image-modal__image{
  max-width: 80vw;
  max-height: 80vh;
}

.modal.remove-clinic > .modal__wrap {
  width: 600px;
}

.remove-clinic__text {
  margin-bottom: 20px;
  font-weight: bold;
}

.remove-head-clinic__button {
  width: 100px;
  height: 48px;
}

.remove-head-clinic__buttons {
  gap: 20px;
}

.add-or-edit-health-diary-record-modal > .modal-wrap {
  width: 464px;
}

.add-or-edit-health-diary-record-modal__control {
  width: 400px;
  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;
  width: 100%;
}
.add-or-edit-health-diary-record-modal__day-picker-input {
  width: 100%;
}

.add-or-edit-health-diary-record-modal__day-picker-input.date-time-input__calendar {
  margin-right: -35px;
}

.day-picker-input.add-or-edit-health-diary-record-modal__day-picker-input.date-time-input__calendar:after {
  position: relative;
  top: 4px;
  right: 5px;
  content: '';
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  -webkit-mask: url(69aca706e980d163f42f7e8d956ac21d.svg) no-repeat center;
          mask: url(69aca706e980d163f42f7e8d956ac21d.svg) no-repeat center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-repeat: no-repeat;
}

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

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

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

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

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

.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: -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: 0 15px;
}

.date-time-input__calendar {
    display: -ms-flexbox;
    display: flex;
}

.suspend-monitoring-program__error-text {
    color: #db0000;
    font-size: 0.825rem;
    padding-bottom: 1rem;
}


.modal.info-modal > .modal__wrap {
  width: 400px;
}

.info-modal .modal__content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 1em;
}

.info-modal .info-modal__text {
  text-align: center;
}

.info-modal .info-modal__close-button {
  width: 148px;
  height: 48px;
  padding: 15px 0;
}


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