@font-face {
    font-family: "Roboto";
    src: Local("Roboto"), url(/react/fonts/Roboto-Regular.ttf) format("truetype");
}

@font-face {
    font-family: "Test";
    src: Local("Test"), url(/react/fonts/Roboto-MediumItalic.ttf) format("italic");
}

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,
strong,
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: "Roboto";
    font-family: "Roboto";
    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;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
    position: fixed;
}

/* Track */
::-webkit-scrollbar-track {
    display: none;
    width: 0;
    max-width: 0;
}

/* Handle */
::-webkit-scrollbar-thumb {
    border-radius: 10px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

.custom-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  background-color: transparent;
  cursor: pointer;
  border: none;
  border-radius: 0.5rem;
}
.custom-button:focus {
  outline: none;
}

.button-unbordered {
  border: none;
}

.button-full-bordered {
  background-color: rgb(225, 245, 254);
}

.button-full-bordered-strong {
  background-color: #03a9f4;
  color: white !important;
  font-size: 1rem !important;
  line-height: 1.5rem !important;
  letter-spacing: 0.5px !important;
  font-weight: 700 !important;
}

.button-primary {
  color: #03a9f4;
}

.custom-button-disabled {
  opacity: 0.7;
  user-select: none;
  cursor: not-allowed;
}

.chip-wrapper {
  display: flex;
  align-items: center;
}
.chip-wrapper .chip {
  display: flex;
  align-items: center;
  padding: 0.375rem;
  background-color: rgba(33, 33, 33, 0.08);
  color: rgba(0, 0, 0, 0.6);
  border-radius: 1.25rem;
}
.chip-wrapper .chip-icon-wrapper {
  margin-right: 0.375rem;
}
.chip-wrapper .chip-icon-wrapper-right {
  margin-left: 0.7rem;
}
.chip-wrapper .chip-clickable {
  cursor: pointer;
}

.collapse-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.14);
  border-radius: 0.5rem;
}
.collapse-wrapper-white .collapse-panel-header {
  background-color: white;
}
.collapse-wrapper-dark .collapse-panel-header {
  background-color: rgba(0, 0, 0, 0.04);
}

.collapse-panel-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.collapse-panel-wrapper:last-child .collapse-panel-header {
  border-bottom: none;
}
.collapse-panel-wrapper .collapse-panel-header {
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0.5rem;
}
.collapse-panel-wrapper .collapse-panel-header-body {
  width: 100%;
  margin-left: 0.35rem;
}
.collapse-panel-wrapper .collapse-panel-header .icon {
  transform: rotate(0deg);
  transition: 0.3s;
}
.collapse-panel-wrapper .collapse-panel-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.collapse-panel-wrapper .collapse-panel-body-hidden {
  display: none;
}

.collapse-panel-wrapper-active .collapse-panel-header .icon {
  transform: rotate(180deg);
}

.confirmation-dialog-content {
  color: rgba(0, 0, 0, 0.6);
}

.confirmation-dialog-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  color: #03a9f4;
}
.confirmation-dialog-footer > :first-child {
  margin-right: 3rem;
}

.date-time-picker-wrapper {
  display: flex;
  width: 100%;
  position: relative;
}
.date-time-picker-wrapper .custom-date-time-picker {
  width: 100%;
}
.date-time-picker-wrapper .custom-date-time-picker input {
  border: none;
  padding: 0.5rem;
  padding-right: 2.5rem;
  background-color: white;
  box-sizing: border-box;
  height: 2.5rem;
  width: 100%;
}
.date-time-picker-wrapper .custom-date-time-picker input:focus {
  outline: none;
}
.date-time-picker-wrapper .custom-date-time-picker input:disabled {
  background-color: transparent;
  padding-right: 0.5rem;
}
.date-time-picker-wrapper .custom-date-time-picker-sliding input {
  height: 3rem;
  padding-top: 1rem;
}
.date-time-picker-wrapper .custom-date-time-picker-label {
  position: absolute;
  left: 0.5rem;
  top: 1rem;
  display: flex;
  align-items: center;
  transition: 0.3s;
  color: rgba(0, 0, 0, 0.6);
  user-select: none;
  pointer-events: none;
}
.date-time-picker-wrapper .custom-date-time-picker-label-top {
  top: 0;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.4px;
  height: 16px;
}
.date-time-picker-wrapper .custom-date-time-picker-bottom-bordered input {
  border-bottom: 1px solid;
}
.date-time-picker-wrapper .custom-date-time-picker-full-bordered input {
  border: 1px solid;
  border-radius: 0.5rem;
}
.date-time-picker-wrapper .custom-date-time-picker-primary input {
  border-color: #03a9f4;
}
.date-time-picker-wrapper .custom-date-time-picker-secondary input {
  border-color: rgba(0, 0, 0, 0.12);
}
.date-time-picker-wrapper .icon-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  color: rgba(0, 0, 0, 0.6);
}

