/* 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: 'Monserrat';
  src: local('Monserrat'), url(3cd786652b8a2e9d41f210cb1a527ff6.ttf) format('truetype');
}
* {
  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);
}
:root {
  --purple-color: #4029B1;
  --pink-color: #FB2F54;
  --ligt-pink-color: #FFD2DA;
  --light-gray-color: #E5E5E5;
  --gray-color: #ABAAAE;
  --yellow-color: #FFAA2B;
  --light-yellow-color: #FFEBB8;
  --blue-color: #00CEF4;
  --light-blue-color: #C2FAFF;
}
body * {
  box-sizing: border-box;
}

body {
  min-height: -webkit-fill-available;
}

body.modal-opened {
  overflow-y: hidden;
  position: fixed;
  width: 100%;
}

html,
body {
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

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

.scrollbar__track.vertical {
  background-color: #f6f6f6;
  overflow: visible;
}

.scrollbar__track > .scrollbar__thumb {
  background: #dadada;
  position: relative;
  z-index: 2;
  overflow: visible !important;
}

.dash-loader span::after {
  border: 3px solid var(--purple-color);
}

.button.blue-button {
  background-color: var(--purple-color);
}

.button.red-button {
  background-color: var(--pink-color);
}

.button.blue-outline-button {
  border: 1px solid var(--purple-color);
  color: var(--purple-color);
}

.button.blue-outline-button:hover {
  box-shadow: 0 0 10px 0 var(--purple-color);
}

.modal__header__close-button {
  color: #9791a6;
  top: 20px;
  right: 20px;
}

.modal__wrap {
  border-radius: 16px;
}

.textarea:focus {
  border: 1px solid var(--gray-color);
  box-shadow: none;
}

.dropdown {
  border-radius: 0;
}

.dropdown__title {
  border: none;
  border-bottom: 0.5px solid #abaaae;
}

.dropdown__title:before {
  border: none;
  background-image: url(efe0e443d9b9c19b1374eaa719f73142.svg);
  width: 12px;
  height: 6px;
  background-size: 12px 6px;
  background-repeat: no-repeat;
}

.dropdown.open > .dropdown__title:before {
  border: none;
}

.dropdown__item {
  border: none;
  padding: 20px;
  height: auto;
}

.dropdown__title {
  height: 32px;
}

.dropdown__item:hover {
  background-color: rgba(218, 218, 218, 0.15);
}

.dropdown__item:first-of-type {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.dropdown__content-wrap {
  top: 52px;
  box-shadow: 0px 4px 32px -4px #0a062c26;
  border: none;
  border-radius: 8px;
  z-index: 3;
}

.combo-box__content-wrap {
  top: 52px;
  box-shadow: 0px 4px 32px -4px #0a062c26;
  border: none;
  border-radius: 8px;
  background-color: #fff;
  z-index: 3;
}

.combo-box__scrollbar {
  border: none;
  border-radius: 8px;
}

.combo-box__item {
  border: none;
  height: auto;
}

.combo-box__item:hover {
  background-color: rgba(218, 218, 218, 0.15);
}

.combo-box__item:first-of-type {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.combo-box__selected-item {
  height: auto;
  border: none;
  border-bottom: 0.5px solid #abaaae;
  border-radius: 0;
}

.combo-box-selected-item__deselect-button {
  background-color: #fff;
  color: #abaaae;
  border-left: none;
}

.dropdown__scrollbar {
  border: none;
  padding: 10px;
}

.input {
  border: none;
  border-bottom: 0.5px solid #abaaae;
  border-radius: 0;
  height: 32px;
}

.input:focus {
  border: none;
  border-bottom: 0.5px solid #abaaae;
  box-shadow: none;
}

.white-button {
  border: 1px solid #abaaae;
  background-color: #fff;
  color: #000;
}

img {
  -webkit-backface-visibility: hidden; /* IE 9 */ /* Chrome, Safari, Opera */
  transform: translateZ(0);
}

.prescription-list-page {
  background-color:#F6F6F6;
  min-height: 100%;
}

.prescription-list-page__content {
  display: flex;
  width: 918px;
  height: 600px;
  background-color: #fff;
  margin: auto;
  border-radius: 16px;
  box-shadow: 0px 4px 32px -4px #0A062C12;
  align-items: center;
  padding: 36px 44px;
}

.prescription-list-page__header {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
}
.header-logo {
  display: flex;
  align-items: center;
}

.header-logo__image {
  height: 36px;
  width: 77px;
}

.header-logo__text {
  font-size: 12px;
  width: 78px;
  margin-left: 9px;
  line-height: 14px;
}

.header {
  width: 100%;
  display: flex;
  background-color: inherit;
}

.header__row {
  justify-content: space-between;
  width: 100%;
  padding: 25px 44px;
}
.header-user-info {
  position: relative;
}

.header-user-info__button {
  position: relative;
  font-weight: 600;
  padding-right: 22px;
  z-index: 3;
}

