

/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, height .2s ease-in-out;
  -webkit-transition: background-color .2s linear, height .2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, width .2s ease-in-out;
  -webkit-transition: background-color .2s linear, width .2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}
.scrollbar-container {
  position: relative;
  height: 100%; }
.ReactTable{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;border:1px solid rgba(0,0,0,0.1);}.ReactTable *{box-sizing:border-box}.ReactTable .rt-table{-webkit-box-flex:1;-ms-flex:auto 1;flex:auto 1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;width:100%;border-collapse:collapse;overflow:auto}.ReactTable .rt-thead{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}.ReactTable .rt-thead.-headerGroups{background:rgba(0,0,0,0.03);border-bottom:1px solid rgba(0,0,0,0.05)}.ReactTable .rt-thead.-filters{border-bottom:1px solid rgba(0,0,0,0.05);}.ReactTable .rt-thead.-filters input,.ReactTable .rt-thead.-filters select{border:1px solid rgba(0,0,0,0.1);background:#fff;padding:5px 7px;font-size:inherit;border-radius:3px;font-weight:normal;outline-width:0}.ReactTable .rt-thead.-filters .rt-th{border-right:1px solid rgba(0,0,0,0.02)}.ReactTable .rt-thead.-header{box-shadow:0 2px 15px 0 rgba(0,0,0,0.15)}.ReactTable .rt-thead .rt-tr{text-align:center}.ReactTable .rt-thead .rt-th,.ReactTable .rt-thead .rt-td{padding:5px 5px;line-height:normal;position:relative;border-right:1px solid rgba(0,0,0,0.05);transition:box-shadow .3s cubic-bezier(.175,.885,.32,1.275);box-shadow:inset 0 0 0 0 transparent;}.ReactTable .rt-thead .rt-th.-sort-asc,.ReactTable .rt-thead .rt-td.-sort-asc{box-shadow:inset 0 3px 0 0 rgba(0,0,0,0.6)}.ReactTable .rt-thead .rt-th.-sort-desc,.ReactTable .rt-thead .rt-td.-sort-desc{box-shadow:inset 0 -3px 0 0 rgba(0,0,0,0.6)}.ReactTable .rt-thead .rt-th.-cursor-pointer,.ReactTable .rt-thead .rt-td.-cursor-pointer{cursor:pointer}.ReactTable .rt-thead .rt-th:last-child,.ReactTable .rt-thead .rt-td:last-child{border-right:0}.ReactTable .rt-thead .rt-th:focus{outline-width:0}.ReactTable .rt-thead .rt-resizable-header{overflow:visible;}.ReactTable .rt-thead .rt-resizable-header:last-child{overflow:hidden}.ReactTable .rt-thead .rt-resizable-header-content{overflow:hidden;text-overflow:ellipsis}.ReactTable .rt-thead .rt-header-pivot{border-right-color:#f7f7f7}.ReactTable .rt-thead .rt-header-pivot:after,.ReactTable .rt-thead .rt-header-pivot:before{left:100%;top:50%;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none}.ReactTable .rt-thead .rt-header-pivot:after{border-color:rgba(255,255,255,0);border-left-color:#fff;border-width:8px;margin-top:-8px}.ReactTable .rt-thead .rt-header-pivot:before{border-color:rgba(102,102,102,0);border-left-color:#f7f7f7;border-width:10px;margin-top:-10px}.ReactTable .rt-tbody{-webkit-box-flex:99999;-ms-flex:99999 1 auto;flex:99999 1 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;overflow:auto;}.ReactTable .rt-tbody .rt-tr-group{border-bottom:solid 1px rgba(0,0,0,0.05);}.ReactTable .rt-tbody .rt-tr-group:last-child{border-bottom:0}.ReactTable .rt-tbody .rt-td{border-right:1px solid rgba(0,0,0,0.02);}.ReactTable .rt-tbody .rt-td:last-child{border-right:0}.ReactTable .rt-tbody .rt-expandable{cursor:pointer;text-overflow:clip}.ReactTable .rt-tr-group{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.ReactTable .rt-tr{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.ReactTable .rt-th,.ReactTable .rt-td{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0;white-space:nowrap;text-overflow:ellipsis;padding:7px 5px;overflow:hidden;transition:.3s ease;transition-property:width,min-width,padding,opacity;}.ReactTable .rt-th.-hidden,.ReactTable .rt-td.-hidden{width:0 !important;min-width:0 !important;padding:0 !important;border:0 !important;opacity:0 !important}.ReactTable .rt-expander{display:inline-block;position:relative;margin:0;color:transparent;margin:0 10px;}.ReactTable .rt-expander:after{content:'';position:absolute;width:0;height:0;top:50%;left:50%;-webkit-transform:translate(-50%,-50%) rotate(-90deg);transform:translate(-50%,-50%) rotate(-90deg);border-left:5.04px solid transparent;border-right:5.04px solid transparent;border-top:7px solid rgba(0,0,0,0.8);transition:all .3s cubic-bezier(.175,.885,.32,1.275);cursor:pointer}.ReactTable .rt-expander.-open:after{-webkit-transform:translate(-50%,-50%) rotate(0);transform:translate(-50%,-50%) rotate(0)}.ReactTable .rt-resizer{display:inline-block;position:absolute;width:36px;top:0;bottom:0;right:-18px;cursor:col-resize;z-index:10}.ReactTable .rt-tfoot{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;box-shadow:0 0 15px 0 rgba(0,0,0,0.15);}.ReactTable .rt-tfoot .rt-td{border-right:1px solid rgba(0,0,0,0.05);}.ReactTable .rt-tfoot .rt-td:last-child{border-right:0}.ReactTable.-striped .rt-tr.-odd{background:rgba(0,0,0,0.03)}.ReactTable.-highlight .rt-tbody .rt-tr:not(.-padRow):hover{background:rgba(0,0,0,0.05)}.ReactTable .-pagination{z-index:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:3px;box-shadow:0 0 15px 0 rgba(0,0,0,0.1);border-top:2px solid rgba(0,0,0,0.1);}.ReactTable .-pagination input,.ReactTable .-pagination select{border:1px solid rgba(0,0,0,0.1);background:#fff;padding:5px 7px;font-size:inherit;border-radius:3px;font-weight:normal;outline-width:0}.ReactTable .-pagination .-btn{-webkit-appearance:none;-moz-appearance:none;appearance:none;display:block;width:100%;height:100%;border:0;border-radius:3px;padding:6px;font-size:1em;color:rgba(0,0,0,0.6);background:rgba(0,0,0,0.1);transition:all .1s ease;cursor:pointer;outline-width:0;}.ReactTable .-pagination .-btn[disabled]{opacity:.5;cursor:default}.ReactTable .-pagination .-btn:not([disabled]):hover{background:rgba(0,0,0,0.3);color:#fff}.ReactTable .-pagination .-previous,.ReactTable .-pagination .-next{-webkit-box-flex:1;-ms-flex:1;flex:1;text-align:center}.ReactTable .-pagination .-center{-webkit-box-flex:1.5;-ms-flex:1.5;flex:1.5;text-align:center;margin-bottom:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.ReactTable .-pagination .-pageInfo{display:inline-block;margin:3px 10px;white-space:nowrap}.ReactTable .-pagination .-pageJump{display:inline-block;}.ReactTable .-pagination .-pageJump input{width:70px;text-align:center}.ReactTable .-pagination .-pageSizeOptions{margin:3px 10px}.ReactTable .rt-noData{display:block;position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);background:rgba(255,255,255,0.8);transition:all .3s ease;z-index:1;pointer-events:none;padding:20px;color:rgba(0,0,0,0.5)}.ReactTable .-loading{display:block;position:absolute;left:0;right:0;top:0;bottom:0;background:rgba(255,255,255,0.8);transition:all .3s ease;z-index:-1;opacity:0;pointer-events:none;}.ReactTable .-loading > div{position:absolute;display:block;text-align:center;width:100%;top:50%;left:0;font-size:15px;color:rgba(0,0,0,0.6);-webkit-transform:translateY(-52%);transform:translateY(-52%);transition:all .3s cubic-bezier(.25,.46,.45,.94)}.ReactTable .-loading.-active{opacity:1;z-index:2;pointer-events:all;}.ReactTable .-loading.-active > div{-webkit-transform:translateY(50%);transform:translateY(50%)}.ReactTable .rt-resizing .rt-th,.ReactTable .rt-resizing .rt-td{transition:none !important;cursor:col-resize;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}
.react-phone-number-input__row
{
	/* This is done to stretch the contents of this component */
	display     : flex;
	align-items : center;
}

.react-phone-number-input__phone
{
	/* The phone number input stretches to fill all empty space */
	flex : 1;

	/* The phone number input should shrink
	   to make room for the extension input */
	min-width : 0;
}

.react-phone-number-input__icon
{
	/* The flag icon size is 4x3 hence the exact `width` and `height` values */
	width      : 1.24em;
	height     : 0.93em;

	/* `1px` is still too much for a "retina" screen but there's no way in CSS to specify "hairline" border width. */
	border     : 1px solid rgba(0, 0, 0, 0.5);

	/* Makes sure `width`x`height` is exactly `4x3` and `border` width is not included in it */
	box-sizing : content-box;
}

.react-phone-number-input__icon--international
{
	/* The international icon size is square */
	/* and also has no border hence the `2 * 1px` `width` and `height` compensation */
	width  : calc(0.93em + 2px);
	height : calc(0.93em + 2px);

	/* The international icon size is square hence the exact `padding` value */
	/* for precise alignment with `4x3` sized country flags. */
	padding-left  : 0.155em;
	padding-right : 0.155em;

	border : none;
}

.react-phone-number-input__error
{
	margin-left : calc(1.24em + 2px + 0.3em + 0.35em + 0.5em);
	margin-top  : calc(0.3rem);
	color       : #D30F00;
}

.react-phone-number-input__icon-image
{
	max-width  : 100%;
	max-height : 100%;
}

/* Removes `<input type="number"/>` up/down arrows in Webkit browsers. */
.react-phone-number-input__ext-input::-webkit-inner-spin-button,
.react-phone-number-input__ext-input::-webkit-outer-spin-button
{
	margin             : 0 !important;
	-webkit-appearance : none !important;
	-moz-appearance    : textfield !important;
}

.react-phone-number-input__ext-input
{
	width : 3em;
}

.react-phone-number-input__ext
{
	white-space: nowrap;
}

.react-phone-number-input__ext,
.react-phone-number-input__ext-input
{
	margin-left : 0.5em;
}

/* Styling native country `<select/>`. */

.react-phone-number-input__country--native
{
	position     : relative;
	align-self   : stretch;
	display      : flex;
	align-items  : center;
	margin-right : 0.5em;
}

.react-phone-number-input__country-select
{
	position : absolute;
	top      : 0;
	left     : 0;
	height   : 100%;
	width    : 100%;
	z-index  : 1;
	border   : 0;
	opacity  : 0;
	cursor   : pointer;
}

.react-phone-number-input__country-select-arrow
{
	display            : block;
	content            : '';
	width              : 0;
	height             : 0;
	margin-bottom      : 0.1em;
	margin-top         : 0.3em;
	margin-left        : 0.3em;
	border-width       : 0.35em 0.2em 0 0.2em;
	border-style       : solid;
	border-left-color  : transparent;
	border-right-color : transparent;
	color              : #B8BDC4;
	opacity            : 0.7;
	transition         : color 0.1s;
}

/* Something from stackoverflow. */
.react-phone-number-input__country-select-divider
{
	font-size  : 1px;
	background : black;
}

.react-phone-number-input__country-select:focus + .react-phone-number-input__country-select-arrow,
.react-phone-number-input__country.rrui__select--focus .rrui__select__arrow
{
	color : #03B2CB;
}

/* Styling phone number input */

.react-phone-number-input__input
{
	height        : calc(0.3rem * 6);
	outline       : none;
	border-radius : 0;
	padding       : 0;
	appearance    : none;
	border        : none;
	border-bottom : 1px solid #C5D2E0;
	transition    : border 0.1s;
	font-size     : inherit;
}

.react-phone-number-input__input:focus
{
	border-color : #03B2CB;
}

.react-phone-number-input__input--disabled
{
	cursor : default;
}

.react-phone-number-input__input--invalid,
.react-phone-number-input__input--invalid:focus
{
	border-color : #EB2010;
}

/* Overrides Chrome autofill yellow background color */
.react-phone-number-input__input:-webkit-autofill
{
	box-shadow : 0 0 0 1000px white inset;
}

/* A small fix for `react-responsive-ui` */
.react-phone-number-input__country .rrui__select__button
{
	border-bottom : none;
}
body.react-confirm-alert-body-element {
  overflow: hidden;
}

.react-confirm-alert-blur {
  filter: url(#gaussian-blur);
  filter: blur(2px);
  -webkit-filter: blur(2px);
}

.react-confirm-alert-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.9);
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  opacity: 0;
  -webkit-animation: react-confirm-alert-fadeIn 0.5s 0.2s forwards;
  -moz-animation: react-confirm-alert-fadeIn 0.5s 0.2s forwards;
  -o-animation: react-confirm-alert-fadeIn 0.5s 0.2s forwards;
  animation: react-confirm-alert-fadeIn 0.5s 0.2s forwards;
}

.react-confirm-alert-body {
  font-family: Arial, Helvetica, sans-serif;
  width: 400px;
  padding: 30px;
  text-align: left;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 75px rgba(0, 0, 0, 0.13);
  color: #666;
}

.react-confirm-alert-svg {
  position: absolute;
  top: 0;
  left: 0;
}

.react-confirm-alert-body > h1 {
  margin-top: 0;
}

.react-confirm-alert-body > h3 {
  margin: 0;
  font-size: 16px;
}

.react-confirm-alert-button-group {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-start;
  margin-top: 20px;
}

.react-confirm-alert-button-group > button {
  outline: none;
  background: #333;
  border: none;
  display: inline-block;
  padding: 6px 18px;
  color: #eee;
  margin-right: 10px;
  border-radius: 5px;
  font-size: 12px;
  cursor: pointer;
}

@-webkit-keyframes react-confirm-alert-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-moz-keyframes react-confirm-alert-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-o-keyframes react-confirm-alert-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes react-confirm-alert-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.react-toggle {
  touch-action: pan-x;

  display: inline-block;
  position: relative;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  padding: 0;

  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-tap-highlight-color: transparent;
}

.react-toggle-screenreader-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.react-toggle--disabled {
  cursor: not-allowed;
  opacity: 0.5;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}

