/* performers - section divider */

#section-divider {
  width: 100%;
  height: 1px;
  background-color: var(--light-gray-4);
}

/* performers - criteria */

#criteria {
  background-color: var(--white);
}

#criteria .content {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 140px 0;
}

#criteria .left {
  width: 540px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  color: var(--black);
}

#criteria .left .description {
  width: 400px;
}

#criteria .right {
  width: 420px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

#criteria .right .option {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 0 4px 20px;
  border-left: 4px solid var(--turquoise);
}

#criteria .right .or,
#criteria .right .option .subtitle {
  color: var(--blue);
}

#criteria .right .option .description {
  color: var(--black);
}

#criteria .right .option .description a {
  color: var(--blue);
  text-decoration: underline;
}

@media (max-width: 1300px) {
  #criteria .left {
    width: 450px;
  }
}

@media (max-width: 1100px) {
  #criteria .left,
  #criteria .left .description,
  #criteria .right {
    width: 100%;
  }
}

@media (max-width: 800px) {
  #criteria .content {
    flex-direction: column;
    padding: 70px 0;
    gap: 56px;
  }

  #criteria .left,
  #criteria .left .description,
  #criteria .right {
    width: 100%;
  }

  #criteria .left {
    gap: 20px;
  }

  #criteria .right {
    gap: 32px;
  }

  #criteria .right .option {
    border-left: 0;
    border-top: 4px solid var(--turquoise);
    padding: 24px 0 0;
    gap: 20px;
  }
}

#criteria.single-view .content {
  flex-direction: column;
  gap: 64px;
}

#criteria.single-view .left {
  width: 100%;
  align-items: center;
  text-align: center;
}

#criteria.single-view .left .description {
  width: 100%;
}

#criteria.single-view .right {
  width: 600px;
}

#criteria.single-view .right .option {
  padding: 0;
  border: 0;
  gap: 16px;
  text-align: center;
}

@media (max-width: 800px) {
  #criteria.single-view .right {
    width: 100%;
  }
}

/* performers - name search */

#name-search {
  background-color: var(--white);
}

#name-search .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  padding: 100px 0;
  z-index: 1;
}

#name-search .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
  color: var(--black);
}

#name-search .description {
  max-width: 660px;
}

#name-search .description a {
  color: var(--blue);
  text-decoration: underline;
}

#name-search form {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

#name-search form input {
  border-radius: 30px;
  border: 2px solid var(--black);
  padding: 12px 30px;
  color: var(--black);
  background-color: var(--semitransparent-white);
}

#name-search .input-wrapper {
  display: flex;
  flex-direction: column;
  width: 540px;
}

#name-search-validation {
  display: none;
  background-color: transparent !important;
  color: #d3053b;
  margin-top: 4px !important;
  padding-left: 32px !important;
}

#name-search form input::placeholder {
  color: var(--black);
}

#name-search form button {
  width: 160px;
  cursor: pointer;
}

@media (max-width: 800px) {
  #name-search .content {
    gap: 36px;
    padding: 70px 0;
  }

  #name-search .text {
    gap: 24px;
  }

  #name-search form {
    flex-direction: column;
    gap: 20px;
  }

  #name-search form,
  #name-search form input,
  #name-search .input-wrapper {
    width: 100%;
  }

  #name-search form button {
    width: 100%;
  }
}
