.ts-control {
  border: 1px solid #d0d0d0;
  border-radius: 3px;
  box-shadow: none;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  padding: 8px;
  position: relative;
  width: 100%;
  z-index: 1
}

.ts-wrapper.multi.has-items .ts-control {
  padding: 6px 8px 3px
}

.full .ts-control {
  background-color: #fff
}

.disabled .ts-control,
.disabled .ts-control * {
  cursor: default !important
}

.focus .ts-control {
  box-shadow: none
}

.ts-control>* {
  display: inline-block;
  vertical-align: initial
}

.ts-wrapper.multi .ts-control>div {
  background: #f2f2f2;
  border: 0 solid #d0d0d0;
  color: #303030;
  cursor: pointer;
  margin: 0 3px 3px 0;
  padding: 2px 6px
}

.ts-wrapper.multi .ts-control>div.active {
  background: #e8e8e8;
  border: 0 solid #cacaca;
  color: #303030
}

.ts-wrapper.multi.disabled .ts-control>div,
.ts-wrapper.multi.disabled .ts-control>div.active {
  background: #fff;
  border: 0 solid #fff;
  color: #7d7d7d
}

.ts-control>input {
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  display: inline-block !important;
  flex: 1 1 auto;
  line-height: inherit !important;
  margin: 0 !important;
  max-height: none !important;
  max-width: 100% !important;
  min-height: 0 !important;
  min-width: 7rem;
  padding: 0 !important;
  text-indent: 0 !important;
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  -ms-user-select: auto !important;
  user-select: auto !important
}

.ts-control>input::-ms-clear {
  display: none
}

.ts-control>input:focus {
  outline: none !important
}

.has-items .ts-control>input {
  margin: 0 4px !important
}

.ts-control.rtl {
  text-align: right
}

.ts-control.rtl.single .ts-control:after {
  left: 15px;
  right: auto
}

.ts-control.rtl .ts-control>input {
  margin: 0 4px 0 -2px !important
}

.disabled .ts-control {
  background-color: #fafafa;
  opacity: .5
}

.input-hidden .ts-control>input {
  left: -10000px;
  opacity: 0;
  position: absolute
}

.ts-dropdown {
  background: #fff;
  border: 1px solid #d0d0d0;
  border-radius: 0 0 3px 3px;
  border-top: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
  box-sizing: border-box;
  left: 0;
  margin: .25rem 0 0;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 10
}

.ts-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden
}

.ts-dropdown [data-selectable] .highlight {
  background: rgba(125, 168, 208, .2);
  border-radius: 1px
}

.ts-dropdown .create,
.ts-dropdown .no-results,
.ts-dropdown .optgroup-header,
.ts-dropdown .option {
  padding: 5px 8px
}

.ts-dropdown .option,
.ts-dropdown [data-disabled],
.ts-dropdown [data-disabled] [data-selectable].option {
  cursor: inherit;
  opacity: .5
}

.ts-dropdown [data-selectable].option {
  cursor: pointer;
  opacity: 1
}

.ts-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0
}

.ts-dropdown .optgroup-header {
  background: #fff;
  color: #303030;
  cursor: default
}

.ts-dropdown .active {
  background-color: #f5fafd;
  color: #495c68
}

.ts-dropdown .active.create {
  color: #495c68
}

.ts-dropdown .create {
  color: rgba(48, 48, 48, .5)
}

.ts-dropdown .spinner {
  display: inline-block;
  height: 30px;
  margin: 5px 8px;
  width: 30px
}

.ts-dropdown .spinner:after {
  animation: lds-dual-ring 1.2s linear infinite;
  border-color: #d0d0d0 transparent;
  border-radius: 50%;
  border-style: solid;
  border-width: 5px;
  content: " ";
  display: block;
  height: 24px;
  margin: 3px;
  width: 24px
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(1turn)
  }
}

.ts-dropdown-content {
  max-height: 200px;
  overflow: hidden auto;
  scroll-behavior: smooth
}

.ts-wrapper.plugin-drag_drop .ts-dragging {
  color: transparent !important
}

.ts-wrapper.plugin-drag_drop .ts-dragging>* {
  visibility: hidden !important
}

.plugin-checkbox_options:not(.rtl) .option input {
  margin-right: .5rem
}

