
@import 'https://fonts.googleapis.com/css?family=Open+Sans:600,700';

[type="checkbox"]
{
    vertical-align:middle;
}

.btn-disabled {
	width: 100%;
    padding: 8px;
    text-align: center;
    background-color: #ededed;
    border-radius: 4px;
}

.circleOrange {
  background: #0275d8;
  border-radius: 3em;
  -moz-border-radius: 3em;
  -webkit-border-radius: 3em;
  color: #ffffff;
  height: 1.8em;
  width: 1.8em;
  display: inline-block;
  font-family: 'Roboto', Helvetica, Sans-serif;
 font-size: 19px;
    line-height: 1.8em;

  text-align: center;
}

.circleOrange:hover {
  background: #688197;
  -webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	-ms-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out; 
}



.timeX input[type="radio"] {
  visibility: hidden; /* 1 */
  height: 0; /* 2 */
  width: 0; /* 2 */
  position: absolute;
}

.timeX input[type="checkbox"] {
  visibility: hidden; /* 1 */
  height: 0; /* 2 */
  width: 0; /* 2 */
  position: absolute;
}

.timeX label {
  display: flex;
  flex: auto;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  background-color: #ceecfd;
  color: #354b5e;
  font-weight: 700;
  font-size: 1.2em;
  padding: 5px 10px;
  border-radius: 6px;
  transition: #e4e4e4 0.1s ease-out, #525252 0.1s ease-in;
  user-select: none;
  margin-right: 8px;
}

.timeX label:last-of-type {
 margin-right: 0;
}

.timeX input[type="radio"]:checked + label {
  background-color: #3d93e5;
  color: #FFF;
}

.timeX input[type="radio"]:hover:not(:checked) + label {
 background-color: #93c5f5;
 color: #fff;
}

.timeX input[type="checkbox"]:checked + label {
  background-color: #3d93e5;
  color: #FFF;
}

.timeX input[type="checkbox"]:hover:not(:checked) + label {
 background-color: #93c5f5;
 color: #fff;
}








.btn-primary-2 {
    color: #444343;
    background-color: #f0f8ff;
    border-color: #d9dee3;
}

/*SLICK NEXT PREV */
.slick-prev:before, .slick-next:before {
	
	color: #3498db !important;
}


/* The icon */
.help-tip{
	/*
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	*/
	margin: auto;
	text-align: center;
	width: 40px;
	height: 40px;
	font-size: 24px;
	line-height: 42px;
	cursor: pointer;
	position: relative;
}



.help-tip:hover p{
    display:block;
    transform-origin: 100% 0%;
    -webkit-animation: fadeIn 0.3s ease;
    animation: fadeIn 0.3s ease;
}

/* The tooltip */
.help-tip p {    
	display: none;
	font-family: sans-serif;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	text-align: center;
	background-color: #fff;
	padding: 12px 16px !important;
	width: auto;
	height: auto;

	position: absolute;
	
	left: 50%;
	transform: translate(-50%, 5%);
	
	
	border-radius: 3px;
border: 1px solid #cbcbcb; 
	box-shadow: 0 0px 20px 0 rgba(0,0,0,0.1);
	color: #37393D;
	font-size: 12px;
	line-height: 18px;
	z-index: 999999999 !important;
}

.help-tip p a {
	color: #067df7;
	text-decoration: none;
}

.help-tip p a:hover {
	text-decoration: underline;
}



 /* Prevents the tooltip from being hidden */
.help-tip p:after {
	width: 10px;
	height: 40px;
	content:'';
	position: absolute;
	top: 0;
	left: 0;
}

/* CSS animation */
@-webkit-keyframes fadeIn {
    0% { opacity:0; }
    100% { opacity:100%; }
}

@keyframes fadeIn {
    0% { opacity:0; }
    100% { opacity:100%; }
}


/*ICON SLIDE*/
 a.button-icon {
  color: #000;
  text-decoration: none;
}

a.button-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #eee;
  transition: 0.2s;
  z-index: 99999;
}
a.button-icon .material-icons {
  font-size: 24px;
  transition: 0.2s;
}
a.button-icon .label-hidden {
  max-width: 0;
  opacity: 0;
  max-height: 1em;
  white-space: nowrap;
  transition: 0.2s;
}
a.button-icon:hover .label-hidden {
  max-width: 300px;
  margin-left: 8px;
  opacity: 1;
}





