/* LAYOUT */
:root {
  --accent: 136, 58, 234;
  --accent-light: 224, 204, 250;
  --accent-dark: 49, 10, 101;
  --hover: #777777;
  --accent-gradient: linear-gradient(45deg,
      rgb(var(--accent)),
      rgb(var(--accent-light)) 30%,
      white 60%);
  --bg-color: #13151a;
}

@font-face {
  font-family: "Styrene";
  src: url("../fonts/StyreneA-Light.otf") format("truetype");
  font-weight: 100;
  /* font-style: italic; */
}

@font-face {
  font-family: "Styrene";
  src: url("../fonts/StyreneA-Medium.otf") format("truetype");
  font-weight: 500;
  /* font-style: italic; */
}

@font-face {
  font-family: "Styrene";
  src: url("../fonts/StyreneA-Regular.otf") format("truetype");
  font-weight: 300;
  /* font-style: italic; */
}

html {
  font-family: Styrene;
  background: var(--bg-color);
  color: white;
}

code {
  font-family:
    Menlo,
    Monaco,
    Lucida Console,
    Liberation Mono,
    DejaVu Sans Mono,
    Bitstream Vera Sans Mono,
    Courier New,
    monospace;
}

/* body {
  margin: 0 2rem;
} */

@media (max-width: 600px) {}

a {
  color: white;
  text-decoration: none;

  &:hover {
    color: var(--hover);
  }
}

.menu-items-a {
  font-weight: 100;
}

.hover {
  color: var(--hover);

  &>* {
    color: inherit;
  }
}

.card-content {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
  grid-template-columns: repeat(auto-fit, 340px);
  gap: 3rem 1.3rem;
  margin-bottom: 10rem;
  margin-top: 4rem;
}

.colecciones-card {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .card-content {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  }
}

button {
  border: none;
  background-color: inherit;
  color: #ffffff;
  cursor: pointer;
}

.wrap {
  max-width: 1320px;
  margin-left: 2em;
}

@media (max-width: 600px) {
  .wrap {
    margin-left: 0;
  }
}

.filter-items {
  display: flex;
  justify-content: space-between;
  margin-top: 1em;
  margin-bottom: 1em;
  align-items: flex-end;

  & p {
    font-size: 1.5em;
  }
}

@media (max-width: 600px) {
  .filter-items {
    align-items: flex-start;
    flex-direction: column;
    gap: 1em;

    & p {
      font-size: 1.2em;
    }
  }
}

/* HEADER */

.header {
  height: 5rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;

  & .logo {
    width: 8em;

    & img {
      width: 90%;
      height: auto;
    }
  }

  & .hamburger {
    display: none;
    z-index: 999;
  }

  & .menu ul {
    display: flex;
    gap: 2rem;
  }

  & .active {
    color: var(--hover);
  }
}

#slider-home-mobile {
  display: none;
}

.hamburger .line {
  width: 35px;
  height: 3px;
  background-color: #ecf0f1;
  display: block;
  margin: 6px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hamburger:hover {
  cursor: pointer;
}

#hamburger-1.is-active .line:nth-child(2) {
  opacity: 0;
}

#hamburger-1.is-active .line:nth-child(1) {
  -webkit-transform: translateY(9px) rotate(45deg);
  -ms-transform: translateY(9px) rotate(45deg);
  -o-transform: translateY(9px) rotate(45deg);
  transform: translateY(9px) rotate(45deg);
}

#hamburger-1.is-active .line:nth-child(3) {
  -webkit-transform: translateY(-9px) rotate(-45deg);
  -ms-transform: translateY(-9px) rotate(-45deg);
  -o-transform: translateY(-9px) rotate(-45deg);
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 600px) {
  .header {
    & .menu {
      position: fixed;
      top: 0;
      right: -100%;
      z-index: 10;
      width: 100vw;
      height: 100%;
      background-color: var(--color-1);
      transition: 0.25s ease-out;
      padding-top: 5em;
      background-color: var(--bg-color);

      &.show {
        right: 0;
      }

      & ul {
        flex-direction: column;
        gap: 1.5em;
        margin-left: 1em;

        & li {
          font-size: 1.3em;
        }
      }
    }

    & .hamburger {
      display: block;
    }
  }

  #slider-home-desktop {
    display: none;
  }


  #slider-home-mobile {
    display: block;
  }
}

/* INDEX */

.mySwiper {
  height: 80vh;
  overflow: hidden;

  & img {
    width: 100vw;
    height: 100%;
    object-fit: contain;
  }
}

