@charset "utf-8";
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { *zoom: 1; /*For IE 6&7 only*/ }

html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #757575; opacity: 1; /* Firefox */
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #757575;
}
::-ms-input-placeholder { /* Microsoft Edge */
    color: #757575;
}
body {
	margin: 0;
	padding: 0;
	background: #F1F1F1;
}
@media (max-width: 1000px) {
	body {
    background-size: contain;
	}
}
img {
	vertical-align: middle;
	max-width: 100%;
}
#container {
	max-width: 1000px;
	margin: auto;
	overflow: hidden;
	position: relative;
}

@media (min-width: 768px) {
	.container {
    max-width: 100%;
	}
}
@media (min-width: 640px) {
	.container {
    max-width: 100%;
	}
}


/* ## form ## */
.form {
	background: rgba(255, 255, 255, .5);
	padding: 5px 15px;
	z-index: 1;
	bottom: 5px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 440px;
	border-radius: 10px;
	font-family: "Open Sans", sans-serif;
	font-weight: 600;
	color: #030303;
	font-size: 12px;
}
@media (min-width: 768px) {
  .form {
    bottom: 10px;
    left: 30%;
  }
}
.form>.title {
	font-size: 16px;
  font-weight: 700;
	color: #0d4e96;
	letter-spacing: -0.5px;
}
.form>p {
	font-size: 13px;
	margin: 4px 0;
}
form input.form-control {
	border: none;
	border-bottom: 1px solid #040404;
	box-shadow: none;
	border-radius: 0;
	background: none;
	width: 100%;
	margin: 4px 0;
	padding: 0px;
}
form .name1, form .state1, form .country1, form .code1,
form input.form-control {
	display: inline-block;
}
/* ## name, company ## */
form .name1 {
	width: 14%;
}
form .form-control.name2 {
	width: 85%;
}
/* ## state ## */
form .state1 {
	width: 10%;
}
form .form-control.state {
	border: none;
	border-bottom: 1px solid #040404;
	box-shadow: none;
	border-radius: 0;
	background: none;
	width: 10%;
	margin: 0;
	color: #030303;
}
/* ## country ## */
form .country1 {
	width: 12%;
}
form input.form-control.country {
	width: 23%;
}
/* ## code ## */
form .code1 {
	width: 18%;
}
.form input#code {
	width: 23%;
	float: right;
}
.form .left {
	width: 67%;
	float: left;
}
.form .right {
	width: 29%;
	float: right;
}
.form .right img {
  height: 24px;
  margin-left: 16px;
}
/* ## email ## */
form .email1 {
	width: 15%;
	display: inline-block;
}
input.form-control.email {
	border: none;
	border-bottom: 1px solid #040404;
	box-shadow: none;
	border-radius: 0;
	background: none;
	width: 83%;
	padding: 1px 0px;
	margin: 4px 0;
}
/* ## phone ## */
form .phonenum1 {
	width: 15%;
	display: inline-block;
}
input.form-control.phonenum {
	border: none;
	border-bottom: 1px solid #040404;
	box-shadow: none;
	border-radius: 0;
	background: none;
	width: 83%;
	padding: 1px 0px;
	margin: 4px 0;
}
/* ## btn ## */
form input.btn[type="submit"] {
	background: url(../images/CNCSLANTBED/btn.jpg);
  background-size: 100%;
	width: 105px;
	height: 37px;
	color: rgba(255, 255, 255, 0);
	border: 0;
	margin-top: 5px;
	cursor: pointer;
	float: right
}
form input.btn[type="submit"]:focus {
	outline: none
}
input:-internal-autofill-previewed,
input:-internal-autofill-selected {
	transition: background-color 5000s ease-out 0.5s;
	-webkit-text-fill-color: #030303;
}
