.filtro {
    width: 100vw;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 10px;
     background: linear-gradient(135deg, #890606, #ff1a1a, #e60000, #c31212);

    position: relative;
    border: 1px solid white;
    box-shadow: 0 0 12px red;
    margin: 10px;
}
.filtro .filtro-perfiles {
  width: 70%;
  
}
.filtro .filtro-perfiles .filtrotext{
    width: 40%;
    margin: 5px;
    padding: 7px;
    font-size: 15px;
    border-radius: 12px;
}
.filtro .filtro-perfiles .filtroedad {
    width: 5%;
     margin: 5px;
    padding: 7px;
    font-size: 15px;
     border-radius: 12px;
}
.filtro .filtro-perfiles .filtroboton {
    background-color: red;
    padding: 6px 12px;
    color: white;
     border-radius: 12px;
}
.fullscreen-overlay {
  position: fixed;
  top: 0; left: 0; 
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.fullscreen-overlay video {
  max-width: 90%;
  max-height: 80vh;
  border: 4px solid #fff;
}

.btn-ir-perfil {
  margin-top: 15px;
  padding: 10px 20px;
  background: #ffc107;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.cerrar-fullscreen {
  position: absolute;
  top: 10px; right: 10px;
  font-size: 20px;
  background: red;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}
.galeriavideos {
    width: 100vw;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: row;
    padding: 5px;
    height: 120px;
    overflow: hidden;

}
.galeriavideos .rielvideo {
 display: flex;
    overflow-x: scroll;
    align-items: center;
    scroll-behavior: smooth;

    justify-content: start;
}
.galeriavideos .rielvideo::-webkit-scrollbar{
    height: 8px;
    border-radius: 8px;
}
.galeriavideos .rielvideo::-webkit-scrollbar-thumb{
    background: #fc0303;
    width: 15px;
}
.galeriavideos .rielvideo .contenedorvideo {
    max-width: 100px;
    min-width: 100px;
    min-height: 100px;
    max-height: 100px;

    background-image: url(img/fuego.gif);

    border-radius: 50%;
    box-shadow: 0 0 4px white;

    margin: 5px;
    z-index: +3;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s ease;
    margin-right: 10px;
}

.galeriavideos .rielvideo .contenedorvideo:hover {
    transform: scale(1.02);
    box-shadow: 0 0 4px white, 0 0 8px rgb(159, 121, 7), 0 0 13px orange;
}

.galeriavideos .rielvideo .contenedorvideo div {
    max-width: 95px;
    min-width: 95px;
    min-height: 95px;
    max-height: 95px;
    width: 90%;
    height: 90%;
    background-color: black;
    border-radius: 50%;


    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.galeriavideos .rielvideo .contenedorvideo div video {
    width: 100%;

    height: 100%;
    object-fit: cover;

}

video::-webkit-media-controls {
    display: none !important;
}

@media(max-width: 800px) {
.filtro .filtro-perfiles {
  width: 100%;
  
}
.filtro .filtro-perfiles .filtrotext{
    width: 60%;
    margin: 1px;
    padding: 5px;
    font-size: 12px;
    border-radius: 5px;
}
.filtro .filtro-perfiles .filtroedad {
    width: 10%;
     margin: 1px;
    padding: 5px;
    font-size: 12px;
     border-radius: 5px;
}
.filtro .filtro-perfiles .filtroboton {
    background-color: red;
    padding: 5px;
    color: white;
     border-radius: 5px;
}
.galeriavideos {
    width: 100vw;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: row;
    padding: 5px;
    height: 80px;
    overflow: hidden;

}
.galeriavideos .rielvideo {
 display: flex;
  overflow: auto;
    align-items: center;
    scroll-behavior: smooth;
   
}
.galeriavideos .rielvideo .contenedorvideo {
    max-width: 60px;
    min-width: 60px;
    min-height: 60px;
    max-height: 60px;

    background-image: url(img/fuego.gif);

    border-radius: 50%;
    box-shadow: 0 0 4px white;

    margin: 5px;
    z-index: +3;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s ease;
    margin-right: 10px;
}

.galeriavideos .rielvideo .contenedorvideo:hover {
    transform: scale(1.02);
    box-shadow: 0 0 4px white, 0 0 8px rgb(159, 121, 7), 0 0 13px orange;
}

.galeriavideos .rielvideo .contenedorvideo div {
    max-width: 55px;
    min-width: 55px;
    min-height: 55px;
    max-height: 55px;
    width: 90%;
    height: 90%;
    background-color: black;
    border-radius: 50%;


    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.galeriavideos .rielvideo .contenedorvideo div video {
    width: 100%;

    height: 100%;
    object-fit: cover;

}

video::-webkit-media-controls {
    display: none !important;
}
}