@media (max-width: 1000px) {
  .mySwiper {
    height: calc(100vh - 5em);
    overflow: hidden;
  }
}

/* COLECCIONES */

.colecciones-content {
  display: flex;
  width: 100%;
  max-height: 80vh;
  gap: 1rem;
}

/* CARD */

.colecciones-item {
  width: 100%;
  /* height: 100%; */
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  max-width: 340px;


  &:hover {
    cursor: pointer;
  }

  &:hover img {
    transform: scale(1.02);
  }

  &:hover .text {
    color: var(--hover);
    transition: color 0.2s ease;
  }

  &>.colecciones-img {
    width: 100%;
    /* height: 100%; */
    overflow: hidden;

    &>img {
      max-width: 340px;
      width: 100%;
      /* width:340px; */
      height: auto;
      object-fit: cover;
      transition: transform 0.3s ease-in-out;
    }
  }

  & h3 {
    font-size: 3em;
    margin-top: 1rem;
  }

  & p {
    font-size: 1.2em;
    margin-top: 0.3em;
    color: var(--hover);
  }
}

@media (max-width: 600px) {
  .colecciones-item {
    & h3 {
      font-size: 1.5em;
    }
  }
}

@media (max-width: 420px) {
  .colecciones-item {
    width: 86%;
  }
}

.colecciones-item.small h3 {
  font-size: 1.5em;
  margin-top: 0.3em;
  font-weight: 100;
}

.colecciones-item.maxWidth {
  max-width: 30em;
}

.custom-colecciones-item {
  width: 96% !important;
}

@media (max-width: 915px) {
  .custom-colecciones-item {
    width: 96% !important;
  }
}

@media (min-width: 915px) {
  .custom-colecciones-item {
    width: 33% !important;
  }
}

/* WISHLIST */

.wishlist {
  margin-bottom: 5rem;
}

