._Alert {
  background: #fff;
  padding: 10px 20px;
  border-left: 3px solid transparent;
  border-radius: 5px;
}
._Alert.-Error {
  border-color: #f35468;
}

._Button {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  white-space: nowrap;
  padding: 0 20px;
  border-radius: 5px;
  vertical-align: middle;
  cursor: pointer;
  height: 2.25em;
  line-height: 2.25em;
  user-select: none;
  border: 1px solid #d1d1d1;
  background: #fff;
/* Type */
/* Size */
}
._Button:focus {
  border-color: #16a085;
  box-shadow: 0 0 3px 1px #16a085;
}
._Button--Notice._Button {
  border-color: #379d79;
  background: #379d79;
  color: #fff;
}
._Button--Success._Button {
  border-color: #379d79;
  background: #379d79;
  color: #fff;
}
._Button--Warning._Button {
  border-color: #ecc63e;
  background: #ecc63e;
  color: #fff;
}
._Button--Danger._Button {
  border-color: #f35468;
  background: #f35468;
  color: #fff;
}
._Button--Ghost._Button {
  background: transparent;
  color: #5c5c5c;
}
._Button--Ghost._Button--Notice._Button {
  color: #379d79;
}
._Button--Ghost._Button--Success._Button {
  color: #379d79;
}
._Button--Ghost._Button--Warning._Button {
  color: #ecc63e;
}
._Button--Ghost._Button--Danger._Button {
  color: #f35468;
}
._Button--Bigger._Button {
  font-size: 1.1rem;
}
._Button--Biggest._Button {
  font-size: 1.3rem;
}
._Button--Smaller._Button {
  font-size: 0.9rem;
}
._Button--Smallest._Button {
  font-size: 0.8rem;
}

._AsyncButton--Pending::before {
  content: ' ';
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.2em;
  margin-right: 0.6em;
  border: 2px solid;
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin linear 2s infinite;
}
@-moz-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-o-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

._Badge {
  display: inline-block;
  font-size: 1rem;
  line-height: 1em;
  padding: 0.25em 0.5em;
  border-radius: 5px;
  color: #fff;
  white-space: nowrap;
/* Size */
}
._Badge--Notice._Badge {
  color: #fff;
  background: #379d79;
}
._Badge--Success._Badge {
  color: #fff;
  background: #379d79;
}
._Badge--Warning._Badge {
  color: #fff;
  background: #ecc63e;
}
._Badge--Danger._Badge {
  color: #fff;
  background: #f35468;
}
._Badge--Bigger._Badge {
  font-size: 1.1rem;
}
._Badge--Biggest._Badge {
  font-size: 1.3rem;
}
._Badge--Smaller._Badge {
  font-size: 0.9rem;
}
._Badge--Smallest._Badge {
  font-size: 0.8rem;
}

._Group {
  white-space: nowrap;
  display: inline-block;
}
._Group > ._Button:not(:last-child) {
  margin-right: 15px;
}
._Group > .Link:not(:last-child) {
  margin-right: 15px;
}

._Dialog {
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  background: #fff;
  margin: auto;
  border-radius: 5px;
}
._Dialog__Header {
  font-size: 1.4em;
  padding: 20px;
  background: #16a085;
  color: #fff;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
._Dialog__Body {
  padding: 20px;
}
._Dialog__Footer {
  text-align: right;
  padding: 20px;
}
._Dialog__Overlay {
  display: flex;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: rgba(0,0,0,0.7);
}
._Dialog--Notice ._Dialog__Header {
  background: #379d79;
}
._Dialog--Success ._Dialog__Header {
  background: #379d79;
}
._Dialog--Warning ._Dialog__Header {
  background: #ecc63e;
}
._Dialog--Danger ._Dialog__Header {
  background: #f35468;
}

._DropDown {
  height: 0;
  width: 0;
  color: #5c5c5c;
  font-weight: normal;
  position: relative;
  text-align: left;
}
._DropDown__Body {
  position: absolute;
  z-index: 1000;
  padding: 5px 0;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #e0e3e9;
  max-height: 250px;
  overflow: auto;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
._DropDown--Bottom ._DropDown__Body {
  top: 0;
  transform: translate(-50%, 0);
}
._DropDown--LeftBottom ._DropDown__Body {
  right: 0;
  top: 0;
}
._DropDown--LeftTop ._DropDown__Body {
  right: 0;
  bottom: 0;
}
._DropDown__Overlay {
  position: fixed;
  z-index: 9;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
}

._Preloader {
  display: flex;
  height: 100%;
  color: #16a085;
}
._Preloader::before {
  content: ' ';
  display: block;
  margin: auto;
  text-align: center;
  width: 2.1em;
  height: 2.1em;
  border-width: 0.2em;
  border-style: solid;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  animation: spin linear 2s infinite;
}
@-moz-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-o-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

._Form__HiddenSubmit {
  display: none;
}

._Grid {
  margin: 10px 0;
}
._Grid--noHidden {
  overflow: visible;
}
._Grid__Row {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
}
._Grid__Col {
  padding: 10px;
  flex: 1 0 0;
}
._Grid__Col--1 {
  width: 8.333333333333334%;
  flex: 0 0 8.333333333333334%;
}
._Grid__Col--ColOffset_1 {
  margin-left: 8.333333333333334%;
}
._Grid__Col--2 {
  width: 16.666666666666668%;
  flex: 0 0 16.666666666666668%;
}
._Grid__Col--ColOffset_2 {
  margin-left: 16.666666666666668%;
}
._Grid__Col--3 {
  width: 25%;
  flex: 0 0 25%;
}
._Grid__Col--ColOffset_3 {
  margin-left: 25%;
}
._Grid__Col--4 {
  width: 33.333333333333336%;
  flex: 0 0 33.333333333333336%;
}
._Grid__Col--ColOffset_4 {
  margin-left: 33.333333333333336%;
}
._Grid__Col--5 {
  width: 41.66666666666667%;
  flex: 0 0 41.66666666666667%;
}
._Grid__Col--ColOffset_5 {
  margin-left: 41.66666666666667%;
}
._Grid__Col--6 {
  width: 50%;
  flex: 0 0 50%;
}
._Grid__Col--ColOffset_6 {
  margin-left: 50%;
}
._Grid__Col--7 {
  width: 58.333333333333336%;
  flex: 0 0 58.333333333333336%;
}
._Grid__Col--ColOffset_7 {
  margin-left: 58.333333333333336%;
}
._Grid__Col--8 {
  width: 66.66666666666667%;
  flex: 0 0 66.66666666666667%;
}
._Grid__Col--ColOffset_8 {
  margin-left: 66.66666666666667%;
}
._Grid__Col--9 {
  width: 75%;
  flex: 0 0 75%;
}
._Grid__Col--ColOffset_9 {
  margin-left: 75%;
}
._Grid__Col--10 {
  width: 83.33333333333334%;
  flex: 0 0 83.33333333333334%;
}
._Grid__Col--ColOffset_10 {
  margin-left: 83.33333333333334%;
}
._Grid__Col--11 {
  width: 91.66666666666667%;
  flex: 0 0 91.66666666666667%;
}
._Grid__Col--ColOffset_11 {
  margin-left: 91.66666666666667%;
}
._Grid__Col--12 {
  width: 100%;
  flex: 0 0 100%;
}
._Grid__Col--ColOffset_12 {
  margin-left: 100%;
}
._Grid__Col--AlignStart {
  align-self: flex-start;
}
._Grid__Col--AlignEnd {
  align-self: flex-end;
}
._Grid__Col--AlignCenter {
  align-self: center;
}

._LoadingBar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  overflow: hidden;
}
._LoadingBar__Progress {
  display: block;
  background: #f00;
  height: 100%;
  width: 0;
}
._LoadingBar.-Pending ._LoadingBar__Progress {
  width: 0;
  transition: none;
}
._LoadingBar.-Request ._LoadingBar__Progress {
  width: 70%;
  height: 100%;
  transition: width 2s;
}
._LoadingBar.-Done ._LoadingBar__Progress {
  width: 100%;
  transition: width 1s;
}

._Menu__Option {
  padding: 10px 20px;
}

._Modal {
  margin: auto;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  position: relative;
}
._Modal--withMaxHeight {
  max-height: 100%;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
._Modal--withMaxHeight ._Modal__Footer {
  padding-top: 10px;
}
._Modal__Close {
  width: 2em;
  height: 2em;
  padding: 10px;
  color: #16a085;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}
._Modal__Header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid #d1d1d1;
}
._Modal__Body {
  padding: 0;
}
._Modal__Overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 50px;
  background: rgba(0,0,0,0.7);
  display: flex;
  overflow: auto;
}

._Nav {
  display: flex;
  flex-direction: row;
}
._Nav__Option {
  padding: 10px 20px;
  position: relative;
  cursor: pointer;
}
._Nav__Option--isActive {
  background: #16a085;
}

._Options__Option {
  padding: 5px 20px;
  white-space: nowrap;
  cursor: pointer;
}
._Options__Option:hover {
  background: #f1f3f7;
}
._Options__Option--Selected {
  background: #379d79;
  color: #fff;
}

._Pagination {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  border-radius: 5px;
/* Size */
}
._Pagination__Select {
  padding: 0 15px;
}
._Pagination__Previous {
  border-radius: 5px 0 0 5px;
}
._Pagination__Next {
  border-radius: 0 5px 5px 0;
}
._Pagination__Previous,
._Pagination__Next {
  height: 2.25em;
  line-height: 2.25em;
  padding: 0 15px;
  background: #fff;
  border: 1px solid #d1d1d1;
  cursor: pointer;
  display: flex;
  align-items: center;
}
._Pagination__Previous svg,
._Pagination__Next svg {
  color: #899abe;
}
._Pagination__Previous--Disabled,
._Pagination__Next--Disabled {
  color: #aaa;
  box-shadow: none;
  border-color: #d7ebe4;
}
._Pagination__Previous--Disabled svg,
._Pagination__Next--Disabled svg {
  color: #aaa;
}
._Pagination--Bigger {
  font-size: 1.1rem;
}
._Pagination--Biggest {
  font-size: 1.3rem;
}
._Pagination--Smaller {
  font-size: 0.9rem;
}
._Pagination--Smallest {
  font-size: 0.8rem;
}

._Table {
  position: relative;
}
._Table__Table {
  display: table;
  table-layout: fixed;
  width: 100%;
  border-collapse: separate;
  position: relative;
}
._Table__Header {
  display: table-header-group;
}
._Table__Column {
  padding: 10px 20px;
  font-weight: bold;
  display: table-cell;
  font-size: 0.9em;
  vertical-align: middle;
  border: none;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
  border-bottom: 1px solid #d1d1d1;
}
._Table__Column:not(:first-child)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: #d1d1d1;
}
._Table__Body {
  display: table-row-group;
}
._Table__Row {
  display: table-row;
}
._Table__Cell {
  display: table-cell;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  vertical-align: middle;
  border-bottom: 1px solid #d1d1d1;
  padding: 15px 20px;
  font-weight: 600;
}
._Table__Group {
  display: table-row-group;
}

