

.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: none;
}


/* Tablet and up */
@media screen and (min-width: 768px) {
  .carousel-inner .active,
  .carousel-inner .active+.carousel-item {
    display: block;
  }
  .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left),
  .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left)+.carousel-item {
    -webkit-transition: none;
    transition: none;
  }
  .carousel-inner .carousel-item-next,
  .carousel-inner .carousel-item-prev {
    position: relative;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .carousel-inner .active.carousel-item+.carousel-item+.carousel-item+.carousel-item {
    position: absolute;
    top: 0;
    right: -50%;
    z-index: -1;
    display: block;
    visibility: visible;
  }
  /* left or forward direction */
  .active.carousel-item-left+.carousel-item-next.carousel-item-left,
  .carousel-item-next.carousel-item-left+.carousel-item {
    position: relative;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  /* farthest right hidden item must be abso position for animations */
  .carousel-inner .carousel-item-prev.carousel-item-right {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    visibility: visible;
  }
  /* right or prev direction */
  .active.carousel-item-right+.carousel-item-prev.carousel-item-right,
  .carousel-item-prev.carousel-item-right+.carousel-item {
    position: relative;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
    display: block;
    visibility: visible;
  }
}

/* Desktop and up */

@media screen and (min-width: 992px) {
  .carousel-inner .active,
  .carousel-inner .active+.carousel-item,
  .carousel-inner .active+.carousel-item+.carousel-item {
    display: block;
  }
  .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left),
  .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left)+.carousel-item,
  .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left)+.carousel-item+.carousel-item {
    -webkit-transition: none;
    transition: none;
  }
  .carousel-inner .carousel-item-next,
  .carousel-inner .carousel-item-prev {
    position: relative;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .carousel-inner .active.carousel-item+.carousel-item+.carousel-item+.carousel-item {
    position: absolute;
    top: 0;
    right: -33.3333%;
    z-index: -1;
    display: block;
    visibility: visible;
  }
  /* left or forward direction */
  .active.carousel-item-left+.carousel-item-next.carousel-item-left,
  .carousel-item-next.carousel-item-left+.carousel-item,
  .carousel-item-next.carousel-item-left+.carousel-item+.carousel-item,
  .carousel-item-next.carousel-item-left+.carousel-item+.carousel-item+.carousel-item {
    position: relative;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  /* farthest right hidden item must be abso position for animations */
  .carousel-inner .carousel-item-prev.carousel-item-right {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    visibility: visible;
  }
  /* right or prev direction */
  .active.carousel-item-right+.carousel-item-prev.carousel-item-right,
  .carousel-item-prev.carousel-item-right+.carousel-item,
  .carousel-item-prev.carousel-item-right+.carousel-item+.carousel-item,
  .carousel-item-prev.carousel-item-right+.carousel-item+.carousel-item+.carousel-item {
    position: relative;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
    display: block;
    visibility: visible;
  }
}

    .flex-layout {
        display: flex;
    }

    .flex-direction-h {
        flex-direction: row;
    }

    .flex-direction-v {
        flex-direction: column;
    }

    .flex-b-50 {
        flex-basis: 49.5%;
    }
    
    .margin-r-1 { 
        margin-right: 10px;
    }

    .justify-start {
        justify-content: flex-start;
    }

    .justify-end {
        justify-content: flex-end;
    }
    .v-align-center {
        vertical-align: middle;
    }


textarea{  
  overflow: visible;
  font-size: 14px;
  border-radius: 4px;
  box-shadow: 0px 0px 3px black;
  border: 0;
  min-width: 50%;

}

hr.hr-text {
  position: relative;
    border: none;
    height: 1px;
    width: 75%;
    margin-top: 25px;
    margin-bottom: 25px;

}

hr.hr-text::before {
    content: attr(data-content);
    display: inline-block;
    font-weight: bold;
    font-size: 0.85rem;
    color: #fff;
    background: #17a2b8;
    border-radius: 25%;
    padding: 0.2rem 2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: fit-content;
}

/*table freeze header class Style the header */
.header {
  padding: 10px 16px;
  background: #555;
  color: #f1f1f1;
}

/* Page content */
.content {
  padding: 16px;
}

/* The sticky class is added to the header with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  width: 100%
}

/* Add some top padding to the page content to prevent sudden quick movement (as the header gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
  padding-top: 102px;
}

/*charts spider*/
.highcharts-figure, .highcharts-data-table table {
    min-width: 320px;
    max-width: 100%;
    margin: 1em auto;
}

.highcharts-data-table table {
	font-family: Verdana, sans-serif;
	border-collapse: collapse;
	border: 1px solid #EBEBEB;
	margin: 10px auto;
	text-align: center;
	width: 100%;
	max-width: 500px;
}
.highcharts-data-table caption {
    padding: 1em 0;
    font-size: 1.2em;
    color: #555;
}
.highcharts-data-table th {
	font-weight: 600;
    padding: 0.5em;
}
.highcharts-data-table td, .highcharts-data-table th, .highcharts-data-table caption {
    padding: 0.5em;
}
.highcharts-data-table thead tr, .highcharts-data-table tr:nth-child(even) {
    background: #f8f8f8;
}
.highcharts-data-table tr:hover {
    background: #f1f7ff;
}


/*google charts middle label*/
/*.centerLabel
{
    position: absolute;
    left: 2px;
    top: 2px;
    width: 256px;
    line-height: 256px;
    text-align: center;
    font-size: 36px;
    color: maroon;
}

heart beat
body{
  padding:100px 0;
  background-color:#fff
}

#heart {
    position: relative;
    width: 100px;
    height: 90px;
    animation: heartbeat 1s infinite;
    margin:0 auto
}
#heart:before,
#heart:after {
    position: absolute;
    content: "";
    left: 50px;
    top: 0;
    width: 50px;
    height: 80px;
    background: #ccc;
    -moz-border-radius: 50px 50px 0 0;
    border-radius: 50px 50px 0 0;
    -webkit-transform: rotate(-45deg);
       -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
         -o-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transform-origin: 0 100%;
       -moz-transform-origin: 0 100%;
        -ms-transform-origin: 0 100%;
         -o-transform-origin: 0 100%;
            transform-origin: 0 100%;
}
#heart:after {
    left: 0;
    -webkit-transform: rotate(45deg);
       -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
         -o-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transform-origin: 100% 100%;
       -moz-transform-origin: 100% 100%;
        -ms-transform-origin: 100% 100%;
         -o-transform-origin: 100% 100%;
            transform-origin :100% 100%;
}



@keyframes heartbeat
{
  0%
  {
    transform: scale( .75 );
  }
  20%
  {
    transform: scale( 1 );
  }
  40%
  {
    transform: scale( .75 );
  }
  60%
  {
    transform: scale( 1 );
  }
  80%
  {
    transform: scale( .75 );
  }
  100%
  {
    transform: scale( .75 );
  }
}*/
/*general link style*/
a {
    color: #16acb7;
    text-decoration: none;
}

/*alert*/
.alertnocoaching {
    animation: alertPulse 0.5s;
    animation-iteration-count: infinite;
    opacity: 1;
    background: red;
}
/*alert background: #DF261C;*/
.flusher {
	border-radius: 5px;
	margin: 3px;
	height: auto;
	width: auto;

	box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
	transform: scale(1.2);
	animation: pulse 0.5s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(0.97);
		box-shadow: 0 0 0 0 /*rgba(255, 82, 82, 0.7)*/;
	}
	
	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px /*rgba(255, 82, 82, 0)*/;
	}
	
	100% {
		transform: scale(0.97);
		box-shadow: 0 0 0 0 /*rgba(255, 82, 82, 0)*/;
	}
}


