* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  outline: none;
}
.button {
  display: flex;
  flex-direction: column;
  background: none;
  cursor: pointer;
  font-size: 16px;
  text-align: center;
  align-items: 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: flex;
  height: 32px;
  width: 32px;
  animation: dash-loader-1 3s linear infinite;
  margin: auto;
}

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

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

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

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

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

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

.button-with-loader__button {
  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;
  flex-shrink: 0;
  border-radius: 2px;
  font-size: 14px;
  background: #ffffff;
}

.checkbox.checked {
  color: #424242;
}

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

.column {
  display: flex;
  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::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: flex;
  flex-direction: column;
}
.row {
  display: flex;
  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;
  justify-content: left;
  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 {
  align-items: center;
}

.wrap-with-loader__loader {
  margin-left: 10px;
  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%;
  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;
  justify-content: left;
  align-items: flex-start;
  font-size: 16px;
  padding: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

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

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

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

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

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

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

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

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

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

.dropdown__item:hover {
  background: #eceff1;
}

.external-link {
  color: #42a5f5;
  outline: none;
  cursor: pointer;
  text-decoration: underline;
}
.ReactTable{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;border:1px solid rgba(0,0,0,0.1);}.ReactTable *{box-sizing:border-box}.ReactTable .rt-table{-webkit-box-flex:1;-ms-flex:auto 1;flex:auto 1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;width:100%;border-collapse:collapse;overflow:auto}.ReactTable .rt-thead{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-user-select:none;-moz-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{-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;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);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);transform:translate(-50%,-50%) rotate(0)}.ReactTable .rt-resizer{display:inline-block;position:absolute;width:36px;top:0;bottom:0;right:-18px;cursor:col-resize;z-index:10}.ReactTable .rt-tfoot{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;box-shadow:0 0 15px 0 rgba(0,0,0,0.15);}.ReactTable .rt-tfoot .rt-td{border-right:1px solid rgba(0,0,0,0.05);}.ReactTable .rt-tfoot .rt-td:last-child{border-right:0}.ReactTable.-striped .rt-tr.-odd{background:rgba(0,0,0,0.03)}.ReactTable.-highlight .rt-tbody .rt-tr:not(.-padRow):hover{background:rgba(0,0,0,0.05)}.ReactTable .-pagination{z-index:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:3px;box-shadow:0 0 15px 0 rgba(0,0,0,0.1);border-top:2px solid rgba(0,0,0,0.1);}.ReactTable .-pagination input,.ReactTable .-pagination select{border:1px solid rgba(0,0,0,0.1);background:#fff;padding:5px 7px;font-size:inherit;border-radius:3px;font-weight:normal;outline-width:0}.ReactTable .-pagination .-btn{-webkit-appearance:none;-moz-appearance:none;appearance:none;display:block;width:100%;height:100%;border:0;border-radius:3px;padding:6px;font-size:1em;color:rgba(0,0,0,0.6);background:rgba(0,0,0,0.1);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%);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%);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%);transform:translateY(50%)}.ReactTable .rt-resizing .rt-th,.ReactTable .rt-resizing .rt-td{transition:none !important;cursor:col-resize;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}
.table__loader {
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
}

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

.ReactTable .-pagination .-btn {
  width: 110px;
  text-align: center;
}
.ReactTable .-pagination {
  justify-content: center;
}
.ReactTable .-pagination .-previous,
.ReactTable .-pagination .-center,
.ReactTable .-pagination .-next {
  display: flex;
  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: 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: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100%;
  background: rgba(88, 106, 141, 0.9);
}

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

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

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

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

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

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

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

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

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

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

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

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