.dropdown-wrapper {
  position: relative;
  z-index: 1000;
}
.dropdown-wrapper .dropdown {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown-element-wrapper {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: auto;
  z-index: 1100;
  box-sizing: border-box;
}
.dropdown-element-wrapper .dropdown-element {
  position: absolute;
  box-sizing: border-box;
}

.custom-form-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.custom-form-wrapper .custom-form {
  display: flex;
  flex-direction: column;
}
.custom-form-wrapper .custom-form-item {
  display: flex;
}
.custom-form-wrapper .custom-form-item-placeholder {
  width: 3.25rem;
  height: 3.25rem;
}
.custom-form-wrapper .custom-form-item-error {
  display: flex;
  align-items: center;
  color: red;
  margin-bottom: 0.5rem;
}
.custom-form-wrapper .custom-form-item-error-placeholder {
  width: 3.25rem;
}
.custom-form-wrapper .custom-form-item-4cols {
  display: grid;
  width: 100%;
  align-items: flex-end;
  grid-template-columns: 3.25rem calc((100% - 5.75rem) / 2) calc((100% - 5.75rem) / 2) 2.5rem;
}

.icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  user-select: none;
}
.icon-wrapper span {
  height: 1.5rem;
  width: 1.5rem;
  font-size: 1.5rem;
}

.icon-secondary {
  color: inherit;
}

.icon-primary {
  color: #03a9f4;
}

.icon-disabled {
  color: rgba(0, 0, 0, 0.38);
  cursor: default;
}
.icon-disabled:hover {
  background-color: transparent;
}

.icon-unbordered {
  background-color: transparent;
}

.icon-bordered {
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 9999px;
}

.icon-rotate-on-hover {
  transform: rotate(0deg);
  transition: ease-in-out;
  transition-duration: 0.3s;
}
.icon-rotate-on-hover:hover {
  transform: rotate(90deg);
  background-color: transparent;
}

.icon-highlight-on-hover {
  background-color: transparent;
}
.icon-highlight-on-hover:hover {
  background-color: rgb(225, 245, 254);
}

.icon-highlighted {
  background-color: rgb(225, 245, 254);
}

.icon-small {
  width: 1rem;
  height: 1rem;
}

.icon-medium {
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  min-height: 2.5rem;
}

.icon-large {
  width: 3.25rem;
  height: 3.25rem;
}

.input-wrapper {
  position: relative;
  display: flex;
  width: 100%;
}
.input-wrapper input {
  padding: 0.5rem;
  padding-right: 2.5rem;
  width: 100%;
  height: 2.5rem;
  box-sizing: border-box;
  border: none;
}
.input-wrapper input:focus {
  outline: none;
}
.input-wrapper input:disabled {
  background-color: transparent;
  padding-right: 0.5rem;
}
.input-wrapper .input-sliding {
  height: 3rem;
  padding-top: 1.25rem;
}
.input-wrapper .input-sliding::placeholder {
  height: 0;
  width: 0;
  color: transparent;
}
.input-wrapper .input-sliding-label {
  position: absolute;
  left: 0.5rem;
  top: 0.75rem;
  display: flex;
  align-items: center;
  transition: 0.3s;
  color: rgba(0, 0, 0, 0.6);
  user-select: none;
  pointer-events: none;
}
.input-wrapper input:focus + .input-sliding-label,
.input-wrapper input:not(:placeholder-shown) + .input-sliding-label {
  top: 0.25rem;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.4px;
  height: 16px;
}
.input-wrapper .bottom-bordered {
  border-bottom: 1px solid;
}
.input-wrapper .full-bordered {
  border: 1px solid;
  border-radius: 0.5rem;
}
.input-wrapper .input-primary {
  border-color: #03a9f4;
}
.input-wrapper .input-primary + .input-sliding-label {
  color: #03a9f4;
}
.input-wrapper .input-secondary {
  border-color: rgba(0, 0, 0, 0.12);
}
.input-wrapper .icon-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  color: rgba(0, 0, 0, 0.6);
}
.input-wrapper .custom-input-error {
  border-color: red;
}
.input-wrapper .custom-input-error + .input-sliding-label {
  color: red;
}

.custom-label-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
}
.custom-label-wrapper .custom-label-icon {
  margin-right: 0.5rem;
}
.custom-label-wrapper .custom-label-icon-placeholder {
  width: 3.25rem;
}
.custom-label-wrapper .custom-label-content {
  display: flex;
  flex-direction: column;
}
.custom-label-wrapper .custom-label-content-title {
  color: rgba(0, 0, 0, 0.6);
}
.custom-label-wrapper .custom-label-content-description {
  color: #000000;
}
.custom-label-wrapper .custom-label-secondary-content-title {
  width: 100%;
}
.custom-label-wrapper .custom-label-secondary-content-description {
  width: 100%;
}

.loading-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 10rem;
  background-color: rgba(33, 33, 33, 0.08);
}
.loading-wrapper > span {
  cursor: progress;
  font-size: 2rem;
  animation: loading-animation 2s linear infinite;
}

@keyframes loading-animation {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.modal-mask {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.6);
  box-sizing: border-box;
}