.plugin-checkbox_options.rtl .option input {
  margin-left: .5rem
}

.plugin-clear_button {
  --ts-pr-clear-button: 1em
}

.plugin-clear_button .clear-button {
  background: transparent !important;
  cursor: pointer;
  margin-right: 0 !important;
  opacity: 0;
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity .5s
}

.plugin-clear_button.form-select .clear-button,
.plugin-clear_button.single .clear-button {
  right: max(var(--ts-pr-caret), 8px)
}

.plugin-clear_button.focus.has-items .clear-button,
.plugin-clear_button:not(.disabled):hover.has-items .clear-button {
  opacity: 1
}

.ts-wrapper .dropdown-header {
  background: color-mix(#fff, #d0d0d0, 85%);
  border-bottom: 1px solid #d0d0d0;
  border-radius: 3px 3px 0 0;
  padding: 10px 8px;
  position: relative
}

.ts-wrapper .dropdown-header-close {
  color: #303030;
  font-size: 20px !important;
  line-height: 20px;
  margin-top: -12px;
  opacity: .4;
  position: absolute;
  right: 8px;
  top: 50%
}

.ts-wrapper .dropdown-header-close:hover {
  color: #000
}

.plugin-dropdown_input.focus.dropdown-active .ts-control {
  border: 1px solid #d0d0d0;
  box-shadow: none
}

.plugin-dropdown_input .dropdown-input {
  background: transparent;
  border: solid #d0d0d0;
  border-width: 0 0 1px;
  box-shadow: none;
  display: block;
  padding: 8px;
  width: 100%
}

.plugin-dropdown_input .items-placeholder {
  border: 0 !important;
  box-shadow: none !important;
  width: 100%
}

.plugin-dropdown_input.dropdown-active .items-placeholder,
.plugin-dropdown_input.has-items .items-placeholder {
  display: none !important
}

.ts-wrapper.plugin-input_autogrow.has-items .ts-control>input {
  min-width: 0
}

.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control>input {
  flex: none;
  min-width: 4px
}

.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control>input::-ms-input-placeholder {
  color: transparent
}

.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control>input::placeholder {
  color: transparent
}

.ts-dropdown.plugin-optgroup_columns .ts-dropdown-content {
  display: flex
}

.ts-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0;
  flex-basis: 0;
  flex-grow: 1;
  min-width: 0
}

.ts-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0
}

.ts-dropdown.plugin-optgroup_columns .optgroup:before {
  display: none
}

.ts-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0
}

.ts-wrapper.plugin-remove_button .item {
  align-items: center;
  display: inline-flex
}

.ts-wrapper.plugin-remove_button .item .remove {
  border-radius: 0 2px 2px 0;
  box-sizing: border-box;
  color: inherit;
  display: inline-block;
  padding: 0 6px;
  text-decoration: none;
  vertical-align: middle
}

.ts-wrapper.plugin-remove_button .item .remove:hover {
  background: rgba(0, 0, 0, .05)
}

.ts-wrapper.plugin-remove_button.disabled .item .remove:hover {
  background: none
}

.ts-wrapper.plugin-remove_button .remove-single {
  font-size: 23px;
  position: absolute;
  right: 0;
  top: 0
}

.ts-wrapper.plugin-remove_button:not(.rtl) .item {
  padding-right: 0 !important
}

.ts-wrapper.plugin-remove_button:not(.rtl) .item .remove {
  border-left: 1px solid #d0d0d0;
  margin-left: 6px
}

.ts-wrapper.plugin-remove_button:not(.rtl) .item.active .remove {
  border-left-color: #cacaca
}

.ts-wrapper.plugin-remove_button:not(.rtl).disabled .item .remove {
  border-left-color: #fff
}

.ts-wrapper.plugin-remove_button.rtl .item {
  padding-left: 0 !important
}

.ts-wrapper.plugin-remove_button.rtl .item .remove {
  border-right: 1px solid #d0d0d0;
  margin-right: 6px
}

.ts-wrapper.plugin-remove_button.rtl .item.active .remove {
  border-right-color: #cacaca
}

.ts-wrapper.plugin-remove_button.rtl.disabled .item .remove {
  border-right-color: #fff
}