.react-toggle-track {
  width: 50px;
  height: 24px;
  padding: 0;
  border-radius: 30px;
  background-color: #4D4D4D;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.react-toggle:hover:not(.react-toggle--disabled) .react-toggle-track {
  background-color: #000000;
}

.react-toggle--checked .react-toggle-track {
  background-color: #19AB27;
}

.react-toggle--checked:hover:not(.react-toggle--disabled) .react-toggle-track {
  background-color: #128D15;
}

.react-toggle-track-check {
  position: absolute;
  width: 14px;
  height: 10px;
  top: 0px;
  bottom: 0px;
  margin-top: auto;
  margin-bottom: auto;
  line-height: 0;
  left: 8px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease;
  -moz-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.react-toggle--checked .react-toggle-track-check {
  opacity: 1;
  -webkit-transition: opacity 0.25s ease;
  -moz-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.react-toggle-track-x {
  position: absolute;
  width: 10px;
  height: 10px;
  top: 0px;
  bottom: 0px;
  margin-top: auto;
  margin-bottom: auto;
  line-height: 0;
  right: 10px;
  opacity: 1;
  -webkit-transition: opacity 0.25s ease;
  -moz-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.react-toggle--checked .react-toggle-track-x {
  opacity: 0;
}

.react-toggle-thumb {
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0ms;
  position: absolute;
  top: 1px;
  left: 1px;
  width: 22px;
  height: 22px;
  border: 1px solid #4D4D4D;
  border-radius: 50%;
  background-color: #FAFAFA;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;

  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.react-toggle--checked .react-toggle-thumb {
  left: 27px;
  border-color: #19AB27;
}

.react-toggle--focus .react-toggle-thumb {
  -webkit-box-shadow: 0px 0px 3px 2px #0099E0;
  -moz-box-shadow: 0px 0px 3px 2px #0099E0;
  box-shadow: 0px 0px 2px 3px #0099E0;
}

.react-toggle:active:not(.react-toggle--disabled) .react-toggle-thumb {
  -webkit-box-shadow: 0px 0px 5px 5px #0099E0;
  -moz-box-shadow: 0px 0px 5px 5px #0099E0;
  box-shadow: 0px 0px 5px 5px #0099E0;
}

.react-calendar {
  width: 350px;
  max-width: 100%;
  background: white;
  border: 1px solid #a0a096;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.125em;
}
.react-calendar,
.react-calendar *,
.react-calendar *:before,
.react-calendar *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.react-calendar button {
  margin: 0;
  border: 0;
  outline: none;
}
.react-calendar button:enabled:hover {
  cursor: pointer;
}
.react-calendar__navigation {
  height: 44px;
  margin-bottom: 1em;
}
.react-calendar__navigation button {
  min-width: 44px;
  background: none;
}
.react-calendar__navigation button:enabled:hover,
.react-calendar__navigation button:enabled:focus {
  background-color: #e6e6e6;
}
.react-calendar__navigation button[disabled] {
  background-color: #f0f0f0;
}
.react-calendar__month-view__weekdays {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.75em;
}
.react-calendar__month-view__weekdays__weekday {
  padding: 0.5em;
}
.react-calendar__month-view__weekNumbers {
  font-weight: bold;
}
.react-calendar__month-view__weekNumbers .react-calendar__tile {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75em;
  padding: calc(0.75em / 0.75) calc(0.5em / 0.75);
}
.react-calendar__month-view__days__day--weekend {
  color: #d10000;
}
.react-calendar__month-view__days__day--neighboringMonth {
  color: #757575;
}
.react-calendar__year-view .react-calendar__tile,
.react-calendar__decade-view .react-calendar__tile,
.react-calendar__century-view .react-calendar__tile {
  padding: 2em 0.5em;
}
.react-calendar__tile {
  max-width: 100%;
  text-align: center;
  padding: 0.75em 0.5em;
  background: none;
}
.react-calendar__tile:disabled {
  background-color: #f0f0f0;
}
.react-calendar__tile:enabled:hover,
.react-calendar__tile:enabled:focus {
  background-color: #e6e6e6;
}
.react-calendar__tile--hasActive {
  background: #76baff;
}
.react-calendar__tile--hasActive:enabled:hover,
.react-calendar__tile--hasActive:enabled:focus {
  background: #a9d4ff;
}
.react-calendar__tile--active {
  background: #006edc;
  color: white;
}
.react-calendar__tile--active:enabled:hover,
.react-calendar__tile--active:enabled:focus {
  background: #1087ff;
}
.react-calendar--selectRange .react-calendar__tile--hover {
  background-color: #e6e6e6;
}

.react-date-picker {
  display: inline-flex;
  position: relative;
}
.react-date-picker,
.react-date-picker *,
.react-date-picker *:before,
.react-date-picker *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.react-date-picker--disabled {
  background-color: #f0f0f0;
  color: #6d6d6d;
}
.react-date-picker__wrapper {
  display: flex;
  flex-grow: 1;
  flex-shrink: 0;
  border: thin solid gray;
}
.react-date-picker__inputGroup {
  min-width: calc((4px * 3) +  0.54em * 8  +  0.217em * 2);
  flex-grow: 1;
  padding: 0 2px;
  box-sizing: content-box;
}
.react-date-picker__inputGroup__divider {
  padding: 1px 0;
  white-space: pre;
}
.react-date-picker__inputGroup__input {
  min-width: 0.54em;
  height: 100%;
  position: relative;
  padding: 0 1px;
  border: 0;
  background: none;
  font: inherit;
  box-sizing: content-box;
  -moz-appearance: textfield;
}
.react-date-picker__inputGroup__input::-webkit-outer-spin-button,
.react-date-picker__inputGroup__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.react-date-picker__inputGroup__input:invalid {
  background: rgba(255, 0, 0, 0.1);
}
.react-date-picker__inputGroup__input--hasLeadingZero {
  margin-left: -0.54em;
  padding-left: calc(1px +  0.54em);
}
.react-date-picker__button {
  border: 0;
  background: transparent;
  padding: 4px 6px;
}
.react-date-picker__button:enabled {
  cursor: pointer;
}
.react-date-picker__button:enabled:hover .react-date-picker__button__icon,
.react-date-picker__button:enabled:focus .react-date-picker__button__icon {
  stroke: #0078d7;
}
.react-date-picker__button:disabled .react-date-picker__button__icon {
  stroke: #6d6d6d;
}
.react-date-picker__button svg {
  display: inherit;
}
.react-date-picker__calendar {
  width: 350px;
  max-width: 100vw;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
}
.react-date-picker__calendar--closed {
  display: none;
}
.react-date-picker__calendar .react-calendar {
  border-width: thin;
}

#formBuilder{
    display: flex;
    text-align: left;
    width: 1000px;
    margin: 200px auto;
}
#formBuilder #formBuilder-form{
    width: 70%;
    border: 1px solid #1e5799;
    padding-bottom: 150px;
}
#formBuilder #optionColumn{
    width: 30%;
    border: 1px solid #000;
}
#formBuilder .field{
    width: 100%;
    text-align: left;
    box-sizing: border-box;
    padding: 10px 10px;
    color: #ffffff;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#4096ee+0,82b7ed+100 */
    background: rgb(64,150,238); /* Old browsers */
    background: -moz-linear-gradient(-45deg, rgba(64,150,238,1) 0%, rgba(130,183,237,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, rgba(64,150,238,1) 0%,rgba(130,183,237,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, rgba(64,150,238,1) 0%,rgba(130,183,237,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4096ee', endColorstr='#82b7ed',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    border-bottom: 1px solid #ffffff;
}
#formBuilder .field.actualmoving{
    background: #356EB1;
}
#formBuilder #formBuilder-form > div > div{
    background: #f9fdff;
}
#formBuilder #formBuilder-form > div{
    border-bottom: #1e5799 2px solid;
}
#formBuilder #formBuilder-form > div > div{
    padding: 10px;
}
#formBuilder #formBuilder-form .actuallyMoving{
    height: 0;
    padding: 0;
    overflow: hidden;
}
#formBuilder .placeholder-down{
    padding-bottom: 20px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100;Blue+to+Transparent */
    background: -moz-linear-gradient(-45deg, rgba(30,87,153,1) 0%, rgba(125,185,232,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, rgba(30,87,153,1) 0%,rgba(125,185,232,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, rgba(30,87,153,1) 0%,rgba(125,185,232,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#007db9e8',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
#formBuilder .placeholder-up{
    padding-top: 20px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100;Blue+to+Transparent */
    background: -moz-linear-gradient(-45deg, rgba(30,87,153,1) 0%, rgba(125,185,232,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, rgba(30,87,153,1) 0%,rgba(125,185,232,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, rgba(30,87,153,1) 0%,rgba(125,185,232,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#007db9e8',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
#formBuilder .placeholder{
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0+100;Blue+to+Transparent */
    background: -moz-linear-gradient(-45deg, rgba(30,87,153,1) 0%, rgba(125,185,232,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, rgba(30,87,153,1) 0%,rgba(125,185,232,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, rgba(30,87,153,1) 0%,rgba(125,185,232,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#007db9e8',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
#formBuilder #formBuilder-form > div.actualmoving > div{
    /*transform:translateX(-9999px)*/
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,2989d8+50,207cca+51,7db9e8+100;Blue+Gloss+Default */
    background: #1e5799; /* Old browsers */
    background: -moz-linear-gradient(-45deg, #1e5799 0%, #2989d8 50%, #207cca 51%, #7db9e8 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#7db9e8',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    color: #ffffff;
}
#formBuilder .elementOFDrag input{
    border: 0px;
    border-bottom: 1px solid #000000;
    background: #fff;
    box-shadow: none;
    padding: 8px;
    margin-left: 20px;
}
#formBuilder .elementOFDrag textarea{
    border: 0px;
    border-bottom: 1px solid #000000;
    background: #fff;
    box-shadow: none;
    padding: 8px;
    width: 60%;
    margin-left: 20px;
}
#formBuilder .mainLabel span{
    display: inline-block;
    width: 20%;
    box-sizing: border-box;
}
#formBuilder .inputLabel input,
#formBuilder .mainLabel select,
#formBuilder .mainLabel option{
    width: 60%;
    height: 20px;
    line-height: 20px;
    margin-left: 0;
    border-radius: 0px;
}
#formBuilder .mainLabel span{
    vertical-align: top;
    display: inline-block;
    margin-top: 14px;
}
#formBuilder label{
    display: block;
}
#formBuilder .mainLabel input[type=checkbox]{
    width: auto;
    height: 15px;
    vertical-align: bottom;
    margin-left: 0;
}
#formBuilder .mainLabel select{
    height: 36px;
    line-height: 36px;
    width: calc(60% + 16px);
}
#formBuilder .fieldsTop > div,
#formBuilder .fieldsBottom > div{
    margin: 10px;
}
#formBuilder .show{
    display: block;
}
#formBuilder .hidden{
    display: none;
}
#formBuilder .headerBar{
    padding-bottom: 13px;
    line-height: 30px;
}
.#formBuilder mainField{
    border-top: 1px solid #82B4EA;
}
#formBuilder .headerBar .requied{
    color: red;
    font-size: 25px;
}
#formBuilder .headerBar button{
    float: right;
}
#formBuilder .headerBar button,
#formBuilder .optionFields>button{
    background: #1e5799;
    display: inline-block;
    padding: 8px 13px;
    border-radius: 35px;
    color: #ffffff;
    border: 1px solid #1e5799;
    margin: 0 5px;
    font-size: 14px;
    color: #ffffff;
    cursor: pointer;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear;
}
#formBuilder .headerBar button:hover,
#formBuilder .optionFields>button:hover{
    color: #1e5799;
    background: #ffffff;
}
#formBuilder .button-show-more{
    border-top: 1px solid #ccc;
    text-align: center;
    margin-top: 20px;
    position: relative;
    padding-bottom: 20px;
}
#formBuilder .button-show-more button{
    display: inline-block;
    background: #f9fdff;
    color: #000000;
    border: 0;
    position: absolute;
    text-shadow: none;
    margin-top: -7px;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    width: 110px;
    left: calc(50% - 55px);
    right: calc(50% - 55px);
}
#formBuilder .typeField{
    vertical-align: bottom;
    font-size: 14px;
    color: #cccccc;
}
#formBuilder .optionFields{
    width: 60%;
    display: inline-block;
}
#formBuilder .optionFields ol{
    padding-left: 10px;
}
#formBuilder .optionFields ol input:first-child{
    margin-left: 0;
}
#formBuilder .optionFields ol li{
    margin-bottom: 7px;
}
#formBuilder .optionFields ol input{
    width: 35%;
}
#formBuilder .optionFields ol button{
    background: #1e5799;
    display: inline-block;
    padding: 7px 11px;
    border-radius: 5px;
    color: #ffffff;
    border: 1px solid #1e5799;
    margin: 0 5px;
    font-size: 14px;
    color: #ffffff;
    cursor: pointer;
    -webkit-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear;
    line-height: 15px;
}
#formBuilder .optionFields ol button:hover{
    background: #ffffff;
    color: #1e5799;
}
#formBuilder .hideExtraOptions{
    padding-bottom: 20px;
}
#formBuilder .fieldToDrag i{
    display: inline-block;
    margin-right: 10px;
    font-size: 14px;
    line-height: 15px;
}
pre, form{
    text-align: left;
    border: 1px solid #000000;
    margin: 0 auto;
    padding: 20px;
}
#formshower h3{
    height: 30px;
}
#formshower {
    display: flex;
    width: 80%;
    margin: 0 auto;
}
#formshower > div{
    width: 50%;
}
/**
 * Extra class applied to VirtualScroll through className prop
 */
.rst__virtualScrollOverride {
  overflow: auto !important;
}
.rst__virtualScrollOverride * {
  box-sizing: border-box;
}

.ReactVirtualized__Grid__innerScrollContainer {
  overflow: visible !important;
}

.rst__rtl .ReactVirtualized__Grid__innerScrollContainer {
  direction: rtl;
}

.ReactVirtualized__Grid {
  outline: none;
}

.rst__node {
  min-width: 100%;
  white-space: nowrap;
  position: relative;
  text-align: left;
}

.rst__node.rst__rtl {
  text-align: right;
}

.rst__nodeContent {
  position: absolute;
  top: 0;
  bottom: 0;
}

/* ==========================================================================
   Scaffold

    Line-overlaid blocks used for showing the tree structure
   ========================================================================== */