.header-user-info__button::after {
  content: '';
  position: absolute;
  background-image: url(efe0e443d9b9c19b1374eaa719f73142.svg);
  width: 11px;
  height: 6px;
  background-size: cover;
  background-repeat: no-repeat;
  top: calc(50% - 3px);
  right: 0;
}

.header-user-info-menu {
  padding: 20px;
  box-shadow: 0px 12px 32px -4px #0a062c12;
  border-radius: 8px;
  position: absolute;
  background-color: #fff;
  top: 38px;
  right: -21px;
  transition-property: opacity, visibility;
  transition-duration: .4s, 0s;
}

.header-user-info-menu.hidden {
  visibility: hidden;
  opacity: 0;
}

.header-user-info-menu::before {
  content: "";
  position: absolute;
  width: 38px;
  height: 18px;
  background: #fff;
  top: -18px;
  right: 9px;
}

.pseudo-circle-left {
  z-index: 2;
  width: 36px;
  height: 36px;
  background-color: inherit;
  position: absolute;
  border-radius: 100%;
  top: 27px;
  right: 50px;
}

.pseudo-circle-right {
  z-index: 2;
  width: 36px;
  height: 36px;
  background-color: inherit;
  position: absolute;
  border-radius: 100%;
  top: 27px;
  right: 12px;
}

.header-user-info-menu__button {
  white-space: nowrap;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 16px;
}

.header-user-info-menu__button:last-of-type {
  margin-bottom: 0;
}

.header-user-info-menu__button.red {
  color: var(--pink-color);
}

.header-user-info-menu__text.text {
  font-size: 12px;
  color: #ABAAAE;
  margin-bottom: 14px;
}
.status {
  border-radius: 6px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 12px;
}

.status .text {
  font-size: 12px;
  font-weight: 500;
}

.status.blue {
  background-color: var(--light-blue-color);
}

.status.blue > .text {
  color: var(--blue-color);
}

.status.grey {
  background-color: var(--light-gray-color);
}

.status.grey > .text {
  color: var(--gray-color);
}

.status.red {
  background-color: var(--ligt-pink-color);
}

.status.red > .text {
  color: var(--pink-color);
}

.status.orange {
  background-color: var(--light-yellow-color);
}

.status.orange > .text {
  color: var(--yellow-color);
}
.prescription-list-item {
  width: 312px;
  height: 275px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0px 4px 32px -4px #0a062c12;
  justify-content: flex-start;
  padding: 16px;
}

.prescription-list-item__text {
  font-size: 16px;
}

.prescription-list-item__text-with-label {
  align-items: flex-start;
}

.prescription-list-item__text-with-label.left-column {
  margin-right: 38px;
}

.prescription-list-item__text-with-label .text {
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  max-width: 265px;
}

.prescription-list-item__text-with-label .wrap-with-label__label {
  font-size: 14px;
}

.prescription-list-item__row {
  width: 100%;
  align-items: center;
}

.prescription-list-item__row.top {
  justify-content: space-between;
}

.prescription-list-item__row.bottom {
  padding-top: 16px;
  border-top: 1px dashed #ebebeb;
  margin-top: 20px;
}

.prescription-list-item__row.middle {
  margin-top: 20px;
}

.prescription-list__wrap {
  max-width: 1016px;
  margin: 0 auto;
}

.prescription-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(312px, 1fr));
  width: 100%;
  justify-items: center;
  grid-gap: 20px;
  padding: 20px;
}

.prescription-list__header {
  margin-top: 25px;
  text-align: center;
  font-size: 28px;
  font-weight: 600;
}

.prescription-list__subheader {
  font-size: 16px;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 36px;
}

@media only screen and (max-width: 375px) {
  .prescription-list  {
    padding: 0;
    padding-bottom: 20px;
  }
}

.prescription-list__loader-wrap {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 400px;
  width: 100%;
}
.not-found-stub {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 36px 16px;
  max-width: 375px;
}

@media only screen and (max-width: 375px) {
  .not-found-stub {
    width: 312px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0px 4px 32px -4px #0a062c12;
  }

  .not-found-stub__text {
    font-size: 14px;
  }
}

.not-found-stub__header {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-top: 40px;
}