._Tabs__Control {
  background: #fff;
  display: flex;
  padding: 0 20px;
  border-bottom: 1px solid #d1d1d1;
}
._Tabs__Title {
  padding: 10px 20px;
  cursor: pointer;
}
._Tabs__Title--Active {
  background: #16a085;
  color: #fff;
}
._Tabs__Tab {
  display: block;
}

._Toast {
  background: #fff;
  border-left: 3px solid #d1d1d1;
  padding: 10px 20px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  margin-top: 20px;
}
._Toast__Title {
  font-size: 1.2em;
  color: #4a4a4a;
}
._Toast__Title :not(:last-child) {
  margin-bottom: 0.4em;
}
._Toast__Message {
  white-space: pre-line;
}
._Toast--Notice {
  border-color: #379d79;
}
._Toast--Success {
  border-color: #379d79;
}
._Toast--Warning {
  border-color: #ecc63e;
}
._Toast--Danger {
  border-color: #f35468;
}
._Toast__Overlay {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: absolute;
  top: 0;
  right: 20px;
}

.OJPSgsfjZeKRpE3nFg7Q {
  color: #16a085;
  text-decoration: none;
}

.Rnw0AfYuqkB3tcxDavrT {
  border-radius: 6px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.G4dyLj3Z6bijOFBqrYHq {
  margin: 20px 0;
  width: 450px;
}
.tHSspHIhG7szyd8SRoT2 {
  position: absolute;
  top: 0;
  right: 20px;
  max-height: 100%;
  z-index: 1000;
  color: #5c5c5c;
  padding: 20px 0;
}
.t8t3C6h3IrO6dayO2heW {
  text-align: center;
  background: #fff;
  color: #16a085;
  padding: 10px 0;
  border-bottom: 1px solid #16a085;
  transition: all 1s ease-in-out;
}
.oygvsT6opHwaKZrmWPM5::after {
  min-width: 20px;
  height: 20px;
  content: attr(notifications-count);
  background: #f74860;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  top: -10px;
  right: -10px;
  transition: 0.3s;
  opacity: 1;
  transform: scale(0);
  will-change: opacity, transform;
  box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
}
.G6HYD3YTHdH_aEUve_wY::after {
  opacity: 1;
  transform: scale(1);
}
.D_jBcZckQUSNdwnhMwC8 svg {
  animation: voeDaos0ecWyfqtxYrJA 1s ease-out;
  transform-origin: center top;
}
.wYQkQXktz3vkOwbfqfZJ {
  list-style-type: none;
  overflow-y: scroll;
  text-align: center;
  -webkit-animation: cJwKh8uE4wCba5TPhhHw 1s;
  animation: cJwKh8uE4wCba5TPhhHw 1s;
  background-color: #e1f3ec;
  padding: 0;
  margin: 0;
  background: #fff;
}
.EFYbpmshxG4vZcM4c3Eu {
  width: 450px;
  border-bottom: 1px solid #16a085;
  transition: all 1s ease-in-out;
}
.v_tNgE6EQuq19UeZypEE {
  width: 100%;
  font-size: 11px;
  padding-left: 10px;
  text-align: center;
}
.O0er4EgCRTcSk3rjGGIR {
  display: flex;
  justify-content: space-between;
}
.UTScGEQLvJLLRx1zZ7FN {
  width: 90%;
}
.Ls1fccgXo5EbKN3KdlPj {
  font-weight: bold;
  margin-top: 5px;
  margin-bottom: 5px;
  text-align: left;
}
.Kuz3olJ6STgKgfO00JSd {
  color: #4a4a4a;
}
.HRPCI3PxrHQbhj5rJqyE {
  color: #16a085;
  text-decoration-line: underline;
  cursor: pointer;
}
.nkCAJBgIyWIMxEV616Q3 {
  color: #808080;
  font-size: 9px;
  text-align: right;
  width: 110px;
}
.SbKaNC4m0kMBmQoIlPIV {
  color: #727f8c;
  font-weight: bold;
  margin: 5px auto;
  display: flex;
  justify-content: left;
  align-items: center;
  font-size: 9px;
}
.XJtcWBAoNqj8FMKrSc43 {
  cursor: pointer;
  display: flex;
  align-items: flex-end;
}
.XJtcWBAoNqj8FMKrSc43 svg {
  color: #16a085;
  margin: 0 5px;
}
.uzSWsjwITlc0trRg2WZB {
  width: 100%;
  height: 3px;
  border-radius: 3px;
}
.OR27_MF5VaO8ko3UH__5 {
  background: #16a085;
}
.MO12ZCLsipX_Dw2V_IJN {
  background: #ecc63e;
}
.E8yL1atSDa5IjzZxMxc5 {
  background: #f74860;
}
.d1CMBToOQKhet8tGAqp1 {
  background: rgba(0,0,0,0.2);
}
.dfJkItNnAvGdCIKrFp_k {
  width: 90%;
  max-width: 380px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  box-sizing: border-box;
  border: 0.25px solid #a7a7a7;
  border-radius: 3px;
  display: flex;
}
.rMOYG27_K6sJnv_60wUh {
  padding-top: 5px;
  padding-left: 2px;
}
.D29oiyj8jHu8wriaSgdx {
  font-size: 9px;
  font-weight: bold;
  padding: 0 2px 2px 2px;
  color: #000;
  text-align: left;
}
.iWdiP1g5mIEFL_y0hYz_ {
  font-size: 9px;
  padding: 2px;
  color: #000;
  text-align: left;
}
.VYrFUeyj4CFZDCW7Bwtu {
  border-left: 4px solid #ecc63e;
  height: 72px;
}
.VYrFUeyj4CFZDCW7Bwtu svg {
  color: #ecc63e;
}
.yXnHIewmtZ3zdnsp72DJ {
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: left;
}
.Rnw0AfYuqkB3tcxDavrT .eUAJ_A8MwNRbdMXxHzln {
  width: 80px;
  height: 15px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 9px;
  background: #2d2e2e;
  border-color: #2d2e2e;
  justify-content: center;
}
.dQi8lx7wy2tvhbDHg2gv {
  border-left: 4px solid #f74860;
  height: 40px;
}
.dQi8lx7wy2tvhbDHg2gv svg {
  color: #f74860;
}
.iXDeKP6NHNaoK4KslBPU {
  display: flex;
  padding: 10px;
  text-decoration: none;
  text-align: left;
  font-size: 0.7em;
  opacity: 0.8;
  align-items: center;
}
.iXDeKP6NHNaoK4KslBPU:hover {
  opacity: 1;
}
.H9iDMnnjZvoZfZ9IZjoO {
  width: 450px;
  justify-items: center;
  transition: all 1s ease-in-out;
  display: none;
}
.G6HYD3YTHdH_aEUve_wY {
  display: list-item;
  cursor: pointer;
}
@-moz-keyframes voeDaos0ecWyfqtxYrJA {
  0% {
    transform: rotate(35deg);
  }
  12.5% {
    transform: rotate(-30deg);
  }
  25% {
    transform: rotate(25deg);
  }
  37.5% {
    transform: rotate(-20deg);
  }
  50% {
    transform: rotate(15deg);
  }
  62.5% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0);
  }
}
@-webkit-keyframes voeDaos0ecWyfqtxYrJA {
  0% {
    transform: rotate(35deg);
  }
  12.5% {
    transform: rotate(-30deg);
  }
  25% {
    transform: rotate(25deg);
  }
  37.5% {
    transform: rotate(-20deg);
  }
  50% {
    transform: rotate(15deg);
  }
  62.5% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0);
  }
}
@-o-keyframes voeDaos0ecWyfqtxYrJA {
  0% {
    transform: rotate(35deg);
  }
  12.5% {
    transform: rotate(-30deg);
  }
  25% {
    transform: rotate(25deg);
  }
  37.5% {
    transform: rotate(-20deg);
  }
  50% {
    transform: rotate(15deg);
  }
  62.5% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes voeDaos0ecWyfqtxYrJA {
  0% {
    transform: rotate(35deg);
  }
  12.5% {
    transform: rotate(-30deg);
  }
  25% {
    transform: rotate(25deg);
  }
  37.5% {
    transform: rotate(-20deg);
  }
  50% {
    transform: rotate(15deg);
  }
  62.5% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0);
  }
}