@media (max-width: 600px) {
  .wishlist {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.wishlist h2 {
  font-size: 2em;
  font-weight: 100;
  margin-bottom: 0.5em;
}

@media (max-width: 600px) {
  .wishlist h2 {
    max-width: 600px;
    width: 100%;
  }
}

.wishlist .delete-btn {
  display: inline-block;
  border-radius: 0.5em;
  padding: 7px 10px;
  border: 2px solid #c2c2c2;
  margin-top: 1rem;
  font-weight: 100;
}

/* FILTER */

.filter {
  display: flex;
  align-items: flex-end;
  gap: 1em;

  & .result {
    font-size: 1em;
    color: var(--hover);
  }

  & .filter-title {
    pointer-events: none;
    margin-bottom: 8px;
    padding-bottom: 8px !important;
    border-bottom: 1px solid black;
  }
}

@media (max-width: 600px) {
  .filter {
    justify-content: space-between;
  }
}

.sBtn-text {
  font-size: 1.2em;
  color: var(--hover);
  display: inline-block;
}

.select-btn svg {
  width: 13px;
  transition: transform 0.3s;
}

.select-menu {
  position: relative;
  color: black;
}

.select-menu .select-btn {
  display: flex;
  font-size: 18px;
  font-weight: 400;
  align-items: center;
  cursor: pointer;
  justify-content: space-between;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.select-menu.active .select-btn svg {
  transform: rotate(-180deg);
  /* Rotación para indicar apertura/cierre */
}

.options {
  position: absolute;
  width: 100%;
  padding: 1em;
  margin-top: 10px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  display: none;
  /* Oculta el menú cuando no está activo */
  right: 8px;
  width: 210px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  z-index: 10;
  /* Asegura que el menú esté encima de otros elementos */
}

.select-menu.active .options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.options .option {
  display: flex;
  cursor: pointer;
  padding: 10px 16px;
  align-items: center;
  background: #ffffff;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.options .option:hover {
  background-color: #e6f7ff;
}

.option i {
  font-size: 22px;
  margin-right: 12px;
  color: #1e90ff;
}

.option .option-text {
  font-size: 16px;
  color: #333;
}

/* fr203 */

.details {
  margin-bottom: 5rem;
}

@media (max-width: 600px) {
  .details {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.details h2 {
  font-size: 2em;
  font-weight: 100;
  margin-bottom: 0.5em;
}

@media (max-width: 600px) {
  .details h2 {
    max-width: 600px;
    width: 100%;
  }
}

.product {
  display: flex;
  gap: 3rem;
  width: 100%;
  max-width: 70vw;

  & .img-prooduct {
    width: 50%;
  }

  & .text {
    width: 50%;
    line-height: 1.1;
    font-weight: 100;

    & .back {
      color: var(--hover);
    }

    & .title {
      font-size: 1.8em;
      margin-top: 1.4rem;
      margin-bottom: 1rem;

      & span {
        display: block;
        font-weight: 100;
      }
    }

    & .description {
      margin-bottom: 2em;
      color: #c2c2c2;
    }

    & .list {
      line-height: 1.3;
      color: #c2c2c2;
    }

    & .details-btn {
      display: inline-block;
      border-radius: 0.5em;
      padding: 7px 10px;
      border: 2px solid #c2c2c2;
      margin-top: 2rem;
      font-weight: 100;
    }
  }
}

@media (max-width: 1250px) {
  .product {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .product {
    flex-direction: column;
    max-width: 600px;

    & .img-prooduct {
      width: 100%;
    }

    & .text {
      width: 100%;
    }
  }
}

.colors-container {
  margin-top: 3em;
  max-width: 20em;

  & h4 {
    margin-bottom: 1em;
  }

  & .colors {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.7em;

    & li {
      width: 3em;
      display: flex;
      flex-direction: column;
      gap: 0.3em;

      & p {
        font-size: 0.3em;
      }

      & .color {
        background: var(--color, #ffffff);
        width: 3em;
        height: 3em;
      }
    }
  }
}

button {
  display: flex;
  gap: 0.5em;
  margin-top: 2em;

  .icon {
    position: relative;
    width: 18px;
    height: 18px;

    & svg {
      position: absolute;
      left: 0;
      top: 0;
    }

    & .full {
      opacity: 0;
      transition: opacity 0.1s linear;
    }
  }

  &:hover .full {
    opacity: 1;
  }
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Detail list */

.detail-list h2 {
  font-size: 2em;
  font-weight: 100;
  margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
  .detail-list h2 {
    font-size: 1.5em;
    font-weight: 100;
    margin-bottom: 1.5rem;
  }
}

#container {
  display: flex;
  flex-direction: column;
  max-width: 50rem;
  border-bottom: 1px solid #c4c4c4;
  width: 45%;
}

.accordion {
  padding-top: 12px;
  padding-bottom: 12px;
  cursor: pointer;
  border-top: 1px solid #c4c4c4;
}

.accordion-header {
  width: 100%;
  border: none;
  background-color: transparent;
  gap: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 16px;
  cursor: pointer;
  color: #c4c4c4;
  font-weight: 100;
  margin-top: 0;
}

.accordion-header span {
  max-width: 100%;
  width: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.accordion-body {
  color: #444;
  font-size: 14px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition:
    opacity 0.3s,
    height 0.3s linear;

  ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--hover);
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
  }

  ul li {
    padding: 5px 0;
  }

  &>ul+ul {
    margin-top: 15px;
  }
}

.accordion-body.active {
  height: auto;
  opacity: 1;
  padding: 5px 0px;
  transition:
    opacity 0.3s,
    height 0.3s linear;
}

.arrow {
  transition: transform 0.2s linear;
}

.accordion:has(.active) .arrow {
  transform: rotate(180deg);
}

/* Contacto */

.cointainer-contacto {
  display: flex;
  justify-content: space-between;
  margin: 0 4em;
  margin-bottom: 40px;
}

@media (max-width: 978px) {
  .cointainer-contacto {
    flex-direction: column;
    gap: 4em;
    margin: 0 1em;
    margin-bottom: 4em;
    align-items: center;

    & .contacto-redes {
      align-self: center;
    }

    & .contacto-form {
      margin-top: 6vh;
    }
  }
}

.contacto-redes {
  align-self: flex-end;
  margin-right: 60px;

  & h4 {
    font-size: 2.3em;
    font-weight: 100;
    margin-bottom: 0.5em;
  }

  & ul {
    display: flex;
    flex-direction: column;
    font-size: 1.2em;
    gap: 1em;
  }

  & .tel {
    color: var(--hover);
  }

  & a {
    color: var(--hover);
  }
}

.contacto-form {
  max-width: 36em;
  margin-top: 5vh;

  h2 {
    font-size: 1.8em;
    font-weight: 100;
    margin-bottom: 0.3em;

    & span {
      display: block;
    }
  }

  & .details-btn {
    display: inline-block;
    border-radius: 0.5em;
    padding: 7px 10px;
    border: 2px solid #c2c2c2;
    margin-top: 1rem;
    font-weight: 100;
  }

  form {
    & p {
      display: flex;
      flex-direction: column;
      font-size: 1.2em;

      & label {
        margin-top: 1em;
      }

      & :is(input, textarea) {
        background-color: transparent;
        border: none;
        border-bottom: 1px solid #fff;
        color: #dad6d6;
        margin-top: 1em;
        padding: 0.2em 0.1em;
        font-size: 1.2rem;
      }

      & textarea {
        height: 8em;
        resize: none;
        font-family: system-ui, sans-serif;
      }
    }

    & .checkbox-container {
      margin-top: 1.4em;
      margin-bottom: 1.5em;
      display: flex;
      gap: 2em;

      & input[type="radio"] {
        width: 1em;
        height: 1rem;
        border: solid;
        accent-color: var(--bg-color);
      }

      & label {
        font-size: 1.2em;
      }
    }
  }
}


/* PROYECTOS */

.proyectos h2 {
  font-size: 2.5em;
  font-weight: 100;
  margin-left: 4rem;
  margin-bottom: 1rem;
}

.proyectos .mySwiper {
  height: 100%;
  overflow: hidden;

  & .swiper-wrapper {
    margin: 0 4em;

    & img {
      width: calc(100% - 8em);
      margin: 0 auto;
      height: 100%;
      object-fit: contain;
    }

    & p {
      margin-top: 0.5em;
      font-size: 1.5em;
      font-weight: 100;
    }
  }

  & :is(.swiper-button-prev, .swiper-button-next) {
    color: var(--hover);
  }
}

@media (max-width: 1000px) {
  .proyectos h2 {
    margin-left: 1rem;
    margin-bottom: 1rem;
    font-size: 1.5em;
    font-weight: 100;
  }

  .proyectos .mySwiper {
    height: calc(100vh - 8em);
    overflow: hidden;

    & .swiper-wrapper {
      margin: 0;

      & img {
        width: calc(100%);
        margin: 0 auto;
        height: 100%;
        object-fit: contain;
      }

      & p {
        margin-top: 0.5em;
        font-size: 1em;
        font-weight: 100;
      }
    }
  }
}

/* SHOP */

.main-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  gap: 12px;
  margin-top: 30px;
}

.shop h2 {
  font-size: 2.2em;
}

.accordion-title {
  font-weight: 200;
  font-size: 1.1em;
}

#container.provincias {
  margin-bottom: 70px !important;
}

.map {
  width: 50%;
  margin-left: 1rem;
}

#map {
  height: 500px;
}

/* Responsive para tablets y móviles */
@media (max-width: 920px) {
  .proyectos {
    margin-top: 10px;
  }
}

@media (max-width: 705px) {
  .map {
    width: 100%;
    margin-left: 0;
    order: -1;
    /* El mapa aparece primero */
    margin-bottom: 20px;
  }

  #map {
    height: 400px;
  }

  #container {
    width: 100%;
  }

  .main-content {
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
  }
}

@media (max-width: 600px) {
  .shop h2 {
    font-size: 1.8em;
  }

  .accordion-title {
    font-size: 1em;
  }
}


/* Estilos para centrar el pop-up */
.pop-up {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  visibility: hidden;
  /* Oculto por defecto */
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Fondo oscuro del pop-up */
.bg-pop-up {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  /* Fondo semi-transparente */
  z-index: 1;
}

/* Contenido del pop-up */
.pop-up-content {
  position: relative;
  background-color: #000;
  /* Fondo negro */
  color: #fff;
  max-width: 600px;
  width: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Distribuir contenido verticalmente */
  border-radius: 5px;
  overflow: hidden;
}

/* Imagen del pop-up */
.popup-image {
  width: 100%;
  height: auto;
}

/* Estilo del icono de cerrar */
.cross-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  z-index: 10;
}

/* Estilo del título del formulario */
.input-p {
  font-size: 14px;
  line-height: normal;
  max-width: 180px;
  text-align: start;
  margin-right: 12px;
  color: #fff;
}

/* Contenedor de input y botón */
.input-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2px;
  background-color: #1e1e1e;
  /* Fondo oscuro para input y botón */
  padding: 10px;
  border-radius: 5px;
}

