@import url(https://fonts.googleapis.com/css?family=Heebo:400,500,600,700,800&display=swap);@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css);@import url(https://fonts.googleapis.com/css?family=Heebo:400,500,600,700,800,900&display=swap);[data-rmiz-wrap="visible"],
[data-rmiz-wrap="hidden"] {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
}
[data-rmiz-wrap="hidden"] {
  visibility: hidden;
}
[data-rmiz-overlay] {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-property: background-color;
}
[data-rmiz-btn-open],
[data-rmiz-btn-close] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;

  /* reset styles */
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  font: inherit;
  color: inherit;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
[data-rmiz-btn-open] {
  cursor: zoom-in;
}
[data-rmiz-btn-close] {
  cursor: zoom-out;
}
[data-rmiz-modal-content] {
  position: absolute;
  transition-property: transform;
  transform-origin: center center;
}
.rc-tooltip.rc-tooltip-zoom-enter,
.rc-tooltip.rc-tooltip-zoom-leave {
  display: block;
}
.rc-tooltip-zoom-enter,
.rc-tooltip-zoom-appear {
  opacity: 0;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.18, 0.89, 0.32, 1.28);
  animation-play-state: paused;
}
.rc-tooltip-zoom-leave {
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.6, -0.3, 0.74, 0.05);
  animation-play-state: paused;
}
.rc-tooltip-zoom-enter.rc-tooltip-zoom-enter-active,
.rc-tooltip-zoom-appear.rc-tooltip-zoom-appear-active {
  animation-name: rcToolTipZoomIn;
  animation-play-state: running;
}
.rc-tooltip-zoom-leave.rc-tooltip-zoom-leave-active {
  animation-name: rcToolTipZoomOut;
  animation-play-state: running;
}
@keyframes rcToolTipZoomIn {
  0% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(0, 0);
  }
  100% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1, 1);
  }
}
@keyframes rcToolTipZoomOut {
  0% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1, 1);
  }
  100% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(0, 0);
  }
}
.rc-tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  visibility: visible;
  line-height: 1.5;
  font-size: 12px;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 1px;
  opacity: 0.9;
}
.rc-tooltip-hidden {
  display: none;
}
.rc-tooltip-inner {
  padding: 8px 10px;
  color: #333333;
  text-align: left;
  text-decoration: none;
  background-color: #ffffff;
  border-radius: 3px;
  min-height: 34px;
  border: 1px solid #b1b1b1;
}
.rc-tooltip-arrow,
.rc-tooltip-arrow-inner {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.rc-tooltip-placement-top .rc-tooltip-arrow,
.rc-tooltip-placement-topLeft .rc-tooltip-arrow,
.rc-tooltip-placement-topRight .rc-tooltip-arrow {
  bottom: -5px;
  margin-left: -6px;
  border-width: 6px 6px 0;
  border-top-color: #b1b1b1;
}
.rc-tooltip-placement-top .rc-tooltip-arrow-inner,
.rc-tooltip-placement-topLeft .rc-tooltip-arrow-inner,
.rc-tooltip-placement-topRight .rc-tooltip-arrow-inner {
  bottom: 1px;
  margin-left: -6px;
  border-width: 6px 6px 0;
  border-top-color: #ffffff;
}
.rc-tooltip-placement-top .rc-tooltip-arrow {
  left: 50%;
}
.rc-tooltip-placement-topLeft .rc-tooltip-arrow {
  left: 15%;
}
.rc-tooltip-placement-topRight .rc-tooltip-arrow {
  right: 15%;
}
.rc-tooltip-placement-right .rc-tooltip-arrow,
.rc-tooltip-placement-rightTop .rc-tooltip-arrow,
.rc-tooltip-placement-rightBottom .rc-tooltip-arrow {
  left: -5px;
  margin-top: -6px;
  border-width: 6px 6px 6px 0;
  border-right-color: #b1b1b1;
}
.rc-tooltip-placement-right .rc-tooltip-arrow-inner,
.rc-tooltip-placement-rightTop .rc-tooltip-arrow-inner,
.rc-tooltip-placement-rightBottom .rc-tooltip-arrow-inner {
  left: 1px;
  margin-top: -6px;
  border-width: 6px 6px 6px 0;
  border-right-color: #ffffff;
}
.rc-tooltip-placement-right .rc-tooltip-arrow {
  top: 50%;
}
.rc-tooltip-placement-rightTop .rc-tooltip-arrow {
  top: 15%;
  margin-top: 0;
}
.rc-tooltip-placement-rightBottom .rc-tooltip-arrow {
  bottom: 15%;
}
.rc-tooltip-placement-left .rc-tooltip-arrow,
.rc-tooltip-placement-leftTop .rc-tooltip-arrow,
.rc-tooltip-placement-leftBottom .rc-tooltip-arrow {
  right: -5px;
  margin-top: -6px;
  border-width: 6px 0 6px 6px;
  border-left-color: #b1b1b1;
}
.rc-tooltip-placement-left .rc-tooltip-arrow-inner,
.rc-tooltip-placement-leftTop .rc-tooltip-arrow-inner,
.rc-tooltip-placement-leftBottom .rc-tooltip-arrow-inner {
  right: 1px;
  margin-top: -6px;
  border-width: 6px 0 6px 6px;
  border-left-color: #ffffff;
}
.rc-tooltip-placement-left .rc-tooltip-arrow {
  top: 50%;
}
.rc-tooltip-placement-leftTop .rc-tooltip-arrow {
  top: 15%;
  margin-top: 0;
}
.rc-tooltip-placement-leftBottom .rc-tooltip-arrow {
  bottom: 15%;
}
.rc-tooltip-placement-bottom .rc-tooltip-arrow,
.rc-tooltip-placement-bottomLeft .rc-tooltip-arrow,
.rc-tooltip-placement-bottomRight .rc-tooltip-arrow {
  top: -5px;
  margin-left: -6px;
  border-width: 0 6px 6px;
  border-bottom-color: #b1b1b1;
}
.rc-tooltip-placement-bottom .rc-tooltip-arrow-inner,
.rc-tooltip-placement-bottomLeft .rc-tooltip-arrow-inner,
.rc-tooltip-placement-bottomRight .rc-tooltip-arrow-inner {
  top: 1px;
  margin-left: -6px;
  border-width: 0 6px 6px;
  border-bottom-color: #ffffff;
}
.rc-tooltip-placement-bottom .rc-tooltip-arrow {
  left: 50%;
}
.rc-tooltip-placement-bottomLeft .rc-tooltip-arrow {
  left: 15%;
}
.rc-tooltip-placement-bottomRight .rc-tooltip-arrow {
  right: 15%;
}
/* DayPicker styles */

.DayPicker {
  display: inline-block;
  font-size: 1rem;
}

.DayPicker-wrapper {
  position: relative;

  flex-direction: row;
  padding-bottom: 1em;

  -webkit-user-select: none;

     -moz-user-select: none;

      -ms-user-select: none;

          user-select: none;
}

.DayPicker-Months {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.DayPicker-Month {
  display: table;
  margin: 0 1em;
  margin-top: 1em;
  border-spacing: 0;
  border-collapse: collapse;

  -webkit-user-select: none;

     -moz-user-select: none;

      -ms-user-select: none;

          user-select: none;
}

.DayPicker-NavBar {
}

.DayPicker-NavButton {
  position: absolute;
  top: 1em;
  right: 1.5em;
  left: auto;

  display: inline-block;
  margin-top: 2px;
  width: 1.25em;
  height: 1.25em;
  background-position: center;
  background-size: 50%;
  background-repeat: no-repeat;
  color: #8B9898;
  cursor: pointer;
}

.DayPicker-NavButton:hover {
  opacity: 0.8;
}

.DayPicker-NavButton--prev {
  margin-right: 1.5em;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAwCAYAAAB5R9gVAAAABGdBTUEAALGPC/xhBQAAAVVJREFUWAnN2G0KgjAYwPHpGfRkaZeqvgQaK+hY3SUHrk1YzNLay/OiEFp92I+/Mp2F2Mh2lLISWnflFjzH263RQjzMZ19wgs73ez0o1WmtW+dgA01VxrE3p6l2GLsnBy1VYQOtVSEH/atCCgqpQgKKqYIOiq2CBkqtggLKqQIKgqgCBjpJ2Y5CdJ+zrT9A7HHSTA1dxUdHgzCqJIEwq0SDsKsEg6iqBIEoq/wEcVRZBXFV+QJxV5mBtlDFB5VjYTaGZ2sf4R9PM7U9ZU+lLuaetPP/5Die3ToO1+u+MKtHs06qODB2zBnI/jBd4MPQm1VkY79Tb18gB+C62FdBFsZR6yeIo1YQiLJWMIiqVjQIu1YSCLNWFgijVjYIuhYYCKoWKAiiFgoopxYaKLUWOii2FgkophYp6F3r42W5A9s9OcgNvva8xQaysKXlFytoqdYmQH6tF3toSUo0INq9AAAAAElFTkSuQmCC');
}

.DayPicker-NavButton--next {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAwCAYAAAB5R9gVAAAABGdBTUEAALGPC/xhBQAAAXRJREFUWAnN119ugjAcwPHWzJ1gnmxzB/BBE0n24m4xfNkTaOL7wOtsl3AXMMb+Vjaa1BG00N8fSEibPpAP3xAKKs2yjzTPH9RAjhEo9WzPr/Vm8zgE0+gXATAxxuxtqeJ9t5tIwv5AtQAApsfT6TPdbp+kUBcgVwvO51KqVhMkXKsVJFXrOkigVhCIs1Y4iKlWZxB1rX4gwlpRIIpa8SDkWmggrFq4IIRaJKCYWnSgnrXIQV1r8YD+1Vrn+bReagysIFfLABRt31v8oBu1xEBttfRbltmfjgEcWh9snUS2kNdBK6WN1vrOWxObWsz+fjxevsxmB1GQDfINWiev83nhaoiB/CoOU438oPrhXS0WpQ9xc1ZQWxWHqUYe0I0qrKCQKjygDlXIQV2r0IF6ViEBxVTBBSFUQQNhVYkHIVeJAtkNsbQ7c1LtzP6FsObhb2rCKv7NBIGoq4SDmKoEgTirXAcJVGkFSVVpgoSrXICGUMUH/QBZNSUy5XWUhwAAAABJRU5ErkJggg==');
}

.DayPicker-NavButton--interactionDisabled {
  display: none;
}

.DayPicker-Caption {
  display: table-caption;
  margin-bottom: 0.5em;
  padding: 0 0.5em;
  text-align: left;
}

.DayPicker-Caption > div {
  font-weight: 500;
  font-size: 1.15em;
}

.DayPicker-Weekdays {
  display: table-header-group;
  margin-top: 1em;
}

.DayPicker-WeekdaysRow {
  display: table-row;
}

.DayPicker-Weekday {
  display: table-cell;
  padding: 0.5em;
  color: #8B9898;
  text-align: center;
  font-size: 0.875em;
}

.DayPicker-Weekday abbr[title] {
  border-bottom: none;
  text-decoration: none;
}

.DayPicker-Body {
  display: table-row-group;
}

.DayPicker-Week {
  display: table-row;
}

.DayPicker-Day {
  display: table-cell;
  padding: 0.5em;
  border-radius: 50%;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
}

.DayPicker-WeekNumber {
  display: table-cell;
  padding: 0.5em;
  min-width: 1em;
  border-right: 1px solid #EAECEC;
  color: #8B9898;
  vertical-align: middle;
  text-align: right;
  font-size: 0.75em;
  cursor: pointer;
}

.DayPicker--interactionDisabled .DayPicker-Day {
  cursor: default;
}

.DayPicker-Footer {
  padding-top: 0.5em;
}

.DayPicker-TodayButton {
  border: none;
  background-color: transparent;
  background-image: none;
  box-shadow: none;
  color: #4A90E2;
  font-size: 0.875em;
  cursor: pointer;
}

/* Default modifiers */

.DayPicker-Day--today {
  color: #D0021B;
  font-weight: 700;
}

.DayPicker-Day--outside {
  color: #8B9898;
  cursor: default;
}

.DayPicker-Day--disabled {
  color: #DCE0E0;
  cursor: default;
  /* background-color: #eff1f1; */
}

/* Example modifiers */

.DayPicker-Day--sunday {
  background-color: #F7F8F8;
}

.DayPicker-Day--sunday:not(.DayPicker-Day--today) {
  color: #DCE0E0;
}

.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside) {
  position: relative;

  background-color: #4A90E2;
  color: #F0F8FF;
}

.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside):hover {
  background-color: #51A0FA;
}

.DayPicker:not(.DayPicker--interactionDisabled)
  .DayPicker-Day:not(.DayPicker-Day--disabled):not(.DayPicker-Day--selected):not(.DayPicker-Day--outside):hover {
  background-color: #F0F8FF;
}

/* DayPickerInput */

.DayPickerInput {
  display: inline-block;
}

.DayPickerInput-OverlayWrapper {
  position: relative;
}

.DayPickerInput-Overlay {
  position: absolute;
  left: 0;
  z-index: 1;

  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}
