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

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

.text {
  display: block;
  color: #424242;
}

.text.capitalized::first-letter {
  text-transform: capitalize;
}

.text.bold {
  font-weight: bold;
}

.text.multiline { 
  white-space: pre-wrap;
  word-break: break-word;
}
.button-with-loader {
  width: -webkit-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.button-with-loader__button {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.button-with-loader__button.loading:disabled {
  opacity: 1;
}

.button-with-loader__loader {
  width: 16px;
  height: 16px;
}

.button-with-loader__loader > span {
  clip: rect(8px, 16px, 16px, 0);
}
.button-with-loader__loader span::before,
.button-with-loader__loader span::after {
  border-width: 3px;
}

.button-with-loader__success,
.button-with-loader__error {
  text-align: center;
  margin-top: 4px;
  font-size: 14px;
}
.button-with-loader__error {
  color: #d22c75;
}

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

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

.column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

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

.content-height-scrollbar__content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

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

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

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

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

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

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

.text-with-scrollbar-and-label__text {
  line-height: 21px;
  padding-right: 9px;
}
.textarea {
  outline: none;
  cursor: text;
  resize: none;
  padding: 10px;
  overflow: hidden;
  border: solid 1px #d3d3d3;
  border-radius: 5px;
  color: #424242;
  font-size: 16px;
  line-height: 18px;
  background: #ffffff;
}

.textarea:focus {
  border: 1px solid #b0bec5;
  box-shadow: 0 0 6px 0 #b0bec5;
}

.textarea:disabled {
  cursor: default;
  opacity: 0.5;
}
.textarea-with-scrollbar {
  padding-bottom: 10px;
  border: 1px solid #d3d3d3;
  border-radius: 5px;
  background: #ffffff;
}

.textarea-with-scrollbar__textarea:disabled {
  opacity: unset;
}

.textarea-with-scrollbar:focus-within {
  border: 1px solid #b0bec5;
  box-shadow: 0 0 6px 0 #b0bec5;
}

.textarea-with-scrollbar__scrollbar.scrollbar > .scrollbar__track.vertical {
  margin: 10px;
  height: -webkit-calc(100% - 20px);
  height: calc(100% - 20px);
}

.textarea-with-scrollbar__textarea {
  margin-right: 9px;
  width: -webkit-calc(100% - 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);
}
.mobile-browser-warning {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  position: relative;
}

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

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

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

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

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

.header-user-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.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: none;
  padding: 0;
  height: auto;
}

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

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

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

.header__logo {
  height: 100%;
}

.header__right-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

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

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

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

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

.sidebar-item-list__item:hover {
  box-shadow: 0 4px 20px 0 rgba(40, 177, 227, 0.31);
}

.sidebar-item-list__item.selected {
  background: #42a5f5;
}

.user-ava__initials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.notification-count {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 26px;
  height: 26px;
  text-align: center;
  line-height: 22px;
  font-size: 14px;
  color: #ffffff;
  background: #f50057;
  border-radius: 100px;
  border: 2px solid #ffffff;
}

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

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

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

.add-patient-button {
  width: -webkit-calc(100% - 44px);
  width: calc(100% - 44px); /* 100% - ширина отступов элементов списка в сайдбаре */
  height: 48px;
  margin-top: 17px;
  margin-bottom: 25px;
}

.sidebar {
  width: 376px;
  height: 100%;
  border-right: 1px solid #e1e1e1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.sidebar__tab-buttons-wrap {
  width: -webkit-calc(100% - 44px);
  width: calc(100% - 44px); /* 100% - ширина отступов элементов списка в сайдбаре */
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sidebar__tab-button {
  width: 50%;
  height: 42px;
  background: #fff;
  border: 2px solid #42a5f5;
  color: #42a5f5;
  font-size: 16px;
  border-radius: unset;
}

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

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

.sidebar__tab-button.active {
  background: #42a5f5;
  color: #fff;
}

.sidebar__filter {
  width: -webkit-calc(100% - 44px);
  width: calc(100% - 44px); /* 100% - ширина отступов элементов списка в сайдбаре */
  height: 42px;
  margin-top: 26px;
}

.sidebar__filter:placeholder-shown {
  background-image: url(4c5481e82765c1256a3252cd7111ba56.svg);
  background-repeat: no-repeat;
  background-position: 300px 12px;
}

.sidebar__tab {
  width: 100%;
  height: 100%;
  padding-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 1366px) {
  .sidebar {
    width: 300px;
  }
}
.header-text {
  font-weight: bold;
  color: #424242;
}

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

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

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

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

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

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

.red {
    background-color: #f50057;
}

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

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

.service-status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 24px;
  border-radius: 12px;
  color: #ffffff;
  font-weight: bold;
  font-size: 14px;
  padding: 12px 20px;
}
.service-card {
  position: relative;
  box-shadow: 0 4px 20px 0 rgba(111, 111, 132, 0.22);
  background-color: #ffffff;
  width: 485px;
  min-height: 140px;
  border-radius: 5px;
  padding: 30px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 20px 20px 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-decoration: none;
}

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

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

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

.service-list__content-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

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

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

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

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

.create-prescription-button {
  background-color: #ffc400;
}
.service-card__service-info-button {
  margin-left: auto;
}

.service-card__service-info-button__icon {
  width: 30px;
  height: 30px;
}

.service-card__service-created-date-info {
  color: #a7a7a7;
  font-size: 12px;
}

.service-card__service-name {
  margin-top: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.prescription-service-card__bottom-row {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.patient-page {
  height: 100%;
}

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

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

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

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

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

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

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

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

.patient-page__top-block__left__phone {
  background-image: url(6afcab07d3a4d2bacca4f82ac4814d19.svg);
  background-size: 16px 16px;
  background-repeat: no-repeat;
  padding: 0 20px;
}

.patient-page__link {
  text-align: right;
  color: #42a5f5;
  margin: 5px 0;
}

.patient-page__content-wrap {
  min-height: -webkit-calc(100% - 200px - 20px - 12px);
  min-height: calc(100% - 200px - 20px - 12px); /* 100% - высота компонента пациента - вертикальные отступы компонента пациента и самой обертки */
  margin: 0px 34px 12px 23px;
}
.go-back-link {
  text-decoration: none;
  color: #42a5f5;
  padding: 0 30px;
  background-repeat: no-repeat;
  background-image: url(1b7d057d202a90fdf4fce5dc2d7434f2.svg);
  background-size: 18px;
  background-position-y: center;
  border-right: 1px solid #a7a7a7;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 25px;
}
.go-back-and-title {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 19px;
}

.go-back-and-title__title {
  font-size: 26px;
  font-weight: bold;
  padding: 5px 20px;
}

.patient-child-info {
  margin-bottom: 20px;
  padding-top: 10px;
  border-top: 1px solid #a7a7a7;
}
.patient-info {
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

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

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

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

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

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

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

.patient-info__button {
  margin-top: 20px;
}
.patient-info-card {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.patient-info-card__name {
  line-height: 21px;
}

.patient-info-card__bottom-block {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.patient-info-card__bottom-block__sex {
  font-size: 16px;
  line-height: 16px;
  color: #a7a7a7;
}

.prescription-page-header {
  min-height: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.prescription-page-header__patient-info-card {
  margin-left: 30px;
  margin-right: auto;
}

.prescription-meta-info__sub-row {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.prescription-meta-info .text-with-label__text {
  height: 40px;
  padding-top: 5px;
}

.prescription-meta-info > .wrap-with-label {
  width: 150px;
  margin-right: 10px;
}
.clinic-dropdown-item {
  height: -webkit-fit-content;
  height: fit-content;
  min-height: 60px;
}

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

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

.service-clinic-selector > .combo-box-with-label {
  width: 100%;
}
.service-specialization-selector > .combo-box-with-label {
  width: 100%;
}
.doctor-dropdown-item {
  height: -webkit-fit-content;
  height: fit-content;
  min-height: 38px;
}

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

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

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

.service-doctor-selector > .combo-box-with-label {
  width: 100%;
}
.prescription-doctor-info__form-element {
  width: 100%;
}
.prescription-participants-info .text-with-label__text {
  height: 40px;
  padding-top: 5px;
}

.prescription-participants-info__expand-button {
  position: relative;
  width: 230px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #a7a7a7;
  margin-bottom: 10px;
}

.prescription-participants-info__expand-button:before {
  content: "";
  position: absolute;
  display: block;
  right: 15px;
  top: unset;
  bottom: -webkit-calc(50% - 2.5px);
  bottom: calc(50% - 2.5px);
  border: 5px solid transparent;
  border-bottom: 5px solid #a7a7a7;
}

.prescription-participants-info__expand-button.collapsed:before {
  top: -webkit-calc(50% - 2.5px);
  top: calc(50% - 2.5px);
  border: 5px solid transparent;
  border-top: 5px solid #a7a7a7;
}

.prescription-participants-info__inner-wrap {
  border-radius: 5px;
  border: 1px solid #d3d3d3;
  padding: 8px;
}

.prescription-participants-info__inner-wrap.collapsed {
  display: none;
}

.prescription-form-selector__dropdown {
  width: 100%;
}
.privilege-selector .combo-box__item {
  height: -webkit-fit-content;
  height: fit-content;
  line-height: 21px;
  white-space: pre-wrap;
}
.diagnosis-selector .combo-box__item {
  height: -webkit-fit-content;
  height: fit-content;
  line-height: 21px;
  white-space: pre-wrap;
}
.payment-percent-selector {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.payment-percent-selector__dropdown {
  width: 100%;
}

.payment-percent-selector__input {
  width: 100px;
  margin-left: 20px;
}
.financing-source-selector__dropdown {
  width: 100%;
}
.expiration-selector__dropdown {
  width: 100%;
}
.prescription-privilege-info__duration {
  width: -webkit-calc(65% - 15px);
  width: calc(65% - 15px);
}

.prescription-privilege-info__payment-percent {
  width: -webkit-calc(35% - 15px);
  width: calc(35% - 15px);
  margin-left: 30px;
}
.medicine-selector .combo-box__item {
  height: -webkit-fit-content;
  height: fit-content;
  line-height: 21px;
  white-space: pre-wrap;
}
.product-selector .combo-box__item {
  height: -webkit-fit-content;
  height: fit-content;
  line-height: 21px;
  white-space: pre-wrap;
}
.product-list-selector .product-selector {
  margin-bottom: 10px;
}
.medication-form-selector__dropdown {
  width: 100%;
}

.medication-form-selector__dropdown .dropdown__item {
  height: -webkit-fit-content;
  height: fit-content;
  line-height: 21px;
  white-space: pre-wrap;
}
.dosage-selector {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.dosage-selector__dropdown {
  width: 100%;
}

.dosage-selector__dropdown .dropdown__item {
  height: -webkit-fit-content;
  height: fit-content;
  line-height: 21px;
  white-space: pre-wrap;
}

.dosage-selector__input {
  width: 100%;
  margin-left: 20px;
}
.unit-selector__dropdown {
  width: 100%;
}

.unit__dropdown .dropdown__item {
  height: -webkit-fit-content;
  height: fit-content;
  line-height: 21px;
  white-space: pre-wrap;
}
.intake-schedule-form__amount,
.intake-schedule-form__frequency {
  width: 90px;
}

.intake-schedule-form__unit {
  width: 250px;
  margin: 0px 10px;
}

.intake-schedule-form__interval {
  width: 200px;
  margin-left: 10px;
}

.intake-schedule-form__text-input {
  margin-top: 10px;
  width: 420px;
}

.intake-schedule-form__duration {
  width: 222px;
}

.intake-schedule-form__total-amount {
  margin-left: 20px;
}

.intake-schedule-form__total-amount .text-with-label__text {
  padding-top: 5px;
}

.intake-schedule-form__notes {
  width: 503px;
}

.prescription-medication__wrap {
  border-radius: 5px;
  border: 1px solid #d3d3d3;
  padding: 8px;
  margin-top: 10px;
}

.prescription-medication__remove-medication-button {
  height: 21px;
  width: 21px;
  font-size: 14px;
  line-height: 21px;
  font-weight: bold;
  margin-left: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: unset;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.prescription-medication {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.prescription-medication__column {
  width: -webkit-calc(50% - 25px);
  width: calc(50% - 25px);
}

.prescription-medication__product > .wrap-with-label {
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.prescription-medication__medication .combo-box__item,
.prescription-medication__product .combo-box__item {
  white-space: pre-wrap;
  height: -webkit-fit-content;
  height: fit-content;
}

.prescription-medication__total-amount {
  width: -webkit-calc(35% - 15px);
  width: calc(35% - 15px);
}

.prescription-medication-list {
  margin-top: 10px;
}

.prescription-medication-list__header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.prescription-medication-list__header__label {
  line-height: 27px;
  font-size: 16px;
  color: #a7a7a7;
}

.prescription-medication-list__header__label::after {
  content: " *";
  color: #d22c75;
  font-weight: normal;
}

.prescription-medication-list__header__add-medication-button {
  height: 21px;
  font-size: 16px;
  line-height: 21px;
  font-weight: bold;
  margin-left: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: unset;
  border: none;
}

.prescription-medication-list__header__add-medication-button:hover {
  box-shadow: none;
}

.prescription-medication-list__header__add-medication-button:active {
  color: #1565c0;
}

.prescription-medication-list__empty-text {
  line-height: 36px;
  color: #a7a7a7;
}
.download-prescription-button > .button {
  width: 200px;
}
.save-prescription-buttons-block__save-button {
  margin-right: 15px;
}

.save-prescription-buttons-block__save-button > .button,
.save-prescription-buttons-block__issue-button {
  width: 150px;
}

.save-prescription-buttons-block__success-text,
.save-prescription-buttons-block__error-text {
  margin-top: 15px;
  font-size: 14px;
}

.save-prescription-buttons-block__error-text {
  color: #d22c75;
}

.spoil-prescription-button {
  margin-left: 20px;
}
.prescription-page-footer {
  margin-top: 30px;
  margin-bottom: 20px;
}
.med-commission-form {
  margin-top: 10px;
}

.med-commission-form__checkbox {
  width: -webkit-fit-content;
  width: fit-content;
}

.med-commission-form__number,
.med-commission-form__date {
  width: 175px;
}

.med-commission-form__number {
  margin-right: 20px;
}
.prescription-additional-info__special-assignment,
.prescription-additional-info__print-products {
  width: -webkit-fit-content;
  width: fit-content;
  margin-top: 10px;
}

.prescription-additional-info__special-assignment {
  margin-top: 30px;
}
.prescription-page {
  height: 100%;
  background-color: #ffffff;
  padding: 0px 22px 25px 0px;
  position: relative;
}

.prescription-page__inner-wrap {
  padding-right: 20px;
  padding-left: 23px; /* Отступ слева делаем на обертке внутри скролла, а не над ним, т.к. в противном случае левый box-shadow некоторых элементов будет урезаться контейнером скролла, что выглядит некрасиво */
  padding-top: 25px; /* С отступом сверху та же история */
  max-width: 850px;
}

.prescription-page__row > .column {
  width: -webkit-calc(50% - 25px);
  width: calc(50% - 25px);
}

.prescription-page__row > .column:nth-child(2) {
  margin-left: 50px; /* Правому столбцу добавляем отступ */
}

.prescription-page__loader-wrap {
  position: absolute;
  width: -webkit-calc(100% - 45px);
  width: calc(100% - 45px); /* 100% - parent's horizontal padding */
  height: -webkit-calc(100% - 50px);
  height: calc(100% - 50px); /* 100% - parent's vertical padding */
  background-color: #ffffffa3;
}

.prescription-page .wrap-with-label__label {
  font-size: 16px;
  margin-top: 5px;
}

.prescription-page .input,
.prescription-page .dropdown__title,
.prescription-page .dropdown__item,
.prescription-page .combo-box__item {
  font-size: 18px;
}

.prescription-page .checkbox-with-label__label {
  font-size: 16px;
}

.prescription-page .dropdown__content-wrap,
.prescription-page .combo-box__content-wrap {
  max-height: 350px;
}

.prescription-list-page {
  height: 100%;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.prescription-list-header {
  margin-bottom: 20px;
}

.prescription-list-header .column {
  width: 14.2%;
  padding: 0 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.prescription-list-header .column:last-child {
  padding: 0;
}

.prescription-list-header .column .input {
  width: 100%;
}

.prescription-list-header .column .dropdown {
  width: 100%;
}

.prescription-list-header__label {
  font-weight: bold;
  margin-bottom: 5px;
}
.prescription-list-item {
  width: 100%;
  min-height: 50px;
  cursor: pointer;
  border-radius: 5px;
  padding: 5px;
}

.prescription-list-item:hover {
  background-color: #e1e1e1;
}

.prescription-list-item .column {
  width: 14.2%;
  padding: 0 5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.prescription-list-item .column .text {
  max-width: 100%;
}
.prescription-list {
  width: 90%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.prescription-loader-stub {
  height: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.prescription-info-page {
  padding: 20px;
}

.prescription-info-page__content {
  height: 200px;
}

.prescription-info-page__button {
  margin-top: 20px;
  margin-right: 20px;
}
.patient-area__loader-or-empty > .loader-or-empty__loader {
  border-top-color: #eceff1;
}

.content-area {
  height: 100%;
  width: 100%;
  background: #eceff1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.side-modal.modal {
  background: unset;
}

.side-modal.modal > .modal__wrap {
  background-color: #fff;
  position: absolute;
  width: 376px;
  right: 0px;
  bottom: 25px;
  height: -webkit-calc(100% - 107px - 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;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
}

.side-modal__close-button {
  position: absolute;
  top: 40px;
  left: -18px;
  width: 36px;
  height: 36px;
  line-height: 16px;
  padding: 0;
}


.doctor-profile__name {
  font-size: 18px;
  line-height: 20px;
  font-weight: bold;
  max-width: 244px;
  margin-bottom: 21px;
}

.doctor-profile__label-and-value {
  margin-bottom: 13px;
}

.doctor-profile__logout-button {
  position: absolute;
  bottom: 31px;
  width: 229px;
  height: 48px;
  -ms-flex-item-align: center;
      align-self: center;
}

.confirmation-modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

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

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

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

.confirmation-modal__button:active {
  border: 2px solid #ffffff;
}
.modal.attachments-too-large > .modal__wrap {
  width: 520px;
}

.attachments-too-large__error-text {
  text-align: center;
  margin: 10px 20px;
}

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

.attachments-too-large__close-button {
  margin-top: 10px;
  padding: 15px 30px;
}

.image-viewer-modal > .modal__wrap {
  width: -webkit-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  min-width: 500px;
  min-height: 500px;
  max-width: 800px;
  max-height: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.image-viewer-modal.modal-content {
  margin: auto;
}

.image-viewer-modal__progressbar {
  width: 60px;
  height: 60px;
}

.image-viewer-modal__progressbar .CircularProgressbar-path {
  stroke: #42a5f5;
}

.patient-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 400px;
  width: 775px;
  position: relative;
}

.patient-search__title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 26px;
  -ms-flex-item-align: center;
      align-self: center;
}

.patient-search__button {
  height: 50px;
  width: 100px;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.patient-search__tooltip {
  font-size: 16px;
  color: #a7a7a7;
}

.patient-search__create-patient {
  cursor: pointer;
  color: #42a5f5;
  text-decoration: underline;
  font-size: 16px;
}

.patient-search__bottom-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  bottom: 0;
}

.patient-search__combobox-wrap {
  position: relative;
}

.patient-search__loader {
  position: absolute;
  top: -webkit-calc(50% - 8px);
  top: calc(50% - 8px);
  right: 16px;
  height: 16px;
  width: 16px;
}

.patient-search__loader > span {
  clip: rect(8px, 16px, 16px, 0);
}

.patient-search__empty-text {
  text-align: center;
  padding: 50px;
}

.patient-search__confirm {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.patient-search__confirm-text {
  font-size: 26px;
  text-align: center;
  padding: 50px;
}

.patient-search__confirm-buttons {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.patient-search__confirm-close-modal-button {
  height: 50px;
  width: 100px;
}

.add-patient-modal__title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 26px;
  text-align: center;
}

.add-patient-modal__input-container {
  width: 100%;
}

.add-patient-modal__label {
  margin-bottom: 7px;
}
.add-patient-modal__input{
  width: 100%;
  height: 92px;
}
.add-patient-modal__input > .input {
  width: 100%;
}

.add-patient-modal__input > .lable {
  color: black;
  font-size: 16
}
.add-patient-modal__buttons-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 30px 5px;
}

.add-patient-modal__button {
  padding: 10px 25px;
}

.create-patient  .scrollbar__track.horizontal {
  display: none;
}

.create-patient__content {
  width: 96%;
}

.create-patient__title {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
}

.create-patient__input-container {
  width: 100%;
}

.create-patient__input-container > .input {
  width: 100%;
}

.create-patient__flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.create-patient__flex-item {
  width: -webkit-calc(50% - 10px);
  width: calc(50% - 10px);
}

.create-patient__flex-item > .input {
  width: 100%;
}

.create-patient__flex-item,
.create-patient__input-container {
  padding: 5px 0;
}

.create-patient__buttons-container {
  padding: 5px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
}

.create-patient__button {
  height: 48px;
  width: 156px;
}

.find-by-snils {
  width: 500px;
}

.create-patient__day-picker {
  width: 100%;
}

.create-patient .DayPickerInput {
  width: 100%;
}

.create-patient__input {
  width: 100%;
}

.create-patient__label {
  font-size: 12px;
  color: #a7a7a7;
  line-height: 21px;
}
.service-info-modal > .modal__wrap {
  width: 500px;
}

.service-info__text {
  width: 100%;
}

.service-info__text.note .text {
  color: #42a5f5;
  font-size: 12px;
  line-height: normal;
}

.decline-service > .modal__wrap {
  width: 500px;
}

.decline-service__textarea-with-scrollbar-and-label {
  width: 100%;
}

.decline-service__textarea-with-scrollbar-and-label
  .textarea-with-scrollbar__textarea {
  height: 100px;
}

.decline-service__button-wrap {
  margin-top: 15px;
}

.decline-service__button,
.decline-service__button .button-with-loader__button {
  width: 100px;
  height: 48px;
  margin: 0px 15px;
}

.decline-service__cancellation-text,
.decline-service__error-text {
  margin-top: 10px;
  font-size: 12px;
  line-height: 21px;
  text-align: center;
}

.decline-service__cancellation-text {
  color: #a7a7a7;
}

.decline-service__error-text {
  color: #f50057;
}

.cancel-service > .modal__wrap {
  width: 500px;
}

.cancel-service__button-wrap {
  margin-top: 15px;
}

.cancel-service__button,
.cancel-service__button .button-with-loader__button {
  width: 100px;
  height: 48px;
  margin: 0px 15px;
}

.cancel-service__cancellation-text,
.cancel-service__error-text {
  margin-top: 10px;
  font-size: 12px;
  line-height: 21px;
  text-align: center;
}

.cancel-service__cancellation-text {
  color: #a7a7a7;
}

.cancel-service__error-text {
  color: #f50057;
}

.certificate-dropdown-item {
  height: -webkit-fit-content;
  height: fit-content;
  min-height: 40px;
}

.certificate-dropdown-item__name {
  line-height: 21px;
}

.certificate-dropdown-item__issuer,
.certificate-dropdown-item__subject,
.certificate-dropdown-item__invalid {
  font-size: 12px;
  line-height: 18px;
}

.certificate-dropdown-item__invalid {
  color: #d22c75;
}

.certificate-selector {
  width: 100%;
}

.certificate-selector__dropdown {
  width: -webkit-calc(100% - 16px - 10px);
  width: calc(100% - 16px - 10px); /* 100% - ширина лоадера - отступ от лоадера */
}

.certificate-selector__loader {
  width: 16px;
  height: 16px;
  margin-bottom: 13px;
}
.certificate-selector__loader > span {
  clip: rect(8px, 16px, 16px, 0);
}

.certificate-selector__error {
  margin-top: 10px;
  font-size: 12px;
  color: #d22c75;
}

.signature-tip {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 5px;
}

.signature-tip__text,
.signature-tip__url {
  font-size: 14px;
  line-height: 18px;
  margin-right: 3px;
}

.signature-tip-list__list-wrap {
  margin-top: 10px;
  padding-left: 15px;
}

.prescription-sending > .modal__wrap {
  width: 650px;
  min-width: unset;
}

.prescription-sending__certificate-selector {
  margin-top: 10;
}

.prescription-sending__save-button {
  margin-top: 20px;
}

.prescription-sending__save-button > .button-with-loader__button {
  width: 250px;
}

.spoil-prescription > .modal__wrap {
  width: 500px;
}

.spoil-prescription__button-wrap {
  margin-top: 15px;
}

.spoil-prescription__button,
.spoil-prescription__button .button-with-loader__button {
  width: 100px;
  height: 48px;
  margin: 0px 15px;
}

.spoil-prescription__error-text {
  margin-top: 10px;
  font-size: 12px;
  line-height: 21px;
  text-align: center;
}

.spoil-prescription__error-text {
  color: #f50057;
}

.spoil-prescription > .modal__wrap {
  width: 500px;
}

.spoil-prescription__button-wrap {
  margin-top: 15px;
}

.spoil-prescription__button,
.spoil-prescription__button .button-with-loader__button {
  width: 100px;
  height: 48px;
  margin: 0px 15px;
}

.spoil-prescription__error-text {
  margin-top: 10px;
  font-size: 12px;
  line-height: 21px;
  text-align: center;
}

.spoil-prescription__error-text {
  color: #f50057;
}

.print-prescription-modal__button {
  width: 200px;
  margin: 10px 50px;
}
.input-with-error > .lable {
  font-size: 12px;
  color: #a7a7a7;
  line-height: 21px;
}

.input-with-error > .error {
  font-size: 12px;
  color: #f50057;
  line-height: 15px;
}

.input-with-error > .input {
  margin-top: 5px;
  margin-bottom: 5px;
}

.editable-patient__button-block {
  padding-top: 15px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.editable-patient__title {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.editable-patient__input-container {
  width: 100%;
}

.editable-patient__input-container span {
  font-size: 16px;
}

.editable-patient__button {
  height: 48px;
  width: 156px;
}

.editable-patient__error {
  margin-top: 10px;
  font-size: 12px;
  color: #f50057;
  text-align: center;
}

.editable-patient__confirm-text {
  font-size: 18px;
  text-align: center;
  padding: 10px 0;
}

.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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.doctor-info__header {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 0;
}

.doctor-info__header__text {
  font-weight: bold;
  font-size: 38px;
}

.doctor-info__content {
  width: 100%;
}

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

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

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

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

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

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

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

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

.doctor-info__avatar {
  margin-left: 30px;
  width: 100px;
  height: 100px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.doctor-info__go-back-link {
  position: absolute;
  top: 38px;
  left: 80px;
}
.main-frame {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

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

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

.auth-page {
  height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #42a5f5;
}

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

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

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

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

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

.auth-link {
  color: #ffffff;
  text-decoration: underline;
  line-height: 27px;
}

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


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

.auth-input:focus {
  border-color: #d3d3d3;
}
.confirm-phone__input__country-code {
  width: 200px;
  margin: 7px 4px 8px 0px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.confirm-phone__input__phone {
  width: 200px;
}

.confirm-phone__input-note {
  margin: 8px 0 8px;
}

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

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



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

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

.login__input-wrap {
  width: 416px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

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

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

.login__agreement-links-wrap .text,
.login__agreement-links-wrap .external-link {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 14px;
  white-space: pre;
  color: #ffffff;
  line-height: 21px;
}

.login__skip-link {
  margin-top: 29px;
}

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

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

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

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



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

.layout__loader {
  margin: auto;
}
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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


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

html,
body {
  height: 100%;
}

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

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

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