
/* ==========================================================================
   #FONT
   ========================================================================== */
.font-robo {
  font-family: "Roboto", "Arial", "Helvetica Neue", sans-serif;
}

/* ==========================================================================
   #GRID
   ========================================================================== */
.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.row-space {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.col-2 {
  width: -webkit-calc((100% - 60px) / 2);
  width: -moz-calc((100% - 60px) / 2);
  width: calc((100% - 60px) / 2);
}

@media (max-width: 767px) {
  .col-2 {
    width: 100%;
  }
}

/* ==========================================================================
   #BOX-SIZING
   ========================================================================== */
/**
 * More sensible default box-sizing:
 * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 */
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  padding: 0;
  margin: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

/* ==========================================================================
   #RESET
   ========================================================================== */
/**
 * A very simple reset that sits on top of Normalize.css.
 */
body,
h1, h2, h3, h4, h5, h6,
blockquote, p, pre,
dl, dd, ol, ul,
figure,
hr,
fieldset, legend {
  margin: 0;
  padding: 0;
}

/**
 * Remove trailing margins from nested lists.
 */
li > ol,
li > ul {
  margin-bottom: 0;
}

/**
 * Remove default table spacing.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * 1. Reset Chrome and Firefox behaviour which sets a `min-width: min-content;`
 *    on fieldsets.
 */
fieldset {
  min-width: 0;
  /* [1] */
  border: 0;
}

button {
  outline: none;
  background: none;
  border: none;
}

/* ==========================================================================
   #PAGE WRAPPER
   ========================================================================== */
.page-wrapper {
  min-height: 100vh;
}

body {
  font-family: "Roboto", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 15px;
}

h6 {
  font-size: 13px;
}

/* ==========================================================================
   #BACKGROUND
   ========================================================================== */
.bg-blue {
  background: url(../images/bg.jpg);
    background-attachment: scroll;
padding: 20px;
background-attachment: fixed;
}

/* ==========================================================================
   #SPACING
   ========================================================================== */
.p-t-100 {
  padding-top: 100px;
}

.p-t-20 {
  padding-top: 20px;
}

.p-b-100 {
  padding-bottom: 100px;
}

/* ==========================================================================
   #WRAPPER
   ========================================================================== */
.wrapper {
  margin: 0 auto;
}

.wrapper--w680 {
  max-width: 680px;
}

/* ==========================================================================
   #BUTTON
   ========================================================================== */
.btn {
  line-height: 40px;
  display: inline-block;
  padding: 0 25px;
  cursor: pointer;
  font-family: "Roboto", "Arial", "Helvetica Neue", sans-serif;
  color: #fff;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-size: 14px;
  font-weight: 700;
}

.btn--radius {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.btn--green {
  background: #57b846;
}

.btn--green:hover {
  background: #4dae3c;
}

/* ==========================================================================
   #DATE PICKER
   ========================================================================== */
td.active {
  background-color: #2c6ed5;
}

input[type="date" i] {
  padding: 14px;
}

.table-condensed td, .table-condensed th {
  font-size: 14px;
  font-family: "Roboto", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 400;
}

.daterangepicker td {
  width: 40px;
  height: 30px;
}

.daterangepicker {
  border: none;
  -webkit-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  display: none;
  border: 1px solid #e0e0e0;
  margin-top: 5px;
}

.daterangepicker::after, .daterangepicker::before {
  display: none;
}

.daterangepicker thead tr th {
  padding: 10px 0;
}

.daterangepicker .table-condensed th select {
  border: 1px solid #ccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 14px;
  padding: 5px;
  outline: none;
}

/* ==========================================================================
   #FORM
   ========================================================================== */
input {
  outline: none;
  margin: 0;
  border: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  width: 100%;
  font-size: 14px;
  font-family: inherit;
}

.input-group {
  position: relative;
  margin-bottom: 30px;
  border-bottom: 2px solid #ccc;
}

.input-icon {
  position: absolute;
  font-size: 18px;
  color: #ccc;
  right: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}

.input--style-1 {
  padding: 10px;
  color: #666;
}

.input--style-1::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #555;
}

.input--style-1:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #555;
  opacity: 1;
}

.input--style-1::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #555;
  opacity: 1;
}

.input--style-1:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #555;
}

.input--style-1:-ms-input-placeholder {
  /* Microsoft Edge */
  color: #555;
}

/* ==========================================================================
   #SELECT2
   ========================================================================== */
.select--no-search .select2-search {
  display: none !important;
}

.rs-select2 .select2-container {
  width: 100% !important;
  outline: none;
}
.find-table-select .select2-selection{ border:none !important; margin-bottom:0 !important;}
.rs-select2 .select2-container .select2-selection--single {
  outline: none;

border: none;

height: 40px;

border: 1px solid #f5f5f5;

border-radius: 0;

margin-bottom: 10px;

}

.rs-select2 .select2-container .select2-selection--single .select2-selection__rendered {
line-height: 34px;
padding-left: 0;
color: #555;
font-size: 15px;
padding: 0 10px;
text-align:left
}
.rs-select2 .select2-container .select2-selection--single .select2-selection__arrow {
height: 32px;
right: 4px;
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-webkit-justify-content: center;
-moz-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-webkit-align-items: center;
-moz-box-align: center;
-ms-flex-align: center;
align-items: center;
text-align: center;
}
#select2-DDState-container{text-align:left}

.rs-select2 .select2-container .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.rs-select2 .select2-container .select2-selection--single .select2-selection__arrow:after {
  font-family: "Material-Design-Iconic-Font";
  content: '\f2f9';
  font-size: 18px;
  color: #ccc;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.rs-select2 .select2-container.select2-container--open .select2-selection--single .select2-selection__arrow::after {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.select2-container--open .select2-dropdown--below {
  border: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  border: 1px solid #e0e0e0;
  margin-top: 5px;
  overflow: hidden;
}

/* ==========================================================================
   #TITLE
   ========================================================================== */
.title {
  margin-bottom: 37px;
}

/* ==========================================================================
   #CARD
   ========================================================================== */
.card {
  overflow: hidden;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: #fff;
}

.card-1 {
  -webkit-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
}

.card-1 .card-heading {
  background: url("../images/bg-head-02.jpg") center center/cover no-repeat;
  padding-top: 210px;
}

.card-1 .card-body {
  padding: 0 90px;
  padding-top: 55px;
  padding-bottom: 65px;
}

@media (max-width: 600px) {
  #divmaintbl .tab-wrapper {
    max-width: 100% !important; background: #fff; padding: 10px;
}
#divmaintbl .container{ padding-left: 5px; padding-right: 5px;}
#divmaintbl .tabs .tab-content{ top: 70px;}
.tabs label.tablabel{ height: auto;}
}

@media (max-width: 767px) {
  .card-1 .card-body {
    padding: 0 15px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

}
.input-group{width: 100%;}
.btn--bg{
	box-shadow: 0 8px 15px -6px rgba(0, 0, 0, 0.54);
-moz-box-shadow: 0 8px 15px -6px rgba(0, 0, 0, 0.54);
-webkit-box-shadow: 0 8px 15px -6px rgba(0, 0, 0, 0.54);
display: inline-block;
background: #f43067;
border-radius: 20px;
width: 100%;}
button.waves-effect{
	box-shadow: 0 8px 15px -6px rgba(0, 0, 0, 0.54);
-moz-box-shadow: 0 8px 15px -6px rgba(0, 0, 0, 0.54);
-webkit-box-shadow: 0 8px 15px -6px rgba(0, 0, 0, 0.54);
display: inline-block;
background: #28964f;
border-radius: 0;
width: 100%;}
.modal-edit{
	position: absolute;
    display: block;
    right: 15px;
    top: 16px;
}
.container.z-depth-2
{
	margin-top: 80px;
	width: 100%;
	height: 700px;
	margin: 0;
	padding: 0;
}

.tabs .indicator
{
	background-color: #e0f2f1;
	height: 60px;
	opacity: 0;
}
.tab-wrapper {
    --scrollbarBG: #CFD8DC;
    --thumbBG: #28964f !important;
}
.form-container
{
	padding: 15px;
	padding-top: 15px;
}

.confirmation-tabs-btn
{
	position: absolute;
}
.tabs .indicator {
    
}
.header{background: #f5f5f5;position: relative;}
.contact-details{padding: 0;
border: 2px solid #f5f5f5;}
.contact-details i{
	color: #28964f;
font-size: 20px;
width: 25px;
height: 20px;
text-align: center;
display: inline-block;
float: left;
margin-bottom: 10px;
margin-right: 0;} 
.contact-details p{} 
.m0{ margin:0 !important;}
.mt-10{ margin-top:10px;}
.mt-30{ margin-top:30px;}
.mb-0{ margin-bottom:0}
.contact-details .row{margin: 0;}
.details-head h1{font-size: 20px;
margin: 0 0 10px;}
.teal-text{
	font-size: 22px;
margin: 20px 0 10px;}
.form-container input{border: 1px solid #f5f5f5;
height: 40px;
padding: 10px;
margin-bottom: 10px;}
a{ outline:none !important}
.form-container .select2-selection__rendered{font-weight: bold;color: #9e9e9e !important;}

/*
==============================================================================================================================
								name search checkbox
==============================================================================================================================
*/

#lbltablelstevnt .tablist{max-height:300px;min-height:200px;top:310px !important;border-bottom:2px solid #666;overflow: auto;}
#lbltablelstevnt .btnSelect {background:url("../images/btn/btnSelect.gif") no-repeat scroll left top transparent;color:#2175A6;font-weight:bold;padding:7px 0px 10px 30px;text-decoration:none;height:25px;vertical-align:middle;}
/*typeahead*/
.cstsrch{width:550px;margin:250px 0px 30px 1%;max-height:350px;overflow-x:hidden;overflow-y:scroll;display:none}
.cstsrch p{color:#666!important;font-size:13px!important;line-height:18px;text-align:justify;font-weight:normal!important;}
.cstsrch .srchbar{margin:10px;} 
.cstsrch .srchbar span{display:inline-block;}
.cstsrch .tablist{max-height:300px;min-height:200px;border-bottom:2px solid #666;overflow: auto;}
.cstsrch table tr:nth-child(even){background-color:#F6F9FB}
.cstsrch td{line-height:25px!important;height:45px!important;padding:3px 0px 3px 0px!important;}
.cstsrch td a{display:inline}
.cstsrch th{font-weight:bold}
.cstsrch tr:hover td {background:#D7EBF8}
.cstsrch .btnbar{text-align:right}
.cstsrch .btnbar span{display:inline-block;margin:10px}
.cstsrch p{color:#000;display:block;line-height:18px;}
#lblaxsrchrslt table{}
#lblaxsrchrslt table th{padding: 8px;}
#lblaxsrchrslt table td{padding: 8px;border-bottom: 1px solid #e4e4e4;}
#lblaxsrchrslt table td a.btnSelect{
		background: url("../images/btnselect.png") no-repeat scroll left top transparent;
padding: 5px 0px 10px 40px !important;
height: 30px;
vertical-align: middle;
display: inline-block;
	}
#lblaxsrchrslt table td a.btnSelect:hover{
background: url("../images/btnselect-hover.png") no-repeat scroll left top transparent;
padding: 5px 0px 10px 40px !important;
height: 30px;
vertical-align: middle;
display: inline-block;
	}
	
#divaxsrchrslt .tablist{max-height:300px;min-height:200px;border-bottom:2px solid #666;overflow: auto;}
#divaxsrchrslt .btnSelect {background:url("../images/btnselect.png") no-repeat scroll left top transparent;color:#2175A6;font-weight:bold;padding:7px 0px 10px 30px;text-decoration:none;height:25px;vertical-align:middle;}
.search-reasult table{
	background: #f2f2f2;
margin-top: 0px !important;
top:-68px !important;
border: 1px solid #ccc;} 
.custinfo .modal-dialog{
	width: 100%;
margin: 0;
display: initial;}
.custinfo{
width: 100%;
height: 100%;
margin: 0;
    margin-top: 0px;
top: 0;

max-height: 100%;
}
.custinfo .modal .modal-content{padding: 0;}
.custinfo .modal-body{padding: 0;}
button.close{
	background: #f43067;
padding: 5px 10px;
color: #fff;
opacity: 1;
}
.confirmation-box h4{font-size: 24px;
color: #8a8a8a;
text-transform: uppercase;
margin-bottom: 10px;}
.confirmation-box{
	text-align: center;
display: inline-block;
width: 100%;
background: #fff;
padding: 40px;
}
.confirmation-box p{text-align: center;
font-size: 20px;}

#confirmation{
	height: 390px;
overflow: hidden;
}
.input-group .dtpkr{border: 1px solid #e6e6e6 !important;}
.modal-backdrop.in{position: relative !important;}
.find-table .input-group{border: 1px solid #ccc;}
.find-table .col-xs-4 .input-group{border: 1px solid #ccc;margin-bottom: 0;}
.p-0{ padding:0 !important}
.find-table .row-space{margin: 0;}
.find-table .btn--bg{
	background: #32914b;
border-radius: 0;
margin-bottom: 40px;}
.find-table .btn--bg:hover{background: #edd625;color:#000 !important}
.find-table button.btn--bg:focus{ color:#fff !important}
.state-select .select2-selection__rendered {font-weight: normal;
font-size: 14px;
text-align: left;
padding: 0 10px !important;}
.your-details label{font-size: 14px;font-weight: normal;}

.input-field label.active {
	font-size: 0.8rem;
	-webkit-transform: translateY(-140%);
	transform: translateY(-140%)
}

.contact-details{padding: 0;}
.details-header{background: #f5f5f5;padding: 25px 0;}
.details-header ul{padding-left: 0;}
.details-header ul li{list-style: none;text-align: left;font-size: 14px;border-bottom: 1px solid #e8e8e8;padding: 10px 5px;display:inline-block}
.zeroborder{ border:0;}
.form-container .input-field{ width:100%}
.details-header ul li span{}
.details-header ul li span i{}
.form-group{ text-align:left !important}
.select2-container{ padding:0 !important}
.findTablesubhead{text-align: center;
    margin-bottom: 25px;
    font-size: 22px;}
#lblhour table{width: 100%;}
.find-table table td .btn--bg{margin-bottom: 15px !important;}

#divconfirm{max-width: 500px;
    margin: 0 auto;
    /* background-color: rgba(255, 255, 255, 0.8); */
    padding: 30px 10px;}
#divconfirm h1{font-size: 30px;
    margin-top: 20px;}
.resrswpfrm{}
.resrswpfrm iframe{border: 0;padding: 20px 0;min-height: 370px;}
.resrswpfrm main fieldset legend{border: 0;}
.resrswpfrm iframe  input{}
legend{}
.cancelBtn{background: #c1c0c0;
    color: #000;
    padding: 10px 20px;}



.contact-details{padding: 0;}
.details-header{background: #f5f5f5;padding: 25px 10px 0 10px;}
.details-header ul{}
.details-header ul li{list-style: none;text-align: left;font-size: 14px;padding: 10px 0;display:inline-block}
.zeroborder{ border:0;}
.form-container .input-field{ width:100%}
.details-header ul li span{}
.details-header ul li span i{}
.form-group{ text-align:left !important}
.select2-container{ padding:0 !important}
.main .wrapper .container{margin: 0 auto;}
.your-details label p{display:inline;font-weight:bold;color:red;width:auto;padding-right:5px}


.bcal-container{width: 270px !important;top: 0 !important;}
.form-container .select2-selection__rendered{color: #666 !important;}
.state-select{text-align: left !important;}


.tab-wrapper {--scrollbarBG: #CFD8DC;--thumbBG: #da3743;}
.tab-wrapper::-webkit-scrollbar {width: 11px;}
.tab-wrapper {scrollbar-width: thin;scrollbar-color: var(--thumbBG) var(--scrollbarBG);}
.tab-wrapper::-webkit-scrollbar-track {background: var(--scrollbarBG);}
.tab-wrapper::-webkit-scrollbar-thumb {background-color: var(--thumbBG) ;border-radius: 6px;border: 3px solid var(--scrollbarBG);}

html {background: lightgrey;overflow: hidden;}
.tab-wrapper {height: 400px;background: whitesmoke;overflow-y: auto;max-width: 380px;margin: 0 auto;padding: 2rem;border: 1px solid rgba(0, 0, 0, 0.25);overflow-x: hidden;}
.find-table{padding: 15px;}