/*The star rating module*/
.rate {
    display:inline-block;
}
.rate:not(:checked) > input {
    position:absolute;
    top:-9999px;
}
.rate:not(:checked) > label {
    float:right;
    width:1em;
    overflow:hidden;
    white-space:nowrap;
    font-size:14px;
    margin-bottom:0px;
}
.rate:not(:checked) > label:before {
    content: '✓ ';
}

.dotempty {
  height: 11px;
  width: 11px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  margin-right: 2px;
  margin-bottom: 2px;
  border-color: #16acb7;
  border-style: solid;
  border-width: 1.5px;
}
.dotfill {
  height: 11px;
  width: 11px;
  background-color: #16acb7;
  border-radius: 50%;
  display: inline-block;
  margin-right: 2px;
  margin-bottom: 2px;
  border-color: #16acb7;
  border-style: solid;
  border-width: 1.5px;
}

/*bootstrap form*/
#login .container #login-row #login-column #login-box {
  margin-top: 120px;
  max-width: 600px;
  height: 320px;
  border: 1px solid #9C9C9C;
  background-color: #EAEAEA;
}
#login .container #login-row #login-column #login-box #login-form {
  padding: 20px;
}
#login .container #login-row #login-column #login-box #login-form #register-link {
  margin-top: -85px;
}