.modal-wrapper {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: auto;
  z-index: 1000;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-wrapper .modal {
  max-height: 90%;
  position: relative;
  background-color: white;
  box-shadow: 0px 24px 38px rgba(0, 0, 0, 0.14), 0px 9px 46px rgba(0, 0, 0, 0.12), 0px 11px 15px rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.modal-wrapper .modal-header {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-wrapper .modal-body {
  padding: 1rem;
  display: flex;
  overflow-y: scroll;
  box-sizing: border-box;
}
.modal-wrapper .modal-footer {
  padding: 1rem;
  display: flex;
  align-items: center;
}
.modal-wrapper .modal-divided .modal-body {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.modal-wrapper .modal-divided .modal-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.modal-wrapper .modal-not-divided .modal-body {
  border: none;
}
.modal-wrapper .modal-not-divided .modal-footer {
  border: none;
}
.modal-wrapper .modal-size-small {
  width: 368px;
}
.modal-wrapper .modal-size-medium {
  width: 528px;
}
.modal-wrapper .modal-size-large {
  width: 720px;
}
.modal-wrapper .modal-size-extra-large {
  width: 960px;
}

.progress-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  background-color: rgb(179, 229, 252);
  height: 2rem;
  overflow: hidden;
  border-radius: 0.5rem;
}
.progress-wrapper .progress-bar {
  display: flex;
  background-color: #03a9f4;
  height: 100%;
}
.progress-wrapper .progress-label {
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  align-items: center;
  justify-content: center;
  color: white;
}

.select-wrapper {
  position: relative;
  display: flex;
  width: 100%;
}
.select-wrapper .custom-select {
  border: none;
  padding: 0.5rem;
  background-color: white;
  box-sizing: border-box;
  height: 2.5rem;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.select-wrapper .custom-select:focus {
  outline: none;
}
.select-wrapper .select-on-top {
  height: 3rem;
  padding-top: 1rem;
}
.select-wrapper .select-on-top-label {
  position: absolute;
  left: 0.5rem;
  top: 0;
  display: flex;
  align-items: center;
  color: rgba(0, 0, 0, 0.6);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.4px;
  height: 16px;
}
.select-wrapper .bottom-bordered {
  border-bottom: 1px solid;
}
.select-wrapper .full-bordered {
  border: 1px solid;
  border-radius: 0.5rem;
}
.select-wrapper .select-primary {
  border-color: #03a9f4;
}
.select-wrapper .select-secondary {
  border-color: rgba(0, 0, 0, 0.12);
}
.select-wrapper .custom-select-error {
  border-color: red;
}
.select-wrapper .custom-select-error + .select-on-top-label {
  color: red;
}
.select-wrapper .custom-select-icon-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  color: rgba(0, 0, 0, 0.6);
  pointer-events: none;
}
.select-wrapper .custom-select-icon-wrapper-clickable {
  pointer-events: all;
}

.custom-tabs-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.custom-tabs-wrapper .custom-tabs-list {
  display: flex;
  width: 100%;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.custom-tabs-wrapper .custom-tabs-list-item {
  color: rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
  padding: 1rem 1.75rem;
  border-bottom: none;
  cursor: pointer;
}
.custom-tabs-wrapper .custom-tabs-list-item-selected {
  color: #03a9f4;
  border-bottom: 1px solid #03a9f4;
  transition: 1000ms;
}
.custom-tabs-wrapper .custom-tabs-content-holder {
  display: flex;
  width: 100%;
}
.custom-tabs-wrapper .custom-tabs-content-holder-item {
  display: none;
  width: 100%;
}
.custom-tabs-wrapper .custom-tabs-content-holder-item-visible {
  display: flex;
}

.custom-table-wrapper {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.table-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0.5rem 1.75rem;
}
.table-header-inputs {
  min-height: 2.5rem;
  display: flex;
  align-items: flex-start;
  width: 90%;
}
.table-header-inputs-chips {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.table-header-inputs-chips-item {
  height: 2.5rem;
  display: flex;
  align-items: center;
}
.table-header-filters {
  display: flex;
  align-items: center;
}

.table-header-mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem;
  color: #03a9f4;
  position: sticky;
  top: 0;
  background-color: #fbfbfb;
}
.table-header-mobile-left {
  display: flex;
  align-items: center;
}

.table-content {
  width: 100%;
  border-collapse: collapse;
}
.table-content th,
.table-content td {
  padding: 0.375rem 0;
  margin: 0rem;
  vertical-align: middle;
}
.table-content th .cell-wrapper,
.table-content td .cell-wrapper {
  min-height: 2.5rem;
  padding: 0rem 1.875rem;
  width: 100%;
  display: flex;
  align-items: center;
}
.table-content thead {
  background-color: rgb(225, 245, 254);
  color: #000000;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.5px;
}
.table-content thead tr {
  width: 100%;
}
.table-content tbody {
  color: #000000;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.5px;
}
.table-content tbody tr {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.table-content tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.04);
  cursor: pointer;
}
.table-content tfoot tr {
  border: none;
}
.table-content tfoot tr .cell-wrapper {
  justify-content: space-between;
}
.table-content tfoot tr .table-footer-left {
  display: flex;
  align-items: center;
  padding: 0;
}
.table-content tfoot tr .table-footer-left label {
  margin-right: 1.75rem;
}
.table-content tfoot tr .table-footer-right {
  display: flex;
  align-items: center;
  padding: 0;
  justify-content: end;
}
.table-content tfoot tr .table-footer-right-page {
  font-size: 1.0625rem;
  margin-right: 2.5rem;
}
.table-content tfoot tr .table-footer-right-page span {
  font-weight: 700;
}
.table-content .filter-row {
  background-color: rgba(3, 169, 244, 0.08);
}
.table-content .filter-row td {
  box-sizing: border-box;
  padding: 0.75rem 0;
}
.table-content .filter-row td .cell-wrapper {
  padding: 0 0.375rem;
}
.table-content .filter-row:hover {
  background-color: rgba(3, 169, 244, 0.08);
}

.table-modal-body {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.table-modal-body-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.table-modal-body-item .icon {
  color: transparent;
}
.table-modal-body-item:hover .icon {
  color: rgba(0, 0, 0, 0.6);
}
.table-modal-body-item:last-child {
  margin-bottom: 0;
}

.table-modal-footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.table-modal-footer div {
  display: flex;
  align-items: center;
}

.custom-table-collapse-panel-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 100%;
}
.custom-table-collapse-panel-header div {
  display: flex;
  flex-direction: column;
}
.custom-table-collapse-panel-header-item-color-primary {
  color: #03a9f4;
}
.custom-table-collapse-panel-header-item-color-black {
  color: #000000;
}
.custom-table-collapse-panel-header-item-color-secondary {
  color: rgba(0, 0, 0, 0.6);
}

.custom-table-collapse-panel-body {
  width: 100%;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  background-color: rgb(225, 245, 254);
}

.custom-table-collapse-panel-footer {
  width: 100%;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
}
.custom-table-collapse-panel-footer-left {
  display: flex;
  text-transform: uppercase !important;
}

.table-mobile-go-to-button-wrapper {
  position: sticky;
  bottom: 1rem;
  right: 1rem;
  display: none;
}

.table-mobile-go-to-button-wrapper-visible {
  display: flex;
  justify-content: flex-end;
}

.custom-message-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: fixed;
  z-index: 1200;
  top: 1rem;
  gap: 1rem;
  pointer-events: none;
}
.custom-message-wrapper .custom-message-container {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  padding-right: 1rem;
  pointer-events: all;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
  background-color: white;
}
.custom-message-wrapper .custom-message-container .custom-message {
  display: flex;
  align-items: center;
}

.custom-menu-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.dashboard-chart-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0.5rem;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.dashboard-iframe-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0.5rem;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.contact-campaign-item {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.contact-campaign-item-description {
  display: flex;
  align-items: center;
}
.contact-campaign-item-description > .body-2 {
  margin-left: 0.25rem;
}
.contact-campaign-item-icon-placeholder {
  width: 2.5rem;
  height: 2.5rem;
  min-height: 2.5rem;
  min-width: 2.5rem;
}
.contact-campaign-item-secondary-icon-wrapper {
  color: rgba(0, 0, 0, 0.12);
}

.contact-item-log-label {
  display: flex;
  align-items: flex-end;
  width: 100%;
  justify-content: space-between;
  color: rgba(0, 0, 0, 0.6);
}
.contact-item-log-label-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-item-log-label-left-info {
  display: flex;
  flex-direction: column;
}
.contact-item-log-label-left-info .body-1 {
  color: #000000;
}
.contact-item-log-label-right {
  display: flex;
}

.contact-item-view-modal-header {
  display: flex;
  width: 100%;
  align-items: center;
}
.contact-item-view-modal-header-content {
  display: flex;
  width: 80%;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-item-view-modal-header-content-chips {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.5rem;
}
.contact-item-view-modal-header-controls {
  display: flex;
  width: 20%;
  align-items: center;
  color: rgba(0, 0, 0, 0.6);
  justify-content: flex-end;
  gap: 1rem;
}

.contact-item-view-modal-body {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.contact-item-view-modal-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-height: 20vh;
  overflow: scroll;
}

.contact-item-edit-modal-header {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.contact-item-edit-modal-header-controls {
  display: flex;
  align-items: center;
}

.contact-item-edit-modal-body {
  display: flex;
  width: 100%;
  flex-direction: column;
  max-height: 50vh;
  overflow: scroll;
}

.contact-item-edit-modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  color: #03a9f4;
}
.contact-item-edit-modal-footer > :first-child {
  margin-right: 3rem;
}

.contact-item-campaign-dropdown {
  display: flex;
  flex-direction: column;
  width: 287px;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 3px 14px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.14);
  background-color: white;
  border-radius: 0.25rem;
}
.contact-item-campaign-dropdown-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
}
.contact-item-campaign-dropdown-section-label {
  color: rgba(0, 0, 0, 0.38);
  margin-left: 2.75rem;
  text-transform: uppercase;
}

.contact-task-item {
  display: flex;
  align-items: center;
  width: 100%;
  cursor: pointer;
}
.contact-task-item-icon-placeholder {
  width: 2.5rem;
  height: 2.5rem;
  min-height: 2.5rem;
  min-width: 2.5rem;
}
.contact-task-item > .body-2 {
  margin-left: 0.25rem;
}

.header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem;
}
.header div {
  display: flex;
}

.header-dropdown {
  width: 300px;
  height: 192px;
  background-color: #fbfbfb;
  box-shadow: 0px 24px 38px rgba(0, 0, 0, 0.14), 0px 9px 46px rgba(0, 0, 0, 0.12), 0px 11px 15px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  display: flex;
}
.header-dropdown .inner-border {
  margin: 8px 20px 8px 20px;
  flex-direction: column;
  gap: 8px;
}
.header-dropdown .inner-border .dropdown-name {
  width: 260px;
  background-color: rgb(225, 245, 254);
  border-radius: 8px;
  height: 40px;
  align-items: center;
}
.header-dropdown .inner-border .dropdown-name p {
  margin-left: 10px;
  font-weight: bold;
  font-size: 24px;
}
.header-dropdown .inner-border .dropdown-email {
  border-bottom-color: rgba(0, 0, 0, 0.12);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  width: 260px;
  height: 32px;
  align-items: center;
}
.header-dropdown .inner-border .dropdown-email p {
  margin-left: 10px;
  font-size: 12px;
}
.header-dropdown .inner-border .actions {
  color: #03a9f4;
  justify-content: left;
  font-size: 16px;
}
.header-dropdown .inner-border .actions a {
  display: flex;
  align-items: center;
}

.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem;
  color: #03a9f4;
  background-color: #fbfbfb;
}
.mobile-header div {
  display: flex;
  align-items: center;
}
.mobile-header-menu span {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.5rem;
}

