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

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

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(-50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide {
  animation: slideIn 0.5s ease-in-out;
}

.badge-bot-fixed {
  position: fixed;
  left: 24px;
  bottom: 100px;
  z-index: 10;
  display: flex;
  align-items: center;
}


.badge-bot-btn {
  display: flex;
  align-items: center;
  background: #19c419;
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 10px 22px 10px 10px;
  font-size: 0.80rem;
  font-weight: 500;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  cursor: pointer;
  transition: background 0.2s;
  gap: 10px;
  animation: badge-bot-pulse 1.2s infinite;
}

@keyframes badge-bot-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(25,196,25, 0.7);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(25,196,25, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(25,196,25, 0);
  }
}

.badge-bot-btn:hover {
  background: #13a113;
}

.badge-bot-icon {
  width: 38px;
  height: 38px;
  margin-right: 6px;
}