/*
#MyForm{
float:right;
display: none;
border-radius: 5px;
width: 300px;
border: 1px solid #a7a7a7;
padding: 14px;
background: #ececec;
}	
#creatadmin{
float:right;
display: none;
border-radius: 5px;
width: 300px;
border: 1px solid #a7a7a7;
padding: 14px;
background: #ececec;
}
*/
/* The container border-bottom: 1px solid #333; border-radius: 5px; */
.container {
  display: block;
  position: relative;
  padding-left: 14px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 12px;
  text-align: left;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
hr { 
    background: lightgray;
  border-width: 1px;
} 


/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 10px;
  width: 10px;
  background-color: #fff;
  border-radius: 3px;
  border:0.5px solid #000;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #16acb7;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #000;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 3px;
  top: 1px;
  width: 2.5px;
  height: 5px;
  border: solid white;
  border-width: 0 1.5px 1.5px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/*--------------------------------------------*/
div.minimalistBlack {
    width: 100%;
    border-collapse: collapse;
    vertical-align: middle;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    background-color: white;
}



















.divTable.minimalistBlack .divTableCell, .divTableCell1, .divTableCell2, .divTableCell3, .divTableCell4, .divTableCell5, .divTable.minimalistBlack .divTableHead {
    vertical-align: middle;
    border: 2px solid #ccc;
    padding: 5px 4px;
}
.divTable.minimalistBlack .divTableBody .divTableCell {
  font-size: 12px;
  vertical-align: middle;
  text-align: center;
}
.divTable.minimalistBlack .divTableBody .divTableCell1 {
  font-size: 12px;
  text-align: center;
  background: #f1f1f1;
    vertical-align: top;
}
.divTable.minimalistBlack .divTableBody .divTableCell2 {
  font-size: 12px;
  text-align: center;
  background: #FDEBD0;
  vertical-align: middle;
}
.divTable.minimalistBlack .divTableBody .divTableCell3 {
  font-size: 12px;
  text-align: center;
  background: #D6EAF8;
  vertical-align: middle;
}
.divTable.minimalistBlack .divTableBody .divTableCell4 {
  font-size: 12px;
  text-align: center;
  background: #D5F5E3;
  vertical-align: middle;
}
.divTable.minimalistBlack .divTableBody .divTableCell5 {
  font-size: 12px;
  text-align: center;
  background: #9cdedb;
  vertical-align: middle;
}





.divTable.minimalistBlack .divTableHeading {
  background: #16acb7;
  border-bottom: 2px solid #ccc;
}
.divTable.minimalistBlack .divTableHeading .divTableHead {
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
.minimalistBlack .tableFootStyle {
  font-size: 14px;
}
/* DivTable.com */
.divTable{ display: table; }
.divTableRow { display: table-row; }
.divTableRow1 { display: table-row; }
.divTableHeading { display: table-header-group;}
.divTableCell, .divTableCell1, .divTableCell2, .divTableCell3, .divTableCell4, .divTableCell5, .divTableHead {
    display: table-cell;
}

.divTableHeading { display: table-header-group;}
.divTableFoot { display: table-footer-group;}
.divTableBody { display: table-row-group;}
/*--------------------------------------------*/
.accordion {
    background-color: #ECECEC;
  color: #76787b;
  cursor: pointer;
  /*padding: 18px;*/
  width: 50%;
  text-align: center;
  outline: none;
  font-size: 20px;
  transition: 0.4s;
  display: inline-block;
  border-radius: 3px;
  border:1px solid #ccc;
  margin-top:10px;
  margin-left: 25%;
  margin-right: 25%;
}

.active, .accordion:hover {
    display: inline-block;
    border-radius: 10px;
    background-color: #17a2b8;
}

.panel {
    display:none;
    text-align:center;
  padding: 10px 10px;
  background-color: #fff;
  overflow: auto;
  transition: max-height 0.8s ease-out;
  border-radius: 5px;
  border:1px solid #ccc;
}

#DivForHoverItem {
    /*just so we can see it*/
    height: 20px;
    width: 50px;
    background-color: #f4f4f4;
}

#HiddenText {
    display: none;
}