.rdrCalendarWrapper {
  box-sizing: border-box;
  background: #ffffff;
  display: inline-flex;
  flex-direction: column;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.rdrDateDisplay{
  display: flex;
  justify-content: space-between;
}

.rdrDateDisplayItem{
  flex: 1 1;
  width: 0;
  text-align: center;
  color: inherit;
}

.rdrDateDisplayItem + .rdrDateDisplayItem{
    margin-left: 0.833em;
  }

.rdrDateDisplayItem input{
    text-align: inherit
  }

.rdrDateDisplayItem input:disabled{
      cursor: default;
    }

.rdrDateDisplayItemActive{}

.rdrMonthAndYearWrapper {
  box-sizing: inherit;
  display: flex;
  justify-content: space-between;
}

.rdrMonthAndYearPickers{
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rdrMonthPicker{}

.rdrYearPicker{}

.rdrNextPrevButton {
  box-sizing: inherit;
  cursor: pointer;
  outline: none;
}

.rdrPprevButton {}

.rdrNextButton {}

.rdrMonths{
  display: flex;
}

.rdrMonthsVertical{
  flex-direction: column;
}

.rdrMonthsHorizontal > div > div > div{
  display: flex;
  flex-direction: row;
}

.rdrMonth{
  width: 27.667em;
}

.rdrWeekDays{
  display: flex;
}

.rdrWeekDay {
  flex-basis: calc(100% / 7);
  box-sizing: inherit;
  text-align: center;
}

.rdrDays{
  display: flex;
  flex-wrap: wrap;
}

.rdrDateDisplayWrapper{}

.rdrMonthName{}

.rdrInfiniteMonths{
  overflow: auto;
}

.rdrDateRangeWrapper{
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.rdrDateInput {
  position: relative;
}

.rdrDateInput input {
    outline: none;
  }

.rdrDateInput .rdrWarning {
    position: absolute;
    font-size: 1.6em;
    line-height: 1.6em;
    top: 0;
    right: .25em;
    color: #FF0000;
  }

.rdrDay {
  box-sizing: inherit;
  width: calc(100% / 7);
  position: relative;
  font: inherit;
  cursor: pointer;
}

.rdrDayNumber {
  display: block;
  position: relative;
}

.rdrDayNumber span{
    color: #1d2429;
  }

.rdrDayDisabled {
  cursor: not-allowed;
}

@supports (-ms-ime-align: auto) {
  .rdrDay {
    flex-basis: 14.285% !important;
  }
}

.rdrSelected, .rdrInRange, .rdrStartEdge, .rdrEndEdge{
  pointer-events: none;
}

.rdrInRange{}

.rdrDayStartPreview, .rdrDayInPreview, .rdrDayEndPreview{
  pointer-events: none;
}

.rdrDayHovered{}

.rdrDayActive{}

.rdrDateRangePickerWrapper{
  display: inline-flex;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.rdrDefinedRangesWrapper{}

.rdrStaticRanges{
  display: flex;
  flex-direction: column;
}

.rdrStaticRange{
  font-size: inherit;
}

.rdrStaticRangeLabel{}

.rdrInputRanges{}

.rdrInputRange{
  display: flex;
}

.rdrInputRangeInput{}
.rdrCalendarWrapper{
  color: #000000;
  font-size: 12px;
}

.rdrDateDisplayWrapper{
  background-color: rgb(239, 242, 247);
}

.rdrDateDisplay{
  margin: 0.833em;
}

.rdrDateDisplayItem{
  border-radius: 4px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 1px 2px 0 rgba(35, 57, 66, 0.21);
  border: 1px solid transparent;
}

.rdrDateDisplayItem input{
    cursor: pointer;
    height: 2.5em;
    line-height: 2.5em;
    border: 0px;
    background: transparent;
    width: 100%;
    color: #849095;
  }

.rdrDateDisplayItemActive{
  border-color: currentColor;
}

.rdrDateDisplayItemActive input{
    color: #7d888d
  }

.rdrMonthAndYearWrapper {
  align-items: center;
  height: 60px;
  padding-top: 10px;
}

.rdrMonthAndYearPickers{
  font-weight: 600;
}

.rdrMonthAndYearPickers select{
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    padding: 10px 30px 10px 10px;
    border-radius: 4px;
    outline: 0;
    color: #3e484f;
    background: url("data:image/svg+xml;utf8,<svg width='9px' height='6px' viewBox='0 0 9 6' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'><g id='Artboard' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' transform='translate(-636.000000, -171.000000)' fill-opacity='0.368716033'><g id='input' transform='translate(172.000000, 37.000000)' fill='%230E242F' fill-rule='nonzero'><g id='Group-9' transform='translate(323.000000, 127.000000)'><path d='M142.280245,7.23952813 C141.987305,6.92353472 141.512432,6.92361662 141.219585,7.23971106 C140.926739,7.5558055 140.926815,8.06821394 141.219755,8.38420735 L145.498801,13 L149.780245,8.38162071 C150.073185,8.0656273 150.073261,7.55321886 149.780415,7.23712442 C149.487568,6.92102998 149.012695,6.92094808 148.719755,7.23694149 L145.498801,10.7113732 L142.280245,7.23952813 Z' id='arrow'></path></g></g></g></svg>") no-repeat;
    background-position: right 8px center;
    cursor: pointer;
    text-align: center
  }

.rdrMonthAndYearPickers select:hover{
      background-color: rgba(0,0,0,0.07);
    }

.rdrMonthPicker, .rdrYearPicker{
  margin: 0 5px
}

.rdrNextPrevButton {
  display: block;
  width: 24px;
  height: 24px;
  margin: 0 0.833em;
  padding: 0;
  border: 0;
  border-radius: 5px;
  background: #EFF2F7
}

.rdrNextPrevButton:hover{
    background: #E1E7F0;
  }

.rdrNextPrevButton i {
    display: block;
    width: 0;
    height: 0;
    padding: 0;
    text-align: center;
    border-style: solid;
    margin: auto;
    transform: translate(-3px, 0px);
  }

.rdrPprevButton i {
    border-width: 4px 6px 4px 4px;
    border-color: transparent rgb(52, 73, 94) transparent transparent;
    transform: translate(-3px, 0px);
  }

.rdrNextButton i {
    margin: 0 0 0 7px;
    border-width: 4px 4px 4px 6px;
    border-color: transparent transparent transparent rgb(52, 73, 94);
    transform: translate(3px, 0px);
  }

.rdrWeekDays {
  padding: 0 0.833em;
}

.rdrMonth{
  padding: 0 0.833em 1.666em 0.833em;
}

.rdrMonth .rdrWeekDays {
    padding: 0;
  }

.rdrMonths.rdrMonthsVertical .rdrMonth:first-child .rdrMonthName{
  display: none;
}

.rdrWeekDay {
  font-weight: 400;
  line-height: 2.667em;
  color: rgb(132, 144, 149);
}

.rdrDay {
  background: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: 0;
  padding: 0;
  line-height: 3.000em;
  height: 3.000em;
  text-align: center;
  color: #1d2429
}

.rdrDay:focus {
    outline: 0;
  }

.rdrDayNumber {
  outline: 0;
  font-weight: 300;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  top: 5px;
  bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rdrDayToday .rdrDayNumber span{
  font-weight: 500
}

.rdrDayToday .rdrDayNumber span:after{
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: #3d91ff;
  }

.rdrDayToday:not(.rdrDayPassive) .rdrInRange ~ .rdrDayNumber span:after,.rdrDayToday:not(.rdrDayPassive) .rdrStartEdge ~ .rdrDayNumber span:after,.rdrDayToday:not(.rdrDayPassive) .rdrEndEdge ~ .rdrDayNumber span:after,.rdrDayToday:not(.rdrDayPassive) .rdrSelected ~ .rdrDayNumber span:after{
      background: #fff;
    }

.rdrDay:not(.rdrDayPassive) .rdrInRange ~ .rdrDayNumber span,.rdrDay:not(.rdrDayPassive) .rdrStartEdge ~ .rdrDayNumber span,.rdrDay:not(.rdrDayPassive) .rdrEndEdge ~ .rdrDayNumber span,.rdrDay:not(.rdrDayPassive) .rdrSelected ~ .rdrDayNumber span{
          color: rgba(255, 255, 255, 0.85);
        }

.rdrSelected, .rdrInRange, .rdrStartEdge, .rdrEndEdge{
  background: currentColor;
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
  bottom: 5px;
}

.rdrSelected{
  left: 2px;
  right: 2px;
}

.rdrInRange{}

.rdrStartEdge{
  border-top-left-radius: 1.042em;
  border-bottom-left-radius: 1.042em;
  left: 2px;
}

.rdrEndEdge{
  border-top-right-radius: 1.042em;
  border-bottom-right-radius: 1.042em;
  right: 2px;
}

.rdrSelected{
  border-radius: 1.042em;
}

.rdrDayStartOfMonth .rdrInRange, .rdrDayStartOfMonth .rdrEndEdge, .rdrDayStartOfWeek .rdrInRange, .rdrDayStartOfWeek .rdrEndEdge{
    border-top-left-radius: 1.042em;
    border-bottom-left-radius: 1.042em;
    left: 2px;
  }

.rdrDayEndOfMonth .rdrInRange,  .rdrDayEndOfMonth .rdrStartEdge,  .rdrDayEndOfWeek .rdrInRange,  .rdrDayEndOfWeek .rdrStartEdge{
    border-top-right-radius: 1.042em;
    border-bottom-right-radius: 1.042em;
    right: 2px;
  }

.rdrDayStartOfMonth .rdrDayInPreview, .rdrDayStartOfMonth .rdrDayEndPreview, .rdrDayStartOfWeek .rdrDayInPreview, .rdrDayStartOfWeek .rdrDayEndPreview{
    border-top-left-radius: 1.333em;
    border-bottom-left-radius: 1.333em;
    border-left-width: 1px;
    left: 0px;
  }

.rdrDayEndOfMonth .rdrDayInPreview, .rdrDayEndOfMonth .rdrDayStartPreview, .rdrDayEndOfWeek .rdrDayInPreview, .rdrDayEndOfWeek .rdrDayStartPreview{
   border-top-right-radius: 1.333em;
   border-bottom-right-radius: 1.333em;
   border-right-width: 1px;
   right: 0px;
 }

.rdrDayStartPreview, .rdrDayInPreview, .rdrDayEndPreview{
  background: rgba(255, 255, 255, 0.09);
  position: absolute;
  top: 3px;
  left: 0px;
  right: 0px;
  bottom: 3px;
  pointer-events: none;
  border: 0px solid currentColor;
  z-index: 1;
}

.rdrDayStartPreview{
  border-top-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-top-left-radius: 1.333em;
  border-bottom-left-radius: 1.333em;
  left: 0px;
}

.rdrDayInPreview{
  border-top-width: 1px;
  border-bottom-width: 1px;
}

.rdrDayEndPreview{
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-top-right-radius: 1.333em;
  border-bottom-right-radius: 1.333em;
  right: 2px;
  right: 0px;
}

.rdrDefinedRangesWrapper{
  font-size: 12px;
  width: 226px;
  border-right: solid 1px #eff2f7;
  background: #fff;
}

.rdrDefinedRangesWrapper .rdrStaticRangeSelected{
    color: currentColor;
    font-weight: 600;
  }

.rdrStaticRange{
  border: 0;
  cursor: pointer;
  display: block;
  outline: 0;
  border-bottom: 1px solid #eff2f7;
  padding: 0;
  background: #fff
}

.rdrStaticRange:hover .rdrStaticRangeLabel,.rdrStaticRange:focus .rdrStaticRangeLabel{
      background: #eff2f7;
    }

.rdrStaticRangeLabel{
  display: block;
  outline: 0;
  line-height: 18px;
  padding: 10px 20px;
  text-align: left;
}

.rdrInputRanges{
  padding: 10px 0;
}

.rdrInputRange{
  align-items: center;
  padding: 5px 20px;
}

.rdrInputRangeInput{
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 4px;
  text-align: center;
  border: solid 1px rgb(222, 231, 235);
  margin-right: 10px;
  color: rgb(108, 118, 122)
}

.rdrInputRangeInput:focus, .rdrInputRangeInput:hover{
    border-color: rgb(180, 191, 196);
    outline: 0;
    color: #333;
  }

.rdrCalendarWrapper:not(.rdrDateRangeWrapper) .rdrDayHovered .rdrDayNumber:after{
  content: '';
  border: 1px solid currentColor;
  border-radius: 1.333em;
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: 0px;
  right: 0px;
  background: transparent;
}

.rdrDayPassive{
  pointer-events: none;
}

.rdrDayPassive .rdrDayNumber span{
    color: #d5dce0;
  }

.rdrDayPassive .rdrInRange, .rdrDayPassive .rdrStartEdge, .rdrDayPassive .rdrEndEdge, .rdrDayPassive .rdrSelected, .rdrDayPassive .rdrDayStartPreview, .rdrDayPassive .rdrDayInPreview, .rdrDayPassive .rdrDayEndPreview{
    display: none;
  }

.rdrDayDisabled {
  background-color: rgb(248, 248, 248);
}

.rdrDayDisabled .rdrDayNumber span{
    color: #aeb9bf;
  }

.rdrDayDisabled .rdrInRange, .rdrDayDisabled .rdrStartEdge, .rdrDayDisabled .rdrEndEdge, .rdrDayDisabled .rdrSelected, .rdrDayDisabled .rdrDayStartPreview, .rdrDayDisabled .rdrDayInPreview, .rdrDayDisabled .rdrDayEndPreview{
    filter: grayscale(100%) opacity(60%);
  }

.rdrMonthName{
  text-align: left;
  font-weight: 600;
  color: #849095;
  padding: 0.833em;
}



*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
html {
  font-size: 62.5%;
}
textarea {
  overflow-y: auto;
  scrollbar-width: thin;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  scroll-behavior: auto;
}
textarea::-webkit-scrollbar {
  display: none;
}
textarea::-webkit-scrollbar {
  width: 6px;
  height: 10px;
}
textarea::-webkit-scrollbar-thumb:vertical {
  padding: 0.5rem;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 5px #3E3E3E;
  background: #838383;
}
textarea::-webkit-scrollbar-track:vertical {
  padding: 0.5rem;
  -webkit-box-shadow: inset 0 0 5px #3E3E3E;
  border-radius: 10px;
}
.hiddenBar::-webkit-scrollbar {
  display: none;
}
.MuiTableContainer-root,
.niceScrollBar {
  overflow-y: auto;
  overflow-x: auto;
  scrollbar-width: thin;
  -ms-overflow-style: thin; /* IE and Edge */
  scroll-behavior: auto;
}
.MuiTableContainer-root::-webkit-scrollbar,
.niceScrollBar::-webkit-scrollbar {
  width: 12px;
  height: 10px;
}
.MuiTableContainer-root::-webkit-scrollbar-thumb:vertical,
.niceScrollBar::-webkit-scrollbar-thumb:vertical {
  padding: 0.5rem;
  -webkit-box-shadow: inset 0 0 5px #3E3E3E;
  background: rgb(204, 202, 202);
}
.MuiTableContainer-root::-webkit-scrollbar-track:vertical,
.niceScrollBar::-webkit-scrollbar-track:vertical {
  padding: 0.5rem;
  -webkit-box-shadow: inset 0 0 5px #3E3E3E;
}
.MuiTableContainer-root::-webkit-scrollbar-thumb:horizontal,
.niceScrollBar::-webkit-scrollbar-thumb:horizontal {
  padding: 0.5rem;
  -webkit-box-shadow: inset 0 0 4px #3E3E3E;
  background: #c1c1c1;
}
.MuiTableContainer-root::-webkit-scrollbar-track:horizontal,
.niceScrollBar::-webkit-scrollbar-track:horizontal {
  padding: 0.5rem;
  -webkit-box-shadow: inset 0 0 4px #3E3E3E;
}
.MuiTableContainer-root div[class^=MUIDataTable-responsiveBase],
.niceScrollBar div[class^=MUIDataTable-responsiveBase] {
  overflow-y: auto;
  scrollbar-width: thin;
  -ms-overflow-style: thin; /* IE and Edge */
  scroll-behavior: auto;
}
.MuiTableContainer-root div[class^=MUIDataTable-responsiveBase]::-webkit-scrollbar,
.niceScrollBar div[class^=MUIDataTable-responsiveBase]::-webkit-scrollbar {
  width: 12px;
  height: 10px;
}
.MuiTableContainer-root div[class^=MUIDataTable-responsiveBase]::-webkit-scrollbar-thumb:vertical,
.niceScrollBar div[class^=MUIDataTable-responsiveBase]::-webkit-scrollbar-thumb:vertical {
  padding: 0.5rem;
  -webkit-box-shadow: inset 0 0 5px #3E3E3E;
  background: rgb(204, 202, 202);
}
.MuiTableContainer-root div[class^=MUIDataTable-responsiveBase]::-webkit-scrollbar-track:vertical,
.niceScrollBar div[class^=MUIDataTable-responsiveBase]::-webkit-scrollbar-track:vertical {
  padding: 0.5rem;
  -webkit-box-shadow: inset 0 0 5px #3E3E3E;
}
.MuiTableContainer-root div.tss-qbo1l6-MUIDataTableToolbar-actions,
.niceScrollBar div.tss-qbo1l6-MUIDataTableToolbar-actions {
  display: flex;
  justify-content: end;
}
a {
  outline: none;
}
.container {
  padding: 0;
}
body {
  box-sizing: border-box;
  height: 100%;
  background-color: #f5f5f5;
  -webkit-print-color-adjust: exact !important;
  scroll-behavior: smooth;
  /* Hide scrollbar for Chrome, Safari and Opera */
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
body::-webkit-scrollbar {
  display: none;
}
main {
  width: 100%;
  height: 100%;
  min-height: 100vh;
}
#root {
  height: 100%;
}
input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #ccc;
  width: 100%;
  font-size: 1.2rem;
  padding: 1rem;
  border-radius: 5px;
  display: block;
  outline-color: #eeeeee;
  -webkit-transition: outline 0.2s ease-in-out;
  transition: outline 0.2s ease-in-out;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #ccc;
  width: 100%;
  font-size: 1.2rem;
  padding: 1rem;
  border-radius: 5px;
  display: block;
  outline-color: #eeeeee;
  -webkit-transition: outline 0.2s ease-in-out;
  transition: outline 0.2s ease-in-out;
}
input[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
  display: inline-block;
  width: auto;
  margin: 0 0 0 0.6rem;
}
input[type=checkbox]:focus {
  outline: none;
}
label {
  color: #666;
}
@media print {
  html,
  body {
    height: initial !important;
    overflow: initial !important;
    -webkit-print-color-adjust: exact;
  }
  .page-break {
    display: block !important;
    page-break-after: always;
    break-after: page;
  }
}
@page {
  size: auto;
  margin: 1rem 0.5rem;
}
@media screen and (max-width: 600px) {
  .react-responsive-modal-modal .dropdown-select {
    max-width: unset;
  }
  .react-responsive-modal-modal .dropdown-select .dropdown-select--header {
    max-width: unset;
    font-weight: 500;
    font-size: 1.4rem;
  }
}
/* 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;
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes swing {
  0%, 30%, 50%, 70%, 100% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(10deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
}
@keyframes highlight {
  0% {
    border: 0.1rem solid white;
    border-radius: 5px;
  }
  50% {
    border: 0.1rem solid red;
    border-radius: 5px;
  }
  100% {
    border: 0.1rem solid white;
    border-radius: 5px;
  }
}
@keyframes highlightBackground {
  0% {
    background-color: white;
  }
  50% {
    background-color: pink;
  }
  100% {
    background-color: white;
  }
}
@keyframes shake {
  10%, 90% {
    transform: rotate(-1deg);
  }
  20%, 80% {
    transform: rotate(1deg);
  }
  30%, 50%, 70% {
    transform: rotate(-1deg);
  }
  40%, 60% {
    transform: rotate(1deg);
  }
}
.dragable {
  animation: shake 0.82s ease both 0s infinite;
}
* {
  font-family: Heebo;
}
body {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #585858;
}
button {
  color: #585858;
}
label {
  font-weight: 500;
}
.heading-primary {
  font-size: 3.6rem;
  font-weight: 700;
}
.heading-header {
  font-size: 1.8rem;
  font-weight: 800;
  color: #585858;
  line-height: 0.8;
}
.details-primary {
  font-weight: 500;
  margin-bottom: 2rem;
}
.error-msg {
  font-weight: 500;
  color: #ff5630;
}
.paragraph {
  font-size: 1.4rem;
  font-weight: 500;
}
.u-center-text {
  text-align: center !important;
  justify-content: center !important;
}
.u-left-text {
  text-align: left;
}
.u-right-text {
  text-align: start;
}
.left-to-right {
  direction: ltr !important;
}
.right-to-left {
  direction: rtl;
}
.padding-0 {
  padding: 0 !important;
}
.padding-8 {
  padding: 8px !important;
}
.padding-05 {
  padding: 0.5rem !important;
}
.padding-10 {
  padding: 0 1rem !important;
}
.padding-bottom-0 {
  padding-bottom: 0 !important;
}
.left {
  left: 0;
}
.right {
  right: 0;
}
.none {
  display: none !important;
}
.display {
  display: block !important;
}
.display-table {
  display: table-row-group;
}
.display-table-print {
  width: 1360px !important;
  display: table !important;
}
.flex {
  display: flex;
  justify-content: space-around;
}
.flex-even {
  display: flex;
  justify-content: space-evenly;
}
.flex-even__space {
  gap: 1rem;
}
.flex-between {
  display: flex;
  justify-content: space-between;
}
.flex-between-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex-around-center {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.flex-evenly-center {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.flex-start {
  display: flex;
  justify-content: flex-start;
}
.flex-end {
  display: flex;
  justify-content: flex-end;
}
.flex-reverse {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.even-width * {
  flex: 1 1 0px;
}
.width-1 {
  width: 1px;
}
.full-width {
  width: 100% !important;
  max-width: none !important;
}
.icon-image {
  width: 2.6rem;
  height: 2.6rem;
}
.img-as-div {
  border-radius: 100%;
  width: 5.5rem;
  height: 5.5rem;
  background-color: #fff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-align-end {
  display: flex;
  align-items: flex-end;
}
.flex-center-down {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.flex-center-start {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.flex-center-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.flex-column-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.flex-column-end {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.flex-column-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flex-column-center__right {
  align-items: flex-start;
}
.flex-column-baseline {
  display: flex;
  flex-direction: column;
  align-items: baseline;
}
.flex-wrap {
  flex-wrap: wrap;
  row-gap: 2rem;
}
.flex-wrap button {
  flex-basis: 45%;
}
.margin-left-right {
  margin: 0 2rem;
}
.color__danger {
  color: #db1e1e !important;
}
.color__danger--background {
  background-color: #db1e1e !important;
}
.color__danger--background:hover {
  background-color: rgb(204, 8, 8) !important;
}
.color__warning--background {
  background-color: rgb(221, 107, 85) !important;
}
.color__warning--background:hover {
  background-color: #c07123 !important;
}
.color__confirm {
  color: #47cc00 !important;
}
.color__confirm--background {
  background-color: #47cc00 !important;
}
.color__confirm--background:hover {
  background-color: #3dad02 !important;
}
.color__white {
  color: #585858 !important;
  border: 2px solid #e2e2e2 !important;
  background-color: white !important;
}
.color__white:hover {
  color: #00a2ea !important;
  border-color: #00a2ea !important;
  background-color: white !important;
}
.color__blue {
  color: white !important;
}
.color__blue--background {
  background-color: #00a2ea !important;
}
.left-corner {
  position: absolute;
  left: 2.2rem;
  top: 2.2rem;
  font-size: 2rem;
}
.margin-y {
  margin: 1rem 0;
}
.margin-y__half {
  margin: 0.5rem 0 !important;
}
.margin-top {
  margin-top: 1rem;
}
.margin-top__half {
  margin-top: 0.5rem;
}
.strong {
  font-weight: 700;
}
.margin-y-important {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.margin-y-important__half {
  margin: 0.5rem 0 !important;
}
.margin-y-important__bottom {
  margin-top: 0rem !important;
}
.height-4 {
  height: 4rem !important;
}
.relative {
  position: relative !important;
}
.fluid {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.fluid--important {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.center {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.absCenter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.absCenter__fixed {
  margin: 1rem !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  position: fixed !important;
}
.absVerticalCenter {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.absolute-center-horizontal {
  position: fixed;
  right: 50vw;
}
.fixed {
  position: fixed;
}
.fixed__6 {
  top: 6rem;
}
.disabled {
  opacity: 0.6;
}
.Popover {
  z-index: 1;
}
.Popover-body {
  order: 0;
}
.remove-icon {
  width: fit-content !important;
  position: absolute !important;
  background-color: transparent !important;
  color: #db1e1e !important;
  height: auto !important;
  top: 0.5rem !important;
  right: 0.5rem !important;
  z-index: 1 !important;
}
.action-icon-input i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 1.4rem;
  width: fit-content;
  background-color: transparent;
  height: fit-content;
  z-index: 1;
  visibility: hidden;
}
.action-icon-input:hover i {
  visibility: visible;
}
.App-alert {
  position: fixed;
  right: 1rem;
  top: 1rem;
}
.App-alert > * + * {
  margin-top: 1rem;
}
.alert {
  width: 20rem;
  background: #fff;
  padding: 1rem;
  border-radius: 3px;
}
.abs-vertical-center {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.sign {
  font-size: large;
  font-weight: 600;
  margin: auto;
  padding: 0 0.5rem;
}
.svg-outline svg {
  color: transparent;
  -webkit-text-stroke-width: 45px;
  -webkit-text-stroke-color: black;
  stroke: black;
  /* The stroke width is huge because the svg itself is ~512x512, which is then scaled down */
  stroke-width: 45px;
}
.red-circle {
  line-height: 1;
  position: absolute;
  top: -5px;
  z-index: 1;
  right: -5px;
  font-size: 1.1rem;
  font-weight: 700;
  width: 1.8rem;
  height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: White;
  background-color: red;
  border-radius: 100px;
}
.red-circle__left {
  left: -5px;
  right: unset;
}
.red-circle__left {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  right: unset;
  left: 2rem;
}
.hidden {
  visibility: hidden;
}
.hidden-abs {
  position: absolute;
  visibility: hidden;
}
.page-disable {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: black;
  opacity: 20%;
  border-radius: 5px;
}
@media print {
  .not-print {
    display: none !important;
  }
}
.slide {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}
.slide div {
  visibility: hidden;
  transition-property: visibility;
  transition-delay: 1.5s;
}
.slide--expand {
  max-height: 100%;
  overflow-y: scroll;
  padding: 2rem;
}
.slide--expand__100 {
  max-height: 100% !important;
}
.slide--expand div {
  visibility: visible;
  transition-delay: 0s;
}
.stop-scroll {
  overflow: hidden !important;
}
.fit-content {
  width: fit-content !important;
}
.frame {
  width: 100%;
  height: fit-content;
  overflow: auto;
}
.frame__border {
  margin: 0.5rem 0;
  padding: 0 3px;
  border: 1px solid #C1C1C1;
  border-radius: 5px;
}
.border-none {
  border: none !important;
}
.limit-text-three-dots {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 0.5rem;
}
.nowrap {
  white-space: nowrap;
}
.overflow {
  white-space: nowrap;
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: thin;
  scroll-behavior: auto;
}
@media print {
  .overflow {
    white-space: unset !important;
    overflow-x: unset;
    overflow-y: unset;
  }
}
.overflow::-webkit-scrollbar {
  width: 6px;
  height: 8px;
}
.overflow::-webkit-scrollbar-thumb:horizontal {
  padding: 0.5rem;
  -webkit-box-shadow: inset 0 0 4px #3E3E3E;
  background: #c1c1c1;
}
.overflow::-webkit-scrollbar-track:horizontal {
  padding: 0.5rem;
  -webkit-box-shadow: inset 0 0 4px #3E3E3E;
}
.dragged-selected div {
  background-color: #D9F2FC !important;
}
.icon-16 {
  font-size: 1.6rem;
}
.drop-zone--ok div {
  background-color: #F5FDF2 !important;
}
.drop-zone--false div {
  background-color: #FFF2F7 !important;
}
.drop-zone--false div:hover {
  cursor: no-drop;
}
.drop-zone--false button:hover {
  cursor: no-drop;
}
.cursor-pointer {
  cursor: pointer;
}
.is-number {
  direction: ltr !important;
  display: inline-block;
}
input.only-numbers {
  direction: ltr !important;
  text-align: right;
}
input[type=number] {
  direction: ltr;
  text-align: right;
}
.items-table-td {
  padding: 8px 8px 16px 8px;
  white-space: nowrap;
}
.ndfHFb-c4YZDc-Wrql6b {
  display: none !important;
}
.highlight-background {
  animation: highlightBackground 2000ms ease-out;
}
.vertical-divider {
  border-left: 2px solid black;
}
.pro-sidebar {
  background: #1d1d1d;
  color: #adadad;
  height: 100vh;
  text-align: left;
  transition: width, left, right, 0.3s;
  position: fixed;
  z-index: 111;
  width: 225px;
  min-width: 225px;
}
.pro-sidebar--admin {
  background: #0e0d0d;
}
@media screen and (max-width: 600px) {
  .pro-sidebar {
    height: calc(100vh - 6rem);
  }
}
@media only screen and (max-width: 1367px) {
  .pro-sidebar {
    width: 200px;
    min-width: 200px;
  }
}
.pro-sidebar > img.sidebar-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  opacity: 0.3;
  left: 0;
  top: 0;
}
.pro-sidebar > .pro-sidebar-inner {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 110;
  /* Hide scrollbar for Chrome, Safari and Opera */
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.pro-sidebar > .pro-sidebar-inner::-webkit-scrollbar {
  display: none;
}
.pro-sidebar > .pro-sidebar-inner .pro-sidebar-header {
  height: 80px;
  line-height: 60px;
}
.pro-sidebar > .pro-sidebar-inner .pro-sidebar-header__logo {
  position: relative;
  top: 35%;
  margin: auto;
  width: 130px;
  height: 43px;
  background-image: url(../../../../assets/restigo_logo_white.svg);
  background-size: cover;
  background-position: center;
}
.pro-sidebar > .pro-sidebar-inner .pro-sidebar-content {
  flex-grow: 1;
}
.pro-sidebar > .pro-sidebar-inner .pro-sidebar-footer {
  height: 60px;
  line-height: 60px;
  border-top: 1px solid rgba(173, 173, 173, 0.2);
}
@media screen and (max-width: 600px) {
  .pro-sidebar > .pro-sidebar-inner .pro-sidebar-footer {
    height: 4rem;
  }
}
.pro-sidebar > .pro-sidebar-inner ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.pro-sidebar .overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 109;
  display: none;
}
.pro-sidebar.collapsed {
  width: 80px;
  min-width: 80px;
}
@media only screen and (max-width: 1367px) {
  .pro-sidebar.collapsed {
    width: 70px;
    min-width: 70px;
  }
}
.pro-sidebar.collapsed .pro-sidebar-header__logo {
  width: 30px;
  height: 26px;
  background-image: url(../../../../assets/restigo_logo.svg);
  background-size: cover;
  background-position: center;
}
.pro-sidebar.rtl {
  text-align: right;
  direction: rtl;
}
@media (max-width: 480px) {
  .pro-sidebar.xs {
    position: fixed;
    left: -225px;
  }
  .pro-sidebar.xs.collapsed {
    left: -80px;
  }
  .pro-sidebar.xs.toggled {
    left: 0;
  }
  .pro-sidebar.xs.toggled .overlay {
    display: block;
  }
  .pro-sidebar.xs.rtl {
    left: auto;
    right: -225px;
  }
  .pro-sidebar.xs.rtl.collapsed {
    left: auto;
    right: -80px;
  }
  .pro-sidebar.xs.rtl.toggled {
    left: auto;
    right: 0;
  }
}
@media only screen and (max-width: 480px) and (max-width: 1367px) {
  .pro-sidebar.xs {
    left: -200px;
  }
  .pro-sidebar.xs.collapsed {
    left: -70px;
  }
  .pro-sidebar.xs.rtl {
    right: -200px;
  }
  .pro-sidebar.xs.rtl.collapsed {
    right: -70px;
  }
}
@media (max-width: 576px) {
  .pro-sidebar.sm {
    position: fixed;
    left: -225px;
  }
  .pro-sidebar.sm.collapsed {
    left: -80px;
  }
  .pro-sidebar.sm.toggled {
    left: 0;
  }
  .pro-sidebar.sm.toggled .overlay {
    display: block;
  }
  .pro-sidebar.sm.rtl {
    left: auto;
    right: -225px;
  }
  .pro-sidebar.sm.rtl.collapsed {
    left: auto;
    right: -80px;
  }
  .pro-sidebar.sm.rtl.toggled {
    left: auto;
    right: 0;
  }
}
@media only screen and (max-width: 576px) and (max-width: 1367px) {
  .pro-sidebar.sm {
    left: -200px;
  }
  .pro-sidebar.sm.collapsed {
    left: -70px;
  }
  .pro-sidebar.sm.rtl {
    right: -200px;
  }
  .pro-sidebar.sm.rtl.collapsed {
    right: -70px;
  }
}
@media (max-width: 768px) {
  .pro-sidebar.md {
    position: fixed;
    left: -225px;
  }
  .pro-sidebar.md.collapsed {
    left: -80px;
  }
  .pro-sidebar.md.toggled {
    left: 0;
  }
  .pro-sidebar.md.toggled .overlay {
    display: block;
  }
  .pro-sidebar.md.rtl {
    left: auto;
    right: -225px;
  }
  .pro-sidebar.md.rtl.collapsed {
    left: auto;
    right: -80px;
  }
  .pro-sidebar.md.rtl.toggled {
    left: auto;
    right: 0;
  }
}
@media only screen and (max-width: 768px) and (max-width: 1367px) {
  .pro-sidebar.md {
    left: -200px;
  }
  .pro-sidebar.md.collapsed {
    left: -70px;
  }
  .pro-sidebar.md.rtl {
    right: -200px;
  }
  .pro-sidebar.md.rtl.collapsed {
    right: -70px;
  }
}
@media (max-width: 992px) {
  .pro-sidebar.lg {
    position: fixed;
    left: -225px;
  }
  .pro-sidebar.lg.collapsed {
    left: -80px;
  }
  .pro-sidebar.lg.toggled {
    left: 0;
  }
  .pro-sidebar.lg.toggled .overlay {
    display: block;
  }
  .pro-sidebar.lg.rtl {
    left: auto;
    right: -225px;
  }
  .pro-sidebar.lg.rtl.collapsed {
    left: auto;
    right: -80px;
  }
  .pro-sidebar.lg.rtl.toggled {
    left: auto;
    right: 0;
  }
}
@media only screen and (max-width: 992px) and (max-width: 1367px) {
  .pro-sidebar.lg {
    left: -200px;
  }
  .pro-sidebar.lg.collapsed {
    left: -70px;
  }
  .pro-sidebar.lg.rtl {
    right: -200px;
  }
  .pro-sidebar.lg.rtl.collapsed {
    right: -70px;
  }
}
@media (max-width: 1200px) {
  .pro-sidebar.xl {
    position: fixed;
    left: -225px;
  }
  .pro-sidebar.xl.collapsed {
    left: -80px;
  }
  .pro-sidebar.xl.toggled {
    left: 0;
  }
  .pro-sidebar.xl.toggled .overlay {
    display: block;
  }
  .pro-sidebar.xl.rtl {
    left: auto;
    right: -225px;
  }
  .pro-sidebar.xl.rtl.collapsed {
    left: auto;
    right: -80px;
  }
  .pro-sidebar.xl.rtl.toggled {
    left: auto;
    right: 0;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1367px) {
  .pro-sidebar.xl {
    left: -200px;
  }
  .pro-sidebar.xl.collapsed {
    left: -70px;
  }
  .pro-sidebar.xl.rtl {
    right: -200px;
  }
  .pro-sidebar.xl.rtl.collapsed {
    right: -70px;
  }
}
.pro-sidebar .pro-menu .pro-menu-item.pro-sub-menu .pro-inner-list-item .pro-inner-item:before {
  content: "";
  display: inline-block;
  width: 4px;
  min-width: 4px;
  height: 4px;
  border: 1px solid #2b2b2b;
  border-radius: 50%;
  margin-right: 15px;
  position: relative;
  box-shadow: 1px 0px 0px #adadad, 0px -1px 0px #adadad, 0px 1px 0px #adadad, -1px 0px 0px #adadad;
}
.pro-sidebar .pro-menu .pro-menu-item > .pro-inner-item > .pro-item-content {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pro-sidebar .pro-menu {
  padding-top: 10px;
  padding-bottom: 10px;
}
.pro-sidebar .pro-menu > ul > .pro-sub-menu > .pro-inner-list-item {
  position: relative;
  background-color: #2b2b2b;
}
.pro-sidebar .pro-menu > ul > .pro-sub-menu > .pro-inner-list-item > div > ul {
  padding-top: 15px;
  padding-bottom: 15px;
}
.pro-sidebar .pro-menu a {
  text-decoration: none;
  color: #adadad;
}
.pro-sidebar .pro-menu a:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: transparent;
}
.pro-sidebar .pro-menu a:hover {
  color: #d8d8d8;
}
.pro-sidebar .pro-menu .pro-menu-item {
  font-size: 1.4rem;
}
@media only screen and (max-width: 1367px) {
  .pro-sidebar .pro-menu .pro-menu-item {
    font-size: 1.2rem;
  }
}
.pro-sidebar .pro-menu .pro-menu-item.active {
  color: #fff;
  font-weight: 700;
}
.pro-sidebar .pro-menu .pro-menu-item .suffix-wrapper {
  opacity: 1;
  transition: opacity 0.2s;
}
.pro-sidebar .pro-menu .pro-menu-item .prefix-wrapper {
  display: flex;
  margin-right: 5px;
  opacity: 1;
  transition: opacity 0.2s;
}
.pro-sidebar .pro-menu .pro-menu-item > .pro-inner-item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 35px 8px 20px;
  cursor: pointer;
  width: 35px;
  min-width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  display: inline-block;
}
.pro-sidebar .pro-menu .pro-menu-item > .pro-inner-item:focus {
  outline: none;
  color: #d8d8d8;
}
.pro-sidebar .pro-menu .pro-menu-item > .pro-inner-item > .pro-icon-wrapper {
  margin-right: 10px;
  font-size: 1.4rem;
}
@media only screen and (max-width: 1367px) {
  .pro-sidebar .pro-menu .pro-menu-item > .pro-inner-item > .pro-icon-wrapper {
    font-size: 1.2rem;
  }
}
.pro-sidebar .pro-menu .pro-menu-item > .pro-inner-item > .pro-icon-wrapper .pro-icon {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.pro-sidebar .pro-menu .pro-menu-item > .pro-inner-item > .pro-item-content {
  flex-grow: 1;
  flex-shrink: 1;
}
.pro-sidebar .pro-menu .pro-menu-item > .pro-inner-item:hover {
  color: #d8d8d8;
}
.pro-sidebar .pro-menu .pro-menu-item > .pro-inner-item:hover .pro-icon-wrapper .pro-icon {
  animation: swing ease-in-out 0.5s 1 alternate;
}
.pro-sidebar .pro-menu .pro-menu-item.pro-sub-menu > .pro-inner-item:before {
  background: #adadad;
}
.pro-sidebar .pro-menu .pro-menu-item.pro-sub-menu > .pro-inner-item > .pro-arrow-wrapper {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.pro-sidebar .pro-menu .pro-menu-item.pro-sub-menu > .pro-inner-item > .pro-arrow-wrapper .pro-arrow {
  display: inline-block;
  border-style: solid;
  border-color: #adadad;
  border-width: 0 2px 2px 0;
  padding: 2.5px;
  vertical-align: middle;
  transition: transform 0.3s;
  transform: rotate(-45deg);
}
.pro-sidebar .pro-menu .pro-menu-item.pro-sub-menu.open > .pro-inner-item:before {
  background: transparent !important;
}
.pro-sidebar .pro-menu .pro-menu-item.pro-sub-menu.open > .pro-inner-item > .pro-arrow-wrapper .pro-arrow {
  transform: rotate(45deg);
}
.pro-sidebar .pro-menu .pro-menu-item.pro-sub-menu .pro-inner-list-item {
  padding-left: 20px;
}
.pro-sidebar .pro-menu .pro-menu-item.pro-sub-menu .pro-inner-list-item .pro-inner-item {
  padding: 8px 30px 8px 15px;
}
.pro-sidebar .pro-menu .pro-menu-item.pro-sub-menu .pro-inner-list-item .pro-inner-item > .pro-icon-wrapper {
  display: none;
}
.pro-sidebar .pro-menu .pro-menu-item.pro-sub-menu .pro-inner-list-item .pro-inner-item .pro-arrow-wrapper {
  display: none;
}
.pro-sidebar .pro-menu.shaped .pro-menu-item > .pro-inner-item > .pro-icon-wrapper {
  background-color: #2b2b2b;
}
.pro-sidebar .pro-menu.square .pro-menu-item > .pro-inner-item > .pro-icon-wrapper {
  border-radius: 0;
}
.pro-sidebar .pro-menu.round .pro-menu-item > .pro-inner-item > .pro-icon-wrapper {
  border-radius: 4px;
}
.pro-sidebar .pro-menu.circle .pro-menu-item > .pro-inner-item > .pro-icon-wrapper {
  border-radius: 50%;
}
.pro-sidebar.collapsed .pro-menu > ul > .pro-menu-item {
  position: relative;
}
.pro-sidebar.collapsed .pro-menu > ul > .pro-menu-item > .pro-inner-item > .suffix-wrapper,
.pro-sidebar.collapsed .pro-menu > ul > .pro-menu-item > .pro-inner-item > .prefix-wrapper {
  opacity: 0;
}
.pro-sidebar.collapsed .pro-menu > ul > .pro-menu-item > .pro-inner-list-item {
  background-color: #2b2b2b;
  z-index: 111;
}
.pro-sidebar.collapsed .pro-menu > ul > .pro-menu-item::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  cursor: pointer;
}
.pro-sidebar.collapsed .pro-menu > ul > .pro-menu-item.pro-sub-menu {
  position: relative;
}
.pro-sidebar.collapsed .pro-menu > ul > .pro-menu-item.pro-sub-menu > .pro-inner-item {
  pointer-events: none;
}
.pro-sidebar.collapsed .pro-menu > ul > .pro-menu-item.pro-sub-menu > .pro-inner-item > .pro-arrow-wrapper {
  display: none;
}
.pro-sidebar.collapsed .pro-menu > ul > .pro-menu-item.pro-sub-menu > .pro-inner-list-item {
  height: auto !important;
  position: fixed;
  visibility: hidden;
  min-width: 220px;
  max-width: 270px;
  background-color: transparent;
  max-height: 100%;
  padding-left: 3px;
}
.pro-sidebar.collapsed .pro-menu > ul > .pro-menu-item.pro-sub-menu > .pro-inner-list-item.has-arrow {
  padding-left: 10px;
}
.pro-sidebar.collapsed .pro-menu > ul > .pro-menu-item.pro-sub-menu > .pro-inner-list-item > .popper-inner {
  max-height: 100vh;
  overflow-y: auto;
  background-color: #2b2b2b;
  padding-left: 20px;
  border-radius: 4px;
}
.pro-sidebar.collapsed .pro-menu > ul > .pro-menu-item.pro-sub-menu:hover > .pro-inner-list-item {
  transition: visibility, transform 0.3s;
  visibility: visible;
}
.pro-sidebar.collapsed .pro-menu > ul > .pro-menu-item.pro-sub-menu:hover .pro-icon-wrapper .pro-icon {
  animation: swing ease-in-out 0.5s 1 alternate;
}
.pro-sidebar.collapsed .pro-menu > ul > .pro-menu-item.pro-sub-menu .pro-inner-list-item .pro-sub-menu-item,
.pro-sidebar.collapsed .pro-menu > ul > .pro-menu-item.pro-sub-menu .pro-inner-list-item .pro-inner-item {
  padding: 8px 30px 8px 5px;
}
.pro-sidebar.rtl .pro-menu .pro-menu-item .prefix-wrapper {
  margin-right: 0;
  margin-left: 5px;
}
.pro-sidebar.rtl .pro-menu .pro-menu-item > .pro-inner-item {
  padding: 8px 20px 8px 35px;
}
@media only screen and (max-width: 1367px) {
  .pro-sidebar.rtl .pro-menu .pro-menu-item > .pro-inner-item {
    padding: 8px 15px 8px 35px;
  }
}
.pro-sidebar.rtl .pro-menu .pro-menu-item > .pro-inner-item > .pro-icon-wrapper {
  margin-right: 0;
  margin-left: 10px;
}
.pro-sidebar.rtl .pro-menu .pro-menu-item.pro-sub-menu > .pro-inner-item > .pro-arrow-wrapper {
  right: auto;
  left: 20px;
}
.pro-sidebar.rtl .pro-menu .pro-menu-item.pro-sub-menu > .pro-inner-item > .pro-arrow-wrapper .pro-arrow {
  transform: rotate(135deg);
}
.pro-sidebar.rtl .pro-menu .pro-menu-item.pro-sub-menu.open > .pro-inner-item > .pro-arrow-wrapper .pro-arrow {
  transform: rotate(45deg);
}
.pro-sidebar.rtl .pro-menu .pro-menu-item.pro-sub-menu .pro-inner-list-item {
  padding-left: 0;
  padding-right: 20px;
}
.pro-sidebar.rtl .pro-menu .pro-menu-item.pro-sub-menu .pro-inner-list-item .pro-inner-item {
  padding: 8px 15px 8px 30px;
}
.pro-sidebar.rtl .pro-menu .pro-menu-item.pro-sub-menu .pro-inner-list-item .pro-inner-item:before {
  margin-right: 0;
  margin-left: 15px;
}
.pro-sidebar.rtl.collapsed .pro-menu > ul > .pro-menu-item.pro-sub-menu > .pro-inner-list-item {
  padding-left: 0;
  padding-right: 3px;
}
.pro-sidebar.rtl.collapsed .pro-menu > ul > .pro-menu-item.pro-sub-menu > .pro-inner-list-item.has-arrow {
  padding-right: 10px;
}
.pro-sidebar.rtl.collapsed .pro-menu > ul > .pro-menu-item.pro-sub-menu > .pro-inner-list-item > .popper-inner {
  padding-left: 0;
  padding-right: 20px;
}
.pro-sidebar.rtl.collapsed .pro-menu > ul > .pro-menu-item.pro-sub-menu .pro-inner-list-item .pro-sub-menu-item,
.pro-sidebar.rtl.collapsed .pro-menu > ul > .pro-menu-item.pro-sub-menu .pro-inner-list-item .pro-inner-item {
  padding: 8px 5px 8px 30px;
}
.popper-arrow {
  position: absolute;
  z-index: -1;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}
.popper-element[data-popper-placement^=left] > .popper-arrow {
  right: 0;
  border-right: 7px solid #2b2b2b;
}
.popper-element[data-popper-placement^=right] > .popper-arrow {
  left: 0;
  border-left: 7px solid #2b2b2b;
}
.react-slidedown {
  height: 0;
  transition-property: none;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
}
.react-slidedown.transitioning {
  overflow-y: hidden;
}
.react-slidedown.closed {
  display: none;
}
.btn, .btn:visited, .btn:link {
  background-color: #fff;
  padding: 1rem 3rem;
  display: inline-block;
  text-decoration: none;
  transition: all 0.2s;
  position: relative;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  outline: none;
  margin: 0 0.4rem;
  color: #585858;
  border: none;
  border-radius: 5px;
}
.btn:disabled {
  opacity: 0.6;
}
.btn:disabled:active {
  transform: unset;
}
.btn:hover {
  cursor: pointer;
}
.btn:active {
  transform: translateY(2px);
}
.btn--no-active-effect:active {
  transform: translateY(-50%);
}
.btn--normal {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  margin: 0 4px;
  padding: 0 1rem;
  background-color: #F7F7F7;
  height: 4rem;
}
.btn--normal div {
  padding: 0 1rem;
}
.btn--normal:hover {
  background-color: #EAEAEA;
}
.btn--xv {
  margin: 0;
  padding: 0.3rem 0.8rem;
  margin-right: 0.3rem;
  background-color: #F2F0F0;
  border: none;
  font-size: 1.2rem;
  color: #838383;
  box-shadow: 0px 5px 16px 0px rgba(0, 0, 0, 0.2);
}
.btn--xv__wrapper {
  visibility: hidden;
}
.btn--xv__x:hover {
  color: #db1e1e;
}
.btn--xv__v:hover {
  color: #47cc00;
}
.btn--xv__a:hover {
  color: #00a2ea;
}
.btn--hoverOnlyText:hover {
  background: none !important;
  background-color: transparent !important;
}
.btn--none {
  border: none;
  background-color: transparent;
  height: 100%;
  width: 100%;
  outline: none;
  padding: 0.7rem;
  margin: 0;
}
.btn--none:disabled {
  cursor: default;
}
.btn--none svg {
  margin: auto;
}
.btn--none:active {
  transform: none;
}
.btn--outline {
  border: 1px solid;
}
.btn--outline__confirm {
  border-color: #47cc00;
  color: #47cc00;
}
.btn--outline__submit {
  border-color: #00a2ea;
  color: #00a2ea;
}
.btn--outline__abort {
  border-color: #db1e1e;
  color: #db1e1e;
}
.btn--outline__warning {
  border-color: #FFCE00;
  color: #FFCE00;
}
.btn--outline__danger {
  border-color: #db1e1e;
  color: #db1e1e;
}
.btn--hover__confirm:hover {
  color: #47cc00 !important;
}
.btn--hover__submit:hover {
  color: #00a2ea !important;
}
.btn--hover__abort:hover {
  color: #db1e1e !important;
}
.btn--hover__warning:hover {
  color: #FFCE00 !important;
}
.btn--icon {
  padding: 0;
  border-radius: 5px;
  width: 4rem;
  height: 4rem;
  background-color: #F7F7F7;
  font-size: 1.4rem;
}
.btn--icon:hover {
  background-color: #EAEAEA !important;
}
.btn--active {
  transform: scale(0.97);
  background-color: rgba(0, 164, 234, 0.2745098039);
  top: 1px;
  box-shadow: 1px 1px 8px 1px rgba(0, 0, 0, 0.24);
}
.btn--active:hover {
  background-color: rgba(0, 164, 234, 0.5058823529) !important;
}
.btn--filter {
  width: 4rem;
  font-size: 1.4rem;
  padding: 0;
  height: 4rem;
  border-radius: 5px;
  border: 2px solid #F7F7F7;
  background-color: #F7F7F7;
  transition: width 0.35s ease-in-out, border 0.35s ease-in-out;
}
.btn--filter:hover {
  background-color: #EAEAEA;
}
.btn--filter span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.7s ease-in;
}
.btn--filter__expand {
  width: 13rem;
  border: 2px solid #00b1ff;
  color: #00b1ff;
}
.btn--filter__expand span {
  opacity: 1;
}
.btn--dropdown {
  padding: 0.5rem 0;
  margin: auto;
  display: block;
  background-color: transparent;
}
.btn--dropdown:hover {
  color: #0090d0;
}
.btn--header {
  background-color: transparent;
  border-color: #fff;
  border-style: solid;
  border-radius: 0.7rem;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
}
.btn--header:hover {
  border-color: #15db95;
  color: #15db95;
}
.btn--animated {
  animation: moveInBottom 0.5s ease-out 1s backwards;
}
.btn--submit-login {
  background-color: #00a2ea;
  width: 100%;
  border-style: none;
  border-radius: 0.7rem;
  color: #fff;
  margin: 0;
  margin-bottom: 1rem;
}
.btn--submit-login:hover {
  background-color: #16b7ff;
}
.btn--hyperlink {
  text-decoration: underline;
  color: #00a2ea;
  padding: 0;
  border: none;
  background: none;
}
.btn--hyperlink__red {
  color: #c40053;
  font-size: 1.4rem;
}
.btn--hyperlink__abort {
  color: #db1e1e;
}
.btn--hyperlink__black {
  color: black;
}
.btn--round {
  width: 4rem;
  height: 4rem;
  padding: 0;
  border-radius: 25px;
}
.btn--neutral {
  color: #fff;
  background-color: #838383;
}
.btn--neutral:hover {
  background-color: #747474;
}
.btn--darkgrey {
  color: #fff;
  background-color: #2F2F2F;
}
.btn--darkgrey:hover {
  background-color: #202020;
}
.btn--skyblue {
  color: #fff;
  background-color: #0B73A1;
}
.btn--skyblue:hover {
  background-color: #0a6891;
}
.btn--abort {
  color: #fff;
  background-color: #db1e1e;
}
.btn--abort:hover {
  background-color: rgb(204, 8, 8);
}
.btn--disabled {
  color: #838383;
  background-color: #EAEAEA;
}
.btn--disabled-pale {
  color: #fff;
  background-color: #77d4fc;
}
.btn--submit {
  color: #fff;
  background-color: #00a2ea;
}
.btn--submit:hover {
  background-color: #0090d0;
}
.btn--confirm {
  color: #fff;
  background-color: #47cc00;
}
.btn--white {
  border: 2px solid #e2e2e2 !important;
  border-radius: 0.7rem !important;
  color: #585858 !important;
  width: 100% !important;
  padding: 0.8rem 1rem !important;
  margin: 0 !important;
}
.btn--white:hover {
  color: #00a2ea !important;
  border-color: #00a2ea !important;
}
.btn--menu {
  padding: 0;
  position: relative;
  top: 1rem;
  right: 2.4rem;
}
.btn--edit-mode__white {
  color: #00a2ea;
  background-color: #fff;
  border: 1px solid #00a2ea;
}
.btn--edit-mode__blue {
  background-color: #00a2ea;
  color: #fff;
}
.btn--edit {
  padding: 0.8rem 1.2rem;
  font-size: 1.2rem;
  background-color: #F7F7F7;
  color: #838383;
  border-color: #838383;
  margin: 1px;
}
.btn--edit--trash {
  color: #c40053;
  border-color: #c40053;
}
.group-btn {
  direction: rtl;
  padding: 1rem 0;
}
.group-btn--option {
  outline: none;
  border: none;
  cursor: pointer;
  padding: 0.8rem 0.8rem;
  margin: 0;
  border-radius: 0;
  background-color: #F7F7F7;
}
.group-btn--option__white {
  background-color: #fff;
}
.group-btn--option__sub {
  background-color: #fff;
  color: red;
}
.group-btn--option:hover {
  background-color: #EAEAEA;
}
.group-btn--option__number:hover {
  background-color: #585858;
}
.group-btn--option:only-child {
  border-radius: 0.5rem;
}
.group-btn--option--selected {
  color: #fff;
  background-color: #838383;
}
.group-btn--option--selected:hover {
  background-color: #585858;
}
.group-btn--option--selected--sub {
  color: white;
  background-color: #47cc00;
}
.group-btn--option--selected--sub:hover {
  background-color: #00c851;
}
.buttonGroup {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  scroll-behavior: smooth !important;
  padding: 2rem 0;
  overflow: auto;
  white-space: nowrap;
  width: 100%;
}
.buttonGroup::-webkit-scrollbar {
  display: none;
}
button {
  text-transform: none !important;
}
.customAuto.MuiAutocomplete-root div div {
  background-color: #f7f7f7;
}
.customAuto .MuiInputBase-root {
  width: fit-content !important;
}
.customAuto .MuiInputBase-root:hover {
  width: 100% !important;
}
.customAuto .Mui-focused {
  width: 100% !important;
}
.customAuto .MuiAutocomplete-root label {
  font-weight: bolder;
  color: black;
}
.customAuto .MuiAutocomplete-endAdornment {
  margin-top: 5px !important;
}
.customAuto .MuiInputBase-input {
  padding: 0px !important;
  min-width: 0px !important;
}
.clearSumBox button,
.clearSumBox table {
  box-shadow: unset;
  border: none;
  border-bottom: 1px solid black;
  width: 100%;
}
.clearSumBox table * {
  box-shadow: unset;
  border: none;
}
.dropdown {
  position: relative;
  display: none;
  width: 100%;
  height: 100%;
  text-align: center;
  border-radius: 5px;
}
.dropdown__icon {
  padding: 0 0.8rem;
  color: #00b1ff;
}
.dropdown--header {
  color: #747474;
  font-size: 1.4rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  background-color: #F7F7F7;
}
.dropdown--content {
  background-color: #fff;
  display: block;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.15s ease-in-out;
  position: absolute;
  width: 100%;
  height: auto;
  min-width: unset;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 100;
  top: 4.2rem;
  padding: 0.5rem;
  margin: 0;
}
.dropdown--content__show {
  visibility: visible;
  opacity: 1;
}
.dropdown__show {
  display: inline-block;
}
.dropdown-icon {
  display: inline-block;
  height: 100%;
  padding: 0 2rem;
}
.dropdown-icon__icon {
  position: relative;
  top: 2rem;
}
.dropdown-icon__content {
  display: none;
  position: absolute;
  height: auto;
  background-color: #f9f9f9;
  min-width: 16rem;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 12px 16px;
  z-index: 100;
  left: 1rem;
  top: 5.8rem;
}
.dropdown-icon__content__show {
  display: block;
}
.dropdown-select {
  width: 100%;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  max-width: 24rem;
  min-width: 15rem;
  border-radius: 5px;
  color: #747474;
  background-color: #F7F7F7;
  transition: width ease-in-out 0.3s;
  position: relative;
  /* The container */
  /* Create a custom checkbox */
}
@media only screen and (max-width: 600px) {
  .dropdown-select {
    max-width: unset;
  }
}
.dropdown-select__collapsed {
  width: 39px;
  min-width: unset;
}
.dropdown-select__collapsed i {
  padding: 0;
  padding-right: 4px;
}
.dropdown-select__icon {
  padding: 0 0.8rem;
  color: #00b1ff;
}
.dropdown-select--header {
  padding: 0.8rem 1rem;
  font-weight: 500;
  cursor: pointer;
}
.dropdown-select--content {
  position: absolute;
  display: none;
  width: 100%;
  white-space: normal;
  max-height: 20rem;
  border: 1px solid #e2e2e2;
  border-radius: 0 0 5px 5px;
  border-top: none;
  background-color: #fff;
  overflow-y: auto;
  z-index: 4;
  box-shadow: 0px 5px 16px 0px rgba(0, 0, 0, 0.2);
}
.dropdown-select--content::-webkit-scrollbar {
  width: 6px;
  height: 10px;
}
.dropdown-select--content::-webkit-scrollbar-thumb:vertical {
  padding: 0.5rem;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 5px #F7F7F7;
  background: #C1C1C1;
}
.dropdown-select--content::-webkit-scrollbar-track:vertical {
  padding: 0.5rem;
  -webkit-box-shadow: inset 0 0 5px #F7F7F7;
  border-radius: 10px;
}
.dropdown-select--content__show {
  display: block;
}
.dropdown-select--search {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #ccc;
  border-right: none;
  border-left: none;
  width: 100%;
  font-size: 1.2rem;
  padding: 1rem 3rem 1rem 1rem;
  display: block;
  outline-color: #eeeeee;
  transition: outline 0.2s ease-in-out;
}
.dropdown-select--option {
  cursor: pointer;
  padding: 0.6rem 0;
}
.dropdown-select--option__hover:hover {
  background-color: #EAEAEA;
}
.dropdown-select--option__search {
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 4;
}
.dropdown-select--option__search i {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
.dropdown-select--option__selected {
  color: #00a2ea;
  background-color: #EAEAEA;
}
.dropdown-select--checkbox {
  display: flex;
  position: relative;
  padding: 0 0 0.5rem 0.5rem;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-bottom: 1px solid #EAEAEA;
  margin-top: 1rem;
  /* When the checkbox is checked, add a blue background */
}
.dropdown-select--checkbox__small {
  font-size: 1.2rem;
  border: none;
}
.dropdown-select--checkbox input {
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.dropdown-select--checkbox input:checked ~ .dropdown-select--checkmark {
  background-color: #47cc00;
}
.dropdown-select--checkbox input:checked ~ .dropdown-select--checkmark:after {
  display: block;
}
.dropdown-select--checkbox:hover input ~ .dropdown-select--checkmark {
  background-color: #ccc;
}
.dropdown-select--checkbox:hover input:checked ~ .dropdown-select--checkmark {
  background-color: #b8e99e;
}
.dropdown-select--checkbox .dropdown-select--checkmark:after {
  width: 5px;
  height: 10px;
  position: absolute;
  top: 4px;
  right: 13px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.dropdown-select--checkmark {
  display: table;
  height: 20px;
  width: 20px;
  margin-inline-end: 0.5rem;
  background-color: #eee;
  /* Create the checkmark/indicator (hidden when not checked) */
}
.dropdown-select--checkmark__dark {
  background-color: #EAEAEA;
}
.dropdown-select--checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.ios-segmented-control {
  --background: rgba(239, 239, 240, 1);
  background: var(--background);
  border-radius: 9px;
  margin: 0;
  padding: 2px;
  border: none;
  outline: none;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}
.ios-segmented-control__fixed {
  position: fixed;
  bottom: 1.5rem;
  width: 92%;
  left: 50%;
  transform: translateX(-50%);
}
.ios-segmented-control .option {
  position: relative;
  cursor: pointer;
}
.ios-segmented-control .option:hover input:not(:checked):not(:disabled) + label span,
.ios-segmented-control .option:active input:not(:checked) + label span,
.ios-segmented-control .option:focus input:not(:checked) + label span {
  opacity: 0.2;
}
.ios-segmented-control .option:active input:not(:checked) + label span {
  transform: scale(0.95);
}
.ios-segmented-control .option label {
  position: relative;
  display: block;
  text-align: center;
  padding: 3px 3vmin;
  background: rgba(255, 255, 255, 0);
  font-weight: 600;
  direction: rtl;
  color: #676769;
  font-size: 1.2rem;
}
.ios-segmented-control .option label::before,
.ios-segmented-control .option label::after {
  content: "";
  width: 1px;
  background: #f5f5f5;
  position: absolute;
  top: 14%;
  bottom: 14%;
  border-radius: 10px;
  will-change: background;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.ios-segmented-control .option label::before {
  left: 0;
  transform: translateX(-0.5px);
}
.ios-segmented-control .option label::after {
  right: 0;
  transform: translateX(0.5px);
}
.ios-segmented-control .option:first-of-type {
  grid-column: 1;
  grid-row: 1;
  box-shadow: none;
}
.ios-segmented-control .option:first-of-type label::before {
  opacity: 0;
}
.ios-segmented-control .option:last-of-type label::after {
  opacity: 0;
}
.ios-segmented-control .option input:disabled + label span {
  color: #bdbdbd;
}
.ios-segmented-control .option input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  opacity: 0;
}
.ios-segmented-control {
  height: 4.1rem;
}
.ios-segmented-control .selection {
  background: rgb(255, 255, 255);
  border: 0.5px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.12), 0 3px 1px 0 rgba(0, 0, 0, 0.04);
  border-radius: 7px;
  grid-column: 1;
  grid-row: 1;
  z-index: 0;
  will-change: transform;
  -webkit-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
}
.ios-segmented-control .option label span {
  display: block;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  will-change: transform;
}
.ios-segmented-control .option input:checked + label::before,
.ios-segmented-control .option input:checked + label::after {
  background: var(--background);
  z-index: 1;
}
.ios-segmented-control .option input:checked + label {
  cursor: default;
}
.option label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.model {
  width: 100%;
  direction: rtl;
  font-size: 1.2rem;
  z-index: 100;
  background-color: white;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.16);
}
.model--header {
  width: 100%;
  position: relative;
  line-height: 1.2;
  margin: auto;
  padding-top: 0.8rem;
  text-align: center;
  height: 4.6rem;
}
.model--header h3 {
  padding-top: 0.5rem;
}
.model--footer {
  width: 100%;
  padding: 1.5rem;
  line-height: 1;
  text-align: center;
}
.model--footer__btn {
  text-align: left;
}
.model--btn {
  width: 100%;
  margin-bottom: 1rem;
  padding: 1rem 0;
  font-size: 1.2rem;
  background-color: #F7F7F7;
}
.model--btn__trash-temp {
  color: #c40053;
  border-color: #c40053;
}
.model--btn__return {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.model--btn__trash {
  position: absolute;
  top: 0.3rem;
  right: 1rem;
  font-size: 1.3rem;
}
.model--btn__edit {
  position: absolute;
  top: 0.3rem;
  left: 1rem;
  font-size: 1.3rem;
}
.model--btn__transfer {
  position: absolute;
  top: 0.6rem;
  left: 2rem;
  font-size: 1.3rem;
}
.model--btn__transfer:hover {
  background-color: unset;
}
.model--btn__bonus {
  position: absolute;
  top: 0.6rem;
  right: 2rem;
  font-size: 1.3rem;
}
.model--btn__bonus:hover {
  background-color: unset;
}
.model--tab {
  display: flex;
  justify-content: flex-start;
  text-align: right;
  width: 100%;
  height: 3.6rem;
  background-color: #F7F7F7;
  border: none;
  border-radius: 5px;
  padding: 0 !important;
}
.model--tab:not(:last-child) {
  margin-left: 1rem;
}
.model--tab__color {
  width: 6%;
  height: 100%;
  border-radius: 0 5px 5px 0;
}
.model--tab__counter {
  width: 24%;
  height: 100%;
  border-radius: 5px 0 0 5px;
}
.model--tab__name {
  width: 70%;
  height: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  text-overflow: clip;
  line-height: 1;
  font-size: 1.2rem;
  background-color: #F7F7F7;
}
.model--tab__red {
  background-color: #FF0062;
}
.model--tab__blue {
  background-color: #00b1ff;
}
.model--tab__gray {
  background-color: #EAEAEA;
}
.model--tab__yellow {
  background-color: #ffcc00;
}
.model--tab__black {
  background-color: black;
}
.model--tab__green {
  background-color: #47CC00;
}
.model--tab__icon {
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  left: 0.4rem;
  padding: 0.1rem 0.8rem;
  color: #585858;
  background-color: #EAEAEA;
  border-radius: 10px;
}
.model--tab p {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
  display: inline-block;
}
.model--content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  margin: auto;
  padding-bottom: 0.5rem;
}
.model--content label {
  display: block;
  padding-right: 3px;
}
.model--content textarea {
  font-size: 1.2rem;
  font-weight: 700;
  resize: none;
  width: 100%;
  height: 68%;
  border: none;
  background-color: #fffef0;
  outline: none;
}
.model--edit-shift--save {
  display: none;
}
.model--edit-shift--save__show {
  display: block;
}
.model--edit-shift label {
  border: none;
  background-color: #F7F7F7;
  border-radius: 5px 5px 0 0;
  border-bottom: none;
}
.model--edit-shift textarea {
  padding: 1rem;
  border-radius: 5px 5px 0 0;
}
.model--edit-shift textarea:focus {
  border-radius: 0 0 5px 5px;
  border: 2px #00b1ff solid;
  padding: 0.8rem;
}
.model--edit-hours {
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}
.model--edit-hours label {
  text-align: right;
}
.model--edit-hours input::-webkit-outer-spin-button,
.model--edit-hours input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.model--edit-hours input[type=number] {
  -moz-appearance: textfield;
  padding: 0.5 0;
  outline: none;
  text-align: center;
}
.model--edit-hours input[type=number]:focus {
  border: 1px solid #00b1ff;
}
.Popover-tipShape {
  fill: #fff;
}
.employee-selected {
  position: relative;
  width: 100%;
  text-align: center;
  border-radius: 5px;
  color: #747474;
  background-color: #F7F7F7;
}
.employee-selected .btn--icon {
  width: fit-content;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.8rem;
}
.employee-selected i {
  color: red;
}
.employee-selected .btn--none {
  color: #747474;
  font-weight: 500;
  font-size: 1.4rem;
  padding: 0.8rem 0;
  width: 70%;
}
.tablePlannedToActual {
  width: 72rem;
}
@media screen and (max-width: 600px) {
  .tablePlannedToActual {
    width: calc(100vw - 2.4rem);
  }
}
.tablePlannedToActual--header {
  margin: 0 !important;
  border-bottom: 1px solid #838383;
}
.tablePlannedToActual--header span {
  font-size: 1rem;
  font-weight: 500;
}
.tablePlannedToActual--header .col-xs {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  padding-bottom: 7px;
}
.tablePlannedToActual--content label {
  font-weight: 600;
  color: #0090d0;
}
.tablePlannedToActual--content .col-xs-2 {
  font-weight: 500;
  padding-left: 0;
  padding-right: 0;
}
.tablePlannedToActual--content .col-xs {
  font-weight: 500;
  padding-left: 0;
  padding-right: 0;
}
.tablePlannedToActual--content:not(:last-child) {
  border-bottom: 1px solid #0090d0;
}
.tablePlannedToActual--content .row {
  margin: 0 !important;
  padding: 0.5rem 0;
}
.editWorker {
  width: 35rem;
}
@media screen and (max-width: 600px) {
  .editWorker {
    width: calc(100vw - 2.4rem);
  }
}
.addNotes {
  width: 20rem !important;
  height: 20rem !important;
}
@media screen and (max-width: 600px) {
  .addNotes {
    width: calc(100% - 4rem) !important;
    margin: 3rem 2rem 0rem 2rem !important;
    box-shadow: none !important;
  }
}
.editHours {
  width: 26rem;
}
.transferEmployee {
  width: 28rem;
  direction: rtl;
  font-size: 1.2rem;
  z-index: 100;
  background-color: white;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.16);
}
.transferEmployee button {
  padding: 0.7rem 0;
  width: 47%;
  margin: 0;
}
.transferEmployee--withDelete button {
  width: 31%;
}
@media screen and (max-width: 600px) {
  .transferEmployee {
    width: calc(100vw - 2.4rem);
  }
}
.bonus-modal {
  width: 25rem;
  direction: rtl;
  font-size: 1.2rem;
  z-index: 100;
  background-color: white;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.16);
}
.bonus-modal button {
  padding: 0.7rem 0;
  width: 47%;
  margin: 0;
}
@media screen and (max-width: 600px) {
  .bonus-modal {
    width: calc(100vw - 2.4rem);
  }
}
.editShift {
  width: 35rem;
}
@media screen and (max-width: 600px) {
  .editShift {
    width: calc(100vw - 2.4rem);
  }
}
.addShift {
  width: 30rem;
}
@media screen and (max-width: 600px) {
  .addShift {
    width: calc(100vw - 2.4rem);
  }
}
.employeeSubmission {
  width: 30rem;
}
@media screen and (max-width: 600px) {
  .employeeSubmission {
    width: calc(100vw - 2.4rem);
  }
}
.SelectedWeekExample .DayPicker-Month {
  border-collapse: separate;
  direction: ltr;
}
.SelectedWeekExample .DayPicker-WeekNumber {
  outline: none;
}
.SelectedWeekExample .DayPicker-Day {
  outline: none;
  border: 1px solid transparent;
  border-radius: 0;
}
.rdrStaticRanges {
  margin: 4rem 0;
  height: 276px;
  overflow-y: auto;
  overflow-x: auto;
  scrollbar-width: thin;
  -ms-overflow-style: thin; /* IE and Edge */
  scroll-behavior: auto;
}
.rdrStaticRanges::-webkit-scrollbar {
  width: 12px;
  height: 10px;
}
.rdrStaticRanges::-webkit-scrollbar-thumb:vertical {
  padding: 0.5rem;
  -webkit-box-shadow: inset 0 0 5px #3E3E3E;
  background: rgb(204, 202, 202);
}
.rdrStaticRanges::-webkit-scrollbar-track:vertical {
  padding: 0.5rem;
  -webkit-box-shadow: inset 0 0 5px #3E3E3E;
}
.rdrStaticRanges::-webkit-scrollbar-thumb:horizontal {
  padding: 0.5rem;
  -webkit-box-shadow: inset 0 0 4px #3E3E3E;
  background: #c1c1c1;
}
.rdrStaticRanges::-webkit-scrollbar-track:horizontal {
  padding: 0.5rem;
  -webkit-box-shadow: inset 0 0 4px #3E3E3E;
}
.rdrNextPrevButton {
  transform: rotate(180deg);
}
.DayPicker-NavButton {
  outline: none;
}
.SelectedWeekExample .DayPicker-Day--hoverRange {
  background-color: #efefef !important;
}
.SelectedWeekExample .DayPicker-Day--selectedRange {
  background-color: #00a2ea !important;
  color: #fff;
}
.SelectedWeekExample .DayPicker-Day--selectedRangeStart {
  background-color: #00a2ea !important;
  border-left: 1px solid #00a2ea;
}
.SelectedWeekExample .DayPicker-Day--selectedRangeEnd {
  background-color: #00a2ea !important;
  border-right: 1px solid #00a2ea;
}
.SelectedWeekExample .DayPicker-Day--selectedRange:not(.DayPicker-Day--outside).DayPicker-Day--selected,
.SelectedWeekExample .DayPicker-Day--hoverRange:not(.DayPicker-Day--outside).DayPicker-Day--selected {
  border-radius: 0 !important;
  color: white !important;
}
.SelectedWeekExample .DayPicker-Day--hoverRange:hover {
  border-radius: 0 !important;
}
.DayPicker-Weekday {
  font-weight: 700;
  color: black;
}
.DayPicker-Day--disabled {
  cursor: not-allowed;
}
.DayPicker {
  display: block;
  font-size: 1.1rem;
}
.rdrStaticRangeLabel {
  display: block;
  outline: 0;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 18px;
  padding: 14px 20px;
  text-align: center;
}
.rdrDateRangePickerWrapper {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.16);
}
.rdrDefinedRangesWrapper {
  border-right: none;
  border-left: solid 1px #eff2f7;
}
.rdrStaticRange:first-child {
  border-top: 1px solid #eff2f7;
}
.rdrMonth {
  width: 24.667em;
}
.rdrMonthName {
  float: none;
  text-align: right;
  padding: 0.633em;
}
.rdrNextButton i {
  margin: 0 7px 0 7px;
}
.rdrStartEdge {
  border-top-right-radius: 1.042em;
  border-bottom-right-radius: 1.042em;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  left: 0;
  right: 2px;
}
.rdrEndEdge {
  border-top-left-radius: 1.042em;
  border-bottom-left-radius: 1.042em;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  left: 2px;
  right: 0;
}
.rdrDayEndOfMonth .rdrInRange,
.rdrDayEndOfMonth .rdrStartEdge,
.rdrDayEndOfWeek .rdrInRange,
.rdrDayEndOfWeek .rdrStartEdge {
  border-top-left-radius: 1.042em;
  border-bottom-left-radius: 1.042em;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  left: 2px;
  right: 0;
}
.rdrDayStartOfMonth .rdrInRange,
.rdrDayStartOfMonth .rdrEndEdge,
.rdrDayStartOfWeek .rdrInRange,
.rdrDayStartOfWeek .rdrEndEdge {
  border-top-right-radius: 1.042em;
  border-bottom-right-radius: 1.042em;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  right: 2px;
  left: 0;
}
.rdrDayEndOfMonth .rdrDayInPreview,
.rdrDayEndOfMonth .rdrDayStartPreview,
.rdrDayEndOfWeek .rdrDayInPreview,
.rdrDayEndOfWeek .rdrDayStartPreview {
  border-top-left-radius: 1.333em;
  border-bottom-left-radius: 1.333em;
  border-left-width: 1px;
  left: 0px;
}
.rdrDayStartOfMonth .rdrDayInPreview,
.rdrDayStartOfMonth .rdrDayEndPreview,
.rdrDayStartOfWeek .rdrDayInPreview,
.rdrDayStartOfWeek .rdrDayEndPreview {
  border-top-right-radius: 1.333em;
  border-bottom-right-radius: 1.333em;
  border-right-width: 1px;
  right: 0px;
}
.rdrDayStartPreview {
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-top-right-radius: 1.333em;
  border-bottom-right-radius: 1.333em;
  right: 0px;
}
.rdrDayEndPreview {
  border-top-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-top-left-radius: 1.333em;
  border-bottom-left-radius: 1.333em;
  left: 2px;
  left: 0px;
}
.legacy-app {
  width: 100%;
  height: calc(100vh - 6rem);
  border: none;
  overflow-y: hidden !important;
  overflow-x: hidden !important;
  /* Hide scrollbar for Chrome, Safari and Opera */
  -ms-overflow-style: none !important; /* IE and Edge */
  scrollbar-width: none !important; /* Firefox */
}
.legacy-app .mobile--content {
  width: 100%;
}
.legacy-app::-webkit-scrollbar {
  display: none !important;
}
.holds-the-iframe {
  background: url(../../../assets/loader.gif) center center no-repeat;
}
.hours-input {
  display: flex;
  max-width: fit-content;
  background-color: #F7F7F7;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  direction: ltr;
  border: 1px solid #EAEAEA;
  /* Chrome, Safari, Edge, Opera */
}
.hours-input input {
  border: none;
  background-color: transparent;
  font-weight: 500;
  padding: 0;
  margin: 0;
  -moz-appearance: textfield;
  outline: none;
  text-align: center;
  letter-spacing: normal;
  word-spacing: 0;
  text-transform: none;
  width: 2rem;
}
.hours-input input::selection {
  color: white;
  background-color: #FF0062;
}
.hours-input input::-webkit-outer-spin-button,
.hours-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.hours-input--focused {
  border: 1px solid #FF0062;
}
.hours-input--disabled {
  background-color: #EAEAEA;
}
.hiddenFileInput > input {
  height: 100%;
  width: 100;
  opacity: 0;
  cursor: pointer;
  display: none;
}
.number-input {
  width: fit-content;
  direction: ltr;
  display: flex;
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}
.number-input button {
  height: 3.2rem;
  width: 3.2rem;
  background-color: #838383;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}
.number-input input {
  font-size: 14px;
  font-weight: 500;
  height: 3.2rem;
  width: 5rem;
  border-radius: 0;
  text-align: center;
  direction: ltr;
  padding: 0;
  font-weight: 700;
}
.number-input__small button {
  height: 2.6rem;
  width: 2.6rem;
}
.number-input__small input {
  height: 2.6rem;
  width: 4rem;
  border-radius: 0;
  text-align: center;
}
@media only screen and (max-width: 600px) {
  .number-input {
    font-size: 1rem;
  }
  .number-input button {
    height: 3rem;
    width: 3rem;
    background-color: #838383;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
  }
  .number-input input {
    height: 3rem;
    width: 4rem;
    border-radius: 0;
    text-align: center;
  }
}
.number-input input::-webkit-outer-spin-button,
.number-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.number-input input[type=number] {
  -moz-appearance: textfield;
}
.text-input-model {
  outline: none;
  max-width: 24rem;
  margin: 0 auto;
}
.text-input-model:focus {
  border-color: #0090d0;
}
.notes-textarea {
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.notes-textarea label {
  font-weight: 500;
  display: block;
  width: 100%;
  padding: 0.9rem;
  border: none;
  background-color: #F7F7F7;
  border-radius: 5px 5px 0 0;
  border-bottom: none;
}
.notes-textarea textarea {
  font-size: 1.2rem;
  font-weight: 700;
  resize: none;
  width: 100%;
  height: 68%;
  border: none;
  background-color: #fffef0;
  outline: none;
  padding: 1rem;
  border-radius: 5px 5px 0 0;
}
.notes-textarea textarea:focus {
  border-radius: 0 0 5px 5px;
  border: 2px #00b1ff solid;
  padding: 0.8rem;
}
.notes-textarea__model {
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.16);
}
.notes-textarea__model textarea {
  border-radius: 5px;
}
.notes-textarea__model textarea:focus {
  border-radius: 5px;
}
.textarea-white {
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  resize: none;
  width: 100%;
  height: 68%;
  border: none;
  outline: none;
  padding: 1rem;
  border-radius: 5px 5px 0 0;
}
.textarea-white:focus {
  border-radius: 0 0 5px 5px;
  border: 2px #00b1ff solid;
  padding: 0.8rem;
}
.search-worker {
  position: absolute;
  left: 1rem;
  top: 0;
}
.search-container-worker {
  width: calc(50% - 1.8rem);
  max-width: 400px;
  transition: width ease-in-out 0.3s;
  border: 1px solid #EAEAEA;
  border-radius: 5px;
}
.search-container-worker button {
  display: inline-block;
  padding: 7px 11px;
  outline: none;
  background: #F7F7F7;
  font-size: 17px;
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}
.search-container-worker button:hover {
  background: #ccc;
}
.search-container-worker__btn-transparent button {
  background: transparent;
}
.search-container-worker input[type=text] {
  display: inline-block;
  transition: width ease-in-out 0.3s;
  width: calc(100% - 39px);
  padding: 8.5px;
  font-size: 1.4rem;
  border: none;
  border-radius: 5px 0 0 5px;
}
.search-container-worker input[type=text]:focus {
  outline: none;
}
.search-container-worker__fixedInputWidth input[type=text] {
  width: 200px;
  max-width: 300px;
}
.search-container-worker__collapsed {
  border: none;
  width: 39px;
}
.search-container-worker__collapsed button {
  border-radius: 5px;
}
.search-container-worker__collapsed input[type=text] {
  padding: 8.5px 0;
  width: 0;
}
.search-container {
  width: max-content;
  max-width: 400px;
  transition: width ease-in-out 0.3s;
  border: 1px solid #EAEAEA;
  border-radius: 5px;
}
.search-container button {
  display: inline-block;
  padding: 7px 11px;
  outline: none;
  background: #F7F7F7;
  font-size: 17px;
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}
.search-container button:hover {
  background: #ccc;
}
.search-container__btn-transparent button {
  background: transparent;
}
.search-container input[type=text] {
  display: inline-block;
  transition: width ease-in-out 0.3s;
  width: calc(100% - 39px);
  padding: 8.5px;
  font-size: 1.4rem;
  border: none;
  border-radius: 5px 0 0 5px;
}
.search-container input[type=text]:focus {
  outline: none;
}
.search-container__fixedInputWidth input[type=text] {
  width: 200px;
  max-width: 300px;
}
.search-container__collapsed {
  border: none;
  width: 39px;
}
.search-container__collapsed button {
  border-radius: 5px;
}
.search-container__collapsed input[type=text] {
  padding: 8.5px 0;
  width: 0;
}
.search-table {
  width: 100%;
  transition: width ease-in-out 0.3s;
  border: 1px solid #EAEAEA;
  border-radius: 5px;
}
.search-table input[type=text] {
  display: inline-block;
  width: 300px;
  transition: width ease-in-out 0.3s;
  padding: 8.5px;
  font-size: 1.4rem;
  border: none;
  border-radius: 5px 0 0 5px;
}
.search-table input[type=text]:focus {
  outline: none;
}
.search-table__collapsed {
  border: none;
  width: 0px;
}
.search-table__collapsed input[type=text] {
  padding: 8.5px;
  width: 0px;
}
@media screen and (max-width: 600px) {
  .search-table {
    width: 100%;
    transition: width ease-in-out 0.3s;
    border: 1px solid #EAEAEA;
    border-radius: 5px;
  }
  .search-table input[type=text] {
    display: inline-block;
    width: 150px;
    transition: width ease-in-out 0.3s;
    padding: 8.5px;
    font-size: 1.4rem;
    border: none;
    border-radius: 5px 0 0 5px;
  }
  .search-table input[type=text]:focus {
    outline: none;
  }
}
.search {
  width: 100%;
  background-color: #fff;
  max-width: 24rem;
  margin: 0 0;
  outline: none;
  transition: width ease-in-out 0.3s;
}
.search__expand {
  width: 5rem;
  background-color: #F7F7F7;
}
.search__submissions {
  min-width: 18rem;
  border: none;
  background-color: #F7F7F7;
}
.search:focus {
  width: 100%;
  outline: none;
  border: 1px solid #00b1ff;
}
.search::placeholder {
  font-family: FontAwesome;
  font-size: 1.6rem;
  padding-right: 0.7rem;
}
.day-picker {
  padding: 0.9rem 0;
  text-align: center;
  border: none;
  font-weight: 600;
  font-size: 1.4rem;
  background-color: #F7F7F7;
  cursor: pointer;
}
.day-picker:hover {
  background-color: #EAEAEA;
}
.day-picker--selected {
  color: white;
  background-color: #777;
}
.day-picker--selected:hover {
  background-color: #777;
}
.day-picker--disabled {
  cursor: auto;
  color: #bdbdbd;
}
.day-picker--disabled:hover {
  background-color: #F7F7F7;
}
.day-picker__label {
  width: 224px;
}
.checkbox {
  margin: 0 1rem;
  height: 18rem;
  overflow-y: auto;
  /* The container */
  /* Create a custom checkbox */
}
.checkbox--container {
  display: block;
  position: relative;
  padding-right: 28px;
  padding-bottom: 1rem;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-bottom: 1px solid #EAEAEA;
  /* When the checkbox is checked, add a blue background */
}
.checkbox--container__small {
  font-size: 1.2rem;
  border: none;
}
.checkbox--container:not(:first-child) {
  margin-top: 1rem;
}
.checkbox--container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox--container input:checked ~ .checkbox--checkmark {
  background-color: #47cc00;
}
.checkbox--container input:checked ~ .checkbox--checkmark:after {
  display: block;
}
.checkbox--container:hover input ~ .checkbox--checkmark {
  background-color: #ccc;
}
.checkbox--container:hover input:checked ~ .checkbox--checkmark {
  background-color: #b8e99e;
}
.checkbox--container .checkbox--checkmark:after {
  right: 7px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.checkbox--nested {
  /* When the checkbox is checked, add a blue background */
}
.checkbox--nested input:checked ~ .checkbox--checkmark {
  background-color: #0a6891;
}
.checkbox--nested input:checked ~ .checkbox--checkmark:after {
  display: block;
}
.checkbox--nested:hover input ~ .checkbox--checkmark {
  background-color: #ccc;
}
.checkbox--nested:hover input:checked ~ .checkbox--checkmark {
  background-color: #5cacb5;
}
.checkbox--nested .checkbox--checkmark:after {
  right: 7px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.checkbox--checkmark {
  position: absolute;
  top: 2px;
  right: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  /* Create the checkmark/indicator (hidden when not checked) */
}
.checkbox--checkmark__dark {
  background-color: #EAEAEA;
}
.checkbox--checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.switch {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.switch__label, .switch__label--secondary {
  width: calc(100% - 4rem);
  margin: 0 0.5rem;
}
.switch__label--secondary {
  font-size: 1.3rem;
  font-weight: 400;
}
.input-disable {
  background-color: #bdbdbd !important;
}
.input-disable.cursor-not-allowed {
  cursor: not-allowed;
}
.select select {
  width: 100%;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  max-width: 24rem;
  min-width: 16rem;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  color: #747474;
  background-color: #F7F7F7;
  padding: 0.8rem 1rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}
.select select option:hover {
  background-color: #EAEAEA;
}
.react-responsive-modal-overlay {
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 1500;
  padding: 1.2rem;
}
.react-responsive-modal-modal {
  direction: rtl;
  color: #585858;
  width: 100%;
  max-width: 1200px;
  position: relative;
  padding: 3.5rem;
  border-radius: 1rem;
  background: #ffffff;
  background-clip: padding-box;
  box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.25);
  margin: 0 auto;
}
.react-responsive-modal-modalCenter {
  margin: auto;
}
.react-responsive-modal-closeButton {
  position: absolute;
  fill: #585858;
  outline: none;
  top: 25px;
  left: 25px;
  border: none;
  padding: 0;
  cursor: pointer;
  background-color: transparent;
  display: flex;
}
@keyframes react-responsive-modal-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes react-responsive-modal-fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.tooltip {
  box-shadow: 0px 5px 16px 0px rgba(0, 0, 0, 0.2);
}
.pie-tooltip {
  text-align: center;
  padding: 1rem 3rem;
  font-size: 2rem;
  font-weight: 500;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0px 5px 16px 0px rgba(0, 0, 0, 0.2);
}
.rc-tooltip {
  z-index: 1000000;
}
.burger {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 3rem;
  height: 3rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}
.burger:focus {
  outline: none;
}
.burger div {
  width: 3rem;
  height: 0.3rem;
  background: #fff;
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}
.burger div:first-child {
  transform: rotate(0);
}
.burger div:nth-child(2) {
  opacity: 1;
  transform: translateX(0);
}
.burger div:nth-child(3) {
  transform: rotate(0);
}
.burger__clicked div:first-child {
  transform: rotate(45deg);
}
.burger__clicked div:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}
.burger__clicked div:nth-child(3) {
  transform: rotate(-45deg);
}
.burger-menu {
  display: flex;
  direction: rtl;
  flex-direction: column;
  justify-content: flex-start;
  background: rgba(3, 3, 3, 0.582);
  height: calc(100vh - 6rem);
  width: 100%;
  text-align: right;
  position: absolute;
  top: 6rem;
  right: 0;
  transition: transform 0.3s ease-in-out;
  transform: translateX(101%);
}
.burger-menu .pro-sidebar {
  height: 100% !important;
}
.burger-menu--content {
  width: 100%;
  height: calc(100vh - 6rem);
  overflow-y: auto;
  overflow-x: hidden;
  background-color: white;
}
.burger-menu__row {
  background-color: #F7F7F7;
  width: 95%;
  border-radius: 7px;
  margin: 2rem auto;
}
.burger-menu__col {
  text-align: center;
  margin: 0.5rem;
  width: 7rem;
}
.burger-menu__item {
  position: relative;
  width: 50px;
  height: 50px;
  margin: 0.5rem auto;
  background-color: white;
  border-radius: 15px;
  color: #00a2ea;
}
.burger-menu__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
}
.burger-menu__clicked {
  transform: translateX(0);
}
.burger-menu a {
  text-decoration: none;
  color: #585858;
  font-weight: 500;
}
.page-nav {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: 4rem;
  font-family: Heebo;
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 600px) {
  .page-nav {
    justify-content: space-around;
    height: 3rem;
  }
}
.page-nav--option {
  color: inherit;
  white-space: nowrap;
  font-weight: 700;
  border: none;
  border-bottom: 2px solid #EAEAEA;
  padding: 0 3rem;
  height: 100%;
  outline: none;
  background-color: transparent;
}
.page-nav--option__selected {
  border-bottom: 2px solid #00a2ea;
}
@media screen and (max-width: 600px) {
  .page-nav--option {
    padding: 0 0.6rem;
    font-size: 12px;
  }
}
.page-nav--line {
  border-bottom: 2px solid #EAEAEA;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .page-nav--line {
    display: none;
  }
}
.sa {
  width: 140px;
  height: 140px;
  padding: 26px;
  background-color: #fff;
}
.sa-success {
  border-radius: 50%;
  border: 4px solid #A5DC86;
  box-sizing: content-box;
  height: 80px;
  padding: 0;
  position: relative;
  background-color: #fff;
  width: 80px;
}
.sa-success:after, .sa-success:before {
  background: #fff;
  content: "";
  height: 120px;
  position: absolute;
  transform: rotate(45deg);
  width: 60px;
}
.sa-success:before {
  border-radius: 40px 0 0 40px;
  width: 26px;
  height: 80px;
  top: -17px;
  left: 5px;
  transform-origin: 60px 60px;
  transform: rotate(-45deg);
}
.sa-success:after {
  border-radius: 0 120px 120px 0;
  left: 30px;
  top: -11px;
  transform-origin: 0 60px;
  transform: rotate(-45deg);
  animation: rotatePlaceholder 2.25s ease-in;
}
.sa-success-placeholder {
  border-radius: 50%;
  border: 4px solid rgba(165, 220, 134, 0.25);
  box-sizing: content-box;
  height: 80px;
  left: -4px;
  position: absolute;
  top: -4px;
  width: 80px;
  z-index: 2;
}
.sa-success-fix {
  background-color: #fff;
  height: 90px;
  left: 28px;
  position: absolute;
  top: 8px;
  transform: rotate(-45deg);
  width: 5px;
  z-index: 1;
}
.sa-success-tip, .sa-success-long {
  background-color: #A5DC86;
  border-radius: 2px;
  height: 5px;
  position: absolute;
  z-index: 2;
}
.sa-success-tip {
  left: 14px;
  top: 46px;
  transform: rotate(45deg);
  width: 25px;
  animation: animateSuccessTip 0.75s;
}
.sa-success-long {
  right: 8px;
  top: 38px;
  transform: rotate(-45deg);
  width: 47px;
  animation: animateSuccessLong 0.75s;
}
@keyframes animateSuccessTip {
  0%, 54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}
