﻿/* Variables */
:root {
  --colorPP: #22682f;
}

#ModalBuscador {
  display: none; /* Ocultar el modal por defecto */
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Fondo oscuro semi-transparente */
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

/* Estilos para el spinner */
.spinnerSearch {
  position: relative;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.spinnerSearch {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(farthest-side, var(--colorPP) 94%, #0000) top/9px
      9px no-repeat,
    conic-gradient(#0000 30%, var(--colorPP));
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 9px), #000 0);
  animation: spinner-c7wet2 1s infinite linear;
}

@keyframes spinner-c7wet2 {
  100% {
    transform: rotate(1turn);
  }
}
.scrollbar::-webkit-scrollbar{
    width: 12px;
}

.scrollbar::-webkit-scrollbar-thumb{
    background-color: #c0c0c0;
    border-radius: 10px;
}
.scrollba{
	overflow-x:hidden;
}
#search:focus{
	border-color: var(--colorPP)
}
#search:hover{
	border-color: var(--colorPP)
}

#guardarBoton i{
	color: var(--colorPP)
}

#voice-search:disabled > img{
  filter: invert(0.5);
}

#voice-search{
	 display: flex;
    justify-content: center;
    align-items: center;
}
input[type="search"]{
    border: 1px solid #ababab;
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.85);
    color: #444;
}