#DivForHoverItem:hover #HiddenText {
    display:block;
}



.hidden { visibility : hidden; }
.show { visibility : visible; }

.content {
  margin: auto;
}



a.footer {
	color:#76787b;
    text-align:center;
    text-decoration: none;
    margin: auto;
}

#hidediv{
    color: #000;
    text-align: center;
}


a.button {
		text-align:center;
		background: #ECECEC;
		padding: 5px 10px;
		display: block;
		font-weight: bold;
		color:#228600;
		text-decoration: none;
		text-shadow:0px 1px 0px #fff;
		border:1px solid #a7a7a7;
		border-radius: 5px;
		width: 100px;
		margin: auto;
		margin-top:10px;
		box-shadow: 0px 2px 1px white inset, 0px -2px 8px white, 0px 2px 5px rgba(0, 0, 0, 0.1), 0px 8px 10px rgba(0, 0, 0, 0.1);
		-webkit-transition:box-shadow 0.5s;
		cursor:pointer;
		align:right;
		float: right;
}	
a.signin {
		text-align:center;
		background: #117838;
		border-radius: 5px;
		padding: 2px 5px;
		display: block;
		font-weight: bold;
		color:#ececec;
		text-decoration: none;
		text-shadow:0px 1px 0px 1px;
		border:1px solid #a7a7a7;
		width: auto;
		margin: auto;
		margin-top:5px;
		-webkit-transition:box-shadow 0.5s;
		cursor:pointer;
		align:center;
		float: center;
}

a.signin:hover {
    background-color: #ececec;
    color: #117838;
}

a.signout {
		text-align:center;
		background: #e01825;
		border-radius: 5px;
		padding: 2px 5px;
		display: block;
		font-weight: bold;
		color:#ececec;
		text-decoration: none;
		text-shadow:0px 1px 0px 1px;
		border:1px solid #a7a7a7;
		width: auto;
		margin: auto;
		margin-top:5px;
		-webkit-transition:box-shadow 0.5s;
		cursor:pointer;
		align:center;
		float: center;
}

