
/* PROMOTIONS */
div.blockInfo {
  padding: 15px 20px;
  position: relative;
}
.blockInfo section:before, .blockInfo section:after {
    position: absolute;
    width: 18px;
    height: 18px;
}
.blockInfo section:before{
    left: 0;
    top: 0;
    border-left: 3px solid #ff6600;
    border-top: 3px solid #ff6600;
}
.blockInfo section:after{
    right: 0;
    bottom: 0;
    border-right: 3px solid #ff6600;
    border-bottom: 3px solid #ff6600;
}
.blockInfo section:before, .blockInfo section:after {
    content: "";
}
div.blockInfo form {
  margin-top: 15px;
  position: relative;
  overflow: hidden;  
}
div.blockInfo form .btn {
  margin-top: 15px;
  position: relative;
  overflow: hidden;  
  background-color: #F1592A;
  border: 1px solid #F1592A;
  color: #fff;
  padding: 12px 35px 10px;
  text-transform: none;
}
div.blockInfo form .btn:hover {
  background-color: #fff;
  border: 1px solid #eaeaea;
  color: #F1592A;
}
div.blockInfo form .btn.disabled {
  background-color: #fff;
  border: 1px solid #eaeaea;
  color: #F1592A;
}
div.blockInfo form .btn-gen {
  margin-left: 10px;
}
div.blockInfo form .btn.ocultar {
  display: none;
}
.footer-form {
  text-align: right;
}
.footer-form .btn {
    background-color: #F1592A;
    border: 1px solid #F1592A;
    color: #fff;
}
.footer-form .btn:hover {
    background-color: #fff;
    border: 1px solid #eaeaea;
    color: #F1592A;
}
/* TESTIMONIALS */
.page-id-36 .owl-carousel .uvc-main-heading h2,
.page-id-36 .owl-carousel .uvc-main-heading h2,
.page-id-36 .owl-carousel .uvc-main-heading h2 {
  font-size: 18px;
  line-height: normal;
  font-weight: normal;
}
.page-id-36 .owl-carousel .uvc-sub-heading,
.page-id-36 .owl-carousel .uvc-sub-heading,
.page-id-36 .owl-carousel .uvc-sub-heading {
  font-size: 14px;
  line-height: normal;
  font-weight: normal;
  color: #F1592A;
  margin-top: 20px;
}
.page-id-36 .owl-nav div {
    color: #f1592a;
    border: 2px solid #f1592a;
}
.page-id-36 .owl-carousel .owl-controls .owl-dots {
  display: none !important;
}
/* CONTACT US */
#commentsCNTCT{
  height: auto !important;
}
.Cntct .btn {
    margin-top: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: left;
    color: #ffffff;
  background-color: #F1592A;
  width: 100%;
}
.Cntct .btn .fas {
    position: relative;
    float: right;
    margin-top: 8px;
}
.form-group, .input-group {
    margin-bottom: 15px !important;
}
.input-group-addon {
    border: none;
    padding: 0;
}
.form-control, .input-group-addon input {
    height: 38px !important;
    line-height: normal !important;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.input-group-addon input {
    padding: 6px 12px;
    font-size: 14px;
    /*background-color: #fff;*/
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 60px;
    text-align: center;
}
/* MODAL */
.modal-body.error {
    background-color: rgba(255,0,18,0.7);
    color: #fff;
}
.modal-body.success {
    background-color: rgba(40,167,69,0.7);
    color: #fff;
}
.modal-footer {
    margin-top: 0;
}
.modal-footer .btn {
    background-color: #F1592A;
    border: 1px solid #F1592A;
    color: #fff;
}
.modal-footer .btn:hover {
    background-color: #fff;
    border: 1px solid #eaeaea;
    color: #F1592A;
}
/* PRELOADER CSS */
#overlay-ring {
  display: none;
}
.loading #overlay-ring {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  display: block;
}
.ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%); 
  width: 150px;
  height: 150px;
  background: transparent;
  border: 3px solid #ffffff;
  border-radius: 50%;
  text-align: center;
  line-height: 150px;
  font-size: 20px;
  color: #ffffff;
  letter-spacing:4px;
  text-transform: uppercase;
  text-shadow:0 0 10px #f1592a;
  box-shadow: 0 0 20px rgba(0,0,0,.5);
}
.ring:before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top: 3px solid #f1592a;
  border-right: 3px solid #f1592a;
  border-radius: 50%;
  animation: animateCircle 2s linear infinite;
}
.ring span {
  display: block;
  position: absolute;
  top: calc(50% - 2px);
  left: 50%;
  width: 50%;
  height: 4px;
  background: transparent;
  transform-origin:left;
  animation: animate 2s linear infinite;
}
.ring span:before {
  content:'';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #f1592a;
  top: -6px;
  right: -8px;
  box-shadow: 0 0 20px #f1592a;
}
/*
@keyframes animateCircle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate {
  0% {
    transform: rotate(45deg);
  }
  100% {
    transform: rotate(405deg);
  }
}
@media (max-width: 767px) {
  #new-sale .tab-pane .form-group label br {
    display: none;
  }*/
}



/* FORM REGISTER */
.form-title{
    color:#F1592A !important;
}
.form-subtitle{
    color:gray !important;
}
.form-register ::placeholder {
  /*color: #F1592A;*/
  font-size: 1.2em;
  font-style: italic;
}
.input_line {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px  solid #F1592A !important;
    color:#F1592A;
}

#privacy-notice, a{
    font-size:15px !important;
    color:gray;
}

#btn-register{
    /*color:green;
    margin-top: 15px;
    position: relative;*/
    overflow: hidden;
    background-color: #6dab3c;
    color: #fff;
    font-size: 1.3em;
    /*padding: 12px  35px  10px;
    text-transform: none;*/
}

.ult_modal{
    top: 30% !important;
} 
.ult_modal-body, .ult_modal-content, .ultimate_modal, .modal{
    margin:0px; 
    padding:0px;
}
.btn-modal{
	font-size: 20px;
    font-family: Gill Sans, Gill Sans MT, Calibri, sans-serif; 
    letter-spacing: 0.6px;
    line-height: 1.2;
     color: #707070;
}

.form-register .ui-error{
	border: 1px solid red !important;				
}

.ui-error{
	border: 1px solid red !important;				
}


.cbox-error{
	border: 3px solid #900;
}


