@import url("../css/button/styleButton.css");

:root {
  --primary: #00b4e8;
  --secondary: #01566b;
  --tertiary: #26d0f4;
  --fourth: #4b4a4a;
  --btn-color: #00b4e8;
  --title: #1a1919;
  --text: #141414;
  --btn-hover-color: #0e98be;
  --btn-border-color: #045a72;
}

body {
  overflow-x: hidden;
  background-image: url("https://firebasestorage.googleapis.com/v0/b/archivos-fc4bd.appspot.com/o/imagenes_fondos%2Fbackground_figueroa.jpg?alt=media&token=1b1879ef-0fbe-49cc-802e-a2f98c3775b7");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(
    0,
    0,
    0,
    0.6
  ); /* Color de superposición con opacidad */
  z-index: -1; /* Asegura que la superposición esté detrás del contenido */
}

/* Estilos para el scrollbar */
::-webkit-scrollbar {
  width: 12px; /* Ancho de la barra de desplazamiento */
}

/* Handle del scrollbar */
::-webkit-scrollbar-thumb {
  background: var(--btn-hover-color); /* Color del handle */
  border-radius: 6px; /* Bordes redondeados */
}

.scroolbarSubBlock::-webkit-scrollbar {
  width: 6px; /* Ancho de la barra de desplazamiento */
}

.scroolbarSubBlock::-webkit-scrollbar-thumb {
  background: var(--btn-hover-color); /* Nuevo color del handle */
  border-radius: 8px; /* Bordes redondeados */
}

.scroolbarSubBlock::-webkit-scrollbar-track {
  background: var(
    --btn-color
  ); /* Color de fondo de la barra de desplazamiento */
  border-radius: 8px; /* Bordes redondeados */
}

/* ***************************************************************************************************************** */

/* estilo de gallery masonry */

.my-masonry-grid {
  display: -webkit-box; /* Not needed if autoprefixing */
  display: -ms-flexbox; /* Not needed if autoprefixing */
  display: flex;
  justify-content: center;
  margin-left: -30px; /* gutter size offset */
  width: auto;
}
.my-masonry-grid_column {
  padding-left: 30px; /* gutter size */
  background-clip: padding-box;
}

/* Style your items */
.my-masonry-grid_column > div {
  /* change div to reference your elements you put in <Masonry> */
  background: grey;
  margin-bottom: 20px;
}

/* ***************************************************************************************************************** */