:root {
  --ts-pr-clear-button: 0;
  --ts-pr-caret: 0;
  --ts-pr-min: .75rem
}

.ts-wrapper.single .ts-control,
.ts-wrapper.single .ts-control input {
  cursor: pointer
}

.ts-control:not(.rtl) {
  padding-right: max(var(--ts-pr-min), var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important
}

.ts-control.rtl {
  padding-left: max(var(--ts-pr-min), var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important
}

.ts-wrapper {
  position: relative
}

.ts-control,
.ts-control input,
.ts-dropdown {
  color: #303030;
  font-family: inherit;
  font-size: 13px;
  line-height: 18px
}

.ts-control,
.ts-wrapper.single.input-active .ts-control {
  background: #fff;
  cursor: text
}

.ts-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important
}

/*# sourceMappingURL=tom-select.min.css.map */
.gs-24 .grid-stack-item {
	 width: 4.167%;
}
 .gs-24 .grid-stack-item[gs-x="1"] {
	 left: 4.167%;
}
 .gs-24 .grid-stack-item[gs-w="2"] {
	 width: 8.333%;
}
 .gs-24 .grid-stack-item[gs-x="2"] {
	 left: 8.333%;
}
 .gs-24 .grid-stack-item[gs-w="3"] {
	 width: 12.5%;
}
 .gs-24 .grid-stack-item[gs-x="3"] {
	 left: 12.5%;
}
 .gs-24 .grid-stack-item[gs-w="4"] {
	 width: 16.667%;
}
 .gs-24 .grid-stack-item[gs-x="4"] {
	 left: 16.667%;
}
 .gs-24 .grid-stack-item[gs-w="5"] {
	 width: 20.833%;
}
 .gs-24 .grid-stack-item[gs-x="5"] {
	 left: 20.833%;
}
 .gs-24 .grid-stack-item[gs-w="6"] {
	 width: 25%;
}
 .gs-24 .grid-stack-item[gs-x="6"] {
	 left: 25%;
}
 .gs-24 .grid-stack-item[gs-w="7"] {
	 width: 29.167%;
}
 .gs-24 .grid-stack-item[gs-x="7"] {
	 left: 29.167%;
}
 .gs-24 .grid-stack-item[gs-w="8"] {
	 width: 33.333%;
}
 .gs-24 .grid-stack-item[gs-x="8"] {
	 left: 33.333%;
}
 .gs-24 .grid-stack-item[gs-w="9"] {
	 width: 37.5%;
}
 .gs-24 .grid-stack-item[gs-x="9"] {
	 left: 37.5%;
}
 .gs-24 .grid-stack-item[gs-w="10"] {
	 width: 41.667%;
}
 .gs-24 .grid-stack-item[gs-x="10"] {
	 left: 41.667%;
}
 .gs-24 .grid-stack-item[gs-w="11"] {
	 width: 45.833%;
}
 .gs-24 .grid-stack-item[gs-x="11"] {
	 left: 45.833%;
}
 .gs-24 .grid-stack-item[gs-w="12"] {
	 width: 50%;
}
 .gs-24 .grid-stack-item[gs-x="12"] {
	 left: 50%;
}
 .gs-24 .grid-stack-item[gs-w="13"] {
	 width: 54.167%;
}
 .gs-24 .grid-stack-item[gs-x="13"] {
	 left: 54.167%;
}
 .gs-24 .grid-stack-item[gs-w="14"] {
	 width: 58.333%;
}
 .gs-24 .grid-stack-item[gs-x="14"] {
	 left: 58.333%;
}
 .gs-24 .grid-stack-item[gs-w="15"] {
	 width: 62.5%;
}
 .gs-24 .grid-stack-item[gs-x="15"] {
	 left: 62.5%;
}
 .gs-24 .grid-stack-item[gs-w="16"] {
	 width: 66.667%;
}
 .gs-24 .grid-stack-item[gs-x="16"] {
	 left: 66.667%;
}
 .gs-24 .grid-stack-item[gs-w="17"] {
	 width: 70.833%;
}
 .gs-24 .grid-stack-item[gs-x="17"] {
	 left: 70.833%;
}
 .gs-24 .grid-stack-item[gs-w="18"] {
	 width: 75%;
}
 .gs-24 .grid-stack-item[gs-x="18"] {
	 left: 75%;
}
 .gs-24 .grid-stack-item[gs-w="19"] {
	 width: 79.167%;
}
 .gs-24 .grid-stack-item[gs-x="19"] {
	 left: 79.167%;
}
 .gs-24 .grid-stack-item[gs-w="20"] {
	 width: 83.333%;
}
 .gs-24 .grid-stack-item[gs-x="20"] {
	 left: 83.333%;
}
 .gs-24 .grid-stack-item[gs-w="21"] {
	 width: 87.5%;
}
 .gs-24 .grid-stack-item[gs-x="21"] {
	 left: 87.5%;
}
 .gs-24 .grid-stack-item[gs-w="22"] {
	 width: 91.667%;
}
 .gs-24 .grid-stack-item[gs-x="22"] {
	 left: 91.667%;
}
 .gs-24 .grid-stack-item[gs-w="23"] {
	 width: 95.833%;
}
 .gs-24 .grid-stack-item[gs-x="23"] {
	 left: 95.833%;
}
 .gs-24 .grid-stack-item[gs-w="24"] {
	 width: 100%;
}
 .grid-stack .ui-resizable-handle {
	 background-image: url(/assets/caret-dd23b1ca0989cebcdc6a28a858f90d766a637673686c1707a3705d98671f8ca5.svg) !important;
	 width: 10px !important;
	 height: 10px !important;
}
 .grid-stack .ui-resizable-handle.ui-resizable-se {
	 rotate: 90deg;
}
 .grid-stack .ui-resizable-handle.ui-resizable-sw {
	 rotate: 90deg;
}
 

.flatpickr-calendar {
  background: transparent;
  /* background: #ff0000; */
  /* border: 1px solid rgba(255, 255, 255, 0.05) !important; */
  background: rgba(21, 23, 31, 1);
  border: 1px solid rgba(255, 255, 255, 0.04);
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0 30px 30px 30px;
  /* padding: 10px; */
  -webkit-animation: none;
          animation: none;
  direction: ltr;
  /* border: 0; */
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  /* width: 307.875px; */
  width: 367.875px;
  /* -webkit-box-sizing: border-box; */
          /* box-sizing: border-box; */
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  /* -webkit-box-shadow: 0 3px 13px rgba(0,0,0,0.08); */
          /* box-shadow: 0 3px 13px rgba(0,0,0,0.08); */
}
.flatpickr-calendar.open,
.flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}
.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}
.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
          animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}
