/* Toggle Button */

.cm-toggle {
	-webkit-appearance: none;
	-webkit-tap-highlight-color: transparent;
	position: relative;
	border: 0;
	outline: 0;
	cursor: pointer;
	margin: 10px;
}


/* To create surface of toggle button */

.cm-toggle:after {
	content: '';
	width: 30px;
	height: 15px;
	display: inline-block;
	background: rgba(196, 195, 195, 0.55);
	border-radius: 18px;
	clear: both;
}


/* Contents before checkbox to create toggle handle */

.cm-toggle:before {
	content: '';
	width: 17px;
	height: 17px;
	display: block;
	position: absolute;
	left: 0;
	top: 7px;
	border-radius: 50%;
	background: rgb(255, 255, 255);
	box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}


/* Shift the handle to left on check event */

.cm-toggle:checked:before {
	left: 15px;
	box-shadow: -1px 1px 3px rgba(0, 0, 0, 0.6);
}

.cm-toggle:checked:after {
	background: #16a085;
}


/* Transition for smoothness */

.cm-toggle,
.cm-toggle:before,
.cm-toggle:after,
.cm-toggle:checked:before,
.cm-toggle:checked:after {
	transition: ease .3s;
	-webkit-transition: ease .3s;
	-moz-transition: ease .3s;
	-o-transition: ease .3s;
}


/* Custom Color */

.red:checked:after {
	background: #dc281e;
}

.blue:checked:after {
	background: #396afc;
}

.orange:checked:after {
	background: #fc4a1a;
}

.purple:checked:after {
	background: #f953c6;
}




.overlay-loader {
  position:fixed;
      top:0;
      left:0;
      background:rgba(0,0,0,0.3);
      z-index:9999;
      width:100%;
      height:100%;
      display:none;
}


/*
.close:before {
  content: '✕';
}*/
.closeLot {
 		position: absolute;
    bottom: 0px;
    /*right: 30px;*/
    left: 20px;
    cursor: pointer;
    color: #fff;
    /*border-radius: 24%;*/
    /*border: 1px solid red;*/
}








.chart {
  display: table;
  table-layout: fixed;
  width: 100%;
  max-width: 100%;
  height: 300px;
  margin: 0 auto;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.1) 2%, rgba(0, 0, 0, 0) 2%);
  background-size: 100% 50px;
  background-position: left top;
}
.chart li {
  position: relative;
  display: table-cell;
  vertical-align: bottom;
  height: 200px;
}
.chart span {
  margin: 0 1em;
  display: block;
  background: rgb(35 132 183 / 95%);
  animation: draw 1s ease-in-out;
}

.chart #incasate {
  margin: 0 1em;
  display: block;
  background: #ccc;
  animation: draw 1s ease-in-out;
}

.chart #descLot {
  position: absolute;
  top: 100%;
  padding: 8px 0px 0px 3px;
  display: block;
  word-wrap: break-word;
  font-size: 10px;
  /*padding-left: 25px;*/
  /*content: attr(title);*/
  /*right: 0;*/
  /*left: 20px;*/
}

@keyframes draw {
  0% {
    height: 0;
  }
}


.redalert {
    /*font-size:1.7em;*/
    padding:3px;
    border: 1px solid red;
    border-radius:6px
}


.input-green {
    border-color: green;
    color: green !important;
    font-weight: 700;
}