.btn {
  text-align: center;
  padding: 1rem 2rem;
  border-radius: 0.3rem;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.btn:disabled {
  filter: grayscale(1);
  cursor: default;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 1.2rem 2.4rem;
  font-size: 1.2rem;
}

.btn-full-true {
  width: 100%;
}

.btn-primary {
  color: var(--oa-text-light);
  background-color: var(--oa-pink);
}

.btn-primary:hover {
  background-color: var(--oa-pink-light);
}

.btn-primary:focus {
  background-color: var(--oa-pink-dark);
}

.btn-secondary {
  color: var(--oa-text-light);
  background-color: var(--oa-blue);
}

.btn-secondary:hover {
  background-color: var(--oa-blue-light);
}

.btn-secondary:focus {
  background-color: var(--oa-blue-dark);
}

.btn-rainbow {
  color: var(--oa-text-dark);
  background: linear-gradient(90deg, var(--oa-pink), var(--oa-yellow), var(--oa-green), var(--oa-blue));
}

.btn-rainbow:hover {
  filter: saturate(175%);
}

.btn-rainbow:focus {
  filter: brightness(70%);
}

.input {
  font-size: 1rem;
  padding: 1rem 0.8rem;
  border-radius: 0.4rem;
  border: 1px solid var(--oa-text-medium);
  transition: border-color 0.3s ease;
  outline: none;
}

.input:focus {
  border-color: var(--oa-pink);
}

.input-sm {
  padding: 0.7rem 0.6rem;
  font-size: 0.8rem;
  border-radius: 0.3rem;
}

.input-lg {
  padding: 1.1rem 1rem;
  font-size: 1.2rem;
}

.input-light {
  background-color: var(--oa-text-light);
  color: var(--oa-text-dark);
}

.input-dark {
  background-color: var(--oa-text-dark);
  color: var(--oa-text-light);
}

.input-full-true {
  width: 100%;
}

.input-password-container {
  position: relative;
  display: flex;
  align-items: center;
}

.input-password-container .input {
  padding-right: 3.4rem;
}

.input-password-container .input-sm {
  padding-right: 2.8rem;
}

.input-password-container .input-lg {
  padding-right: 3.9rem;
}

.input-password-toggle {
  position: absolute;
  right: 0.8rem;
  width: 1.4rem;
  height: 1.4rem;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.5;
  mask-image: url("../icons/eye.svg");
  -webkit-mask-image: url("../icons/eye.svg");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}

.input-password-toggle:hover {
  opacity: 0.75;
}

.input-password-toggle-off {
  mask-image: url("../icons/eye-off.svg");
  -webkit-mask-image: url("../icons/eye-off.svg");
}

.input-password-toggle-sm {
  right: 0.6rem;
  width: 1.1rem;
  height: 1.1rem;
}

.input-password-toggle-lg {
  right: 1rem;
  width: 1.6rem;
  height: 1.6rem;
}

.input-password-toggle-light {
  background-color: var(--oa-text-dark);
}

.input-password-toggle-dark {
  background-color: var(--oa-text-light);
}

select.input {
  cursor: pointer;
}

.label {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.label-sm {
  font-size: 0.8rem;
}

.label-lg {
  font-size: 1.2rem;
}

.label-required-true::after {
  content: "*";
  color: var(--oa-pink);
  margin-left: 0.25rem;
}

.label-light {
  color: var(--oa-text-dark);
}

.label-dark {
  color: var(--oa-text-medium-light);
}

.gig,
.artist {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
}

.gig__image,
.artist__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  border-radius: 50%;
}

.gig__label,
.artist__label {
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
  border-radius: 0.15rem;
  background-color: var(--oa-pink);
  color: var(--oa-text-dark);
  position: absolute;
  bottom: 10%;
  left: 0;
  z-index: 1;
}

.gig:nth-child(5n) .gig__label,
.artist:nth-child(5n) .artist__label {
  background-color: var(--oa-orange);
}

.gig:nth-child(5n + 1) .gig__label,
.artist:nth-child(5n + 1) .artist__label {
  background-color: var(--oa-pink);
}

.gig:nth-child(5n + 2) .gig__label,
.artist:nth-child(5n + 2) .artist__label {
  background-color: var(--oa-yellow);
}

.gig:nth-child(5n + 3) .gig__label,
.artist:nth-child(5n + 3) .artist__label {
  background-color: var(--oa-blue);
}

.gig:nth-child(5n + 4) .gig__label,
.artist:nth-child(5n + 4) .artist__label {
  background-color: var(--oa-green);
}

.gig__label h2,
.artist__label h2 {
  text-transform: uppercase;
  line-height: 1.5rem;
  font-size: 1.5rem;
}

/* CHECKBOX */
.checkbox-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-container input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.checkbox-text {
  margin-left: 1rem;
}

.checkbox-label-sm .checkbox-text {
  font-size: 0.8rem;
}

.checkbox-label-md .checkbox-text {
  font-size: 1rem;
}

.checkbox-label-lg .checkbox-text {
  font-size: 1.2rem;
}

.custom-checkbox {
  position: relative;
  background-color: #eee;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.custom-checkbox-sm {
  height: 15px;
  width: 15px;
}

.custom-checkbox-md {
  height: 20px;
  width: 20px;
}

.custom-checkbox-lg {
  height: 25px;
  width: 25px;
}

.checkbox-container input[type="checkbox"]:checked + .checkbox-label .custom-checkbox {
  background-color: #2196f3;
}

.custom-checkbox::after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.checkbox-container input[type="checkbox"]:checked + .checkbox-label .custom-checkbox::after {
  display: block;
}

.custom-checkbox-sm::after {
  left: 4px;
  top: 2px;
  width: 3px;
  height: 6px;
}

.custom-checkbox-md::after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
}

.custom-checkbox-lg::after {
  left: 9px;
  top: 4px;
  width: 7px;
  height: 14px;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(1rem);
  display: none;
  justify-content: center;
  align-items: center;
}

.modal--open {
  display: flex;
}

.modal__body {
  background-color: var(--oa-text-light);
  padding: 2rem;
  border-radius: 0.5rem;
  width: 100%;
  max-width: 50rem;
  max-height: 80vh;
  overflow-y: auto;
  color: var(--oa-text-dark);
}

.modal__header {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 0.5rem;
}

.modal__close {
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  background: none;
  padding: 0;
  border: none;
}

.modal__close img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1);
}

.modaL__title {
  font-size: 1.25rem;
  font-weight: 500;
}

.search-bar {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  max-width: 20rem;
  margin-bottom: 3rem;
}
