body {
  overflow-x: hidden;
  margin: 0;
  font-family: 'Arial', sans-serif;
}
.nav {
    border-bottom: 3px solid #dad8d8;
  }

  .search {
    height: 50px;
    /*border: 1px solid #000;*/
    border-radius: 25px;
    opacity: 1;
    width: 80%;
  }

  .input-serach:focus ::after ::before :hover {
    border-color: transparent !important;
    outline: none;

  }

  .input-serach {
    border-color: transparent !important;
    width: 95%;
    height: 45px;
    border-radius: 25px;
    border-color: #fff;
    border-width: 0px;
    margin: 2px;
    outline: none;
  }

  .button {
    background: #ededed;
    border-radius: 20px;
    height: 35px;
    width: 35px;
    display: flex;
    margin: 7px -7px;
    justify-content: center;
    padding: 0;
    color: #9593a9;
  }

  .button:hover {
    color: #fff;
    background: #ed1b24;
  }

  .button-vermas {
    text-decoration: none;
    
    font-size: 17px;
    font-weight: 700;
    border: 1.5px solid #ed1b24;
    border-radius: 33px;
    display: flex;
    align-items: center;
    color: #ffff;
    background-color: #ed1b24;
  }

  .button-vermas:hover {
    text-decoration: none;
    
    font-size: 17px;
    font-weight: 700;
    border: 1.5px solid #ed1b24;
    border-radius: 33px;
    display: flex;
    align-items: center;
    color: #3d3c3c;
    background-color: #fff;
    
  }
  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Fondo semitransparente */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Asegúrate de que esté por encima de otros elementos */
  }

  .loader {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #ed1b24; /* Azul */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite; /* Animación de rotación */
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }