:root {
    /*--c-primary: #63ae6f; */
    --c-primary: #01b06d;/*Verde*/
    --c-secondary: #007388; /* Azul */
    --c-terciary: #00a16c; /* Gris de fondo principal */
    --c-hover: #222;

    --r-facebook: #3C5A99;
    --r-twitter: #00A9FF;
    --r-homea: #F7941E;
    --r-houzz: #77BC42;
    --r-yelp: #D32323;
    --r-google: #DD4B39;
}
*{
  box-sizing:border-box; 
  -moz-box-sizing:border-box; /* Firefox */
  -webkit-box-sizing:border-box; /* Safari */ 
}
html{
  font-size: 20px;
}
body{
  font-family: 'Cera Pro', sans-serif;
  font-weight: 300;
  background-color: #fff;
  color: #000;
}
a{
  color: var(--c-primary);
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
a:hover{
  color: var(--c-hover);
}
img{
  max-width: 100%;
}
h1{
  font-weight: 900;
}

/* utils */
@media screen and (min-width: 900px) {
  .show-mobile{
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .hide-mobile{
    display: none;
  }
}


/* Container */
.container {
  width: 100%;
  max-width: 1230px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  box-sizing:border-box; 
  -moz-box-sizing:border-box; /* Firefox */
  -webkit-box-sizing:border-box; /* Safari */ 
}

.container-fluid {
    width: calc(100% - 30px);
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

/* Inputs */
input[type="text"],
input[type="number"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="search"],
select,
textarea{
  display: inline-block;
  width: 100%;
  border: 1px solid #ebebeb;
  background-color: #fff;
  padding: 0 10px;
  margin-bottom: 0px;
  font-size: 0.65rem;
  height: 34px;
  outline: none;
  box-sizing:border-box; 
  -moz-box-sizing:border-box; /* Firefox */
  -webkit-box-sizing:border-box; /* Safari */ 
}
input[type="text"]::placeholder,
input[type="number"]::placeholder,
input[type="tel"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder,
input[type="search"]::placeholder,
select::placeholder,
textarea::placeholder{
  opacity: 0.8;
  color: #666666;
}
input[type="number"],
input[type="tel"]{
  -webkit-appearance: none;
  -moz-appearance: textfield;
}
button,
input[type="submit"]{
  cursor: pointer;
}
a,
button,
input[type="button"],
input[type="submit"]{
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

input[type="submit"]:hover{
  background-color: var(--c-hover);
  color: white;
}
select {
    vertical-align: middle;
    /*background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px;*/
    background: url('../img/icons/select-arrow.svg');
    background-repeat: no-repeat;
    background-position: calc(100% + -10px) center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
}


.btn{
  display: inline-block;
  font-size: 0.75rem;
  padding: 16px 34px;
  font-weight: 700;
  display: inline-block;
  border: 0;
  background-color: #c8c8c8;
  color: #fff;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
}
.btn:hover{
  background-color: var(--c-hover);
  border-color: var(--c-hover);
  color: white;
}
.btn-primary{
  background-color: var(--c-primary);
  color: white;
}
.btn-secondary{
  background-color: var(--c-secondary);
  color: white;
}
.btn-terciary{
  background-color: var(--c-terciary);
  color: white;
}
.btn-primary-border{
  background-color: transparent;
  border: 2px solid var(--c-primary);
  color: var(--c-primary);
}
.btn-secondary-border{
  background-color: transparent;
  border: 2px solid var(--c-secondary);
  color: var(--c-secondary);
}
.btn-terciary-border{
  background-color: transparent;
  border: 2px solid var(--c-terciary);
  color: var(--c-terciary);
}


.flex{
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flex;
  display: -o-inline-flex;
  display: inline-flex;
  width: 100%;
}
.flex.vcenter{
  align-items: center;
}
.flex > *{
  padding: 10px;
  width: 100%;
  display: inline-block;
  position: relative;
}
.flex img{
  max-width: 100%;
}
.flex > .auto{
  width: auto;
}
@media (max-width:768px){
    .flex{
      display: block;
    }
}
/*Tablet*/
@media screen and (min-width:768px) and (max-width:1250px){
  .flex > *{
    width: calc(50% + -25px);
    display: inline-block;
    vertical-align: middle;
  }
}
.flex > input,
.flex > select{
  margin-right: 10px;
}
.flex > input:last-child,
.flex > select:last-child
{
  margin-right: 0px;
}

.table{
  display: table;
  width: 100%;
  height: 100%;
}
.table-cell{
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}

.text-center{
  text-align: center;
}
.text-right{
  text-align: right;
}
.c-primary{
  color: var(--c-primary);
}
.c-secondary{
  color: var(--c-secondary);
}

.modal{
  display: none;
}



.title{
  font-size: 2.25rem;
  font-weight: 900;
  color: #484848;
  margin-top: 0;
  margin-bottom: 20px;
  display: block;
}
.subtitle{
  font-weight: 700;
  color: var(--c-secondary);
  font-size: 1rem;
  margin-bottom: 25px;
}
@media screen and (max-width:766px){
  .title{
    font-size: 1.5rem;
  }
  .subtitle{
    font-size: 0.8rem;
  }
}


.triangulo_der {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-left: 15px solid #fff;
  border-bottom: 15px solid transparent;
  display: inline-block;
  margin-left: 5px;
}


.select-selected{
  padding: 6px 0 !important;
  color: #666 !important;
  font-size: 0.8rem;
  font-weight: 400 !important;

  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.select-items{
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);

  -webkit-border-radius: 0px 0px 8px 8px;
  border-radius: 0px 0px 8px 8px;
  overflow: hidden;
}
.select-items div{
  position: relative;
  font-size: 0.6rem;
  color: var(--c-secondary) !important;
  font-weight: 700;
  border-bottom: 0 !important;
  padding: 12px 16px !important;
  
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.select-items div:after{
  content: "";
  display: block;
  position: absolute;
  width: calc(100% + -30px);
  border-bottom: 1px solid #b4b4b4;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.select-items div:last-child:after{
  display: none;
}
.select-items div:hover, 
.same-as-selected{
  background-color: #f4f4f4 !important;
}
.select-selected:after{
  top: 15px !important;
}

.remaining{
  font-size: 0.6rem;
  color: #a0a0a0;
  position: absolute;
  right: 12px;
  /*bottom: 15px;*/
  top: 40px;
}
.flex > * .remaining{
  /*bottom: 24px;*/
}

.on-sesion{
  display: none;
}
/*Mobile*/
@media screen and (max-width:900px){
  .on-sesion img{
    vertical-align: text-bottom;
    margin-right: 10px;
    margin-left: 10px;
    transform: translateY(5px);
    margin-left: 0px;
    object-fit: cover;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    overflow:  hidden;
  }
}

@media screen and (max-width: 845px) {
  section.pie-guia .items-pie-guia {
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
  }
  section.pie-guia .items-pie-guia .item {
    width: 100%;
  }
}



/* Form Login in all website */
.form-login input:not([type="submit"]),
.form-login textarea{
  margin-bottom: 20px !important;
  background-color: #ebebeb;
  border: 1px solid #d9d9d9 !important;
  
  font-size: 0.8rem;
  -webkit-border-radius: 3px !important;
  border-radius: 3px !important;
  padding-top: 10px;
  padding-bottom: 12px;
  padding-left: 10px !important;
  padding-right: 10px !important;
  height: auto;

  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;

  -webkit-box-shadow: 3px 4px 5px 0 rgba(150,150,150,0.25);
  box-shadow: 3px 4px 5px 0 rgba(150,150,150,0.25);
}
.form-login input:not([type="submit"])::placeholder,
.form-login textarea::placeholder{
  color: #666;
}
.form-login input:not([type="submit"]):focus,
.form-login textarea:focus{
  background-color: white;
  border: 1px solid var(--c-primary);
}
.form-login .icon-input.icon-user:before{
  content: url('../img/icons/user.svg');
}
.form-login .icon-input.icon-password:before{
  content: url('../img/icons/pass.svg');
}
.form-login .icon-input{
  position: relative;
}
.form-login .icon-input:before{
  content: "";
  display: block;
  position: absolute;
  right: 10px;
  top: calc(50% - 8px);
  transform: translateY(-50%);
  width: 22px;
}



/* Alert */
.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}
button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
}
.close:focus, 
.close:hover {
  color: #000;
  text-decoration: none;
  opacity: .75;
}
.alert .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 12px 1.25rem;
  color: inherit;
}
.close:not(:disabled):not(.disabled) {
  cursor: pointer;
}
.alert {
  position: relative;
  padding: 18px 1.25rem;
  margin-bottom: 1.5rem;
  border: 1px solid transparent;
  border-radius: .25rem;
  font-size: 0.85rem;
}
.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: var(--c-primary);
}
input[type="password"]::placeholder{
  letter-spacing: initial !important;
  font-family: 'Cera Pro', sans-serif;
}
input[type="password"]{
  letter-spacing: 6px;
  font-family: 'Arial','sans-serif';
}


#contador{
  background-color: rgb(229, 239, 251);
  padding: 8px;
  border: 1px solid rgb(212, 218, 225);
}




.cbu{
  display: block;
  position: relative;
  width: 100%;
  color: #474747;
  font-size: 0.6rem;
  line-height: 1.5;
  font-weight: 500;
  border: 1px solid var(--c-secondary);
  -webkit-border-radius: 3px;
  border-radius: 3px;
  padding: 6px;
  padding-right: 20px;
  padding-left: 75px;
  position: relative;
}

.cbu br{
  display: none !important;
}

.cbu:before{
  content: url('../img/icons/info.svg');
  display: block;
  float: left;
  padding-right: 15px;
  padding-left: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-right: 15px;
  border-right: 1px solid #d6d6d6;
  position: absolute;
  left: 3px;
  height: calc(100% + -20px);
}
.cbu:after{
  content: "";
  display: block;
  clear: both;
}


/* PIE PAGINA */


section.pie-guia{
  /* font-family: "Montserrat", sans-serif; */
}
section.pie-guia {
  padding-top: 100px;
  /* padding-bottom: 50px; */
  position: relative;
}
section.pie-guia .container {
  display: flex;
}
section.pie-guia .items-pie-guia {
  text-align: center;
  gap: 30px;
}
section.pie-guia .items-pie-guia .item ul {
  list-style: none;
  padding: 0;
  text-align: left;
}
section.pie-guia .items-pie-guia .item ul a {
  font-size: 19px;
  color: #484848;
  font-weight: 400;
  margin-right: 8px;
}
section.pie-guia .items-pie-guia .item ul a:hover {
  opacity: 0.7;
  color: var(--c-primary);
}
section.pie-guia .items-pie-guia .item ul li {
  margin-bottom: 10px;
}
section.pie-guia .items-pie-guia .bg {
  background-color: ;
  text-align: left;
}
section.pie-guia .items-pie-guia .icono_flex {
  padding-bottom: 20px;
  text-align: center;
}
section.pie-guia .items-pie-guia .icono_flex img {
  height: 60px;
  width: auto;
  object-fit: contain;
}
section.pie-guia .items-pie-guia .imagen_flex {
  height: 0;
  overflow: hidden;
  position: relative;
  padding-bottom: 60%;
}
section.pie-guia .items-pie-guia .imagen_flex img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
section.pie-guia .items-pie-guia .titulo_flex {
  padding-bottom: 10px;
  margin-top: 0;
  color: #000;
  font-size: 23px;
  margin-bottom: 23px;
  text-align: left;
  font-weight: 900;
}
section.pie-guia .items-pie-guia .titulo_flex a {
  color: #000;
}
section.pie-guia .items-pie-guia .titulo_flex a:hover {
  color: var(--c-primary);
}
section.pie-guia .flex > div {
  padding-bottom: 30px;
}
section.pie-guia a.logo-footer {
  filter: grayscale(1);
}
section.pie-guia a.logo-footer img {
  max-width: 210px;
}
section.pie-guia .flex > div:nth-child(1) {
  /* width: 69%; */
}
section.pie-guia .flex > div:nth-child(2) {
  /* width: 50%; */
}
section.pie-guia .flex > div:nth-child(3) {
  /* width: 53%; */
}
section.pie-guia .flex > div:nth-child(4) {
  /* width: 68%; */
  position: relative;
}
section.pie-guia .flex > div:nth-child(5)::before {
  content: "";
  display: block;
  position: absolute;
  height: 50px;
  width: 1px;
  background-color: #484848;
  left: -25px;
  top: 64px;
}
section.pie-guia ul.social {
  text-align: left;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 0;
  margin-left: 0;
  margin-top: 0;
}
section.pie-guia ul.social li {
  display: inline-block;
  vertical-align: middle;
  /* padding-right: 10px; */
}
footer .flex > div{
  padding-bottom: 0 !important;
  text-align: left;
}
footer{
  border-top: none !important;
  /* padding-top: 0 !important; */
}
@media screen and (max-width: 768px) {
  section.pie-guia {
    display: none;
  }
}


/******************************/
/****** Landing ******/
#consulta{
  padding-top: 80px;
  padding-bottom: 80px;
  font-size: 1.6rem;
	line-height: 1.7;
  font-weight: 300;
  
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#consulta b{
  font-weight: 700;
}
#consulta > .container {
  width: 100%;
  max-width: 990px;
}
/*Mobile*/
@media screen and (max-width:900px){
  #consulta{
    font-size: 0.8rem;
    line-height: 2.2;
  }
}


body[class*="landing-form-thnk"] #form-request{
  display: flex;
  justify-content: center;
  align-items: center;
}
