.cuerpo-cotizador .call-to-action{
  display:none !important;
}

div#cotizador_modelo > div {
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  overflow: hidden;
  border: none;
  padding: 0 !important;
  margin-bottom: 1em;
  outline: none;
  width: auto !important;
  overflow-x: auto;
  max-width: 80vw;
  background: transparent;
  height: 195px;
  width: calc(100% - 1em)!important;
}
div#cotizador_modelo > div >div >div {
  cursor: pointer;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
    transition: all .5s cubic-bezier(0.7,0,0.3,1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: .5em;
  background: white;
}

div#cotizador_modelo > .resultado >div >div{
   background: none;
   display: block;
   text-align: initial;
}

.resultado span,.resultado input{
  color: darkslategray;
  font-weight: bold;
  position:relative;
}

.resultado >div >div span:before, .resultado >div >div input:before{
background: #dedede !important;
    content: "";
    width: 74%;
    height: 100%;
    position: absolute;
    z-index: -1;
    transform: rotate(
-3deg
) translate(-50%,-50%);
    border-radius: 4px 2px 1px 3px;
    top: 50%;
    left: 50%;
}

div#cotizador_modelo #marca >div {
   width: 120px;
   height: 120px;
}

div#cotizador_modelo #modelo div::before {
  content: attr(data-content);
  transform: translate(-50%, 200%);
  position: absolute;
  top: 1em;
  left: 50%;
  font-size: 10px;
  text-align: center;
  opacity: 0;
  transition: all .5s cubic-bezier(0.7,0,0.3,1);
}
div#cotizador_modelo #modelo >div:hover::before {
  transform: translate(-50%, 50%);
  opacity: 1;
  transition: all .5s cubic-bezier(0.7,0,0.3,1);
  color: black;
  z-index: 10;
}
div#cotizador_modelo {
      display: block;
    background: whitesmoke;
    border-radius: 4px;
    max-width: 80vw;
    margin: auto;
    padding: 0 !important;
    overflow-y: auto;
}
div#cotizador_modelo h2, div#cotizador_modelo h2 span {
  text-align: center;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: bolder;
  margin-top: 1em !important;
}
div#cotizador_modelo div, div#cotizador_modelo input, div#cotizador_modelo p, div#cotizador_modelo span {
  background: transparent;
  outline: none;
  font-family: unset;
  margin-left: auto;
  margin-right: auto;
}
div#cotizador_modelo .seleccion_entrada.etapas.mostrar input:focus {
  border-bottom: 1px solid;
}
#modelo >div {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 170px;
  height: 170px;
}
.etapas {
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  display:none;
  min-height: 50vh;
}

.etapas.mostrar {
  display: flex;
  flex-direction: column;
  opacity: 0;
  animation: aparicion 1s ease-in-out forwards;
  -webkit-animation: aparicion 1s ease-in-out forwards;
  -moz-animation: aparicion 1s ease-in-out forwards;
  -ms-animation: aparicion 1s ease-in-out forwards;
}
#cotizador_modelo .mostrar {
  display: block;
  background: whitesmoke;
  border-radius: 4px;
  max-width: 80vw;
  margin: auto;
  padding: 0 !important;
  overflow-y: auto;
  overflow-x: hidden;
}
.ocultar {
  display: none !important;
}
.seleccion_entrada p {
  text-align: center;
}
.seleccion_entrada .usado {
  display: block;
}
div#cotizador_modelo p {
  display: block;
  width: 100%;
  margin: auto 0 0.5em;
  font-size: 18px;
}
span.patiotuerca, span.patiotuerca a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.etapas input {
  border: none;
  font-family: auto;
  text-align: center;
  font-size: 18px !important;
  width: 120px;
}

