@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  color: #f1f1e9;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
}

h3 {
  color: #EAA79F;
  font-size: clamp(14px, 3vw, 18px);
}

h4 {
  color: #EAA79F;
  font-size: clamp(12px, 3vw, 16px);
  font-weight: 500;
}

.unselectable {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.logo {
  display: block;
  width: 60%;
  margin: auto;
}

.display__block {
  display: block !important;
}

.display__none {
  display: none !important;
}

.body {
  display: flex;
  align-items: center;
  flex-direction: column;
  overflow-x: hidden;
}

.background {
  overflow: hidden;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
  position: absolute;
  z-index: -1;
  height: clamp(25vh, 65vw, 100vh);
}

.main {
  width: 80%;
  max-width: 770px;
  margin-top: clamp(30px, 5vw, 60px);
}

.main__titulo {
  font-size: clamp(35px, 5vw, 70px);
  text-align: center;
}

.main__container {
  background-color: #f1f1e9;
  border-radius: 25px;
  margin: clamp(50px, 8vw, 62px) 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 1px 3px 10px #9A9AA0;
}

.main__img {
  width: 50%;
  margin: clamp(15px, 3vw, 40px) 0px;
}

.encabezado {
  background-color: #393B50;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  padding: clamp(10px, 2vw, 20px);
  display: flex;
  gap: clamp(10px, 2vw, 30px);
  align-items: center;
  width: 100%;
}

.encabezado__numero {
  border: 2px solid #fff;
  width: clamp(50px, 5vw, 70px);
  height: clamp(50px, 5vw, 70px);
  border-radius: 50%;
  padding: 15px;
  font-size: clamp(30px, 4vw, 45px);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 5px 6px #1b1b2d;
  font-weight: 600;
}

.encabezado__titulo {
  font-size: clamp(18px, 3vw, 24px);
}

.encabezado__paso {
  font-size: clamp(15px, 4vw, 20px);
  font-weight: 200;
}

.form {
  display: flex;
  flex-direction: column;
  width: 98%;
  max-width: 580px;
  align-items: center;
  padding: clamp(5px, 1vw, 15px) clamp(10px, 2vw, 30px) 20px;
  gap: 15px;
}

.form__container {
  width: 100%;
  position: relative;
  display: inline-block;
}

.form__input {
  width: 100%;
  border: 1px solid #9A9AA0;
  padding: 18px 15px 2px 20px;
  border-radius: 50px;
  color: #9A9AA0;
  font-size: clamp(12px, 3vw, 16px);
}
.form__input:focus {
  outline: 1px solid #9A9AA0;
}

.form__label {
  position: absolute;
  top: 49%;
  left: 20px;
  transform: translateY(-50%);
  font-size: clamp(12px, 3vw, 16px);
  color: #9A9AA0;
  pointer-events: none;
  transition: 0.175s ease-out;
}

.form__input:focus + .form__label,
.form__input:not(:placeholder-shown) + .form__label {
  top: 12px;
  left: 20px;
  font-size: 12px;
  color: #EAA79F;
}

.form__icono {
  position: absolute;
  width: 20px;
  height: 20px;
  border: none;
  top: 28%;
  right: 15px;
  background-color: transparent;
  cursor: pointer;
  font-size: 16px;
  color: #EAA79F;
}

.btn__container {
  padding: clamp(10px, 3vw, 30px);
  width: 90%;
  max-width: 556px;
  display: flex;
  gap: 10px;
}

.btn {
  width: 100%;
  padding: 10px 20px;
  border-radius: 50px;
  background-color: #393B50;
  font-size: clamp(12px, 3vw, 16px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  outline: none;
  border: 2px solid #393B50;
}
.btn:hover {
  background-color: #fff;
  color: #393B50;
}

.btn--rosa {
  background-color: #EAA79F;
  border: 2px solid #EAA79F;
}
.btn--rosa:hover {
  background-color: #fff;
  color: #EAA79F;
}
.btn--rosa:hover a {
  color: #EAA79F;
}

.btn--gris {
  background-color: #9A9AA0;
  border: 2px solid #9A9AA0;
}
.btn--gris:hover {
  background-color: #fff;
  color: #9A9AA0;
}
.btn--gris:hover a {
  color: #9A9AA0;
}

.registro-title {
  color: #EAA79F;
  margin-bottom: 30px;
  font-size: clamp(24px, 6vw, 52px);
}

.login-title {
  color: #EAA79F;
  margin-bottom: 30px;
  font-size: clamp(24px, 6vw, 52px);
}

.registro-body {
  background-image: url("../img/background-1.webp");
  background-position: left;
  background-size: cover;
  overflow: hidden;
}

.login-body {
  background-image: url("../img/background-1.webp");
  background-position: left;
  background-size: cover;
}

/* BARRAS SCROLL CUSTOM */
::-webkit-scrollbar {
  width: 15px;
}

/* Track */
/* Handle */
::-webkit-scrollbar-thumb {
  background: #9A9AA0;
  /*border-radius: 10px;*/
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #9A9AA0;
}

/* || BARRAS SCROLL CUSTOM || */
.custom-selectCont {
  position: relative;
  width: 500px;
}

.custom-select {
  background-color: #ffffff;
  padding: 15px 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: pink;
  border-radius: 50px;
}
.custom-select span {
  color: #EAA79F;
  font-size: 18px;
  font-weight: 600;
}
.custom-select i {
  color: #EAA79F;
  transition: all 0.2s linear;
  font-size: 26px;
  font-weight: 900;
}

.custom-select.select-clicked i {
  transform: rotate(90deg);
}

.custom-selectMenu {
  list-style: none;
  position: absolute;
  background-color: #fff;
  width: 100%;
  padding: 12px;
  margin-top: 7px;
  border-radius: 20px;
  transition: all 0.2s linear;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  visibility: visible;
  display: none;
  box-shadow: 5px 7px 20px 0px #9A9AA0;
}
.custom-selectMenu li {
  padding: 5px 13px;
  cursor: pointer;
  color: #EAA79F;
}
.custom-selectMenu li:hover {
  background-color: #EAA79F;
  color: #fff;
  border-radius: 50px;
}

.custom-selectMenu.open {
  display: block;
  opacity: 1;
  visibility: visible;
}

.navbar-svgCont {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrapper {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper i {
  font-size: 32px;
  color: #9A9AA0;
  cursor: pointer;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  z-index: 10;
}
.wrapper i:active {
  font-size: 28px;
}

.carousel {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.carousel.notransition {
  scroll-behavior: unset;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.modal-error {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(57, 59, 80, 0.8588235294);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.modal-error-body {
  width: 90%;
  max-width: 1024px;
  background-color: #f1f1e9;
  border-radius: 25px;
  padding: clamp(45px, 5vw, 85px) clamp(15px, 3vw, 45px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
.modal-error-body .form {
  width: 108%;
  max-width: 750px;
}

.modal-error-img {
  width: 90%;
  max-width: 350px;
}

.modal-error-title {
  color: #EAA79F;
  font-size: clamp(24px, 4vw, 32px);
  text-align: center;
}

.modal-error-text {
  color: #9A9AA0;
  font-size: clamp(16px, 3vw, 20px);
  text-align: center;
}

.modal-error-btnCont {
  display: flex;
  justify-content: center;
  gap: 15px;
  width: 100%;
}
.modal-error-btnCont .btn {
  max-width: 250px;
}

.btn-volver {
  width: 100%;
  max-width: 250px;
}

.bme--Header {
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 12px 0px;
  width: 100%;
  z-index: 100;
  position: fixed;
  transition: all 0.2s linear;
}
@media only screen and (max-width: 1024px) {
  .bme--Header {
    justify-content: space-between;
    padding: 12px 10%;
  }
}
.bme--Header.scrolled {
  background-color: #EAA79F;
  box-shadow: 0px -5px 18px #393B50;
}

.tienda-header {
  background-color: #EAA79F;
  box-shadow: 0px -5px 18px #393B50;
}

.panel-body .bme--Header {
  background-color: #EAA79F;
}

.bme-navbar {
  display: flex;
  gap: 25px;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .bme-navbar {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 25px 25px 25px 25px 25px;
    position: absolute;
    grid-template-areas: "pais" "ingresar" "crear" "precios" "contacto";
    top: 0;
    left: 0;
    bottom: 0;
    transform: translateX(-100%);
    transition: all 0.4s ease-out;
    background: #393B50;
    height: 100%;
    padding: 15px;
    padding-top: 100px;
    justify-items: center;
    width: 60%;
    max-width: 250px;
    height: 100vh;
  }
}
@media only screen and (min-width: 1930px) {
  .bme-navbar .header__link {
    background-color: #fff;
    color: #EAA79F;
  }
  .bme-navbar .header__link:hover {
    background-color: #EAA79F;
    color: #fff;
  }
}

.bme--Header.active .bme-navbar {
  transform: translateX(0%);
}

.ingresar-h {
  grid-area: ingresar;
}

.crear-h {
  grid-area: crear;
}

.precios-h {
  grid-area: precios;
}

.contacto-h {
  grid-area: contacto;
}

.pais-h {
  grid-area: pais;
}

.whats {
  grid-area: whats;
}

.inst {
  grid-area: inst;
}

.face {
  grid-area: face;
}

.header__link {
  padding: 5px;
  border: 2px solid #f1f1e9;
  border-radius: 50px;
  width: clamp(115px, 7vw, 140px);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.header__link .fa {
  font-size: clamp(18px, 3vw, 24px);
}
.header__link:hover {
  color: #EAA79F;
  background-color: #f1f1e9;
}
.header__link:hover i {
  color: #EAA79F;
}

.fa-bars {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.bme--Header.active .fa-bars {
  visibility: hidden;
  opacity: 0;
  transform: scale(0.1);
}

.fa-times {
  visibility: hidden;
  opacity: 0;
  transform: scale(0.1);
}

.bme--Header.active .fa-times {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.header__redes {
  width: clamp(40px, 4vw, 50px);
  height: clamp(40px, 4vw, 50px);
  aspect-ratio: 1/1;
}

.header__logo--container {
  width: clamp(170px, 18vw, 250px);
}

.btn__menu--abrir {
  display: none;
  width: clamp(35px, 5vw, 50px);
  height: clamp(35px, 5vw, 50px);
  aspect-ratio: 1/1;
  background-color: transparent;
  cursor: pointer;
}
@media only screen and (max-width: 1024px) {
  .btn__menu--abrir {
    display: flex;
    top: 84px;
    right: 10%;
    z-index: 10;
  }
}
.btn__menu--abrir .fa {
  position: absolute;
  transition: transform 0.25s linear, opacity 0.25s linear, visibility 0.25s linear;
}

@media only screen and (max-width: 1024px) {
  .header__btnCuenta {
    border: none;
  }
}

.header__menuBackground {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #EAA79Fe1;
  transform: translateX(-100%);
  transition: all 0.4s ease-out;
  display: none;
}
@media only screen and (max-width: 1490px) {
  .header__menuBackground {
    display: block;
  }
}

.bme--Header.active .header__menuBackground {
  transform: translateX(0%);
}

.pasos {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.pasos__img {
  width: 50%;
  max-width: 300px;
  margin-top: 25px;
}

.pasos__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.paso0 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "title img" "texto img" "boton img";
  padding: 75px 50px;
  padding: clamp(25px, 5vw, 75px) clamp(20px, 5vw, 50px);
}
@media only screen and (max-width: 990px) {
  .paso0 {
    grid-template-columns: 1fr;
    grid-template-areas: "img" "title" "texto" "boton";
    gap: 15px;
  }
}
.paso0 .btn {
  grid-area: boton;
}

.paso0__img {
  grid-area: img;
}
@media only screen and (max-width: 990px) {
  .paso0__img {
    width: 60%;
    justify-self: center;
  }
}

.paso0__titulo {
  color: #EAA79F;
  grid-area: title;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 600;
}
@media only screen and (max-width: 990px) {
  .paso0__titulo {
    text-align: center;
  }
}

.paso2__container {
  display: grid;
  align-items: center;
  margin-top: clamp(8px, 2vw, 40px);
  width: 80%;
  padding: clamp(7px, 2vw, 30px);
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "file title" "file texto";
}
@media only screen and (max-width: 990px) {
  .paso2__container {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "texto" "file";
    gap: 15px;
    justify-items: center;
  }
}

.paso2__file {
  grid-area: file;
  width: 90%;
  justify-self: center;
  cursor: pointer;
}

.paso2__titulo {
  grid-area: title;
  color: #EAA79F;
  font-size: clamp(18px, 3vw, 24px);
}

.pasos__texto {
  color: #9A9AA0;
  font-size: clamp(12px, 3vw, 15px);
  grid-area: texto;
}
@media only screen and (max-width: 990px) {
  .pasos__texto {
    text-align: center;
  }
}
.pasos__texto span {
  color: #9A9AA0;
  font-size: clamp(10px, 3vw, 12px);
}

.paso3 {
  width: 80%;
  padding: clamp(11px, 3vw, 40px);
  gap: clamp(10px, 3vw, 30px);
}
.paso3 .pasos__img {
  width: 70%;
}

@media only screen and (max-width: 990px) {
  .paso4 {
    display: grid;
    grid-template-areas: "img img" "dias agenda" "dias resumen";
    padding: 0px 8px 25px 5px;
    grid-template-rows: 0.6fr max-content 1fr;
    justify-content: center;
    justify-items: center;
  }
}
.paso4 .pasos__img {
  grid-area: img;
  justify-self: center;
}

.dias {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 80%;
  background-color: #fff;
  border-radius: 50px;
  padding: 20px;
  grid-area: dias;
}
@media only screen and (max-width: 990px) {
  .dias {
    flex-direction: column;
    gap: 15px;
    align-self: start;
  }
}

.dias__div {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #EAA79F;
  box-shadow: 0px 3px 5px rgb(73, 70, 70);
  width: clamp(40px, 5vw, 60px);
  height: clamp(40px, 5vw, 60px);
  cursor: pointer;
}
.dias__div.dias__select {
  background-color: #EAA79F;
  border: 2px solid #fff;
}
.dias__div.dias__select .dias__nombre {
  color: #fff;
}

.dias__nombre {
  color: #EAA79F;
  font-size: clamp(13px, 1.6vw, 18px);
  font-weight: 700;
}

.agenda {
  margin-top: 20px;
  background-color: #FFDDD4;
  width: 80%;
  padding: 20px clamp(20px, 3vw, 40px);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  grid-area: agenda;
}
@media only screen and (max-width: 990px) {
  .agenda {
    width: 100%;
    margin-top: 0;
    align-self: flex-start;
  }
}
.agenda::before {
  content: "";
  border-style: solid;
  border-width: 0px 15px 15px 15px;
  border-color: transparent transparent #FFDDD4 transparent;
  display: block;
  position: absolute;
  top: -13px;
  left: var(--left-value, 7%);
  transition: left 0.3s ease;
}
@media only screen and (max-width: 990px) {
  .agenda::before {
    display: none;
  }
}
.agenda .btn {
  flex: 1;
  min-width: 154px;
}

.agenda__div {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5px;
}
@media only screen and (max-width: 990px) {
  .agenda__div {
    display: flex;
    flex-wrap: wrap;
  }
}

.tiempo__selectCont {
  display: flex;
  align-items: center;
  justify-content: space-around;
  border: 2px solid #EAA79F;
  background: #fff;
  background: linear-gradient(90deg, #fff 0%, #fff 37%, #EAA79F 37%);
  padding: 10px clamp(5px, 2vw, 10px);
  border-radius: 50px;
  flex: 1;
}

.tiempo__selectTit {
  color: #EAA79F;
  width: 30%;
  font-weight: 500;
  font-size: clamp(12px, 2vw, 14px);
}

.tiempo__select {
  border: none;
  background-color: transparent;
  padding-left: 5px;
}
.tiempo__select:focus-visible {
  outline: none;
}

.tiempo__option {
  color: #EAA79F;
  background-color: #fff;
}

.resumen {
  width: 80%;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-bottom: 30px;
  grid-area: resumen;
}
@media only screen and (max-width: 990px) {
  .resumen {
    margin-top: 15px;
    width: 90%;
    align-self: center;
  }
}

.resumen__lista {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-radius: 15px;
  background-color: #fff;
  padding: 10px;
  border: 1px solid #9A9AA0;
}
.resumen__lista h4 {
  width: 20%;
}
@media only screen and (max-width: 640px) {
  .resumen__lista {
    flex-direction: column;
  }
}

.resumen__icono {
  color: #EAA79F;
  cursor: pointer;
  margin: 0px 5px;
}

.resumen__rangoCont {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.resumen__rangos {
  display: flex;
  gap: 15px;
  align-items: flex-end;
  flex-direction: column;
  width: 100%;
  max-width: 300px;
}

.resumen__texto {
  color: #9A9AA0;
  font-size: clamp(13px, 2vw, 14px);
  flex: 1;
}
@media only screen and (max-width: 460px) {
  .resumen__texto {
    text-align: center;
    display: flex;
  }
}

@media only screen and (min-width: 513px) {
  .mobile {
    display: none;
  }
}

@media only screen and (max-width: 512px) {
  .desktop {
    display: none;
  }
}

.resumen__container {
  width: 100%;
  position: relative;
  margin-top: 50px;
}

.resumen__tabs {
  display: flex;
  gap: 5px;
  position: absolute;
  width: 100%;
  top: -41px;
}

.resumen__tabsBtn {
  position: relative;
  z-index: 1000;
  width: 100%;
  border: 1px solid #9A9AA0;
  cursor: pointer;
  bottom: 0;
  background-color: #EAA79F;
  padding: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: all 300ms ease;
}
.resumen__tabsBtn.tabSelect {
  background-color: #fff;
  color: #EAA79F;
  border-bottom: 1px solid #fff;
}

.resumen__cuadro {
  width: 100%;
  border: 1px solid #9A9AA0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
  position: relative;
}

.resumen__registro {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #fff;
  padding: 20px 10px;
  gap: 5px;
}
.resumen__registro .resumen__texto:nth-child(2) {
  font-size: 10px;
  flex: 1.5;
}

.resumen__content {
  display: none;
}

.categoria {
  margin-top: 20px;
  background-color: #FFDDD4;
  width: 80%;
  padding: 20px clamp(15px, 4vw, 40px);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.categoria__textarea {
  resize: none;
  outline: none;
  color: #9A9AA0;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid #9A9AA0;
}

.categoria__select {
  width: 100%;
  border: none;
  padding: 10px;
  border-radius: 50px;
  color: #fff;
  font-size: 16px;
  background-color: #EAA79F;
}
.categoria__select:focus {
  outline: none;
}

.categoria__valores {
  width: 100%;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.precio {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border: 2px solid #EAA79F;
  background: #fff;
  background: linear-gradient(90deg, #EAA79F 0%, #EAA79F 20%, #fff 20%);
  padding: 10px;
  border-radius: 50px;
  width: 100%;
  min-width: 200px;
}

.precio__input {
  border: none;
  outline: none;
  color: #EAA79F;
  width: 75%;
}

.div_maps {
  z-index: 999;
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}

.iframe-panel {
  width: 100%;
  height: 100%;
  border: 0;
}

.paso3__mapa {
  color: #EAA79F;
}

#file__upload {
  display: none;
}

label {
  display: inline-block;
  cursor: pointer;
}
label img {
  width: 100%;
  border: 1px solid #ccc;
  padding: 5px;
}
label img:hover {
  opacity: 0.7;
}

.loader {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #393B50;
}
.loader .cls-1 {
  stroke-width: 1px;
  stroke-dashoffset: 180;
  stroke-dasharray: 296;
  opacity: 0;
}
.loader .cls-1.pri {
  animation: load 1.6s linear infinite reverse;
}
.loader .cls-1.seg {
  animation: load 1.6s linear infinite reverse;
  animation-delay: 0.2s;
}
.loader .cls-1.ter {
  animation: load 1.6s linear infinite reverse;
  animation-delay: 0.4s;
}
.loader .cls-1.cua {
  animation: load 1.6s linear infinite reverse;
  animation-delay: 0.6s;
}
.loader .cls-1.qui {
  animation: load 1.6s linear infinite reverse;
  animation-delay: 0.8s;
}
.loader .cls-1.sex {
  animation: load 1.6s linear infinite reverse;
  animation-delay: 1s;
}
.loader .cls-1.sep {
  animation: load 1.6s linear infinite reverse;
  animation-delay: 1.2s;
}
.loader .cls-1.oct {
  animation: load 1.6s linear infinite reverse;
  animation-delay: 1.4s;
}
.loader .cl {
  stroke: transparent;
  fill: #f1f1e9;
}
.loader .rs {
  stroke: transparent;
  fill: #EAA79F;
}
.loader .gr {
  stroke: transparent;
  fill: #9A9AA0;
}
.loader svg {
  width: 50%;
  height: 50%;
}

@keyframes load {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
/*ALERT CON INPUT DE DATOS*/
.req-confirmarpedido {
  background: rgba(19, 35, 47, 0.95);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  position: fixed;
  width: 95%;
  color: white;
  top: 150px;
  margin: auto;
  left: 2.5%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.req-confirmarpedido h3 {
  padding-top: 0px;
  color: red;
}

.background-blur {
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  position: absolute;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.div-mainalert {
  width: 70%;
  margin: auto;
  /*left: 2.5%;*/
  background-color: #4d0f47;
  text-align: center;
}

.div-alert {
  background-color: #393B50;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  color: white;
  margin: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  max-width: 600px;
  bottom: 200px;
  position: fixed;
}

.div-alert h3 {
  padding-top: 0px;
  color: red;
}

.div-alert-title {
  margin: 20px;
  padding-top: 30px;
  font-size: 20px;
}

.div-alert-content {
  margin: 20px;
  font-size: 17px;
}

.boton-alertconfirmar {
  background-color: #EAA79F;
  color: white;
  border-radius: 10px;
  font-size: 12px;
  padding: 10px;
  border: none;
  margin: 15px;
}

.boton-alertconfirmar:focus {
  outline: none;
}

.boton-alertconfirmar:hover {
  outline: none;
  background-color: #FFDDD4;
  color: #393B50;
}

.boton-alertconfirmar:active {
  outline: none;
  /*background-color: #FFDDD4;*/
  color: #EAA79F;
}

.banner {
  width: 100%;
  display: flex;
  justify-content: center;
  background-image: url("../img/slide-d.webp");
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 1540px) {
  .banner {
    background-image: url("../img/slide-t.webp");
  }
}
@media only screen and (max-width: 1090px) {
  .banner {
    background-image: url("../img/slide-m.webp");
    background-position: center;
    background-size: cover;
  }
}

.banner__main {
  background-color: #f1f1e9db;
  border-radius: 25px;
  padding: clamp(20px, 5vw, 40px);
  display: flex;
  margin-top: clamp(120px, 16vw, 150px);
  margin-right: clamp(0px, 0px + 20vw, 350px);
  margin-bottom: 62px;
  flex-direction: column;
  box-shadow: 1px 3px 10px #9A9AA0;
  width: 80%;
  max-width: 512px;
  gap: 30px;
}
@media only screen and (max-width: 1090px) {
  .banner__main {
    margin-right: 0px;
  }
}

.banner__titulo {
  color: #EAA79F;
  font-size: clamp(28px, 3vw, 40px);
}
@media only screen and (max-width: 1090px) {
  .banner__titulo {
    text-align: center;
  }
}

.banner__texto {
  color: #9A9AA0;
  font-size: clamp(15px, 4vw, 20px);
}
@media only screen and (max-width: 1090px) {
  .banner__texto {
    text-align: center;
  }
}

.servicios {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 75px;
}

.info__titulo {
  font-size: clamp(36px, 5vw, 40px);
  text-align: center;
  width: 85%;
}

.servicios__main {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1920px;
  justify-content: space-evenly;
  margin-top: 60px;
  gap: 24px;
  padding: 0px 20px;
}

.servicios__imgCont {
  display: flex;
  width: 20%;
  min-width: 250px;
  flex-direction: column;
  gap: 15px;
}

.servicios__texto {
  font-size: 20px;
  color: #9A9AA0;
  text-align: center;
}

.incluye {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
  padding-top: 50px;
  padding-bottom: 80px;
  background-color: #f1f1e9;
}

.incluye__main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 90%;
  gap: 25px 20px;
  align-items: start;
  justify-items: center;
}
@media only screen and (max-width: 1024px) {
  .incluye__main {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 720px) {
  .incluye__main {
    grid-template-columns: 1fr;
  }
}

.incluye__cont {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 30px 0px;
  align-items: center;
  background-color: #fff;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 1px 3px 10px #9A9AA0;
  height: 90%;
}
@media only screen and (max-width: 1090px) {
  .incluye__cont {
    aspect-ratio: unset;
  }
}
@media only screen and (max-width: 720px) {
  .incluye__cont {
    justify-self: center;
  }
}

.incluye-titulo {
  font-size: 24px;
  text-align: center;
}

.turnos {
  grid-area: turnos;
  justify-self: end;
  text-align: end;
  display: flex;
  align-items: end;
}
@media only screen and (max-width: 1024px) {
  .turnos {
    align-items: center;
  }
}
@media only screen and (max-width: 720px) {
  .turnos {
    justify-self: center;
  }
}

.incluye__icono {
  width: 65px;
}

.incluye__texto {
  color: #9A9AA0;
  font-size: 20px;
  text-align: center;
}

.notificaciones {
  width: 90%;
  max-width: 1240px;
  padding: clamp(45px, 5vw, 60px) 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.notificaciones-main {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  grid-template-areas: "celu texto" "celu texto";
  gap: 40px;
}
@media only screen and (max-width: 1024px) {
  .notificaciones-main {
    grid-template-columns: 1fr;
    grid-template-areas: "celu" "texto";
  }
}

.notificaciones-textCont {
  grid-area: texto;
  align-self: center;
}
@media only screen and (max-width: 1024px) {
  .notificaciones-textCont {
    text-align: center;
    padding-bottom: 40px;
  }
}

.notificaciones-mock {
  grid-area: celu;
  width: 75%;
  justify-self: flex-end;
}
@media only screen and (max-width: 1024px) {
  .notificaciones-mock {
    width: clamp(150px, 35vw, 240px);
    justify-self: center;
  }
}

.notificaciones-titulo {
  font-size: clamp(24px, 5vw, 56px);
  white-space: pre-wrap;
}
@media only screen and (max-width: 1024px) {
  .notificaciones-titulo {
    text-align: center;
    padding-bottom: 15px;
  }
}

.notificaciones-text {
  font-size: clamp(16px, 4vw, 24px);
  color: #9A9AA0;
}

.contacto {
  width: 100%;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url("../img/background-2.webp");
  padding-bottom: 100px;
  background-position: center center;
}
.contacto .info__titulo {
  color: #fff;
  margin-top: 60px;
}

.contacto__main {
  background-color: #f1f1e9;
  border-radius: 25px;
  padding: clamp(20px, 5vw, 40px);
  display: flex;
  align-items: center;
  margin-top: 60px;
  flex-direction: column;
  box-shadow: 1px 3px 10px #9A9AA0;
  max-width: 670px;
  width: 90%;
  gap: 30px;
}
.contacto__main .categoria__textarea {
  width: 100%;
}

.footer {
  background-color: #393B50;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 90;
}

.footer__main {
  width: 90%;
  max-width: 1240px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas: "logo sus contacto" "logo sus redes";
  gap: 15px;
  padding: 25px 0px;
  justify-items: center;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .footer__main {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas: "logo contacto" "redes sus";
    gap: 0;
  }
}
@media only screen and (max-width: 720px) {
  .footer__main {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 0.5fr 1fr 1fr;
    grid-template-areas: "logo" "redes" "contacto" "sus";
    gap: 8px;
  }
}

.footer__logo {
  grid-area: logo;
  width: 215px;
}
@media only screen and (max-width: 1024px) {
  .footer__logo {
    align-self: flex-end;
  }
}
@media only screen and (max-width: 720px) {
  .footer__logo {
    width: 280px;
    align-self: center;
  }
}

.footer__redesCont {
  grid-area: redes;
  display: flex;
  gap: 10px;
  width: 215px;
  justify-content: space-around;
}
@media only screen and (max-width: 1024px) {
  .footer__redesCont {
    align-self: flex-start;
  }
}
@media only screen and (max-width: 720px) {
  .footer__redesCont {
    justify-content: space-between;
    width: 280px;
    align-self: center;
  }
}

.footer__redes {
  font-size: clamp(14px, 1.8vw, 21px);
  padding: 10px;
  border: 2px solid #EAA79F;
  border-radius: 50px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(30px, 3vw, 40px);
  height: clamp(30px, 3vw, 40px);
  aspect-ratio: 1/1;
}
.footer__redes i {
  color: #EAA79F;
}
.footer__redes:hover {
  background-color: #EAA79F;
}
.footer__redes:hover i {
  color: #f1f1e9;
}

.footer-sus {
  grid-area: sus;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media only screen and (max-width: 1024px) {
  .footer-sus {
    align-self: flex-start;
    margin-top: -30px;
  }
}
@media only screen and (max-width: 720px) {
  .footer-sus {
    align-self: center;
    margin-top: 0;
  }
}

.footer-sus-titulo {
  font-size: 18px;
  color: #f1f1e9;
}

.footer-contacto {
  grid-area: contacto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media only screen and (max-width: 1024px) {
  .footer-contacto {
    align-self: flex-end;
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 720px) {
  .footer-contacto {
    align-self: center;
    padding-bottom: 0px;
  }
}

.footer-marca {
  text-align: center;
  background-color: #2b2f51;
  width: 100%;
  margin-top: 15px;
}

.footer-cont-info {
  display: flex;
  gap: 5px;
  align-items: center;
}
@media only screen and (max-width: 720px) {
  .footer-cont-info {
    width: 280px;
  }
}
.footer-cont-info p {
  color: #EAA79F;
  font-size: clamp(14px, 3vw, 18px);
}
.footer-cont-info a {
  color: #EAA79F;
  cursor: pointer;
  font-size: clamp(14px, 3vw, 18px);
}
@media only screen and (max-width: 720px) {
  .footer-cont-info a {
    font-size: 28px;
  }
}
.footer-cont-info i {
  color: #f1f1e9;
}

.footer-form {
  display: flex;
}

.footer-input {
  padding: 12px;
  padding-left: 15px;
  border-bottom-left-radius: 50px;
  border-top-left-radius: 50px;
  border: none;
  outline: none;
  color: #393B50;
  width: 210px;
}

.sus-btn {
  background-color: #EAA79F;
  color: #f1f1e9;
  border: 2px solid #EAA79F;
  outline: none;
  padding: 7px;
  padding-right: 15px;
  border-bottom-right-radius: 50px;
  border-top-right-radius: 50px;
  width: 70px;
  cursor: pointer;
}

.body__tienda {
  background-color: #f1f1e9;
}
.body__tienda .main__container {
  background-color: #fff;
  padding: clamp(20px, 3vw, 50px);
  margin: clamp(30px, 8vw, 45px) 0px;
}

@media only screen and (min-width: 1120px) {
  .tienda-config .tienda-header .header__menuBackground {
    display: block;
  }
}
@media only screen and (max-width: 1120px) {
  .tienda-config .tienda-header nav {
    display: none;
  }
}
.tienda-config .tienda-header.active nav {
  display: none;
}
@media only screen and (max-width: 1120px) {
  .tienda-config .btn__menu--abrir {
    display: flex;
    top: 84px;
    right: 10%;
    z-index: 10;
  }
}
.tienda-config .tienda {
  max-width: 850px;
}
.tienda-config .tienda__perfil {
  height: clamp(350px, 50vw, 460px);
}

.tienda {
  width: 90%;
  max-width: 1024px;
  margin-top: 75px;
}
@media only screen and (max-width: 1490px) {
  .tienda {
    margin-left: 150px;
  }
}
@media only screen and (max-width: 1320px) {
  .tienda {
    margin-left: 300px;
    width: 70%;
  }
}
@media only screen and (max-width: 1120px) {
  .tienda {
    margin-left: 0px;
    width: 90%;
  }
}

.tienda__perfil {
  position: relative;
  display: flex;
  overflow: hidden;
  height: clamp(350px, 50vw, 500px);
}

.tienda__portada {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 0;
}
.tienda__portada .editar__foto {
  top: 15px;
  right: 15px;
}

.tienda__fotoCont {
  position: relative;
  width: 140px;
  margin-bottom: 10px;
}
.tienda__fotoCont .editar__foto {
  right: 5px;
  bottom: 5px;
}

.tienda__foto {
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  width: 150px;
}

.editar__foto {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background-color: #393B50;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  cursor: pointer;
}

.tienda__info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-around;
  width: 90%;
  position: absolute;
  bottom: 15%;
  z-index: 10;
  gap: 20px;
}
@media only screen and (max-width: 720px) {
  .tienda__info {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

@media only screen and (max-width: 720px) {
  .tienda__usuario {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.tienda__nombreCont {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tienda__nombreCont .fa-pencil {
  font-size: 20px;
}

.fa-share-alt {
  color: #393B50;
  font-size: 18px;
  cursor: pointer;
}

.tienda__nombre {
  color: #EAA79F;
  font-size: clamp(18px, 3vw, 24px);
}

.tienda__titulo {
  color: #EAA79F;
  align-self: flex-start;
}
@media only screen and (max-width: 720px) {
  .tienda__titulo {
    align-self: center;
  }
}

.tienda__descripcion {
  color: #393B50;
  font-weight: 900;
  font-size: clamp(12px, 3vw, 16px);
}

.tienda__icono {
  color: #EAA79F;
  font-size: 16px;
  text-align: center;
  width: 30px;
}

.tienda__texto {
  color: #9A9AA0;
  width: 90%;
  text-align: justify;
  font-size: clamp(12px, 3vw, 16px);
}

.contacto__info {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media only screen and (max-width: 720px) {
  .contacto__info .tienda__texto {
    display: none;
  }
}

.tienda__contacto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
@media only screen and (max-width: 720px) {
  .tienda__contacto {
    flex-direction: row;
  }
}

.tienda__btnCont {
  display: flex;
  flex-wrap: wrap;
  align-self: flex-start;
  gap: 20px;
}
@media only screen and (max-width: 720px) {
  .tienda__btnCont {
    align-self: center;
  }
}

.separador {
  width: 100%;
  height: 2px;
  background-color: #f1f1e9;
  margin: 20px 0px 30px;
}

.tienda__btn {
  width: 120px;
  padding: 5px 20px;
  border-radius: 50px;
  background-color: #fff;
  font-size: clamp(12px, 3vw, 16px);
  color: #EAA79F;
  border: 1px solid #EAA79F;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  outline: none;
}
.tienda__btn:hover {
  background-color: #393B50;
  border: none;
  color: #fff;
}

.tienda__servCont {
  display: flex;
  background-color: #f1f1e9;
  border-radius: 20px;
  margin-top: 30px;
  padding: clamp(15px, 3vw, 30px);
  gap: 20px;
  align-items: center;
}
@media only screen and (max-width: 720px) {
  .tienda__servCont {
    flex-direction: column;
  }
}

@media only screen and (max-width: 720px) {
  .servicio__imgCont {
    align-self: center;
  }
}

.servicio__info {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media only screen and (max-width: 720px) {
  .servicio__info {
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
}
.servicio__info .fa-pencil {
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 20px;
}

.servicios__titulo {
  font-size: clamp(18px, 3vw, 24px);
}

.servicios__rubro {
  background-color: #fff;
  color: #EAA79F;
  border: 1px solid #EAA79F;
  border-radius: 50px;
  padding: 5px;
  width: max-content;
  font-size: 12px;
}

.servicio__detalle {
  display: grid;
  align-items: center;
  gap: 25px;
  grid-template-areas: "precio duracion reserva";
  grid-template-columns: 100px 100px 1fr;
}
@media only screen and (max-width: 720px) {
  .servicio__detalle {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "precio duracion" "reserva reserva";
  }
}
.servicio__detalle .btn {
  grid-area: reserva;
  justify-self: flex-end;
  max-width: 180px;
}

.servicios__precioCont {
  display: flex;
  align-items: center;
  gap: 5px;
  grid-area: precio;
}
.servicios__precioCont .fa-usd {
  color: #EAA79F;
}

.servicio__duracionCont {
  grid-area: duracion;
  display: flex;
  align-items: center;
  gap: 5px;
}
.servicio__duracionCont .fa-clock-o {
  color: #EAA79F;
}

.servicio__duracion {
  color: #393B50;
  font-size: clamp(14px, 3vw, 18px);
}

.servicio__img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1/1;
  width: 156px;
  position: relative;
}
.servicio__img .editar__foto {
  bottom: 10px;
  right: 10px;
}

.servicios__precio {
  color: #393B50;
}
.servicios__precio span {
  color: #EAA79F;
}

.main-desplegable {
  display: grid;
  grid-template-rows: max-content 0fr;
  overflow: hidden;
  position: relative;
  align-items: start;
  transition: grid-template-rows 0.4s linear;
  padding: clamp(12px, 3vw, 20px) clamp(20px, 3vw, 50px) !important;
}

.main-desplegable--l2 {
  display: grid;
  grid-template-rows: max-content 0fr;
  overflow: hidden;
  position: relative;
  align-items: start;
  transition: grid-template-rows 0.4s linear;
  padding: 13px clamp(20px, 3vw, 50px) !important;
}

.main-desplegable.expanded {
  grid-template-rows: max-content 1fr;
}
.main-desplegable.expanded .desplegable-head .fa {
  transform: rotate(90deg);
}

.main-desplegable--l2.expanded {
  grid-template-rows: max-content 1fr;
}
.main-desplegable--l2.expanded .desplegable-head--l2 .fa {
  transform: rotate(90deg);
}

.desplegable-cont {
  overflow: hidden;
  position: relative;
}

.desplegable-cont--l2 {
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.desplegable-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  width: 100%;
}
.desplegable-head .fa {
  font-size: 32px;
  font-weight: 800;
  color: #EAA79F;
  transition: all 0.3s linear;
}

.desplegable-head--l2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  width: 100%;
}
.desplegable-head--l2 .fa {
  font-size: 32px;
  font-weight: 800;
  color: #EAA79F;
  transition: all 0.3s linear;
}

.tienda__ubicacion {
  position: relative;
}
.tienda__ubicacion .fa-pencil {
  position: absolute;
  top: 26px;
  right: 0px;
  font-size: 20px;
}

.tienda__ubicacionCont {
  display: flex;
  gap: 60px;
  align-items: center;
}
@media only screen and (max-width: 720px) {
  .tienda__ubicacionCont {
    flex-direction: column;
    gap: 25px;
  }
}

.tienda__direccionCont {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.tienda__direccion .tienda__texto {
  margin-left: 30px;
}

.tienda__sucursalCont {
  display: flex;
  align-items: center;
}

.tienda__mapaCont {
  width: 100%;
  max-width: 475px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 1px 1px 4px #9A9AA0;
}

.tienda__galeriaCont {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin: 30px;
}
@media only screen and (max-width: 990px) {
  .tienda__galeriaCont {
    grid-template-columns: 1fr 1fr 1fr;
    margin: 20px;
  }
}
@media only screen and (max-width: 630px) {
  .tienda__galeriaCont {
    grid-template-columns: 1fr 1fr;
    margin: 10px;
  }
}

@media only screen and (max-width: 990px) {
  .galeria-responsive {
    display: none;
  }
}

.tienda__galeriaFoto {
  width: 100%;
  max-width: 200px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  aspect-ratio: 1/1;
}
.tienda__galeriaFoto img {
  object-fit: cover;
  height: 100%;
}
.tienda__galeriaFoto .editar__foto {
  bottom: 10px;
  right: 10px;
}

.info-config-modal {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #393B50db;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.info-config-modal.active {
  opacity: 1;
  visibility: visible;
  transition: all 0.2s ease-in-out;
}

.info-config-modal-body {
  width: 90%;
  max-width: 1024px;
  background-color: #fff;
  border-radius: 25px;
  padding: 45px clamp(15px, 3vw, 45px);
  position: relative;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.3);
  transition: all 0.3s ease-out;
}
.info-config-modal-body .separador {
  background-color: #9A9AA0;
}
.info-config-modal.active .info-config-modal-body {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.info-config-modal-title {
  color: #9A9AA0;
  font-size: clamp(18px, 4vw, 36px);
}

.info-config-modal-formCont {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-config-modal-inputCont {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
@media only screen and (max-width: 720px) {
  .info-config-modal-inputCont {
    display: flex;
    flex-direction: column;
  }
}

.info-config-modal-dato {
  color: #9A9AA0;
  font-weight: 800;
}

.info-config-modal-input {
  width: 100%;
  border: 1px solid #9A9AA0;
  padding: 5px 15px;
  border-radius: 50px;
  color: #9A9AA0;
  font-size: clamp(12px, 3vw, 16px);
}

.info-config-modal-cierre {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #EAA79F;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}
.info-config-modal-cierre .fa-times {
  color: #fff;
  display: block;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  font-size: 21px;
}

.info-config-modal-btnCont {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 35px;
}
@media only screen and (max-width: 720px) {
  .info-config-modal-btnCont {
    justify-content: center;
  }
}
.info-config-modal-btnCont .btn {
  max-width: 150px;
}

.servicio-config-modal {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #393B50db;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.servicio-config-modal.active {
  opacity: 1;
  visibility: visible;
  transition: all 0.2s ease-in-out;
}

.servicio-config-modal-body {
  width: 90%;
  max-width: 1024px;
  background-color: #fff;
  border-radius: 25px;
  padding: 45px clamp(15px, 3vw, 45px);
  position: relative;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.3);
  transition: all 0.3s ease-out;
}
.servicio-config-modal-body .separador {
  background-color: #9A9AA0;
}
.servicio-config-modal.active .servicio-config-modal-body {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.servicio-config-modal-title {
  color: #9A9AA0;
  font-size: clamp(18px, 4vw, 36px);
}

.servicio-config-modal-formCont {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.servicio-config-modal-inputCont {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
@media only screen and (max-width: 720px) {
  .servicio-config-modal-inputCont {
    display: flex;
    flex-direction: column;
  }
}

.servicio-config-modal-dato {
  color: #9A9AA0;
  font-weight: 800;
}

.servicio-config-modal-input {
  width: 100%;
  border: 1px solid #9A9AA0;
  padding: 5px 15px;
  border-radius: 50px;
  color: #9A9AA0;
  font-size: clamp(12px, 3vw, 16px);
}

.servicio-config-modal-cierre {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #EAA79F;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}
.servicio-config-modal-cierre .fa-times {
  color: #fff;
  display: block;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  font-size: 21px;
}

.servicio-config-modal-btnCont {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 35px;
}
@media only screen and (max-width: 720px) {
  .servicio-config-modal-btnCont {
    justify-content: center;
  }
}
.servicio-config-modal-btnCont .btn {
  max-width: 150px;
}

.servicio-config-modal-textarea {
  resize: none;
  outline: none;
  color: #9A9AA0;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid #9A9AA0;
}

.servicio-config-modal-select {
  padding: 10px;
  outline: none;
  border: 1px solid #9A9AA0;
  border-radius: clamp(15px, 3vw, 50px);
  color: #EAA79F;
  cursor: pointer;
  font-size: clamp(12px, 3vw, 16px);
  appearance: none;
}
.servicio-config-modal-select option {
  color: #EAA79F;
}

.servicio-config-modal-select::part(button) {
  background-color: #EAA79F;
  cursor: pointer;
  font-size: 45px;
  color: #393B50;
  padding-right: 25px;
}

.compartir-modal {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #393B50db;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.compartir-modal.active {
  opacity: 1;
  visibility: visible;
  transition: all 0.2s ease-in-out;
}

.compartir-modal-body {
  width: 95%;
  max-width: 518px;
  background-color: #fff;
  border-radius: 25px;
  padding: 45px clamp(12px, 3vw, 40px);
  position: relative;
  opacity: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
  visibility: hidden;
  transform: scale(0.3);
  transition: all 0.3s ease-out;
}
.compartir-modal.active .compartir-modal-body {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.compartir-modal-title {
  font-size: clamp(18px, 3vw, 24px);
}

.compartir-modal-redes {
  background-color: #f1f1e9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 50px;
  width: 98%;
  max-width: 470px;
  align-self: center;
  padding: 12px;
}
.compartir-modal-redes i {
  font-size: clamp(24px, 5.8vw, 32px);
  padding: 10px;
  border: 2px solid #EAA79F;
  color: #fff;
  background-color: #EAA79F;
  border-radius: 50px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(40px, 10vw, 55px);
  height: clamp(40px, 10vw, 55px);
  aspect-ratio: 1/1;
  cursor: pointer;
}
.compartir-modal-redes i:hover {
  background-color: #fff;
  color: #EAA79F;
}

.compartir-modal-linkCont {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 98%;
  max-width: 470px;
  align-self: center;
}
.compartir-modal-linkCont .fa-clone {
  color: #393B50;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  border: 2px solid #393B50;
  width: 49px;
  height: 49px;
  aspect-ratio: 1/1;
  font-weight: 900;
  font-size: 18px;
}

.compartir-modal-link {
  padding: 12px;
  background-color: #393B50;
  border-radius: 50px;
  width: 100%;
  text-align: center;
}

/*
.body-upload{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #393b50c9;
}

.div-main-upload{
    background-color: $claro;
    border-radius: 30px;
    margin-top: 100px;
    margin-left: 15px;
    margin-right: 15px;
    padding-bottom: 50px;
    width: 90%;
    min-width: 320px;
    max-width: 960px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    overflow: hidden;
}

.div-but-changeimagen{
    width: 100%;
    background-color: $azul;
    padding: 30px 0px;
}

.but-changeimagen{
    margin: auto; 
    visibility: hidden;
    max-width: 220px;
}
/*
.upload-demo.ready .upload-result {
    display: inline-block;    
}

.upload-demo-wrap {
    width: 300px;
    height: 300px;
    margin: 0px auto;
}

.image-preview{
    display: none;
}

.input-file-upload{
    display: none;
}

.div-upload-btnsContainer{
    width: 90%;
    display: flex;
    gap: 20px;
    max-width: 490px;
    margin-top: 40px;

    .but-upload-confirmar{
        visibility: hidden;
    }
}

.croppie-container .cr-viewport, .croppie-container .cr-resizer{
    width: 300px;
    height: 300px;
    border: 2px solid #393b50 !important;
}
*/
.body-mapLocation {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(57, 59, 80, 0.7882352941);
}

.div-mapLocation {
  width: 90%;
  height: 300px;
  display: float;
}

.div_main_map {
  background-color: #f1f1e9;
  color: #EAA79F;
  border-radius: 30px;
  margin-top: 100px;
  margin-left: 15px;
  margin-right: 15px;
  padding-bottom: 50px;
  width: 90%;
  min-width: 320px;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  overflow: hidden;
}

.map-btnContainer {
  display: flex;
  gap: 20px;
}

.tit_maps {
  color: #fff;
  text-align: center;
  font-size: clamp(14px, 3vw, 18px);
  font-weight: 400;
  width: 100%;
  background: #393B50;
  padding: 30px 0px;
}

.dir-maps {
  color: #EAA79F;
  text-align: center;
  font-size: clamp(12px, 3vw, 16px);
}

.txt-takeaddress {
  width: 80%;
  padding: 5px;
  margin: 10px;
  color: #EAA79F;
  font-size: clamp(12px, 3vw, 15px);
}

.map-dirContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 90%;
  max-width: 600px;
}

.panel-body {
  background-color: #f1f1e9;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 1120px) {
  .panel-body .tienda-header .header__menuBackground {
    display: block;
  }
}
@media only screen and (max-width: 1120px) {
  .panel-body .tienda-header nav {
    display: none;
  }
}
.panel-body .tienda-header.active nav {
  display: none;
}
@media only screen and (max-width: 1120px) {
  .panel-body .btn__menu--abrir {
    display: flex;
    top: 84px;
    right: 10%;
    z-index: 10;
  }
}

.panel-main {
  width: 80%;
  max-width: 850px;
  margin-top: 85px;
}
@media only screen and (max-width: 1490px) {
  .panel-main {
    margin-left: 150px;
  }
}
@media only screen and (max-width: 1320px) {
  .panel-main {
    margin-left: 300px;
    width: 70%;
  }
}
@media only screen and (max-width: 1120px) {
  .panel-main {
    margin-left: 0px;
    width: 90%;
  }
}

.panel-reservas {
  width: 100%;
  background-color: #FFDDD4;
  margin-top: 45px;
  border-radius: clamp(15px, 3vw, 50px);
  padding: clamp(20px, 3vw, 45px);
}
.panel-reservas .separador {
  background-color: #f1f1e9;
}

.reservas-title {
  font-size: clamp(18px, 4vw, 36px);
  color: #EAA79F;
  font-weight: 800;
}

.reservas-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-size: clamp(12px, 3vw, 16px);
}

.reserva-cont {
  display: flex;
  align-items: center;
  padding: 15px clamp(10px, 3vw, 25px);
  background-color: #EAA79F;
  border-radius: clamp(15px, 3vw, 50px);
  width: 100%;
  gap: 12px 35px;
  flex-wrap: wrap;
}

.reserva-info {
  display: flex;
  align-items: center;
  gap: 7px;
}

.reserva-info-text {
  font-size: clamp(12px, 3vw, 16px);
}

.panel-turnos {
  width: 100%;
  background-color: #fff;
  margin-top: 45px;
  border-radius: clamp(15px, 3vw, 50px);
  padding: clamp(20px, 3vw, 45px);
}

.turnos-title {
  font-size: clamp(18px, 4vw, 36px);
  color: #EAA79F;
  font-weight: 800;
}

.turnos-body {
  background-color: #f1f1e9;
  margin-top: clamp(15px, 3vw, 25px);
  border-radius: clamp(15px, 3vw, 30px);
}

.turnos-dia-title {
  font-size: clamp(16px, 3vw, 24px);
  color: #EAA79F;
  font-weight: 600;
}

.reserva-info-icon {
  color: #FFDDD4;
}

.turno-info-icon {
  color: #EAA79F;
}

.turno-cont {
  display: flex;
  align-items: center;
  padding: 8px clamp(10px, 3vw, 25px);
  background-color: #fff;
  border-radius: clamp(15px, 3vw, 50px);
  width: 100%;
  gap: 12px 35px;
  flex-wrap: wrap;
}
.turno-cont:first-of-type {
  margin-top: 15px;
}

.turno-info {
  display: flex;
  align-items: center;
  gap: 7px;
}

.turno-info-text {
  color: #9A9AA0;
  font-size: clamp(12px, 3vw, 16px);
}

.panel-calendario {
  width: 100%;
  background-color: #fff;
  margin-top: 45px;
  margin-bottom: 60px;
  border-radius: clamp(15px, 3vw, 50px);
  padding: clamp(20px, 3vw, 45px);
}

.calendario-title {
  font-size: clamp(18px, 4vw, 36px);
  color: #EAA79F;
  font-weight: 800;
}

.calendario-body {
  width: 100%;
  background-color: #FFDDD4;
  margin-top: 35px;
  border-radius: clamp(15px, 3vw, 50px);
  padding: 35px clamp(15px, 3vw, 35px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.calendario-selects-cont {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 3vw, 20px);
}
.calendario-selects-cont .custom-selectCont {
  min-width: 250px;
  flex: 1;
}

.calendario-semana-cont {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  justify-items: center;
  width: 100%;
  background-color: #EAA79F;
  border-radius: clamp(15px, 3vw, 50px);
  padding: clamp(5px, 3vw, 20px);
  gap: 5px;
}

.calendario-semana-dia {
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendario-dia-nombre {
  color: #fff;
  font-size: clamp(13px, 1.6vw, 18px);
  font-weight: 700;
}
@media only screen and (max-width: 750px) {
  .calendario-dia-nombre {
    display: none;
  }
}

.abrev {
  display: none;
}
@media only screen and (max-width: 750px) {
  .abrev {
    display: block;
  }
}

.calendario-dias-cont {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: clamp(5px, 2vw, 15px);
  width: 100%;
  justify-items: center;
  padding: 0 clamp(10px, 2vw, 20px);
}

.calendario-diaInd-cont {
  width: clamp(27px, 7vw, 84px);
  height: clamp(45px, 7vw, 84px);
  background-color: #fff;
  border-radius: clamp(3px, 1vw, 15px);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(3px, 0.5vw, 13px);
  overflow: hidden;
  border: 1px solid #EAA79F;
}

.diaInd-des {
  background-color: #f1f1e9;
  border: none;
  cursor: auto;
}

.calendario-dia-numero {
  background-color: #393B50;
  color: #fff;
  width: 100%;
  text-align: center;
  padding: clamp(0.1px, 0.3vw, 3px);
  font-size: clamp(12px, 2vw, 16px);
}

.diaNum-des {
  background-color: #9A9AA0;
  color: #f1f1e9;
}

.calendario-dia-turno {
  color: #EAA79F;
  text-align: center;
  font-weight: 800;
  font-size: clamp(12px, 2vw, 21px);
}

.diaTur-des {
  color: #9A9AA0;
}

.panel-turnos-modal {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #393B50db;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.panel-turnos-modal.active {
  opacity: 1;
  visibility: visible;
  transition: all 0.2s ease-in-out;
}

.turnos-modal-body {
  width: 90%;
  max-width: 1024px;
  background-color: #fff;
  border-radius: 25px;
  padding: 45px clamp(15px, 3vw, 45px);
  position: relative;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.3);
  transition: all 0.3s ease-out;
}
.turnos-modal-body .separador {
  background-color: #9A9AA0;
}
.panel-turnos-modal.active .turnos-modal-body {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.turnos-modal-title {
  color: #9A9AA0;
  font-size: clamp(18px, 4vw, 36px);
}

.turnos-modal-main {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media only screen and (max-width: 640px) {
  .turnos-modal-main {
    gap: 25px;
  }
}

.turnos-modal-turno {
  display: grid;
  grid-template-columns: 0.5fr 1fr 1fr;
  align-items: center;
  align-content: center;
  gap: 10px;
  font-size: clamp(12px, 3vw, 16px);
}
@media only screen and (max-width: 640px) {
  .turnos-modal-turno {
    grid-template-columns: 0.7fr 1fr;
    grid-template-areas: "hora hora" "cliente servicio";
    gap: 0px;
  }
}

.turnos-modal-hora {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media only screen and (max-width: 640px) {
  .turnos-modal-hora {
    grid-area: hora;
  }
}
.turnos-modal-hora .fa-clock-o {
  color: #EAA79F;
}

.modal-hora-numero {
  color: #9A9AA0;
  font-weight: 800;
}

.turno-modal-cliente {
  color: #9A9AA0;
  font-weight: 800;
}
@media only screen and (max-width: 640px) {
  .turno-modal-cliente {
    grid-area: cliente;
  }
}

.turno-modal-servicio {
  color: #9A9AA0;
}
@media only screen and (max-width: 640px) {
  .turno-modal-servicio {
    grid-area: servicio;
  }
}

.turnos-modal-cierre {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #EAA79F;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}
.turnos-modal-cierre .fa-times {
  color: #fff;
  display: block;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  font-size: 21px;
}

.panel-aside {
  background-color: #393B50;
  position: fixed;
  top: 0;
  left: 0;
  padding: 125px 25px 0px 25px;
  width: 20%;
  min-width: 290px;
  height: 100vh;
  z-index: 90;
  transition: transform 0.4s ease, padding 0.15s ease;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.panel-aside::-webkit-scrollbar {
  display: none;
}
@media only screen and (max-width: 1120px) {
  .panel-aside {
    width: 75%;
    max-width: 290px;
    min-width: unset;
    z-index: 1000;
    padding-top: 25px;
  }
}
.panel-aside .btn--rosa {
  font-size: 13px;
  margin-bottom: 25px;
  max-width: 200px;
}
.panel-aside .btn--rosa .fa {
  color: #f1f1e9;
}
.panel-aside .btn--rosa:hover .fa {
  color: #EAA79F;
}
.panel-aside .separador {
  background-color: #9A9AA0;
}
@media only screen and (max-width: 1120px) {
  .panel-aside {
    transform: translateX(-100%);
  }
}

@media only screen and (max-width: 1120px) {
  .tienda-header.active ~ .panel-aside {
    transform: translateX(0%);
  }
}

.panel-menu-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.panel-menu-perfilimg {
  width: 50%;
  max-width: 110px;
}

.panel-menu-perfilinfo {
  margin-bottom: 25px;
}

.panel-perfilinfo-nombre {
  color: #EAA79F;
  font-weight: 800;
  font-size: 22px;
}

.panel-perfilinfo-desc {
  font-weight: 800;
  color: #fff;
}

.panel-menu-nav-item {
  list-style-type: none;
}
.panel-menu-nav-item a {
  color: #9A9AA0;
}
.panel-menu-nav-item a:hover {
  color: #EAA79F;
}
.panel-menu-nav-item .link-active {
  color: #fff;
}

.panel-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.abonos-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.abonos-header {
  background-color: #EAA79F;
  box-shadow: 0px -5px 18px #393B50;
}

.abonos-main {
  padding-top: clamp(130px, 15vw, 200px);
}

.abonos-main {
  width: 90%;
  max-width: 1920px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.abonos-title {
  text-align: center;
  color: #EAA79F;
  font-size: clamp(24px, 5vw, 40px);
}

.abonos-titleCont {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.abonos-subTitle {
  text-align: center;
  color: #9A9AA0;
  font-size: clamp(16px, 3vw, 24px);
}

.abonos-switchCont {
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.switch-title {
  text-align: center;
  color: #393B50;
  font-weight: 600;
  font-size: clamp(16px, 3vw, 24px);
}

.abonos-switch {
  display: none;
}

.switch-container {
  width: calc(190px + 10vw);
  max-width: 350px;
  height: 50px;
  border: 1px solid #9A9AA0;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
}

.switch-toggle {
  width: calc(190px + 10vw);
  max-width: 350px;
  height: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-items: center;
  padding: 0 25px;
  cursor: pointer;
  gap: 35px;
}

.switch-slide {
  width: calc((190px + 10vw) / 2);
  max-width: 175px;
  height: 55px;
  position: absolute;
  border-radius: 50px;
  left: 0px;
  top: -4px;
  background-color: #393B50;
  transition: transform 0.4s;
}

.switch-text {
  font-size: clamp(16px, 3vw, 24px);
  font-weight: 500;
  z-index: 10;
  text-align: center;
  transition: color 0.4s;
}

.mensual {
  color: #fff;
}

.anual {
  color: #9A9AA0;
}

.abonos-switch:checked + .switch-container .switch-slide {
  transform: translateX(100%);
}

.abonos-switch:checked + .switch-container .mensual {
  color: #9A9AA0;
}

.abonos-switch:checked + .switch-container .anual {
  color: #fff;
}

.abonos-cards {
  margin-top: 45px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.abonos-cardsLbls {
  display: none;
  gap: 25px;
  justify-content: center;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 12px;
}
@media only screen and (max-width: 1024px) {
  .abonos-cardsLbls {
    display: flex;
  }
}

.card-radio-lbl {
  color: #EAA79F;
  font-size: clamp(16px, 3vw, 24px);
  font-weight: 700;
  text-align: center;
  position: relative;
}
.card-radio-lbl::before {
  content: "";
  height: 4px;
  background-color: #EAA79F;
  position: absolute;
  bottom: -5px;
  right: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  transition: all 0.4s ease;
}

.card-radio {
  display: none;
}

.abonos-cardsCont {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
  position: relative;
  height: 830px;
}
@media only screen and (max-width: 1024px) {
  .abonos-cardsCont {
    display: flex;
    justify-content: center;
    width: 100%;
    height: clamp(650px, 90vw, 750px);
  }
}

.abonos-card {
  border-radius: 25px;
  box-shadow: 0px 0px 10px 1px #9A9AA0;
  height: 100%;
  position: relative;
  background-color: #f1f1e9;
}
@media only screen and (max-width: 1024px) {
  .abonos-card {
    position: absolute;
    width: 100%;
    max-width: 450px;
    transition: all 0.4s ease;
    transform: scale(0.8);
    opacity: 0;
    visibility: hidden;
  }
}

#card_lite:checked ~ .abonos-cardsCont .abonos-card:nth-of-type(1) {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

#card_pro:checked ~ .abonos-cardsCont .abonos-card:nth-of-type(2) {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

#card_vip:checked ~ .abonos-cardsCont .abonos-card:nth-of-type(3) {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

#card_lite:checked ~ .abonos-cardsLbls .card-radio-lbl:nth-of-type(1)::before {
  width: 100%;
}

#card_pro:checked ~ .abonos-cardsLbls .card-radio-lbl:nth-of-type(2)::before {
  width: 100%;
}

#card_vip:checked ~ .abonos-cardsLbls .card-radio-lbl:nth-of-type(3)::before {
  width: 100%;
}

.card-popular {
  border: 2px solid #EAA79F;
}

.card-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
  padding: 40px clamp(10px, 2vw, 40px);
  height: clamp(275px, 40vw, 350px);
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}
.card-head .btn {
  margin-top: 12px;
  width: clamp(155px, 30vw, 200px);
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 600;
}

.head-gratis {
  background-color: #f2c1c0;
}

.head-pro {
  background-color: #eaa79f;
}

.head-vip {
  background-color: #e29393;
}

.card-title {
  color: #fff;
  font-size: clamp(32px, 3vw, 46px);
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .card-title {
    font-size: clamp(32px, 5vw, 46px);
  }
}

.card-price {
  color: #393B50;
  text-align: center;
  font-size: clamp(40px, 3vw, 60px);
  font-weight: 700;
}

.card-desc {
  font-size: clamp(16px, 3vw, 24px);
  text-align: center;
  color: #fff;
}

.popular-top {
  position: absolute;
  padding: 10px 25px;
  text-align: center;
  border: 2px solid #EAA79F;
  border-radius: 50px;
  top: -26px;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #fff;
  color: #EAA79F;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 400;
  width: 60%;
  max-width: 250px;
}

.card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 20px;
  padding: 40px clamp(10px, 2vw, 40px);
}
@media only screen and (max-width: 1024px) {
  .card-body {
    padding: 40px clamp(10px, 7vw, 40px);
  }
}

.card-caracteristica {
  display: flex;
  align-items: flex-start;
  gap: clamp(7px, 1vw, 15px);
}
.card-caracteristica .fa {
  color: #EAA79F;
  font-size: 21px;
  padding-top: clamp(1px, 0.3vw, 7px);
}
@media only screen and (max-width: 1024px) {
  .card-caracteristica .fa {
    padding-top: clamp(1px, 0.5vw, 7px);
  }
}

.card-text {
  color: #9A9AA0;
  font-size: clamp(16px, 1.5vw, 23px);
}
@media only screen and (max-width: 1024px) {
  .card-text {
    font-size: clamp(16px, 3.5vw, 20px);
  }
}

.abonos-compara {
  width: 90%;
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 55px;
}
@media only screen and (max-width: 1440px) {
  .abonos-compara {
    width: 100%;
  }
}

.compara-body {
  width: 100%;
  background-color: #f1f1e9;
  box-shadow: 0px 6px 10px 1px #9A9AA0;
  border-radius: clamp(20px, 3vw, 50px);
  padding: clamp(15px, 3vw, 55px);
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 3vw, 45px);
}

.compara-row {
  width: 100%;
  display: grid;
  grid-template-columns: 1.5fr 20% 20% 20%;
  align-items: center;
}

.compara-desc {
  font-size: clamp(13px, 2vw, 24px);
  color: #9A9AA0;
  width: 90%;
}

.compara-checkBox {
  background-color: #fff;
  border: 1px solid #9A9AA0;
  border-radius: 50px;
  height: clamp(35px, 5vw, 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 5px;
}
.compara-checkBox .fa-check {
  color: #EAA79F;
  font-size: clamp(18px, 3vw, 24px);
}
.compara-checkBox .fa-minus {
  color: #9A9AA0;
  font-size: clamp(18px, 3vw, 24px);
}
.compara-checkBox p {
  color: #EAA79F;
  font-size: clamp(12px, 3vw, 20px);
}

@media only screen and (max-width: 720px) {
  .compara-num-usuario {
    display: none;
  }
}

.compara-num-usuario-mobile {
  display: none;
}
@media only screen and (max-width: 720px) {
  .compara-num-usuario-mobile {
    display: block;
  }
}

@media only screen and (max-width: 1080px) {
  .compara-mkt {
    display: none;
  }
}

.compara-mkt-mobile {
  display: none;
}
@media only screen and (max-width: 1080px) {
  .compara-mkt-mobile {
    display: block;
  }
}

.compara-inicia {
  margin-top: 75px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 75px;
  align-items: center;
}
.compara-inicia .btn {
  margin-top: 15px;
  width: clamp(180px, 30vw, 250px);
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 600;
}

.compara-scroll {
  width: 100%;
  position: fixed;
  top: -250px;
  z-index: 90;
  box-shadow: 0px -5px 18px #393B50;
  background-color: #fff;
  transition: all 0.5s;
  display: flex;
  justify-content: center;
}

.compara-scroll-main {
  width: 90%;
  max-width: 1920px;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 1440px) {
  .compara-scroll-main {
    width: 100%;
  }
}

.compara-scroll.active {
  top: clamp(78px, 7.3vw, 100px);
}

.compara-scroll-container {
  position: relative;
  padding: 0px clamp(15px, 3vw, 55px);
  width: 90%;
  display: grid;
  grid-template-columns: 1.5fr 20% 20% 20%;
}

.compara-scroll-card {
  border-left: 1px solid #EAA79F;
  border-right: 1px solid #EAA79F;
  position: relative;
  padding: 0px clamp(10px, 1.7vw, 35px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  height: clamp(230px, 32vw, 294px);
}
.compara-scroll-card .btn {
  max-width: 250px;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 600;
}
@media only screen and (max-width: 990px) {
  .compara-scroll-card .btn {
    display: none;
  }
}

.compara-scroll-title {
  text-align: center;
  font-size: clamp(20px, 3vw, 36px);
  color: #EAA79F;
}
@media only screen and (max-width: 990px) {
  .compara-scroll-title {
    transform: rotate(-90deg);
    width: 500%;
    display: none;
  }
}

.compara-scroll.active .compara-scroll-title {
  display: block;
}

.compara-scroll-popular {
  padding: 10px;
  position: absolute;
  background-color: #f2c1c0;
  color: #fff;
  width: 100%;
  top: 0;
  text-align: center;
}
@media only screen and (max-width: 990px) {
  .compara-scroll-popular {
    display: none;
  }
}

.compara-scroll-popular-mobile {
  padding: 10px;
  position: absolute;
  background-color: #f2c1c0;
  color: #fff;
  width: 100%;
  top: 0;
  text-align: center;
  display: none;
}
@media only screen and (max-width: 990px) {
  .compara-scroll-popular-mobile {
    display: block;
  }
}

.card-price {
  transition: opacity 0.3s ease-in-out; /* Transición de opacidad durante 0.3 segundos */
}

.blog-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blog-main {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.blog-hero {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 240px 0;
  background-image: url(../img/blog-back.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: right;
  background-attachment: fixed;
  position: relative;
}
.blog-hero::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(234, 166, 159, 0.8196078431);
  display: none;
}
@media only screen and (max-width: 1380px) {
  .blog-hero::before {
    display: block;
  }
}

.blog-hero-title {
  font-size: clamp(38px, 10vw, 64px);
  width: 90%;
  text-align: center;
  position: relative;
  z-index: 10;
}

.blog-hero-subTitle {
  font-size: clamp(18px, 5vw, 26px);
  width: 90%;
  text-align: center;
  position: relative;
  z-index: 1;
}

.blog-buscador {
  width: 90%;
  max-width: 1240px;
  background-color: #f1f1e9;
  border-radius: 20px;
  padding: 40px 0px;
  margin-top: -60px;
  position: relative;
}
@media only screen and (max-width: 720px) {
  .blog-buscador {
    padding: 20px 0px;
  }
}
.blog-buscador .form__container {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 90%;
  max-width: 1110px;
}
@media only screen and (max-width: 720px) {
  .blog-buscador .form__container {
    flex-direction: column;
  }
  .blog-buscador .form__container label {
    top: 22%;
  }
}
.blog-buscador .form__container .form__input:focus {
  border: 1px solid #EAA79F;
  outline: 1px solid #EAA79F;
}
.blog-buscador .form__container .btn {
  max-width: 175px;
}

.blog-card {
  list-style-type: none;
  padding: clamp(15px, 3vw, 25px);
  background-color: #f1f1e9;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: clamp(10px, 3vw, 25px);
  scroll-snap-align: start;
}

.blog-cardImg {
  border-radius: 20px;
  overflow: hidden;
  width: 90%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1355px) {
  .blog-cardImg {
    aspect-ratio: 1.5/1;
  }
}
@media only screen and (max-width: 900px) {
  .blog-cardImg {
    aspect-ratio: 2/1;
  }
}
.blog-cardImg img {
  object-fit: cover;
}

.blog-card-title {
  color: #EAA79F;
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 600;
  text-align: center;
}

.blog-card-text {
  color: #9A9AA0;
  font-size: clamp(14px, 2vw, 18px);
  text-align: center;
}

.blog-carousel {
  width: 75%;
  max-width: 1240px;
  margin-top: clamp(35px, 8vw, 85px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-carousel .carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(33.3333333333% - 15px);
  gap: 20px;
}
@media only screen and (max-width: 1355px) {
  .blog-carousel .carousel {
    grid-auto-columns: calc(50% - 11px);
  }
}
@media only screen and (max-width: 900px) {
  .blog-carousel .carousel {
    grid-auto-columns: 100%;
  }
}
.blog-carousel i:first-child {
  left: -40px;
}
.blog-carousel i:last-child {
  right: -40px;
}

.blog-banner {
  width: 100%;
  background-image: url(../img/blog-banner.webp);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(85px, 20vw, 160px) 0px;
  margin-top: 85px;
}
.blog-banner .wrapper {
  max-width: 1240px;
}
.blog-banner i:first-child {
  color: #fff;
  font-size: clamp(26px, 7vw, 42px);
  left: 2vw;
}
@media only screen and (max-width: 520px) {
  .blog-banner i:first-child {
    left: 0;
  }
}
.blog-banner i:last-child {
  color: #fff;
  font-size: clamp(26px, 7vw, 42px);
  right: 2vw;
}
@media only screen and (max-width: 520px) {
  .blog-banner i:last-child {
    right: 0;
  }
}
.blog-banner .carousel {
  width: 80%;
  max-width: 1050px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  justify-items: center;
}

.banner-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  scroll-snap-align: start;
}
.banner-slide .btn {
  background-color: transparent;
  border-color: #fff;
  max-width: 250px;
}
.banner-slide .btn:hover {
  color: #fff;
  background-color: #EAA79F;
}

.blog-slide-title {
  font-size: clamp(24px, 7vw, 42px);
  text-align: center;
}

.blog-slide-text {
  font-size: clamp(18px, 5vw, 28px);
  text-align: center;
}

.blog-posteos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 85px;
  margin-bottom: 45px;
}
.blog-posteos i:first-child {
  color: #fff;
  font-size: 42px;
  left: 40px;
}
@media only screen and (max-width: 1355px) {
  .blog-posteos i:first-child {
    left: 30px;
  }
}
@media only screen and (max-width: 900px) {
  .blog-posteos i:first-child {
    left: 20px;
  }
}
@media only screen and (max-width: 680px) {
  .blog-posteos i:first-child {
    left: 10px;
  }
}
.blog-posteos i:last-child {
  color: #fff;
  font-size: 42px;
  right: 40px;
}
@media only screen and (max-width: 1355px) {
  .blog-posteos i:last-child {
    right: 30px;
  }
}
@media only screen and (max-width: 900px) {
  .blog-posteos i:last-child {
    right: 20px;
  }
}
@media only screen and (max-width: 680px) {
  .blog-posteos i:last-child {
    right: 10px;
  }
}
@media only screen and (max-width: 530px) {
  .blog-posteos .wrapper {
    width: 90%;
  }
}
.blog-posteos .carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(25% - 16px);
  gap: 20px;
  margin-top: clamp(20px, 5vw, 45px);
}
@media only screen and (max-width: 1355px) {
  .blog-posteos .carousel {
    grid-auto-columns: calc(33.3333333333% - 13px);
  }
}
@media only screen and (max-width: 900px) {
  .blog-posteos .carousel {
    grid-auto-columns: calc(50% - 10px);
  }
}
@media only screen and (max-width: 530px) {
  .blog-posteos .carousel {
    grid-auto-columns: 100%;
  }
}

.posteos-titulo {
  color: #EAA79F;
  font-size: clamp(20px, 4vw, 42px);
  text-align: center;
}

.posteos-slide {
  position: relative;
  scroll-snap-align: start;
  list-style-type: none;
}

.posteos-img {
  width: 100%;
  background-color: #000;
  overflow: hidden;
  cursor: pointer;
}
.posteos-img:hover img {
  transform: scale(1.1);
  mask-image: linear-gradient(black 80%, transparent);
}
.posteos-img img {
  mask-image: linear-gradient(black 40%, transparent);
  transition: all 0.2s ease-out;
  transform: scale(1.02);
}

.posteos-titleCont {
  position: absolute;
  bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.posteos-slide-title {
  font-size: 1.1vw;
  text-align: center;
  color: #f1f1e9;
  text-transform: uppercase;
  font-weight: 200;
}
@media only screen and (max-width: 1355px) {
  .posteos-slide-title {
    font-size: 1.7vw;
  }
}
@media only screen and (max-width: 900px) {
  .posteos-slide-title {
    font-size: 3vw;
  }
}
@media only screen and (max-width: 530px) {
  .posteos-slide-title {
    font-size: 5vw;
  }
}

.posteos-slide-text {
  font-size: 1.4vw;
  text-align: center;
  font-weight: 700;
  width: 90%;
}
@media only screen and (max-width: 1355px) {
  .posteos-slide-text {
    font-size: 1.8vw;
  }
}
@media only screen and (max-width: 900px) {
  .posteos-slide-text {
    font-size: 3vw;
  }
}
@media only screen and (max-width: 530px) {
  .posteos-slide-text {
    font-size: 6vw;
  }
}

.blogMenu-body {
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-template-areas: "header header" "hero hero" "main aside" "footer footer";
  gap: 55px 15px;
}
@media only screen and (max-width: 1120px) {
  .blogMenu-body {
    grid-template-columns: 1fr;
    grid-template-areas: "header" "hero" "main" "aside" "footer";
  }
}
.blogMenu-body .bme--Header {
  grid-area: header;
  background-color: #EAA79F;
}
.blogMenu-body .blogCat-hero {
  grid-area: hero;
}
.blogMenu-body .blog-aside {
  grid-area: aside;
}
.blogMenu-body .blogMenu-main {
  grid-area: main;
  justify-self: flex-end;
}
@media only screen and (max-width: 1120px) {
  .blogMenu-body .blogMenu-main {
    justify-self: center;
  }
}
.blogMenu-body .footer {
  grid-area: footer;
}

.blogCat-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url(../img/background-diamantes.webp);
}

.blogCat-hero-encabezado {
  color: #9A9AA0;
  text-transform: uppercase;
  letter-spacing: 10px;
  margin-right: -10px;
  padding-top: 150px;
  text-align: center;
  font-size: 20px;
}

.blogCat-hero-title {
  color: #EAA79F;
  font-size: 54px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 50px;
}

.blog-aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
  max-width: 350px;
}
@media only screen and (max-width: 1120px) {
  .blog-aside {
    max-width: none;
  }
}

.blog-aside-menu {
  background-color: #f1f1e9;
  padding: 35px;
  border-radius: 25px;
  width: 90%;
}
@media only screen and (max-width: 1120px) {
  .blog-aside-menu {
    text-align: center;
  }
}

.blog-menu-title {
  color: #EAA79F;
  font-size: 24px;
}

.blog-menu-list {
  list-style: none;
}

.blog-menu-item {
  color: #9A9AA0;
  line-height: 35px;
  font-size: 16px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 300;
}
.blog-menu-item:hover {
  color: #393B50;
}

.blog-aside-suscribe {
  background-color: #f1f1e9;
  padding: 35px;
  border-radius: 25px;
  width: 90%;
}
@media only screen and (max-width: 1120px) {
  .blog-aside-suscribe {
    display: none;
  }
}

.blog-suscribe-encabezado {
  color: #9A9AA0;
  font-weight: 300;
  text-transform: uppercase;
}

.blog-suscribe-title {
  font-size: 24px;
  font-weight: 400;
}

.blog-aside-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
}

.blog-aside-input {
  padding: 12px;
  padding-left: 15px;
  border-radius: 50px;
  border: 1px solid #9A9AA0;
  color: #393B50;
  width: 100%;
}
.blog-aside-input::placeholder {
  color: #9A9AA0;
}
.blog-aside-input:focus {
  outline: none;
}

.blog-aside-redes {
  background-color: #EAA79F;
  padding: 25px 55px;
  border-radius: 25px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
@media only screen and (max-width: 1120px) {
  .blog-aside-redes {
    display: none;
  }
}

.blog-redes-title {
  color: #f1f1e9;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 7px;
  margin-right: -7px;
}

.blog-redesCont {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}
.blog-redesCont i {
  padding: 5px;
  width: 40px;
  height: 40px;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EAA79F;
  text-align: center;
  cursor: pointer;
  font-size: 22px;
}
.blog-redesCont i:hover {
  border: 2px solid #fff;
  color: #fff;
  background-color: #EAA79F;
}

.blogMenu-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 95%;
  max-width: 1240px;
}
@media only screen and (max-width: 1120px) {
  .blogMenu-main {
    width: 90%;
  }
}

.blogCat-notasCont {
  display: flex;
  flex-direction: column;
  gap: 55px;
}

.blogCat-nota-card {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 25px);
}
@media only screen and (max-width: 640px) {
  .blogCat-nota-card {
    flex-direction: column;
  }
}

.blogCat-nota-imgCont {
  border-radius: 25px;
  overflow: hidden;
  height: 100%;
  display: flex;
}
.blogCat-nota-imgCont img {
  object-fit: cover;
}

.blogCat-nota-textCont {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  width: 90%;
  gap: 7px;
}
@media only screen and (max-width: 640px) {
  .blogCat-nota-textCont {
    height: inherit;
    gap: 15px;
    text-align: center;
  }
}
.blogCat-nota-textCont .separador {
  background-color: #EAA79F;
  width: 55px;
  margin: 0;
}
@media only screen and (max-width: 640px) {
  .blogCat-nota-textCont .separador {
    width: 65px;
    align-self: center;
  }
}
.blogCat-nota-textCont .btn {
  width: 150px;
  margin-top: 15px;
  padding: 8px;
}
@media only screen and (max-width: 640px) {
  .blogCat-nota-textCont .btn {
    align-self: center;
    margin-top: 0;
  }
}

.blog-nota-info {
  display: flex;
  gap: 7px;
  align-items: center;
}
@media only screen and (max-width: 640px) {
  .blog-nota-info {
    justify-content: center;
  }
}
.blog-nota-info .guion {
  color: #9A9AA0;
}

.blog-nota-date {
  color: #9A9AA0;
  font-size: 14px;
  text-transform: uppercase;
}

.blog-nota-category {
  color: #EAA79F;
  text-transform: uppercase;
  font-size: 14px;
}

.blogCat-nota-title {
  font-size: clamp(24px, 3vw, 36px);
  color: #393B50;
}

.blogCat-nota-resumen {
  color: #9A9AA0;
  font-size: clamp(14px, 2vw, 20px);
}

.blog-nota-body {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.blog-nota-body .guion {
  font-size: 13px;
}

.blog-nota-title {
  color: #393B50;
  font-size: clamp(26px, 5vw, 36px);
}

.blog-nota-posted {
  color: #9A9AA0;
  font-size: 13px;
  text-transform: uppercase;
}

.blog-nota-author {
  color: #EAA79F;
  font-size: 13px;
  text-transform: uppercase;
}

.blogCat-pagination {
  display: flex;
  align-items: center;
  gap: clamp(7px, 2vw, 25px);
  margin-top: 65px;
  width: 90%;
  max-width: 440px;
}

.pagination-prev-btns, .pagination-next-btns {
  display: flex;
  align-items: center;
  gap: clamp(7px, 2vw, 15px);
}
.pagination-prev-btns i, .pagination-next-btns i {
  cursor: pointer;
}
.pagination-prev-btns i:active, .pagination-next-btns i:active {
  transform: scale(0.95);
}
.pagination-prev-btns .fa-caret-left, .pagination-prev-btns .fa-caret-right, .pagination-next-btns .fa-caret-left, .pagination-next-btns .fa-caret-right {
  color: #393B50;
  font-size: clamp(24px, 6vw, 36px);
}
.pagination-prev-btns .fa-backward, .pagination-prev-btns .fa-forward, .pagination-next-btns .fa-backward, .pagination-next-btns .fa-forward {
  color: #EAA79F;
  font-size: clamp(18px, 4vw, 24px);
}

.pagination-pagesCont {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.pagination-page {
  width: clamp(30px, 10vw, 35px);
  height: clamp(30px, 10vw, 35px);
  aspect-ratio: 1/1;
  background-color: #fff;
  border: 2px solid #393B50;
  color: #393B50;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.pagination-page:active {
  transform: scale(0.95);
}

.pagination-page.active {
  color: #fff;
  background-color: #393B50;
}

:root {
  --bar-porcentaje: 100%;
  --grid-size: 2.5fr 1fr;
  --grid-gap: 25px 0px;
  --grid-display: flex;
}

.panelCyF-main {
  background-color: #f1f1e9;
  width: 87%;
  max-width: 1340px;
  display: grid;
  padding-left: 195px;
  margin-top: 165px;
  grid-template-areas: "header header" "body aside";
  grid-template-columns: var(--grid-size);
  grid-template-rows: 250px auto;
  gap: var(--grid-gap);
  margin-bottom: 119px;
}
@media only screen and (max-width: 1660px) {
  .panelCyF-main {
    margin-left: 120px;
  }
}
@media only screen and (max-width: 1120px) {
  .panelCyF-main {
    width: 90%;
    padding-left: 0;
    margin-left: 0;
    margin-top: 125px;
  }
}
@media only screen and (max-width: 900px) {
  .panelCyF-main {
    grid-template-areas: "header header" "aside aside" "body body";
    margin-top: 110px;
  }
}
@media only screen and (max-width: 520px) {
  .panelCyF-main {
    grid-template-rows: 320px auto;
  }
}

.panelCyF-header {
  grid-area: header;
  width: 100%;
  border: 1px solid #9A9AA0;
  border-radius: 20px;
  background-color: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 1660px) {
  .panelCyF-header {
    padding: 30px 20px;
  }
}
.panelCyF-header .separador {
  background-color: #9A9AA0;
  height: 0;
  padding: 1px 0px;
}

.panelCyF-aside {
  grid-area: aside;
  width: 100%;
  display: var(--grid-display);
  flex-direction: column;
  gap: 15px;
}
@media only screen and (max-width: 900px) {
  .panelCyF-aside {
    flex-direction: row;
  }
}
@media only screen and (max-width: 680px) {
  .panelCyF-aside {
    flex-wrap: wrap;
  }
}

.panelCyF-body {
  grid-area: body;
  width: 100%;
}

.panelCyF-title {
  color: #EAA79F;
  font-size: clamp(28px, 3vw, 40px);
}

.panelCyF-slectsCont {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 8px;
  width: 100%;
}
@media only screen and (max-width: 900px) {
  .panelCyF-slectsCont {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 520px) {
  .panelCyF-slectsCont {
    grid-template-columns: 1fr;
  }
}
.panelCyF-slectsCont .custom-selectCont {
  width: 100%;
  border: 1px solid #EAA79F;
  border-radius: 50px;
}
.panelCyF-slectsCont .custom-selectCont.active {
  border: 1px solid #fff;
}
.panelCyF-slectsCont .custom-selectCont.active .custom-select {
  background-color: #393B50;
}
.panelCyF-slectsCont .custom-selectCont.active span {
  color: #fff;
}
.panelCyF-slectsCont .custom-selectCont.active .fa-angle-right {
  color: #fff;
}
.panelCyF-slectsCont .custom-selectCont .custom-select {
  padding: 5px 15px;
}
.panelCyF-slectsCont .custom-selectCont .custom-select span {
  font-size: 14px;
}
.panelCyF-slectsCont .custom-selectCont .custom-selectMenu {
  font-size: 14px;
  min-width: 230px;
}

.panelCyF-headerBtn {
  width: 100%;
  border: 1px solid #EAA79F;
  border-radius: 50px;
  background-color: #fff;
  padding: 5px 15px;
  color: #EAA79F;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-align: start;
}

.panelCyF-headerBtn.active {
  border: 1px solid #393B50;
  background-color: #393B50;
  color: #fff;
}

.panelCyF-planCard {
  background-color: #393B50;
  padding: 18px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media only screen and (max-width: 900px) {
  .panelCyF-planCard {
    align-items: center;
  }
}
.panelCyF-planCard .btn {
  max-width: 180px;
  padding: 5px 15px;
  margin-top: 15px;
}

.planCard-title {
  font-size: 15px;
}

.planCard-price {
  font-size: 36px;
  font-weight: 700;
}

.planCard-date {
  font-size: 13px;
  font-weight: 300;
}
.planCard-date span {
  font-weight: 700;
}

.panelCyF-metodCard {
  background-color: #fff;
  padding: 18px;
  border-radius: 20px;
  flex-direction: column;
  gap: 7px;
  display: none;
  width: 100%;
}
@media only screen and (max-width: 900px) {
  .panelCyF-metodCard {
    align-items: center;
  }
}
.panelCyF-metodCard .btn {
  max-width: 180px;
  padding: 5px 15px;
}

.panelCyF-metodCard.active {
  display: flex;
}

.metodCard-title {
  font-size: 15px;
  color: #9A9AA0;
  font-weight: 700;
}

.metodCard-card-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.metodCard-card-brand {
  width: 40px;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.metodCard-card-num {
  font-size: 14px;
  color: #9A9AA0;
}
.metodCard-card-num span {
  font-size: 15px;
  color: #9A9AA0;
}

.metodCard-card-date {
  font-size: 15px;
  color: #9A9AA0;
}
.metodCard-card-date span {
  font-size: 15px;
  color: #9A9AA0;
}

.cyf-card {
  background-color: #fff;
  border: 1px solid #9A9AA0;
  padding: 25px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cyf-card .separador {
  background-color: #9A9AA0;
  margin: 10px 0 10px;
}
.cyf-card .btn {
  max-width: 180px;
  padding: 5px 15px;
}

.cyf-card-title {
  font-size: clamp(18px, 3.5vw, 24px);
  color: #EAA79F;
}

.cyf-info-gral-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 25px;
}

.cyf-info-gral-plan {
  font-size: 24px;
  color: #EAA79F;
}

.cyf-info-gral-data {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 500px) {
  .cyf-info-gral-data {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.cyf-info-gral-mkt-title {
  font-size: 15px;
  color: #9A9AA0;
  font-weight: 700;
}

.cyf-info-gral-mkt-cantidad {
  display: flex;
  align-items: center;
  gap: 5px;
}
.cyf-info-gral-mkt-cantidad p {
  font-size: 15px;
  color: #9A9AA0;
}

.cyf-info-gral-mkt-total {
  font-size: 15px;
  color: #9A9AA0;
  font-weight: 700;
}

.cyf-info-gral-mkt-barCont {
  width: 100%;
  position: relative;
}

.cyf-info-gral-mkt-barBack {
  width: 100%;
  background-color: #f1f1e9;
  border-radius: 50px;
  height: 12px;
  position: absolute;
}

.cyf-info-gral-mkt-bar {
  width: 0%;
  background-color: #EAA79F;
  border-radius: 50px;
  height: 12px;
  position: absolute;
  animation: growBar 0.6s ease-out forwards;
  animation-delay: 0.2s;
}

@keyframes growBar {
  from {
    width: 0%;
  }
  to {
    width: var(--bar-porcentaje);
  }
}
.config-bubble {
  font-size: 13px;
  padding: 3px 7px;
  border: 1px solid #9A9AA0;
  border-radius: 50px;
  width: max-content;
}

.bubble-no-config {
  background-color: #fff;
  color: #9A9AA0;
}

.bubble-si-config {
  background-color: #9A9AA0;
  color: #fff;
}

.cyf-info-gral-mkt-notif {
  margin-top: 15px;
  color: #9A9AA0;
  font-size: 14px;
}
.cyf-info-gral-mkt-notif span {
  color: #9A9AA0;
  font-size: 14px;
}

.cyf-config-seguridad-body {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.cyf-config-seguridad-subtitle {
  font-size: 15px;
  color: #9A9AA0;
  font-weight: 700;
}

.cyf-config-seguridad-text {
  color: #9A9AA0;
  font-size: 14px;
}

.cyf-config-seguridad-textSpan {
  color: #9A9AA0;
  font-size: 14px;
  font-weight: 600;
}

.cyf-config-seguridad-textCont {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media only screen and (max-width: 648px) {
  .cyf-config-seguridad-textCont {
    align-items: flex-start;
    flex-direction: column;
  }
}

.cyf-modal {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(57, 59, 80, 0.8588235294);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.cyf-modal .form {
  max-width: unset;
}

.cyf-modal.active {
  opacity: 1;
  visibility: visible;
  transition: all 0.2s ease-in-out;
}

.cyf-modalCont {
  position: absolute;
  width: 100%;
}

.cyf-modal-body {
  width: 90%;
  max-width: 1024px;
  background-color: #fff;
  border-radius: 25px;
  padding: 75px clamp(15px, 3vw, 45px);
  position: relative;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.3);
  transition: all 0.3s ease-out;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cyf-modal-body .btn {
  max-width: 180px;
  padding: 5px 15px;
}

.cyf-modal.active .cyf-modal-body {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.cyf-modal-title {
  color: #EAA79F;
  font-size: clamp(18px, 3vw, 24px);
}
.cyf-modal-title span {
  color: #EAA79F;
}

.cyf-modal-subtitle {
  color: #9A9AA0;
}
.cyf-modal-subtitle span {
  color: #9A9AA0;
}

.cyf-btnCont {
  display: flex;
  gap: 10px;
}
.cyf-btnCont .btn {
  max-width: 180px;
  padding: 5px 15px;
}

.cyf-modal-cierre {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #EAA79F;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}
.cyf-modal-cierre .fa-times {
  color: #fff;
  display: block;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  font-size: 21px;
}

.cyf-modal-radioBtns {
  display: flex;
  gap: 25px;
  outline: none;
  border: none;
}

.cyf-modal-radioBtns-cont {
  display: flex;
  gap: 5px;
  align-items: center;
}
.cyf-modal-radioBtns-cont label {
  color: #9A9AA0;
  font-size: 14px;
}

.cyf-modal-radioBtns-cont input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #9A9AA0;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  position: relative;
}

.cyf-modal-radioBtns-cont input[type=radio]:checked::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #EAA79F;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cyf-recu-inputCont {
  position: relative;
  width: 100%;
  margin-bottom: 50px;
}

.cyf-recu-tel-inputCont {
  display: flex;
  align-items: center;
  gap: 7px;
}
.cyf-recu-tel-inputCont .custom-selectCont {
  width: 135px;
}
.cyf-recu-tel-inputCont .custom-selectCont .custom-selectMenu li:hover {
  background-color: #f1f1e9;
}
.cyf-recu-tel-inputCont .custom-selectCont .custom-select {
  border: 1px solid #9A9AA0;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  padding: 7px 10px 6px;
}
.cyf-recu-tel-inputCont .custom-selectCont .custom-select .fa-caret-right {
  color: #9A9AA0;
  font-size: clamp(15px, 3vw, 26px);
}
.cyf-recu-tel-inputCont .custom-selectCont .custom-select .custom-selected {
  display: flex;
  align-items: center;
  gap: 7px;
}
.cyf-recu-tel-inputCont .select-tel-area-code {
  color: #9A9AA0;
  font-size: clamp(12px, 3vw, 16px);
}
.cyf-recu-tel-inputCont .form__input {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  height: 47px;
}

.select-tel-flag {
  display: flex;
  align-items: center;
  width: clamp(25px, 3vw, 32px);
}

.custom-select-tel-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.cyf-recu-tel-inputCont {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s linear;
}

.cyf-recu-mail-inputCont {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s linear;
}

.cyf-modal-radioBtns:has(#radio_tel:checked) ~ .cyf-recu-inputCont .cyf-recu-tel-inputCont {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.cyf-modal-radioBtns:has(#radio_mail:checked) ~ .cyf-recu-inputCont .cyf-recu-mail-inputCont {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.cyf-card.cyf-info-contacto-body {
  gap: 25px;
}

.cyf-info-contacto-text {
  color: #9A9AA0;
  font-size: 14px;
}

.cyf-info-contacto-table {
  padding: 25px clamp(28px, 4vw, 45px);
  background-color: #f1f1e9;
  border-radius: 25px;
}
.cyf-info-contacto-table .separador {
  height: 1px;
}

.cyf-info-contacto-table-row {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 640px) {
  .cyf-info-contacto-table-row {
    flex-direction: column;
  }
}

.cyf-info-contacto-table-entry {
  color: #9A9AA0;
  font-size: clamp(15px, 3.5vw, 16px);
}

.cyf-info-contacto-table-value {
  color: #9A9AA0;
  font-size: clamp(13px, 3vw, 16px);
  font-weight: 700;
}

#cyf_modal_info_contacto .form {
  width: 100%;
  max-width: unset;
  padding: unset;
}

.cyf-plan-mensual-price-cont {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.cyf-plan-mensual-price {
  font-size: 36px;
  color: #393B50;
  font-weight: 700;
}
.cyf-plan-mensual-price span {
  font-size: 36px;
  color: #393B50;
  font-weight: 700;
}

.cyf-plan-mensual-price-month {
  font-size: 16px;
  color: #393B50;
  font-weight: 700;
  padding-bottom: 8px;
}

.cyf-plan-mensual-data {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 500px) {
  .cyf-plan-mensual-data {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.cyf-plan-mensual-mkt-title {
  font-size: 15px;
  color: #9A9AA0;
  font-weight: 700;
}

.cyf-plan-mensual-mkt-cantidad {
  display: flex;
  align-items: center;
  gap: 5px;
}
.cyf-plan-mensual-mkt-cantidad p {
  font-size: 15px;
  color: #9A9AA0;
}

.cyf-plan-mensual-mkt-barCont {
  width: 100%;
  position: relative;
}

.cyf-plan-mensual-mkt-barBack {
  width: 100%;
  background-color: #f1f1e9;
  border-radius: 50px;
  height: 12px;
  position: absolute;
}

.cyf-plan-mensual-mkt-bar {
  width: 0%;
  background-color: #EAA79F;
  border-radius: 50px;
  height: 12px;
  position: absolute;
  animation: growBar 0.6s ease-out forwards;
  animation-delay: 0.2s;
}

.cyf-plan-mensual-mkt-notif {
  margin-top: 15px;
  color: #9A9AA0;
  font-size: 14px;
}
.cyf-plan-mensual-mkt-notif span {
  color: #9A9AA0;
  font-size: 14px;
}

.cyf-plan-mensual-facturacion {
  margin-top: 25px;
}
.cyf-plan-mensual-facturacion .separador {
  height: 1px;
}

.cyf-plan-mensual-fecha-esti {
  color: #9A9AA0;
  font-size: 16px;
}
.cyf-plan-mensual-fecha-esti span {
  color: #9A9AA0;
  font-size: 16px;
  font-weight: 700;
}

.cyf-plan-mensual-factu-planCont {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 500px) {
  .cyf-plan-mensual-factu-planCont {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.cyf-plan-mensual-factu-plan {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 70%;
}

.cyf-plan-mensual-factu-planTitle {
  color: #9A9AA0;
  font-size: 16px;
  font-weight: 700;
}

.cyf-plan-mensual-factu-planAcl {
  color: #9A9AA0;
  font-size: 15px;
}

.cyf-plan-mensual-factu-planPrice {
  color: #9A9AA0;
  font-size: 16px;
  font-weight: 700;
}
.cyf-plan-mensual-factu-planPrice span {
  color: #9A9AA0;
  font-size: 16px;
  font-weight: 700;
}

.cyf-plan-mensual-factu-impCont {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 500px) {
  .cyf-plan-mensual-factu-impCont {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.cyf-plan-mensual-factu-impTitle {
  color: #9A9AA0;
  font-size: 16px;
  font-weight: 700;
}

.cyf-plan-mensual-factu-impPrice {
  color: #9A9AA0;
  font-size: 16px;
  font-weight: 700;
}
.cyf-plan-mensual-factu-impPrice span {
  color: #9A9AA0;
  font-size: 16px;
  font-weight: 700;
}

.cyf-plan-mensual-factu-totalCont {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 500px) {
  .cyf-plan-mensual-factu-totalCont {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.cyf-plan-mensual-factu-total {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cyf-plan-mensual-factu-totalTitle {
  color: #393B50;
  font-size: 16px;
  font-weight: 700;
}

.cyf-plan-mensual-factu-totalAcl {
  color: #9A9AA0;
  font-size: 15px;
}
.cyf-plan-mensual-factu-totalAcl span {
  color: #9A9AA0;
  font-size: 15px;
  font-weight: 700;
}

.cyf-plan-mensual-factu-totalPrice {
  color: #393B50;
  font-size: 16px;
  font-weight: 700;
}
.cyf-plan-mensual-factu-totalPrice span {
  color: #393B50;
  font-size: 16px;
  font-weight: 700;
}

.cyf-datos-fac-tarj-main {
  display: grid;
  align-items: start;
  grid-template-columns: 4fr 1fr;
}
@media only screen and (max-width: 500px) {
  .cyf-datos-fac-tarj-main {
    grid-template-columns: 1fr;
  }
}

.cyf-datos-fac-tarjCont {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media only screen and (max-width: 500px) {
  .cyf-datos-fac-tarjCont {
    gap: 10px;
  }
}

.cyf-datos-fac-tarj-info {
  display: flex;
  align-items: center;
  gap: 5px;
}
.cyf-datos-fac-tarj-info p {
  color: #9A9AA0;
  font-size: 16px;
  font-weight: 700;
}
.cyf-datos-fac-tarj-info span {
  color: #9A9AA0;
  font-size: 16px;
  font-weight: 700;
}

.cyf-datos-fac-tarj-brand {
  width: 40px;
  margin-left: 5px;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.cyf-datos-fac-tarj-date {
  color: #9A9AA0;
  font-size: 15px;
}
.cyf-datos-fac-tarj-date span {
  color: #9A9AA0;
  font-size: 15px;
}

.cyf-datos-fac-info {
  margin-top: 25px;
}

.cyf-datos-fac-info-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cyf-datos-fac-info-container {
  padding: 25px clamp(28px, 4vw, 45px);
  background-color: #f1f1e9;
  border-radius: 25px;
  margin-bottom: 15px;
}

.cyf-datos-fac-name {
  font-size: clamp(17px, 3vw, 20px);
  color: #9A9AA0;
  font-weight: 700;
}

.cyf-datos-fac-store {
  font-size: 16px;
  color: #9A9AA0;
  font-weight: 500;
}

.cyf-datos-fac-mail {
  font-size: 14px;
  color: #9A9AA0;
}

.cyf-datos-fac-address {
  font-size: 14px;
  color: #9A9AA0;
}

.cyf-datos-notif {
  margin-top: 25px;
}

.cyf-datos-notif-text {
  font-size: 16px;
  color: #9A9AA0;
}
.cyf-datos-notif-text span {
  font-size: 16px;
  color: #9A9AA0;
  font-weight: 700;
}

.cyf-historial-facCont {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 550px;
  overflow-y: scroll;
}
.cyf-historial-facCont .separador {
  margin: 15px -25px;
  height: 0px;
  padding: 0.5px;
}
.cyf-historial-facCont::-webkit-scrollbar {
  width: 12px;
}
.cyf-historial-facCont::-webkit-scrollbar-track {
  background: #f1f1e9;
}
.cyf-historial-facCont::-webkit-scrollbar-thumb {
  background: #EAA79F;
  border-radius: 50px;
}

.cyf-historial-fac-resumenBody {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr;
  align-items: start;
  margin-right: 20px;
}
@media only screen and (max-width: 640px) {
  .cyf-historial-fac-resumenBody {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

.cyf-historial-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cyf-historial-facNumber {
  font-size: 18px;
  color: #393B50;
  font-weight: 700;
}

.cyf-historial-facPlan {
  font-size: 16px;
  color: #9A9AA0;
  font-weight: 500;
}

.cyf-historial-facDate {
  font-size: 16px;
  color: #9A9AA0;
}

.cyf-historial-facPrice {
  font-size: 18px;
  color: #9A9AA0;
  font-weight: 700;
}

.cyf-cambiar-plan .card-title {
  font-size: 32px;
}
.cyf-cambiar-plan .card-price {
  font-size: 46px;
}
.cyf-cambiar-plan .card-desc {
  font-size: 21px;
}
.cyf-cambiar-plan .card-head {
  height: 300px;
}
.cyf-cambiar-plan .card-head .btn {
  max-width: 180px;
  padding: 5px 15px;
  font-size: 18px;
}
@media only screen and (max-width: 1260px) {
  .cyf-cambiar-plan .abonos-cardsLbls {
    display: flex;
  }
}
.cyf-cambiar-plan .abonos-cardsCont {
  height: 725px;
}
@media only screen and (max-width: 1260px) {
  .cyf-cambiar-plan .abonos-cardsCont {
    display: flex;
    justify-content: center;
    width: 100%;
    height: clamp(650px, 90vw, 750px);
  }
}
@media only screen and (max-width: 1020px) {
  .cyf-cambiar-plan .abonos-cardsCont {
    height: 660px;
  }
}
@media only screen and (max-width: 1260px) {
  .cyf-cambiar-plan .abonos-card {
    position: absolute;
    width: 100%;
    max-width: 450px;
    transition: all 0.4s ease;
    transform: scale(0.8);
    opacity: 0;
    visibility: hidden;
  }
}
.cyf-cambiar-plan .card-text {
  font-size: clamp(16px, 3.5vw, 18px);
}
.cyf-cambiar-plan .card-body {
  padding: 30px;
  gap: clamp(15px, 4vw, 20px);
}

.body-404 {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.body-404 .bme--Header {
  background-color: #EAA79F;
  top: 0;
}
.body-404 .loader {
  display: none;
}

.main-404 {
  width: 90%;
  max-width: 1240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.img-404 {
  width: 90%;
  max-width: 550px;
}

.title-404 {
  color: #EAA79F;
  font-size: clamp(48px, 7vw, 72px);
  text-align: center;
}/*# sourceMappingURL=styles.css.map */