.not-found-stub__text {
  font-size: 16px;
  text-align: center;
  margin-top: 12px;
}
.download-mobile-block {
  grid-column: 1 / -1;
  width: 100%;
  background-color: #fff;
  border-radius: 16px;
  padding: 28px 36px;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.download-mobile-block__text {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  margin-right: 10px;
}

@media only screen and (max-width: 975px) {
  .download-mobile-block  {
    max-width: 810px;
    margin: 20px auto;
  }
}

@media only screen and (max-width: 425px) {
  .download-mobile-block  {
    max-width: 312px;
    margin: 20px auto;
  }

  .download-mobile-block__text {
    font-size: 16px;
  }
}

@media only screen and (max-width: 724px) {
  .download-mobile-block__button {
    margin-top: 20px;
  }
}
.content-area__wrap {
  justify-content: center;
  height: 100%;
}

.content-area {
  min-height: 100%;
}

.qr-code-modal .modal__wrap {
  min-width: 350px;
}

@media only screen and (min-width: 768px) {
  .qr-code-modal .modal__wrap {
    min-width: 638px;
  }
}

@media only screen and (max-width: 374px) {
  .qr-code-modal .modal__wrap {
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
}

.qr-code-modal__header {
  font-size: 24px;
  font-weight: 600;
}

.qr-code-modal__subheader {
  margin-top: 8px;
  font-size: 16px;
  margin-bottom: 25px;
}

.qr-code-modal__text {
  font-size: 16px;
  margin-bottom: 44px;
}

.qr-code-modal__button {
  height: 48px;
  width: 148px;
  flex-direction: row;
}

.qr-code-modal__button .text {
  color: #fff;
  margin-left: 10px;
}
.download-mobile-app-modal .modal__wrap {
  max-width: 530px;
}

.download-mobile-app-modal__header {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}

.download-mobile-app-modal__left-block {
  align-items: center;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}

.download-mobile-app-modal__right-block {
  align-items: center;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}

.download-mobile-app__images-wrap {
  flex-wrap: wrap;
  justify-content: space-between;
  flex-grow: 1;
}
.features-list {
  margin-top: 20px;
  margin-bottom: 30px;
  line-height: 24px;
}

.features-list .text {
  font-size: 16px;
}

.features-list__list {
  list-style: inside;
}

.features-list__list-item .text {
  display: inline;
}

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

.main-frame__scrollbar {
  min-height: calc(100% - 57px);
}

.login-page {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #E5E5E5;
}

.login-page__content {
  max-width: 447px;
  border-radius: 16px;
  box-shadow: 0px 4px 32px -4px #0a062c12;
  margin: 16px;
  display: flex;
  background-color: #fff;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  padding-top: 48px;
  margin-bottom: 52px;
  z-index: 2;
}

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

.login-page__background {
  position: absolute;
  top: 0;
  height: 450px;
  width: 100%;
  background-image: url(7fdaf00ba4f20b822a599d87f5d4b45b.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}


@media only screen and (max-width: 375px) {
  .login-page__content {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 343px;
    margin-bottom: 24px;
  }

  .login-page__text {
    font-size: 16px;
  }

  .login-page__background {
    position: absolute;
    top: 0;
    height: 300px;
    width: 100%;
    background-image: url(7fdaf00ba4f20b822a599d87f5d4b45b.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
}



.login-page__header {
  font-size: 32px;
  font-weight: 600;
  margin-top: 42px;
  margin-bottom: 8px;
}

.button-with-loader.login-page__button-with-loader {
  width: 100%;
  align-items: center;
}

.login-page__button-with-loader .button {
  width: 230px;
  height: 59px;
  border-radius: 60px;
  margin-top: 60px;
}

.login__input-wrap {
  width: 416px;
  display: flex;
  flex-direction: column;
}

.login__password-label-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

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

.login-page__wrap {
  max-width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

.login-page__content-wrap {
  position: relative;
  width: 416px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-page__auth-error.text {
  margin: 30px 0;
  font-size: 16px;
  color: var(--pink-color);
  display: flex;
  align-self: center;
  justify-content: center;
}

.login-page__support-email {
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.login-page__support-email-text {
  font-size: 16px;
  color: #ABAAAE;
  margin-right: 5px;
  margin-left: 16px;
  text-align: center;
  margin-bottom: 5px;
  display: inline;
}

.login-page__support-email-link {
  color: #ABAAAE;
  margin-right: 16px;
  margin-bottom: 30px;
}


.login-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px;
}

.login-form__checkbox {
  margin-top: 30px;
}

.login-form__checkbox .checkbox {
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--purple-color);
}

.login-form__checkbox .checkbox.checked {
  font-size: 12px;
  color: transparent;
  background-color: var(--purple-color);
  background-image: url(3149ee085ea99761f43915f1469adb85.svg);
  background-repeat: no-repeat;
  background-size: 9px 7px;
  background-position: center center;
}

.login-form__text-aggrement {
  font-size: 12px;
}

.login-form__row-aggrement {
  margin-top: 30px;
}

.login-form__input {
  margin-top: 50px;
  width: auto;
}

.login-form__input.birthday-input {
  margin-top: 20px;
}

.login-form__link {
  font-size: 12px;
  color: var(--purple-color);
  text-decoration: none;
}

@media only screen and (max-width: 375px) {
  .login-form__input {
    width: auto;
  }

  .login-form__checkbox .checkbox-with-label__label {
    font-size: 9px;
  }

  .login-form__link {
    font-size: 9px;
    padding-left: 16px;
  }

  .login-form__checkbox .checkbox {
    width: 12px;
    height: 12px;
    border: 1.5px solid var(--purple-color);
  }
}

.login-form__snils-input-error {
  margin-top: 12px;
  visibility: hidden;
  font-size: 10px;
  color: #fb2f54;
  line-height: 135%;
}

@media only screen and (min-width: 425px) {
  .login-form__snils-input-error {
    font-size: 13px;
  }
}

.login-form__snils-input-error.visible {
  visibility: visible;
}

.login-form__wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