.desktop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
}
.desktop-header-label {
  font-weight: 400;
  font-size: 3rem;
  line-height: 3.5rem;
}
.desktop-header-additional-controls-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.incoming-log-table-cell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.incoming-log-table-cell .action {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.incoming-log-table-cell .action-label {
  color: #03a9f4;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5rem;
}

.table-action {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.table-action-label {
  color: #03a9f4;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5rem;
}

.lead-view-modal-header {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.lead-view-modal-header-secondary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 0.5rem;
  color: rgba(0, 0, 0, 0.6);
  word-spacing: 1rem;
}
.lead-view-modal-header-secondary-controls {
  display: flex;
  align-items: center;
}
.lead-view-modal-header-chips {
  display: flex;
  align-items: center;
}
.lead-view-modal-header-chips .chip-wrapper {
  margin-right: 0.5rem;
}
.lead-view-modal-header-primary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lead-modal-body {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.lead-modal-body-header {
  margin-bottom: 1.5rem;
}

.lead-modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  color: #03a9f4;
}
.lead-modal-footer > :first-child {
  margin-right: 3rem;
}

.mailbox-view-modal-header {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.mailbox-view-modal-header-secondary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 0.5rem;
  color: rgba(0, 0, 0, 0.6);
  word-spacing: 1rem;
}
.mailbox-view-modal-header-secondary-controls {
  display: flex;
  align-items: center;
}

.mailbox-modal-body {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-height: 60vh;
}
.mailbox-modal-body-header {
  margin-bottom: 1.5rem;
}

.mailbox-item-view-modal-header {
  display: flex;
  justify-content: space-between;
}
.mailbox-item-view-modal-header .headline-5 {
  padding: 0.5rem 1rem 1rem;
}

body {
  width: 100%;
  height: 100%;
}

#root {
  width: 100%;
  height: 100%;
}

.app-container-desktop {
  width: 100%;
  height: 100%;
  background-color: #fbfbfb;
  display: flex;
  flex-direction: column;
}
.app-container-desktop .app-container-grid {
  display: grid;
  grid-template-columns: 16rem calc(100% - 16rem);
  grid-template-rows: 100%;
  height: calc(100% - 3.5rem);
  width: 100%;
}
.app-container-desktop .app-container-grid .app-container-grid-sidebar {
  height: 100%;
  max-height: 100%;
  transform: translate(0, 0);
  transition-duration: 0.4s;
  overflow-y: scroll;
}
.app-container-desktop .app-container-grid .app-container-grid-content {
  height: 100%;
  max-height: 100%;
  overflow-y: scroll;
  transform: translate(0, 0);
  transition-duration: 0.4s;
  background-color: white;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.14), 0px 2px 1px rgba(0, 0, 0, 0.12), 0px 1px 3px rgba(0, 0, 0, 0.2);
  border-radius: 8px 0px 0px 0px;
}
.app-container-desktop .collapsed {
  grid-template-columns: 16rem 100%;
}
.app-container-desktop .collapsed .app-container-grid-sidebar {
  transform: translate(-16rem, 0);
  transition-duration: 0.4s;
}
.app-container-desktop .collapsed .app-container-grid-content {
  transform: translate(-16rem, 0);
  transition-duration: 0.4s;
}