.rst__lineBlock,
.rst__absoluteLineBlock {
  height: 100%;
  position: relative;
  display: inline-block;
}

.rst__absoluteLineBlock {
  position: absolute;
  top: 0;
}

.rst__lineHalfHorizontalRight::before,
.rst__lineFullVertical::after,
.rst__lineHalfVerticalTop::after,
.rst__lineHalfVerticalBottom::after {
  position: absolute;
  content: '';
  background-color: black;
}

/**
 * +-----+
 * |     |
 * |  +--+
 * |     |
 * +-----+
 */
.rst__lineHalfHorizontalRight::before {
  height: 1px;
  top: 50%;
  right: 0;
  width: 50%;
}

.rst__rtl.rst__lineHalfHorizontalRight::before {
  left: 0;
  right: initial;
}

/**
 * +--+--+
 * |  |  |
 * |  |  |
 * |  |  |
 * +--+--+
 */
.rst__lineFullVertical::after,
.rst__lineHalfVerticalTop::after,
.rst__lineHalfVerticalBottom::after {
  width: 1px;
  left: 50%;
  top: 0;
  height: 100%;
}

/**
 * +--+--+
 * |  |  |
 * |  |  |
 * |  |  |
 * +--+--+
 */
.rst__rtl.rst__lineFullVertical::after,
.rst__rtl.rst__lineHalfVerticalTop::after,
.rst__rtl.rst__lineHalfVerticalBottom::after {
  right: 50%;
  left: initial;
}

/**
 * +-----+
 * |  |  |
 * |  +  |
 * |     |
 * +-----+
 */
.rst__lineHalfVerticalTop::after {
  height: 50%;
}

/**
 * +-----+
 * |     |
 * |  +  |
 * |  |  |
 * +-----+
 */
.rst__lineHalfVerticalBottom::after {
  top: auto;
  bottom: 0;
  height: 50%;
}

/* Highlight line for pointing to dragged row destination
   ========================================================================== */
/**
 * +--+--+
 * |  |  |
 * |  |  |
 * |  |  |
 * +--+--+
 */
.rst__highlightLineVertical {
  z-index: 3;
}
.rst__highlightLineVertical::before {
  position: absolute;
  content: '';
  background-color: #36c2f6;
  width: 8px;
  margin-left: -4px;
  left: 50%;
  top: 0;
  height: 100%;
}

.rst__rtl.rst__highlightLineVertical::before {
  margin-left: initial;
  margin-right: -4px;
  left: initial;
  right: 50%;
}

@keyframes arrow-pulse {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  30% {
    transform: translate(0, 300%);
    opacity: 1;
  }
  70% {
    transform: translate(0, 700%);
    opacity: 1;
  }
  100% {
    transform: translate(0, 1000%);
    opacity: 0;
  }
}
.rst__highlightLineVertical::after {
  content: '';
  position: absolute;
  height: 0;
  margin-left: -4px;
  left: 50%;
  top: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid white;
  animation: arrow-pulse 1s infinite linear both;
}

.rst__rtl.rst__highlightLineVertical::after {
  margin-left: initial;
  margin-right: -4px;
  right: 50%;
  left: initial;
}

/**
 * +-----+
 * |     |
 * |  +--+
 * |  |  |
 * +--+--+
 */
.rst__highlightTopLeftCorner::before {
  z-index: 3;
  content: '';
  position: absolute;
  border-top: solid 8px #36c2f6;
  border-left: solid 8px #36c2f6;
  box-sizing: border-box;
  height: calc(50% + 4px);
  top: 50%;
  margin-top: -4px;
  right: 0;
  width: calc(50% + 4px);
}

.rst__rtl.rst__highlightTopLeftCorner::before {
  border-right: solid 8px #36c2f6;
  border-left: none;
  left: 0;
  right: initial;
}

/**
 * +--+--+
 * |  |  |
 * |  |  |
 * |  +->|
 * +-----+
 */
.rst__highlightBottomLeftCorner {
  z-index: 3;
}
.rst__highlightBottomLeftCorner::before {
  content: '';
  position: absolute;
  border-bottom: solid 8px #36c2f6;
  border-left: solid 8px #36c2f6;
  box-sizing: border-box;
  height: calc(100% + 4px);
  top: 0;
  right: 12px;
  width: calc(50% - 8px);
}

.rst__rtl.rst__highlightBottomLeftCorner::before {
  border-right: solid 8px #36c2f6;
  border-left: none;
  left: 12px;
  right: initial;
}

.rst__highlightBottomLeftCorner::after {
  content: '';
  position: absolute;
  height: 0;
  right: 0;
  top: 100%;
  margin-top: -12px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 12px solid #36c2f6;
}

.rst__rtl.rst__highlightBottomLeftCorner::after {
  left: 0;
  right: initial;
  border-right: 12px solid #36c2f6;
  border-left: none;
}

.rst__rowWrapper {
  padding: 10px 10px 10px 0;
  height: 100%;
  box-sizing: border-box;
}

.rst__rtl.rst__rowWrapper {
  padding: 10px 0 10px 10px;
}

.rst__row {
  height: 100%;
  white-space: nowrap;
  display: flex;
}
.rst__row > * {
  box-sizing: border-box;
}

/**
 * The outline of where the element will go if dropped, displayed while dragging
 */