.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}
.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}
.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  /* -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6; */
          /* box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6; */
}
.flatpickr-calendar .hasWeeks .dayContainer,
.flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}
.flatpickr-calendar.hasTime .flatpickr-time {
  height: 40px;
  /* border-top: 1px solid #eceef1; */
}
.flatpickr-calendar.hasTime .flatpickr-innerContainer {
  border-bottom: 0;
}
.flatpickr-calendar.hasTime .flatpickr-time {
  /* border: 1px solid #eceef1; */
}
.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}
.flatpickr-calendar:before,
.flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: '';
  height: 0;
  width: 0;
  left: 22px;
}
.flatpickr-calendar.rightMost:before,
.flatpickr-calendar.arrowRight:before,
.flatpickr-calendar.rightMost:after,
.flatpickr-calendar.arrowRight:after {
  left: auto;
  right: 22px;
}
.flatpickr-calendar.arrowCenter:before,
.flatpickr-calendar.arrowCenter:after {
  left: 50%;
  right: 50%;
}
.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}
.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}
.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}
.flatpickr-calendar.arrowTop:before {
  /* border-bottom-color: #eceef1; */
}
.flatpickr-calendar.arrowTop:after {
  /* border-bottom-color: #eceef1; */
}
.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  top: 100%;
}
.flatpickr-calendar.arrowBottom:before {
  /* border-top-color: #eceef1; */
}
.flatpickr-calendar.arrowBottom:after {
  /* border-top-color: #eceef1; */
}
.flatpickr-calendar:focus {
  outline: 0;
}
.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}
.flatpickr-months {
  margin-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flatpickr-months .flatpickr-month {
  margin-bottom: 20px;
  border-radius: 5px 5px 0 0;
  /* background: #eceef1; */
  background: rgba(21, 23, 31, 1);
  /* color: #5a6171; */
  color: rgba(255, 255, 255, 1);
  /* fill: #5a6171; */
  fill: rgba(255, 255, 255, 1);
  height: 34px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
  color: #5a6171;
  fill: #5a6171;
  margin-top: 20px;
}
.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,
.flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: none;
}
.flatpickr-months .flatpickr-prev-month i,
.flatpickr-months .flatpickr-next-month i {
  position: relative;
}
.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
/*
      /*rtl:begin:ignore*/