/* Estilo del input */
.input-email {
  flex: 1;
  padding: 10px;
  border: none;
  font-size: 14px;
  background-color: transparent;
  color: #d4d3d3;
  outline: none;
  margin-right: 10px;
  margin-left: 10px;
  border-bottom: 1px solid #fff;
  /* Línea inferior blanca */
}

/* Placeholder color */
.input-email::placeholder {
  color: #ccc;
}

/* Estilo del botón de envío */
.button-input {
  background-color: transparent;
  color: #ededed;
  padding: 10px 20px;
  border: solid white 1px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 14px;
  border-radius: 5px;
}

.button-input:hover {
  background-color: transparent;
}

/* Mostrar el pop-up */
.pop-up.show {
  visibility: visible;
  opacity: 1;
}

/* Adaptar el pop-up en pantallas pequeñas */
@media (max-width: 768px) {
  .pop-up-content {
    width: 90%;
  }

  .input-container {
    flex-direction: column;
  }

  .input-email {
    margin-bottom: 10px;
    margin-right: 0;
    width: 100%;
  }

  .button-input {
    width: 100%;
  }
}

.gm-style-iw {
  color: #000 !important;
  margin-top: -25px !important;
}

.gm-style-iw-ch {
  display: none !important;
}

.gm-style-iw-chr {
  justify-content: end !important;
  margin-top: 0px;
  margin-bottom: 0px;
}