.rst__rowLandingPad,
.rst__rowCancelPad {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}
.rst__rowLandingPad > *,
.rst__rowCancelPad > * {
  opacity: 0 !important;
}
.rst__rowLandingPad::before,
.rst__rowCancelPad::before {
  background-color: lightblue;
  border: 3px dashed white;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

/**
 * Alternate appearance of the landing pad when the dragged location is invalid
 */
.rst__rowCancelPad::before {
  background-color: #e6a8ad;
}

/**
 * Nodes matching the search conditions are highlighted
 */
.rst__rowSearchMatch {
  outline: solid 3px #0080ff;
}

/**
 * The node that matches the search conditions and is currently focused
 */
.rst__rowSearchFocus {
  outline: solid 3px #fc6421;
}

.rst__rowContents,
.rst__rowLabel,
.rst__rowToolbar,
.rst__moveHandle,
.rst__toolbarButton {
  display: inline-block;
  vertical-align: middle;
}

.rst__rowContents {
  position: relative;
  height: 100%;
  border: solid #bbb 1px;
  border-left: none;
  box-shadow: 0 2px 2px -2px;
  padding: 0 5px 0 10px;
  border-radius: 2px;
  min-width: 230px;
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
}

.rst__rtl.rst__rowContents {
  border-right: none;
  border-left: solid #bbb 1px;
  padding: 0 10px 0 5px;
}

.rst__rowContentsDragDisabled {
  border-left: solid #bbb 1px;
}

.rst__rtl.rst__rowContentsDragDisabled {
  border-right: solid #bbb 1px;
  border-left: solid #bbb 1px;
}

.rst__rowLabel {
  flex: 0 1 auto;
  padding-right: 20px;
}
.rst__rtl.rst__rowLabel {
  padding-left: 20px;
  padding-right: inherit;
}

.rst__rowToolbar {
  flex: 0 1 auto;
  display: flex;
}

.rst__moveHandle,
.rst__loadingHandle {
  height: 100%;
  width: 44px;
  background: #d9d9d9
    url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MiIgaGVpZ2h0PSI0MiI+PGcgc3Ryb2tlPSIjRkZGIiBzdHJva2Utd2lkdGg9IjIuOSIgPjxwYXRoIGQ9Ik0xNCAxNS43aDE0LjQiLz48cGF0aCBkPSJNMTQgMjEuNGgxNC40Ii8+PHBhdGggZD0iTTE0IDI3LjFoMTQuNCIvPjwvZz4KPC9zdmc+')
    no-repeat center;
  border: solid #aaa 1px;
  box-shadow: 0 2px 2px -2px;
  cursor: move;
  border-radius: 1px;
  z-index: 1;
}

.rst__loadingHandle {
  cursor: default;
  background: #d9d9d9;
}

@keyframes pointFade {
  0%,
  19.999%,
  100% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
}

.rst__loadingCircle {
  width: 80%;
  height: 80%;
  margin: 10%;
  position: relative;
}

.rst__loadingCirclePoint {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.rst__rtl.rst__loadingCirclePoint {
  right: 0;
  left: initial;
}

.rst__loadingCirclePoint::before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 11%;
  height: 30%;
  background-color: #fff;
  border-radius: 30%;
  animation: pointFade 800ms infinite ease-in-out both;
}
.rst__loadingCirclePoint:nth-of-type(1) {
  transform: rotate(0deg);
}
.rst__loadingCirclePoint:nth-of-type(7) {
  transform: rotate(180deg);
}
.rst__loadingCirclePoint:nth-of-type(1)::before,
.rst__loadingCirclePoint:nth-of-type(7)::before {
  animation-delay: -800ms;
}
.rst__loadingCirclePoint:nth-of-type(2) {
  transform: rotate(30deg);
}
.rst__loadingCirclePoint:nth-of-type(8) {
  transform: rotate(210deg);
}
.rst__loadingCirclePoint:nth-of-type(2)::before,
.rst__loadingCirclePoint:nth-of-type(8)::before {
  animation-delay: -666ms;
}
.rst__loadingCirclePoint:nth-of-type(3) {
  transform: rotate(60deg);
}
.rst__loadingCirclePoint:nth-of-type(9) {
  transform: rotate(240deg);
}
.rst__loadingCirclePoint:nth-of-type(3)::before,
.rst__loadingCirclePoint:nth-of-type(9)::before {
  animation-delay: -533ms;
}
.rst__loadingCirclePoint:nth-of-type(4) {
  transform: rotate(90deg);
}
.rst__loadingCirclePoint:nth-of-type(10) {
  transform: rotate(270deg);
}
.rst__loadingCirclePoint:nth-of-type(4)::before,
.rst__loadingCirclePoint:nth-of-type(10)::before {
  animation-delay: -400ms;
}
.rst__loadingCirclePoint:nth-of-type(5) {
  transform: rotate(120deg);
}
.rst__loadingCirclePoint:nth-of-type(11) {
  transform: rotate(300deg);
}
.rst__loadingCirclePoint:nth-of-type(5)::before,
.rst__loadingCirclePoint:nth-of-type(11)::before {
  animation-delay: -266ms;
}
.rst__loadingCirclePoint:nth-of-type(6) {
  transform: rotate(150deg);
}
.rst__loadingCirclePoint:nth-of-type(12) {
  transform: rotate(330deg);
}
.rst__loadingCirclePoint:nth-of-type(6)::before,
.rst__loadingCirclePoint:nth-of-type(12)::before {
  animation-delay: -133ms;
}
.rst__loadingCirclePoint:nth-of-type(7) {
  transform: rotate(180deg);
}
.rst__loadingCirclePoint:nth-of-type(13) {
  transform: rotate(360deg);
}
.rst__loadingCirclePoint:nth-of-type(7)::before,
.rst__loadingCirclePoint:nth-of-type(13)::before {
  animation-delay: 0ms;
}

.rst__rowTitle {
  font-weight: bold;
}

.rst__rowTitleWithSubtitle {
  font-size: 85%;
  display: block;
  height: 0.8rem;
}

.rst__rowSubtitle {
  font-size: 70%;
  line-height: 1;
}

.rst__collapseButton,
.rst__expandButton {
  appearance: none;
  border: none;
  position: absolute;
  border-radius: 100%;
  box-shadow: 0 0 0 1px #000;
  width: 16px;
  height: 16px;
  padding: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.rst__rtl.rst__collapseButton,
.rst__rtl.rst__expandButton {
  transform: translate(50%, -50%);
}
.rst__collapseButton:focus,
.rst__expandButton:focus {
  outline: none;
  box-shadow: 0 0 0 1px #000, 0 0 1px 3px #83bef9;
}
.rst__collapseButton:hover:not(:active),
.rst__expandButton:hover:not(:active) {
  background-size: 24px;
  height: 20px;
  width: 20px;
}

.rst__collapseButton {
  background: #fff
    url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxOCI+PGNpcmNsZSBjeD0iOSIgY3k9IjkiIHI9IjgiIGZpbGw9IiNGRkYiLz48ZyBzdHJva2U9IiM5ODk4OTgiIHN0cm9rZS13aWR0aD0iMS45IiA+PHBhdGggZD0iTTQuNSA5aDkiLz48L2c+Cjwvc3ZnPg==')
    no-repeat center;
}

.rst__expandButton {
  background: #fff
    url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxOCI+PGNpcmNsZSBjeD0iOSIgY3k9IjkiIHI9IjgiIGZpbGw9IiNGRkYiLz48ZyBzdHJva2U9IiM5ODk4OTgiIHN0cm9rZS13aWR0aD0iMS45IiA+PHBhdGggZD0iTTQuNSA5aDkiLz48cGF0aCBkPSJNOSA0LjV2OSIvPjwvZz4KPC9zdmc+')
    no-repeat center;
}

/**
 * Line for under a node with children
 */
.rst__lineChildren {
  height: 100%;
  display: inline-block;
  position: absolute;
}
.rst__lineChildren::after {
  content: '';
  position: absolute;
  background-color: black;
  width: 1px;
  left: 50%;
  bottom: 0;
  height: 10px;
}

.rst__rtl.rst__lineChildren::after {
  right: 50%;
  left: initial;
}

.rst__placeholder {
  position: relative;
  height: 68px;
  max-width: 300px;
  padding: 10px;
}
.rst__placeholder,
.rst__placeholder > * {
  box-sizing: border-box;
}
.rst__placeholder::before {
  border: 3px dashed #d9d9d9;
  content: '';
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  left: 5px;
  z-index: -1;
}

/**
 * The outline of where the element will go if dropped, displayed while dragging
 */
.rst__placeholderLandingPad,
.rst__placeholderCancelPad {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}
.rst__placeholderLandingPad *,
.rst__placeholderCancelPad * {
  opacity: 0 !important;
}
.rst__placeholderLandingPad::before,
.rst__placeholderCancelPad::before {
  background-color: lightblue;
  border-color: white;
}

/**
 * Alternate appearance of the landing pad when the dragged location is invalid
 */
.rst__placeholderCancelPad::before {
  background-color: #e6a8ad;
}

/* Collection default theme */

.ReactVirtualized__Collection {
}

.ReactVirtualized__Collection__innerScrollContainer {
}

/* Grid default theme */

.ReactVirtualized__Grid {
}

.ReactVirtualized__Grid__innerScrollContainer {
}

/* Table default theme */

.ReactVirtualized__Table {
}

.ReactVirtualized__Table__Grid {
}

.ReactVirtualized__Table__headerRow {
  font-weight: 700;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ReactVirtualized__Table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ReactVirtualized__Table__headerTruncatedText {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.ReactVirtualized__Table__headerColumn,
.ReactVirtualized__Table__rowColumn {
  margin-right: 10px;
  min-width: 0px;
}
.ReactVirtualized__Table__rowColumn {
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ReactVirtualized__Table__headerColumn:first-of-type,
.ReactVirtualized__Table__rowColumn:first-of-type {
  margin-left: 10px;
}
.ReactVirtualized__Table__sortableHeaderColumn {
  cursor: pointer;
}

.ReactVirtualized__Table__sortableHeaderIconContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ReactVirtualized__Table__sortableHeaderIcon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 1em;
  width: 1em;
  fill: currentColor;
}

/* List default theme */

.ReactVirtualized__List {
}
@charset "UTF-8";

:root {
  --blue: #20a8d8;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #f86c6b;
  --orange: #f8cb00;
  --yellow: #ffc107;
  --green: #4dbd74;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #73818f;
  --gray-dark: #2f353a;
  --light-blue: #63c2de;
  --gray-100: #f0f3f5;
  --gray-200: #e4e7ea;
  --gray-300: #c8ced3;
  --gray-400: #acb4bc;
  --gray-500: #8f9ba6;
  --gray-600: #73818f;
  --gray-700: #5c6873;
  --gray-800: #2f353a;
  --gray-900: #23282c;
  --primary: #20a8d8;
  --secondary: #c8ced3;
  --success: #4dbd74;
  --info: #63c2de;
  --warning: #ffc107;
  --danger: #f86c6b;
  --light: #f0f3f5;
  --dark: #2f353a;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
}

@font-face {
  font-family: "Montserrat-Regular";
  font-style: normal;
  font-weight: 400;
  src: url(../../static/fonts/Montserrat-Regular.a8a11736.ttf) format("truetype");
}
@font-face {
  font-family: "Montserrat-SemiBold";
  font-style: normal;
  font-weight: 400;
  src: url(../../static/fonts/Montserrat-SemiBold.bbcd5bbb.ttf) format("truetype");
}
@font-face {
  font-family: "Quicksand-Regular";
  font-style: normal;
  font-weight: 400;
  src: url(../../static/fonts/Quicksand-Regular.678b12a6.ttf) format("truetype");
}
@font-face {
  font-family: "Quicksand-Medium";
  font-style: normal;
  font-weight: 400;
  src: url(../../static/fonts/Quicksand-Medium.f65d1a07.ttf) format("truetype");
}
@font-face {
  font-family: "Roboto-Medium";
  font-style: normal;
  font-weight: 400;
  src: url(../../static/fonts/Roboto-Medium.d52f011b.ttf) format("truetype");
}
@font-face {
  font-family: "Roboto-Regular";
  font-style: normal;
  font-weight: 400;
  src: url(../../static/fonts/Roboto-Regular.18d44f79.ttf) format("truetype");
}
@media (min-width: 992px) {
  .border {
    border: 1px solid lightgray !important;
    border-left: none !important;
  }
}
@media (min-width: 320px) {
  .header-fixed .app-header {
    position: fixed;
    z-index: 1020;
    width: 100%;
    height: 55px;
  }
  .navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.09375rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
  }
  .sidebar-fixed .sidebar {
    position: fixed;
    z-index: 1019;
    width: 200px;
    height: 100vh;
  }
  .width_200 {
    width: 225px;
    margin-left: 0px;
  }
  .haderCardSpacing {
    width: 225px;
    margin-left: 0px;
  }
  .logoutButton {
    margin-right: 5px !important;
  }
  .headerCard,
  .profileNotSetHeaderCard {
    margin-bottom: 0;
    position: absolute;
    right: 15%;
    top: 2px;
    width: 225px;
  }
  .headerAdminCard,
  .headerFacilityUserCard {
    margin-bottom: 0;
    position: absolute;
    right: 11%;
    top: 2px;
    width: 248px;
  }
}
@media (min-width: 375px) {
  .header-fixed .app-header {
    position: fixed;
    z-index: 1020;
    width: 100%;
    height: 55px;
  }
  .sidebar-fixed .sidebar {
    position: fixed;
    z-index: 1019;
    width: 200px;
    height: 100vh;
  }
  .logoutButton {
    margin-right: 15px !important;
  }
  .width_200 {
    width: 250px;
    margin-left: 0px;
  }
  .haderCardSpacing {
    width: 250px;
    margin-left: 0px;
  }
  .headerCard,
  .profileNotSetHeaderCard {
    margin-bottom: 0;
    position: absolute;
    right: 20%;
    top: 2px;
    width: 240px;
  }
  .headerAdminCard,
  .headerFacilityUserCard {
    margin-bottom: 0;
    position: absolute;
    right: 14%;
    top: 2px;
    width: 278px;
  }
  .main .container-fluid {
    padding: 0 30px;
    margin-top: 15% !important;
  }
}
@media (min-width: 350px) {
  .main .container-fluid {
    padding: 0 30px;
    margin-top: 19% !important;
  }
  .header-fixed .app-header {
    position: fixed;
    z-index: 1020;
    width: 100%;
    height: 55px;
  }
  .header-fixed .navbar-nav {
    flex-wrap: wrap;
    padding-left: 9px;
  }
  .navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.09375rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
  }
  .sidebar-fixed .sidebar {
    position: fixed;
    z-index: 1019;
    width: 200px;
    height: 100vh;
  }
  .logoutButton {
    margin-right: 15px !important;
  }
  .width_200 {
    width: 220px;
    margin-left: 12px;
  }
  .haderCardSpacing {
    width: 220px;
    margin-left: 0px;
  }
  .headerCard,
  .profileNotSetHeaderCard,
  .headerAdminCard,
  .headerFacilityUserCard {
    margin-bottom: 0;
    position: absolute;
    right: 20%;
    top: 2px;
    width: 280px;
  }
}
@media (min-width: 425px) {
  .main .container-fluid {
    padding: 0 30px;
    margin-top: 15% !important;
  }
  .header-fixed .app-header {
    position: fixed;
    z-index: 1020;
    width: 100%;
    height: 55px;
  }
  .header-fixed .navbar-nav {
    flex-wrap: wrap;
    padding-left: 9px;
  }
  .navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.09375rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
  }
  .sidebar-fixed .sidebar {
    position: fixed;
    z-index: 1019;
    width: 200px;
    height: 100vh;
  }
  .logoutButton {
    margin-right: 15px !important;
  }
  .width_200 {
    width: 220px;
    margin-left: 12px;
  }
  .haderCardSpacing {
    width: 220px;
    margin-left: 0px;
  }
  .headerCard,
  .profileNotSetHeaderCard,
  .headerAdminCard,
  .headerFacilityUserCard {
    margin-bottom: 0;
    position: absolute;
    right: 20%;
    top: 2px;
    width: 280px;
  }
}
@media (min-width: 425px) {
  .main .container-fluid {
    padding: 0 30px;
    margin-top: 15% !important;
  }
  .header-fixed .app-header {
    position: fixed;
    z-index: 1020;
    width: 100%;
    height: 55px;
  }
  .header-fixed .navbar-nav {
    flex-wrap: wrap;
    padding-left: 9px;
  }
  .navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.09375rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
  }
  .sidebar-fixed .sidebar {
    position: fixed;
    z-index: 1019;
    width: 200px;
    height: 100vh;
  }
  .logoutButton {
    margin-right: 15px !important;
  }
  .width_200 {
    width: 220px;
    margin-left: 12px;
  }
  .haderCardSpacing {
    width: 220px;
    margin-left: 0px;
  }
  .headerCard,
  .profileNotSetHeaderCard,
  .headerAdminCard,
  .headerFacilityUserCard {
    margin-bottom: 0;
    position: absolute;
    right: 20%;
    top: 2px;
    width: 280px;
  }
}
@media (max-width: 539px) {
  .headerName {
    display: none;
  }
}
@media (min-width: 540px) and (max-width: 1400px) {
  .headerName {
    font-family: Montserrat-Regular;
    font-weight: 500;
    font-size: 14px;
    color: #20a8d8 !important;
    display: block;
  }
}
@media (min-width: 520px) {
  .main .container-fluid {
    padding: 0 30px;
    margin-top: 5% !important;
  }
  .header-fixed .app-header {
    position: fixed;
    z-index: 1020;
    width: 100%;
  }
  .width_200 {
    width: 220px;
    margin-left: 15px;
  }
  .haderCardSpacing {
    width: 220px;
    margin-left: 0px;
  }
  .navbar-toggler {
    padding: 0.5rem 0.75rem;
    font-size: 1.09375rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
  }
  .sidebar-fixed .sidebar {
    position: fixed;
    z-index: 1019;
    width: 200px;
    height: 100vh;
  }
  .sidebar-md-show .sidebar,
  html:not([dir="rtl"]) .sidebar-show .sidebar {
    margin-left: 0px !important;
  }
  .headerCard {
    margin-bottom: 0;
    position: absolute;
    right: 43%;
    top: 2px;
    width: 295px;
  }
  .profileNotSetHeaderCard {
    margin-bottom: 0;
    position: absolute;
    right: 43%;
    top: 2px;
    width: 295px;
  }
  .headerAdminCard {
    margin-bottom: 0;
    position: absolute;
    right: 43%;
    top: 2px;
    width: 295px;
  }
  .headerFacilityUserCard {
    margin-bottom: 0;
    position: absolute;
    right: 37%;
    top: 2px;
    width: 295px;
  }
}
@media (min-width: 620px) {
  .main .container-fluid {
    padding: 0 30px;
    margin-top: 7% !important;
  }
  .header-fixed .app-header {
    position: fixed;
    z-index: 1020;
    width: 100%;
  }
  .width_200 {
    width: 220px;
    margin-left: 15px;
  }
  .haderCardSpacing {
    width: 220px;
    margin-left: 0px;
  }
  .navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.09375rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
  }
  .sidebar-fixed .sidebar {
    position: fixed;
    z-index: 1019;
    width: 200px;
    height: 100vh;
  }
  .sidebar-md-show .sidebar,
  html:not([dir="rtl"]) .sidebar-show .sidebar {
    margin-left: 0px !important;
  }
  .headerCard {
    margin-bottom: 0;
    position: absolute;
    right: 43%;
    top: 2px;
    width: 295px;
  }
  .profileNotSetHeaderCard {
    margin-bottom: 0;
    position: absolute;
    right: 43%;
    top: 2px;
    width: 295px;
  }
  .headerAdminCard {
    margin-bottom: 0;
    position: absolute;
    right: 43%;
    top: 2px;
    width: 295px;
  }
  .headerFacilityUserCard {
    margin-bottom: 0;
    position: absolute;
    right: 37%;
    top: 2px;
    width: 295px;
  }
}
@media (max-width: 769px) {
  .logoImage {
    display: none;
  }
}
@media (min-width: 768px) {
  .main .container-fluid {
    padding: 0 30px;
    margin-top: 11% !important;
  }

  .header-fixed .app-header {
    position: fixed;
    z-index: 1020;
    width: 100%;
    height: 55px;
  }

  .navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.09375rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
  }
  .sidebar-fixed .sidebar {
    position: fixed;
    z-index: 1019;
    width: 200px;
    height: 100vh;
  }
  .header-fixed .navbar-nav {
    flex-wrap: wrap;
    padding-left: 0px;
    margin-left: 0px;
  }
  .app-header .navbar-brand {
    display: inline-flex;
    align-items: center;
    justify-content: left;
    width: 200px;
    height: 55px;
    padding: 0;
    margin-right: 200px;
    background-color: transparent;
  }
  .logoutButton {
    margin-right: 0px !important;
    margin-left: 0px !important;
  }
  .breadcrumb {
    position: relative;
    margin-top: 0px;
  }
  .logoutButton {
    margin-right: 20px !important;
  }
  .border {
    border-right: 1px solid lightgray !important;
    border-left: 1px solid lightgray !important;
  }
  .headerCard {
    margin-bottom: 0;
    position: absolute;
    right: 50%;
    top: 2px;
    width: 320px;
  }
  .profileNotSetHeaderCard {
    margin-bottom: 0;
    position: absolute;
    right: 50%;
    top: 2px;
    width: 320px;
  }
  .headerAdminCard {
    margin-bottom: 0;
    position: absolute;
    right: 50%;
    top: 2px;
    width: 320px;
  }
  .headerFacilityUserCard {
    margin-bottom: 0;
    position: absolute;
    right: 40%;
    top: 3px;
    width: 280px;
  }
}
@media (min-width: 1024px) {
  .main .container-fluid {
    padding: 0 30px;
    margin-top: 10% !important;
  }
  .header-fixed .app-header {
    position: fixed;
    z-index: 1020;
    width: 100%;
    height: 100px;
  }
  .navbar-toggler {
    display: none;
  }
  .app-header .navbar-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 55px;
    padding: 0;
    margin-right: 0;
    background-color: transparent;
  }
  .breadcrumb {
    position: relative;
    margin-top: 40px;
  }
  .ml_40 {
    margin-left: 78px;
    margin-right: 0px;
  }
  .ml_sds {
    margin-left: 40px;
  }
  .ml_fuser {
    margin-left: 66px;
  }
  .width_200 {
    width: 212px;
    margin-left: 15px;
  }
  .haderCardSpacing {
    width: 212px;
    margin-left: 0px;
  }
  .headerCard {
    margin-bottom: 0;
    position: absolute;
    right: 17%;
    top: 23px;
    width: 230px;
  }
  .profileNotSetHeaderCard {
    margin-bottom: 0;
    position: absolute;
    right: 14%;
    top: 25px;
    width: 270px;
  }
  .headerAdminCard {
    margin-bottom: 0;
    position: absolute;
    right: 8%;
    top: 46px;
    width: 280px;
  }
  .headerFacilityUserCard {
    margin-bottom: 0;
    position: absolute;
    right: 8%;
    top: 11px;
    width: 255px;
  }
  .headerName {
    font-family: Montserrat-Regular;
    font-weight: 500;
    font-size: 14px;
    color: #20a8d8 !important;
    margin-left: 14px;
    display: block;
  }
}
@media (min-width: 1270px) {
  .main .container-fluid {
    padding: 0 30px;
    margin-top: 5% !important;
  }
  .header-fixed .app-header {
    position: fixed;
    z-index: 1020;
    width: 100%;
    height: 55px;
  }
  .navbar-toggler {
    display: none;
  }
  .logoutButton {
    margin-right: 20px !important;
    margin-left: 30px !important;
    position: initial;
  }
  .ml_40 {
    margin-left: 78px;
    margin-right: 0px;
  }
  .ml_sds {
    margin-left: 15px;
  }
  .ml_fuser {
    margin-left: 210px;
  }
  .width_200 {
    width: 240px;
    margin-left: 0px;
  }
  .haderCardSpacing {
    width: 460px;
    margin-left: 0px;
  }
  .breadcrumb {
    position: relative;
    margin-top: 0px;
  }
  .headerCard {
    margin-bottom: 0;
    position: absolute;
    right: 19%;
    top: 2px;
    width: 270px;
  }
  .profileNotSetHeaderCard {
    margin-bottom: 0;
    position: absolute;
    right: 19%;
    top: 2px;
    width: 270px;
  }
  .headerAdminCard {
    margin-bottom: 0;
    position: absolute;
    right: 15%;
    top: 3px;
    width: 275px;
    margin-right: 2px;
  }
  .headerFacilityUserCard {
    margin-bottom: 0;
    position: absolute;
    right: 14%;
    top: 3px;
    width: 275px;
  }
}
@media (min-width: 1440px) {
  .main .container-fluid {
    padding: 0 30px;
    margin-top: 5% !important;
  }
  .headerCard,
  .profileNotSetHeaderCard {
    margin-bottom: 0;
    position: absolute;
    right: 20%;
    top: 2px;
    width: 300px;
  }
  .ml_40 {
    margin-left: 82px;
    margin-right: 0px;
  }
  .ml_sds {
    margin-left: 10px;
  }
  .ml_fuser {
    margin-left: 35px;
  }
  .width_200 {
    width: 400px;
    margin-left: 0px;
  }
  .haderCardSpacing {
    width: 400px;
    margin-left: 0px;
  }

  .headerAdminCard {
    margin-bottom: 0;
    position: absolute;
    right: 20%;
    top: 2px;
    width: 300px;
  }
  .headerFacilityUserCard {
    margin-bottom: 0;
    position: absolute;
    right: 22%;
    top: 3px;
    width: 278px;
  }
}
.app-header .nav-item {
  position: relative;
  min-width: 50px;
  width: 100px;
  margin: 0;
  text-align: center;
}
.sidebar .nav {
  width: 198px;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
}
.sidebar .nav-link.active {
  color: #fff;
  background: #20a8d8;
}
.sidebar .nav-item:hover {
  background-color: #5c6873 !important;
  color: #ffffff;
}
.sidebar .nav-item .nav-link .active {
  color: #000000;
  background: #20a8d8;
}
.sidebar .nav-item:active {
  background-color: #20a8d8 !important;
}
.sidebar .nav-item:hover {
  background-color: #5c6873 !important;
  color: #ffffff;
}
.sidebar .nav-item .nav-icon {
  color: #000000 !important;
}
.sidebar {
  color: #000000;
  background: #e4e7ea;
}
.sidebar .nav-item .nav-link {
  font-family: Montserrat-SemiBold;
  font-size: 12px;
  font-weight: 400;
  color: #000000;
  background-color: #ffffff;
  border-bottom: 1px solid #c8ced3;
}
.sidebar {
  color: #000000;
  background: #ffffff;
  border: 1px solid #c8ced3;
}
.sidebar .nav-dropdown-items .nav-item .nav-link {
  font-family: Montserrat-Regular;
  font-size: 12px;
  position: relative;
  color: #000000;
  background-color: #ffffff;
}
.sidebar .nav-dropdown-items .nav-item:active {
  font-family: Montserrat-Regular;
  font-size: 14px;
  position: relative;
  background-color: #20a8d8;
}
.sidebar .nav-dropdown-items .nav-item .nav-link:active {
  font-family: Montserrat-Regular;
  font-size: 14px;
  position: relative;
  background-color: #20a8d8;
  color: #ffffff;
}
.sidebar .nav-dropdown-items .nav-item .nav-link {
  font-family: Montserrat-Regular;
  font-size: 14px;
  position: relative;
  color: #000000;
}
.sidebar .nav-item:hover {
  background-color: #ffffff;
  border-bottom: 1px solid #c8ced3;
}
.sidebar .nav-link:hover {
  color: #ffffff;
  background-color: #20a8d8;
  border: none;
}
.sidebar .nav-dropdown.open .nav-link:hover {
  color: #000000;
}
.sidebar .nav-item:active {
  color: #000000;
  background-color: #20a8d8;
  border-bottom: 2px solid #c8ced3;
}
.sidebar .nav-link .nav-icon {
  display: none;
}
.sidebar .nav-dropdown.open .nav-dropdown-items .nav-link .active {
  color: #000000;
}
.sidebar .nav-dropdown .nav-dropdown-toggle .nav-icon {
  color: #000000;
}
.sidebar .nav-dropdown.open .nav-dropdown-toggle .nav-link {
  color: #000000;
}
.sidebar .nav-dropdown.open .nav-item .active {
  background-color: #20a8d8;
  color: #ffffff;
}
.sidebar .nav-dropdown.open .nav-link:hover {
  color: #ffffff;
}
.sidebar .nav-dropdown.open .nav-link {
  color: #000000;
}
.sidebar .nav-dropdown.open .nav-dropdown-toggle .nav-link {
  color: #000000;
}
.sidebar .nav-dropdown.open .nav-dropdown-toggle .nav-item {
  background-color: #000000;
}
.navbar-nav .nav-item .nav-link {
  font-family: Montserrat-SemiBold;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
}
.dropdown .nav-item {
  padding: 5px 15px !important;
}
.navbar-nav .nav-link {
  color: #fff;
}
.navbar-nav .nav-item:hover {
  background-color: #e4e7ea !important;
}
.navbar-nav .nav-link:hover {
  color: #000000 !important;
}
.navbar-nav .nav-link {
  color: #000000;
}
.nav-active {
  background-color: #20a8d8;
}
.nav-active .nav-link {
  color: #ffffff !important;
}
.dropdown-item {
  font-family: Montserrat-Regular;
  font-size: 14px;
  position: relative;
  padding: 5px 10px;
  border-bottom: 1px solid #c8ced3;
}
.dropdown-item:hover {
  color: #000000;
  background-color: #e4e7ea;
  border-bottom: 1px solid #c8ced3;
}
.dropdown-item:active {
  color: #ffffff;
  background-color: #20a8d8;
  border-bottom: 1px solid #c8ced3;
}
.navbar-brand-full {
  margin-left: -44px !important;
}
.btn {
  float: right !important;
}
.marginLeftHeader {
  margin-left: 5px;
}
html,
body {
  min-height: 100%;
}
body {
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../../static/assets/worldMap.75c54547.png);
}
label {
  font-family: "Quicksand-Medium";
  font-size: 14px;
  margin-bottom: 0;
  color: #5c6873;
  margin-top: 3px;
}
.ml_10 {
  margin-left: 10px;
}
.cursor {
  cursor: pointer;
}
/* .nav-tabs .nav-link {
  color: #000000 !important;
  background: #e8eaf6;
  border-bottom: 3px solid #e8eaf6;
  text-transform: uppercase;
}
.nav-tabs .nav-link:hover {
  color: #000000 !important;
  background: #e8eaf6;
  border-bottom: 3px solid skyblue;
  text-transform: uppercase;
}
.nav-tabs .nav-link.active {
  color: #000000 !important;
  background: #e8eaf6;
  border: none;
  text-transform: uppercase;
  border-bottom: 3px solid skyblue;
} */
.form-control {
  font-size: 14px;
  padding: 0.375rem 0.45rem;
  color: #000000 !important;
  height: 38px !important;
}