.app-container-tablet {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fbfbfb;
}
.app-container-tablet .app-container-wrapper-content {
  height: 100%;
  overflow-y: scroll;
  background-color: white;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.14), 0px 2px 1px rgba(0, 0, 0, 0.12), 0px 1px 3px rgba(0, 0, 0, 0.2);
  border-radius: 8px 0px 0px 0px;
}
.app-container-tablet .app-container-wrapper {
  display: flex;
  width: 100%;
  height: calc(100% - 3.5rem);
  position: relative;
}
.app-container-tablet .app-container-wrapper-sidebar {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 100%;
  min-width: 16rem;
  max-width: 16rem;
  top: 0;
  left: 0;
  background-color: white;
  position: absolute;
  transform: translate(-16rem, 0);
  transition-duration: 0.4s;
  z-index: 1150;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  overflow-y: scroll;
}
.app-container-tablet .app-container-wrapper .overlay {
  height: 0;
  width: 0;
}
.app-container-tablet .app-container-wrapper .overlay-shown {
  position: absolute;
  height: calc(100% - 3.5rem);
  width: 100%;
  z-index: 1149;
  background-color: rgba(255, 255, 255, 0.6);
}
.app-container-tablet .app-container-wrapper .shown {
  transform: translate(0, 0);
  transition-duration: 0.4s;
}
.app-container-tablet .app-container-wrapper-content {
  display: block;
  width: 100%;
}