.rL3DXhMcS7B1DE0W9Igh {
  position: fixed;
  right: 20px;
  top: 70px;
  z-index: 1000;
  color: #5c5c5c;
}
.UssKBcCfST8G_f4cN3no {
  background: #fff;
  padding: 10px;
  margin-bottom: 10px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  width: 300px;
  cursor: pointer;
  display: flex;
}
.UssKBcCfST8G_f4cN3no > svg {
  color: #ecc63e;
  font-size: 24px;
  margin-right: 20px;
}
.tTar_qPf758t72s5x4VH {
  font-weight: bold;
}

.VqLovAv87zwhmSdCQBlh {
  box-sizing: border-box;
  border-radius: 50%;
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 10px;
  height: 10px;
  border: 1px solid #d1d1d1;
  box-shadow: 1px 1px 2px rgba(0,0,0,0.25);
  background: #aaa;
}
.ivIQ0M6IcD0fEhb9OiCC {
  background: #75cbad;
}
.--isMobile .p6skMhhaeGrF6DfhJAjf {
  top: 3px;
  right: -8px;
}

.rbCGX8LxFcc8dNZPSGL7 {
  position: relative;
  flex-shrink: 0;
  height: 100%;
}
.gWgzocnlVKO_gDrzWYA5 {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border-style: solid;
  position: relative;
  overflow: hidden;
  border-color: #d1d1d1;
  background-position: center center;
  background-size: cover;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 31px;
  background-color: #aaa;
  color: #5c5c5c;
}
.gWgzocnlVKO_gDrzWYA5 img {
  max-width: 100%;
}
.Z2ebU5DrNTKoSieWhB2r {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 12px;
  background: rgba(0,0,0,0.7);
  color: #fff;
}
.Z2ebU5DrNTKoSieWhB2r svg {
  display: block;
  margin: 0 auto;
  height: 10px;
  margin-top: 1px;
}
.rbCGX8LxFcc8dNZPSGL7:hover .Z2ebU5DrNTKoSieWhB2r {
  display: block;
}
.fSus0b_bdi1byx3uc7DQ {
  margin-right: 5px;
}
.vzE8R0agmpsauuABBePA .gWgzocnlVKO_gDrzWYA5 {
  width: 85px;
  height: 85px;
}
.vzE8R0agmpsauuABBePA .fZgUJB8GN76TTus9smle {
  font-size: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.v9iTD20wJWJiuLiWJv1y {
  border-width: 2px;
}
.lK91gkOQybUJYfGHfJRw {
  border-width: 3px;
}
.Bkfusv3pgfycnLny_VLs {
  border-width: 5px;
}
.AkUM_KqMsoLk8XE64vAH {
  border-color: #f74860;
}
.tO9daJNox_mpgvdHL5d4 {
  border-color: #ecc63e;
}
.iZ72ieLBnAGBVOnxcDDi {
  border-color: #16a085;
}
.--isMobile .ILli2s6_BEgoDtWd1C_j .gWgzocnlVKO_gDrzWYA5 {
  display: none;
}

.PmiT9aAwWlJSwXt_CQwG {
  margin-right: 10px;
  position: relative;
  font-weight: bold;
}
button.jS9ynnId6DxhjVAopnDG {
  width: 45px;
  padding: 0 5px;
}
.p0Gr1b2PIOQiwDvifFI7 {
  position: relative;
  padding-left: 5px;
  font-size: 9px;
}
.fo1pA9OhfAtfJ0kWon4g {
  width: 100px;
  position: absolute;
  z-index: 1000;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 5px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  padding: 5px 0;
  color: #16a085;
  left: 0px;
}
.TAZEf8mKX07aYC1ppN_b {
  padding: 0 20px;
  line-height: 32px;
  cursor: pointer;
}
.TAe1BiXMmvDn9NY0FPjg {
  text-decoration: underline;
}

.IJLwTOjVQY28ULFLQJVw {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #fff;
  color: #000;
  border-bottom: 1px solid #d1d1d1;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.IJLwTOjVQY28ULFLQJVw ._Button:focus {
  border-color: none !important;
  box-shadow: none !important;
}
.IJLwTOjVQY28ULFLQJVw ._Button {
  border-width: 1px;
}
.IJLwTOjVQY28ULFLQJVw ._Group {
  margin-right: 60px;
}
.S09NpxTL_Nfbikugxl5Q {
  display: none;
}
.bZd1MGFCp5Y1VDNXDijD {
  width: 100%;
  position: fixed;
  z-index: 999;
  background: rgba(0,0,0,0.7);
  height: 100vh;
  right: 0;
  display: block;
}
._rhyohd8SW7FbukMiUg3 {
  grid-column-start: 1;
  grid-column-end: 3;
}
.BhAk8YgP1TS3Rfc_HqPE {
  position: relative;
  align-items: center;
  padding: 20px;
  background: #fff;
  color: #fff;
  display: none;
  justify-content: space-between;
  flex-flow: row-reverse;
}
.ox_rZAth06TvoSbaZQwF {
  text-transform: uppercase;
  font-size: 20px;
  margin-right: 20px;
}
.ox_rZAth06TvoSbaZQwF img {
  width: 140px;
}
.aEHwRhEp7UITxDURm8Oe {
  display: flex;
  align-items: center;
}
.YvHfR_vwRDlcy11_yZ5e {
  display: inline-flex;
  margin-right: 20px;
  font-size: 18px;
  align-items: center;
  color: #000;
  cursor: pointer;
}
.YvHfR_vwRDlcy11_yZ5e:hover {
  color: #16a085;
}
.w7FVdmJWDnuW9iyEgbaB {
  min-width: 100px;
  padding: 10px;
}
.T2UzxyEj_MslHXDP1TLA {
  color: #16a085;
  font-size: 14px;
  transform: rotate(-90deg);
  flex-shrink: 0;
  margin-left: 5px;
}
.T9zLusUXMlE2JoXK2IbH {
  position: relative;
  display: inline-flex;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 700;
  line-height: 27px;
  color: #16a085;
  cursor: pointer;
}
.P5rWQJnwJhAukwlnsyHf ._Group {
  margin-right: 30px;
}
.P5rWQJnwJhAukwlnsyHf ._Group > a:not(:last-child) {
  margin-right: 10px;
}
.P5rWQJnwJhAukwlnsyHf .YvHfR_vwRDlcy11_yZ5e {
  margin-right: 10px;
}
.P5rWQJnwJhAukwlnsyHf .oI0MTvlQTu8UjRcO2S96 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 75px;
}
.--isMobile .IJLwTOjVQY28ULFLQJVw,
.--isTablet .IJLwTOjVQY28ULFLQJVw {
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  flex-direction: column;
  padding: 0;
  width: 290px;
  height: 100%;
  justify-content: start;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: all 0.5s ease;
  background: #fff;
  border-right: 5px solid #16a085;
  border-bottom: 5px solid #16a085;
}
.--isMobile .IJLwTOjVQY28ULFLQJVw ._Group,
.--isTablet .IJLwTOjVQY28ULFLQJVw ._Group {
  margin-right: 0;
  padding: 20px;
}
.--isMobile .tHfU79_3GGsbDWMy_X2v,
.--isTablet .tHfU79_3GGsbDWMy_X2v {
  padding: 16px 20px;
}
.--isMobile .bZd1MGFCp5Y1VDNXDijD,
.--isTablet .bZd1MGFCp5Y1VDNXDijD {
  transform: translateX(0);
}
.--isMobile .BhAk8YgP1TS3Rfc_HqPE,
.--isTablet .BhAk8YgP1TS3Rfc_HqPE {
  display: flex;
  z-index: 999;
}
.--isMobile .ldxnPpOAzrGNtv2ot312,
.--isTablet .ldxnPpOAzrGNtv2ot312 {
  margin: 0 auto 0 0;
}
.--isMobile .tF5RGOKnuWnYneUAhw8Q,
.--isTablet .tF5RGOKnuWnYneUAhw8Q {
  display: inline-flex;
  margin-right: 20px;
  font-size: 18px;
  align-items: center;
  color: #16a085;
}
.--isMobile .hdD8JsuF7IlO1ktQB9Yg,
.--isTablet .hdD8JsuF7IlO1ktQB9Yg {
  margin-left: 10px;
}
.--isMobile .ox_rZAth06TvoSbaZQwF,
.--isTablet .ox_rZAth06TvoSbaZQwF {
  width: 100%;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f0f0f0;
  margin-right: 0;
}
.--isMobile .ox_rZAth06TvoSbaZQwF img,
.--isTablet .ox_rZAth06TvoSbaZQwF img {
  width: 150px;
  padding: 0 30px;
}
.--isMobile .aEHwRhEp7UITxDURm8Oe,
.--isTablet .aEHwRhEp7UITxDURm8Oe {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: start;
}
.--isMobile .aEHwRhEp7UITxDURm8Oe ._Group,
.--isTablet .aEHwRhEp7UITxDURm8Oe ._Group {
  display: flex;
  flex-flow: column;
}
.--isMobile .aEHwRhEp7UITxDURm8Oe >._Button,
.--isTablet .aEHwRhEp7UITxDURm8Oe >._Button {
  position: absolute;
  bottom: 15px;
  right: 15px;
}
.--isMobile .YvHfR_vwRDlcy11_yZ5e,
.--isTablet .YvHfR_vwRDlcy11_yZ5e {
  color: #16a085;
  position: absolute;
  bottom: 15px;
  left: 15px;
  max-width: 70%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.D0zS7HS3OW3LF6Q4MubT {
  display: flex;
  height: 100vh;
  background: #fff;
}
.dP_bk9MS3wiIqdPAi4W0 {
  position: relative;
  flex: 1;
  background: #16a085;
}
.WS6SXV6DRsYWsrxLj0ux {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.u2W4lPy_KWL6nI27dWOG {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.IS_hnmdSXQhho3B9szrF {
  position: relative;
  flex: 0 0 45vw;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.MOmuMJKvNcMEqAA9k0GN {
  position: absolute;
  bottom: 25px;
  text-align: center;
  width: 100%;
  padding: 25px;
}
@media (max-height: 600px) {
  .MOmuMJKvNcMEqAA9k0GN {
    position: relative;
    margin-top: 20px;
  }
}
@media (max-height: 400px) {
  .MOmuMJKvNcMEqAA9k0GN {
    display: none;
  }
}
.SfRtCqaQxnUntHmyrous {
  color: #303030;
  letter-spacing: 0.11px;
  font-size: 16px;
  font-weight: 600;
  line-height: 37px;
}
.dBeVnoXHsK62xqV7foY5 {
  color: #16a085;
  text-decoration: underline;
}
.--isTablet .D0zS7HS3OW3LF6Q4MubT {
  height: 100dvh;
}
.--isTablet .u2W4lPy_KWL6nI27dWOG {
  max-width: 250px;
}
.--isTablet .IS_hnmdSXQhho3B9szrF {
  flex: 0 0 50vw;
}
.--isMobile .D0zS7HS3OW3LF6Q4MubT {
  height: 100dvh;
}
.--isMobile .dP_bk9MS3wiIqdPAi4W0 {
  display: none;
}
.--isMobile .IS_hnmdSXQhho3B9szrF {
  flex: 1;
  justify-content: space-between;
}
.--isMobile .MOmuMJKvNcMEqAA9k0GN {
  position: initial;
  border-top: 1px solid #aaa;
}

._Form__HiddenButton {
  display: none;
}
._Form__Field {
  position: relative;
  width: 100%;
  display: block;
}
._Form__Field--Inline {
  display: flex;
  align-items: center;
}
._Form__Field--Inline ._Form__Label {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
._Form__Field--Active ._Form__Label--Floating {
  top: 0px;
  padding: 0 2.5px;
  background: linear-gradient(to bottom, #fff 60%, transparent 60%);
  left: 10px;
  font-size: 12px;
  line-height: 12px;
}
._Form__Field--Focused ._Form__Label--Floating {
  color: #379d79;
}
._Form__Field--Focused .__Input--isFocused {
  border: 1px solid #379d79 !important;
  border-radius: 5px;
}
._Form__Input {
  flex-shrink: 0;
}
._Form__Input--withoutLegend {
  width: 100%;
}
._Form__View {
  color: #4a4a4a;
}
._Form__Wrapper {
  width: 100%;
  display: flex;
  align-items: center;
}
._Form__Legend {
  margin-left: 15px;
}
._Form__Label--Floating {
  position: absolute;
  z-index: 1;
  left: 12px;
  top: 22px;
  transform: translateY(-50%);
  font-size: 16px;
  line-height: 16px;
  color: #4a4a4a;
  transition: 0.3s;
  pointer-events: none;
}

._Input {
  display: inline-block;
  vertical-align: middle;
}
._Input--Block {
  width: 100%;
}
.-Bigger ._Input,
._Input.-Bigger {
  font-size: 1.1em;
}
.-Biggest ._Input,
._Input.-Biggest {
  font-size: 1.3em;
}
.-Smaller ._Input,
._Input.-Smaller {
  font-size: 0.9em;
}
.-Smallest ._Input,
._Input.-Smallest {
  font-size: 0.8em;
}
._TextInput {
  color: #2c3e50;
  background: #fff;
  border: 1px solid #d1d1d1;
  border-radius: 5px;
  height: 43px;
}
._TextInput._Input--isFocused {
  border: 1px solid #16a085;
  border-radius: 5px;
}
._TextInput input {
  font-family: inherit;
  border: none;
  background: transparent;
  color: inherit;
  cursor: inherit;
  height: 34px;
  padding: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 10px;
}
._TextInput input:focus {
  outline: none;
}
._TextInput input:disabled {
  background: #f0f0f0;
}
._TextInput__Wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
._TextInput__Postfix {
  display: inline-block;
  color: #899abe;
  padding-right: 10px;
}

._Input {
  display: inline-block;
  vertical-align: middle;
}
._Input--Block {
  width: 100%;
}
.-Bigger ._Input,
._Input.-Bigger {
  font-size: 1.1em;
}
.-Biggest ._Input,
._Input.-Biggest {
  font-size: 1.3em;
}
.-Smaller ._Input,
._Input.-Smaller {
  font-size: 0.9em;
}
.-Smallest ._Input,
._Input.-Smallest {
  font-size: 0.8em;
}
._NumberInput {
  color: #2c3e50;
  background: #fff;
  border: 1px solid #d1d1d1;
  border-radius: 5px;
  height: 43px;
}
._NumberInput._Input--isFocused {
  border: 1px solid #16a085;
  border-radius: 5px;
}
._NumberInput input {
  font-family: inherit;
  border: none;
  background: transparent;
  color: inherit;
  cursor: inherit;
  height: 34px;
  padding: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 10px;
}
._NumberInput input:focus {
  outline: none;
}
._NumberInput input:disabled {
  background: #f0f0f0;
}
._NumberInput__Wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
._NumberInput__Postfix {
  display: inline-block;
  color: #899abe;
  padding-right: 10px;
}

._Input {
  display: inline-block;
  vertical-align: middle;
}
._Input--Block {
  width: 100%;
}
.-Bigger ._Input,
._Input.-Bigger {
  font-size: 1.1em;
}
.-Biggest ._Input,
._Input.-Biggest {
  font-size: 1.3em;
}
.-Smaller ._Input,
._Input.-Smaller {
  font-size: 0.9em;
}
.-Smallest ._Input,
._Input.-Smallest {
  font-size: 0.8em;
}
._TextareaInput {
  color: #2c3e50;
  background: #fff;
  border: 1px solid #d1d1d1;
  border-radius: 5px;
  height: 43px;
  height: 100%;
}
._TextareaInput._Input--isFocused {
  border: 1px solid #16a085;
  border-radius: 5px;
}
._TextareaInput textarea {
  font-family: inherit;
  border: none;
  background: transparent;
  color: inherit;
  cursor: inherit;
  height: 34px;
  padding: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px;
  resize: none;
}
._TextareaInput textarea:focus {
  outline: none;
}
._TextareaInput textarea:disabled {
  background: #f0f0f0;
}

._Input {
  display: inline-block;
  vertical-align: middle;
}
._Input--Block {
  width: 100%;
}
.-Bigger ._Input,
._Input.-Bigger {
  font-size: 1.1em;
}
.-Biggest ._Input,
._Input.-Biggest {
  font-size: 1.3em;
}
.-Smaller ._Input,
._Input.-Smaller {
  font-size: 0.9em;
}
.-Smallest ._Input,
._Input.-Smallest {
  font-size: 0.8em;
}
._SelectInput {
  color: #2c3e50;
  background: #fff;
  border: 1px solid #d1d1d1;
  border-radius: 5px;
  height: 43px;
  line-height: 1;
}
._SelectInput._Input--isFocused {
  border: 1px solid #16a085;
  border-radius: 5px;
}
._SelectInput select {
  font-family: inherit;
  border: none;
  background: transparent;
  color: inherit;
  cursor: inherit;
  height: 34px;
  padding: 0;
  font-size: 1rem;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}
._SelectInput select:focus {
  outline: none;
}
._SelectInput select:disabled {
  background: #f0f0f0;
}
._SelectInput--Bigger {
  font-size: 1.1em;
}
._SelectInput--Biggest {
  font-size: 1.3em;
}
._SelectInput--Smaller {
  font-size: 0.9em;
}
._SelectInput--Smallest {
  font-size: 0.8em;
}

._Input {
  display: inline-block;
  vertical-align: middle;
}
._Input--Block {
  width: 100%;
}
.-Bigger ._Input,
._Input.-Bigger {
  font-size: 1.1em;
}
.-Biggest ._Input,
._Input.-Biggest {
  font-size: 1.3em;
}
.-Smaller ._Input,
._Input.-Smaller {
  font-size: 0.9em;
}
.-Smallest ._Input,
._Input.-Smallest {
  font-size: 0.8em;
}
._CheckboxInput {
  color: #2c3e50;
  background: #fff;
  border: 1px solid #d1d1d1;
  border-radius: 5px;
  height: 43px;
  border: none;
  border-radius: 3px;
}
._CheckboxInput._Input--isFocused {
  border: 1px solid #16a085;
  border-radius: 5px;
}
._CheckboxInput__Input {
  width: 100%;
  height: 100%;
  border: 1px solid #d1d1d1;
  padding: 0.2em;
}
._CheckboxInput__Input--Checked {
  background: #379d79;
  color: #fff;
  border: 1px solid #379d79;
}
._CheckboxInput svg {
  display: block;
  width: 100%;
  height: 100%;
}
._CheckboxInput input {
  display: none;
}
._CheckboxInput.-isChecked::before {
  content: ' ';
  display: block;
  width: 50%;
  height: 100%;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  margin: 0 auto;
  box-sizing: border-box;
  transform: rotate(35deg);
}

._Input {
  display: inline-block;
  vertical-align: middle;
}
._Input--Block {
  width: 100%;
}
.-Bigger ._Input,
._Input.-Bigger {
  font-size: 1.1em;
}
.-Biggest ._Input,
._Input.-Biggest {
  font-size: 1.3em;
}
.-Smaller ._Input,
._Input.-Smaller {
  font-size: 0.9em;
}
.-Smallest ._Input,
._Input.-Smallest {
  font-size: 0.8em;
}
._RadioInput {
  position: relative;
}

._Input {
  display: inline-block;
  vertical-align: middle;
}
._Input--Block {
  width: 100%;
}
.-Bigger ._Input,
._Input.-Bigger {
  font-size: 1.1em;
}
.-Biggest ._Input,
._Input.-Biggest {
  font-size: 1.3em;
}
.-Smaller ._Input,
._Input.-Smaller {
  font-size: 0.9em;
}
.-Smallest ._Input,
._Input.-Smallest {
  font-size: 0.8em;
}
._TabsInput {
  position: relative;
}
._TabsInput__Input {
  color: #2c3e50;
  background: #fff;
  border: 1px solid #d1d1d1;
  border-radius: 5px;
  height: 43px;
  display: inline-flex;
  height: 2.25em;
  line-height: 2.25em;
  border: none;
}
._TabsInput__Input._Input--isFocused {
  border: 1px solid #16a085;
  border-radius: 5px;
}
._TabsInput__Option {
  padding: 0 10px;
  cursor: pointer;
  border: 1px solid #d1d1d1;
  margin-left: -1px;
}
._TabsInput__Option:first-child {
  border-radius: 5px 0 0 5px;
}
._TabsInput__Option:last-child {
  border-radius: 0 5px 5px 0;
}
._TabsInput__Option--isActive {
  position: relative;
  border: 1px solid #16a085;
  color: #16a085;
}

._Input {
  display: inline-block;
  vertical-align: middle;
}
._Input--Block {
  width: 100%;
}
.-Bigger ._Input,
._Input.-Bigger {
  font-size: 1.1em;
}
.-Biggest ._Input,
._Input.-Biggest {
  font-size: 1.3em;
}
.-Smaller ._Input,
._Input.-Smaller {
  font-size: 0.9em;
}
.-Smallest ._Input,
._Input.-Smallest {
  font-size: 0.8em;
}
._TextInput {
  color: #2c3e50;
  background: #fff;
  border: 1px solid #d1d1d1;
  border-radius: 5px;
  height: 43px;
}
._TextInput._Input--isFocused {
  border: 1px solid #16a085;
  border-radius: 5px;
}
._TextInput input {
  font-family: inherit;
  border: none;
  background: transparent;
  color: inherit;
  cursor: inherit;
  height: 34px;
  padding: 0;
  width: 100%;
  height: 100%;
  padding: 0 10px;
}
._TextInput input:focus {
  outline: none;
}

._Input {
  display: inline-block;
  vertical-align: middle;
}
._Input--Block {
  width: 100%;
}
.-Bigger ._Input,
._Input.-Bigger {
  font-size: 1.1em;
}
.-Biggest ._Input,
._Input.-Biggest {
  font-size: 1.3em;
}
.-Smaller ._Input,
._Input.-Smaller {
  font-size: 0.9em;
}
.-Smallest ._Input,
._Input.-Smallest {
  font-size: 0.8em;
}
._FileInput {
  text-align: center;
}
._FileInput__Input {
  display: none;
}
._FileInput__Image {
  display: flex;
  justify-content: space-between;
}
._FileInput__DropZone {
  width: 100%;
  border: 1px dashed;
  margin-bottom: 20px;
}
._FileInput__DropZone--isHighlight {
  color: #16a085;
}

._Input {
  display: inline-block;
  vertical-align: middle;
}
._Input--Block {
  width: 100%;
}
.-Bigger ._Input,
._Input.-Bigger {
  font-size: 1.1em;
}
.-Biggest ._Input,
._Input.-Biggest {
  font-size: 1.3em;
}
.-Smaller ._Input,
._Input.-Smaller {
  font-size: 0.9em;
}
.-Smallest ._Input,
._Input.-Smallest {
  font-size: 0.8em;
}
._ImageUploadInput {
  cursor: pointer;
}
._ImageUploadInput__Input {
  display: none;
}
._ImageUploadInput__Image {
  position: relative;
  display: flex;
  align-items: center;
}
._ImageUploadInput__Image img {
  display: block;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
}
._ImageUploadInput__NoImage {
  margin: auto;
}
._ImageUploadInput:hover ._ImageUploadInput__PlaceholderText {
  display: flex;
}
._ImageUploadInput__PlaceholderText {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0,0,0,0.5);
  color: #fff;
  padding: 10px;
}
._ImageUploadInput__PlaceholderOnHover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}
._ImageUploadInput:hover ._ImageUploadInput__PlaceholderOnHover {
  opacity: 1;
}
._ImageUploadInput__ChangeButton {
  font-weight: 700;
  color: #379d79;
  margin-top: 10px;
  text-align: center;
  cursor: pointer;
}

._Input {
  display: inline-block;
  vertical-align: middle;
}
._Input--Block {
  width: 100%;
}
.-Bigger ._Input,
._Input.-Bigger {
  font-size: 1.1em;
}
.-Biggest ._Input,
._Input.-Biggest {
  font-size: 1.3em;
}
.-Smaller ._Input,
._Input.-Smaller {
  font-size: 0.9em;
}
.-Smallest ._Input,
._Input.-Smallest {
  font-size: 0.8em;
}
._DateInput {
  position: relative;
}
._DateInput ._TextInput {
  display: block;
}
._DateInput select {
  font-family: inherit;
  border: none;
  background: transparent;
  color: inherit;
  cursor: inherit;
  height: 34px;
  padding: 0;
  width: 100%;
  height: 100%;
}
._DateInput select:focus {
  outline: none;
}
._DateInput__DropDown {
  position: absolute;
  z-index: 1000;
  background: #fff;
  border: 1px solid #d1d1d1;
  border-radius: 5px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
._DateInput .react-calendar {
  padding: 20px;
}
._DateInput .react-calendar__navigation {
  margin-bottom: 10px;
}
._DateInput .react-calendar__navigation__arrow {
  background: transparent;
  border: none;
  font-size: 1.6em;
}
._DateInput .react-calendar__navigation__label {
  background: transparent;
  border: none;
  font-size: 1.2em;
  text-transform: uppercase;
}
._DateInput .react-calendar__month-view__weekdays__weekday {
  font-weight: bold;
  text-align: center;
}
._DateInput .react-calendar__month-view__weekdays__weekday abbr {
  display: inline-block;
  padding: 10px;
  border-bottom: none;
}
._DateInput .react-calendar__tile {
  background: transparent;
  border: none;
  width: auto;
}
._DateInput .react-calendar__tile abbr {
  display: inline-block;
  padding: 5px;
  line-height: 1em;
  width: 1em;
  height: 1em;
  border-radius: 50%;
}
._DateInput .react-calendar__tile--active abbr {
  background: #16a085;
  color: #fff;
}

._Input {
  display: inline-block;
  vertical-align: middle;
}
._Input--Block {
  width: 100%;
}
.-Bigger ._Input,
._Input.-Bigger {
  font-size: 1.1em;
}
.-Biggest ._Input,
._Input.-Biggest {
  font-size: 1.3em;
}
.-Smaller ._Input,
._Input.-Smaller {
  font-size: 0.9em;
}
.-Smallest ._Input,
._Input.-Smallest {
  font-size: 0.8em;
}
._PercentInput {
  color: #2c3e50;
  background: #fff;
  border: 1px solid #d1d1d1;
  border-radius: 5px;
  height: 43px;
}
._PercentInput._Input--isFocused {
  border: 1px solid #16a085;
  border-radius: 5px;
}
._PercentInput__Input {
  display: flex;
  height: 100%;
  align-items: center;
}
._PercentInput input {
  font-family: inherit;
  border: none;
  background: transparent;
  color: inherit;
  cursor: inherit;
  height: 34px;
  padding: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 10px;
}
._PercentInput input:focus {
  outline: none;
}
._PercentInput__Ico {
  margin-right: 5px;
  color: #899abe;
}

._ToggleInput__Input {
  display: block;
  width: 2.4em;
  background: #f35468;
  padding: 3px;
  padding-right: 1em;
  border-radius: 1em;
  transition: padding 0.5s, background 0.5s;
  cursor: pointer;
}
._ToggleInput__Input::before {
  content: ' ';
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 1em;
  background: #fff;
}
._ToggleInput__Input--True {
  background: #379d79;
  padding: 0.25em;
  padding-left: 1.15em;
}
._ToggleInput__Input--isDisabled {
  background: #f1f3f7;
}
._ToggleInput input {
  display: none;
}
._ToggleInput--Bigger {
  font-size: 1.1rem;
}
._ToggleInput--Biggest {
  font-size: 1.3rem;
}
._ToggleInput--Smaller {
  font-size: 0.9rem;
}
._ToggleInput--Smallest {
  font-size: 0.8rem;
}

.y9wXpG5p1OwfdRdwnIKm {
  position: absolute;
  background: rgba(22,160,133,0.5);
  width: 100%;
  height: 100%;
  z-index: 9999;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.bGk_EHcNWHhOhLo64vFt {
  min-width: 300px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0px 4px 18.9px 0px rgba(0,0,0,0.25);
  padding: 20px;
}
.mcFaGQqlTpW5T9ZfWUCw {
  padding: 15px 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
}
.Pk7N8MGg73gMXNJiAMG_ {
  padding: 0px 20px;
  width: 100%;
  overflow-y: auto;
}
.XUkZQqD5vMNJNq3FW8WJ {
  padding: 15px 20px;
  display: block;
}
.--isMobile .y9wXpG5p1OwfdRdwnIKm {
  height: 100%;
  top: 0px;
}
.--isMobile .mcFaGQqlTpW5T9ZfWUCw {
  padding: 15px 0;
}
.--isMobile .Pk7N8MGg73gMXNJiAMG_ {
  padding: 0px;
  height: calc(100% - 80px);
  padding-bottom: 20px;
}
.--isMobile .XUkZQqD5vMNJNq3FW8WJ {
  padding: 0px;
  width: 100%;
}

.n_7GJS1u37XISXtXAou3 {
  margin: 20px 0;
  max-height: 180px;
  overflow-y: auto;
}
.BvohQcgR8WhhI0kuvt_4 {
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  font-weight: 600;
  padding: 10px 0;
  margin: 10px 0;
  text-align: center;
  cursor: pointer;
}

.qprc3mfnal80sZ8NW4Pp {
  max-width: 400px;
}
.u4NKL9JsvpD3LcEFC3yQ {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.M5Kx8HCV34i6wc5BdQMc {
  color: #000;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}
.gfdEp6v6Z7HguRJdhSkK {
  color: #000;
  text-align: center;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}
.CmQYB2yryfc8fjE30Csw {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.CmQYB2yryfc8fjE30Csw ._AsyncButton {
  border-radius: 180px !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  text-align: center;
  height: 49px !important;
  justify-content: center;
}
.roWlv4CZ1YMGLBh8Fgbh {
  font-size: 18px;
  font-weight: 700;
  height: 49px;
  justify-content: center;
  display: flex;
  align-items: center;
  color: #16a085;
  cursor: pointer;
}

.Bv7E4Zb9dVFp7EN88D4L {
  width: 400px;
}
.nHWw2UNn4jE5eYs_x4gx {
  display: flex;
  flex-direction: column;
  color: #000;
  gap: 10px;
}
.hYFNUzwNVSFcQVxDTNaR {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}
.eboQ3ANJ4Go2Uz2qL3dF {
  text-align: center;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}
.T0QYR1YiwoMYglBkbl7K {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.T0QYR1YiwoMYglBkbl7K ._AsyncButton {
  border-radius: 180px !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  text-align: center;
  height: 49px !important;
  justify-content: center;
}
.NO2DBaRx9q0vqHLsDb4s {
  font-size: 18px;
  font-weight: 700;
  height: 49px;
  justify-content: center;
  display: flex;
  align-items: center;
  color: #16a085;
  cursor: pointer;
}

.N9sqUePnnDFrb5FKXAkG {
  position: relative;
  width: 375px;
  display: flex;
  flex-direction: column;
}
.hTRTeVk5IvOIuPOHLhUR {
  display: none;
}
._JKsypeb3Lp21WRBivUc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #000;
  gap: 15px;
  margin-bottom: 20px;
}
.MkacGpEER7nyOrdFMioN {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
.vrdBsyEmxH_W3D1MYy7z {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}
.Ochlw1a2XECiI2pJzzTJ {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.MtIFhzmPt3O41Lz1IRrh {
  color: #16a085;
  text-align: right;
  height: 30px;
}
.MtIFhzmPt3O41Lz1IRrh span {
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  padding: 15px;
}
.e5JuJNNkpwh3CB3bUbwy {
  border-radius: 180px !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  text-align: center;
  height: 49px !important;
  justify-content: center;
}
.Ochlw1a2XECiI2pJzzTJ ._AsyncButton {
  border-radius: 180px !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  text-align: center;
  height: 49px !important;
  justify-content: center;
}
.--isTablet .N9sqUePnnDFrb5FKXAkG {
  width: 100%;
}
.--isMobile .N9sqUePnnDFrb5FKXAkG {
  width: 100%;
}
.--isMobile .hTRTeVk5IvOIuPOHLhUR {
  display: flex;
  justify-content: center;
  margin: 12.5vh 0 50px 0;
}
.--isMobile .hTRTeVk5IvOIuPOHLhUR img {
  width: 200px;
}

.Controls {
  display: block;
  margin-top: 20px;
  text-align: right;
}

.Progress {
  font-weight: 600;
  text-align: center;
}
.Progress__Step {
  position: relative;
  display: inline-block;
  width: 100px;
  margin: 20px 100px;
}
.Progress__Step::before {
  content: ' ';
  display: inline-block;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  margin-bottom: 6px;
  background: #fff;
  border: 2px solid #75cbad;
}
.Progress__Step:not(:last-child)::after {
  content: ' ';
  position: absolute;
  display: block;
  top: 18px;
  left: 68px;
  width: 300px;
  height: 1px;
  background: #75cbad;
}
.Progress__Step--Active::before {
  background: #75cbad;
}

.Terms {
  margin-top: 20px;
  display: flex;
  font-size: 14px;
}
.Terms__Modal {
  width: 70%;
}
.Terms__Text {
  width: 100%;
  text-align: center;
}
.Terms input {
  margin-right: 10px;
}
.Terms a {
  text-decoration: none;
  color: inherit;
  text-decoration: underline;
  display: block;
  margin-top: 5px;
  color: #16a085;
}

.__Registration__Header {
  background: #e1f3ec;
}
.__Registration__Body {
  width: 700px;
  margin: 20px auto;
}
.__Registration h2 {
  font-size: 24px;
}
.__Registration__Username {
  margin-bottom: 20px !important;
  text-align: center !important;
  font-size: 16px;
}
.__Registration__Username ._Form__View {
  font-weight: 300;
}
.__Registration--Password {
  width: 350px;
  margin: 0 auto;
}

.App {
  display: grid;
  grid-template-rows: auto 1fr;
}
.App__Body {
  overflow-y: auto;
  text-align: center;
}

html {
  line-height: 1.15; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
div,
summary {
  box-sizing: border-box;
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1,
h2,
h3 {
  font-weight: 400;
  margin: 20px 0;
}
h1 {
  font-size: 26px;
}
h1 small {
  margin-left: 10px;
  font-size: 13px;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
  box-sizing: border-box;
}
button:focus,
input:focus,
optgroup:focus,
select:focus,
textarea:focus {
  outline: none;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
.-clearFix::after {
  content: " ";
  display: block;
  clear: both;
}
html,
body {
  top: 0px !important;
  background: #ecf0f1;
  color: #5c5c5c;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
}
@media print {
  html,
  body {
    height: auto;
    overflow: visible;
  }
}
html.Body--withSidebar:not(.--isTablet) ._Modal__Overlay,
body.Body--withSidebar:not(.--isTablet) ._Modal__Overlay {
  right: 500px;
}
@media only screen and (max-width: 1400px) {
  .ScheduleGrid ._Table.GridWeek,
  .ScheduleGrid ._Table.GridDay {
    flex-basis: 1000px;
  }
  .ScheduleGrid ._Table.GridWeek .Shift__Time,
  .ScheduleGrid ._Table.GridDay .Shift__Time {
    font-size: 0.85em;
  }
}
.--mobileShow {
  display: none;
}
@media only screen and (max-width: 1280px) {
  .--mobileShow {
    display: block;
  }
}
.--mobileHide {
  display: block;
}
@media only screen and (max-width: 1280px) {
  .--mobileHide {
    display: none;
  }
}
.--mobileBlock {
  display: inline-block;
}
@media only screen and (max-width: 1280px) {
  .--mobileBlock {
    display: block;
  }
}
.--isMobile .ScheduleGrid ._Table,
.--isTablet .ScheduleGrid ._Table {
  flex-shrink: 1;
}
.--isMobile ._FileInput__Image {
  flex-flow: wrap;
  justify-content: space-around;
}
.--isMobile ._Modal {
  width: 100%;
  min-height: -webkit-fill-available;
}
.--isMobile ._Modal__Overlay {
  padding: 0;
  background: rgba(0,0,0,0.35);
}
.--isMobile ._Modal__Footer {
  justify-content: flex-end;
}
.--isMobile .EmployeeHours__Body {
  justify-content: end;
  padding-top: 3px;
}
.--isMobile .EmployeeHours__Clock {
  padding-left: 0;
}
.--isMobile .Employee__Performance--withGrossProfit {
  width: 90%;
  flex-flow: column;
  align-items: flex-start;
}
.--isMobile .Employee__Performance--withGrossProfit >div:first-child {
  margin: 0 0 3px 3px;
}
.--isMobile .Employee__Name,
.--isMobile .Employee__Position {
  width: 100px;
  overflow-x: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.--isMobile .Employee__Body {
  padding-left: 5px;
  align-items: end;
}
.--isMobile .Staff__Employee {
  padding-right: 0;
}
.--isMobile .CompanyUser__Name {
  width: 100%;
  font-size: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.--isMobile .Avatar {
  display: flex;
  justify-content: center;
}
.--isMobile .Avatar img {
  width: 50%;
}
.--isMobile ._ImageUploadInput__Image {
  display: block;
}
.--isMobile ._ImageUploadInput__Image img {
  width: 50%;
}
.--isMobile ._Table__Column--StoreName {
  width: 245px;
}
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background: #e1f3ec;
}
::-webkit-scrollbar-thumb {
  background: #16a085;
}
#app,
.App {
  height: 100%;
  width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
h2 {
  display: inline-block;
  padding: 0;
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  display: block;
  height: 48px;
  line-height: 48px;
  padding: 0 10px;
  font-size: 18px;
  color: #16a085;
  font-weight: bold;
}
h3 {
  display: inline-block;
  padding: 0;
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  display: block;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  font-size: 18px;
  color: #379d79;
  font-weight: bold;
}
label {
  box-sizing: border-box;
  cursor: inherit;
}
hr {
  background: #d1d1d1;
  height: 1px;
  border: none;
}
.-withRightMargin {
  margin-right: 10px;
}
.--Inline {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
}
.--NotOverflowTable ._Table__Cell {
  overflow: initial;
}
._Toast {
  z-index: 9999;
}
._Toast--Notice {
  border-width: 5px;
}
._Toast--Notice ._Toast__Title {
  display: flex;
  align-items: center;
  color: #379d79;
}
._Toast--Notice ._Toast__Title::before {
  content: '\2713';
  display: inline-block;
  font-size: large;
  font-weight: bold;
  color: #75cbad;
  width: 14px;
  padding: 0 3px;
  border: 2px solid #75cbad;
  border-radius: 50%;
  float: left;
  margin-right: 15px;
}
._Toast--Warning {
  border-width: 5px;
}
._Toast--Warning ._Toast__Title {
  display: flex;
  align-items: center;
  color: #ecc63e;
}
._Badge {
  background: #e1f3ec;
  color: #4a4a4a;
  font-weight: 600;
  padding: 0.6em 0.8em;
}
._Button {
  padding: 0 10px;
  background: #16a085;
  border-color: #16a085;
  color: #fff;
  font-weight: bold;
  border-width: 2px;
  border-radius: 5px;
  height: 34px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
}
._Button--Smaller {
  height: 26px;
}
._Button--Smallest {
  height: 20px;
  line-height: 12px;
}
._Button--Disabled {
  background-color: #f0f0f0 !important;
  border-color: #d7ebe4;
  color: #aaa !important;
}
._Button--Ghost._Button {
  color: #16a085;
}
._Button--Narrow {
  padding: 0 3px;
}
._Button svg {
  font-size: 1.4em;
  vertical-align: -0.2em;
}
._Button img {
  height: 26px;
  margin-right: 10px;
}
._TextInput,
._NumberInput,
._TextareaInput,
._SelectInput,
._PostfixInput {
  border: 1px solid #d1d1d1;
  overflow: hidden;
}
._TabsInput__Option {
  background: #f0f0f0;
  color: #16a085;
  border-color: #d1d1d1;
}
._TabsInput__Option--isActive {
  background: #16a085;
  color: #fff;
  border-color: #16a085;
}
._CheckboxInput {
  width: 1.5em !important;
  height: 1.5em;
}
._CheckboxInput__Input {
  border: 1px solid #d1d1d1;
  border-radius: 5px;
}
._CheckboxInput--Disabled {
  background-color: #f0f0f0;
  border-color: #d7ebe4;
}
._CheckboxInput--Illuminated ._CheckboxInput--Disabled {
  color: #16a085;
}
._TextareaInput textarea {
  display: block;
  min-height: 100px;
}
._ImageUploadInput__Image {
  border: 1px dashed #d1d1d1;
}
._ImageUploadInput__Image img {
  width: 100%;
}
._Group ._Group {
  margin: 0 20px;
}
._Group ._Group:last-child {
  margin-right: 0;
}
._Group ._Group:first-child {
  margin-left: 0;
}
._Group > ._Button--Narrow:not(:last-child) {
  margin-right: 5px;
}
._Group {
  white-space: nowrap;
  display: inline-block;
}
._Group > a:not(:last-child) {
  margin-right: 15px;
}
._Form__Field {
  margin: 10px 0;
  text-align: left;
}
._Form__Field a {
  color: #16a085;
}
._Form__Field--Inline ._Form__Label {
  margin-right: 10px;
}
._Form__Field--Fullwidth ._Form__View {
  width: 100%;
}
._Form__Field--Fullwidth ._Input {
  width: 100%;
}
._Form__Label {
  line-height: 2.3em;
  font-size: 13px;
  font-weight: 600;
  color: #899abe;
  white-space: nowrap;
}
._Form__Label::after {
  content: ':';
}
._Form__Label--Floating::after {
  content: '';
}
._Form__Label--Inline {
  display: inline-block;
  margin-right: 10px;
}
._Form__Error {
  margin-top: 5px;
  padding: 5px 20px;
  text-align: left;
  background: #f35468;
  color: #fff;
}
._Form__Error:first-of-type {
  margin-top: 10px;
}
._Form__View {
  font-weight: 600;
}
._Form__Group {
  padding: 0;
  border: none;
}
._Form__GroupHeader {
  display: flex;
  align-items: center;
  margin: 15px 0;
}
._Form__GroupTitle {
  display: inline-block;
  padding: 0;
  margin-right: 10px;
  font-size: 20px;
  font-weight: 600;
  color: #4a4a4a;
}
._Modal {
  border-radius: 5px;
  min-width: 300px;
}
._Modal__Overlay {
  background: rgba(117,203,173,0.3);
  z-index: 1000;
}
._Modal__Header {
  padding: 15px 20px;
  font-weight: bold;
  color: #16a085;
  font-size: 18px;
  border-bottom: none;
  position: relative;
}
._Modal__Header--withoutPadding {
  padding: 0;
}
._Modal__Header::after {
  display: block;
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: #d1d1d1;
}
._Modal__Header svg {
  margin-right: 10px;
}
._Modal__Body {
  padding: 10px 20px;
  overflow-y: auto;
}
._Modal__Footer {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding: 0 20px 10px 20px;
  text-align: right;
}
._Table--Summary ._Table__Cell {
  color: #4a4a4a;
  font-weight: 700;
}
:not(--withoutRowHover) ._Table__Row {
  cursor: pointer;
}
:not(--withoutRowHover) ._Table__Row:hover ._Table__Cell {
  background: #e1f3ec;
}
.Grid {
  display: grid;
  grid-gap: 0 30px;
}
.Grid.Grid--2 {
  grid-template-columns: 1fr 1fr;
}
.Grid.Grid--4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
._DropDown::before {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 0;
  transform: translate(-50%, 0);
}
._DropDown--LeftBottom::before,
._DropDown--Bottom::before {
  top: 0;
  border-bottom: 10px solid #fff;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
._DropDown--LeftTop::before {
  bottom: 0;
  border-top: 10px solid #fff;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
._DropDown--Bottom ._DropDown__Body {
  top: 10px;
}
._DropDown--LeftBottom ._DropDown__Body {
  top: 10px;
  right: -20px;
}
._DropDown--LeftTop ._DropDown__Body {
  bottom: 10px;
  right: -20px;
}
._Menu__Option {
  font-weight: 600;
}
._Menu__Option a.active {
  color: #16a085;
}
._Menu__Option:hover {
  background: #e1f3ec;
}
._Button {
  position: relative;
}
._Button ._DropDown {
  position: absolute;
  bottom: 0;
  left: 50%;
}
.Popup {
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  border-radius: 5px;
}
.Popup:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
.Popup__Content {
  background-color: #fff;
  padding: 2px 16px 14px 16px;
}
.Popup__Content__Item {
  color: #379d79;
}
.Popup__Content__Text {
  margin-bottom: 10px;
  display: block;
  max-width: 250px;
  margin: 0 auto;
  font-size: $font-size;
  line-height: $line-height;
}
.Popup__Content svg {
  color: #379d79;
  margin-right: 10px;
}
.GridWeek__DayActions--showDayActions,
.Shift__Actions--showShiftActions {
  animation-duration: 5s;
  animation-name: DisappearanceElement;
  display: flex;
}
._Dialog__Overlay {
  background: rgba(0,0,0,0.8);
  z-index: 10000;
}
.--withBottomMargin {
  margin-bottom: 10px;
}
.--withoutPointer {
  cursor: default;
}
.--withoutPointer ._ToggleInput__Input {
  cursor: default;
}
@media print {
  @page {
    size: A4 landscape;
    max-width: 100%;
  }
}
@media print {
  .--printHide {
    display: none;
  }
}
.--printShow {
  display: none;
}
@media print {
  .--printShow {
    display: block;
  }
}
@media print {
  .--printBlock {
    display: block;
  }
}
.App--isPrinting .--printHide {
  display: none;
}
.App--isPrinting .--printShow {
  display: block;
}
.App--isPrinting .--printBlock,
.App--isPrinting.--printBlock {
  display: block;
}
._Menu__Option {
  white-space: nowrap;
}
._Menu__Option svg {
  margin-right: 10px;
}
.--isTablet ._SelectInput select {
  padding-left: 5px;
  border-radius: 0;
}
@-moz-keyframes DisappearanceElement {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes DisappearanceElement {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes DisappearanceElement {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes DisappearanceElement {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
._Pagination {
  margin-top: 20px;
}
.-Block {
  width: 100%;
}
.-Block._ToggleInput {
  width: auto;
}
._DropDown--Top::before {
  content: '';
  position: absolute;
  bottom: 10px;
  left: -5px;
  background: #fff;
  border: 10px solid transparent;
  transform: rotate(45deg);
  box-shadow: 0 0 10px 0 #909090;
}
._DropDown--Top ._DropDown__Body {
  left: 0;
  bottom: 20px;
  transform: translateX(-50%);
  border: 1px solid #d1d1d1;
  padding: 0;
  overflow: hidden;
}
._Table__Table {
  table-layout: fixed;
}
._Table__Column {
  padding: 10px 15px;
  line-height: 30px;
  font-size: 12px;
  font-weight: 600;
  background: #f1f3f7;
}
._Table__Cellhh {
  font-size: 13px;
  font-weight: 600;
  padding: 15px 15px;
  color: #4a4a4a;
  border-bottom: 1px solid #d1d1d1;
  overflow: hidden;
}
._Table__Row {
  cursor: pointer;
}
._Table__Row:hover {
  background: #e1f3ec;
}
._Table ._Preloader {
  position: absolute;
  top: 50px;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  background: rgba(117,203,173,0.3);
}