textarea.form-control {
  height: auto !important;
}
.form-control::placeholder {
  color: #b3b3b3 !important;
  opacity: 1;
  font-family: "Roboto-Regular";
  font-size: 12px;
}
.requiredSymbol {
  color: red;
  font-size: 14px;
}
.react-bs-table-bordered {
  background: white;
}
td.react-bs-table-no-data {
  color: red;
  font-family: Quicksand-Regular;
}
button#pageDropDown {
  float: left !important;
}
th.sort-column {
  text-align: center !important;
}
.react-bootstrap-table {
  height: 500px;
  overflow: auto;
}
.EPAClassifications {
  background: gray;
  margin-top: 10px;
  text-align: center;
  font-weight: bold;
}
.EditChemical {
  border: 1px solid black;
  background: #f3f3f3;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-10 {
  margin-bottom: 10px;
}
.float-left {
  float: left !important;
}
.card.bg-primary {
  background: white !important;
  border: 1px solid #c8ced3 !important;
  border-right: none !important;
}
.logobrand {
  margin-left: -45px !important;
  margin-top: 50px !important;
}
.allignLOGO {
  display: flex;
  align-self: center;
  justify-content: center;
  margin-bottom: 15px;
}
.allignLogin {
  margin-top: 20px;
  border: none !important;
}
.allignForgotPassword {
  margin-top: 23%;
}
.borderRight {
  border-right: 3px solid #20a8d8;
}
.forgotPwdBorder {
  border: 2px solid lightgray !important;
}
.mt-20 {
  margin-top: -20px;
}
.cursor {
  cursor: pointer !important;
}
table {
  border-collapse: collapse;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 1px solid #f5f5f5;
  font-size: 12px;
  font-weight: 600;
  color: #000;
}
.table td {
  padding: 0.75rem 0.5rem;
  vertical-align: top;
  border-top: 1px solid #f5f5f5;
  font-family: "Roboto-Regular";
  font-size: 12px;
}
.table th,
.table td {
  padding: 0.75rem 0.5rem;
  vertical-align: top;
  border-top: 1px solid #f5f5f5;
  font-family: "Roboto-Regular";
  font-size: 12px;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 1px solid #f5f5f5;
  font-size: 12px;
  font-weight: 600;
  color: #000;
}
.table tbody + tbody {
  border-top: 1px solid #f5f5f5;
}
.table .table {
  background-color: #e4e5e6;
}
.table-sm th,
.table-sm td {
  padding: 0.3rem;
}
.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
}
.table-hover .table-secondary:hover {
  background-color: #e2e4e8;
}
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #e2e4e8;
}
.AddCustomer {
  margin-bottom: 10px;
  margin-top: 10px;
  float: left !important;
}

.AddChemical {
  margin-bottom: 10px;
  margin-top: 5px;
  float: left !important;
}
.ml10 {
  margin-left: 10px;
}
.rt-td {
  text-align: left;
}
.ReactTable .rt-thead .rt-tr {
  text-align: left;
  background: #20a8d8 !important;
  font-family: Montserrat-SemiBold;
  height: 35px;
  color: #ffffff;
}
.rt-tbody {
  background: white !important;
}
.pagination-bottom {
  background: white !important;
}
.ReactTable .rt-noData {
  z-index: 0 !important;
}
.ReactTable.sixthRow .rt-tbody .rt-td:nth-child(6) {
  color: blue;
  cursor: pointer;
}
/* .ReactTable.secondRow .rt-tbody .rt-td:nth-child(2) {
  color: blue;
  cursor: pointer;
} */
/* .ReactTable.thirdRow .rt-tbody .rt-td:nth-child(3) {
  color: blue;
  cursor: pointer;
} */
.ReactTable.thirdRowAllign .rt-tbody .rt-td:nth-child(3) {
  text-align: end;
}
.ReactTable.fourthRow .rt-tbody .rt-td:nth-child(4) {
  color: blue;
  cursor: pointer;
}
.ReactTable.fifthRow .rt-tbody .rt-td:nth-child(5) {
  color: blue;
  cursor: pointer;
}
.ReactTable.seventhRow .rt-tbody .rt-td:nth-child(7) {
  color: blue;
  cursor: pointer;
}
.ReactTable.firstRow .rt-tbody .rt-td:nth-child(1) {
  color: blue;
  cursor: pointer;
}
.ReactTable.eigthRow .rt-tbody .rt-td:nth-child(8) {
  color: blue;
  cursor: pointer;
}
.ReactTable.fourthRow .rt-tbody .rt-td:nth-child(4) {
  color: blue;
  cursor: pointer;
}
.ReactTable.fifthRowAllign .rt-tbody .rt-td:nth-child(5) {
  text-align: end;
}
.ReactTable.fourthRowAllign .rt-tbody .rt-td:nth-child(4) {
  text-align: end;
}
/* .SolidVolatile {
  margin-top: 25px;
} */
.form-check-inline .form-check-input {
  margin-left: 5px !important;
}
.chemicalsSearch {
  border: none !important;
  border-bottom: 2px solid #20a8d8 !important;
  border-radius: 0 !important;
  outline: none !important;
}
.allignCheckboxEPA {
  margin-top: 8px !important;
  text-align: end;
  word-break: break-word;
}

.fa.fa-sign-out {
  color: #20a8d8;
  font-size: 25px;
}
.formHeadings {
  font-family: Montserrat-SemiBold;
  font-size: 16px;
  text-transform: uppercase;
}
.card {
  border: 1px solid #20a8d8;
}
.card-header {
  background-color: #20a8d8;
  color: #ffffff;
  border-bottom: none;
  padding: 2px;
}
.card-footer {
  background-color: #ffffff;
}

.headerName {
  font-family: Montserrat-Semibold;
  font-weight: 500;
  font-size: 12px;
  color: #20a8d8 !important;
}

/* .headerName:hover {
  font-family: Montserrat-Semibold;
  font-weight: 500;
  font-size: 12px;
  color: #20a8d8 !important;
}  */
.width_330 {
  width: 300px !important;
}
.floatLeft {
  float: left !important;
}
.overFlow {
  overflow-x: auto;
}
.allignTable {
  margin-left: 6%;
  margin-right: 10px;
}
button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #73818f;
  font-size: 30px;
}
.ft_12 {
  font-size: 12px;
}
.ml_20 {
  margin-left: 20px;
}
.alligntoggle {
  margin-top: 23px !important;
}
.textActive {
  color: green;
}
.textInactive {
  color: rgb(248, 108, 107) !important;
}
.actionsHor {
  font-size: 18px;
  color: #20a8d8;
  cursor: pointer;
}
.actionsHor:hover {
  font-size: 18px;
  font-family: Montserrat-SemiBold;
  color: #20a8d8;
}
.allignCenter {
  text-align: center;
}
.fontBold {
  font-family: Montserrat-SemiBold;
}
.ml_25pt {
  margin-left: 25%;
}
.custom-ui {
  text-align: center !important;
  width: 500px !important;
  padding: 40px !important;
  background: #73818f !important;
  box-shadow: 0 20px 75px rgba(0, 0, 0, 0.23) !important;
  color: #fff !important;
}
.custom-ui > button {
  width: 100px;
  height: 40px;
  padding: 8px;
  border: 1px solid #fff;
  margin: 50px 15px 10px 15px;
  cursor: pointer;
  background: none;
  color: black;
  font-size: 14px;
  border-radius: 0.25rem;
  outline: none;
}
.confirmButtons {
  background: #f0f3f5 !important;
}
.confirmButtons:hover {
  background: #c8ced3 !important;
}
.leftCard {
  width: "44%";
}
.loginImage {
  width: 250px;
}