/*
      */
  left: 0;
/*
      /*rtl:end:ignore*/
/*
      */
}
/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
/*
      /*rtl:begin:ignore*/
/*
      */
  right: 0;
/*
      /*rtl:end:ignore*/
/*
      */
}
/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  color: #bbb;
}
.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  /* fill: #f64747; */
  fill: rgba(255, 255, 255, 1);
}
.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}
.flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-months .flatpickr-next-month svg path {
  -webkit-transition: fill 0.1s;
  transition: fill 0.1s;
  fill: inherit;
}
.numInputWrapper {
  position: relative;
  height: auto;
}
.numInputWrapper input,
.numInputWrapper span {
  display: inline-block;
}
.numInputWrapper input {
  width: 100%;
}
.numInputWrapper input::-ms-clear {
  display: none;
}
.numInputWrapper input::-webkit-outer-spin-button,
.numInputWrapper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(72,72,72,0.15);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.numInputWrapper span:hover {
  background: rgba(0,0,0,0.1);
}
.numInputWrapper span:active {
  background: rgba(0,0,0,0.2);
}
.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
}
.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}
.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(72,72,72,0.6);
  top: 26%;
}
.numInputWrapper span.arrowDown {
  top: 50%;
}
.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(72,72,72,0.6);
  top: 40%;
}
.numInputWrapper span svg {
  width: inherit;
  height: auto;
}
.numInputWrapper span svg path {
  fill: rgba(90,97,113,0.5);
}
.numInputWrapper:hover {
  background: rgba(0,0,0,0.05);
}
.numInputWrapper:hover span {
  opacity: 1;
}
.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0 0;
  line-height: 1;
  height: 34px;
  display: inline-block;
  text-align: center;
  -webkit-transform: translate3d(0px, 0px, 0px);
          transform: translate3d(0px, 0px, 0px);
}
.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0;
}
.flatpickr-current-month span.cur-month:hover {
  background: rgba(0,0,0,0.05);
}
.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0;
  display: inline-block;
}
.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: #5a6171;
}
.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: #5a6171;
}
.flatpickr-current-month input.cur-year {
  background: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  box-shadow: none;
  color: inherit;
  cursor: text;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  /* font-size: inherit; */
  font-size: 1rem;
  font-family: inherit;
  /* font-weight: 300; */
  font-weight: 600;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}