a.signout:hover {
    background-color: #ececec;
    color: #e01825;
}

 /*h1   {margin-bottom: 0px; margin-top: 0px; text-align:center; background-color:black;  font-family:monospace; color:white; font-size:120%;  border: 2px solid #a7a7a7; border-radius: 5px;}
 h2   {margin-bottom: 0px; margin-top: 0px; text-align:center; background-color:green;  font-family:Roboto; color:white; font-size:80%;  border: 2px solid #a7a7a7; border-radius: 5px;}
 h3   {margin-bottom: 0px; margin-top: 0px; text-align:center; background-color:red;	font-family:Roboto; color:white; font-size:80%;  border: 2px solid #a7a7a7; border-radius: 5px;}
*/
.qr{
	margin-top: 200px;
	float:right;
}
img{
		border-radius: 5px;
		/*border:2px solid #a7a7a7;*/
}
table, th, td {
  border-collapse: collapse;
    padding: 5px;
    text-align: center;
    margin-left:auto; 
    margin-right:auto;
}

table.info, th.info, td.info {
  border-collapse: collapse;
    padding: 5px;
  text-align: center;
  border: 1px solid black;
  background-color: #ffffff;
    margin-left:auto;
    margin-right:auto;
}


div.form {
	margin-left:auto; 
    margin-right:auto;
    margin: auto;
	position: static;
}

#banner {
	background: url("../logo.png") center top;
	background-size: 400px 153px;
    background-repeat: no-repeat;
    height: 153px;
}

body {
	width: auto;
    font-family: 'Roboto', sans-serif;
    font-family: 'Tajawal', sans-serif;
	background-color: #f4f4f4;
	background-image: url("../lms-bg.png");
	background-repeat: repeat;
	background-size: 500px;
}
	#upd_frm input, #upd_frm select
	{
	    border-radius: 5px;
	  width : 500px;
	  text-align: center;
	  padding-right:5px;
	  font-size: 20px;
	}
	
	#upd_frm tr td, #upd_frm tr td input, #upd_frm tr td select
	{
	    font-size: 20px;
		border-radius: 5px;
		text-align: center;
	}
	
	#srch_tbl input, #srch_tbl select, #srch_tbl button
	{
	  border-radius: 5px;
	  width : 100%;
	  text-align: center;
	  font-size: 14px;
	  		color:#555;
	}
	#srch_tbl input:hover{
		background: #aaa;
		color:#fff;
		cursor:pointer;
	}	

	#srch_tbl tr td, #srch_tbl tr td input, #srch_tbl tr td select
	{
	    font-size: 14px;
		border-radius: 5px;
		text-align: center;
	}

	.btn-indigo
	{
	    background: #9cdedb;
	}

	.bg-indigo
	{
	    background: #9cdedb;
	}
	
	#submit_btn_center
	{
		text-align:center;
		float: center;
		background: #ECECEC;
		border-radius: 5px;
		padding: 5px 10px;
		display: block;
		font-weight: bold;
		color:#000000;
		text-decoration: none;
		text-shadow:0px 1px 0px #fff;
		border:1px solid #a7a7a7;
		width: 100px;
		margin: auto;
		margin-top:20px;
		margin-left:105px;
		cursor:pointer;
	}
		#submit_btn_center:hover{
	   background-color: #aaa;
    color: #fff;
	border:1px solid #000;
	}
	#submit_btn_center:active{
		background:-webkit-linear-gradient(top, #d1d1d1 0%,#ECECEC 100%);
	}
	#submit_btn{
		text-align:center;
		background: #ECECEC;
		padding: 5px 10px;
		color:#555;
		text-decoration: none;
		text-shadow:0px 1px 0px #fff;
		border:1px solid #a7a7a7;
		border-radius: 5px;
		margin: auto;
		margin-top:2px;
		margin-bottom:2px;
		cursor:pointer;

	}
	#submit_btn:hover{
	text-shadow:none;
	background-color: #aaa;
    color: #fff;
	border:1px solid #acacac;
	}
	#submit_btn:active{
		box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5) inset, 0px -2px 20px white, 0px 1px 5px rgba(0, 0, 0, 0.1), 0px 2px 10px rgba(0, 0, 0, 0.1);
		background:-webkit-linear-gradient(top, #d1d1d1 0%,#ECECEC 100%);
	}
	
	.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 70px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 30%;
  position: relative;
  transition: all 5s ease-in-out;
}

