.crowdedness-form {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .crowdedness-form {
    padding: 16px 0;
  }
}
.crowdedness-form form {
  width: 100%;
}
.crowdedness-form form.submit--success .list--suspended {
  margin-top: 0;
}
.crowdedness-form_header {
  text-align: center;
  margin-bottom: 52px;
}
@media screen and (max-width: 768px) {
  .crowdedness-form_header {
    margin-bottom: 32px;
  }
}
.crowdedness-form_header img {
  display: inline-block;
  height: 59px;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .crowdedness-form_header img {
    height: 48px;
  }
}
.crowdedness-form_header .title {
  color: #333;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  margin: 0 0 2px 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .crowdedness-form_header .title {
    font-size: 16px;
  }
}
.crowdedness-form_header .attraction {
  color: #ff0000;
  font-weight: bold;
  font-size: 36px;
  line-height: 1;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .crowdedness-form_header .attraction {
    font-size: 30px;
  }
}
.crowdedness-form_grid {
  display: flex;
  column-gap: 80px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 880px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .crowdedness-form_grid {
    column-gap: 32px;
  }
}
@media screen and (max-width: 768px) {
  .crowdedness-form_grid {
    column-gap: unset;
    max-width: 100%;
  }
}
.crowdedness-form_grid > span {
  width: 400px;
  height: 0;
}
@media screen and (max-width: 768px) {
  .crowdedness-form_grid > span {
    width: 100%;
  }
}
.crowdedness-form_card {
  box-sizing: border-box;
  padding: 16px 32px;
  background: #eee;
  width: 400px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .crowdedness-form_card {
    width: 100%;
    margin-bottom: 20px;
  }
}
.crowdedness-form_card p {
  margin: 0;
  padding: 0;
  font-weight: bold;
  font-size: 24px;
  color: #666;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .crowdedness-form_card p {
    font-size: 20px;
  }
}
.crowdedness-form_card .list {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .crowdedness-form_card .list {
    margin-top: 20px;
  }
}
.crowdedness-form_card .list--suspended {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .crowdedness-form_card .list--suspended {
    margin-top: 20px;
  }
}
.crowdedness-form_card .list .option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px 8px 24px;
  margin-bottom: 8px;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  position: relative;
  /* Colors */
}
.crowdedness-form_card .list .option:last-child {
  margin-bottom: 0;
}
.crowdedness-form_card .list .option span {
  font-weight: bold;
  font-size: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .crowdedness-form_card .list .option span {
    font-size: 16px;
  }
}
.crowdedness-form_card .list .option span em {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  margin-left: 4px;
}
@media screen and (max-width: 768px) {
  .crowdedness-form_card .list .option span em {
    font-size: 14px;
  }
}
.crowdedness-form_card .list .option input[type="radio"] {
  display: none;
}
.crowdedness-form_card .list .option.green {
  background: #00b050;
}
.crowdedness-form_card .list .option.orange {
  background: #ffa43c;
}
.crowdedness-form_card .list .option.red {
  background: #ff0000;
}
.crowdedness-form_card .list .option.gray {
  background: #666666;
}
.crowdedness-form_card .list .option.light-gray {
  background: #cccccc;
}
.crowdedness-form_card .list .circle {
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.crowdedness-form_card .list .circle::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: none;
}
@media screen and (max-width: 768px) {
  .crowdedness-form_card .list .circle {
    width: 14px;
    height: 14px;
  }
  .crowdedness-form_card .list .circle::after {
    width: 8px;
    height: 8px;
  }
}
.crowdedness-form_card .list .option input:checked + .circle::after {
  display: block;
  background: #fff;
}
.crowdedness-form_confirm {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  position: relative;
}
.crowdedness-form_confirm input[type="checkbox"] {
  display: none;
}
.crowdedness-form_confirm label {
  position: relative;
  padding-left: 46px;
  font-weight: bold;
  font-size: 16px;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  min-height: 32px;
}
@media screen and (max-width: 768px) {
  .crowdedness-form_confirm label {
    font-size: 14px;
    padding-left: 44px;
  }
}
.crowdedness-form_confirm label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: 2px solid #666;
  border-radius: 3px;
  background: #dddddd;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .crowdedness-form_confirm label::before {
    width: 24px;
    height: 24px;
  }
}
.crowdedness-form_confirm input[type="checkbox"]:checked + label::before {
  background: #ff0000;
  border-color: #ff0000;
}
.crowdedness-form_confirm input[type="checkbox"]:checked + label::after {
  content: "";
  position: absolute;
  left: 10px;
  top: calc(50% + 2px);
  transform: translateY(-75%) rotate(45deg);
  width: 8px;
  height: 15px;
  border: solid white;
  border-width: 0 3px 3px 0;
}
@media screen and (max-width: 768px) {
  .crowdedness-form_confirm input[type="checkbox"]:checked + label::after {
    left: 9px;
    top: 50%;
    width: 6px;
    height: 12px;
    border-width: 0 2px 2px 0;
    transform: translateY(-65%) rotate(45deg);
  }
}
.crowdedness-form_confirm input[type="checkbox"]:focus + label::before {
  box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.3);
}
.crowdedness-form_success {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  color: #333;
  display: none;
  margin-top: 32px;
}
.crowdedness-form_success p {
  font-weight: bold;
  font-size: 20px;
  color: #333;
}
@media screen and (max-width: 768px) {
  .crowdedness-form_success p {
    font-size: 16px;
  }
}
.crowdedness-form_submit,
.crowdedness-form_back {
  text-align: center;
}
.crowdedness-form_submit button,
.crowdedness-form_back button {
  background: #ff0000;
  color: #fff;
  font-weight: bold;
  border: none;
  padding: 8px 64px;
  font-size: 24px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .crowdedness-form_submit button,
  .crowdedness-form_back button {
    font-size: 20px;
    padding: 8px 48px;
  }
}
.crowdedness-form_submit button:disabled,
.crowdedness-form_back button:disabled {
  background: #ccc;
  cursor: not-allowed;
}
.crowdedness-form_submit {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .crowdedness-form_submit {
    margin-top: 24px;
  }
}
.crowdedness-form_submit img {
  width: 32px;
  margin-left: 20px;
  display: none;
}
.crowdedness-form_back {
  margin-top: 24px;
  display: none;
}
@media screen and (max-width: 768px) {
  .crowdedness-form_back {
    margin-top: 20px;
  }
}
.crowdedness-form_message {
  color: #ff0000;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  margin-top: 24px;
  display: none;
}
.crowdedness-form_message p {
  color: #ff0000;
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .crowdedness-form_message {
    margin-top: 16px;
  }

  .crowdedness-form_message p {
    font-size: 16px;
  }
}