.gm-style .gm-style-iw-tc::after {
  display: none !important;
}

.gm-style .gm-style-iw-d {
  margin-top: -22px !important;
}

.gm-style .gm-style-iw-d h3 {
  font-size: 16px !important;
  color: #1e1e1e !important;
  margin-bottom: 5px !important;
  font-weight: bolder !important;
}


/* paginación */

#pagination {
  margin-top: 30px;
  padding: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

#pagination .page-item {
  display: inline-block;
}

#pagination .page-link {
  color: #ffffff;
  background-color: #333333;
  border: 1px solid #555555;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Efecto hover */
#pagination .page-link:hover {
  color: #000000;
  background-color: #ffffff;
}

/* Botón de página actual */
#pagination .page-item.active .page-link {
  color: #000000;
  background-color: #ffffff;
  border-color: #ffffff;
}

/* Botón deshabilitado (izquierda/derecha) */
#pagination .page-item.disabled .page-link {
  color: #777777;
  background-color: #333333;
  border-color: #555555;
  pointer-events: none;
}

.grecaptcha-badge {

  visibility: hidden;

}


  /*SEARCH STYLES  */
  .search-popup-wrap {
    position: fixed;
    top: 0;
    left: 0;
    background: white;
    height: auto;
    width: 100%;
    padding: 40px 0 50px;
    display: none;
    z-index: 99999;
}


.search-form {
  position: relative;
}

.search-form input {
  width: 100%;
  border: none;
  border-bottom: 1px solid gray;
  padding: 10px 50px 20px;
  text-align: center;
  font-weight: 500;
  font-size: 30px;
  background: transparent;
  color: rgb(68, 68, 68);
  outline: none;
}

.search-form input::placeholder {
  font-size: 30px;
  color: var(--tg-primary-color);
  opacity: 0.5;
}

.search-btn {
  position: absolute;
  right: 100px;
  background: transparent;
  border: 0;
  font-size: 25px;
  color: black;
  top: -31%;
  transform: translateY(-50%);
}

.search-close {
  position: absolute;
  top: 5%;
  right: 5%;
  font-size: 30px;
  color: var(--tg-primary-color);
  cursor: pointer;
}

body.search-visible {
  overflow: hidden;
}

.search-backdrop {
  max-width: 99%;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  opacity: 0;
  background: var(--tg-primary-color);
  /* cursor: url(../img/icons/cross-out.png), pointer; */
  z-index: 99;
  visibility: hidden;
}

.subscribe-backdrop {
  max-width: 99%;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  opacity: 0;
  background: var(--tg-primary-color);
  /* cursor: url(../img/icons/cross-out.png), pointer; */
  z-index: 99;
  visibility: hidden;
}

.search-visible .search-backdrop {
  opacity: 0.55;
  visibility: visible;
}

.search-visible .subscribe-backdrop {
  opacity: 0.55;
  visibility: visible;
}

/* ESTILOS SELECT */

#tipoUsuario{
   width: 100%;
    max-width: 300px;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    font-size: 16px;
    color: #333;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill=\'%23333\' height=\'24\' viewBox=\'0 0 24 24\' width=\'24\' xmlns=\'http://www.w3.org/2000/svg\'><path d=\'M7 10l5 5 5-5z\'/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    cursor: pointer;
}

.menu{
  margin-right: 2rem;
}

@media (max-width: 600px) {
  .dropbtn{
    color: red;
    padding: 0 !important;
    font-size: 1.3rem !important;  
    
  }

  .menu{
    margin-right: 0px;
  }
}