.app-container-phone {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fbfbfb;
}
.app-container-phone .app-container-wrapper-content {
  height: 100%;
  overflow-y: scroll;
  background-color: white;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.14), 0px 2px 1px rgba(0, 0, 0, 0.12), 0px 1px 3px rgba(0, 0, 0, 0.2);
  border-radius: 8px 0px 0px 0px;
}
.app-container-phone .app-container-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}
.app-container-phone .app-container-wrapper-sidebar {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 100%;
  min-width: 16rem;
  max-width: 16rem;
  top: 0;
  left: 0;
  background-color: white;
  position: absolute;
  transform: translate(-16rem, 0);
  transition-duration: 0.4s;
  z-index: 1150;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  overflow-y: scroll;
}
.app-container-phone .app-container-wrapper .overlay {
  height: 0;
  width: 0;
}
.app-container-phone .app-container-wrapper .overlay-shown {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1149;
  background-color: rgba(255, 255, 255, 0.6);
}
.app-container-phone .app-container-wrapper .shown {
  transform: translate(0, 0);
  transition-duration: 0.4s;
}
.app-container-phone .app-container-wrapper-content {
  display: block;
  width: 100%;
}

.page-content {
  overflow: scroll;
  height: calc(100% - 96px - 56px);
  /* width */
  /* Track */
  /* Handle */
}
.page-content ::-webkit-scrollbar {
  width: 5px;
  position: fixed;
}
.page-content ::-webkit-scrollbar-track {
  display: none;
  width: 0;
  max-width: 0;
}
.page-content ::-webkit-scrollbar-thumb {
  background: gray;
  border-radius: 10px;
}

* {
  scrollbar-color: gray none;
  scrollbar-width: thin;
}

.app-container-phone .page-content {
  height: 100%;
  background-color: #fbfbfb;
}

.default-modal-footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
.default-modal-footer-wrapper > :first-child {
  margin-right: 3rem;
}

.default-modal-header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.default-modal-header-wrapper-left {
  display: flex;
  align-items: center;
}

.payout-create-modal-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.payout-create-modal-header-inputs {
  display: flex;
  align-items: center;
  width: 50%;
  justify-content: space-between;
}

.payout-create-modal-footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #03a9f4;
}
.payout-create-modal-footer > :first-child {
  margin-right: 3rem;
}

.payout-pay-modal-body {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.payout-pay-modal-body-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.payout-pay-modal-body-item-left {
  width: 50%;
}
.payout-pay-modal-body-item-right {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.payout-pay-modal-body-item-right-secondary {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: rgba(0, 0, 0, 0.38);
}
.payout-pay-modal-body-item-right-main {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.payout-pay-modal-body .bordered-top {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  margin-top: 1rem;
  padding-top: 0.75rem;
}

.payout-view-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.payout-view-modal-header-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: rgba(0, 0, 0, 0.6);
}

.pivot-table-wrapper {
  width: 100%;
  gap: 1rem;
  display: flex;
  flex-direction: column;
}
.pivot-table-wrapper .pivot-table-chart-collapse-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.5rem;
  padding: 1rem;
}
.pivot-table-wrapper .pivot-table-chart-collapse-container .pivot-table-chart-collapse-controls {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.pivot-table-wrapper .pivot-table-controls-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pivot-table-wrapper .pivot-table-controls-wrapper .pivot-table-controls-group {
  display: flex;
  align-items: center;
}
.pivot-table-wrapper .pivot-table-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
  gap: 1rem;
}
.pivot-table-wrapper .pivot-table-container .pivot-table-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.375rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.5px;
}
.pivot-table-wrapper .pivot-table-container .pivot-table-row:last-child {
  border-bottom: none;
}
.pivot-table-wrapper .pivot-table-container .pivot-table-row .pivot-table-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.pivot-table-wrapper .pivot-table-container .pivot-table-row .pivot-table-column-header {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.25rem;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  text-transform: capitalize;
  flex-direction: column;
}
.pivot-table-wrapper .pivot-table-container .pivot-table-row .pivot-table-column-header-item {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  white-space: nowrap;
}
.pivot-table-wrapper .pivot-table-container .pivot-table-row .pivot-table-column-header-item-label {
  min-height: 2.5rem;
  display: flex;
  align-items: center;
}
.pivot-table-wrapper .pivot-table-container .pivot-table-row .pivot-table-column-header-item-hidden {
  display: none;
}
.pivot-table-wrapper .pivot-table-container .pivot-table-row-header {
  position: sticky;
  top: 0;
  background-color: rgb(225, 245, 254);
  padding: 0 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.5px;
}

.pivot-table-grid-dropdown-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  width: 287px;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 3px 14px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.14);
  background-color: white;
  border-radius: 0.25rem;
}
.pivot-table-grid-dropdown-list-item {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.pivot-table-grid-dropdown-list span {
  cursor: pointer;
  width: 100%;
}

.pivot-modal-create-chart-container {
  display: flex;
  width: 100%;
  flex-direction: column;
}
.pivot-modal-create-chart-container .pivot-modal-create-chart-value {
  display: flex;
  width: 100%;
  align-items: center;
}

.pivot-table-chart-tooltip {
  display: flex;
  flex-direction: column;
  background-color: white;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2), 0px 3px 14px 0px rgba(0, 0, 0, 0.12), 0px 8px 10px 0px rgba(0, 0, 0, 0.14);
  padding: 0.25rem;
  align-items: center;
}

