body {
  margin: 0;
  font-family: 'C_Arlon_Regular';
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  /* background-color: #fff;  */
  background-image: url(../../../assets/images/letrapps/fondo_letraps.png);
	background-color: #ad270e3b;
}
.fb_iframe_widget iframe {
  position: absolute;
  width: 98px!important;
}
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}
.ftco-section {
  padding: 7em 0; 
}
.img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; }
.wrap {
  width: 100%;
  overflow: hidden;
  background: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
  -moz-box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
  box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24); 
}
.wrap .img {
  height: 200px;
}
.login-wrap {
  position: relative;
}
.login-wrap h3 {
  font-weight: 300;
}
.ctrl {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: -webkit-box;
  /* display: -webkit-flex; */
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  border-radius: 5px;
  font-size: 30px;
  align-content: stretch;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
}
.ctrl__counter {
  position: relative;
  width: 55px;
  height: 40px;
  color: #333C48;
  text-align: center;
  overflow: hidden;
  border: 3px solid #eddada;
}
.texto-herramientas{
  color: #ad270e;
}
.ctrl__counter.is-input .ctrl__counter-num {
  visability: hidden;
  opacity: 0;
  -webkit-transition: opacity 100ms ease-in;
  transition: opacity 100ms ease-in;
}
.ctrl__counter.is-input .ctrl__counter-input {
  visability: visible;
  opacity: 1;
  -webkit-transition: opacity 100ms ease-in;
  transition: opacity 100ms ease-in;
} 
.ctrl__counter-input {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2;
  box-shadow: none;
  outline: none;
  border: none;
  color: #333C48;
  font-size: 20px;
  line-height: 36px;
  text-align: center;
  visability: hidden;
  opacity: 0;
  -webkit-transition: opacity 100ms ease-in;
  transition: opacity 100ms ease-in;
}
.ctrl__counter-num {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  line-height: 35px;
  visability: visible;
  opacity: 1;
  font-size: 20px;
  -webkit-transition: opacity 100ms ease-in;
  transition: opacity 100ms ease-in;
}
  
.ctrl__counter-num.is-increment-hide {
  opacity: 0;
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
  -webkit-animation: increment-prev 100ms ease-in;
  animation: increment-prev 100ms ease-in;
}

.ctrl__counter-num.is-increment-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-animation: increment-next 100ms ease-out;
  animation: increment-next 100ms ease-out;
}

.ctrl__counter-num.is-decrement-hide {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-animation: decrement-prev 100ms ease-in;
  animation: decrement-prev 100ms ease-in;
}

.ctrl__counter-num.is-decrement-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-animation: decrement-next 100ms ease-out;
  animation: decrement-next 100ms ease-out;
}

.ctrl__button {
  width: 26px;
  font-size: 18px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  cursor: pointer;
  background-color: #eddada;
  -webkit-transition: background-color 100ms ease-in;
  transition: background-color 100ms ease-in;
}

.ctrl__button:hover {
  background-color: #eddada;
  -webkit-transition: background-color 100ms ease-in;
  transition: background-color 100ms ease-in;
}

.ctrl__button:active {
  background-color: #eddada;
  -webkit-transition: background-color 100ms ease-in;
  transition: background-color 100ms ease-in;
}

.ctrl__button--decrement { border-radius: 20px 0 0 20px; }

.ctrl__button--increment { border-radius: 0 20px 20px 0; }
  @-webkit-keyframes 
decrement-prev {  from {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
}
  @keyframes 
decrement-prev {  from {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
}
@-webkit-keyframes 
decrement-next {  from {
  opacity: 0;
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
}
}
@keyframes 
decrement-next {  from {
  opacity: 0;
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
}
}
@-webkit-keyframes 
increment-prev {  from {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
}
@keyframes 
increment-prev {  from {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
}
@-webkit-keyframes 
increment-next {  from {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
}
}
@keyframes 
increment-next {  from {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
}
}
.btn-price{
  background-color: #ad270e;
  font-weight: 800;
  color: white;
  padding: 4px 10px;
  /* border-radius: 30px; */
  
  font-size: 15px;
}

.div-table{
    -webkit-box-shadow: 0px 0px 11px 1px rgba(0,0,0,0.23);
    -moz-box-shadow: 0px 0px 11px 1px rgba(0,0,0,0.23);
    box-shadow: 0px 0px 11px 1px rgba(0,0,0,0.23);
    border-radius: 5px;
    /* padding: 15px; */
    margin: 0px;
    align-items: center;
    height: 122px;
    margin-bottom: 10px;
}
.mensaje{
    color: gray;
    font-size: 12px;
    margin: 0px!important;
}
.p-10{
    padding: 10px;
}
.pulso-css{
    cursor: pointer;
    /* border-radius: 30px; */
}
.pulso-css:hover{
    /* animation: shadow-pulse 1s infinite; */
    transform: scale(1.1);
    transition: .1s;
    /* border-radius: 30px; */
    /* color: white; */
}
.centro{
    flex-wrap: wrap;
    flex-direction: row;
    align-content: center;
    justify-content: center;
}
.circulo{
  width: 70px;
  height: 70px;
  border-radius: 200px;
  /* background-color: #5f7d89; */
  text-align: center;
  font-size: 2vh;
  font-family: 'C_Arlon_Medium';
  color: white;
}

.icono-pregunta{
  display: none;
}
@media (max-width: 991px) {
  .icono-pregunta{
    display: block!important;
    font-size: 25px!important;
    cursor: pointer;
    color: #28a745;
  }
}
.cuadro{
  padding: 10px;
  background-color: white;
  border-radius: 30px;
  margin: 10px;
  -webkit-box-shadow: 0px 0px 13px -1px rgba(34,32,36,0.4);
-moz-box-shadow: 0px 0px 13px -1px rgba(34,32,36,0.4);
box-shadow: 0px 0px 13px -1px rgba(34,32,36,0.4);
}
.precio{
  background: #ad270e;
  border: none;
  background: linear-gradient(138deg, #ad270e 25%, #e36631 100%);
  font-family: 'C_Arlon_Medium';
  font-size: 20px;
  margin: 10px 0px;
  color: white;
  border-radius: 15px;
}
.ir_a{
  background: #ad270e;
  font-family: 'C_Arlon_Regular';
  font-size: 15px;
  color: white;
  border-radius: 70px;
}
@media screen and (max-width: 598px) {
  .only-mobile {
    display: block;
  }
  .only-desk{
    display: none;
  }
}
@media screen and (min-width: 599px) {
  .only-mobile {
    display: none;
  }
  .only-desk{
    display: block;
  }
}