@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;

}

/* 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;
}

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

.bg3{
  background: rgb(119,119,119);
  background: linear-gradient(34deg, rgba(119,119,119,1) 0%, rgba(168,168,168,1) 22%, rgba(209,209,209,1) 50%, rgba(168,168,168,1) 79%, rgba(119,119,119,1) 100%);
}

/*diseños de bordes*/
.inverted-border-radius::before {
  content: "";
  position: absolute;

  background-color: transparent;
  top: 8px;
  right: -25px;
  height: 50px;
  width: 25px;
  border-top-left-radius: 15px;
  box-shadow: 0 -25px 0 0 #09090B;
}

.inverted-border-radius-footer::after {
  content: "";
  position: absolute;
  background-color: transparent;
  bottom: 78px;
  right: -52px;
  height: 30px;
  width: 50px;
  border-top-left-radius: 16px;
  box-shadow: 0 -20px 0 0 #09090B;
}