* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  outline: none;
}
.button {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  background: none;
  cursor: pointer;
  font-size: 16px;
  text-align: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  color: #424242;
  outline: none;
}

.button.stylized {
  background: #ffffff;
  border-radius: 5px;
  border: 1px solid #d3d3d3;
  padding: 10px;
  height: 40px;
}

.button:disabled {
  cursor: default;
  opacity: 0.5;
}

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

.text {
  display: block;
  color: #424242;
}

.text.capitalized::first-letter {
  text-transform: capitalize;
}

.text.bold {
  font-weight: bold;
}

.text.multiline { 
  white-space: pre-wrap;
  word-break: break-word;
}
.button-with-loader {
  width: -webkit-fit-content;
  width: 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;
  -webkit-animation: cluster-loader-1 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
          animation: cluster-loader-1 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
  margin: auto;
}
@-webkit-keyframes cluster-loader-1 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes cluster-loader-1 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.cluster-loader::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: auto;
  margin: auto;
  width: 8px;
  height: 8px;
  background: #424242;
  border-radius: 50%;
  -webkit-animation: cluster-loader-2 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
          animation: cluster-loader-2 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
@-webkit-keyframes cluster-loader-2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    -webkit-transform: translate3d(24px, 0, 0) scale(0.5);
            transform: translate3d(24px, 0, 0) scale(0.5);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes cluster-loader-2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    -webkit-transform: translate3d(24px, 0, 0) scale(0.5);
            transform: translate3d(24px, 0, 0) scale(0.5);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
}
.cluster-loader::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: auto;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  background: #424242;
  border-radius: 50%;
  -webkit-animation: cluster-loader-3 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
          animation: cluster-loader-3 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
@-webkit-keyframes cluster-loader-3 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    -webkit-transform: translate3d(-24px, 0, 0) scale(0.5);
            transform: translate3d(-24px, 0, 0) scale(0.5);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes cluster-loader-3 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    -webkit-transform: translate3d(-24px, 0, 0) scale(0.5);
            transform: translate3d(-24px, 0, 0) scale(0.5);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
}
.cluster-loader span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: inherit;
  width: inherit;
}
.cluster-loader span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: auto;
  right: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  background: #424242;
  border-radius: 50%;
  -webkit-animation: cluster-loader-4 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
          animation: cluster-loader-4 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
@-webkit-keyframes cluster-loader-4 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    -webkit-transform: translate3d(0, 24px, 0) scale(0.5);
            transform: translate3d(0, 24px, 0) scale(0.5);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes cluster-loader-4 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    -webkit-transform: translate3d(0, 24px, 0) scale(0.5);
            transform: translate3d(0, 24px, 0) scale(0.5);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
}
.cluster-loader span::after {
  content: "";
  display: block;
  position: absolute;
  top: auto;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  background: #424242;
  border-radius: 50%;
  -webkit-animation: cluster-loader-5 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
          animation: cluster-loader-5 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
@-webkit-keyframes cluster-loader-5 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    -webkit-transform: translate3d(0, -24px, 0) scale(0.5);
            transform: translate3d(0, -24px, 0) scale(0.5);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes cluster-loader-5 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    -webkit-transform: translate3d(0, -24px, 0) scale(0.5);
            transform: translate3d(0, -24px, 0) scale(0.5);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
}

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

.input {
  border-radius: 5px;
  border: 1px solid #d3d3d3;
  outline: none;
  padding: 10px;
  color: #424242;
  font-size: 16px;
  height: 40px;
  background: #ffffff;
}

.input:focus {
  border: 1px solid #b0bec5;
  box-shadow: 0 0 6px 0 #b0bec5;
}

.input.error {
  border: 1px solid #d22c75;
  box-shadow: 0 0 6px 0#d22c75;
}

.input::-webkit-input-placeholder {
  color: #bdcad0;
}

.input:-ms-input-placeholder {
  color: #bdcad0;
}

.input::placeholder {
  color: #bdcad0;
}

.input:disabled {
  opacity: 0.5;
}
.scrollbar__track {
  position: absolute;
  border: none;
  border-radius: 3px;
}

.scrollbar__track.horizontal {
  width: 100%;
  height: 6px;
  right: 0px;
  bottom: 0px;
}

.scrollbar__track.vertical {
  width: 6px;
  height: 100%;
  top: 0px;
  right: 0px;
}

.scrollbar__track.hidden {
  display: none;
}

.scrollbar__thumb {
  border-radius: inherit;
  background: #bdcad0;
}

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

.combo-box-selected-item {
  position: relative;
  padding-right: 50px !important;
}

.combo-box-selected-item.disabled {
  opacity: 0.5;
}

.combo-box-selected-item__value {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.combo-box-selected-item__deselect-button {
  width: 40px;
  height: 100%;
  line-height: 100%;
  font-weight: bold;
  position: absolute;
  right: 0;
  top: 0;
  background: #e7e7e7;
  border-left: 1px solid #d3d3d3;
  border-radius: inherit;
  border-bottom-left-radius: unset;
  border-top-left-radius: unset;
}

.combo-box-selected-item__deselect-button:disabled {
  opacity: unset;
}

.combo-box {
  position: relative;
  background: #ffffff;
  border-radius: 5px;
}
.combo-box.error {
  border-color: #d22c75;
  box-shadow: 0 0 6px 0#d22c75;
}

.combo-box__item {
  position: relative;
  width: 100%;
  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;

  border-top: 1px solid #d3d3d3;
}

.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;
}

.combo-box__empty-text {
  height: 40px;
  text-align: left;
  font-size: 14px;
  padding: 10px;
  color: #a7a7a7;
  border-top: 1px solid #d3d3d3;
}

.wrap-with-loader {
  -ms-flex-align: center;
      align-items: center;
}

