@import url('https://fonts.googleapis.com/css?family=Poppins:400,600');
* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}

body, html {
	height: 100%;
	font-family: 'Poppins', sans-serif;
}

/*---------------------------------------------*/
a {
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
	outline: none !important;
}

a:hover {
	text-decoration: none;
}

/*---------------------------------------------*/
h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}

p {
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
}

ul, li {
	margin: 0px;
	list-style-type: none;
}
/*---------------------------------------------*/
input {
	outline: none;
	border: none;
}

textarea {
  outline: none;
  border: none;
}

textarea:focus, input:focus {
 
}

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }

textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; }
textarea:focus::-moz-placeholder { color:transparent; }
textarea:focus:-ms-input-placeholder { color:transparent; }

input::-webkit-input-placeholder { color: #adadad;}
input:-moz-placeholder { color: #adadad;}
input::-moz-placeholder { color: #adadad;}
input:-ms-input-placeholder { color: #adadad;}

textarea::-webkit-input-placeholder { color: #adadad;}
textarea:-moz-placeholder { color: #adadad;}
textarea::-moz-placeholder { color: #adadad;}
textarea:-ms-input-placeholder { color: #adadad;}

/*---------------------------------------------*/
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}


/*---------------------------------------------*/
.container {
	max-width: 1200px;
}





/*//////////////////////////////////////////////////////////////////
[ Contact ]*/

.container-contact100 {
  width: 100%;  
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background: #a64bf4;
  background: -webkit-linear-gradient(45deg, #00dbde, #fc00ff);
  background: -o-linear-gradient(45deg, #00dbde, #fc00ff);
  background: -moz-linear-gradient(45deg, #00dbde, #fc00ff);
  background: linear-gradient(45deg, #00dbde, #fc00ff);
  
}

.wrap-contact100 {
  width: 600px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 42px 55px 45px 55px;
}


/*------------------------------------------------------------------
[ Form ]*/

.contact100-form {
  width: 100%;
}

.contact100-form-title {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 30px;
  color: #333333;
  line-height: 1.2;
  text-align: center;
  padding-bottom: 44px;
}



/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
  width: 100%;
  position: relative;
  border-bottom: 2px solid #d9d9d9;
  padding-bottom: 13px;
  margin-bottom: 0;
}

.label-input100 {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #666666;
  line-height: 1.5;
  padding-left: 5px;
}

.input100 {
  display: block;
  width: 100%;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #333333;
  line-height: 1.2;
  padding: 0 5px;
}

.focus-input100 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input100::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  background: #7f7f7f;
}


/*---------------------------------------------*/
input.input100 {
  height: 40px;
}
textarea.input100 {
  min-height: 110px;
  padding-top: 9px;
  padding-bottom: 13px;
}
.input100:focus + .focus-input100::before {
  width: 100%;
}

.has-val.input100 + .focus-input100::before {
  width: 100%;
}


/*------------------------------------------------------------------
[ Button ]*/
.container-contact100-form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 13px;
}

.wrap-contact100-form-btn {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 25px;
  overflow: hidden;
  margin: 0 auto;
}

.contact100-form-bgbtn {
  position: absolute;
  z-index: -1;
  width: 300%;
  height: 100%;
  background: #a64bf4;
  background: -webkit-linear-gradient(left, #00dbde, #fc00ff, #00dbde, #fc00ff);
  background: -o-linear-gradient(left, #00dbde, #fc00ff, #00dbde, #fc00ff);
  background: -moz-linear-gradient(left, #00dbde, #fc00ff, #00dbde, #fc00ff);
  background: linear-gradient(left, #00dbde, #fc00ff, #00dbde, #fc00ff);
  top: 0;
  left: -100%;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.contact100-form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
}

.wrap-contact100-form-btn:hover .contact100-form-bgbtn {
  left: 0;
}

.contact100-form-btn i {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.contact100-form-btn:hover i {
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -ms-transform: translateX(10px);
  -o-transform: translateX(10px);
  transform: translateX(10px);
}

.swpframe {width: 100%;height:600px;overflow: hidden;overflow-y: hidden;}

.divkeyin{display:none;width:100%;height:100%;top:0px;left:0px;background:url('/images/transpBlack50.png') repeat scroll 0 0 transparent;position:fixed;z-index:300;}
.popkeyin{width:470px;height:500px;border: 3px solid #639C54;z-index:250;top:50px;margin-left:25%;background:#fff;position:absolute;border:3px solid #333;border:4px solid #383838;border-radius:8px;-webkit-border-radius:8px;-moz-border-radius:8px;}
.popkeyin .hdr {width:100%;margin:0px;height:50px;text-align:center;font-size:16px;font-weight:bold;background-color:#dbdbdb;color:#333}
.popkeyin .hdr a{position:absolute;right:2px;top:0px}
.popkeyin .hdr span{padding-top: 17px;color: #333;font-size: 18px;display: inline-block;font-weight: 600;}
.popkeyin h2{line-height:30px;display:block;margin:10px;font-size:20px;font-weight:bold;margin-top:0px;}
.popkeyin h3{line-height:25px;display:block;margin:10px;text-align:center;font-size:18px;font-weight:bold}
.popkeyin .tab{width:100%;padding:1px;text-align:left;font-size:14px;font-weight:bold;color:#666;margin:10px;margin-bottom:0px;}
.popkeyin .swpfrm{margin:3px;overflow:hidden;overflow-x:hidden!important;overflow-y:auto;}
.popkeyin .new{margin-top:60px;text-align:center}
.popkeyin .new a{background-color:#F5C84C;color:#003366;-moz-border-radius:4px;border-radius:4px;padding:4px;height:25px;text-align:center;vertical-align:middle;cursor:pointer;font-weight:bold;border:2px solid #FC8E1D;font-size:14px;text-decoration:none;}
.popkeyin .new a:hover{background-color:#970303;color:#fff}
.popkeyin .btnx{margin-top:30px;text-align:center}
.popkeyin .btnx a{font-size:14px;font-weight:bold;cursor:pointer;display:inline;text-shadow: 0 1px 2px #000; background:#107ABF;color:#fff;padding:8px 30px 8px 30px;width:150px;border-radius:10px; -webkit-box-shadow:2px 3px 1px 0 #333; -moz-box-shadow:2px 3px 1px 0 #333; box-shadow:2px 3px 1px 0 #333;text-align:center;text-decoration:none;margin:0px 0px 20px}
.popkeyin .btnx a:hover{ color:#f1f1f1;-webkit-box-shadow:2px 3px 1px 0 #666; -moz-box-shadow:2px 3px 1px 0 #666; box-shadow:2px 3px 1px 0 #666;text-decoration:none}
.divkeyin .busy img{margin-top:100px;margin-left:48%}
.paywcc{max-height:200px;overflow-y:auto;overflow-x:hidden}
.paywcc span {display:block;line-height:40px;font-size:14px;border-bottom:1px dotted #666;width:96%;font-weight:bold;margin-left:20px;}
.batbusy{position:fixed;left:45%;top:30%;z-index:10;display:none}

.label-input100 b {color: red;font-weight: bold}

/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 576px) {
  .wrap-contact100 {
    padding: 72px 15px 65px 15px;
  }
}







/*//////////////////////////////////////////////////////////////////
[ Restyle Select2 ]*/

.select2-container {
  display: block;
  max-width: 100% !important;
  width: auto !important;
}

.select2-container .select2-selection--single {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  background-color: transparent;
  border: none;
  height: 40px;
  outline: none;
  position: relative;
}

/*------------------------------------------------------------------
[ in select ]*/
.select2-container .select2-selection--single .select2-selection__rendered {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #333333;
  line-height: 1.2;
  padding-left: 5px ;
  background-color: transparent;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.select2-selection__arrow b {
  display: none;
}

.select2-selection__arrow::before {
  content: '';
  display: block;
  
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-bottom: 5px solid #999999;
  margin-bottom: 2px;
}

.select2-selection__arrow::after {
  content: '';
  display: block;
  
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 5px solid #999999;
}

/*------------------------------------------------------------------
[ Dropdown option ]*/
.select2-container--open .select2-dropdown {
  z-index: 1251;
  border: 0px solid #e5e5e5;
  border-radius: 0px;
  background-color: white;

  box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
}

.select2-dropdown--above {top: -30px;}
.select2-dropdown--below {top: 8px;}

.select2-container .select2-results__option[aria-selected] {
  padding-top: 10px;
  padding-bottom: 10px;
}

.select2-container .select2-results__option[aria-selected="true"] {
  background: #a64bf4;
  background: -webkit-linear-gradient(right, #00dbde, #fc00ff);
  background: -o-linear-gradient(right, #00dbde, #fc00ff);
  background: -moz-linear-gradient(right, #00dbde, #fc00ff);
  background: linear-gradient(right, #00dbde, #fc00ff);
  color: white;
}

.select2-container .select2-results__option--highlighted[aria-selected] {
  background: #a64bf4;
  background: -webkit-linear-gradient(right, #00dbde, #fc00ff);
  background: -o-linear-gradient(right, #00dbde, #fc00ff);
  background: -moz-linear-gradient(right, #00dbde, #fc00ff);
  background: linear-gradient(right, #00dbde, #fc00ff);
  color: white;
}

.select2-results__options {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #333333;
  line-height: 1.2;
}

.select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: none;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #333333;
  line-height: 1.2;
}
.contact100-form-btn a span{ color:#fff;}

/*calender styles*/

.year-month-wrap
{
	position: absolute;
	background-color: #4F505B !important;
	width: 255px !important;
	margin-top: 0px;
}
.year-month-wrap span
{
	color: #fff;
}
.year-month-wrap .year-wrap .selectB
{
	
    width: 75px !important;
}
.year-month-wrap .month-wrap .selectB
{
	
	margin-left: 4px !important;
    width: 109px !important;
}

.year-month-wrap .year-wrap{
	width: 42% !important;
	display: inline-block;
}
.year-month-wrap .month-wrap
{
	width: 45% !important;
	display: inline-block;
	position: absolute;
right: 0;
}
.bcal-container
{
	    margin-top: 20px;
    z-index: 99;
}


.wrap-contact100-form-btn span a{
	display: inline-block;
width: 99%;
text-align: center;
padding: 10px;
color: #fff;
}

.container-contact100{background: #fff !important;}
.wrap-contact100{box-shadow: hsl(0deg 0% 75%) 0 0 16px !important;}
.contact100-form-bgbtn{background: #497be5 !important;}
.label-input100{color: #bbb7b7 !important;}

#lblformfields .wrap-input100{ border: none !important;}

table#bcal-table-5024822 {
  width: 100% !important;
}
.redborder{border:2px solid red}