.dropdown-item:hover {
  background: #20a8d8 !important;
  color: white !important;
}

.colorBlack {
  color: #000 !important;
}
.colorBlack:hover {
  color: #20a8d8 !important;
}
.ml_8pt {
  margin-left: -8%;
}

.mln_13 {
  margin-left: -13px;
}

.dropdown-item:hover {
  background: #20a8d8 !important;
  color: white !important;
}

.colorBlack {
  color: #000 !important;
}
.colorBlack:hover {
  color: #20a8d8 !important;
}

.ml_8pt {
  margin-left: -8%;
}

.searchButton {
  height: 38px;
  padding-top: 5px;
}
.css-yk16xz-control {
  border-color: hsl(210, 12%, 91%) !important;
}
.css-1pahdxg-control {
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.css-26l3qy-menu {
  z-index: 9999;
}
.rt-resizable-header-content {
  padding-top: 5px !important;
}

.fixLoaderSize {
  height: 150px;
  width: 150px;
}
.css-yk16xz-control {
  border-color: hsl(210, 12%, 91%) !important;
}
.css-yk16xz-control:hover {
  border-color: #20a8d8 !important;
}

.rt-resizable-header-content {
  padding-top: 5px !important;
}
.dropdown-item:hover {
  background: #20a8d8 !important;
  color: white !important;
}

.headerDropdown:hover .dropdown-menu {
  display: block;
}

.colorBlack {
  color: #000 !important;
}
.colorBlack:hover {
  color: #20a8d8 !important;
}

.ml_8pt {
  margin-left: -8%;
}

.searchButton {
  height: 38px;
  padding-top: 5px;
}
.css-yk16xz-control {
  border-color: hsl(210, 12%, 91%) !important;
}

.rt-resizable-header-content {
  padding-top: 5px !important;
}
.loader {
  top: 0;
  left: 0;
  z-index: 9999 !important;
  position: fixed;
  height: 100%;
  width: 100%;
  text-align: center;
  background-color: #0000002e;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fixLoaderSize {
  height: 150px;
  width: 150px;
}
.header-fixed .app-header {
  z-index: 100 !important;
}
.icon-settings {
  color: #ffffff;
}

.preloader-dots {
  height: 50px;
  width: 100px;
  margin: 0 auto;
}
.dot-letter {
  color: #20a8d8;
  font-weight: 600;
}
.dot-container {
  -webkit-animation: moveit 1.8s infinite;
  animation: moveit 1.8s infinite;
  display: inline-block;
}
.preloader-dots .dot {
  display: inline-block;
  background: #20a8d8;
  height: 15px;
  width: 15px;
  border-radius: 50%;
}
.preloader-dots .dotMiddle {
  display: inline-block;
  background: #fff;
  height: 15px;
  width: 15px;
  border-radius: 50%;
}
.border {
  border-left: 0px solid lightgray !important;
  border-right: 1px solid lightgray !important;
}

.dot-container:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.dot-container:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

@-webkit-keyframes moveit {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  35% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 0.3;
  }
  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0.8;
  }
  70% {
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
    opacity: 0.8;
  }
  85% {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
  }
}

@keyframes moveit {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  35% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 0.3;
  }
  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0.8;
  }
  70% {
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
    opacity: 0.8;
  }
  85% {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
  }
}
.epaClassification {
  /* background: #20a8d8; */
  margin: 15px 10px 15px 1px;
  padding: 10px 0px 5px 0px;
  color: #20a8d8;
  display: flex;
  /* justify-content: center; */
  /* align-items: center; */
  /* font-weight: bold; */
  /* font-family: Montserrat-SemiBold; */
}
.deleteEpaClassification {
  margin-right: 3%;
  color: #20a8d8;
  cursor: pointer;
  margin-left: 3%;
  margin-top: 10px;
}
.deleteEpaclose {
  font-size: 18px;
  color: #cccccc;
  cursor: pointer;
  margin-top: 5px !important;
  margin-top: -22px;
}
.card-header-actions:hover .icon-arrow-down {
  transition: 0.9s;
  transform: rotateX(-180deg);
}
/* .card-header-actions:hover .icon-arrow-up{
  transition: 0.9s;
  transform: rotateX(-180deg);
} */

.allignCustomerToggle {
  margin-top: 23px !important;
}

.allignCustomerToggle {
  margin-top: 23px !important;
}

.allignCustomerToggle {
  margin-top: 23px !important;
}

.react-confirm-alert-overlay {
  z-index: 1050 !important;
  background: rgba(255, 255, 255, 0.19);
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  color: rgba(0, 0, 0, 0);
  opacity: 1;
  display: block !important;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAA0lBMVEUAAAAgqdkgqNggqNggp9kgqNgfqNkA//8hptMhqdkgqdcnsdgeqtcgqNghqNkgqNggqdgfqdggqdcgqNgfqNkgp9cgqNgep9kgqdggqdchqdcgqNggqNgetNIfptgcqtkgqdggqNciqtUiqt0gqNgfqNcfqNggqNggqdkhqNchqNgAgP8gp9kgqNcgqNkgqdgcquMeqtsfqNgXotEhqNggqNkhqNcgn98fqdggqdcgptgAqv8cqtUgp9gas8wgqNgfp9ggqNcgqNgfp9ggqNgAAABKaj0vAAAARHRSTlMAUP6YoP1JARdlrg0ztV6QkUGO0ZNgqkOxWZTS0BFCG4iHHg/fu8vgf2aEAoZnfmgJKtMLdVhsCGJHSAMSdwrNo6f1Y2rH2c4AAAABYktHRACIBR1IAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAB3RJTUUH4wcDESsJ7tk8+AAAAKtJREFUGNN1zlkTgXAUxuFXociSfYlEyr61KJQs5/t/Jv/SGC78Ls7FM/POHAAZjkdSNpdnVxALVJRKLKlMFVFAVWZQI1aNgVxHo9midieGTpd6/QaUwVAdaTGMJ6quKFBoapiUZBoziuGnGOaLT8sEVvp6g/kWu7W+f8OBLHAcLDqkYDsujke4jp2C55/Qc3H2vT+TS8CHkGWEfHBlENFN+3SnCIXH91+P5wumJyfjWgsv0QAAACV0RVh0ZGF0ZTpjcmVhdGUAMjAxOS0wNy0wM1QxNTo0MzowOSswMjowMFO7NQoAAAAldEVYdGRhdGU6bW9kaWZ5ADIwMTktMDctMDNUMTU6NDM6MDkrMDI6MDAi5o22AAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAAABJRU5ErkJggg==) no-repeat;
  width: 20px !important;
  height: 20px !important;
  border-width: thin;
  cursor: pointer;
}
.excelExport {
  border: 1px solid#aad178;
  color: #aad178;
  float: left !important;
  margin-bottom: 10px;
  font-family: "Montserrat-SemiBold";
  margin-left: 3%;
  background: white;
}
.excelExportUsage {
  border: 1px solid#aad178;
  color: #aad178;
  float: left !important;
  margin-bottom: 10px;
  font-family: "Montserrat-SemiBold";
  background: white;
}
.pdfExport {
  border: 1px solid #ef8a80;
  color: #ef8a80;
  float: left !important;
  margin-bottom: 10px;
  font-family: "Montserrat-SemiBold";
  margin-left: 10px;
  background: white;
}

.ml_4 {
  margin-top: 4px;
}
/* .modal-body {
  overflow-y: auto;
  height: 450px;  
} */

.mt_10 {
  margin-top: 10px;
}

.deleteIcon {
  font-size: 18px;
  color: gray;
  cursor: pointer;
}

.deleteIcon:hover {
  font-size: 18px;
  color: red;
  cursor: pointer;
  font-weight: bolder;
}

.alignExportIcons {
  margin-top: 6px;
}

.overFlow {
  height: 260px;
  overflow-y: auto;
  overflow-x: hidden;
position: relative;
}

.ml_10 {
  margin-left: 1% !important;
}

.casNoInput {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #5c6873;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #e4e7ea;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  direction: ltr;
  text-align: start !important;
}
.newEpaClassification {
  margin-top: 25px;
  margin-left: 3%;
  color: #20a8d8;
  cursor: pointer;
}
.newEpaClassificationTextbox {
  margin-top: 25px;
  margin-left: 5%;
}
.deleteEpaClassificationTextbox {
  margin-top: 25px;
  margin-left: 5%;
}
.hide {
  display: none;
}

.mart10 {
  margin-top: 10px;
}

.mart25 {
  margin-top: 25px;
}

.deleteEPA {
  font-size: 20px;
  color: lightgray;
  cursor: pointer;
}

.deleteEPA:hover {
  font-size: 20px;
  color: red;
  cursor: pointer;
}

.circleCheck {
  font-size: 24px;
  color: #20a8d8;
  cursor: pointer;
  margin-top: 10px;
}
.deleteSubstrateIcon {
  font-size: 24px;
  color: #c8ced3;
  cursor: pointer;
}
.deleteSubstrateIcon:hover {
  font-size: 24px;
  color: red;
  cursor: pointer;
}
.closeDeleteSubstrate {
  font-size: 20px;
  color: #c8ced3;
  cursor: pointer;
  margin-left: 10px !important;
}
.circleX {
  font-size: 24px;
  color: #c8ced3;
  cursor: pointer;
}

.editMaterialCardHeader {
  font-family: Montserrat-SemiBold;
  font-size: 16px;
  text-transform: uppercase;
  padding: 5px;
}

.nav-tabs .nav-link.active {
  color: #20a8d8 !important;
}

.allignDocName {
  margin-top: 15px;
}
.chooseRelatedDoc {
  float: left !important;
  margin-top: 22px;
  height: 38px;
}
.uploadRelDoc {
  float: left !important;
  margin-top: 22px;
}

.kitCheck {
  font-size: 18px;
  color: #20a8d8;
}

.casnoHelp {
  margin-left: 5px;
  font-size: 16px;
  cursor: pointer;
}

.casExIimageStyle {
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  z-index: 999;
  right: 15px;
  border: 1px solid #20a8d8;
}

.chooseButtonWidth {
  width: 45px;
}

.passwordShow {
  position: absolute;
  top: 10px;
  right: 18px;
  z-index: 99999;
  cursor: pointer;
}

.headerProfile {
  font-size: 12px !important;
}

.color_black {
  color: black;
}

.pdl4 {
  padding-left: 4px;
}
.pdl0{
  padding-left: 0px;

}
.buttonGroup {
  height: 30px !important;
  border: none !important;
  border-radius: 0 !important;
}
.color_blue {
  background-color: #20a8d8;
  color: white;
  border: none;
}
.color_blue:hover {
  background-color: #20a8d8;
  color: white;
  border: none;
}
.color_lightgray {
  background-color: #f0f3f5;
  color: #c8ced3;
  border: none;
}

.color_lightgray:hover {
  background-color: #f0f3f5;
  color: black;
  border: none;
}
.z-index {
  z-index: 9999999;
}

.popover {
  position: absolute !important;
  z-index: 99999 !important;
  cursor: pointer !important;
  top: 26.3% !important;
  left: 57.3% !important;
}

.advancedSearch {
  font-size: 18px;
  color: white;
  background-color: #20a8d8;
}
/* .advancedSearch:hover {
  padding: 8px;
  font-size: 18px;
  margin-top: -4px;
  color: white;
  background-color: #20a8d8;
} */
.fa-search-plus {
  font-weight: 100 !important;
}
.closeAdvanceSearch {
  outline: none !important;
  float: left !important;
  margin-left: 10px;
}

.advanceSearchForm {
  -webkit-transition: width 2s; /* For Safari 3.1 to 6.0 */
  transition: width 2s;
}

.displayNone {
  display: none;
}
#formBuilder {
  display: flex;
  text-align: left;
  width: 100%;
  margin: 10px auto;
}

div[data-type-field="textArea"] {
  display: none;
}

div[data-type-field="number"] {
  display: none;
}
div[data-type-field="autocomplete"] {
  display: none;
}
div[data-type-field="fileUpload"] {
  display: none;
}
div[data-type-field="button"] {
  display: none;
}
div[data-type-field="paragraph"] {
  display: none;
}
div[data-type-field="hiddenInput"] {
  display: none;
}
.dynamicFormPreview {
  margin-top: 21px;
}
.mkBadge {
  background: #6f42c1 !important;
  color: white;
}
.kcBadge {
  background: #e83e8c !important;
  color: white;
}
.floatRight {
  float: right;
}
.dynamicFormLabels {
  font-size: 14px;
  font-family: Montserrat-SemiBold;
}
/* #formBuilder .headerBar button:nth-child(2){
  padding: 8px 13px !important;
  border:none;
  font-size: 12px;
  color: #ffffff;
  cursor: pointer;
  background: url("../assets/img/brand/edit.png") no-repeat !important;
  height: 30px !important;
  width: 30px !important;
  margin-top: 12px !important;
  display: none;
 }
 #formBuilder .headerBar button:nth-child(1){
  padding: 8px 13px !important;
  border:1px solid red;
  font-size: 12px;
  color: #ffffff;
  cursor: pointer;
  background: url("../assets/img/brand/garbage.png") no-repeat !important;
  height: 30px !important;
  width: 30px !important;
  margin-top: 12px !important;
 }
 #formBuilder .headerBar button{
  padding: 8px 13px !important;
  border:none;
  font-size: 12px;
  color: #ffffff;
  cursor: pointer;
  background: url("../assets/img/brand/garbage.png") no-repeat !important;
  height: 30px !important;
  width: 30px !important;
  margin-top: 12px !important;
 } */

.martop25 {
  margin-top: 25px;
}
/* .dynamicFormPreview{
  float: left !important;
} */

.fas {
  display: none !important;
}