.custom-chart-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.custom-chart-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.custom-chart-legend-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0.5rem;
  padding: 0.5rem;
}
.custom-chart-legend-container .custom-chart-legend-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.router-list-number-range {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.5rem;
  color: white;
  border-radius: 0.25rem;
  margin-left: 0.25rem;
}

.router-list-number-range-blue {
  background-color: #03a9f4;
}

.router-list-number-range-green {
  background-color: #21ba45;
}

.scheme-modal-edit-member {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1rem;
}
.scheme-modal-edit-member-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.5rem;
}
.scheme-modal-edit-member-section .scheme-modal-edit-member-leader {
  display: flex;
  align-items: center;
  width: 100%;
}

.scheme-overview-table {
  width: 100%;
}
.scheme-overview-table .scheme-overview-thead {
  background-color: rgb(225, 245, 254);
}
.scheme-overview-table .scheme-overview-tbody .scheme-overview-tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.scheme-overview-table .scheme-overview-tbody .scheme-overview-tr:hover {
  background-color: rgba(0, 0, 0, 0.04);
  cursor: pointer;
}
.scheme-overview-table .scheme-overview-tr td,
.scheme-overview-table .scheme-overview-tr th {
  padding: 0 1rem;
}
.scheme-overview-table .scheme-overview-tr td .scheme-overview-table-cell,
.scheme-overview-table .scheme-overview-tr th .scheme-overview-table-cell {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scheme-overview-table .scheme-overview-tr th {
  padding: 0.875rem 1rem;
}
.scheme-overview-table .scheme-overview-tr td {
  height: 3.25rem;
  max-height: 3.25rem;
}

.scheme-overview-leaders-dropdown {
  background-color: #fbfbfb;
  box-shadow: 0px 24px 38px rgba(0, 0, 0, 0.14), 0px 9px 46px rgba(0, 0, 0, 0.12), 0px 11px 15px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 0.5rem;
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.scheme-tree-view-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}
.scheme-tree-view-wrapper .scheme-tree-view-row {
  display: none;
  width: 100%;
  align-items: center;
  padding: 0.125rem 0;
  position: relative;
}
.scheme-tree-view-wrapper .scheme-tree-view-row-member {
  display: flex;
  width: 100%;
  border-radius: 1rem;
  background-color: rgba(0, 0, 0, 0.04);
  padding: 0.375rem 1rem;
  align-items: center;
  justify-content: space-between;
}
.scheme-tree-view-wrapper .scheme-tree-view-row-member-details {
  display: flex;
  align-items: center;
}
.scheme-tree-view-wrapper .scheme-tree-view-row-member-details-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scheme-tree-view-wrapper .scheme-tree-view-row-visible {
  display: flex;
}

.sidebar-nav-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 2.5rem;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.6);
  padding-left: 0.5rem;
}
.sidebar-nav-item .sidebar-nav-item-label {
  display: flex;
  align-items: center;
}
.sidebar-nav-item .sidebar-nav-item-label > span {
  padding-left: 0.6rem;
}
.sidebar-nav-item .placeholder {
  width: 2.5rem;
  height: 2.5rem;
}
.sidebar-nav-item .selected {
  color: #03a9f4;
  font-weight: 700;
}
.sidebar-nav-item .sub-item-selected {
  color: #000000;
  font-weight: 700;
}
.sidebar-nav-item:hover {
  background-color: rgb(179, 229, 252);
}

.sub-item {
  font-weight: 400;
}

.sidebar {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.sidebar > * {
  margin-bottom: 0.5rem;
}
.sidebar > *:last-child {
  margin-bottom: 0;
}

.stats-filters-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1rem;
}
.stats-filters-wrapper .stats-filters {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 1rem;
}
.stats-filters-wrapper .stats-filters-phone {
  display: flex;
  width: 100%;
  gap: 1rem;
  flex-direction: column;
}

.headline-3 {
  font-style: normal;
  font-weight: normal;
  font-size: 3rem;
  line-height: 3.5rem;
}

.headline-3-bold {
  font-style: normal;
  font-weight: 700;
  font-size: 3rem;
  line-height: 3.5rem;
}

.headline-4 {
  font-style: normal;
  font-weight: normal;
  font-size: 2.125rem;
  line-height: 2.25rem;
}

.headline-5 {
  font-style: normal;
  font-weight: normal;
  font-size: 1.5rem;
  line-height: 1.5rem;
  letter-spacing: 0.18px;
}

.headline-6 {
  font-style: normal;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.5rem;
  letter-spacing: 0.15px;
}

.subtitle-1 {
  font-style: normal;
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.15px;
}

.subtitle-2 {
  font-style: normal;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.5rem;
  letter-spacing: 0.1px;
}

.body-1 {
  font-style: normal;
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.5px;
}

.body-2 {
  font-style: normal;
  font-weight: normal;
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0.25px;
}

.button-text {
  font-style: normal;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1rem;
  letter-spacing: 1.25px;
}

.caption {
  font-style: normal;
  font-weight: normal;
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.4px;
}

.button-regular-text {
  font-style: normal;
  font-weight: normal;
  font-size: 0.875rem;
  line-height: 1rem;
  letter-spacing: 1.25px;
}