.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(90,97,113,0.5);
  background: transparent;
  pointer-events: none;
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: menulist;
  /* background: #eceef1; */
  background: transparent;
  box-shadow: none;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  /* font-size: inherit; */
  font-size: 1rem;
  font-family: inherit;
  font-weight: 300;
  font-weight: 600;
  height: auto;
  line-height: inherit;
  margin: -1px 0 0 0;
  outline: none;
  padding: 0 0 0 0.5ch;
  position: relative;
  vertical-align: initial;
  -webkit-box-sizing: border-box;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  width: auto;
}
.flatpickr-current-month .flatpickr-monthDropdown-months:focus,
.flatpickr-current-month .flatpickr-monthDropdown-months:active {
  outline: none;
}
.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: rgba(0,0,0,0.05);
}
.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  /* background-color: #eceef1; */
  outline: none;
  padding: 0;
}
.flatpickr-weekdays {
  padding-top: 10px;
  /* background: #eceef1; */
  background: rgb(23, 25, 32);
  text-align: center;
  overflow: hidden;
  width: 100%;
  /* display: flex; */
  /* -webkit-box-align: center; */
  /* -webkit-align-items: center; */
      /* -ms-flex-align: center; */
          /* align-items: center; */
  height: 28px;
}
.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: flex;
  flex: 1;
}
span.flatpickr-weekday {
  cursor: default;
  /* font-size: 90%; */
  font-size: 0.875rem;
  /* background: #eceef1; */
  background: rgb(23, 25, 32);
  /* color: #5a6171; */
  color: rgba(113, 113, 122, 1);
  /* line-height: 1; */
  line-height: 1.25rem;
  font-weight: 400;
  margin: 0;
  text-align: center;
  display: block;
  flex: 1;
  font-weight: bolder;
}
.dayContainer,
.flatpickr-weeks {
  padding: 1px 0 0 0;
}
.flatpickr-days {
  position: relative;
  overflow: hidden;
  /* display: -webkit-box; */
  /* display: -webkit-flex; */
  /* display: -ms-flexbox; */
  /* display: flex; */
  /* flex: 1; */
  /* -webkit-box-align: start; */
  /* -webkit-align-items: flex-start; */
      /* -ms-flex-align: start; */
          /* align-items: flex-start; */
  width: 307.875px;
  /* border-left: 1px solid #eceef1; */
  /* border-right: 1px solid #eceef1; */
}
.flatpickr-days:focus {
  outline: 0;
}
.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  /* -webkit-box-sizing: border-box; */
          /* box-sizing: border-box; */
  /* display: inline-block; */
  /* display: flex; */
  /* flex: 1; */
  /* -webkit-flex-wrap: wrap; */
  /* flex-wrap: wrap; */
  /* -ms-flex-wrap: wrap; */
  /* -ms-flex-pack: justify; */
  /* -webkit-justify-content: space-around;
          justify-content: space-around; */
  -webkit-transform: translate3d(0px, 0px, 0px);
          transform: translate3d(0px, 0px, 0px);
  opacity: 1;
}
.dayContainer + .dayContainer {
  /* -webkit-box-shadow: -1px 0 0 #eceef1; */
          /* box-shadow: -1px 0 0 #eceef1; */
}
.flatpickr-day {
  /* flex: 1; */
  background: none;
  border: 1px solid transparent;
  /* border-radius: 150px; */
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* color: #484848; */
  color: #fff;
  cursor: pointer;
  font-weight: 400;
  /* width: 14.2857143%; */
  /* -webkit-flex-basis: 14.2857143%; */
      /* -ms-flex-preferred-size: 14.2857143%; */
          /* flex-basis: 14.2857143%; */
  /* max-width: 39px; */
  height: 39px;
  line-height: 39px;
  margin: 0;
  /* display: inline-block; */
  /* position: relative; */
  /* -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center; */
  text-align: center;
}
.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  /* background: #e2e2e2; */
  background: rgba(35, 36, 68, 1);
  /* border-color: #e2e2e2; */
  border-color: rgba(59, 59, 152, 1);

}
.flatpickr-day.today {
  /* border-color: #bbb; */
  border-color: rgba(255, 255, 255, 1);
  background: rgba(32, 34, 41, 1);
  color: #fff;
}
.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  /* border-color: #bbb; */
  /* background: #bbb; */
  background: rgba(32, 34, 41, 1);
  /* color: #fff; */
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  /* background: #ff5a5f; */
  /* background: rgba(59, 59, 152, 1); */
  background: rgba(35, 36, 68, 1);
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
  /* border-color: #ff5a5f; */
  border-color: rgba(59, 59, 152, 1);
}
.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange {
  background: rgba(59, 59, 152, 1);
  border-radius: 10px 0 0 10px;
}
.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange {
  background: rgba(59, 59, 152, 1);
  border-radius: 0 10px 10px 0;
}
.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  /* -webkit-box-shadow: -10px 0 0 #ff5a5f; */
          /* box-shadow: -10px 0 0 #ff5a5f; */
}
.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange,
.flatpickr-day.endRange.startRange.endRange {
  border-radius: 10px;
}
.flatpickr-day.inRange {
  border-left: none;
  border-right: none;
  border-radius: 0;
  /* -webkit-box-shadow: -5px 0 0 #e2e2e2, 5px 0 0 #e2e2e2; */
          /* box-shadow: -5px 0 0 #e2e2e2, 5px 0 0 #e2e2e2; */
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(72,72,72,0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(72,72,72,0.6) !important;
}
.flatpickr-day.week.selected {
  border-radius: 0;
  /* -webkit-box-shadow: -5px 0 0 #ff5a5f, 5px 0 0 #ff5a5f; */
          /* box-shadow: -5px 0 0 #ff5a5f, 5px 0 0 #ff5a5f; */
}
.flatpickr-day.hidden {
  visibility: hidden;
}
.rangeMode .flatpickr-day {
  margin-top: 1px;
}
.flatpickr-weekwrapper {
  float: left;
}
.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  /* border-left: 1px solid #eceef1; */
}
.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}
.flatpickr-weekwrapper span.flatpickr-day,
.flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(72,72,72,0.3);
  background: transparent;
  cursor: default;
  border: none;
}
.flatpickr-innerContainer {
  border-radius: 10px;
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  /* background: #fff; */
  background: rgb(23, 25, 32);
  /* border-bottom: 1px solid #eceef1; */
}
.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  /* background: #fff; */
  background: rgba(23, 25, 33, 1);
  border-radius: 0 0 5px 5px;
}
.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}
.flatpickr-time .numInputWrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}
.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #484848;
}
.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #484848;
}
.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}
.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}
.flatpickr-time input {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #484848;
  font-size: 14px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.flatpickr-time input.flatpickr-hour {
  color: rgba(255, 255, 255, 1);
  /* font-weight: bold; */
  --tw-ring-color: none;
}
.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  color: rgba(255, 255, 255, 1);
  font-weight: 400;
  --tw-ring-color: none;
}
.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}
.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
  height: inherit;
  float: left;
  line-height: inherit;
  /* color: #484848; */
  color: rgba(255, 255, 255, 1);
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
}
.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}
.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
  /* background: #eaeaea; */
}
.flatpickr-input[readonly] {
  cursor: pointer;
}
@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
span.flatpickr-day.selected {
  font-weight: bold;
}
/* Table */