@keyframes aparicion {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes aparicion {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes aparicion {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-ms-keyframes aparicion {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.botones {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100% !important;
  margin-bottom: 0;
  margin-top: auto;
}
.siguiente, .atras {
  font-size: 12px;
  cursor: pointer;
  text-transform: uppercase;
  border: none;
  text-decoration: none;
  margin-top: 1.5em;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  line-height: 0;
  color: gray;
  transition: all .5s cubic-bezier(0.7,0,0.3,1);
  position: relative;
}
.siguiente:hover, .atras:hover {
  background: lightgray;
  color: white;
  transition: all .5s cubic-bezier(0.7,0,0.3,1);
}
.atras:after {
  content: "Atras";
  position: absolute;
  bottom: -120%;
  left: 50%;
  background: white !important;
  padding: 0.3em 0.8em;
  width: 100%;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  box-shadow: 0px 3px 10px lightgrey;
  transition: all .5s cubic-bezier(0.7,0,0.3,1);
  opacity: 0;
  color: gray;
  font-size: 10px;
}
.siguiente:after {
  content: "Siguiente";
  position: absolute;
  bottom: -120%;
  left: 50%;
  background: white !important;
  padding: 0.3em 0.8em;
  width: 150%;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  box-shadow: 0px 3px 10px lightgrey;
  transition: all .5s cubic-bezier(0.7,0,0.3,1);
  opacity: 0;
  color: gray;
  font-size: 10px;
}
button#reanudar:after {
  content: "Reanudar";
}
.atras:hover:after, .siguiente:hover:after {
  bottom: -80%;
  opacity: 1;
  transition: all .5s cubic-bezier(0.7,0,0.3,1);
  color: gray;
}


.call-to-action {
  width: 100%;
  display: flex;
  margin-top: 20px;
  align-items:center;
  justify-content: center;
}

div#cotizador_modelo div .disclaimer p {
  font-size: 12px !important;
  margin: 20px auto 0 auto;
  border-top: 1px solid;
  padding-top: 10px;
  text-align: initial;
}

#marca {
  display: flow-root;
  flex-wrap: wrap;
  justify-content: space-between;
}

#modelo{
    flex-wrap: wrap;
  justify-content: space-between;
}

#marca >div {
  color: transparent !important;
  width: 120px;
  height: 120px;
  border-radius: 50%;
}
#marca >div:checked {
  background-color: red;
}
#marca >div.Mazda {
  background-image: url(https://f.hubspotusercontent30.net/hubfs/4560037/MARESA%20CENTER/Web/Imagenes/Logos%20Marcas/Mazda.png);
}
#marca >div.Jeep{
  background-image: url(https://f.hubspotusercontent30.net/hubfs/4560037/MARESA%20CENTER/Web/Imagenes/Logos%20Marcas/Jeep.png);
}
#marca >div.Dodge {
  background-image: url(https://f.hubspotusercontent30.net/hubfs/4560037/MARESA%20CENTER/Web/Imagenes/Logos%20Marcas/Dodge.png);
}
#marca >div.Ram {
  background-image: url(https://f.hubspotusercontent30.net/hubfs/4560037/MARESA%20CENTER/Web/Imagenes/Logos%20Marcas/Ram.png);
}
#marca >div.Fiat {
  background-image: url(https://f.hubspotusercontent30.net/hubfs/4560037/MARESA%20CENTER/Web/Imagenes/Logos%20Marcas/Fiat.png);
}
#marca >div.Chery {
  background-image: url(https://f.hubspotusercontent30.net/hubfs/4560037/MARESA%20CENTER/Web/Imagenes/Logos%20Marcas/Chery.png);
}
#marca >div.Dongfeng {
  background-image: url(https://f.hubspotusercontent30.net/hubfs/4560037/MARESA%20CENTER/Web/Imagenes/Logos%20Marcas/Dongfeng.png);
}

div#cotizador_modelo #modelo >div {
  font-size: 14px !important;
  margin: 0.5em;
  padding: 1em 0.5em 0 0.5em;
  background-size: 90% auto !important;
  border-radius: 50%;
  color: transparent;
}

div#cotizador_modelo #modelo >div:first-child {
    margin-left: auto;
}

div#cotizador_modelo #modelo >div:last-child {
    margin-right: auto;
}

div#cotizador_modelo select::-webkit-scrollbar-thumb {
  background: lightgray;
  border-radius: 4px;
}
div#cotizador_modelo select::-webkit-scrollbar {
  background: whitesmoke;
  height: 5px;
  margin: 1em;
  display: block;
}
div#cotizador_modelo select::-webkit-scrollbar-thumb:hover {
  background: #b3b3b3;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}
div#cotizador_modelo select::-webkit-scrollbar-thumb:active {
  background-color: #999999;
}

.titulos-etapas {
  width: 100% !important;
  margin-bottom: 2em;
  font-size: 20px !important;
}
input#entrada {
  background: transparent;
  width: 100px !important;
  text-align: right;
}
#cuotas {
  height: 140px !important;
}
#cuotas >div {
  width: 120px !important;
  height: 120px !important;
}
.botones_cta {
  background-color: rgb(239, 239, 239);
  color: gray;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1em 1.5em;
}