.intl-tel-input {
  position: relative;
  display: inline-block;
  margin-left: -14px;
  margin-top: -px;
  /* margin-bottom: 16px; */
  left: -10;
  width: 368px;
}
.ml_0 {
  margin-left: 0 !important;
}
.mb_2 {
  margin-bottom: 2px;
}

.select .container {
  border: "red";
}

.css-yk16xz-control {
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: hsl(0, 0%, 100%);
  border-radius: 4px;
  border-style: solid;
  border-width: 1px;
  cursor: default;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 38px;
  outline: 0 !important;
  position: relative;
  -webkit-transition: all 100ms;
  transition: all 100ms;
  box-sizing: border-box;
}
.card-header-empty {
  background-color: #ffffff;
  color: #dc3545;
  border: none;
}
.card-header-empty .icon-settings {
  color: #000000;
}
.pd12 {
  padding: 12px;
}

.error {
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: hsl(0, 0%, 100%);
  border-color: red !important;
  border-radius: 4px;
  border-style: solid;
  border-width: 1px;
  cursor: default;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 38px;
  outline: 0 !important;
  position: relative;
  -webkit-transition: all 100ms;
  transition: all 100ms;
  box-sizing: border-box;
}
.fa .fa-user-times {
  color: "red" !important;
}
.fa .fa-user-times {
  color: "red" !important;
}
.form-control.is-invalid {
  border-color: #f86c6b;
  padding-right: calc(1.5em + 0.75rem);
  background-image: none;
  background-repeat: no-repeat;
  background-position: center right calc(0.375em + 0.1875rem);
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.classError {
  border: 1px solid #f86c6b;
  border-radius: 5px;
}

/* tooltip */
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: orange;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
.allignRow {
  margin-top: -15px;
}
.colorBlue {
  color: blue;
}
.cursor {
  cursor: pointer !important;
}
.dynamicFormPreview {
  margin-top: 21px;
}

.dynamicFormLabels {
  font-size: 14px;
  font-family: Montserrat-SemiBold;
}
#formBuilder .headerBar button:nth-of-type(even) {
  border: none;
  border-radius: 0;
  color: #ffffff;
  font-size: 0;
  cursor: pointer;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAqFBMVEUAAAAAgP8gqNggqNgfqNcgp9ggp9kA//8Aqv8epdIgqtofqdggqNkhptghqNkgqNcgqNgjqNYfqdcfqdghqdkgqNgjotwgqNkfqNggp9gkqtsgqdkmptkXotEbrtcfqNcgp9ghqNghqtggqdchp9kfqNofqNkgqNggqNgeptUhqdcfp9kcqtUfqNYfp9shqNggqdggqdcfqdczmcwgqNggqNgAv78AAADHXDCEAAAAN3RSTlMAAqi/u8CmAQMRMKutLi/OqixzYmVwFsfLxhVQFAsTUm6VJ19dKZOWYSuUURIyMVV2eVMFvqUEk1VZNwAAAAFiS0dEAIgFHUgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAAHdElNRQfjCAYPNDDfsFP3AAAAdklEQVQY02NgAAJGJmYWFlY2dgYI4ODk4uYEAh5eTg4Qn49fAA74BYECQsIMcCAiCiTExCVYoEBCUgokLCrNIMMoK8soxyCvwAAVUFRSVlFVQxJQV9VQ1tSitYC2jq6enDRMQN8A5nJDIzBlzGYCcbmJqRkDAwAWVg/vDfDdLgAAACV0RVh0ZGF0ZTpjcmVhdGUAMjAxOS0wOC0wNlQxMzo1Mjo0OCswMjowMMbpEL8AAAAldEVYdGRhdGU6bW9kaWZ5ADIwMTktMDgtMDZUMTM6NTI6NDgrMDI6MDC3tKgDAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAAABJRU5ErkJggg==) no-repeat !important;
  height: 30px !important;
  width: 30px !important;
  margin-top: 12px !important;
  content: "Delete" !important;
  text-align: center !important;
  outline: none;
}
#formBuilder .headerBar button:nth-of-type(odd) {
  border: none;
  border-radius: 0;
  font-size: 0;
  color: #ffffff;
  cursor: pointer;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAmVBMVEUAAAAip9ggp9gfqNkgqNggqtUiqtkgqdcfqNgzmcwcqtUfqNcgqNcgqdcfqNkgqdghp9chqNghqNcgqNkeqtcgqNciqNchqNggqNgfp9cgqdgfqdghp9gfqNkgqdghqNggp9ceqdggqNgcquMgp9ggp9ggp9ghqdofp9cgqdcgqNgfqNgjp9wgptggqNgkpNsgqNggn98AAAB2j4a2AAAAMnRSTlMANJ2Slhg8rpsFEruhWZNodJxmrTOHTLxpOpGCTkmIlUA7mAnGqXc+WkeJex1IqBzfCFzhWBAAAAABYktHRACIBR1IAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAB3RJTUUH4wgGDzQCF2cCdwAAAHFJREFUGNONy0cWgkAURNEi5yYjKKDkpKj73xw4kP5DanbrnAfwCaIkK8SqphumTGzZjm4wbuZ6++MTI/DsMDocJ4B7UamTlP2dXW85ivL+OOmq/vXx0Tdt11NjGKe5J8byVF5dzY01e48tMT7rMnyJNyH6CejpPYyIAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDE5LTA4LTA2VDEzOjUyOjAyKzAyOjAw5tNBCwAAACV0RVh0ZGF0ZTptb2RpZnkAMjAxOS0wOC0wNlQxMzo1MjowMiswMjowMJeO+bcAAAAZdEVYdFNvZnR3YXJlAHd3dy5pbmtzY2FwZS5vcmeb7jwaAAAAAElFTkSuQmCC) no-repeat !important;
  height: 30px !important;
  width: 30px !important;
  margin-top: 12px !important;
  content: none !important;
  text-align: center !important;
  outline: none;
}

#formBuilder .headerBar b {
  word-break: break-word;
  color: #cccccc;
}
.dynamicFormLabelsHelpText {
  font-size: 14px;
  font-family: Quicksand-Regular;
}
.dynamicFormLabelsHelpTextConfig {
  font-size: 14px;
  font-family: Quicksand-Regular;
  margin-left: 16px;
}
.dynamicFormLabelsHelpTextModal {
  font-size: 14px;
  font-family: Quicksand-Regular;
  margin-bottom: 5px !important;
  font-style: italic;
  /* text-align: end !important; */
}

#formBuilder #formBuilder-form {
  width: 100%;
  border: 1px solid #d3d3d3;
  padding-bottom: 150px;
}
#formBuilder #optionColumn {
  width: 30%;
  border: 1px solid #d3d3d3;
}

.errorClass {
  color: red;
  font-family: "Quicksand-Regular";
  font-size: 12px;
  margin-left: 3px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.fa.fa-check {
  color: green;
  font-size: 14px;
  font-weight: 500;
}

.chemicalListlength {
  font-size: 18px;
  font-family: "Montserrat-SemiBold";
  color: #20a8d8;
}

.columnSelect .css-1rhbuit-multiValue {
  display: none;
}
.selectColumnHide {
  position: absolute;
  left: 40px;
  top: 10px;
  color: #acb4bc;
  z-index: 1;
  font-size: 12px;
}
.l-10 {
  left: 10px;
}
.textAllignEnd {
  text-align: center;
  /* padding: 10px; */
  background: white;
  margin-top: 5px;
}
.collapseFadeInOut {
  transition: 0.7s;
}

.fa-check-circle-o {
  color: green;
  font-size: 18px;
}
.tableHeadings {
  font-family: Montserrat-Regular;
  font-weight: 500;
  color: #28bae6;
}
table {
  border-collapse: collapse;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 1px solid #f5f5f5;
  font-size: 12px;
  font-weight: 600;
  color: #000;
}
.table td {
  padding: 0.5rem 0.5rem;
  vertical-align: center;
  border-top: 1px solid #f5f5f5;
  font-size: 12px;
}
.table th,
.table td {
  padding: 0.25rem 0.25rem;
  vertical-align: center;
  border-top: 1px solid #f5f5f5;
  font-family: "Montserrat-Regular";
  font-size: 12px;
}
.table thead th {
  vertical-align: bottom;
  border: 1px solid #f5f5f5;
  font-family: "Montserrat-Regular";
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background-color: #b3b3b3;
}
.table tbody td {
  border: 1px solid #f5f5f5;
  color: #000;
}
.table tbody + tbody {
  border: 1px solid #f5f5f5;
}
.table .table {
  background-color: #e4e5e6;
}
.table-sm th,
.table-sm td {
  padding: 0.3rem;
}
.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
}
.table-hover .table-secondary:hover {
  background-color: #e2e4e8;
}
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #e2e4e8;
}
.mt-55 {
  margin-top: 55px !important;
}

.stickyHeader {
  position: fixed;
  z-index: 99;
  width: 100%;
  height: 45px;
}

.mt20 {
  margin-top: 20px;
}

.footerViewClass {
  margin-left: 54%;
  font-size: 13px;
}
.kitMgmt {
  text-align: left;
  background: #c8ced3 !important;
  font-family: Montserrat-SemiBold;
  font-size: 12px;
  color: #2f353a;
}
.kitMgmtC {
  text-align: center;
  background: #c8ced3 !important;
  font-family: Montserrat-SemiBold;
  font-size: 12px;
  color: #2f353a;
}
.kitMgmtR {
  text-align: right;
  background: #c8ced3 !important;
  font-family: Montserrat-SemiBold;
  font-size: 12px;
  color: #2f353a;
}

.kitMgmtBody {
  text-align: left;
  font-family: Roboto-Regular;
  font-size: 12px;
}

.kitMgmtBodyR {
  text-align: right;
  font-family: Roboto-Regular;
  font-size: 12px;
}
.kitMgmtBodyR1 {
  text-align: right;
}
.customerNameSDS {
  font-size: 18px;
  color: #20a8d8;
  font-family: Montserrat-Regular;
}

/* .custom-classname .react-toggle-track-x {
  width: 50px;
  height: 24px;
  padding: 0;
  border-radius: 30px;
  background-color: #ffc107;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
} */

.react-toggle--checked .react-toggle-track {
  background-color: #19ab27 !important;
}
.react-toggle--disabled .react-toggle-track {
  background-color: lightgray !important;
}

.custom-classname.react-toggle .react-toggle-track {
  background-color: #ffc107;
}
.react-toggle--checked .react-toggle-thumb {
  border: none;
}
.mt25 {
  margin-top: 25px;
}

.materialKitName {
  margin-bottom: 10px;
  font-family: "Montserrat-SemiBold";
  font-size: 16px;
}
.showImportButtons {
  margin-left: 0;
  margin-top: 10px;
  float: right !important;
}
.validSuccess {
  color: green;
}
.validFailure {
  color: red;
}

.colorRed {
  color: red;
}
/* for radio button giving border so made it as border 0  */
pre,
form {
  text-align: left;
  border: 0;
  margin: 0 auto;
  padding: 0px;
}
.selectPlaceholder {
  color: #b3b3b3 !important;
  opacity: 1;
  font-family: "Roboto-Regular";
  font-size: 12px;
}
.materialDropDown {
  top: 35px;
  width: 250px !important;
}

.materialDropDown:hover {
  display: block;
}

.dropDownStyle {
  background: #20a8d8;
  color: #ffffff;
  margin-left: 20px;
  padding: 3px 15px 3px 15px;
}
.dropDownStyle .show > .dropdown-toggle {
  background: #20a8d8;
  color: #ffffff;
  width: 250px;
}

.manageRegClassification {
  margin-top: -44px;
  margin-right: 25px;
  color: #20a8d8 !important;
  /* float: right; */
}
.fa-pencil-square-o {
  color: #20a8d8;
  font-size: 20px;
  margin-left: 8px;
}

.addSubstrate {
  color: #20a8d8;
  cursor: pointer;
}
.deleteSubstrate {
  color: #20a8d8;
  cursor: pointer;
}
.tableColumnMaterialName {
  color: #20a8d8 !important;
  font-family: "Montserrat-SemiBold";
  font-size: 16px;
}

.deleteAssociatedMaterial {
  font-size: 22px;
  margin-top: 30px;
}

.deleteAssociatedMaterial:hover {
  font-size: 22px;
  margin-top: 30px;
  color: red;
}

input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
  font-size: 20px;
  height: 18px;
  width: 18px;
  background: transparent;
  color: blue;
  background: #002dff;
  border: #7f83a2 1px solid;
  padding-right: 5px !important;
}

.hoverBlue:hover {
  color: #20a8d8;
}

.clearSubstrate {
  font-size: 27px;
  margin-left: 10px;
  color: #4ca8d8;
  cursor: pointer;
}
.allignRadioButtonsKitManagement {
  margin-top: 10px;
  margin-bottom: -10px !important;
}

.btn {
  /* font-family: "Quicksand-Medium"; */
  letter-spacing: 0.5px;
}

.mb10 {
  margin-bottom: 10px;
}
.directionRTL1 {
  direction: rtl;
}