.wrap-with-loader__loader {
  margin-left: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.wrap-with-loader__loader.dash-loader {
  width: 16px;
  height: 16px;
}

.wrap-with-loader__loader.dash-loader > span {
  clip: rect(8px, 16px, 16px, 0);
}

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

.combo-box-with-external-loader > .combo-box-with-label {
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.dropdown {
  position: relative;
  background: #ffffff;
  border-radius: 5px;
}
.dropdown.error {
  border-color: #d22c75;
  box-shadow: 0 0 6px 0#d22c75;
}

.dropdown__title,
.dropdown__item {
  position: relative;
  width: 100%;
  height: 40px;
  text-align: left;
  -ms-flex-pack: left;
      justify-content: left;
  -ms-flex-align: start;
      align-items: flex-start;
  font-size: 16px;
  padding: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.dropdown__title {
  background: inherit;
  border-radius: inherit;
  padding-right: 30px;
  border: 1px solid #d3d3d3;
}

.dropdown__item {
  border-top: 1px solid #d3d3d3;
}

.dropdown.open > .dropdown__title {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.dropdown__title:disabled {
  background: unset;
  opacity: 0.5;
}

.dropdown__title:before {
  content: "";
  position: absolute;
  right: 15px;
  top: calc(50% - 2.5px);
  display: block;
  border: 5px solid transparent;
  border-top: 5px solid #424242;
}

.dropdown.open > .dropdown__title:before {
  top: unset;
  bottom: calc(50% - 2.5px);
  border: 5px solid transparent;
  border-bottom: 5px solid #424242;
}

.dropdown__content-wrap {
  position: absolute;
  width: 100%;
  max-height: 140px;
  border-radius: inherit;
  background: inherit;
}

.dropdown__scrollbar {
  max-height: inherit;
  background: inherit;
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  border: 1px solid #d3d3d3;
  border-top: unset;
  z-index: 1;
}

.dropdown__scrollbar > .scrollbar__track.horizontal {
  visibility: hidden;
}

.dropdown__item:hover {
  background: #eceff1;
}

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

.radio {
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #d3d3d3;
  border-radius: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #ffffff;
}

.radio.selected::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: #424242;
  background-clip: padding-box;
  border-radius: inherit;
}

.radio-with-label {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  cursor: pointer;
}

.radio-with-label__label {
  margin-left: 5px;
  line-height: 20px;
  font-size: 14px;
  white-space: pre-wrap;
}

.radio-with-label.disabled {
  cursor: default;
}

.radio-with-label.disabled > .radio-with-label__label {
  opacity: 0.5;
}
.router-link > a,
.router-link > a:focus,
.router-link > a:hover,
.router-link > a:active {
  outline: none;
}
.router-link {
  color: #424242;
}

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

.text-with-scrollbar-and-label__text {
  line-height: 21px;
  padding-right: 9px;
}
.textarea {
  outline: none;
  cursor: text;
  resize: none;
  padding: 10px;
  overflow: hidden;
  border: solid 1px #d3d3d3;
  border-radius: 5px;
  color: #424242;
  font-size: 16px;
  line-height: 18px;
  background: #ffffff;
}

.textarea:focus {
  border: 1px solid #b0bec5;
  box-shadow: 0 0 6px 0 #b0bec5;
}

.textarea:disabled {
  cursor: default;
  opacity: 0.5;
}
.textarea-with-scrollbar {
  padding-bottom: 10px;
  border: 1px solid #d3d3d3;
  border-radius: 5px;
  background: #ffffff;
}

.textarea-with-scrollbar__textarea:disabled {
  opacity: unset;
}

.textarea-with-scrollbar:focus-within {
  border: 1px solid #b0bec5;
  box-shadow: 0 0 6px 0 #b0bec5;
}

.textarea-with-scrollbar__scrollbar.scrollbar > .scrollbar__track.vertical {
  margin: 10px;
  height: calc(100% - 20px);
}

.textarea-with-scrollbar__textarea {
  margin-right: 9px;
  width: calc(100% - 9px);
  padding: 10px 10px 0px 10px;
  border: unset;
}

.textarea-with-scrollbar__textarea:focus {
  box-shadow: none;
  border: unset;
}

.textarea-with-scrollbar.disabled {
  opacity: 0.5;
}

.rounded-button {
  text-decoration: none;
  font-size: 16px;
  border-radius: 24px;
  height: 40px;
  padding: 10px 20px;
}

.rounded-button:hover: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-color: #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-color: #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);
}
.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;
  width: 200px;
}

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

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

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

.header-user-card__own-profile-button {
  color: #42a5f5;
  font-size: 16px;
  line-height: 18px;
  text-decoration: underline;
  border: unset;
  padding: unset;
  height: unset;
}

.header {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  height: 70px;
  -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%;
}

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

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

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

.header__user-profile {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

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

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

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

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

.clinic-list-header__new-clinic-button {
  height: 48px;
  width: 240px;
  text-align: center;
}

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

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

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

.editable-service-attachment {
  -ms-flex-align: center;
      align-items: center;
  min-height: 30px;
  margin: 2px 5px 2px 0px;
}

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

.editable-service-attachment__remove-button {
  border: none;
  padding: unset;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-weight: bold;
  color: #d22c75;
  margin-left: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

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

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

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

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

.editable-service-attachment-list__error {
  font-size: 12px;
  color: #d22c75;
  margin-top: 10px;
}
.name-address-dropdown-item {
  height: -webkit-fit-content;
  height: fit-content;
  min-height: 60px;
}

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

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

.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 > .input {
  width: 300px;
}

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

.clinic-editor__save-button {
  width: 300px;
}

.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__visible-checkbox {
  padding-top: 35px;
}

.clinic-editor__commerce-checkbox {
  padding-top: 5px;
}
.clinic-editor-main-clinic-list__empty-text {
  color: #d22c75;
  padding: 5px 0;
}



.clinic-editor-main-clinic-list {
 width: 300px;
}

.clinic-editor-main-clinic-list {
  -ms-flex-align: center;
      align-items: center;
}

.clinic-editor-main-clinic-list__loader {
  margin-left: 10px;
  width: 16px;
  height: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.clinic-editor-main-clinic-list__loader > span {
  clip: rect(8px, 16px, 16px, 0);
}
.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;
}

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

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

.file-attachment__icon {
  background-image: url(f4ea8def70cf39ec9f8fef5e7ba07e9f.svg);
  background-repeat: no-repeat;
  background-position: 5px;
  cursor: pointer;
}

.file-attachment__progressbar {
  position: relative;
}

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

.file-attachment__name {
  margin-left: 10px;
  color: #42a5f5;
  font-size: 16px;
  line-height: 27px;
  cursor: pointer;
}

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

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

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

.file-input__input {
  display: none;
}

.chat-input {
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #d3d3d3;
  border-radius: 5px;
  height: -webkit-fit-content;
  height: fit-content;
}

.chat-input__textarea-with-scrollbar {
  padding: 0;
  border: none;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.chat-input__textarea-with-scrollbar:focus-within {
  border: none;
  box-shadow: none;
}

.chat-input__textarea-with-scrollbar > .textarea-with-scrollbar__scrollbar {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: -webkit-fit-content !important;
  height: fit-content !important;
}

.chat-input__textarea-with-scrollbar
  > .textarea-with-scrollbar__scrollbar
  > div:first-child {
  width: 100%;
  position: relative !important;
  margin-left: 17px !important;
  max-height: 200px !important;
}

.chat-input__send-button {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 34px;
  height: 34px;
  background-image: url(a5070d3a070e91bdb3d1a6142c6836b5.svg);
  background-repeat: no-repeat;
  background-position: 6px;
  border: none;
}

.chat-input__textarea-with-scrollbar-default-height {
  height: 28px;
}

.attachment-loader {
  position: relative;
  width: 30px;
  height: 30px;
  background: #42a5f5;
  border-radius: 5px;
  padding: 2px;
}

.attachment-loader > .CircularProgressbar .CircularProgressbar-trail {
  stroke: #42a5f5;
}

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

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

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

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

.file-attachment__icon {
  width: 30px;
  height: 30px;
  padding: 3px;
  background: #42a5f5;
  border-radius: 5px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-origin: content-box;
  background-image: url(1a67a5e514b440f6536ad428e9303061.svg);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

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

@media screen and (max-width: 1024px) {
  .file-attachment__name {
    margin-left: 10px;
    color: #696969;
    font-size: 12px;
    line-height: 21px;
  }
}

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

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

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

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

.image-attachment__loader {
  background: unset;
}
.audio-attachment {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

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

.audio-attachment__download-button,
.audio-attachment__play-button {
  width: 30px;
  height: 30px;
  padding: 3px;
  background: #42a5f5;
  border-radius: 5px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-origin: content-box;
}

.audio-attachment__download-button {
  background-image: url(b8c3285aecd444e3513848afe2a4f536.png);
}

.audio-attachment__play-button {
  margin-left: 3px;
  background-image: url(d97c2d35fa123f865673603e58c059a0.png);
}

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

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

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

.message-status {
  width: 20px;
  height: 27px;
  background-repeat: no-repeat;
  background-position: 0px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.message-status.undelivered {
  background-image: url(a74d6450fcbd71f45adbe785e3d0dd59.svg);
}

.message-status.read {
  background-image: url(0294bc800c954e5c6c49041550865777.svg);
}

.message-status.delivered {
  background-image: url(8bdc823826788bad7ee1776db5e7b269.svg);
}

.message-status.sending {
  background-image: url(dc7956e2c0b063e04ae9e84c117ece2d.svg);
}


.message-created-date {
  font-size: 12px;
  line-height: 27px;
  color: #a7a7a7;
  text-align: right;
}
.message-right-block {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.message-right-block > .message-created-date {
  margin-left: 10px;
}
.message {
  width: 100%;
  margin-top: 9px;
}

.message.own {
  width: -webkit-fit-content;
  width: fit-content;
  margin-left: auto;
}

.message__user-card {
  height: 24px; /* Статично задаем высоту, чтобы скрол не скакал после того, как загрузится пользователь и его имя в карточке */
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 24px;
}

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

.message.own .message__content {
  background: #42a5f5;
}

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

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

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

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

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

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

.message.system-message .message__left-block {
  width: 100%;
}

.message.system-message .message__content {
  padding: 0;
  background: none;
  min-width: unset;
  max-width: unset;
}

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

@media screen and (max-width: 1024px) {
  .message__content {
    padding: 15px 15px 10px 15px;
  }

  .message__text {
    line-height: 21px;
  }
}

.message__created-by {
  height: 24px;
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 24px;
}

.message__edited {
  -ms-flex-item-align: end;
      align-self: flex-end;
  font-size: 12px;
}

.message__right-click-menu {
  position: fixed;
  background: #eceff1;
  color: #424242;
  font-size: 14px;
  line-height: 18px;
  border-radius: 12px;
  width: 150px;
  height: auto;
  margin: 0;
  box-shadow: 0 0 20px 0 #ccc;
  opacity: 1;
  transition: opacity 0.5s linear;
}

.message__right-click-menu > li > span {
  padding: 5px 0 5px 10px;
}

.message__right-click-menu > li:hover > span {
  cursor: pointer;
  background: #42a5f5;
  color: #ffffff;
}

.message__right-click-menu > li:first-child:hover > span {
  border-radius: 12px 12px 0 0;
}

.message__right-click-menu > li:last-child:hover > span {
  border-radius: 0 0 12px 12px;
}

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

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

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

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

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

.chat-list-item-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  cursor: pointer;
  color: black;
  width: calc(100% - 40px); /* 100% - горизонтальные отступы */
  min-height: 40px;
  padding: 40px;
  margin: 20px;
  border-radius: 5px;
  box-shadow: 0 4px 20px 0 rgba(111, 111, 132, 0.22);
}

.chat-list-item-container:hover,
.chat-list-item-container.selected {
  background: white;
  box-shadow: 0 4px 20px 0 rgb(40 177 227 / 31%);
}

.chat-list-item {
  text-decoration: none;
}

.chat-list-item__prescriptions-button:hover {
  cursor: pointer;
  color: #42a5f5;
}

.chat-list-item__chat-name {
  width: calc(100% - 30px);
}

.chat-list-item__notification-count {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background-color: #f50057;
  border-radius: 50%;
  font-size: 12px;
  color: white;
}

@media screen and (max-width: 1024px) {
  .chat-list-item-container {
    width: calc(100% - 20px); /* 100% - горизонтальные отступы */
    padding: 30px;
    margin: 20px 10px;
  }
}

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

@media screen and (max-width: 1024px) {
  .chat-list {
    padding: 15px 5px;
    max-width: 300px;
  }
}
.chat {
  width: 100%;
  height: 100%;
}

.chat__chat-area {
  width: 100%;
  height: 100%;
  background: #ffffff;
  padding: 25px 22px;
}

@media screen and (max-width: 1024px) {
  .chat__chat-area {
    padding: 15px 12px;
  }
}

.chat-area-layout {
  height: 100%;
  width: 100%;
}
.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: 300px;
  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(56d329dacbd13ff9cd0a7b4588ad7c39.svg);
  background-size: contain;
}

.editable-refbook-list-item__controls-wrap__cancel-button {
  background-image: url(6dde1d49585778112139a40ead941892.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(83b6d223f4734c8a040b46d2a560cbc9.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;
}

.editable-region-refbook-item {
  width: 100%;
  margin: 5px 0px;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.editable-region-refbook-item__save-button,
.editable-region-refbook-item__cancel-button {
  width: 26px;
  height: 26px;
  margin: 0px 2px 0px 5px;
  padding: unset;
}

.editable-region-refbook-item__save-button {
  background-image: url(56d329dacbd13ff9cd0a7b4588ad7c39.svg);
  background-size: contain;
}

.editable-region-refbook-item__cancel-button {
  background-image: url(6dde1d49585778112139a40ead941892.svg);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
}

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

.editable-region-refbook-item__connected {
  margin-top: 8px;
}

.region-refbook-item-header {
  min-height: 40px;
  width: 100%;
  margin: 5px 0px;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.region-refbook-item-header:hover .region-refbook-item-header__edit-button,
.region-refbook-item-header:hover .region-refbook-item-header__delete-button {
  visibility: visible;
}

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

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

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

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

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

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

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

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

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

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


.editable-city-refbook-list-item__connected {
  margin-top: 8px;
}

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

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

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

.city-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(83b6d223f4734c8a040b46d2a560cbc9.svg);
  background-size: contain;
  padding: unset;
}

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


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

.city-refbook-list-item__connected {
  margin-top: 8px;
}


.new-city-refbook-item {
  width: 320px;
}
.city-creation-form__create-button {
  height: 40px;
  width: 300px;
  margin: 5px 0px;
}

.new-region-refbook-item {
  width: 320px;
}
.region-creation-form__create-button {
  height: 40px;
  width: 300px;
  margin: 5px 0px;
}

.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: 410px;
  margin-right: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.refbooks-page {
  height: 100%;
}

.unchecked-products-list-item {
  border-top: 2px solid black;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  box-sizing: border-box;
  width: -webkit-fit-content;
  width: fit-content;
  min-width: 100%;
}

.unchecked-products-list-item__row {
  padding: 20px;
  min-width: 100%;
  width: -webkit-fit-content;
  width: fit-content;
  -ms-flex-positive: 1;
      flex-grow: 1;
}

.unchecked-products-list-item__row.grey {
  background-color: #F0F0F0;
}

.unchecked-products-list-item .column {
  width: 130px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0 2px;
}

.unchecked-products-list-item__button {
  margin-bottom: 15px;
  width: 150px;
  color: #42A5F5;
  text-decoration: underline;
}

.unchecked-products-list-item__blue-button {
  color: #42A5F5;
  text-decoration: underline;
  margin-bottom: 15px;
  width: 150px;
}

.suggested-products-list-item {
  padding-bottom: 20px;
}

.suggested-products-list-item .blue-button {
  border-radius: 5px;
}
.unchecked-products-list-item__text {
  width: 100%;
  text-align: center;
  padding: 20px;
}

.suggested-products-list__row {
  padding: 20px;
  min-width: 100%;
  width: -webkit-fit-content;
  width: fit-content;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.unchecked-products-list-table {
  height: 100%;
  position: relative;
}

.unchecked-products-list-table .text, .unchecked-products-list-table .button {
  font-size: 13px;
}

.unchecked-products-list-table__loader {
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  height: 100%;
  width: 100%;
}
.unchecked-products-list-table-header {
  padding: 5px 20px;
  font-weight: bold;
  width: -webkit-fit-content;
  width: fit-content;
  min-width: 100%;
  position: -webkit-sticky;
  position: sticky;
  background-color: #fff;
  top: 0;
}

.unchecked-products-list-table-header__row {
  width: 100%;
  background-color: #fff;
  -ms-flex-positive: 1;
      flex-grow: 1;
}

.unchecked-products-list-table-header .column {
  width: 130px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.products-search {
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 10px;
  position: relative;
}

.products-search .input {
  width: 362px;
  height: 30px;
  margin-right: 12px;
}

.products-search .blue-button {
  height: 30px;
  border-radius: 5px;
  font-size: 14px;
}

.products-search__clear-button {
  background-image: url(8256962d4fbdd00c777cfb0e8f17e402.svg);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  position: absolute;
  top: 5px;
  right: 15px;
}

.products-search__input-wrap {
  position: relative;
}
.letter {
  padding: 0 10px;
  border-right: 1px solid black;
}

.letter:last-child {
  border-right: none;
}

.letter:hover {
  color: #42A5F5;
}

.letter.selected {
  color: #42A5F5;
}
.alphabet-filter {
  padding: 20px 0;
  width: 100%;
  -ms-flex-pack: center;
      justify-content: center;
}
.pharmacy-filter-item {
  padding-top: 6px;
}

.pharmacy-filter-item:first-child {
  padding: 0;
}
.pharmacy-filter {
  position: relative;
  font-size: 12px;
}

.pharmacy-filter__items-list {
  position: absolute;
  padding: 10px;
  min-width: 150px;
  width: -webkit-fit-content;
  width: fit-content;
  background-color: #fff;
  border: 0.5px solid rgba(0, 0, 0, 0.2);
  z-index: 2;
  margin-top: 5px;
}

.pharmacy-filter__button {
  position: relative;
  color: #42a5f5;
}

.pharmacy-filter__button::before {
  content: "";
  position: absolute;
  right: -15px;
  top: calc(50% - 1px);
  display: block;
  border: 5px solid transparent;
  border-top: 5px solid #42a5f5
}

.unchecked-products-list-filters {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.unchecked-products-list-filters__first-row {
  width: 100%;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}

.unchecked-products-list-filters__pharmacy-filter {
  margin-left: 35px;
  margin-top: 5px;
}

.unchecked-products-list-filters__checkbox {
  margin-top: 10px;
  margin-left: 35px;
}

.unchecked-products-list-filters__dropdown {
  width: 200px;
  margin-left: 35px;
  margin-top: 10px;
}
.unchecked-products-list {
  height: 100%;
  width: 98%;
  margin: auto;
}
.checked-products-list-item {
  min-width: 100vw;
  padding: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  box-sizing: border-box;
}

.checked-products-list-item > .row {
  min-width: 100%;
  width: -webkit-fit-content;
  width: fit-content;
}

.checked-products-list-item > .row > .column {
  -ms-flex-pack: center;
      justify-content: center;
  width: 120px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.checked-products-list-item > .row > .column:last-child {
  -ms-flex-align: center;
      align-items: center;
  justify-self: flex-end;
}

.checked-products-list-item:nth-child(even) {
  background-color: #f0f0f0;
}

.checked-products-list-item__image {
  width: 80px;
  height: 80px;
}

.checked-products-list-item__image > .product-image__image > img {
  max-width: 80px;
  max-height: 80px;
}

.checked-products-list-item__text {
  font-weight: bold;
}

.checked-products-list-item__button {
  display: block;
  border: 7px solid transparent;
  border-top: 7px solid #4a4a4a;
}

.external-products-list-item {
  padding-top: 20px;
}

.external-products-list-item .column {
  width: 120px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0 2px;
}

.external-products-list-item.table-header {
  font-weight: bold;
}

.external-product-list {
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  width: 100%;
}

.base-image-stub {
  display: -ms-flexbox;
  display: flex;
  width: 90px;
  height: 90px;
  background-color: #C4C4C4;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
}

.base-image-stub .text {
  color: rgba(0, 0, 0, 0.5)
}
.base-image {
  -ms-flex-item-align: center;
      align-self: center;
  width: 90px;
  height: 90px;
}

.base-image__image > img {
  max-width: 90px;
  max-height: 90px;
}
.upload-button .text {
  margin-top: 15px;
  color: #42a5f5;
}
.upload-image {
  position: relative;
  max-width: 120px;
}

.upload-image:hover .upload-image__remove-button {
  display: -ms-flexbox;
  display: flex;
  transition: all 0.1s;
}

.upload-image__remove-button {
  position: absolute;
  width: 25px;
  height: 25px;
  background-image: url(a1e3b1bf6f321178997b9440df9b254f.svg);
  background-position: 0 0;
  background-size: 25px 25px;
  right: 0;
  display: none;
}
.checked-products-list-table-header {
  padding: 5px 20px;
  font-weight: bold;
  width: -webkit-fit-content;
  width: fit-content;
  min-width: 100%;
  position: -webkit-sticky;
  position: sticky;
  background-color: #fff;
  top: 0;
}

.checked-products-list-table-header__row {
  width: 100%;
  background-color: #fff;
  -ms-flex-positive: 1;
      flex-grow: 1;
}

.checked-products-list-table-header > .column {
  width: 120px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.checked-products-list-table {
  position: relative;
  height: 100%;
  width: 100%;
}

.checked-products-list-table__loader {
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  height: 100%;
  width: 100%;
}
/* 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);
}

.confirmed-date-filter {
  position: relative;
}

.confirmed-date-filter .day-picker {
  top: 20px;
  position: absolute;
  z-index: 9999;
}

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

.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(93b87e0702ab3539ac4addf1d3a2ddeb.svg);
}
.month-navigation-bar__button.next {
  background-image: url(0162fddde1c942fdaba91f41ae490207.svg);
}

.month-navigation-bar__caption {
  -ms-flex-item-align: center;
      align-self: center;
  text-align: center;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: bold;
  color: #424242;
  margin: 0 15px;
  width: 120px;
}

.day-picker-weekday {
  text-transform: capitalize;
  font-size: 14px;
  font-weight: bold;
  display: table-cell;
  text-align: center;
  padding: 15px;
}

.pharmacy-filter-item {
  padding-top: 6px;
}

.pharmacy-filter-item:first-child {
  padding: 0;
}
.pharmacy-filter {
  position: relative;
  font-size: 12px;
}

.pharmacy-filter__items-list {
  position: absolute;
  padding: 10px;
  min-width: 210px;
  width: -webkit-fit-content;
  width: fit-content;
  background-color: #fff;
  border: 0.5px solid rgba(0, 0, 0, 0.2);
  z-index: 2;
  margin-top: 5px;
}

.pharmacy-filter__button {
  position: relative;
  color: #42a5f5;
}

.pharmacy-filter__button::before {
  content: "";
  position: absolute;
  right: -15px;
  top: calc(50% - 1px);
  display: block;
  border: 5px solid transparent;
  border-top: 5px solid #42a5f5
}

.user-filter {
  position: relative;
  font-size: 12px;
}
.unchecked-products-list-filters {
  width: 100%;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  padding-bottom: 20px;
}

.checked-products-list-filters__pharmacy-filter {
  margin-left: 35px;
  margin-top: 5px;
}
.checked-products-list {
  height: 100%;
}

.checked-products-list .text,  .checked-products-list .button {
  font-size: 13px;
}
.remove-button {
  background-image: url(dc8d71043af9bc553b33f1fbdd6b14db.svg);
  width: 40px;
  height: 34px;
}
.ean-input__label-row {

}

.ean-input__label-row .text {
  font-size: 12px;
  color: #A7A7A7;
  line-height: 27px;
}

.ean-input__label-row .text::after {
  content: " *";
  color: #d22c75;
  font-weight: normal;
}

.ean-input__label-row .button {
  color: #42A5F5;
  font-weight: bold;
  font-size: 12px;
  margin-left: 18px;
}

.ean-input__input {
  width: 363px;
  margin-bottom: 15px;
}

.ean-input__input.last {
  margin-bottom: 0;
}

.ean-input__input-row {
  width: 403px;
}

.create-product {
  width: 90%;
  height: 100%;
  margin: auto;
}

.create-product__link {
  margin-top: 36px;
  text-decoration: none;
}

.create-product__header {
  font-size: 26px;
  font-weight: bold;
  margin-top: 32px;
  margin-bottom: 22px;
}

.create-product__right-column {
  margin-left: 52px;
  margin-right: 75px;
}

.create-product__input-with-label {
  width: 363px;
}

.create-product__input-with-label-small {
  width: 178px;
}

.create-product__input {
  width: 178px;
  margin-top: 27px;
}

.create-product__row {
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 363px;
}

.create-product__button {
  margin-top: 56px;
  height: 48px;
  width: 300px;
}

.create-product__button-with-loader > .blue-button {
  width: 300px;
  height: 48px;
  margin-top: 56px;
  margin-bottom: 20px;
}

.create-product__error {
  color: #F50057;
}
.editable-category-list-wrap__header {
  -ms-flex-align: center;
      align-items: center;
  width: -webkit-fit-content;
  width: fit-content;
}

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

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

.editable-category-list-wrap__header__add-button {
  width: 21px;
  height: 21px;
  margin: 0px 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 16px;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: start;
      align-items: flex-start;
  padding: unset
}

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

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

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

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

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

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

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

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

.editable-category__header {
  margin-bottom: 5px;
  width: 305px;
}

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

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

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

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

.products-list-header {
  width: 100%;
  height: 40px;
  -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;
}

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

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

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

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

.products-page {
  height: 100%;
}
.product-image-stub {
  display: -ms-flexbox;
  display: flex;
  width: 134px;
  height: 134px;
  background-color: #C4C4C4;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  margin: 20px;
}

.product-image-stub .text {
  color: rgba(0, 0, 0, 0.5)
}
.product-image__image {
  -ms-flex-item-align: center;
      align-self: center;
  width: 134px;
  height: 134px;
  margin: 20px;
}

.product-image__image > img {
  max-width: 134px;
  max-height: 134px;
}
.product-info-column {
  width: 440px;
  margin: 30px;
}

.product-info-column__title {
  text-align: center;
}

.product-info-column__text-with-label {
  display: inline;
  -ms-flex-direction: row;
      flex-direction: row;
}

.product-info-column__text-with-label > .wrap-with-label__label {
  display: inline;
  font-size: 14px;
  white-space: nowrap;
  margin-right: 5px;
}

.product-info-column__text-with-label > .text-with-label__text {
  white-space: nowrap;
  display: inline;
}
.ready-view {
  -ms-flex-align: center;
      align-items: center;
}

.ready-view__text {
  margin: 30px 0;
  font-weight: bold;
}

.ready-view__image {
  margin: 30px;
}

.ready-view__blue-button {
  border-radius: 5px;
  font-size: 14px;
  width: 125px;
}

.upload-image-view__buttons-wrap {
  padding-top: 14px;
}

.upload-image-view__button-with-loader .blue-button {
  border-radius: 5px;
  margin: 12.5px;
  width: 125px;
  font-size: 14px;
}

.upload-image-view__button {
  border-radius: 5px;
  margin: 12.5px;
  width: 125px;
  font-size: 14px;
}

.upload-image-view {
  -ms-flex-align: center;
      align-items: center;
  padding: 30px;
}

.upload-image-view .product-info-column {
  margin-top: 0;
}
.image-action-radio-group__radio-with-label {
  margin-right: 30px;
}
.map-products-page {
  padding: 20px;
}

.map-products-page__row {
  -ms-flex-pack: center;
      justify-content: center;
}

.map-products-page__image-action-radio-group {
  -ms-flex-pack: center;
      justify-content: center;
}

.map-products-page__buttons-wrap {
  -ms-flex-pack: center;
      justify-content: center;
}

.map-products-page__header {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
}

.map-products-page__button-with-loader .blue-button {
  border-radius: 5px;
  margin: 12.5px;
  width: 125px;
  font-size: 14px;
}

.map-products-page__error {
  color:#F50057;
  justify-self: center;
}


.map-products-page__button {
  border-radius: 5px;
  margin: 12.5px;
  width: 125px;
  font-size: 14px;
}
.users-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;
}

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

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

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

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

.users-page {
 height: 100%;
}

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

.staff-list-header__buttons-wrap {
  display: -ms-flexbox;
  display: flex;
}

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

.staff-list-header__button {
  height: 48px;
  width: -webkit-fit-content;
  width: fit-content;
  text-align: center;
  margin: 0 10px;
}

.doctor-list {
  height: 100%;
  width: 90%;
  margin: auto;
}
.staff-member-page-header {
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding-top: 55px;
  margin-bottom: 20px;
  -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;
}

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

.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.checkbox-with-label {
  margin-top: 12.5px;
}

.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-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;
  line-height: 16px;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: start;
      align-items: flex-start;
  padding: unset
}

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

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

.editable-doctor-service__checkbox {
  margin-top: 10px;
  margin-left: 15px;
}
.doctor-service-list {
  margin-top: 5px;
}

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

.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;
  font-weight: bold;
  margin-left: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: unset;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.doctor-clinic__name {
  font-weight: bold;
  line-height: 21px;
  margin-bottom: 5px;
}

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

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

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

.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: 20px 0;
}

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


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

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

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

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

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

.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;
}
.staff-member-organization {
  height: -webkit-fit-content;
  height: fit-content;
  min-height: 60px;
  text-align: left;
  padding: 5px 0px;
}

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

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

.moderator-stats__button-with-loader {
  margin-top: 30px;
}
.integration-list {
 height: 100%;
 width: 90%;
 margin: auto;
}

.multiple-input-list-wrap__header {
  -ms-flex-align: center;
      align-items: center;
  width: -webkit-fit-content;
  width: fit-content;
}

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

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

.multiple-input-list-wrap__header__add-button {
  width: 21px;
  height: 21px;
  margin: 0px 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 16px;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: start;
      align-items: flex-start;
  padding: unset
}

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

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

.multiple-input-list-item__header {
  margin-bottom: 5px;
  -ms-flex-align: center;
      align-items: center;
}

.multiple-input-list-item__header__clinic-input {
  width: 100%;
}

.multiple-input-list-item__header__remove-item {
  height: 21px;
  width: 21px;
  font-size: 11px;
  font-weight: bold;
  margin-left: 15px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: unset;
}

.multiple-input__label-row .text {
  font-size: 12px;
  color: #A7A7A7;
  line-height: 27px;
}

.multiple-input__label-row.mandatory .text::after {
  content: " *";
  color: #d22c75;
  font-weight: normal;
}

.multiple-input__label-row .button {
  color: #42A5F5;
  font-weight: bold;
  font-size: 12px;
  margin-left: 18px;
}

.multiple-input__input {
  width: 363px;
  margin-bottom: 15px;
}

.multiple-input__input.last {
  margin-bottom: 0;
}

.multiple-input__input-row {
  width: 403px;
}

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

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

.integration-info__content {
  width: 100%;
}

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

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

.integration-info__label-checkbox {
  margin-top: 10px;
}

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

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

.integration-info__token-button {
  -ms-flex-direction: row;
      flex-direction: row;
  margin-top: 10px;
  margin-bottom: 30px;
}

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

.integration-info__token-button > .button-with-loader__error {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.integration-info__textarea-with-label .textarea {
  width: 400px;
  height: 150px;
}

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

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

.pharmacy-list-header__new-pharmacy-button {
  height: 48px;
  width: 240px;
  text-align: center;
}

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

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

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

.pharmacy-page-header__go-back-link {
  text-decoration: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pharmacy-editor__save-button {
  width: 300px;
}

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

.pharmacy-editor__visible-checkbox {
  padding-top: 15px;
}

.pharmacy-editor__column > .upload-image > .upload-image__remove-button {
  margin-right: 11px;
}

.prescription-info-medication-releases {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
  margin: 40px 0;
}

.prescription-info-medication-releases__header {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}

.prescription-info-medication-releases__row {
  display: grid;
  -ms-flex-align: center;
      align-items: center;
  text-align: center;
  justify-items: center;
  width: 100%;
}

.prescription-info-medication-releases__row-head {
  grid-template-columns: repeat(8, 1fr);
}

.prescription-info-medication-releases__row-head[data-operator="true"] {
  grid-template-columns: repeat(6, 1fr);
}

.prescription-info-medication-releases__row-head > .text {
  color: #a7a7a7;
}

.prescription-info-medication-releases__row-release {
  grid-template-columns: 1fr 7fr;
}

.prescription-info-medication-releases__row-release[data-operator="true"] {
  grid-template-columns: 1fr 5fr;
}

.prescription-info-medication-releases__row-product-info {
  grid-template-columns: repeat(7, 1fr);
}

.prescription-info-medication-releases__row-product-info[data-operator="true"] {
  grid-template-columns: repeat(5, 1fr);
}

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

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

.prescription-info__go-back-link {
  margin-top: 20px;
  text-decoration: none;
}

.prescription-info__header {
  font-size: 26px;
  font-weight: bold;
  margin: 20px 0;
}

.prescription-info__row > .text-with-label {
  margin-right: 30px;
  margin-bottom: 20px;
}

.prescription-info__left-column {
  margin-right: 30px;
  max-width: 500px;
}
.documents-page-header {
  width: 100%;
  height: 40px;
  -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;
}

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

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

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

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

.medication-releases-list {
  width: 90%;
  margin: auto;
  margin-top: 20px;
}

.medication-releases-list__header {
  -ms-flex-pack: end;
      justify-content: flex-end;
  margin-top: 20px;
}

.prescription-info-medication-releases {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
  margin: 40px 0;
}

.prescription-info-medication-releases__header {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}

.prescription-info-medication-releases__row {
  display: grid;
  -ms-flex-align: center;
      align-items: center;
  text-align: center;
  justify-items: center;
  width: 100%;
}

.prescription-info-medication-releases__row-head {
  grid-template-columns: repeat(9, 1fr);
}

.prescription-info-medication-releases__row-head > .text {
  color: #a7a7a7;
}

.prescription-info-medication-releases__row-release {
  grid-template-columns: 1fr 7fr;
}

.prescription-info-medication-releases__row-product-info {
  grid-template-columns: repeat(8, 1fr);
  margin-bottom: 20px;
}

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

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

.medicatiom-release-info__go-back-link {
  margin-top: 20px;
  text-decoration: none;
}

.medicatiom-release-info__header {
  font-size: 26px;
  font-weight: bold;
  margin: 20px 0;
}

.medicatiom-release-info__row > .text-with-label {
  margin-right: 30px;
  margin-bottom: 20px;
}

.medicatiom-release-info__left-column {
  margin-right: 30px;
  max-width: 500px;
}

.documents-page {
  height: 100%;
}

.pharmacies-map-page {
  position: relative;
}
.pharmacy-info-sidebar {
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 385px;
  height: 100%;
  z-index: 2;
  background-color: #fff;
  padding: 30px;
}

.pharmacy-info-sidebar__button {
  -ms-flex-item-align: end;
      align-self: end;
}

.pharmacy-info-sidebar__header {
  color: #3F29B0;
  font-size: 20px;
}

.pharmacy-info-sidebar__label {
  line-height: 27px;
  font-size: 12px;
  color: #a7a7a7;
}
.expandable-list {
  width: 100%;
  border-bottom: 1px solid #E7E7E7;
  padding: 15px 24px;
}

.expandable-list__button {
  background-image: url(f99009c5d69a96f9b385e833ab5c694a.svg);
  background-repeat: no-repeat;
  background-position: center right;
  width: 100%;
  -ms-flex-align: baseline;
      align-items: baseline;
  font-size: 16px;
  font-weight: 600;
}

.expandable-list__button.collapsed {
  background-image: url(8b68567364429a221e707a68d72df9fc.svg);
}
.city-checkbox-list-item {
  padding: 4px 0;
}
.city-checkbox-list {
  padding: 8px;
  padding-right: 0;
}
.region-checkbox-list-item {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 8px 0;  
  padding-right: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.region-checkbox-list-item__checkbox-wrap {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 8px 0;
}

.region-checkbox-list-item__button {
  justify-self: end;
  background-image: url(c86643fab2680311a9eba98492338771.svg);
  width: 12px;
  height: 12px;
}

.region-checkbox-list-item__button.collapsed {
  background-image: url(b25ed1cf2274f29a4c0deef333519f2e.svg);
}


.region-checkbox-list {
  height: 400px;
}

.region-checkbox-list__scrollbar {
  max-height: 450px;
}
.pharmacy-filters__input {
  width: 100%;
  background-image: url(03e2c166e38f83e05d3533de555aa23c.svg);
  background-repeat: no-repeat;
  background-position: center right 10px;
  padding-right: 10px;
  margin: 20px 0;
}

.pharmacy-filters__checkbox {
  margin-top: 8px;
}
.pharmacy-info-sidebar-view {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  padding: 20px;
}

.pharmacy-info-sidedbar-view__button {
  -ms-flex-item-align: end;
      align-self: end;
}
.pharmacies-map-page-sidebar {
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 385px;
  height: 100%;
  z-index: 2;
  background-color: #fff;
}

.reports-list {
  width: 90%;
  margin: auto;
  margin-top: 50px;
}

.reports-page {
  height: 100%;
}

.report-files-list {
  width: 90%;
  margin: auto;
  margin-top: 50px;
}

.report-files-list > div {
  line-height: 18px;
  font-size: 16px;
  padding: 7px 5px;
}

.report-files-list > div:hover {
  background: #42a5f5 !important;
  cursor: pointer;
}

.report-files-list > div:hover * {
  color: #ffffff;
}

.report-files-list > div:nth-child(odd) {
  background-color: #dcf0ff;
  border-bottom: solid 1px rgba(0, 0, 0, 0.05);
}

.report-files-list > div:nth-child(even) {
  border-bottom: solid 1px rgba(0, 0, 0, 0.05);
}

.report-files-list__header {
  border: solid 1px rgba(0, 0, 0, 0.05);
  text-align: center;
  line-height: 18px;
  font-size: 16px;
  padding: 7px 5px;
}

.report-files-list__open-generate-modal {
  width: 150px;
  line-height: 18px;
  font-size: 16px;
  margin: auto;
  margin-bottom: 15px;
}

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

.main-frame {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

.main-frame__content {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
}

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

.auth-page {
  height: 100vh;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  background: #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-button {
  width: 352px;
  height: 48px;
  margin: 37px 0 29px;
}

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

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

.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;
}
.change-map-products-modal .modal__header__text.text {
  font-weight: bold;
  font-size: 18px;
}

.change-map-products-modal .text {
  font-size: 14px;
  margin-bottom: 10px;
}

.change-map-products-modal__button-with-loader > .blue-button,
.change-map-products-modal__button-with-loader > .red-outline-button {
  border-radius: 5px;
  margin: 12.5px;
  width: 125px;
  font-size: 14px;
}

.change-map-products-modal__column {
  width: 362px;
  margin-right: 20px;
}

.change-map-products-modal__wrap-content {
  margin: 55px 92px 31px 82px
}

.change-map-products-modal__row {
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.change-map-products-modal__row.info {
  -ms-flex-pack: center;
      justify-content: center;
}

.change-map-products-modal__info-text {
  margin-bottom: 30px;
}



.download-excel-modal .modal__header__text {
  font-size: 18px;
}

.download-excel-modal__button {
  width: 270px;
  margin: 10px 20px;
}

.download-excel-modal .modal__header__text {
  font-size: 18px;
}

.download-excel-modal__button {
  width: 270px;
  margin: 10px 20px;
}
.manual-product-mapping .modal__content {
  padding: 50px;
}

.manual-product-mapping .modal__header__text {
  font-weight: bold;
  font-size: 18px;
}

.manual-product-mapping .row {
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}

.manual-product-mapping .input {
  width: 362px;
}

.manual-product-mapping__error {
  color: #f50057;
}

.manual-product-mapping .blue-button {
  border-radius: 5px;
  margin-left: 20px;
  width: 127px;
}
.remove-image-modal__button, .remove-image-modal__button-with-loader .red-button {
  margin: 0 20px;
  border-radius: 5px;
  width: 100px;
}
.image-viewer-modal__image > img {
  max-height: 90vh;
  max-width: 90vw;
}
.external-product-checked-error-modal {
  font-size: 18px;
}
.generate-report-modal > .modal__wrap {
  padding: 30px;
}

.generate-report-modal__date-input {
  margin: 20px 0;
}

input[type="date"] {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 16px;
  color: #333;
  background-color: #fff;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 24px 24px;
}

input[type="date"]:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(81, 203, 238, 1);
  border-color: rgba(81, 203, 238, 1);
}

.password-input__container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  margin-bottom: 16px;
}

.password-input__wrapper {
  position: relative;
}

.password-input {
  width: 475px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

.password-show-button {
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: transparent;
  background-image: url(42e9fd4c6d9e31a62b3543203756d8e9.svg);
  border: none;
  font-size: 16px;
  cursor: pointer;
  width: 24px;
  height: 24px;
}

.modal > .modal__wrap > .modal__header > .modal__header__close-button {
  display: none;
}

.modal > .modal__wrap > .modal__header > .text {
  color: #42a5f5;
  font-size: 18px;
}

.modal > .modal__wrap {
  width: -webkit-fit-content;
  width: fit-content;
}

.change-password-modal__error-text {
  color: #f50057;
  margin-bottom: 16px;
  text-align: center;
}

.change-password-modal__password-requirements {
  position: absolute;
  width: 200px;
  bottom: 50px;
  left: 510px;
  padding: 8px;
  background: #ffffff;
  color: #f50057;
  border-radius: 4px;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.13);
}

.change-password-modal__password-requirements::before {
  content: "";
  position: absolute;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid white;
  left: -10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.change-password-modal__password-requirements > li {
  position: relative;
  padding-left: 20px;
}

.change-password-modal__password-requirements > li:first-child {
  all: unset;
  display: -ms-flexbox;
  display: flex;
  color: #000000;
  padding-left: 20px;
  margin-bottom: 5px;
}

.change-password-modal__password-requirements > li:not(:last-child) {
  margin-bottom: 5px;
}

.change-password-modal__password-requirements > li:first-child::before {
  content: none;
}

.change-password-modal__password-requirements > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #f50057;
}

.change-password-modal__update-button {
  width: 120px;
  -ms-flex-item-align: center;
      align-self: center;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
button {
  outline: none;
}


@font-face {
    font-family: 'Ubuntu';
    src: local('Ubuntu'), url(985d9f698af7e2d9e1e7815ab61db435.woff2) format('woff2'), url(e0f802c67193ac4964eff31a8111e135.woff) format('woff'), url(bd4c8d3cfb8aa4aae1183cc8908c23ee.ttf) format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: block;
}
body * {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html * {
  box-sizing: border-box;
  font-size: 16px;
  font-family: "pt-sans-regular", Ubuntu, sans-serif;
}

.list-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  cursor: pointer;
  text-decoration: none;
  color: black;
}
.list-item:hover,
.list-item.selected {
  background: white;
  box-shadow: 0 4px 20px 0 rgba(40, 177, 227, 0.91);
}

/*
.scrollbar__track.hidden {
  display: none;
}
*/

/* Зебра для таблицы рецептов */
.prescriptions-list-table tbody tr:nth-child(even) td {
  background: #f7fafd !important;
}
.prescriptions-list-table tbody tr:nth-child(odd) td {
  background: #fff !important;
}
.prescriptions-list-table tbody tr:hover td {
  background: #e6f0fa !important;
}