/*BOOKING*/



.staffselect ul {
  list-style-type: none;
  padding: 0 !important;
}

.staffselect li {
  display: inline-block;
}

.staffselect input[type="radio"][id^="cb"] {
  display: none;
}

.staffselect label {
  border: 1px solid #fff;
  padding: 10px;
  display: block;
  position: relative;
  margin: 10px;
  cursor: pointer;
}

.staffselect label:before {
  background-color: white;
  color: white;
  content: " ";
  display: block;
  border-radius: 50%;
  border: 1px solid grey;
  position: absolute;
  top: -5px;
  left: -5px;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 28px;
  transition-duration: 0.4s;
  transform: scale(0);
}

.staffselect label img {
  height: 100px;
  width: 100px;
  transition-duration: 0.2s;
  transform-origin: 50% 50%;
}
.staffselect :checked + label {
  border-color: #ddd;
}

.staffselect :checked + label:before {
  content: "✓";
  background-color:#0049C9;
  transform: scale(1);
}

.staffselect :checked + label img {
  transform: scale(0.9);
  box-shadow: 0 0 5px #333;
  z-index: -1;
}



/*PAGE*/
		*:before,
		*:after {
			-webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
			box-sizing: border-box;
		}
		
		body {
			background: #f5f5f5;
			padding: 0;
			margin: 0;
		}
		
		i.fa {
			font-size: 16px;
		}
		
		p {
			font-size: 16px;
			line-height: 1.42857143;
			padding: 0 !important;
		}
		
		.header {
			position: fixed;
			z-index: 999999999999999999;
			top: 0;
			left: 0;
			background: #3498DB;
			width: 100%;
			height: 50px;
			line-height: 50px;
			color: #fff;
		}
		
		.header .logo {
			text-transform: uppercase;
			letter-spacing: 1px;
		}
		
		.header #menu-action {
			display: block;
			float: left;
			width: 60px;
			height: 50px;
			line-height: 50px;
			margin-right: 15px;
			color: #fff;
			text-decoration: none;
			text-align: center;
			background: rgba(0, 0, 0, 0.15);
			font-size: 13px;
			text-transform: uppercase;
			letter-spacing: 1px;
			-webkit-transition: all 0.2s ease-in-out;
			transition: all 0.2s ease-in-out;
		}
		
		.header #menu-action i {
			display: inline-block;
			margin: 0 5px;
		}
		
		.header #menu-action span {
			width: 0px;
			display: none;
			overflow: hidden;
			-webkit-transition: all 0.2s ease-in-out;
			transition: all 0.2s ease-in-out;
		}
		
		.header #menu-action:hover {
			background: rgba(0, 0, 0, 0.25);
		}
		
		.header #menu-action.active {
			width: 250px;
			-webkit-transition: all 0.2s ease-in-out;
			transition: all 0.2s ease-in-out;
		}
		
		.header #menu-action.active span {
			display: inline;
			width: auto;
			-webkit-transition: all 0.2s ease-in-out;
			transition: all 0.2s ease-in-out;
		}
		
		.sidebar {
			position: fixed;
			/*position: absolute;*/
			z-index: 3;
			left: 0;
			top: 50px;
			height: 100%;
			width: 60px;
			background: #fff;
			border-right: 1px solid #ddd;
			text-align: center;
			-webkit-transition: all 0.2s ease-in-out;
			transition: all 0.2s ease-in-out;
		}
		
		.sidebar:hover,
		.sidebar.active,
		.sidebar.hovered {
			width: 250px;
			-webkit-transition: all 0.2s ease-in-out;
			transition: all 0.2s ease-in-out;
		}
		
		.sidebar ul {
			list-style-type: none;
			padding: 0;
			margin: 0;
			background-color: white;
		}
		
		.sidebar ul li {
			display: block;
		}
		
		.sidebar ul li a {
			display: block;
			position: relative;
			white-space: nowrap;
			overflow: hidden;
			border-bottom: 1px solid #ddd;
			color: #444;
			text-align: left;
		}
		
		.sidebar ul li a i {
			display: inline-block;
			width: 60px;
			height: 60px;
			line-height: 60px;
			text-align: center;
			-webkit-animation-duration: 0.7s;
			-moz-animation-duration: 0.7s;
			-o-animation-duration: 0.7s;
			animation-duration: 0.7s;
			-webkit-animation-fill-mode: both;
			-moz-animation-fill-mode: both;
			-o-animation-fill-mode: both;
			animation-fill-mode: both;
		}
		
		.sidebar ul li a span {
			display: inline-block;
			height: 60px;
			line-height: 60px;
		}
		
		.sidebar ul li a:hover {
			background-color: #eee;
		}
		
		.main {
			position: relative;
			display: block;
			top: 50px;
			left: 0;
			padding: 15px;
			padding-left: 75px;
			-webkit-transition: all 0.2s ease-in-out;
			transition: all 0.2s ease-in-out;
		}
		
		.main.active {
			padding-left: 275px;
			-webkit-transition: all 0.2s ease-in-out;
			transition: all 0.2s ease-in-out;
		}
		
		.main .jumbotron {
			background-color: #fff;
			/*padding: 30px !important;*/
			border: 1px solid #dfe8f1;
			-webkit-border-radius: 3px;
			-moz-border-radius: 3px;
			border-radius: 3px;
		}
		
		.main .jumbotron h1 {
			font-size: 24px;
			margin: 0;
			padding: 0;
			margin-bottom: 12px;
		}
		
		@-webkit-keyframes swing {
			20% {
				-webkit-transform: rotate3d(0, 0, 1, 15deg);
				transform: rotate3d(0, 0, 1, 15deg);
			}
			40% {
				-webkit-transform: rotate3d(0, 0, 1, -10deg);
				transform: rotate3d(0, 0, 1, -10deg);
			}
			60% {
				-webkit-transform: rotate3d(0, 0, 1, 5deg);
				transform: rotate3d(0, 0, 1, 5deg);
			}
			80% {
				-webkit-transform: rotate3d(0, 0, 1, -5deg);
				transform: rotate3d(0, 0, 1, -5deg);
			}
			100% {
				-webkit-transform: rotate3d(0, 0, 1, 0deg);
				transform: rotate3d(0, 0, 1, 0deg);
			}
		}
		
		@keyframes swing {
			20% {
				-webkit-transform: rotate3d(0, 0, 1, 15deg);
				-ms-transform: rotate3d(0, 0, 1, 15deg);
				transform: rotate3d(0, 0, 1, 15deg);
			}
			40% {
				-webkit-transform: rotate3d(0, 0, 1, -10deg);
				-ms-transform: rotate3d(0, 0, 1, -10deg);
				transform: rotate3d(0, 0, 1, -10deg);
			}
			60% {
				-webkit-transform: rotate3d(0, 0, 1, 5deg);
				-ms-transform: rotate3d(0, 0, 1, 5deg);
				transform: rotate3d(0, 0, 1, 5deg);
			}
			80% {
				-webkit-transform: rotate3d(0, 0, 1, -5deg);
				-ms-transform: rotate3d(0, 0, 1, -5deg);
				transform: rotate3d(0, 0, 1, -5deg);
			}
			100% {
				-webkit-transform: rotate3d(0, 0, 1, 0deg);
				-ms-transform: rotate3d(0, 0, 1, 0deg);
				transform: rotate3d(0, 0, 1, 0deg);
			}
		}
		
		.swing {
			-webkit-transform-origin: top center;
			-ms-transform-origin: top center;
			transform-origin: top center;
			-webkit-animation-name: swing;
			animation-name: swing;
		}
		
		.bs-callout {
			padding: 20px;
			margin: 20px 0;
			border: 1px solid #eee;
			border-left-width: 5px;
			border-radius: 3px;
			background: white;
		}
		
		table {
			background: white;
		}
		
		.bs-callout h4 {
			margin-top: 0;
			margin-bottom: 5px;
		}
		
		.bs-callout p:last-child {
			margin-bottom: 0;
		}
		
		.bs-callout code {
			border-radius: 3px;
		}
		
		.bs-callout+ .bs-callout {
			margin-top: -5px;
		}
		
		.bs-callout-default {
			border-left-color: #777;
		}
		
		.bs-callout-default h4 {
			color: #777;
		}
		
		.bs-callout-primary {
			border-left-color: #428bca;
		}
		
		.bs-callout-primary h4 {
			color: #428bca;
		}
		
		.bs-callout-success {
			border-left-color: #5cb85c;
		}
		
		.bs-callout-success h4 {
			color: #5cb85c;
		}
		
		.bs-callout-danger {
			border-left-color: #d9534f;
		}
		
		.bs-callout-danger h4 {
			color: #d9534f;
		}
		
		.bs-callout-warning {
			border-left-color: #f0ad4e;
		}
		
		.bs-callout-warning h4 {
			color: #f0ad4e;
		}
		
		.bs-callout-info {
			border-left-color: #5bc0de;
		}
		
		.bs-callout-info h4 {
			color: #5bc0de;
		}