.popup h2 {
  margin-top: 0;
  color: #333;
}
.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup .close:hover {
  color: #06D85F;
}
.popup .content {
  max-height: 30%;
  overflow: auto;
}
@media screen and (max-width: 700px){
  .box{
    width: 70%;
  }
  .popup{
    width: 70%;
  }
}

/*-------------------------------------------------*/
.range {
  position: relative;
  width: 550px;
  height: 5px;
}

.range input {
  width: 100%;
  position: absolute;
  top: 2px;
  height: 0;
  -webkit-appearance: none;
}
.range input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  margin: -8px 0 0;
  border-radius: 50%;
  background: #37adbf;
  cursor: pointer;
  border: 0 !important;
}
.range input::-moz-range-thumb {
  width: 18px;
  height: 18px;
  margin: -8px 0 0;
  border-radius: 50%;
  background: #37adbf;
  cursor: pointer;
  border: 0 !important;
}
.range input::-ms-thumb {
  width: 18px;
  height: 18px;
  margin: -8px 0 0;
  border-radius: 50%;
  background: #37adbf;
  cursor: pointer;
  border: 0 !important;
}
.range input::-webkit-slider-runnable-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  background: #b2b2b2;
}
.range input::-moz-range-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  background: #b2b2b2;
}
.range input::-ms-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  background: #b2b2b2;
}
.range input:focus {
  background: none;
  outline: none;
}
.range input::-ms-track {
  width: 100%;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

.range-labels {
  margin: 18px -41px 0;
  padding: 0;
  list-style: none;
}
.range-labels li {
  position: relative;
  float: left;
  width: 90.25px;
  text-align: center;
  color: #b2b2b2;
  font-size: 14px;
  cursor: pointer;
}
.range-labels li::before {
  position: absolute;
  top: -25px;
  right: 0;
  left: 0;
  content: "";
  margin: 0 auto;
  width: 9px;
  height: 9px;
  background: #b2b2b2;
  border-radius: 50%;
}
.range-labels .active {
  color: #37adbf;
}
.range-labels .selected::before {
  background: #37adbf;
}
.range-labels .active.selected::before {
  display: none;
}
#navbarwrapper
{
    text-align: center;
    vertical-align: bottom;
}
#navbar {
    display: inline-block;
    overflow: hidden;
    border-radius: 15px;
    width: 100%;
}

#navbar a {
    display: inline-block;
  font-size: 15px;
		background: #ECECEC;
		border-radius: 5px;
		padding: 5px 10px;
		color:#555;
		text-decoration: none;
		border:1px solid #a7a7a7;
		width: 110px;
		margin: auto;
		margin-bottom:5px;
		cursor:pointer;
}

#navbar a:hover {
  background-color: #aaa;
  color: #fff;
}

#navbar a.active {
  background-color: #aaa;
  color: #555;
}


.cx {
            background-color: #16acb7; /* cx */
            border: none;
            border-radius: 5px; 
            color: white;
            padding: 10px 20px;
            text-align: center;
            text-decoration: none;
            /*display: inline-block;*/
            font-size: 16px;
            margin: 2px 2px;
            cursor: pointer;
            -webkit-transition-duration: 0.4s; /* Safari */
            transition-duration: 0.4s;
            flex: 1;
            max-width: 100%; 
            box-sizing: border-box;
}
.cx:hover {
            cursor: pointer;
            border-radius: 10px;          
            background-color: white;
            border-color: #16acb7;
            color: #16acb7;
            transition-duration: 0.4s;
            box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
            flex: 1;
            max-width: 100%;
            box-sizing: border-box;
}
.cx:disabled {
            border-radius: 5px;          
            background-color: #5a5c69;
            border-color: #16acb7;
            color: #858796;
}


th {
    background-color: #16acb7;
    color: white;
    text-align: center;
    font-size: 12px;
}

td {
    text-align: center;
    font-size: 12px;
}