.descriptionInfo {
  float: right;
  font-size: 10px;
  color: gray;
}
.allignBadge {
  float: right;
  margin-top: 10px;
}
.facilityAdminHeaderRole {
  font-family: "Montserrat-SemiBold";
  font-size: 12px;
  color: #2f353a;
}
.colorBlack {
  color: #2f353a;
}
.colorBlack:hover {
  color: #2f353a !important;
}
.mart30 {
  margin-top: 15px;
}
.allignBadge {
  float: right;
  margin-top: 10px;
}
.logoutIcon1 {
  font-size: 25px;
  cursor: pointer;
  margin-bottom: 18px;
  color: gray;
}
.logoutIcon2 {
  font-size: 25px;
  cursor: pointer;
  margin-bottom: 13px;
  color: gray;
}
.greyText {
  font-size: 12px;
  color: #8f9ba6;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}
/* for  firefox number arrows to be hidden */
input[type="number"] {
  -moz-appearance: textfield;
}
.cancelNewRevision {
  font-size: 20px !important;
  margin-left: 5px;
  color: gray;
  cursor: pointer;
}
.cancelNewRevision:hover {
  font-size: 20px !important;
  margin-left: 5px;
  color: red;
  cursor: pointer;
}

.app-footer {
  flex: 0 0 25px;
}

.tableHyperLink {
  color: blue;
  cursor: pointer;
}
.mr50 {
  margin-right: 50px;
}
.editDoc {
  font-size: 18px;
  color: gray;
  cursor: pointer;
  /* float: right; */
  margin-left: 25px;
}
.editDoc:hover {
  font-size: 18px;
  color: #20a8d8;
  cursor: pointer;
  /* float: right; */
  margin-left: 25px;
}

.allignMaterialDetails {
  margin-bottom: 10px;
}
.mb15 {
  margin-bottom: 15px;
}

.allignTableButton {
  text-align: center !important;
}

.allignCentre {
  text-align: center;
}
.tableButtonAllign {
  float: left !important;
  color: #c8ced3;
}
.allignTableValue {
  margin-left: 10px;
}
.react-date-picker__wrapper {
  display: flex;
  border: none;
}
.react-date-picker__button:enabled:hover .react-date-picker__button__icon,
.react-date-picker__button:enabled:focus .react-date-picker__button__icon {
  stroke: #20a8d8;
  outline: none;
}
.react-date-picker__button svg {
  outline: none;
}
.react-date-picker__inputGroup__input {
  min-width: 0.54em;
  height: 100%;
  position: relative;
  padding: 0 1px;
  border: 0;
  background: none;
  font: inherit;
  box-sizing: content-box;
  -moz-appearance: textfield;
  outline: none;
}
.react-date-picker__inputGroup__input--hasLeadingZero {
  margin-left: 0 !important;
}
.fa-calendar {
  color: #20a8d8;
  font-size: 18px;
}
.allignConfifureButton {
  border: 1px solid #ffc107;
}
#formBuilder #formBuilder-form > div > div {
  /* padding-left: 10px !important; */
  padding: 0 !important;
}
#formBuilder .headerBar {
  padding-bottom: 8px;
  line-height: 30px;
  padding-left: 5px !important;
}
/* .rst__row {
  height: 65% !important;
  white-space: nowrap;
  display: -ms-flexbox;
  display: flex;
} */
.rst__rowTitle {
  font-family: "Roboto-Regular";
  font-weight: 100 !important;
}
/* .rst__rowWrapper {
  padding: 1px 0px 0px 0;
  height: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
} */

#formBuilder #formBuilder-form > div {
  border-bottom: #f5f5f5 2px solid;
}
#formBuilder .typeField {
  vertical-align: bottom;
  font-size: 14px;
  color: #cccccc;
  padding-left: 5px !important;
}

.previewFormInput {
  height: 15px !important;
}
.previewFormLabel {
  font-family: "Quicksand-Regular";
  font-size: 12px;
  color: #000000;
}
.previewFormSelect {
  height: 20px;
}

input[name="previewFormCheckBox"] {
  box-sizing: border-box;
  padding: 0;
  font-size: 20px;
  height: 14px !important;
  width: 14px !important;
  background: transparent;
  color: blue;
  background: #002dff;
  border: #7f83a2 1px solid;
  padding-right: 5px !important;
}
.allignPreviewDom {
  margin-bottom: 3px !important;
}
.allignPreviewHeader {
  /* margin-top: 15px !important; */
  margin-bottom: -5px !important;
}

.previewFormHeader {
  font-weight: 900 !important;
}

#formBuilder .headerBar b {
  word-break: break-word;
  color: #000000;
}
.cancelNewVersion {
  float: right;
  margin-top: 5px;
  color: lightgray;
  cursor: pointer;
}
.cancelNewVersion:hover {
  float: right;
  margin-top: 5px;
  color: red;
  cursor: pointer;
}
.previewDomStyle {
  margin-top: 9px;
  padding-left: 15px;
  padding-top: 5px;
  border: 1px solid lightgray;
}
.martop20 {
  margin-top: 20px;
}
.configLabel {
  margin-right: 10px;
  margin-bottom: 10px;
}
.height400 {
  height: 400px;
}
.ml14 {
  margin-left: -14px;
}

.ml8 {
  margin-left: 8px;
}

.mb0 {
  margin-bottom: 0;
}

.padding1 {
  padding: 1px;
}
.ml20 {
  margin-left: 20px;
}
.react-phone-number-input__input {
  border: none;
}
.react-date-picker.react-date-picker--closed.react-date-picker--disabled.form-control {
  background: #f2f2f2;
}
.allignCaret {
  margin-top: -15px;
}
.lightGrey {
  color: #c8ced3;
}

.react-date-picker__button:enabled .react-date-picker__button__icon,
.react-date-picker__button:enabled:focus .react-date-picker__button__icon {
  stroke: #c8ced3;
  outline: none;
}
.react-date-picker__button:enabled:hover .react-date-picker__button__icon,
.react-date-picker__button:enabled:focus .react-date-picker__button__icon {
  stroke: #f86c6b;
  outline: none;
}

.breadcrumbLink {
  color: #20a8d8 !important;
  cursor: pointer;
}
.breadcrumbLink:hover {
  text-decoration: underline !important;
}
.css-1xh8qep-loadingIndicator {
  color: #20a8d8 !important;
  font-size: 10px !important;
}
.deleteMaterial {
  float: right;
  margin-top: -7.5%;
}
.viewSelectedMaterialBodyHeight {
  height: 350px !important;
  overflow: auto !important;
}
.blackFont {
  color: black;
}

.fontFamQuickSandReg {
  font-family: "Quicksand-Regular";
  font-size: 10px;
  color: #000000;
}
#exampleSelect {
  height: 15px !important;
}
.breakWord {
  word-break: break-word;
}
.ReactTable .rt-td {
  flex: 1 0;
  white-space: pre-wrap;
  padding: 5px 5px;
  overflow: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transition-property: width, min-width, padding, opacity;
  transition-property: width, min-width, padding, opacity;
}
.showButton {
  float: right;
  margin-left: 5px;
  margin-top: -5px;
  font-size: 12px;
  color: gray;
}
.previewLogo {
  font-size: 14px;
  color: #20a8d8;
  cursor: pointer;
  font-family: "Montserrat-SemiBold";
}
#formBuilder #formBuilder-form {
  width: 100%;
  border: 1px solid #d3d3d3;
  padding-bottom: 150px;
  user-select: none;
}
.delteVersion {
  border: 1px solid #ef8a80;
  color: #ef8a80;
  font-family: "Montserrat-SemiBold";
  background: white;
}
.textAlignRight {
  text-align: right;
}
.app-header .navbar-nav .dropdown-menu {
  position: absolute;
  top: 40px;
}
.tooltipCustom {
  position: absolute;
  width: auto;
  border-radius: 6px;
  background: #17a2b8;
  right: 20%;
  /* white-space: pre-line; */
  padding-right: 5px;
  overflow: auto;
}
.tooltiptext {
  color: white;
  text-align: left;
  padding: 0px 10px 0px 10px;
  margin-bottom: 0px;
}
.toolClose {
  text-align: right;
  color: white;
  cursor: pointer;
  margin-bottom: 0px;
}
/* .tooltipCustom .tooltiptext::after {
  content: " ";
  position: absolute;
  top: 50%;
  left: 100%; 
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #17a2b8;
} */

.sideBarOpen {
  background: white;
  position: fixed;
  left: 0px;
  height: calc(100vh - 55px);
  width: 220px;
  z-index: 9999;
  overflow: scroll;
  transition: 0.5s;
  margin-bottom: 100px;
  padding: 5px;
  visibility: visible;
}
.sideBarHide {
  background: white;
  position: fixed;
  left: 0px;
  height: 100%;
  width: 0px;
  z-index: 9999;
  overflow: scroll;
  transition: 0.5s;
  visibility: hidden;
}
.menubar {
  font-size: 25px;
  margin-left: 20px;
}
.dropdown-container {
  font-size: 16px;
  display: block;
  transition: 0.5s;
}
.dropdown-container-hide {
  display: none;
}
.menuItems {
  font-size: 16px;
  font-weight: bold;
  font-family: "Montserrat-Regular";
  cursor: pointer;
  transition: 0.5s;
  border-bottom: 1px solid;
  margin: 0px;
}
.dropdown-btn {
  text-decoration: none;
  /* font-size: 20px; */
  /* color: #818181; */
  display: block;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
  font-weight: bold;
}
.submenu {
  border-bottom: 1px solid;
  margin-top: 15px;
  padding-left: 24px;
}
.listtypenone {
  list-style-type: none;
}
.primaryRow .rt-tr-group {
  border-bottom: 2px solid black !important;
  /* solid 4px rgba(0,0,0,0.05) */
}
.associate .rt-tr-group {
  border-bottom: solid 1px #0000000d !important;
  /* solid 4px rgba(0,0,0,0.05) */
}

.primaryRow .rt-tr.-odd {
  background: lightgray !important;
}

.ReactTable.primaryRow .rt-tr.-odd + .associate .rt-tr.-odd {
  background: lightgray !important;
}
.ReactTable.primaryRow .rt-tr.-odd + .associate .rt-tr.-even {
  background: lightgray !important;
}
.ReactTable.primaryRow .rt-tr.-even + .ReactTable.associate .rt-tr.-even {
  background: white !important;
}

.ReactTable.primaryRow .rt-tr.-even + .ReactTable.associate .rt-tr.-odd {
  background: white !important;
}

.validSuccess {
  color: green;
}
.realSuccess {
  color: purple;
}
.floatNone {
  float: none !important;
}
.advanceSearchBtns {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
.noSupplier {
  color: #ff0000;
}
.ReactTable .rt-thead .rt-resizable-header-content {
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: capitalize !important;
}
.menuBarAlignment{
  display: flex;
  justify-content: center;
  align-items: center;
}
.userDetail{
  justify-content: space-between;
  margin-top:10px;
}

.contentColor {
color : #696969;
}
.ReactTable .rt-resizer {
  display: inline-block;
  position: absolute;
  width: 36px;
  top: 0;
  bottom: 0;
  right: -18px;
  cursor: col-resize;
  z-index: 0!important;
}
.importCheckbox{
  display: flex;
  align-items: center;
  margin-bottom:-12px;
}
.errCoountImport{
  color:red;
     
}
.totalImportRecords{
  color:blue;
  font-weight:bold;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-right: 13px;
}

.marginLeft5 {
    margin-left:5px;
}

.marginTop10 {
    margin-top:10px;
}

.marginTop30 {
    margin-top: 30px;
}
.importCheckbox{
  display: flex;
  align-items: center;
  margin-bottom:-12px;
}
.errCoountImport{
  color:red;
     
}
.totalImportRecords{
  color:blue;
  font-weight:bold;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-right: 13px;
}

.marginTopMinus15{
  margin-top: -15px;
}

.marginTop5 {
  margin-top: 5px;
}

.marginBottom10 {
  margin-bottom: 10px;
}

.displayFlex {
  display: flex;
}

.positionUseDefault {
  position: relative;
  float: right;
}
.Toastify__toast-container {
  z-index: 9999;
  -webkit-transform: translate3d(0, 0, 9999px);
  position: fixed;
  padding: 4px;
  width: 320px;
  box-sizing: border-box;
  color: #fff; }
  .Toastify__toast-container--top-left {
    top: 1em;
    left: 1em; }
  .Toastify__toast-container--top-center {
    top: 1em;
    left: 50%;
    margin-left: -160px; }
  .Toastify__toast-container--top-right {
    top: 1em;
    right: 1em; }
  .Toastify__toast-container--bottom-left {
    bottom: 1em;
    left: 1em; }
  .Toastify__toast-container--bottom-center {
    bottom: 1em;
    left: 50%;
    margin-left: -160px; }
  .Toastify__toast-container--bottom-right {
    bottom: 1em;
    right: 1em; }

@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0; }
    .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
      top: 0; }
    .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
      bottom: 0; }
    .Toastify__toast-container--rtl {
      right: 0;
      left: initial; } }

.Toastify__toast {
  position: relative;
  min-height: 64px;
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 1px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  max-height: 800px;
  overflow: hidden;
  font-family: sans-serif;
  cursor: pointer;
  direction: ltr; }
  .Toastify__toast--rtl {
    direction: rtl; }
  .Toastify__toast--default {
    background: #fff;
    color: #aaa; }
  .Toastify__toast--info {
    background: #3498db; }
  .Toastify__toast--success {
    background: #07bc0c; }
  .Toastify__toast--warning {
    background: #f1c40f; }
  .Toastify__toast--error {
    background: #e74c3c; }
  .Toastify__toast-body {
    margin: auto 0;
    -ms-flex: 1;
        flex: 1; }

@media only screen and (max-width: 480px) {
  .Toastify__toast {
    margin-bottom: 0; } }

.Toastify__close-button {
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  -ms-flex-item-align: start;
      align-self: flex-start; }
  .Toastify__close-button--default {
    color: #000;
    opacity: 0.3; }
  .Toastify__close-button:hover, .Toastify__close-button:focus {
    opacity: 1; }

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1); }
  100% {
    transform: scaleX(0); } }

.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: 9999;
  opacity: 0.7;
  background-color: rgba(255, 255, 255, 0.7);
  transform-origin: left; }
  .Toastify__progress-bar--animated {
    animation: Toastify__trackProgress linear 1 forwards; }
  .Toastify__progress-bar--controlled {
    transition: transform .2s; }
  .Toastify__progress-bar--rtl {
    right: 0;
    left: initial;
    transform-origin: right; }
  .Toastify__progress-bar--default {
    background: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55); }

@keyframes Toastify__bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0); }
  75% {
    transform: translate3d(10px, 0, 0); }
  90% {
    transform: translate3d(-5px, 0, 0); }
  to {
    transform: none; } }

@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }

@keyframes Toastify__bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0); }
  75% {
    transform: translate3d(-10px, 0, 0); }
  90% {
    transform: translate3d(5px, 0, 0); }
  to {
    transform: none; } }

@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }

@keyframes Toastify__bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  75% {
    transform: translate3d(0, 10px, 0); }
  90% {
    transform: translate3d(0, -5px, 0); }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0); }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }

@keyframes Toastify__bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0); }
  75% {
    transform: translate3d(0, -10px, 0); }
  90% {
    transform: translate3d(0, 5px, 0); }
  to {
    transform: none; } }

@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0); }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }

.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft; }

.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight; }

.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown; }

.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp; }

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft; }

.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight; }

.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp; }

.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown; }

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

@keyframes Toastify__zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn; }

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut; }

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    transform: perspective(400px); } }

@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

.Toastify__flip-enter {
  animation-name: Toastify__flipIn; }

.Toastify__flip-exit {
  animation-name: Toastify__flipOut; }

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0); } }

@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0); } }

@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0); } }

@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0); } }

.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft; }

.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight; }

.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown; }

.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp; }

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft; }

.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight; }

.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp; }

.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown; }

/*# sourceMappingURL=main.3dd346e5.css.map*/