/*END PAGE*/



/*APPOINTMENT BY STAFF TABLE */





.columns {
    width: 100%;
    /*padding: 10px;*/
}

.price {
    list-style-type: none;
    border: 2px solid #eef;
    margin: 0;
    padding: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.price:hover {
    box-shadow: 0 8px 11px 0 rgba(0,0,0,0.5);
}

.price .headerTable {
    background-color: #444;
    color: white;
    font-size: 25px;
}

.price .sticky
{
  background-color:#64b5f6;
}
.price li {
    border-bottom: 1px solid #eef;
    padding: 10px;
    text-align: center;background-color: #FFFFFF;
	-webkit-box-shadow: -1px 3px 4px -3px #000000; 
box-shadow: -1px 3px 4px -3px #000000;

	margin-bottom: 20px;
}

.price li:nth-child(odd):not(:first-child) {
  background-color: #e4eaf1;
}

.price .grey {
    background-color: #eef;
    font-size: 20px;
}





@media only screen and (max-width: 600px) {
    .columns {
        width: 100%;
    }
	
	.mobile-booking-details {
		display: block !important;
	}
	

}












.report table {
  /*border: 1px solid #ccc;*/
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

.report table caption {
  font-size: 1.5em;
  margin: .5em 0 .75em;
}


.report table tr {
  background-color: #fff;
  border: 1px solid #ddd;
  /*padding: .35em;*/
}

  .report table tr:last-child {
    border-bottom: none;
  }


.report table th,
table td {
  padding: .625em;
  text-align: center;
}

.report table th {
  font-size: .85em;
  letter-spacing: .1em;
  text-transform: uppercase;
}

@media screen and (max-width: 600px) {
  .report table {
    border: 0;
  }

  .report table caption {
    font-size: 1.3em;
  }
  
  .report table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  .report table tr {
    border-bottom: 3px solid #ddd;
    display: block;
    /*margin-bottom: .625em;*/
  }
  
 .report table td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: .8em;
    text-align: right;
  }
  
  .report table td::before {
    /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .report table td:last-child {
    border-bottom: 0;
  }
}



/* END APPOINTMENT BY STAFF TABLE */



/*GROUP BOOKING LIST*/
.list {
	width: 100%;
}

.list ul:nth-child(odd) {
  background-color:#f3f3f3;
}

.list ul:nth-child(even) {
  background-color:#fff;
}
.list ul li {
	font-size: .9em;
}

.list ul li .guest-btn {
		width: 100px;
	}

/* big */
@media screen and (min-width:600px) {
  
  .list {
    display:table;
    /*margin:1em;*/
  }
 
  .list ul {
    display:table-row;
  }
  
  .list ul:first-child li {
    background-color:#fbfbfb;
    color:#3a3f4c;
	  
  }
  
  .list ul > li {
    display:table-cell;
    padding:.5em;
  }
  
}

/* small */
@media screen and (max-width:599px) {
  
  .list ul {
   
    display:block;
    list-style:none;
	  
    /*margin:1em;*/
    padding:.5em;
  }
  
  .list ul:first-child {
    display:none;
  }
  
  .list ul > li {
    display:block;
    padding:.25em 0;
	 
  }
  
  .list ul:nth-child(odd) > li + li {
    border-top:solid 1px #ccc;
  }
  
  .list ul:nth-child(even) > li + li {
    border-top:solid 1px #eee;
  }
  
  .list ul > li:before {
    color:#000;
    content:attr(data-label);
    display:inline-block;
    font-size: .9em;
    font-weight:bold;
    text-transform:capitalize;
    vertical-align:top;
    width:30%;
  }
  
  .list p {
    margin:-1em 0 0 50%;
  }
	
	
	.guest-btn {
		width: auto !important;
	}
  
}

/* tiny */
@media screen and (max-width:349px) {
    
  .list ul > li:before {
    display:block;
  }
  
  .list p {
    margin:0;
  }
  
}





/*GROUP BOOKING TABLE*/

.group-booking-table {
  margin: auto;
  width: 100%;
  border-collapse: collapse;
  box-shadow: -1px 3px 4px -3px #000000;
}

.group-booking-table tr:first-child {
  border-top: none;
  background: #9fbcc3;
  color: #4e6578;
}

.group-booking-table tr {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
}

.group-booking-table tr:nth-child(odd):not(:first-child) {
  background-color: #f1f3ff;
}

.group-booking-table th {
  display: none;
}

.group-booking-table td {
  display: block;
}

.group-booking-table td:first-child {
  margin-top: .5em;
}

.group-booking-table td:last-child {
  margin-bottom: .5em;
}

.group-booking-table td:before {
  /*content: attr(data-th) ": ";*/
  font-weight: bold;
  width: 120px;
  display: inline-block;
  color: #000;
	
   content: none;

}

.group-booking-table th,
.group-booking-table td {
  text-align: left;
}

.group-booking-table {
  color: #333;
  border-radius: .4em;
  overflow: hidden;
	margin-bottom: 30px;
}

.group-booking-table tr {
  border-color: #dfdfdf;
}

.group-booking-table th,
.group-booking-table td {
  padding: .5em 1em;
}
@media screen and (max-width: 601px) {
  .group-booking-table tr:nth-child(2) {
    border-top: none;
  }
}
@media screen and (min-width: 600px) {
  /*
  .group-booking-table tr:hover:not(:first-child) {
    background-color: #d8e7f3;
  }
  */
  .group-booking-table td:before {
    display: none;
  }
  .group-booking-table th,
  .group-booking-table td {
    display: table-cell;
    padding: .25em .5em;
  }
  .group-booking-table th:first-child,
  .group-booking-table td:first-child {
    padding-left: 0;
	  
  }
  .group-booking-table th:last-child,
  .group-booking-table td:last-child {
    padding-right: 0;
	  border-right: none;
  }

	.group-booking-table th {
		border-right: solid 1px #ccc;
	}
	
  .group-booking-table th,
  .group-booking-table td {
    padding: 1em !important;
	  
  }

}




/*CUSTOMER TABLE*/
* {font-family: 'Open Sans', sans-serif;}

.rwd-table {
  margin: auto;
  width: 100%;
  border-collapse: collapse;
}

.rwd-table tr:first-child {
  border-top: none;
  background: #9fbcc3;
  color: #fff;
}

.rwd-table tr {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
}

.rwd-table tr:nth-child(odd):not(:first-child) {
  background-color: #f1f3ff;
}

.rwd-table th {
  display: none;
}

.rwd-table td {
  display: block;
}

.rwd-table td:first-child {
  margin-top: .5em;
}

.rwd-table td:last-child {
  margin-bottom: .5em;
}

.rwd-table td:before {
  /*content: attr(data-th) ": ";*/
  font-weight: bold;
  width: 120px;
  display: inline-block;
  color: #000;
	
   content: none;

}

.rwd-table th,
.rwd-table td {
  text-align: left;
}

.rwd-table {
  color: #333;
  border-radius: .4em;
  overflow: hidden;
}

.rwd-table tr {
  border-color: #dfdfdf;
}

.rwd-table th,
.rwd-table td {
  padding: .5em 1em;
}
@media screen and (max-width: 601px) {
  .rwd-table tr:nth-child(2) {
    border-top: none;
  }
}
@media screen and (min-width: 600px) {
  .rwd-table tr:hover:not(:first-child) {
    background-color: #d8e7f3;
  }
  .rwd-table td:before {
    display: none;
  }
  .rwd-table th,
  .rwd-table td {
    display: table-cell;
    padding: .25em .5em;
  }
  .rwd-table th:first-child,
  .rwd-table td:first-child {
    padding-left: 0;
  }
  .rwd-table th:last-child,
  .rwd-table td:last-child {
    padding-right: 0;
  }
  .rwd-table th,
  .rwd-table td {
    padding: 1em !important;
  }
}


/* THE END OF THE IMPORTANT STUFF */


/* CUSTOMER TABLE */

.responsive-table {
  width: 100%;
  margin-bottom: 1.5em;
}
.responsive-table thead {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.responsive-table thead th {
  background-color: #9fbcc3;
  border: 1px solid #98bcd5;
  font-weight: normal;
  text-align: left;
  color: white;
}
.responsive-table thead th:first-of-type {
  text-align: left;
}
.responsive-table tbody,
.responsive-table tr,
.responsive-table th,
.responsive-table td {
  display: block;
  padding: 0;
  text-align: left;
  white-space: normal;
}
.responsive-table th,
.responsive-table td {
  padding: .5em;
  vertical-align: middle;
	
}
.responsive-table caption {
  margin-bottom: 1em;
  font-size: 1em;
  font-weight: bold;
  text-align: center;
}
.responsive-table tfoot {
  font-size: .8em;
  font-style: italic;
}
.responsive-table tbody tr {
  margin-bottom: 1em;
  border: 1px solid #d2dee1;
}
.responsive-table tbody tr:last-of-type {
  margin-bottom: 0;
}
.responsive-table tbody th[scope="row"] {
  background-color: #9fbcc3;
  color: white;
}
.responsive-table tbody td[data-type=currency] {
  text-align: right;
}
.responsive-table tbody td[data-title]:before {
  content: attr(data-title);
  float: left;
  font-size: .7em;
  color: rgba(94, 93, 82, 0.75);
}
.responsive-table tbody td {
  text-align: right;
  /*border-bottom: 1px solid #1d96b2;*/
  margin-top: 7px;
}


@media (min-width: 52em) {
  .responsive-table {
    font-size: .9em;
  }
  .responsive-table thead {
    position: relative;
    clip: auto;
    height: auto;
    width: auto;
    overflow: auto;
  }
  .responsive-table tr {
    display: table-row;
  }
  .responsive-table th,
  .responsive-table td {
    display: table-cell;
    padding: .5em;
	
  }

  .responsive-table caption {
    font-size: 1.5em;
  }
  .responsive-table tbody {
    display: table-row-group;
  }
  .responsive-table tbody tr {
    display: table-row;
    border-width: 1px;
  }
  .responsive-table tbody tr:nth-of-type(even) {
    background-color: rgba(94, 93, 82, 0.1);
  }
  .responsive-table tbody th[scope="row"] {
    background-color: transparent;
    color: #5e5d52;
    text-align: left;
  }
  .responsive-table tbody td {
    text-align: left;
  }
  .responsive-table tbody td[data-title]:before {
    content: none;
  }
}
@media (min-width: 62em) {
  .responsive-table {
    font-size: 1em;
  }
  .responsive-table th,
  .responsive-table td {
    padding: .75em .5em;
  }
  .responsive-table tfoot {
    font-size: .9em;
  }
}

@media (min-width: 75em) {
  .responsive-table th,
  .responsive-table td {
    padding: .75em;
  }
}


/* END CUSTOMER TABLE */




.h1,
h1 {
    font-size: 1.5rem;
}

.container-fluid {
    max-width: 1400px;
}

.card {
    background: #fff;
    box-shadow: 0 6px 10px rgba(0, 0, 0, .08), 0 0 6px rgba(0, 0, 0, .05);
    border: 1;
    border-radius: 1rem;
}

.img-hover-zoom--colorize img {
    border-radius: 50%;
    width: 150px;
    height: auto;
    margin-top: 20px;
    padding: 1px;
    transition: transform .5s;
    filter: grayscale(100%);
}

.img-hover-zoom--colorize:hover img {
    filter: grayscale(0);
    transform: scale(1.05);
}

.card h5 {
    overflow: hidden;
    height: 80px;
    font-weight: 300;
    font-size: 1rem;
}

.card h5 a {
    color: black;
    text-decoration: none;
}

.role {
    color: #7a7a7a;
}

.box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fab {
    font-size: 1.5rem;
    color: darkgray;
    transition: transform .5s;
}

.fab:hover {
    color: black;
    transform: scale(1.1);
}

.card h2 {
    font-size: 1rem;
}


/* MEDIA */

@media only screen and (min-width: 1200px) {
    .img-hover-zoom--colorize img {
        width: 200px;
    }
}

@media only screen and (min-width: 1200px) {
    .h1,
    h1 {
        font-size: 2rem;
    }
}





/*
    Don't look at this last part. It's unnecessary. I was just playing with pixel gradients... Don't judge.
*/
/*
@media screen and (max-width: 601px) {
  .rwd-table tr {
    background-image: -webkit-linear-gradient(left, #428bca 137px, #f5f9fc 1px, #f5f9fc 100%);
    background-image: -moz-linear-gradient(left, #428bca 137px, #f5f9fc 1px, #f5f9fc 100%);
    background-image: -o-linear-gradient(left, #428bca 137px, #f5f9fc 1px, #f5f9fc 100%);
    background-image: -ms-linear-gradient(left, #428bca 137px, #f5f9fc 1px, #f5f9fc 100%);
    background-image: linear-gradient(left, #428bca 137px, #f5f9fc 1px, #f5f9fc 100%);
  }
  .rwd-table tr:nth-child(odd) {
    background-image: -webkit-linear-gradient(left, #428bca 137px, #ebf3f9 1px, #ebf3f9 100%);
    background-image: -moz-linear-gradient(left, #428bca 137px, #ebf3f9 1px, #ebf3f9 100%);
    background-image: -o-linear-gradient(left, #428bca 137px, #ebf3f9 1px, #ebf3f9 100%);
    background-image: -ms-linear-gradient(left, #428bca 137px, #ebf3f9 1px, #ebf3f9 100%);
    background-image: linear-gradient(left, #428bca 137px, #ebf3f9 1px, #ebf3f9 100%);
  }
}*/


input[type="password"], input[type="email"], input[type="text"], input[type="file"], textarea, select {
    max-width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    height: auto;
    /*background-color: #e1e1e1 !important;*/
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #b8d4e7;
    display: block;
    width: 100%;
    line-height: 1.75em;
    font-weight: 400;
    color: #000;
    background-image: none;
    border-radius: 0;
    outline: none;
}




.divTableCell:nth-child(odd) {
    background-color: #f4f5ff;
}

				.divTable {
					display: table;
					width: 100%;
					border-collapse: collapse;
				}
				
				.divTableRow {
					display: table-row;
				}
				
				.divTableHeading {
					background-color: #EEE;
					display: table-header-group;
				}
				
				.divTableCell,
				.divTableHead {
					text-align: center;
					display: table-cell;
					padding: 10px 10px;
					vertical-align: top;
					border: solid 1px #fff;
					background-color: #f9faff;
				}
				
				.divTableHeading {
					background-color: #EEE;
					display: table-header-group;
					font-weight: bold;
				}
				
				.divTableFoot {
					background-color: #EEE;
					display: table-footer-group;
					font-weight: bold;
				}
				
				.divTableBody {
					display: table-row-group;
				}

.divTableCell input {
	width: 100% !important;
		
}

@media screen and (max-width: 480px) {
	
	.monthly-result {
		background-color: white;
	}
	
	.tel-email {
		margin-top: 20px;
	}
	
	.divTableCell {
		display: block !important;
		width: 100% !important;
	}
	.divTableRow {
		display: block !important;
		margin-bottom: 30px;
		-webkit-box-shadow: 0px 4px 2px -1px rgba(0,0,0,0.2); 
box-shadow: 0px 4px 2px -1px rgba(0,0,0,0.2);
	}
	
	.staffDateBtn {
		width: 100% !important;
		float: none !important;
	}
	.staffEditDiv {
		text-align: left !important;
	}
	.col {
		padding: 0 20px !important;
	}
	.btn {
		margin-bottom: 10px;
	}
	tr {
		margin-bottom: 0 !important;
	}
	th {
		margin-top: 20px !important;
		background-color: #e5e5e5 !important;
		text-align: center !important;
		color: black !important;
	}
	
	th:nth-child(even) {
    background-color: #ccc !important;
    }
	
	tr:nth-child(even) {
    background-color: #f3f3f3;
    }
	.btn {
		margin-bottom: 0 10px !important;
		
	}
	td {
		padding: 0 5px 5px !important;
	}

	#customerResult {
		    position: absolute;
    z-index: 99;
    margin-top: -110px;
		
		
}
	.customer_name {
	font-size: 1.4em;
	}

	
	.quickIcon {
		display: none !important
	}
	#new_apppointment_heading {
		font-size: 1em;
	}
}
	



@media all and (max-height: 710px) {
	
	.sidebar {
	position: absolute !important;
	}
}



.col {
	float: left;
	width: 100%;
	padding: 20px;
	box-sizing: border-box;
}
.cols {
	float: left;
	width: 100%;
	padding: 0px;
	box-sizing: border-box;
}
.row:before, .row:after, .group:before, .group.after {
	content: "";
	display: table;
	word-wrap: break-word;
}
.row:after, .group:after {
	clear: both;
	word-wrap: break-word;
}
.row, .group {
	zoom: 1;
	word-wrap: break-word;
}

.col-xs-11 {
	width: 91.662%;
}
.col-xs-10 {
	width: 83.332%;
}
.col-xs-9 {
	width: 75%;
}
.col-xs-8 {
	width: 66.662%;
}
.col-xs-7 {
	width: 58.331%;
}
.col-xs-6 {
	width: 50%;
}
.col-xs-5 {
	width: 41.662%;
}
.col-xs-4 {
	width: 33.332%;
}
.col-xs-3 {
	width: 25%;
}
.col-xs-2 {
	width: 16.662%;
}
.col-xs-1 {
	width: 8.332%;
}

/*only if the device width is atleast 768px or higher*/
@media screen and (min-width: 768px) {
.col-sm-11 {
	width: 91.662%;
}
.col-sm-10 {
	width: 83.332%;
}
.col-sm-9 {
	width: 75%;
}
.col-sm-8 {
	width: 66.662%;
}
.col-sm-7 {
	width: 58.331%;
}
.col-sm-6 {

	width: 50%;
}
.col-sm-5 {
	width: 41.662%;
}
.col-sm-4 {
	width: 33.332%;
}
.col-sm-3 {
	width: 25%;
}
.col-sm-2 {
	width: 16.662%;
}
.col-sm-1 {
	width: 8.332%;
}
}
 @media screen and (min-width: 1024px) {
.col-md-11 {
	width: 91.662%;
}
.col-md-10 {
	width: 83.332%;
}
.col-md-9 {
	width: 75%;
}
.col-md-8 {
	width: 66.662%;
}
.col-md-7 {
	width: 58.331%;
}
.col-md-6 {
	width: 50%;
}
.col-md-5 {
	width: 41.662%;
}
.col-md-4 {
	width: 33.332%;
}
.col-md-3 {
	width: 25%;
}
.col-md-2 {
	width: 16.662%;
}
.col-md-1 {
	width: 8.332%;
}
}
 @media screen and (min-width: 1024px) {
.col-lg-11 {
	width: 91.662%;
}
.col-lg-10 {
	width: 83.332%;
}
.col-lg-9 {
	width: 75%;
}
.col-lg-8 {
	width: 66.662%;
}
.col-lg-7 {
	width: 58.331%;
}
.col-lg-6 {
	width: 50%;
}
.col-lg-5 {
	width: 41.662%;
}
.col-lg-4 {
	width: 33.332%;
}
.col-lg-3 {
	width: 25%;
}
.col-lg-2 {
	width: 16.662%;
}
.col-lg-1 {
	width: 8.332%;
}
}