table.datagrid-table {
  background-color: transparent;
  border-collapse: collapse;
  max-width: 100%;
}

table.datagrid-table th {
  background-color: #eee;
  text-align: left;
  vertical-align: top;
}

table.datagrid-table td,
table.datagrid-table th {
  border: 1px solid #d6d6d6;
  padding: 5px 10px;
}

.datagrid-order-control-asc,
.datagrid-order-control-desc {
  text-decoration: none;
  font-weight: normal;
}

.datagrid-order-active-asc,
.datagrid-order-active-desc {
  background-color: #fff7d5;
}

.datagrid-order-active-asc a.datagrid-order-control-asc,
.datagrid-order-active-desc a.datagrid-order-control-desc {
  font-weight: bold;
  color: #d00;
}

.datagrid-no-results {
  text-align: center;
}

/* Form */

.datagrid-form {
  background-color: #f0f0f0;
  border-radius: 5px;
  padding: 20px;
}

.datagrid-filter {
  margin: 10px;
}

.datagrid-filter label {
  width: 150px;
  display: inline-block;
}

.datagrid-filter input, .datagrid-filter select {
  border: 2px solid #ccc;
  border-radius: 4px;
  display: inline-block;
  padding: 5px 12px;
  width: 300px;
}

input.datagrid-range-from, input.datagrid-range-to {
  width: 138px;
}

.datagrid-filter select[multiple] {
  border: 2px solid #ccc;
  border-radius: 5px;
  height: 100px;
}

select.datagrid-dynamic-field {
  width: 228px
}

select.datagrid-dynamic-operation {
  margin-left: 7px;
  width: 60px;
}

.datagrid-dynamic-value {
  margin: 10px 0 0 154px;
}

.datagrid-range-separator {
  display: inline-block;
  margin: 6px 4px 0;
}

.datagrid-enum-checkboxes {
  display: inline-block;
}

.datagrid-enum-checkboxes input {
  margin: 7px;
  width: auto;
}

.datagrid-enum-checkboxes label {
  display: block;
  width: 100%;
}

.datagrid-actions {
  padding-left: calc(150px + 10px);
}

.datagrid-submit {
  background-color: #555;
  border: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  line-height: normal;
  padding: 7px 15px;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.datagrid-submit:hover,
.datagrid-submit:focus {
  background-color: #333;
}

.datagrid-submit:active {
  background-color: #000;
}

.datagrid-reset {
  font-size: 14px;
  padding: 7px 15px;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *





*/