#cuotas >div {
  font-size: 20px !important;
}
input#cuota_m {
  width: 34px;
  padding: 0;
  margin: 0 !important;
  text-align: center;
}
input#precio_interes {
  width: 85px;
}
input#cotizacion, input#entrada_total {
  width: 90px;
}
input#cuota_m {
  width: 45px !important;
  padding: 0 !important;
  margin: 0 !important;
}
div#selec_modelo {
  width: 180px;
  height: 180px;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  background-position: center !important;
}
.flex {
  width: 100%;
  max-width: 1024px;
  display: flex;
  justify-content: space-between;
}

.disclaimer {
  max-width: 1024px;
  width: 100%;
}

#marca >div:hover, #modelo >div:hover, #version >div:hover, #cuotas >div:hover{
  -webkit-transform: scale(1.07);
  -moz-transform: scale(1.07);
}

#marca >div:hover{
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
}

div#cotizador_modelo .hs-form__field-row{
  margin-left: -10px;
  margin-right: -10px;
  display: flex;
  flex-grow: 1;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
}

div#cotizador_modelo .hs-form__field-row__column{
  align-self: flex-start;
  flex: 1 1 100%;
  padding: 0 10px;
  width: 100%;
}

.resultado.mostrar{
  display: block !important;
  height: auto !important;
}


@media (max-width: 900px) {
.resultado .flex >div{
  display: block !important;
}
}
  
@media (max-width: 476px) {
  .flex {
    flex-direction: column-reverse;
  }
  input[type=text], input[type=button], select {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
  }
  textarea, input.text, input[type="text"], input[type="button"], input[type="submit"], .input-checkbox { 
    -webkit-appearance: none; 
  } 
  select {
    -ms-user-select: text !important; /* IE 10 and IE 11 */
    user-select: text !important; /* Standard syntax */
    -webkit-user-select: text !important;
  }
}

@supports (-webkit-touch-callout: none) {
  form {
    -webkit-appearance: none;
  }
  textarea, input.text, input[type="text"], input[type="button"], input[type="submit"], .input-checkbox { 
    -webkit-appearance: none; 
  } 
  div#cotizador_modelo select option {
    color: black !important;
    display: block !important
  }
  div#cotizador_modelo select option:after { 
    content: attr(value) !important; /* no quotes around attribute name! */
  }
  input[type=text], input[type=button], select {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
  }
  div#cotizador_modelo select option {
    width: auto;
    height: auto;
    display: block;
    border-radius: 0;
  }
  select {
    direction: auto;
    display: block;
    vertical-align: middle;
    -webkit-user-select: text !important; /* Safari */
    -ms-user-select: text !important; /* IE 10 and IE 11 */
    user-select: text !important; /* Standard syntax */
    border-bottom-left-radius: unset;
    border-top-left-radius: unset;
    background-clip: unset;
  }
}

div#cotizador_modelo form select {
  height: auto;
}
div#cotizador_modelo form select,
div#cotizador_modelo form input,
div#cotizador_modelo form textarea {
  border: 1px solid gray;
  border-radius: 2px;
}
div#cotizador_modelo form .hs-input,
div#cotizador_modelo form select {
  padding: .67em !important;
  border: 1px solid gray;
  border-radius: 2px;
  color: gray;
  outline: 0;
  width: calc(100% - 1.34em - 2px) !important;
  transition: all .2s ease;
  background: transparent;
  backdrop-filter: blur(3px);
  min-height: 23px;
}
div#cotizador_modelo form input.hs-button.primary.large {
  width: auto;
  background: gray;
  color: white;
  margin-left: 0;
}
div#cotizador_modelo form, div#cotizador_modelo form::placeholder, div#cotizador_modelo form input, div#cotizador_modelo form input::placeholder, div#cotizador_modelo form select {
  font-size: 14px !important;
}
div#formularioCot input#entrada_input, div#formularioCot select.hs-form__field__input {
  width: calc(100% - 0.67em - 2px) !important;
}
input#entrada_input {
  padding: calc(0.67em - 2px) !important;
}
div#formularioCot {
  display: none;
}


/******************************************************/
div#marca, div#modelo {
  max-width: 80vw;
}
#cuotas {
  height: 140px !important;
  max-width: 80vw;
}
div#marca > div, div#modelo > div {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

div#version{
  display:flex;
}

div#version > div {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

div#version > div:first-child {
  margin-left: auto;
}

div#version > div:last-child {
  margin-right: auto;
}

body.dealer.home div#cotizador_modelo form .hs-input, body.dealer.home div#cotizador_modelo form select input {
    width: calc(100% - 2em - 2px) !important;
}