@keyframes animateSuccessLong {
  0%, 65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}
@keyframes rotatePlaceholder {
  0%, 5% {
    transform: rotate(-45deg);
  }
  100%, 12% {
    transform: rotate(-405deg);
  }
}
.confirm-bar {
  direction: rtl;
  border: 1px solid transparent;
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
  display: block;
  border-radius: 0.25rem;
  width: 100%;
  text-align: right;
  padding: 1rem 1.25rem;
  position: fixed;
  font-weight: 500;
  font-size: 1.4rem;
  top: 6rem;
  left: 0;
  transition: transform 1s ease-in-out;
  transform: translateX(-100%);
  z-index: 100;
}
@media screen and (max-width: 600px) {
  .confirm-bar {
    transition: transform 0.3s ease-in-out;
  }
}
.dialog-modal {
  max-width: 50rem;
  max-height: 90vh;
  padding: 3rem;
  text-align: center;
  z-index: 100;
}
.dialog-modal .paragraph {
  max-height: calc(90vh - 22rem);
  overflow-y: auto;
  scroll-behavior: smooth;
  /* Hide scrollbar for Chrome, Safari and Opera */
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.dialog-modal .paragraph::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 600px) {
  .dialog-modal {
    width: calc(100vw - 2.4rem);
  }
}
.progress-bar {
  position: relative;
  width: 100%;
  height: 3rem;
  border-radius: 50px;
  background-color: white;
}
.progress-bar__blue {
  border: 1px solid #00c4ff;
}
.progress-bar__red {
  border: 1px solid #df4b1e;
}
.progress-bar--backText {
  position: absolute;
  right: 0;
  font-weight: 700;
  font-size: 1.3rem;
  padding: 0.4rem 1.2rem;
  color: black;
}
.progress-bar--backText__left {
  right: unset;
  left: 0;
  z-index: 1;
}
.progress-bar--frontText {
  position: absolute;
  right: 0;
  font-weight: 700;
  font-size: 1.3rem;
  padding: 0.4rem 1.2rem;
  color: white;
}
.progress-bar--frontText__left {
  right: unset;
  left: 0;
}
.progress-bar--filler {
  position: relative;
  text-align: right;
  height: 100%;
  border-radius: 50px;
  transition: width 0.2s ease-in-out;
  overflow: hidden;
}
.progress-bar--filler__blue {
  background: linear-gradient(to bottom left, #00a2ea, #00c4ff);
}
.progress-bar--filler__red {
  background: linear-gradient(to bottom left, #db1e1e, #df4b1e);
}
[dir=ltr] .progress-bar--backText {
  right: unset;
  left: 0;
}
[dir=ltr] .progress-bar--backText__left {
  right: 0;
  left: unset;
}
[dir=ltr] .progress-bar--frontText {
  right: unset;
  left: 0;
}
[dir=ltr] .progress-bar--frontText__left {
  right: 0;
  left: unset;
}
.message {
  width: fit-content;
  max-width: 500px;
  padding: 1rem;
  border-radius: 15px;
  box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.25);
  position: fixed;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  font-size: 1.4rem;
  font-weight: 500;
  z-index: 100;
}
.message--container {
  position: relative;
  width: 100%;
}
.message--exit-icon {
  position: absolute;
  top: 50%;
  left: 1.5rem;
  transform: translateY(-50%);
  font-size: 1.8rem;
}
.message--content {
  margin-bottom: 1rem;
}
.message--button {
  top: 1.25rem;
  font-size: 2.2rem;
  width: 3.5rem;
  height: 3.5rem;
  z-index: 100;
}
.message--button .red-circle {
  top: 1px;
  right: -2px;
}
@media screen and (max-width: 1281px) {
  .message--button {
    position: fixed;
    right: 5.5rem;
    color: white;
  }
  .message--button .red-circle {
    top: 0;
    right: -3;
  }
}
.skeleton--table {
  height: 5rem;
}
[dir=rtl] .Popover {
  flex-flow: row-reverse !important;
}
div.summary_container {
  background-color: #e8f4fd;
  padding: 8px;
  margin-bottom: 10px;
}
div.receive_summary-title {
  align-items: flex-end;
  margin-bottom: 6px;
}
div.receive_summary-details {
  flex-grow: 4;
}
div.receive_summary-pricing {
  width: 120px;
}
.FileDropZoneManager .DropZone {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 29px;
  border-width: 2px;
  border-radius: 1.5rem;
  border-color: #bdbdbd;
  border-style: dashed;
  background: rgb(240, 244, 250);
  outline: none;
  cursor: pointer;
}
.FileDropZoneManager .DropZone.DragIsActive {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 29px;
  border-width: 2px;
  border-radius: 1.5rem;
  border-color: #bdbdbd;
  border-style: dashed;
  background: rgb(240, 244, 250);
  outline: none;
  transition: border 0.24s ease-in-out;
  cursor: pointer;
}
.FileDropZoneManager .DropZone.DragIsError {
  border-color: #db1e1e;
}
.FileDropZoneManager .DropZone.DragIsDisabled {
  border-color: #db1e1e;
  color: #000;
  font-weight: bolder;
}
.FileDropZoneManager .DragIsActiveSpan {
  font-weight: bolder;
}
.FileDropZoneManager .PreviewContainer {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  margin: 10px 0;
  padding: 10px;
  display: flex;
  border-radius: 1.5rem;
  justify-content: flex-start;
  flex-direction: row;
  align-items: center;
  box-shadow: 0px 5px 16px 0px rgba(0, 0, 0, 0.2);
}
.FileDropZoneManager .PreviewContainer:hover {
  transition: 0.5s;
  background: rgb(240, 244, 250);
}
.FileDropZoneManager .PreviewContainer .PreviewDeleteContainer {
  color: #db1e1e;
}
.FileDropZoneManager .PreviewContainer .PreviewFileName {
  margin-right: 15px;
}
.FileDropZoneManager .PreviewContainer .PreviewDownload {
  margin-left: 15px;
}
.FileDropZoneManager .PreviewContainer .PreviewImgContainer {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 600px) {
  .FileDropZoneManager .PreviewContainer {
    flex-wrap: wrap;
  }
  .FileDropZoneManager .PreviewContainer .PreviewDeleteContainer {
    color: green;
  }
  .FileDropZoneManager .PreviewContainer .PreviewDownload {
    margin-top: 15px;
    justify-content: space-around !important;
    align-items: center;
  }
  .FileDropZoneManager .PreviewContainer .PreviewDownload button {
    font-size: 25px;
    font-weight: bolder;
  }
}
.video-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}
@media print {
  .video-responsive {
    display: none;
  }
}
.video-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}
.work_agreement_editor .DraftEditor-root * {
  font-family: sans-serif;
}
.header {
  position: fixed;
  height: 6rem;
  z-index: 50;
  background-color: #fff;
  width: 100%;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
}
.header__admin {
  background-color: rgb(10, 10, 10);
  color: #fff;
}
.header__collapsed > .header__user-box {
  left: 80px;
}
.header__heading-box {
  height: 100%;
  z-index: 51;
  margin: 0 2rem;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
}
.header__user-box {
  position: absolute;
  height: 100%;
  display: flex;
  flex-direction: row;
  z-index: 51;
  left: 225px;
  transition: left, left, right, 0.3s;
  line-height: 1;
  margin: auto;
}
.header--avatar {
  display: inline-block;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 1rem;
}
.header--profile {
  width: 7rem;
  text-align: center;
  display: inline-block;
  margin-left: 1.5rem;
  position: relative;
  top: 1.8rem;
}
.header--profile__name {
  font-weight: 500;
}
.header--profile__pos {
  color: #585858;
}
.app {
  height: 100%;
  display: flex;
  position: relative;
}
.app .btn-toggle {
  cursor: pointer;
  width: 35px;
  height: 35px;
  background: #353535;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  display: none;
}
.app .sidebar-btn-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app .sidebar-btn-wrapper .sidebar-btn {
  padding: 0;
  border-radius: 40px;
  background: transparent;
  color: #adadad;
  text-decoration: none;
  margin: 0 auto;
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-overflow: ellipsis;
  overflow: hidden;
  border: none;
}
.app .sidebar-btn-wrapper .sidebar-btn span {
  margin-left: 5px;
  font-size: 13px;
}
.app .sidebar-btn-wrapper .sidebar-btn:hover {
  color: #d8d8d8;
}
.app .collapsed .sidebar-btn {
  display: inline-block;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  line-height: 40px;
  padding: 0;
}
.app .social-bagdes {
  margin-top: 10px;
}
.app .social-bagdes img {
  margin: 5px;
}
.app .block {
  display: flex;
  margin-bottom: 24px;
  font-size: 14px;
  color: #545454;
}
.app .block > span {
  margin-left: 10px;
}
.app.rtl {
  direction: rtl;
  text-align: right;
}
.app.rtl header h1 {
  transform: translateX(20px);
}
.app.rtl .block {
  direction: rtl;
}
.app.rtl .block > span {
  margin-left: 0;
  margin-right: 10px;
}
.app.rtl .sidebar-btn-wrapper .sidebar-btn span {
  margin-left: 0;
  margin-right: 5px;
}
@media (max-width: 767.98px) {
  .app {
    overflow-x: hidden;
  }
  .app header h1 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .app .btn-toggle {
    display: flex;
  }
  .app.rtl .btn-toggle {
    margin-left: auto;
  }
}
.row {
  margin: 0 auto;
}
.row:not(:last-child) {
  margin-bottom: 1rem;
}
.row--with-border:not(:last-child) {
  margin-bottom: 0;
  border-bottom: 1px solid #e2e2e2;
}
.row::after {
  content: "";
  display: table;
  clear: both;
}
.row .col-margin-right:not(:last-child) {
  margin-right: 0rem;
}
.row__odd {
  background-color: #F7F7F7;
}
.col__padding {
  padding: 0 0.5rem;
}
.page-layout {
  position: relative;
  width: 100%;
  height: 100%;
  padding-right: 225px;
  transition: padding-right, left, right, 0.3s;
}
@media only screen and (max-width: 1367px) {
  .page-layout {
    padding-right: 200px;
  }
}
.page-layout__collapsed {
  padding-right: 80px;
}
@media only screen and (max-width: 1367px) {
  .page-layout__collapsed {
    padding-right: 70px;
  }
}
.page-layout__content {
  position: relative;
  width: 100%;
  height: 100%;
  top: 6rem;
  background-color: #f5f5f5;
}
.page-layout__header {
  width: 100%;
  height: 10rem;
  position: relative;
  display: block;
}
.mobile {
  height: 100vh;
  width: 100%;
  background-color: white;
  position: relative;
  top: 6rem;
}
.mobile main {
  padding: 0;
}
.mobile--header {
  position: fixed;
  width: 100%;
  height: 6rem;
  background-color: #333333;
  z-index: 100;
}
.mobile--header .pro-inner-item {
  padding: 6px 10px 6px 35px !important;
}
.mobile--header .pro-sidebar .pro-menu {
  padding: 0;
}
.mobile--header__logo {
  height: 3.6rem;
  width: 4rem;
  background-image: url(../../../assets/restigo_logo.svg);
  background-size: cover;
  background-position: center;
  position: absolute;
  left: 1.5rem;
  top: 1.2rem;
}
.mobile--header__bars {
  font-size: 3.2rem;
  color: white;
  position: absolute;
  right: 1.5rem;
  top: 1.4rem;
}
.mobile--content {
  position: relative;
  width: 92%;
  height: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 600px) and (max-width: 1281px) {
  .mobile--content {
    width: 100%;
  }
}
.mobile--content__title {
  font-size: 1.8rem;
  font-weight: 700;
}
.mobile--content__iframe {
  width: 100%;
  margin: 0;
}
.mobile--menu-overlay {
  width: calc(100% - 225px);
  height: calc(100vh - 6rem);
  position: absolute;
  left: 0;
}
.mobile--branchDropdown .dropdown-select--search {
  background-color: #2b2b2b !important;
  border: none;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  border-radius: unset;
  caret-color: white;
  color: white;
  padding: 0.6rem 3rem 0.6rem 1rem;
}
.mobile--branchDropdown .dropdown-select--search:focus {
  outline: none;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
}
.mobile--branchDropdown .dropdown-select {
  font-size: 1.2rem;
  width: 100% !important;
  padding: 0 !important;
  max-width: 100% !important;
  position: relative !important;
  left: unset !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  top: unset !important;
  transform: unset !important;
  text-align: right;
}
.mobile--branchDropdown .dropdown-select button {
  color: #fff !important;
  text-align: right;
}
.mobile--branchDropdown .dropdown-select--header {
  padding: 1rem 0;
  padding-right: 1.8rem;
}
.mobile--branchDropdown .dropdown-select--option {
  background-color: #2b2b2b;
  color: #adadad !important;
  padding-right: 2.5rem;
}
.mobile--branchDropdown .dropdown-select--content {
  max-height: unset !important;
  border: none !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  position: relative !important;
}
@media screen and (max-width: 600px) {
  .react-responsive-modal-modal {
    padding: 0;
  }
  .react-responsive-modal-closeButton {
    left: 4px;
    top: 4px;
    padding: 0;
  }
  .app {
    background-color: white;
  }
  .rdrDefinedRangesWrapper {
    width: 87vw;
  }
}
@media screen and (max-width: 600px) {
  .col-xs {
    padding-left: 2px;
    padding-right: 2px;
  }
}
.MuiTableCell-root {
  font-size: 1.4rem !important;
}
.table--active-row {
  font-weight: bold !important;
  border: 3px solid #0090d0 !important;
  z-index: 1;
}
.table--active-row-2 {
  font-weight: bold;
  border: 2px solid rgba(34, 183, 247, 0.7725490196) !important;
}
.table--active-row-2 p {
  font-weight: bold;
}
.table--depth-first {
  font-weight: 500;
  color: white;
  background-color: #838383;
}
.table--depth-second {
  font-weight: 500;
  background-color: #EAEAEA;
}
.table--depth-third {
  font-weight: 700;
}
@media print {
  .table {
    display: block;
    direction: rtl;
  }
  .table select {
    display: none;
  }
  .table table {
    font-size: 9px;
    margin: 1rem 0 0 0 !important;
    padding: 0;
  }
  .table table td,
  .table table tr,
  .table table th {
    border: solid 1px black;
    text-align: center !important;
  }
  .table table tfoot td,
  .table table tfoot tr {
    font-weight: 700;
    background-color: #EAEAEA;
  }
}
.table__h-print {
  text-align: center;
  text-decoration: underline;
  display: none;
}
@media print {
  .table__h-print {
    display: block;
  }
}
.table__meta-print {
  text-align: right;
  width: fit-content;
  display: none;
}
@media print {
  .table__meta-print {
    display: block;
  }
}
.table table {
  width: 100%;
  border-spacing: 0;
  margin: 25px 0 0 0;
  text-align: center;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.15);
  border-collapse: collapse;
}
@media print {
  .table table {
    font-size: 12px;
    box-shadow: none;
    border: solid 1px black;
  }
}
.table table .routine tr {
  background-color: #fff;
}
.table table .routine tr :last-child td {
  border-bottom: 0;
}
.table table .routine tr:nth-child(even) {
  background-color: #F7F7F7;
}
.table table .routine tr:nth-child(even) td .btn--icon {
  background-color: #fff;
}
.table table .routine tr:last-of-type {
  border-bottom: 1px solid #707070;
}
.table table tr:last-of-type {
  border-bottom: 1px solid #707070;
}
.table table th {
  padding: 1rem;
  border-bottom: 1px solid black;
  font-weight: 700;
  width: 1px;
  text-align: start;
}
.table table th i {
  padding-inline-end: 0.3rem;
}
@media print {
  .table table th i {
    display: none;
  }
}
.table table td {
  font-size: 1.4rem;
  width: fit-content;
  padding: 0.6rem 1rem;
  text-align: right;
}
.money {
  direction: ltr;
}
.money__footer {
  font-weight: 500;
}
.money span {
  margin: 2px;
}
.pagination-wrapper {
  text-align: center;
  margin: 1rem 0 3rem 0;
}
.pagination-wrapper a {
  text-decoration: none;
  color: inherit;
}
@media print {
  .pagination-wrapper {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .pagination-wrapper {
    margin: 0.5rem 0 2rem 0;
  }
}
.pagination {
  display: inline-block;
  height: 30px;
  font-weight: 700;
  padding: 0 11px;
  border-radius: 35px;
  background-color: #F7F7F7;
}
.pagination:hover {
  cursor: pointer;
}
.page-numbers {
  display: block;
  padding: 0 11px;
  float: left;
  transition: 400ms ease;
  letter-spacing: 0.1em;
  line-height: 30px;
}
.page-numbers i {
  font-size: 1.8rem;
  line-height: 31px;
}
.page-numbers:hover, .page-numbers.current {
  background-color: #00a2ea;
  color: #fff;
  border-radius: 100px;
}
.page-numbers.prev:hover, .page-numbers.next:hover {
  background-color: transparent;
  color: #00a2ea;
}
.plain-table {
  padding-bottom: 1rem;
}
.plain-table table {
  border-spacing: 0;
  border: 1px solid black;
}
.plain-table th,
.plain-table td {
  margin: 0;
  padding: 0.5rem;
  border-bottom: 1px solid black;
  border-right: 1px solid black;
}
@media print {
  .table-for-print {
    display: block; /* Show the table only when printing */
  }
}
.table-for-print {
  display: none;
  direction: rtl;
}
.table-for-print select {
  display: none;
}
.table-for-print table {
  font-size: 9px;
  margin: 1rem 0 0 0 !important;
  padding: 0;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid black;
}
.table-for-print table td div {
  justify-content: center;
}
.table-for-print table td,
.table-for-print table tr,
.table-for-print table th {
  border: solid 1px black;
  text-align: center !important;
}
.table-for-print table tfoot td,
.table-for-print table tfoot tr {
  font-weight: 700;
  background-color: #EAEAEA;
}
.simple-table-align-center .MuiTableCell-root {
  color: #585858;
  text-align: center !important;
}
.simple-table-align-center .MuiTableCell-root .btn {
  font-size: 1.3rem !important;
}
.simple-table tr.error td {
  color: #ed4242;
}
.orders--manage tr.error td {
  color: #ed4242;
}
.orders--manage tr.error td p {
  color: #ed4242;
}
.orders--manage tr.gap td {
  font-weight: bold;
  color: #6c6e6b;
}
.orders--manage tr.gap td p {
  font-weight: bold;
  color: #6c6e6b;
}
tr:hover .showOnOver {
  opacity: 1;
}
.showOnOver {
  opacity: 0;
}
.dashboard {
  width: 100%;
  height: calc(100vh - 6rem);
  overflow-y: auto;
  overflow-x: hidden;
  background-color: white;
}
.dashboard__row {
  padding: 2rem;
}
@media screen and (max-width: 600px) {
  .dashboard__row {
    padding: 0;
  }
}
.dashboard__col {
  position: relative;
  text-align: center;
  margin-bottom: 1.5rem;
  height: calc(12.2vw - 8rem);
  min-height: 10rem;
  background-color: #F7F7F7;
  border-radius: 15px;
}
.dashboard__col p {
  font-size: 1.4rem;
}
@media screen and (max-width: 600px) {
  .dashboard__col p {
    font-size: inherit;
  }
}
@media screen and (max-width: 600px) {
  .dashboard__col {
    position: relative;
    text-align: center;
    margin: 0.5rem;
    width: calc(30vw - 1rem);
    height: calc(30vw - 1rem);
    background-color: #F7F7F7;
    border-radius: 15px;
    min-height: unset;
  }
}
.dashboard__img {
  height: 4.5rem;
  width: 4.5rem;
}
@media screen and (max-width: 600px) {
  .dashboard__img {
    height: 3.2rem;
    width: 3.2rem;
  }
}
.dashboard__item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: #00a2ea;
}
.dashboard__icon {
  font-size: 4.5rem;
}
@media screen and (max-width: 600px) {
  .dashboard__icon {
    font-size: 3.2rem;
  }
}
.dashboard a {
  text-decoration: none;
  color: #585858;
  font-weight: 500;
}
.dashboard a:not(:last-child) {
  margin: 0 1rem;
}
.dashboard a:not(:first-child) {
  margin: 0 1rem;
}
@media screen and (max-width: 600px) {
  .dashboard a:not(:last-child) {
    margin: unset;
  }
  .dashboard a:not(:first-child) {
    margin: unset;
  }
}
.layout-content {
  min-height: 100vh;
  padding: 2rem;
  background-color: #fff;
}
@media only screen and (max-width: 600px) {
  .layout-content .outside_alerter {
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .layout-content {
    padding: 0;
  }
}
[dir=rtl] .react-responsive-modal-modal {
  direction: rtl;
}
[dir=rtl] .model {
  direction: rtl;
}
[dir=ltr] .rdrMonthName {
  text-align: left;
}
[dir=ltr] .react-responsive-modal-modal {
  direction: ltr;
}
[dir=ltr] .model {
  direction: ltr;
}
[dir=ltr] .MuiTabs-flexContainer {
  direction: rtl;
}
[dir=ltr] .rdrDays {
  flex-direction: row-reverse;
}
[dir=ltr] .fa-chevron-right {
  rotate: 180deg;
}
[dir=ltr] .fa-chevron-left {
  rotate: 180deg;
}
.Popover {
  inset-inline-start: 0;
  inset-inline-end: auto;
  transition: all 0.3s ease;
}
[dir=rtl] .Popover {
  inset-inline-start: auto;
  inset-inline-end: 0;
}
.login {
  position: relative;
  height: 100vh;
  background-image: linear-gradient(to bottom left, rgba(0, 162, 234, 0.7), rgba(0, 144, 208, 0.7)), url("/restaurant.jpg");
  background-size: cover;
  background-position: center;
}
.login__card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 30vw;
  min-width: 50rem;
  min-height: fit-content;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
  padding: 4rem;
}
.login__card--input {
  margin-bottom: 2rem;
}
.login__card--input input {
  background-color: #f8f5f5;
  border: none;
  direction: ltr;
  text-align: right;
}
.login--admin {
  background-image: linear-gradient(to bottom left, rgba(7, 7, 7, 0.9), rgba(18, 18, 19, 0.9)), url("/restaurant.jpg");
}
@media screen and (max-width: 600px) {
  .login {
    position: relative;
    height: 100vh;
    width: 100vw;
    background-image: linear-gradient(to bottom left, rgba(0, 162, 234, 0.7), rgba(0, 144, 208, 0.7)), url("/restaurant.jpg");
    background-size: cover;
    background-position: initial;
  }
  .login__card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    min-width: 90%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
    padding: 3rem;
  }
  .login__card--input {
    margin-bottom: 1rem;
  }
  .login__card--input input {
    background-color: #f8f5f5;
    border: none;
  }
}
.selected-col-day {
  z-index: -3;
  width: 100%;
  padding: 0 12px;
  height: 25rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-left: 1px solid #D9F2FC;
  border-right: 1px solid #D9F2FC;
  background-color: #f2fafe;
  border-radius: 1rem;
}
.selected-col-day__last {
  height: 17rem;
  top: -10rem;
  left: 50%;
  transform: translate(-50%, 0);
}
@media print {
  .selected-col-day {
    display: none;
  }
}
.work-schedule {
  width: 100%;
  position: relative;
  background-color: white;
  border-radius: 15px;
  margin: auto;
  padding: 1rem;
}
@media screen and (max-width: 600px) {
  .work-schedule {
    padding: 0;
    width: 100%;
  }
}
.work-schedule h2 span {
  font-size: 1.4rem;
  font-weight: 500;
  border-radius: 5px;
  border: 1px solid;
  padding: 0 0.5rem;
  margin-right: 1rem;
}
.work-schedule__container {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.work-schedule--table {
  text-align: center;
  direction: ltr;
  width: 100%;
  background-color: white;
  z-index: 0;
  padding-top: 0.6rem;
  padding-bottom: 7rem;
  position: relative;
}
@media print {
  .work-schedule--table {
    padding: 1rem;
  }
}
.work-schedule--table__h-print {
  text-decoration: underline;
  margin-bottom: 2rem;
  display: none;
}
@media print {
  .work-schedule--table__h-print {
    display: block;
  }
}
.work-schedule__cell {
  background-color: transparent;
  border-radius: 6px;
  text-align: center;
}
.work-schedule__cell__transfer {
  border: 2px dashed rgba(88, 88, 88, 0.774) !important;
}
.work-schedule__cell__icon {
  font-size: 1.6rem;
  color: #C1C1C1;
}
@media screen and (max-width: 600px) {
  .work-schedule__cell__icon {
    font-size: 1.4rem;
  }
}
.work-schedule__cell--notes {
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 76px;
  margin: auto;
  padding: 0;
  direction: rtl;
  border-radius: 5px;
  border: 1px solid #EAEAEA;
}
@media print {
  .work-schedule__cell {
    overflow: unset;
    text-overflow: unset;
    white-space: unset;
    max-width: 100%;
  }
}
.work-schedule__cell__color--trim {
  color: #58b1ff;
}
@media print {
  .work-schedule__cell__color--trim {
    color: inherit;
  }
}
.work-schedule__cell__color--dark-blue {
  color: rgba(43, 6, 250, 0.8156862745);
}
@media print {
  .work-schedule__cell__color--dark-blue {
    color: inherit;
  }
}
.work-schedule__cell__color--manual {
  color: #f65745;
}
@media print {
  .work-schedule__cell__color--manual {
    color: inherit;
  }
}
.work-schedule__cell__color--clock {
  color: #47b90b;
}
@media print {
  .work-schedule__cell__color--clock {
    color: inherit;
  }
}
.work-schedule__cell__color--planned {
  color: #a09e9e;
}
.work-schedule__cell--occupied {
  background-color: #F7F7F7;
  border: 1px solid #EAEAEA;
}
@media screen and (max-width: 600px) {
  .work-schedule__cell--occupied {
    font-size: 1.1rem;
  }
  .work-schedule__cell--occupied .btn {
    font-size: 1.1rem;
  }
}
.work-schedule__cell--trim {
  background-color: #F2FAFE;
  border: 1px solid #D9F2FC;
}
.work-schedule__cell--planned {
  background-color: #f5f5f5;
}
@media screen and (max-width: 600px) {
  .work-schedule__cell--planned {
    font-size: 1.1rem;
  }
  .work-schedule__cell--planned .btn {
    font-size: 1.1rem;
  }
}
@media print {
  .work-schedule__cell--planned {
    visibility: hidden;
  }
}
.work-schedule__cell--clock {
  background-color: #F5FDF2;
  border: 1px solid #ECFBE6;
}
.work-schedule__cell--manual {
  background-color: #FFF2F7;
  border: 1px solid #FFD9E8;
}
.work-schedule__cell--empty button {
  visibility: hidden;
  background-color: #fafafa;
  padding: 1rem !important;
}
.work-schedule__cell--empty:hover button {
  visibility: visible;
}
.work-schedule__cell--empty__disable {
  display: none;
}
.work-schedule__cell-edit {
  background-color: #fff;
  border-radius: 6px;
  padding: 0.6rem 0;
  position: relative;
  margin: 0 0.8rem;
  border: 1px solid #c1c1c1;
}
@media screen and (max-width: 600px) {
  .work-schedule__cell-edit {
    margin: 0 2px;
    padding: 2px;
    font-size: 1rem;
  }
  .work-schedule__cell-edit button {
    font-size: 1rem;
  }
  .work-schedule__cell-edit .hours-input {
    padding: 0.3rem 0.5rem;
  }
}
.work-schedule__cell-edit__icon {
  color: #FFCE00;
}
.work-schedule__cell-edit--edit-mode {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  display: flex;
  transition: opacity 1ms;
}
@media screen and (max-width: 600px) {
  .work-schedule__cell-edit--edit-mode {
    justify-content: center;
    display: flex;
    position: relative;
    top: initial;
    left: initial;
    transform: translate(0, 0);
    opacity: 1;
  }
}
.work-schedule__cell-edit--occupied {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.work-schedule__cell-edit--empty button {
  cursor: pointer;
}
.work-schedule__cell-edit:hover .work-schedule__cell-edit--edit-mode {
  opacity: 1;
}
.work-schedule--day {
  line-height: 1;
  position: -webkit-sticky;
  position: sticky;
  border-color: white;
  top: 0rem;
  z-index: 1;
  margin-bottom: 0rem !important;
  padding: 0.8rem 0;
  background-color: #fff;
}
@media screen and (max-width: 600px) {
  .work-schedule--day {
    padding-bottom: 0;
    padding: 0.5rem 0;
  }
}
@media print {
  .work-schedule--day {
    position: relative;
    top: 0;
  }
}
.work-schedule--day h3 {
  font-size: 3.6rem;
  font-weight: 900;
}
@media screen and (max-width: 1367px) {
  .work-schedule--day h3 {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 600px) {
  .work-schedule--day h3 {
    font-size: 2.6rem;
  }
}
@media print {
  .work-schedule--day h3 {
    font-size: 2.8rem;
  }
}
.work-schedule--day__selected {
  width: 100%;
  padding: 1rem 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #f2fafe;
  border-left: 1px solid #D9F2FC;
  border-right: 1px solid #D9F2FC;
  border-top: 1px solid #D9F2FC;
  border-radius: 1rem 1rem 0 0;
  color: #0090d0;
  z-index: 2;
}
@media print {
  .work-schedule--day__selected {
    background-color: transparent;
    border: none;
    color: #585858;
  }
}
.work-schedule--shift--name {
  font-size: 2.2rem;
  font-weight: 800;
  border-bottom: 2px solid #3E3E3E;
}
@media screen and (max-width: 600px) {
  .work-schedule--shift--name {
    font-size: 1.6rem;
  }
}
@media print {
  .work-schedule--shift--name {
    font-size: 1.8rem;
  }
}
.work-schedule--shift--edit {
  display: inline;
  display: flex;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: #0090d0;
  border-bottom: 2px dashed #0090d0;
  cursor: pointer;
}
.work-schedule--department {
  padding: 0;
  border-bottom: 2px solid #0090d0;
}
.work-schedule--department h5 {
  display: inline;
  font-size: 1.5rem;
  font-weight: 800;
  color: #0090d0;
}
@media screen and (max-width: 600px) {
  .work-schedule--department h5 {
    font-size: 1.2rem;
  }
}
.work-schedule--shift-container {
  padding: 20px;
}
.work-schedule--shift-row {
  display: flex;
  align-items: center;
  padding-bottom: 5px;
}
.work-schedule--notes-row {
  display: flex;
  justify-content: space-around;
}
.daily-note {
  text-align: center;
  border-radius: 5px;
}
.employees {
  width: 13%;
  max-width: 18rem;
  min-width: 16rem;
  height: 100%;
  max-height: 50rem;
  background-color: #fff;
  position: sticky;
  position: -webkit-sticky;
  top: 7rem;
  border-radius: 15px;
}
.employees--list {
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
  max-height: calc(100vh - 450px);
  /* Hide scrollbar for Chrome, Safari and Opera */
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.employees--list::-webkit-scrollbar {
  display: none;
}
.employees--request-cell {
  position: relative;
  padding: 0 2px;
}
.employees--request-cell__header {
  background-color: #F7F7F7;
}
.employees--tab {
  position: relative;
  width: 100%;
  height: 4rem;
  border: none;
  background-color: #fafafa;
  border-radius: 5px;
  line-height: 1.3;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.employees--tab__green {
  display: inline-block;
  height: 4rem;
  width: 0.4rem;
  background-color: #b8e99e;
  border-radius: 0 5px 5px 0;
}
.employees--tab__icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  left: 1rem;
  padding: 0.15rem 0.8rem;
  color: #585858;
  background-color: #EAEAEA;
  border-radius: 10px;
}
.employees--tab p {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
  display: inline-block;
}
.employees--tab span {
  font-weight: 700;
}
.tab--dragged {
  background-color: #f8f5f5;
}
.editWorker-list {
  width: fit-content;
  width: 100%;
  max-height: 26rem;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 1rem;
  height: 100%;
  /* Hide scrollbar for Chrome, Safari and Opera */
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.editWorker-list::-webkit-scrollbar {
  display: none;
}
.tips--text-input {
  background-color: #F7F7F7;
  border: none;
}
.tips--text-input::placeholder {
  font-weight: 600;
}
.tips--text-input__error {
  background-color: #fff0f0;
}
.tips--note {
  direction: rtl;
  border: 3px solid black;
  display: none;
  color: black;
  padding: 1rem;
  font-weight: 500;
  margin: 2rem 2rem;
}
@media print {
  .tips--note {
    display: inline-block;
  }
}
@media print {
  .tips--table {
    direction: rtl;
  }
}
.tips--table__h-print {
  text-align: center;
  text-decoration: underline;
  margin-bottom: 2rem;
  display: none;
}
@media print {
  .tips--table__h-print {
    display: block;
  }
}
.tips--table table {
  width: 100%;
  border-spacing: 0;
  text-align: right;
  padding: 1rem 0.8rem;
}
@media screen and (max-width: 600px) {
  .tips--table table {
    width: 110rem;
    padding: 1rem 0;
  }
}
.tips--table th {
  padding: 0.8rem 0;
  border-bottom: 1px solid black;
  font-weight: 700;
}
.tips--table td {
  padding: 0.8rem 0;
}
.tips--table--odd {
  background-color: #F7F7F7;
}
.schedule-employee {
  background-color: transparent;
  border-radius: 6px;
  text-align: center;
}
.schedule-employee__cell--occupied {
  background-color: #fff;
  border: 2px solid #F7F7F7;
}
.schedule-employee__cell--occupied i {
  display: none;
}
.schedule-employee__cell--user {
  background-color: #fff;
  border: 2px solid #00a2ea;
}
@media screen and (max-width: 600px) {
  .schedule-employee__cell--user {
    border-width: 1px;
  }
}
.schedule-employee__cell--user strong {
  color: #00a2ea;
}
.schedule-employee__cell--user__actual {
  border: 2px solid #47cc00;
}
@media screen and (max-width: 600px) {
  .schedule-employee__cell--user__actual {
    border-width: 1px;
  }
}
.schedule-employee__cell--user__actual strong {
  color: #47cc00;
}
.schedule-employee__cell--user__replace {
  border: 2px solid #ffcc00;
}
@media screen and (max-width: 600px) {
  .schedule-employee__cell--user__replace {
    border-width: 1px;
  }
}
.schedule-employee__cell--user__replace strong {
  color: #ffcc00;
}
.schedule-employee__cell--user__replace-destination {
  border: 2px solid #ff6600;
}
@media screen and (max-width: 600px) {
  .schedule-employee__cell--user__replace-destination {
    border-width: 1px;
  }
}
.schedule-employee__cell--user__replace-destination strong {
  color: #ff6600;
}
.schedule-employee__cell--empty button {
  visibility: hidden;
  background-color: #fafafa;
  padding: 4px 0px;
  border-radius: 6px;
}
.print-schedule {
  display: block;
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}
.print-schedule .work-schedule--day {
  position: relative;
  top: 0;
}
.print-schedule .work-schedule--table {
  background-color: white;
}
.print-schedule .work-schedule__cell--planned {
  display: none;
}
.print-schedule .work-schedule__cell__color--trim {
  color: inherit;
}
.print-schedule .work-schedule__cell__color--clock {
  color: inherit;
}
.print-schedule .work-schedule__cell__color--manual {
  color: inherit;
}
.print-schedule .work-schedule__cell__color--magenta {
  color: inherit;
}
.print-schedule .work-schedule--day__selected {
  background-color: transparent;
  border: none;
  color: #585858;
}
.print-schedule .selected-col-day {
  display: none;
}
.edit-role-name:hover .btn--xv__wrapper {
  visibility: visible;
}
.work-schedule-to-print-table {
  background-color: white;
  width: 100%;
  direction: rtl;
  display: none;
}
.work-schedule-to-print-table .table--depth-first {
  font-size: x-large;
}
.work-schedule-to-print-table .table--depth-second {
  font-size: large;
}
.work-schedule-to-print-table table {
  width: 100%;
  text-align: center;
  font-size: 12px;
  margin: 1rem 0 0 0;
  padding: 0;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid black;
}
.work-schedule-to-print-table table td,
.work-schedule-to-print-table table tr,
.work-schedule-to-print-table table th {
  border: solid 1px black;
}
.work-schedule-to-print-table table th {
  font-size: larger;
  width: 12.5%;
}
@media print {
  .work-schedule-to-print-table {
    display: table;
  }
}
.replace-table table th,
.replace-table table td {
  text-align: center;
  padding: 0.6rem 0.2rem;
}
.replace-table table th p,
.replace-table table td p {
  white-space: nowrap;
}
.scheduleEmployeerClosed .mainTytleClosed {
  display: flex;
  justify-content: center;
  text-align: center;
  color: #585858;
  margin: 3rem 0;
}
.scheduleEmployeerClosed .flexDirectionGap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.scheduleEmployeerClosed h1 {
  text-align: center;
}
.scheduleEmployeerClosed .cardScheduleClosed {
  display: flex;
  flex-direction: column;
  flex: 1;
  background-color: #f7f7f7;
  padding: 2rem 1rem;
  border: 2px solid #eee;
  border-radius: 0.8rem;
}
.scheduleEmployeerClosed .cardTitleClosed {
  color: rgb(0, 144, 208);
  font-weight: bold;
}
@media only screen and (min-width: 960px) {
  .scheduleEmployeerClosed .flexDirectionGap {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    flex-wrap: wrap;
  }
}
.lockBtnForObligateToFork {
  font-size: 1.6rem;
  position: absolute;
  right: 4.9rem;
  width: unset;
  height: unset;
  margin: 0;
  background-color: transparent;
}
@media (max-width: 1282px) {
  .lockBtnForObligateToFork {
    right: 1rem;
  }
}
@media (max-width: 1200px) {
  .lockBtnForObligateToFork {
    right: 12rem;
  }
}
@media (max-width: 900px) {
  .lockBtnForObligateToFork {
    right: 4rem;
  }
}
@media (max-width: 560px) {
  .lockBtnForObligateToFork {
    right: 2.5rem;
  }
}
@media (max-width: 420px) {
  .lockBtnForObligateToFork {
    right: 2rem;
  }
}
@media (max-width: 386px) {
  .lockBtnForObligateToFork {
    right: 1.5rem;
  }
}
.reports {
  width: 96%;
  height: 100%;
  position: relative;
  background-color: white;
  border-radius: 15px;
  margin: auto;
  padding: 2rem;
}
@media screen and (max-width: 600px) {
  .reports {
    width: 100%;
    padding: 0;
    margin: 0;
  }
}
.submission {
  padding-bottom: 1rem;
  background-color: white;
}
.submission--mobile__tab-container {
  position: relative;
  margin-bottom: 1rem;
  height: fit-content;
  display: flex;
  flex-direction: column-reverse;
}
.submission--mobile__tab {
  background-color: #f7f7f7;
  margin-top: 0.5rem;
  padding: 0.5rem 1.2rem 0.5rem 1rem;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.submission--mobile__tab h3 {
  text-align: center;
  font-size: 3.2rem;
  line-height: 1;
}
.submission--mobile__tab .requiredForWork {
  position: relative;
}
.submission--mobile__tab .requiredForWork h4 {
  position: absolute;
  white-space: nowrap;
  transform: translate(-20%, -50%);
}
@media (max-width: 420px) {
  .submission--mobile__tab .requiredForWork {
    position: relative;
  }
  .submission--mobile__tab .requiredForWork h4 {
    position: absolute;
    white-space: normal;
    transform: translate(10%, -50%);
  }
}
.submission--mobile--vacation {
  font-weight: 500;
  border-radius: 10px;
  border: 1px solid;
  height: 3.8rem;
  background-color: white;
  width: calc(100% - 100px);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.submission--mobile--vacation .btn--icon:hover {
  background-color: unset !important;
}
.submission--mobile--vacation i {
  margin-left: 0.5rem;
}
.submission--mobile--vacation__pending {
  color: #ffcc00;
  border-color: #ffcc00;
}
.submission--mobile--vacation__approved {
  color: #47cc00;
  border-color: #47cc00;
}
.submission--mobile--vacation__cancel {
  color: #db1e1e;
  border-color: #db1e1e;
}
.submission--table {
  border-collapse: separate;
}
.submission--table--selected-row {
  border: 2px solid rgba(34, 183, 247, 0.773) !important;
}
.submission--table table {
  table-layout: fixed;
}
.submission--table table th {
  top: 0;
  right: 0;
  position: sticky;
  text-align: center !important;
  border-bottom: 1px solid rgba(116, 116, 116, 0.5803921569);
  border-right: 1px solid #dfdddd;
  border-left: 1px solid #dfdddd;
  background-color: white;
  width: unset;
}
.submission--table table th:first-child {
  width: 100px;
  border: none;
  border-bottom: 1px solid rgba(116, 116, 116, 0.5803921569);
}
.submission--table table th:nth-child(2) {
  width: 100px;
  padding: 1rem !important;
  border: none;
  border-bottom: 1px solid rgba(116, 116, 116, 0.5803921569);
}
.submission--table table th:nth-child(3) {
  width: 100px;
  padding: 1rem !important;
  border: none;
  border-bottom: 1px solid rgba(116, 116, 116, 0.5803921569);
}
.submission--table table th:nth-child(4) {
  width: 100px;
  padding: 1rem !important;
  border: none;
  border-bottom: 1px solid rgba(116, 116, 116, 0.5803921569);
}
.submission--table table td {
  border-right: 1px solid #dfdddd;
  text-align: center !important;
}
.submission--table table td:first-child {
  width: 1px;
  border: none;
}
.submission--table table td:nth-child(2) {
  width: 1px;
  padding: 1rem !important;
  border: none;
}
.submission--table table td:nth-child(3) {
  width: 1px;
  padding: 1rem !important;
  border: none;
}
.submission--table table td:nth-child(4) {
  border-right: none;
}
.submission--disabled {
  color: rgb(204, 8, 8);
}
.submission--required {
  font-weight: bold;
}
.submission-modal--subCell {
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #dfdddd;
}
.submission-modal--subCell p {
  line-height: 1.4;
  font-weight: 500;
  color: #0090d0;
}
.submission-modal--eventCell {
  height: 6rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-bottom: 1px solid #dfdddd;
}
.submission-modal--eventCell p {
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 0.5rem;
  font-weight: 500;
}
.submission-modal--noteCell {
  height: 3rem;
  font-weight: 500;
  font-size: 1.2rem;
  color: black;
}
.permissions {
  min-height: 100vh;
  padding: 2rem;
  background-color: #fff;
}
@media only screen and (max-width: 600px) {
  .permissions .outside_alerter {
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .permissions {
    padding: 0;
  }
}
.permissions--filter__field {
  margin: 0.5rem;
}
@media screen and (max-width: 600px) {
  .permissions--filter__field {
    width: 100%;
    margin: 2px 0;
  }
  .permissions--filter__field .btn {
    width: 100%;
    margin: 0;
  }
}
.permissions--cards-container {
  padding: 2rem 5rem;
}
@media screen and (max-width: 600px) {
  .permissions--cards-container {
    padding: 0;
  }
}
.permissions--form-filter {
  padding: 1rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
@media screen and (max-width: 600px) {
  .permissions--form-filter {
    flex-direction: column;
    width: 100%;
    padding: 0;
  }
  .permissions--form-filter div {
    width: 100%;
    margin: 0.2rem 0;
  }
  .permissions--form-filter div .btn {
    width: 100%;
    margin: 0;
  }
}
.permissions--form-card {
  width: calc(20% - 2rem - 4px);
  margin: 1rem;
  border-radius: 5px;
  border: 2px solid #c1c1c1;
  padding: 1rem;
}
@media screen and (max-width: 600px) {
  .permissions--form-card {
    width: 100%;
    margin: 0.5rem 0;
  }
}
.active-users--form {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
@media screen and (max-width: 600px) {
  .active-users--form {
    flex-direction: column;
    align-items: center;
  }
}
.active-users--form-col .btn {
  margin: 0;
}
@media screen and (max-width: 600px) {
  .active-users--form-col .btn {
    width: 100%;
    margin: 0;
  }
}
.create-new {
  padding: 2rem;
  background-color: #fff;
  height: calc(100vh - 6rem);
}
@media screen and (max-width: 600px) {
  .create-new {
    padding: unset;
  }
}
.create-new--form {
  margin: auto 2rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
  padding: 3rem;
}
@media screen and (max-width: 600px) {
  .create-new--form {
    width: 100%;
    margin: 0;
  }
}
.create-new--form-content {
  direction: rtl;
  padding: 1rem;
  font-size: 1.4rem;
}
.orders {
  width: 96%;
  height: 100%;
  position: relative;
  background-color: white;
  border-radius: 15px;
  margin: auto;
  padding: 2rem;
}
@media screen and (max-width: 600px) {
  .orders {
    width: 100%;
    padding: 0;
  }
}
.orders--container {
  margin-top: 3.5rem;
  min-height: 60vh;
  border-top: 3px solid #EAEAEA;
  padding: 2rem 0;
}
@media screen and (max-width: 1281px) {
  .orders--manage table {
    margin-top: 1rem;
  }
}
.orders--manage table th {
  width: auto;
}
.orders--manage table td p {
  line-height: 1.4;
  padding: 0.5rem;
}
.orders--manage table td:last-child {
  width: 1px;
  padding: 0;
  padding-left: 0.5rem;
}
.orders--manage table td:last-child .btn {
  margin: 1px;
}
@media screen and (max-width: 1281px) {
  .orders--manage {
    min-height: unset;
  }
}
.orders .slide {
  transition: max-height 0.7s ease-in-out;
}
.orders--first-section {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.orders--first-section-1 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.orders h1 {
  font-size: 26px;
  margin: 0;
}
@media screen and (max-width: 600px) {
  .orders h1 {
    font-size: 1.8rem;
    font-weight: 700;
  }
}
.orders--form {
  position: -webkit-sticky;
  position: sticky;
  top: 7rem;
  margin-top: 0.8rem;
  text-align: center;
  padding: 3rem 1rem;
  width: calc(40% - 12rem);
  border-radius: 10px;
  background-color: rgba(247, 247, 247, 0.9);
  height: fit-content;
  font-weight: 500;
}
.orders--form--cartButton {
  border-radius: 100%;
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  background-color: #00a2ea;
  color: white;
  font-size: 2rem;
  width: 5rem;
  height: 5rem;
  z-index: 1;
}
.orders--form .outside_alerter {
  width: 100%;
}
.orders--form .outside_alerter .dropdown-select {
  min-width: unset;
  font-size: 1.3rem;
  padding: 0.8;
}
@media only screen and (max-width: 768px) {
  .orders--form .outside_alerter .dropdown-select {
    font-size: 1.1rem;
  }
  .orders--form .outside_alerter .dropdown-select .dropdown-select__icon {
    padding: 0 0.2rem;
  }
}
.orders--form .frequency-input {
  position: relative;
  padding: 0.5rem 0.5rem 0.7rem 0.5rem;
  border-radius: 10px;
  margin-bottom: 0.6rem;
  background-color: white;
  width: 100%;
}
.orders--form .frequency-input-container {
  width: 90%;
}
.orders--form .number-input {
  margin: auto;
  font-size: 1.2rem;
}
.orders--form .number-input button {
  height: 2.6rem;
  width: 2.6rem;
}
.orders--form .number-input input {
  height: 2.6rem;
  width: 4rem;
  border-radius: 0;
  text-align: center;
}
@media only screen and (max-width: 600px) {
  .orders--form .number-input {
    font-size: 1.2rem;
  }
  .orders--form .number-input button {
    height: 2rem;
    width: 1.5rem;
    font-size: 1rem;
  }
  .orders--form .number-input input {
    font-size: 1.2rem;
    font-weight: 500;
    height: 2rem;
    width: 3rem;
    border-radius: 0;
    text-align: center;
    direction: ltr;
    padding: 0;
    font-weight: 700;
  }
}
.orders--form--hours {
  width: 80%;
  text-align: right;
  padding: 0.5rem;
  padding-left: 5rem;
  padding-bottom: 1.5rem;
  border: 3px solid #EAEAEA;
  border-radius: 5px;
  margin-top: 0.5rem;
}
@media (min-width: 1200px) and (max-width: 1526px) {
  .orders--form {
    width: calc(70% - 12rem);
  }
}
@media screen and (max-width: 1281px) {
  .orders--form {
    margin: 0;
    margin-bottom: 2rem;
    width: 100%;
    padding: 2.5rem 0rem;
    position: relative;
    top: unset;
  }
}
.orders--form h2 {
  margin-bottom: 1rem;
}
.orders--form--items {
  width: 80%;
  padding: 0.7rem;
  border-radius: 7px;
  text-align: right;
  margin-bottom: 1.5rem;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1281px) {
  .orders--form--items {
    width: 90%;
  }
}
@media screen and (min-width: 600px) and (max-width: 1281px) {
  .orders--form--items {
    font-size: 1.4rem;
  }
}
.orders--form--line {
  width: 70%;
  margin: 1rem 0;
  border-bottom: 3px solid #EAEAEA;
}
.orders--form--submit {
  width: 80%;
  padding-left: 0;
  padding-right: 0;
}
.orders--form--submit--mt-1 {
  width: 80%;
  padding-left: 0;
  padding-right: 0;
  margin-top: 1rem;
}
.orders--form label {
  width: 80%;
  text-align: right;
}
.orders--form textarea {
  width: 80%;
  margin-top: 1rem;
  resize: none;
  border: none;
  background-color: #fffef0;
  outline: none;
  padding: 1rem;
  border-radius: 5px;
}
.orders--tabs {
  margin: 0 !important;
  border-bottom: 2px solid #585858;
}
@media screen and (max-width: 1281px) {
  .orders--tabs .col {
    width: 25%;
  }
}
@media screen and (max-width: 600px) and (min-width: 768px) {
  .orders--tabs .col {
    width: 33%;
  }
}
.orders--tabs--option {
  margin: 1px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0.8rem;
  width: 13rem;
  text-align: right;
  background-color: #F7F7F7;
}
@media screen and (max-width: 1281px) {
  .orders--tabs--option {
    width: 100%;
  }
}
.orders--tabs--option:hover {
  background-color: #EAEAEA;
}
.orders--tabs--option div {
  width: calc(100% - 29px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.orders--tabs--option i {
  padding: 0 1rem;
}
.orders--tabs--option__selected {
  color: #fff;
  background-color: #585858;
}
.orders--tabs--option__selected:hover {
  background-color: #676769;
}
.orders--categories {
  width: 22rem;
  margin-top: 0.7rem;
  position: -webkit-sticky;
  position: sticky;
  top: 7rem;
  display: flex;
  flex-direction: column;
  max-height: 60rem;
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  /* Hide scrollbar for Chrome, Safari and Opera */
}
.orders--categories__list {
  width: 100%;
}
.orders--categories__list .outside_alerter {
  width: 100%;
}
.orders--categories::-webkit-scrollbar {
  display: none;
}
.orders--categories--option {
  position: relative;
  font-weight: 500;
  padding-left: 0;
  padding-right: 0;
  text-align: right;
  border-bottom: 2px solid #EAEAEA;
  border-radius: 0;
}
.orders--categories--option__selected {
  color: #00b1ff;
  font-weight: 700;
  font-size: 1.4rem;
}
.orders--categories--option__selected div {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 3rem;
  border-radius: 0 10px 10px 0;
  background-color: #00b1ff;
}
.orders--categories--option i {
  position: absolute;
  left: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
}
.orders--items {
  width: calc(60% - 12rem);
  margin: 2rem;
  margin-top: 0;
}
.orders--items__blank {
  height: 813px;
}
.orders--items__blank p {
  width: fit-content;
  font-size: 2rem;
  margin: 15rem auto;
}
@media (min-width: 1200px) and (max-width: 1526px) {
  .orders--items {
    width: calc(70% - 12rem);
  }
}
@media only screen and (max-width: 1281px) {
  .orders--items {
    width: 100%;
    margin: 0;
  }
  .orders--items table {
    width: 100%;
    border-spacing: 0 0.4rem;
    font-size: 1rem;
  }
  .orders--items table tr {
    background-color: #F7F7F7;
    margin: 0.75rem 0.75rem;
  }
  .orders--items table th {
    text-align: center;
    padding: 0.7rem 0.3rem;
    font-size: 1.2rem;
  }
  .orders--items table th:last-child {
    border-radius: 10px 0 0 10px;
    width: 1px;
  }
  .orders--items table th:first-child {
    border-radius: 0 10px 10px 0;
    width: 1px;
  }
  .orders--items table th .fa-sort-down,
  .orders--items table th .fa-sort-up,
  .orders--items table th .fa-sort {
    padding: 0.3rem;
    font-size: 1.3rem;
  }
  .orders--items table td {
    padding: 0.3rem;
    text-align: center;
  }
  .orders--items table td p {
    font-size: 1.1rem;
    font-weight: 500;
  }
  .orders--items table td p b {
    font-size: 1.3rem;
  }
  .orders--items table td img {
    width: 3.4rem;
  }
  .orders--items table td:first-child {
    border-radius: 0 10px 10px 0;
    width: 1px;
    padding: 0 1.25rem 0 0.75rem;
  }
  .orders--items table td:first-child i {
    font-size: 1.2rem;
  }
  .orders--items table td:first-child i:hover {
    cursor: pointer;
    color: #00a2ea;
  }
  .orders--items table td:nth-child(2) {
    width: 1px;
  }
  .orders--items table td:nth-child(3) {
    width: 1px;
  }
  .orders--items table td:nth-child(3) div p {
    max-width: 120px;
  }
  .orders--items table td:nth-child(3) div b {
    font-size: 1.4rem;
    width: 100%;
  }
  .orders--items table td:nth-child(4), .orders--items table td:nth-child(5) {
    width: 1px;
    padding: 0;
  }
  .orders--items table td:last-child {
    border-radius: 10px 0 0 10px;
    width: 1px;
  }
  .orders--items table td:last-child .number-input input {
    font-size: 1.4rem !important;
    font-weight: 700;
    width: 2.6rem;
    height: 2.6rem;
    padding: 0;
  }
  .orders--items table td:last-child .number-input button {
    font-size: 1.1rem;
    width: 2.6rem;
    height: 2.6rem;
    padding: 0;
  }
}
@media only screen and (min-width: 768px) {
  .orders--items table {
    width: 100%;
    border-spacing: 0 0.75rem;
  }
  .orders--items table th {
    text-align: center;
    padding: 0 1rem;
    font-size: 1.4rem;
  }
  .orders--items table th:last-child {
    border-radius: 10px 0 0 10px;
    width: 1px;
  }
  .orders--items table th:first-child {
    border-radius: 0 10px 10px 0;
    width: 1px;
  }
  .orders--items table th .fa {
    padding: 0.5rem;
  }
  .orders--items table tr {
    height: 7rem;
    background-color: #F7F7F7;
    margin: 0.75rem 0.75rem;
  }
  .orders--items table td {
    padding: 0 0.5rem;
    text-align: center;
  }
  .orders--items table td p {
    font-size: 1.4rem;
    font-weight: 500;
  }
  .orders--items table td img {
    width: 6rem;
  }
  .orders--items table td:first-child {
    border-radius: 0 10px 10px 0;
    width: 1px;
    padding: 0 3rem 0 1.5rem;
  }
  .orders--items table td:first-child i {
    font-size: 1.6rem;
    padding: 0.5rem;
  }
  .orders--items table td:first-child i:hover {
    cursor: pointer;
    color: #00a2ea;
  }
  .orders--items table td:nth-child(2) {
    width: 1px;
  }
  .orders--items table td:nth-child(4) {
    text-align: right;
    width: 1px;
    white-space: nowrap;
  }
  .orders--items table td:last-child {
    border-radius: 10px 0 0 10px;
    width: 1px;
  }
}
.orders--suppliers {
  padding: 2rem;
}
@media screen and (max-width: 1281px) {
  .orders--suppliers {
    padding: 0.8rem 0rem;
  }
}
.orders--suppliers--selected_sup {
  position: relative;
  border: 2px solid #00a2ea;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 6rem;
  background-color: #f7f7f7;
  border-radius: 10px;
  font-size: 1.4rem;
  font-weight: 500;
  transition: width 0.7s ease-in-out, border-color 0.7s ease-in-out, border-width linear 0.7s;
}
.orders--suppliers--selected_sup i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.6rem;
  left: 2.5rem;
}
.orders--suppliers--selected_sup__mobile {
  border-radius: 5px;
  height: 4rem;
}
.orders--suppliers--selected_sup__mobile i {
  font-size: 1.5rem;
  left: 1.5rem;
}
.orders--suppliers--selected_sup__hidden {
  width: 0;
  border-color: transparent;
  border-width: 0;
}
.orders--suppliers--selected_sup__hidden i {
  display: none;
}
.orders--suppliers--rows {
  margin: 0 !important;
}
.orders--suppliers--tooltip {
  text-align: center;
}
.orders--suppliers--tooltip table {
  margin: auto;
  border: 1px solid #00a2ea;
  text-align: center;
  font-weight: 500;
  min-width: 20rem;
}
.orders--suppliers--tooltip table td {
  border: 1px solid #00a2ea;
}
.orders--suppliers--tooltip table th {
  border: 1px solid #00a2ea;
  width: 85px;
}
.orders--suppliers--tabs {
  position: relative;
  display: flex;
  justify-content: space-around;
  min-height: 8rem;
  margin: 0.75rem 0.75rem;
  width: calc(25% - 1.5rem);
  background-color: #F7F7F7;
  border-radius: 10px;
  cursor: pointer;
}
.orders--suppliers--tabs__view-1 {
  flex-direction: column;
  align-items: center;
  width: calc(50% - 0.4rem);
  margin: 0.2rem;
  padding: 0.2rem;
  min-height: 11vh;
  text-align: center;
  position: relative;
}
.orders--suppliers--tabs__view-1 p {
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.4rem;
}
.orders--suppliers--tabs__view-1 .orders--suppliers--tabs__img {
  width: unset;
  height: unset;
  display: unset;
  align-items: unset;
  justify-content: unset;
}
.orders--suppliers--tabs__view-1 .orders--suppliers--tabs__icon {
  color: #00a2ea;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  width: fit-content;
  height: fit-content;
  padding: 0.8rem;
}
.orders--suppliers--tabs__view-1 .orders--suppliers--tabs__count {
  left: 8px;
  top: 8px;
}
@media screen and (max-width: 600px) {
  .orders--suppliers--tabs__view-1 p {
    font-size: 1.2rem;
  }
  .orders--suppliers--tabs__view-1 .orders--suppliers--tabs__img {
    width: unset;
    height: unset;
    display: unset;
    align-items: unset;
    justify-content: unset;
  }
  .orders--suppliers--tabs__view-1 .orders--suppliers--tabs__img img {
    margin-top: 0.3rem;
    border-radius: 100%;
    width: 3.2rem;
    height: 3.2rem;
  }
  .orders--suppliers--tabs__view-1 .orders--suppliers--tabs__icon {
    width: 3rem;
    height: 3rem;
    color: #00a2ea;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
  }
  .orders--suppliers--tabs__view-1 .orders--suppliers--tabs__icon img {
    width: 1.8rem;
  }
  .orders--suppliers--tabs__view-1 .orders--suppliers--tabs__count {
    font-size: 1.2rem;
    width: 1.6rem !important;
    height: 1.6rem !important;
    left: 6px;
    top: 6px;
  }
}
.orders--suppliers--tabs__selected {
  border: 2px solid #00a2ea;
}
.orders--suppliers--tabs:hover {
  background-color: #EAEAEA;
}
.orders--suppliers--tabs:active {
  transform: translateY(2px);
}
.orders--suppliers--tabs__img {
  width: 8rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orders--suppliers--tabs__img img {
  border-radius: 100%;
  width: 5.5rem;
  height: 5.5rem;
}
.orders--suppliers--tabs__title {
  width: calc(100% - 13rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.4rem;
  font-weight: 500;
}
.orders--suppliers--tabs__title .supplierAlert {
  display: none;
}
.orders--suppliers--tabs__title:hover .supplierAlert {
  display: block;
  color: #00a2ea;
}
.orders--suppliers--tabs__title:hover .supplierName {
  display: none;
}
.orders--suppliers--tabs__icon {
  width: 5rem;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00a2ea;
}
.orders--suppliers--tabs__icon img {
  width: 2.2rem;
}
.orders--suppliers--tabs__count {
  line-height: 1;
  position: absolute;
  left: -5px;
  top: -5px;
  font-size: 1.4rem;
  font-weight: 700;
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: White;
  background-color: red;
  border-radius: 100px;
}
@media screen and (max-width: 600px) {
  .orders--suppliers--tabs__count {
    width: 2rem !important;
    height: 2rem !important;
  }
}
.orders--suppliers--tabs__view-2 {
  width: 100%;
  margin: 0.3rem 0;
  align-items: center;
}
.orders--suppliers--tabs__view-2 p {
  width: fit-content;
  margin: auto;
  font-size: 1.4rem;
}
@media screen and (max-width: 600px) {
  .orders--suppliers--tabs__view-2 p {
    font-size: 1.2rem;
  }
}
.orders--suppliers--tabs__view-2 .orders--suppliers--tabs__icon {
  height: fit-content;
}
.orders--suppliers--tabs__loading {
  display: unset;
  background-color: unset;
}
.orders--suppliers--tabs__loading:hover {
  background-color: unset;
}
.events {
  width: 96%;
  height: 100%;
  position: relative;
  background-color: white;
  border-radius: 15px;
  margin: auto;
  padding: 2rem;
}
.events--categories {
  width: 22rem;
  margin-top: 0.7rem;
  position: -webkit-sticky;
  position: sticky;
  top: 7rem;
  display: flex;
  flex-direction: column;
  max-height: 60rem;
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  /* Hide scrollbar for Chrome, Safari and Opera */
}
.events--categories__list {
  width: 100%;
}
.events--categories__list .outside_alerter {
  width: 100%;
}
.events--categories::-webkit-scrollbar {
  display: none;
}
.events--categories--option {
  position: relative;
  font-weight: 500;
  padding-left: 0;
  padding-right: 0;
  text-align: right;
  border-bottom: 2px solid #EAEAEA;
  border-radius: 0;
}
.events--categories--option__selected {
  color: #00b1ff;
  font-weight: 700;
  font-size: 1.4rem;
}
.events--categories--option__selected div {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 3rem;
  border-radius: 0 10px 10px 0;
  background-color: #00b1ff;
}
.events--categories--option i {
  position: absolute;
  left: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 600px) {
  .events--items table {
    width: 100%;
    border-spacing: 0 0.75rem;
  }
  .events--items table th {
    text-align: center;
    padding: 0 1rem;
    font-size: 1.4rem;
  }
  .events--items table th:last-child {
    border-radius: 10px 0 0 10px;
    width: 1px;
  }
  .events--items table th:first-child {
    border-radius: 0 10px 10px 0;
    width: 1px;
  }
  .events--items table th .fa {
    padding: 0.5rem;
  }
  .events--items table tr {
    height: 7rem;
    background-color: #F7F7F7;
    margin: 0.75rem 0.75rem;
  }
  .events--items table td {
    padding: 0 1.5rem;
    text-align: center;
  }
  .events--items table td p {
    font-size: 1.4rem;
    font-weight: 500;
  }
  .events--items table td img {
    width: 6rem;
  }
  .events--items table td:first-child {
    border-radius: 0 10px 10px 0;
    width: 1px;
    padding: 0 3rem 0 1.5rem;
  }
  .events--items table td:first-child i {
    font-size: 1.6rem;
    padding: 0.5rem;
  }
  .events--items table td:first-child i:hover {
    cursor: pointer;
    color: #00a2ea;
  }
  .events--items table td:nth-child(2) {
    width: 1px;
  }
  .events--items table td:nth-child(4) {
    text-align: right;
    width: 1px;
    white-space: nowrap;
  }
  .events--items table td:last-child {
    border-radius: 10px 0 0 10px;
    width: 1px;
  }
}
.events--base_items {
  text-align: center;
  padding: 1rem;
  background-color: #f7f7f7;
  border-radius: 10px 10px 10px 10px;
}
.events--base_items h2 {
  margin-bottom: 1rem;
  color: #585858;
}
.events--base_items .supplier_container {
  text-align: start;
  border-radius: 5px 5px 5px 5px;
  margin-bottom: 1.3rem;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
}
.events--base_items .supplier_container p {
  font-weight: bold;
  font-size: 1.35rem;
}
.events--base_items .supplier_container .border {
  border-bottom: 1px solid #d1d1d1;
}
.events--base_items .supplier_container tr:last-child td {
  border-radius: 0px 0px 5px 5px;
}
.events--base_items .supplier_container td {
  width: 33%;
}
.events--summary {
  background-color: #e8f4fd;
  padding: 8px;
  margin-bottom: 10px;
}
.inventory {
  width: 96%;
  position: relative;
  background-color: white;
  border-radius: 15px;
  margin: auto;
  padding: 2rem;
}
@media screen and (max-width: 600px) {
  .inventory {
    width: 100%;
    padding: 0;
  }
  .inventory .MuiCardContent-root {
    padding: 0;
  }
}
.inventory--container {
  margin-top: 3.5rem;
  min-height: 60vh;
  border-top: 3px solid #EAEAEA;
  padding: 2rem 0;
}
@media screen and (max-width: 1281px) {
  .inventory--container {
    margin-top: unset;
    border-top: unset;
    padding: unset;
  }
}
@media screen and (max-width: 1281px) {
  .inventory--manage table {
    margin-top: 1rem;
  }
}
.inventory--manage table th {
  width: auto;
}
.inventory--manage table td p {
  line-height: 1.4;
  padding: 0.5rem;
}
.inventory--manage table td:last-child {
  width: 1px;
  padding: 0;
  padding-left: 0.5rem;
}
.inventory--manage table td:last-child .btn {
  margin: 1px;
}
@media screen and (max-width: 1281px) {
  .inventory--manage {
    min-height: unset;
  }
}
.inventory .slide {
  transition: max-height 0.7s ease-in-out;
}
.inventory--progress, .inventory--progress__amounts, .inventory--progress__failed, .inventory--progress__success {
  height: 3rem;
  width: 55%;
  border: 0.1rem solid white;
}
.inventory--progress__success {
  background: rgb(167, 255, 167);
}
.inventory--progress__failed {
  background: rgb(228, 132, 132);
}
.inventory--progress__amounts {
  background: rgb(248, 248, 141);
}
.inventory--upload, .inventory--upload__warning, .inventory--upload__failed, .inventory--upload__amounts, .inventory--upload__success {
  background-color: rgb(241, 244, 247);
  padding: 1rem;
  margin-bottom: 0.5rem;
}
.inventory--upload > p, .inventory--upload__warning > p, .inventory--upload__failed > p, .inventory--upload__amounts > p, .inventory--upload__success > p {
  font-size: 1.4rem;
}
.inventory--upload__success {
  border-right: 0.5rem solid green;
}
.inventory--upload__amounts {
  border-right: 0.5rem solid rgb(224, 240, 6);
}
.inventory--upload__failed {
  border-right: 0.5rem solid red;
}
.inventory--upload__warning {
  border-right: 0.5rem solid #ffd700;
}
.inventory--first-section {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 1rem 0;
}
@media screen and (max-width: 600px) {
  .inventory--first-section {
    padding: unset;
    flex-direction: column;
    align-items: center;
  }
  .inventory--first-section .ios-segmented-control {
    width: 100%;
    margin-bottom: 0.7rem;
  }
  .inventory--first-section label {
    width: 100%;
  }
  .inventory--first-section label .dropdown-select {
    max-width: unset;
  }
  .inventory--first-section .outside_alerter {
    width: 100%;
    margin: 0.25rem 0;
  }
  .inventory--first-section .btn {
    margin: 0;
    margin-top: 0.25rem;
  }
  .inventory--first-section .btn--submit {
    margin-left: 0.25rem;
  }
}
.inventory h1 {
  font-size: 26px;
  margin: 0;
}
@media screen and (max-width: 600px) {
  .inventory h1 {
    font-size: 1.8rem;
    font-weight: 700;
  }
}
.inventory--form {
  position: -webkit-sticky;
  position: sticky;
  top: 7rem;
  margin-top: 0.8rem;
  text-align: center;
  padding: 3rem 1rem;
  border-radius: 10px;
  background-color: rgba(247, 247, 247, 0.9);
  height: fit-content;
  font-weight: 500;
}
.inventory--form table.box-shadow {
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
}
.inventory--form--cartButton {
  border-radius: 100%;
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  background-color: #00a2ea;
  color: white;
  font-size: 2rem;
  width: 5rem;
  height: 5rem;
  z-index: 1;
}
.inventory--form .outside_alerter {
  width: 100%;
}
.inventory--form .outside_alerter .dropdown-select {
  min-width: unset;
  font-size: 1.3rem;
  padding: 0.8;
}
@media only screen and (max-width: 600px) {
  .inventory--form .outside_alerter .dropdown-select {
    font-size: 1.1rem;
  }
  .inventory--form .outside_alerter .dropdown-select .dropdown-select__icon {
    padding: 0 0.2rem;
  }
}
.inventory--form .frequency-input {
  position: relative;
  padding: 0.5rem 0.5rem 0.7rem 0.5rem;
  border-radius: 10px;
  margin-bottom: 0.6rem;
  background-color: white;
  width: 100%;
}
.inventory--form .frequency-input-container {
  width: 90%;
}
.inventory--form .number-input {
  margin: auto;
  font-size: 1.2rem;
}
.inventory--form .number-input button {
  height: 2.6rem;
  width: 2.6rem;
}
.inventory--form .number-input input {
  height: 2.6rem;
  width: 4rem;
  border-radius: 0;
  text-align: center;
}
@media only screen and (max-width: 600px) {
  .inventory--form .number-input {
    font-size: 1.2rem;
  }
  .inventory--form .number-input button {
    height: 2.5rem;
    width: 2.5rem;
    font-size: 1rem;
  }
  .inventory--form .number-input input {
    font-size: 1.5rem;
    font-weight: 500;
    height: 2.5rem;
    width: 3rem;
    border-radius: 0;
    text-align: center;
    direction: ltr;
    padding: 0;
    font-weight: 700;
  }
}
.inventory--form--hours {
  width: 80%;
  text-align: right;
  padding: 0.5rem;
  padding-left: 5rem;
  padding-bottom: 1.5rem;
  border: 3px solid #EAEAEA;
  border-radius: 5px;
  margin-top: 0.5rem;
}
@media screen and (max-width: 1281px) {
  .inventory--form {
    margin: 0;
    margin-bottom: 2rem;
    width: 100%;
    padding: 2.5rem 0rem;
    position: relative;
    top: unset;
  }
}
.inventory--form h2 {
  margin-bottom: 1rem;
}
.inventory--form--items {
  width: 80%;
  padding: 0.7rem;
  border-radius: 7px;
  text-align: right;
  margin-bottom: 1.5rem;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1281px) {
  .inventory--form--items {
    width: 90%;
  }
}
@media screen and (min-width: 600px) and (max-width: 1281px) {
  .inventory--form--items {
    font-size: 1.4rem;
  }
}
.inventory--form--line {
  width: 70%;
  margin: 1rem 0;
  border-bottom: 3px solid #EAEAEA;
}
.inventory--form--submit {
  width: 80%;
  padding-left: 0;
  padding-right: 0;
}
.inventory--form label {
  width: 80%;
  text-align: right;
}
.inventory--form textarea {
  width: 80%;
  margin-top: 1rem;
  resize: none;
  border: none;
  background-color: #fffef0;
  outline: none;
  padding: 1rem;
  border-radius: 5px;
}
.inventory--tabs {
  margin: 0 !important;
  border-bottom: 2px solid #585858;
}
@media screen and (min-width: 768px) and (max-width: 1281px) {
  .inventory--tabs .col {
    width: 25%;
  }
}
@media screen and (max-width: 600px) {
  .inventory--tabs .col {
    width: 33%;
  }
}
.inventory--tabs--option {
  margin: 1px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0.8rem;
  width: 13rem;
  text-align: right;
  background-color: #F7F7F7;
}
@media screen and (max-width: 1281px) {
  .inventory--tabs--option {
    width: 100%;
  }
}
.inventory--tabs--option:hover {
  background-color: #EAEAEA;
}
.inventory--tabs--option div {
  width: calc(100% - 29px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.inventory--tabs--option i {
  padding: 0 1rem;
}
.inventory--tabs--option__selected {
  color: #fff;
  background-color: #585858;
}
.inventory--tabs--option__selected:hover {
  background-color: #676769;
}
.inventory--categories {
  width: 22rem;
  margin-top: 0.7rem;
  position: -webkit-sticky;
  position: sticky;
  top: 7rem;
  display: flex;
  flex-direction: column;
  max-height: 60rem;
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  /* Hide scrollbar for Chrome, Safari and Opera */
}
.inventory--categories__list {
  width: 100%;
}
.inventory--categories__list .outside_alerter {
  width: 100%;
}
.inventory--categories::-webkit-scrollbar {
  display: none;
}
.inventory--categories--option {
  position: relative;
  font-weight: 500;
  padding-left: 0;
  padding-right: 0;
  text-align: right;
  border-bottom: 2px solid #EAEAEA;
  border-radius: 0;
}
.inventory--categories--option__selected {
  color: #00b1ff;
  font-weight: 700;
  font-size: 1.4rem;
}
.inventory--categories--option__selected div {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 3rem;
  border-radius: 0 10px 10px 0;
  background-color: #00b1ff;
}
.inventory--categories--option i {
  position: absolute;
  left: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
}
.inventory--items {
  margin: 2rem;
  margin-top: 0;
}
.inventory--items__blank {
  height: 813px;
}
.inventory--items__blank p {
  width: fit-content;
  font-size: 2rem;
  margin: 15rem auto;
}
@media only screen and (max-width: 600px) {
  .inventory--items {
    width: 100%;
    margin: 0;
  }
  .inventory--items table {
    width: 100%;
    border-spacing: 0 0.4rem;
    font-size: 1rem;
  }
  .inventory--items table tr {
    background-color: #F7F7F7;
    margin: 0.75rem 0.75rem;
  }
  .inventory--items table th {
    text-align: center;
    padding: 0.7rem 0.3rem;
    font-size: 1.2rem;
  }
  .inventory--items table th:last-child {
    border-radius: 10px 0 0 10px;
    width: 1px;
  }
  .inventory--items table th:first-child {
    border-radius: 0 10px 10px 0;
    width: 1px;
  }
  .inventory--items table th .fa-sort-down,
  .inventory--items table th .fa-sort-up,
  .inventory--items table th .fa-sort {
    padding: 0.3rem;
    font-size: 1.3rem;
  }
  .inventory--items table td {
    padding: 0.3rem;
    text-align: center;
  }
  .inventory--items table td p {
    font-size: 1.1rem;
    font-weight: 500;
  }
  .inventory--items table td p b {
    font-size: 1.3rem;
  }
  .inventory--items table td img {
    width: 3.4rem;
  }
  .inventory--items table td:first-child {
    border-radius: 0 10px 10px 0;
    padding: 0 1.25rem 0 0.75rem;
  }
  .inventory--items table td:first-child i {
    font-size: 1.2rem;
  }
  .inventory--items table td:first-child i:hover {
    cursor: pointer;
    color: #00a2ea;
  }
  .inventory--items table td:nth-child(3) div p {
    max-width: 120px;
  }
  .inventory--items table td:nth-child(3) div b {
    font-size: 1.4rem;
    width: 100%;
  }
  .inventory--items table td:nth-child(4) {
    width: 1px;
    padding: 0;
  }
  .inventory--items table td:last-child {
    border-radius: 10px 0 0 10px;
    width: 1px;
  }
  .inventory--items table td:last-child .number-input input {
    font-size: 1.4rem !important;
    font-weight: 700;
    width: 2.6rem;
    height: 2.6rem;
    padding: 0;
  }
  .inventory--items table td:last-child .number-input button {
    font-size: 1.1rem;
    width: 2.6rem;
    height: 2.6rem;
    padding: 0;
  }
}
@media only screen and (min-width: 600px) {
  .inventory--items table {
    width: 100%;
    border-spacing: 0 0.75rem;
  }
  .inventory--items table th {
    text-align: center;
    padding: 0 1rem;
    font-size: 1.4rem;
  }
  .inventory--items table th:last-child {
    border-radius: 10px 0 0 10px;
    width: 1px;
  }
  .inventory--items table th:first-child {
    border-radius: 0 10px 10px 0;
  }
  .inventory--items table th .fa {
    padding: 0.5rem;
  }
  .inventory--items table tr {
    height: 7rem;
    background-color: #F7F7F7;
    margin: 0.75rem 0.75rem;
  }
  .inventory--items table td {
    padding: 0 1.5rem;
    text-align: center;
  }
  .inventory--items table td p {
    font-size: 1.4rem;
    font-weight: 500;
  }
  .inventory--items table td img {
    width: 6rem;
  }
  .inventory--items table td:first-child {
    border-radius: 0 10px 10px 0;
    padding: 0 3rem 0 1.5rem;
  }
  .inventory--items table td:first-child i {
    font-size: 1.6rem;
    padding: 0.5rem;
  }
  .inventory--items table td:first-child i:hover {
    cursor: pointer;
    color: #00a2ea;
  }
  .inventory--items table td:nth-child(4) {
    text-align: right;
    width: 1px;
    white-space: nowrap;
  }
  .inventory--items table td:last-child {
    border-radius: 10px 0 0 10px;
    width: 1px;
  }
}
.inventory--suppliers {
  padding: 2rem;
}
@media screen and (max-width: 1281px) {
  .inventory--suppliers {
    padding: 0.8rem 0rem;
  }
}
.inventory--suppliers--selected_sup {
  position: relative;
  border: 2px solid #00a2ea;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 6rem;
  background-color: #f7f7f7;
  border-radius: 10px;
  font-size: 1.4rem;
  font-weight: 500;
  transition: width 0.7s ease-in-out, border-color 0.7s ease-in-out, border-width linear 0.7s;
}
.inventory--suppliers--selected_sup i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.6rem;
  left: 2.5rem;
}
.inventory--suppliers--selected_sup__mobile {
  border-radius: 5px;
  height: 4rem;
}
.inventory--suppliers--selected_sup__mobile i {
  font-size: 1.5rem;
  left: 1.5rem;
}
.inventory--suppliers--selected_sup__hidden {
  width: 0;
  border-color: transparent;
  border-width: 0;
}
.inventory--suppliers--selected_sup__hidden i {
  display: none;
}
.inventory--suppliers--rows {
  margin: 0 !important;
}
.inventory--suppliers--tooltip {
  text-align: center;
}
.inventory--suppliers--tooltip table {
  margin: auto;
  border: 1px solid #00a2ea;
  text-align: center;
  font-weight: 500;
  min-width: 20rem;
}
.inventory--suppliers--tooltip table td {
  border: 1px solid #00a2ea;
}
.inventory--suppliers--tooltip table th {
  border: 1px solid #00a2ea;
  width: 85px;
}
.inventory--suppliers--tabs {
  position: relative;
  display: flex;
  justify-content: space-around;
  min-height: 8rem;
  margin: 0.75rem 0.75rem;
  width: calc(25% - 1.5rem);
  background-color: #F7F7F7;
  border-radius: 10px;
  cursor: pointer;
}
.inventory--suppliers--tabs__view-1 {
  flex-direction: column;
  align-items: center;
  width: calc(50% - 0.4rem);
  margin: 0.2rem;
  padding: 0.2rem;
  min-height: 11vh;
  text-align: center;
  position: relative;
}
.inventory--suppliers--tabs__view-1 p {
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.4rem;
}
.inventory--suppliers--tabs__view-1 .orders--suppliers--tabs__img {
  width: unset;
  height: unset;
  display: unset;
  align-items: unset;
  justify-content: unset;
}
.inventory--suppliers--tabs__view-1 .orders--suppliers--tabs__icon {
  color: #00a2ea;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  width: fit-content;
  height: fit-content;
  padding: 0.8rem;
}
.inventory--suppliers--tabs__view-1 .orders--suppliers--tabs__count {
  left: 8px;
  top: 8px;
}
@media screen and (max-width: 600px) {
  .inventory--suppliers--tabs__view-1 p {
    font-size: 1.2rem;
  }
  .inventory--suppliers--tabs__view-1 .orders--suppliers--tabs__img {
    width: unset;
    height: unset;
    display: unset;
    align-items: unset;
    justify-content: unset;
  }
  .inventory--suppliers--tabs__view-1 .orders--suppliers--tabs__img img {
    margin-top: 0.3rem;
    border-radius: 100%;
    width: 3.2rem;
    height: 3.2rem;
  }
  .inventory--suppliers--tabs__view-1 .orders--suppliers--tabs__icon {
    width: 3rem;
    height: 3rem;
    color: #00a2ea;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
  }
  .inventory--suppliers--tabs__view-1 .orders--suppliers--tabs__icon img {
    width: 1.8rem;
  }
  .inventory--suppliers--tabs__view-1 .orders--suppliers--tabs__count {
    font-size: 1.2rem;
    width: 1.6rem !important;
    height: 1.6rem !important;
    left: 6px;
    top: 6px;
  }
}
.inventory--suppliers--tabs__selected {
  border: 2px solid #00a2ea;
}
.inventory--suppliers--tabs:hover {
  background-color: #EAEAEA;
}
.inventory--suppliers--tabs:active {
  transform: translateY(2px);
}
.inventory--suppliers--tabs__img {
  width: 8rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inventory--suppliers--tabs__img img {
  border-radius: 100%;
  width: 5.5rem;
  height: 5.5rem;
}
.inventory--suppliers--tabs__title {
  width: calc(100% - 13rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.4rem;
  font-weight: 500;
}
.inventory--suppliers--tabs__title .supplierAlert {
  display: none;
}
.inventory--suppliers--tabs__title:hover .supplierAlert {
  display: block;
  color: #00a2ea;
}
.inventory--suppliers--tabs__title:hover .supplierName {
  display: none;
}
.inventory--suppliers--tabs__icon {
  width: 5rem;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00a2ea;
}
.inventory--suppliers--tabs__icon img {
  width: 2.2rem;
}
.inventory--suppliers--tabs__count {
  line-height: 1;
  position: absolute;
  left: -5px;
  top: -5px;
  font-size: 1.4rem;
  font-weight: 700;
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: White;
  background-color: red;
  border-radius: 100px;
}
@media screen and (max-width: 600px) {
  .inventory--suppliers--tabs__count {
    width: 2rem !important;
    height: 2rem !important;
  }
}
.inventory--suppliers--tabs__view-2 {
  width: 100%;
  margin: 0.3rem 0;
  align-items: center;
}
.inventory--suppliers--tabs__view-2 p {
  width: fit-content;
  margin: auto;
  font-size: 1.4rem;
}
@media screen and (max-width: 600px) {
  .inventory--suppliers--tabs__view-2 p {
    font-size: 1.2rem;
  }
}
.inventory--suppliers--tabs__view-2 .orders--suppliers--tabs__icon {
  height: fit-content;
}
.inventory--suppliers--tabs__loading {
  display: unset;
  background-color: unset;
}
.inventory--suppliers--tabs__loading:hover {
  background-color: unset;
}
.inventory--highlight-section {
  animation: highlight 2000ms ease-out;
}
.inventory--test {
  width: auto;
  float: left;
}
.items {
  width: 100%;
  position: relative;
  background-color: white;
  border-radius: 15px;
  margin: auto;
  padding: 1rem;
}
.items .table {
  font-size: 1.3rem;
  font-weight: 500;
  padding: 0 2rem;
}
@media screen and (max-width: 600px) {
  .items .table {
    padding: 0;
  }
}
.items .table td:last-child {
  width: 1px;
}
.items .table td:first-child {
  width: 1px;
}
.items .table th:last-child {
  width: 1px;
}
.items .table th:first-child {
  width: 1px;
}
.summeryBox {
  text-align: center;
  box-shadow: 5px 9px 12px 5px rgba(0, 0, 0, 0.25);
  background-color: white;
  border-radius: 5px;
}
.summeryBox__selected {
  border: 3px solid rgba(0, 164, 234, 0.7725490196);
}
.summeryBox__long {
  align-items: unset;
}
.summeryBox__long svg {
  margin: auto 0;
}
.summeryBox__long p {
  font-size: 1.6rem;
  line-height: 1.4;
}
.summeryBox--section {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-radius: 5px;
  border: 2px solid rgba(51, 51, 51, 0.384);
  padding: 1rem 0;
  margin-top: 1rem;
}
.summeryBox--section__child {
  width: 33%;
}
.summeryBox--section2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 5px;
  border: 2px solid rgba(51, 51, 51, 0.384);
  padding: 1rem 0;
  margin-top: 1rem;
}
@media screen and (min-width: 600px) {
  .summeryBox {
    width: calc(20% - 2rem);
    margin: 1rem;
    height: 18rem;
    min-height: 12rem;
    min-width: 21rem;
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .summeryBox__right {
    align-items: flex-start;
  }
  .summeryBox__full_width {
    width: 100%;
  }
  .summeryBox__auto_height {
    height: auto;
  }
}
@media screen and (max-width: 600px) {
  .summeryBox {
    width: 100%;
    margin: 0.5rem;
    height: 12rem;
    padding: 0.4rem;
  }
}
.summeryBox__transperant {
  box-shadow: none !important;
}
.summeryBox__transperant th,
.summeryBox__transperant td {
  padding: 5px 15px;
}
.summeryBox__transperant th {
  font-weight: bold;
  color: black;
}
.income-table--depth-first {
  font-weight: 700;
  border-bottom: 1px solid #333;
  background-color: #EAEAEA;
}
.income-table--depth-first .money__footer {
  font-weight: 700;
}
.summeryBoxByDate {
  white-space: nowrap;
  display: inline-block;
  font-weight: 700;
  border-bottom: 3px solid #00a4ea;
  padding: 0 1rem;
  height: 100%;
  outline: none;
  background-color: transparent;
}
.summeryText--1 {
  background: -webkit-linear-gradient(#11998e, #38ef7d);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.summeryText--2 {
  background: -webkit-linear-gradient(#cb356b, #bd3f32);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.summeryText--3 {
  background: -webkit-linear-gradient(#f2994a, #f2c94c);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.summeryText--4 {
  background: -webkit-linear-gradient(#00b4db, #0083b0);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.summeryText--5 {
  background: -webkit-linear-gradient(#c33764, #1d2671);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.summeryText--6 {
  background: -webkit-linear-gradient(#11998e, rgba(56, 239, 125, 0.2));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.summeryText--7 {
  background: -webkit-linear-gradient(#63c7ff, rgba(95, 184, 248, 0.2));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.summeryText--8 {
  background: -webkit-linear-gradient(#357330, rgba(240, 243, 236, 0.2));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.summeryText--9 {
  background: -webkit-linear-gradient(#0083b0, #0000bb);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 600px) {
  .summeryText {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
  }
}
.summeryText p small {
  margin-right: 0.5rem;
  font-size: 1.2rem;
  font-weight: 200;
}
@media screen and (min-width: 600px) {
  .summeryText p {
    font-weight: 200;
    font-size: 2rem;
  }
  .summeryText p:nth-child(2) {
    font-size: 3rem;
  }
}
@media screen and (max-width: 600px) {
  .summeryText p {
    margin-top: 0;
    font-size: 1.8rem;
  }
}
.summeryBoxContainer {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 600px) {
  .summeryBoxContainer {
    flex-direction: column;
    align-items: center;
  }
}
.income-calender {
  box-shadow: 5px 9px 12px 5px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  border-collapse: collapse;
  width: 100%;
  border-spacing: 0;
  color: black;
}
.income-calender thead {
  background-color: #f5f5f5;
}
.income-calender tbody {
  background-color: white;
}
.income-calender tfoot {
  color: #0083b0;
  font-size: 1.5rem;
  background-color: #f5f5f5;
}
.income-calender--cell {
  padding: 1rem 3rem;
  text-align: center;
  border: 1px solid #3E3E3E;
  border-left: none;
  font-weight: 500;
}
.income-calender--cell p {
  line-height: 1.4;
}
.income-calender--cell:not(:last-child) {
  border-left: 1px solid #3E3E3E;
  border-right: none;
}
.income-calender--header {
  padding: 1rem 3rem;
  text-align: center;
  border-left: none;
  font-size: 1.6rem;
  font-weight: 500;
}
.income-calender--header:not(:last-child) {
  border-right: none;
}
.specialRequest--tab {
  font-size: 1.4rem;
  font-weight: 500;
  background-color: #f7f7f7;
  margin-top: 0.5rem;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid #EAEAEA;
}
.specialRequest--tab__approved {
  background-color: #ECFBE6;
}
.specialRequest--tab__cancel {
  background-color: #FFD9E8;
}
.is-sticky {
  position: fixed;
  top: 5rem;
  z-index: 999;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  background-color: white;
}
.container-test {
  position: relative;
}
.status {
  color: #006fff;
  text-shadow: 0 0 30px #006fff;
}
.progress_bar_none {
  display: none;
}
.progress_bar {
  display: block;
}
.MuiPopover-root, .MuiModal-root {
  position: absolute !important;
}
#simple-popover {
  z-index: 99999999 !important;
}
body {
  font-family: "Heebo";
}.container {
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  padding-right: 8px;
  padding-left: 8px;
}

.container-fluid {
  padding-right: 16px;
  padding-left: 16px;
}

@media only screen and (min-width: 576px) {
  .container {
    width: 560px;
    max-width: 100%;
  }
}

@media only screen and (min-width: 768px) {
  .container {
    width: 752px;
    max-width: 100%;
  }
}

@media only screen and (min-width: 992px) {
  .container {
    width: 976px;
    max-width: 100%;
  }
}

@media only screen and (min-width: 1200px) {
  .container {
    width: 1184px;
    max-width: 100%;
  }
}

.row {
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -8px;
  margin-left: -8px;
}

.row.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.col.reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-offset-0,
.col-xs-offset-1,
.col-xs-offset-2,
.col-xs-offset-3,
.col-xs-offset-4,
.col-xs-offset-5,
.col-xs-offset-6,
.col-xs-offset-7,
.col-xs-offset-8,
.col-xs-offset-9,
.col-xs-offset-10,
.col-xs-offset-11,
.col-xs-offset-12,
.col-sm,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-offset-0,
.col-sm-offset-1,
.col-sm-offset-2,
.col-sm-offset-3,
.col-sm-offset-4,
.col-sm-offset-5,
.col-sm-offset-6,
.col-sm-offset-7,
.col-sm-offset-8,
.col-sm-offset-9,
.col-sm-offset-10,
.col-sm-offset-11,
.col-sm-offset-12,
.col-md,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-offset-0,
.col-md-offset-1,
.col-md-offset-2,
.col-md-offset-3,
.col-md-offset-4,
.col-md-offset-5,
.col-md-offset-6,
.col-md-offset-7,
.col-md-offset-8,
.col-md-offset-9,
.col-md-offset-10,
.col-md-offset-11,
.col-md-offset-12,
.col-lg,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-offset-0,
.col-lg-offset-1,
.col-lg-offset-2,
.col-lg-offset-3,
.col-lg-offset-4,
.col-lg-offset-5,
.col-lg-offset-6,
.col-lg-offset-7,
.col-lg-offset-8,
.col-lg-offset-9,
.col-lg-offset-10,
.col-lg-offset-11,
.col-lg-offset-12,
.col-xl,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-offset-0,
.col-xl-offset-1,
.col-xl-offset-2,
.col-xl-offset-3,
.col-xl-offset-4,
.col-xl-offset-5,
.col-xl-offset-6,
.col-xl-offset-7,
.col-xl-offset-8,
.col-xl-offset-9,
.col-xl-offset-10,
.col-xl-offset-11,
.col-xl-offset-12 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  padding-right: 8px;
  padding-left: 8px;
  max-width: 100%;
}

.col-xs {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  -ms-flex-preferred-size: 8.33333333%;
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.66666667%;
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.33333333%;
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.66666667%;
  flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.33333333%;
  flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.66666667%;
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.33333333%;
  flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.66666667%;
  flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-0 {
  margin-left: 0;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.start-xs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.end-xs {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.middle-xs {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bottom-xs {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.around-xs {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

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

.first-xs {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.last-xs {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.initial-order-xs {
  -webkit-box-ordinal-group: NaN;
  -ms-flex-order: initial;
  order: initial;
}

@media only screen and (min-width: 576px) {
  .col-sm {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-sm-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-sm-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-sm-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-sm-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-sm-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-sm-offset-0 {
    margin-left: 0;
  }

  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-sm {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-sm {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-sm {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-sm {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .middle-sm {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bottom-sm {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .around-sm {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

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

  .first-sm {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .last-sm {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .initial-order-sm {
    -webkit-box-ordinal-group: NaN;
    -ms-flex-order: initial;
    order: initial;
  }
}

@media only screen and (min-width: 768px) {
  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-offset-0,
  .col-md-offset-1,
  .col-md-offset-2,
  .col-md-offset-3,
  .col-md-offset-4,
  .col-md-offset-5,
  .col-md-offset-6,
  .col-md-offset-7,
  .col-md-offset-8,
  .col-md-offset-9,
  .col-md-offset-10,
  .col-md-offset-11,
  .col-md-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 8px;
    padding-left: 8px;
  }

  .col-md {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-md-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-md-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-md-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-md-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-md-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-md-offset-0 {
    margin-left: 0;
  }

  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-md {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-md {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-md {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-md {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .middle-md {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bottom-md {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .around-md {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

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

  .first-md {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .last-md {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .initial-order-md {
    -webkit-box-ordinal-group: NaN;
    -ms-flex-order: initial;
    order: initial;
  }
}

@media only screen and (min-width: 992px) {
  .col-lg,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12,
  .col-lg-offset-0,
  .col-lg-offset-1,
  .col-lg-offset-2,
  .col-lg-offset-3,
  .col-lg-offset-4,
  .col-lg-offset-5,
  .col-lg-offset-6,
  .col-lg-offset-7,
  .col-lg-offset-8,
  .col-lg-offset-9,
  .col-lg-offset-10,
  .col-lg-offset-11,
  .col-lg-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 8px;
    padding-left: 8px;
  }

  .col-lg {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-lg-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-lg-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-lg-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-lg-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-lg-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-lg-offset-0 {
    margin-left: 0;
  }

  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-lg {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-lg {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-lg {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-lg {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .middle-lg {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bottom-lg {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .around-lg {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

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

  .first-lg {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .last-lg {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .initial-order-lg {
    -webkit-box-ordinal-group: NaN;
    -ms-flex-order: initial;
    order: initial;
  }
}

@media only screen and (min-width: 1200px) {
  .col-xl,
  .col-xl-1,
  .col-xl-2,
  .col-xl-3,
  .col-xl-4,
  .col-xl-5,
  .col-xl-6,
  .col-xl-7,
  .col-xl-8,
  .col-xl-9,
  .col-xl-10,
  .col-xl-11,
  .col-xl-12,
  .col-xl-offset-0,
  .col-xl-offset-1,
  .col-xl-offset-2,
  .col-xl-offset-3,
  .col-xl-offset-4,
  .col-xl-offset-5,
  .col-xl-offset-6,
  .col-xl-offset-7,
  .col-xl-offset-8,
  .col-xl-offset-9,
  .col-xl-offset-10,
  .col-xl-offset-11,
  .col-xl-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 8px;
    padding-left: 8px;
  }

  .col-xl {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-xl-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-xl-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-xl-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-xl-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-xl-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-xl-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-xl-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-xl-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-xl-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-xl-offset-0 {
    margin-left: 0;
  }

  .col-xl-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-xl-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-xl-offset-3 {
    margin-left: 25%;
  }

  .col-xl-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-xl-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-xl-offset-6 {
    margin-left: 50%;
  }

  .col-xl-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-xl-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-xl-offset-9 {
    margin-left: 75%;
  }

  .col-xl-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-xl-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-xl {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-xl {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-xl {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-xl {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .middle-xl {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bottom-xl {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .around-xl {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

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

  .first-xl {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .last-xl {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .initial-order-xl {
    -webkit-box-ordinal-group: NaN;
    -ms-flex-order: initial;
    order: initial;
  }
}

@media only screen and (max-width: 575px) {
  .hidden-xs {
    display: none;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hidden-sm {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hidden-md {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hidden-lg {
    display: none;
  }
}

@media only screen and (min-width: 1200px) {
  .hidden-xl {
    display: none;
  }
}.hebrew-list {
    list-style-type: hebrew;
  }

  .signature-container {
    position: relative;
    display: inline-block;
    margin-top:20px;
    /* add any other styling you need */
  }
  
  .signature-image {
    position: absolute;
    bottom: 0;
    /* add any other styling you need */
  }
  
  .signature-underline {
    position: absolute;
    bottom: 0;
    height: 1px;
    width: 20%;
    background-color: #000;
  }.hebrew-list {
    list-style-type: hebrew;
  }

  .signature-container {
    position: relative;
    display: inline-block;
    margin-top:20px;
    /* add any other styling you need */
  }
  
  .signature-image {
    position: absolute;
    bottom: 0;
    /* add any other styling you need */
  }
  
  .signature-underline {
    position: absolute;
    bottom: 0;
    height: 1px;
    width: 20%;
    background-color: #000;
  }