#background{
  width:100%;
  height:100%;
  position:fixed;
  top:0px;
  left:0px;
  z-index:0;
  background:url(../img/backgrounds/background.jpg) no-repeat center center;
  background-size: cover;
   -webkit-background-size: cover;
   -moz-background-size: cover;
   -o-background-size: cover;
}

.section-description{
  margin-top:20px !important;
}

.carInfo h4{
  text-transform: capitalize;
}

#vinData tr td{
  text-align:left;
  text-indent: 5px;
}

.history .form-group{
  color:#F7F7F7;
  display: block;
  margin-bottom:15px;
}

.price{
  font-weight: bold;
  font-size:26px;
  margin-bottom:12px;
  line-height:34px;
}

.price .numbers{
  font-size:32px;
  display: inline-block;
  color:#3AA9AD;
  font-weight: bold;

}

.history-lead{
  color:#F7F7F7;
  font-size:18px;
  margin-top:10px !important;
}

.history-lead a {
  text-decoration: underline;
}

.history .form-group.cbplace{
  margin-bottom:10px;
}

.top-menu{
  padding:0px;
  width:322px;
  margin:0 auto;
  margin-top:30px;
  display:inline-block;
  z-index:99;
  position: relative;
}

.top-menu li{
  width:160px;
  padding:0px;
  margin:0px;
  list-style:none;
  float:left;
}

.top-menu a{
  display:block;
  font-size:24px;
  color:white;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.top-menu a.active{
  background:#35969a;
}


.faq{
  width:365px;
  margin:25px auto;
  margin-top: 45px;
  text-align: left;
  display: block;
}

.faq h3{
  border-bottom:1px solid white;
  text-indent:5px;
  padding-bottom: 5px;
  margin-bottom: 15px;
  display:block;
  text-align: center;
  font-size:24px;
}

.faq .faq-c{
  margin-top:5px;
  display: inline-block;
}

.faq .faq-c h4{
  color: #3aa9ad;
  margin-bottom:5px;
}

.faq .faq-c p{
  text-align: left;
  padding:5px 0px;
  margin-top:10px;
  font-size:16px;
  line-height:20px;
  margin-top:0px;
  color:#f7f7f7;
}

.faq .faq-c ul{
    padding-left: 15px;
    font-size:16px;
}

.cbplace a , .cbplace span{
  color:#f7f7f7;
  line-height: 30px;
  margin-left:8px;
  font-size:14px;
}

.cbplace span{
  width:140px;
  display:inline-block;
}

.cbplace [type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
.cbplace [type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
}


.cbplace [type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left:0; top: 2px;
  width: 26px; height: 26px;
  border: 1px solid #89918F;
  border-radius: 2px;
}
/* checked mark aspect */
.cbplace [type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
  content: "✔\fe0e";
  position: absolute;
  top: 7px; left: 5px;
  font-size: 20px;
  line-height: 0.8;
  color: white;
  transition: all .2s;
}
/* checked mark aspect changes */
.cbplace [type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.cbplace [type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}


#payment-mask{
  position:fixed;
  left:0px;
  top:0px;
  z-index:900;
  background:white;
  width:100%;
  height:100%;
  display:none;
  opacity:0.1;
  -webkit-transition: all 600ms cubic-bezier(0.645, 0.045, 0.355, 1);
   transition:         all 600ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

#braintree-payment{
  z-index:999;
  padding:16px;
  background:white;
  display:block;
  position:absolute;
  top:-1000px;
  left:0px;
}

#braintree-payment #payment-form{
  margin-top:20px;
  margin-bottom:15px;
}

#braintree-payment #submit-cc{
  background:#009cde;
  color:white;
  font-size:16px;
  font-weight:bold;
}

#braintree-payment #submit-cc:hover {
    background-color: #008ac5;
}

#braintree-payment .select-payment{
  display:block;
  color:#3e3c42;
}

.btn-default {
    background-color: #fff;
    border-color: #ccc;
    color: #333;
}

.option-table td{
  text-transform: capitalize;
}


.global-loader{
  position:fixed;
  width:100%;
  height:100%;
  display:none;
  z-index:9999;
  top:0px;
}

.global-loader .loader-bg{
  background:black;
  opacity: 0.6;
  width:100%;
  height:100%;
  position:absolute;
  display:block;
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 12em;
  height: 12em;
}

.loader {
  margin: 0px auto;
  top: 30%;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.2em solid rgba(255, 255, 255, 0.2);
  border-right: 1.2em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.2em solid rgba(255, 255, 255, 0.2);
  border-left: 1.2em solid #ffffff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
  background:none;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.discount-block{
  width: 364px;
  margin:0px auto;
  position:relative;
  -o-transition: all .3s;
  -moz-transition: all .3s;
  -webkit-transition: all .3s;
  -ms-transition: all .3s;
  transition: all .3s;
  overflow: hidden;
}

input.discount{
    padding:0px;
    text-indent: 10px;
    width: 70% !important;
    height: 52px;
    float:left;
    display: inline-block;
    -webkit-border-top-right-radius: 0px;
    -webkit-border-bottom-right-radius: 0px;
    -moz-border-radius-topright: 0px;
    -moz-border-radius-bottomright: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-right:0px;
}

input.discount:focus{
  border-right:none;
}

.discount-button{
  width:30% !important;
  line-height:50px;
  float:left;
  color:white;
  background: #35969a;
  cursor:pointer;
  -webkit-border-top-right-radius: 6px;
  -webkit-border-bottom-right-radius: 6px;
  -moz-border-radius-topright: 6px;
  -moz-border-radius-bottomright: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border:1px solid white;
  border-left:0px;
}

.discount-button:hover{
  background:#35969a;
}

.footer-copyright{
  font-size:10px;
  text-align: center;
  line-height:16px;
}

.domain-change{
  position:fixed;
  z-index:999999;
  text-align:center;
  width:100%;
  line-height:40px;
  background:black;
  top:0px;
}

.domain-change strong{
  color:#35969a;
}

.carInfo{
  padding-top:40px;
}