.button-bold-text {
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1rem;
  letter-spacing: 1.25px;
}

.overline {
  font-style: normal;
  font-weight: 500;
  font-size: 0.625rem;
  line-height: 1rem;
  letter-spacing: 1.5px;
}

.table-header-text {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.5px;
}

.main-text {
  font-style: normal;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.25rem;
}

.auth-wrapper {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.auth-wrapper .authentication-logo {
  min-width: 228px;
}
.auth-wrapper .login-form {
  display: flex;
  margin-top: 3.5rem;
  margin-bottom: 2rem;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 440px;
  padding: 0 2.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.auth-wrapper .login-form-checkbox-field {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: start;
  gap: 13px;
}
.auth-wrapper .auth-additional-link {
  padding: 0.7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 417px;
}

.setting-forms {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}
.setting-forms .setting-form-item {
  display: flex;
  flex-direction: column;
  width: 45%;
  padding: 1rem;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 3px 14px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.14);
  gap: 1rem;
}
.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:none}.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-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:none}.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:none;}.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}
/*!
 * https://github.com/YouCanBookMe/react-datetime
 */

.rdt {
  position: relative;
}
.rdtPicker {
  display: none;
  position: absolute;
  width: 250px;
  padding: 4px;
  margin-top: 5px;
  z-index: 99999 !important;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #ddd;
}
.rdtOpen .rdtPicker {
  display: block;
}
.rdtStatic .rdtPicker {
  box-shadow: none;
  position: static;
}

.rdtPicker .rdtTimeToggle {
  text-align: center;
}

.rdtPicker table {
  width: 100%;
  margin: 0;
}
.rdtPicker td,
.rdtPicker th {
  text-align: center;
  height: 28px;
}
.rdtPicker td {
  cursor: pointer;
}
.rdtPicker td.rdtDay:hover,
.rdtPicker td.rdtHour:hover,
.rdtPicker td.rdtMinute:hover,
.rdtPicker td.rdtSecond:hover,
.rdtPicker .rdtTimeToggle:hover {
  background: #eeeeee;
  cursor: pointer;
}
.rdtPicker td.rdtOld,
.rdtPicker td.rdtNew {
  color: #999999;
}
.rdtPicker td.rdtToday {
  position: relative;
}
.rdtPicker td.rdtToday:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #428bca;
  border-top-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 4px;
  right: 4px;
}
.rdtPicker td.rdtActive,
.rdtPicker td.rdtActive:hover {
  background-color: #428bca;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.rdtPicker td.rdtActive.rdtToday:before {
  border-bottom-color: #fff;
}
.rdtPicker td.rdtDisabled,
.rdtPicker td.rdtDisabled:hover {
  background: none;
  color: #999999;
  cursor: not-allowed;
}

.rdtPicker td span.rdtOld {
  color: #999999;
}
.rdtPicker td span.rdtDisabled,
.rdtPicker td span.rdtDisabled:hover {
  background: none;
  color: #999999;
  cursor: not-allowed;
}
.rdtPicker th {
  border-bottom: 1px solid #f9f9f9;
}
.rdtPicker .dow {
  width: 14.2857%;
  border-bottom: none;
}
.rdtPicker th.rdtSwitch {
  width: 100px;
}
.rdtPicker th.rdtNext,
.rdtPicker th.rdtPrev {
  font-size: 21px;
  vertical-align: top;
}

.rdtPrev span,
.rdtNext span {
  display: block;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Chrome/Safari/Opera */
  -khtml-user-select: none;    /* Konqueror */
  -moz-user-select: none;      /* Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
  user-select: none;
}

.rdtPicker th.rdtDisabled,
.rdtPicker th.rdtDisabled:hover {
  background: none;
  color: #999999;
  cursor: not-allowed;
}
.rdtPicker thead tr:first-child th {
  cursor: pointer;
}
.rdtPicker thead tr:first-child th:hover {
  background: #eeeeee;
}

.rdtPicker tfoot {
  border-top: 1px solid #f9f9f9;
}

.rdtPicker button {
  border: none;
  background: none;
  cursor: pointer;
}
.rdtPicker button:hover {
  background-color: #eee;
}

.rdtPicker thead button {
  width: 100%;
  height: 100%;
}

td.rdtMonth,
td.rdtYear {
  height: 50px;
  width: 25%;
  cursor: pointer;
}
td.rdtMonth:hover,
td.rdtYear:hover {
  background: #eee;
}

.rdtCounters {
  display: inline-block;
}

.rdtCounters > div {
  float: left;
}

.rdtCounter {
  height: 100px;
}

.rdtCounter {
  width: 40px;
}

.rdtCounterSeparator {
  line-height: 100px;
}

.rdtCounter .rdtBtn {
  height: 40%;
  line-height: 40px;
  cursor: pointer;
  display: block;

  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Chrome/Safari/Opera */
  -khtml-user-select: none;    /* Konqueror */
  -moz-user-select: none;      /* Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
  user-select: none;
}
.rdtCounter .rdtBtn:hover {
  background: #eee;
}
.rdtCounter .rdtCount {
  height: 20%;
  font-size: 1.2em;
}

.rdtMilli {
  vertical-align: middle;
  padding-left: 8px;
  width: 48px;
}

.rdtMilli input {
  width: 100%;
  font-size: 1.2em;
  margin-top: 37px;
}

