:root {
  --primaryColor: #0d6939;
  --white: #ffff;
  --secundaryColor: #118f4d;
  --btn: #3f527d;
}



.btn-3 {
  background-color: transparent;
  border-width: 2px;
  border-color: var(--primaryColor);
  border-radius: 5px;
  color: var(--primaryColor);
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.btn-3:hover {
  background-color: var(--primaryColor);
  color: #fff;
  border-color: var(--primaryColor);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 400ms;
  transform: scale(1.05);
}

.gallery-image {
  width: 100%;
  height: 240px;
  border-radius: 8px;
  transition: transform 0.2s, border-color 0.2s;
  border-width: 4px;
  border-color: transparent;
}

.gallery-image:hover {
  border-color: var(--primaryColor);
  transform: scale(1.05);
}

/* .txtPaginator {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: var(--primaryColor);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 16px;
  transition: background-color 0.3s, color 0.3s;
}

.txtPaginator:hover {
  background-color: var(--secundaryColor);
  color: black;
} */

button.paginador__item--inactive {
  pointer-events:none;
  cursor: not-allowed;
  background-color: rgb(229, 229, 229) !important;
  user-select: none;
  cursor: not-allowed;
}

#containerAlbums .album__active {
  background-color: var(--primaryColor) !important;
  color: #fff !important;
}

/* #containerAlbums .album__active[data-target="Clear"] {
  background-color: red !important;
} */


.spinner {
  position: relative;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner::before,
.spinner::after {
  border: 6.7px solid #b3b3b3;
  border-radius: 50%;
  position: absolute;
  content: '';
  display: block;
}

.spinner::before {
  width: 33.6px;
  height: 33.6px;
  border-bottom-color: transparent;
  border-left-color: transparent;
  animation: spinner-1o3y8q 0.75s infinite linear reverse;
}

.spinner::after {
  animation: spinner-1o3y8q 0.5s infinite linear;
  height: 56px;
  width: 56px;
  border-right-color: transparent;
  border-top-color: transparent;
}

@keyframes spinner-1o3y8q {
  to {
     transform: rotate(360deg);
  }
}



.custom-loader {
width: 50px;
height: 50px;
display: grid;
border-radius: 50%;
-webkit-mask:radial-gradient(farthest-side,#0000 40%,#000 41%);
background:
  linear-gradient(0deg ,var(--primaryColor) 50%,var(--secundaryColor) 0) center/4px 100%,
  linear-gradient(90deg,var(--secundaryColor) 50%,var(--primaryColor) 0) center/100% 4px;
background-repeat: no-repeat;
animation: s3 1s infinite steps(12);
}
.custom-loader::before,
.custom-loader::after {
 content:"";
 grid-area: 1/1;
 border-radius: 50%;
 background:inherit;
 opacity: 0.915;
 transform: rotate(30deg);
}
.custom-loader::after {
 opacity: 0.83;
 transform: rotate(60deg);
}

@keyframes s3 {
100% {transform: rotate(1turn)}
}