.comment {
  display: flex;
  flex-direction: column;
  margin: 10px 0;
  padding: 0 0 30px 0;
}
.comment .title-h4 {
  text-align: center;
}
.comment .title-h2 {
  text-align: center;
}

.form-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0px;
  padding: 10px;
}
.form-container .privacy-policy {
  margin: 20px 0;
}

.form-label-choise {
  letter-spacing: 1.5px;
  margin: 20px 0;
}
.form-label-choise label {
  margin-bottom: 10px;
}

.form {
  width: 100%;
  max-width: 600px;
  background-color: #000000;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.473);
  font-size: 18px;
  letter-spacing: 1.5px;
}

.form-label {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
  letter-spacing: 1.5px;
  line-height: 1.5;
}

.form-input {
  width: 100%;
  padding: 5px;
  margin-top: 10px;
  margin-bottom: 0px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 20px;
}

.form-button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 20px;
  letter-spacing: 1.5px;
  transition: all 0.5s ease;
}
.form-button:hover {
  letter-spacing: 3.5px;
  background-color: rgb(1, 254, 234);
  color: #000000;
  font-weight: 700;
}
.form-button:active {
  letter-spacing: 2.5px;
  background-color: rgb(255, 255, 255);
  color: #000000;
  font-weight: 700;
  transition: all 0.1s ease;
}

.textFeedback {
  transition: all 0.5s ease;
}

.letterFeedback {
  transition: all 0.5s ease;
}

.hidden {
  transition: all 0.5s ease;
  display: none;
}

.custom-textarea {
  resize: none;
}

.custom-textarea::-webkit-scrollbar {
  width: 12px;
}

.custom-textarea::-webkit-scrollbar-track {
  background-color: #a7a7a7;
  border-radius: 8px;
}

.custom-textarea::-webkit-scrollbar-thumb {
  background-color: rgb(0, 0, 0);
  border-radius: 8px;
  cursor: pointer;
}

.image-choice {
  width: 100%;
  max-width: 560px;
  display: flex;
  justify-content: space-around;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  margin-top: 10px;
}

.image-choice label {
  display: block;
  cursor: pointer;
}

.image-choice input[type=radio] {
  display: none;
}

.image-choice img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.image-choice img:hover {
  transform: scale(1.1);
}

.image-choice input[type=radio]:checked + img {
  border-color: rgb(1, 254, 234);
}

.form-radio-hidden {
  display: flex;
  flex-direction: row;
  height: 30px;
  position: relative;
  align-items: center;
  transition: all 0.5s ease;
}

.form-radio-hidden input {
  position: absolute;
  opacity: 0;
  display: block;
  height: 0;
  width: 0;
  transition: all 0.5s ease;
}

.form-radio-hidden .radio {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  position: relative;
  height: 20px;
  width: 20px;
  border-radius: 20px;
  margin-right: 10px;
  border: 1px solid #999999;
  background-color: #ffffff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
  outline: none;
  box-sizing: border-box;
  transition: all 0.5s ease;
}

.form-radio-hidden:hover .radio {
  background-color: #f9f9f9;
  box-shadow: inset 1px 2px 3px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.form-radio-hidden input:checked + .radio {
  border-color: #555;
  background-color: #f9f9f9;
  box-shadow: inset 1px 2px 3px 0 rgba(0, 0, 0, 0.1);
  cursor: default;
  transition: all 0.5s ease;
}

.form-radio-hidden:hover .radio::before, .form-radio-hidden input:checked + .radio::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 8px;
  background-color: #b8b8b8;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
}

.form-radio-hidden input:checked + .radio::before {
  background-color: rgb(0, 0, 0);
  box-shadow: 1px 2px 2px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease;
}

.form-radio-hidden input + .radio + .text {
  color: #ffffff;
  cursor: pointer;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 1.5px;
  margin-right: 10px;
  align-self: center;
  transition: all 0.5s ease;
}

.form-radio-hidden input:checked + .radio + .text {
  color: rgb(1, 254, 234);
  cursor: pointer;
  transition: all 0.5s ease;
}

@media (max-width: 1000px) {
  .comment {
    margin: 40px 0;
  }
}
@media (max-width: 1000px) {
  .comment {
    margin: 40px 0 0;
  }
  .form-label-choise {
    margin: 10px 0 20px;
  }
  .image-choice {
    gap: 6px;
  }
  .image-choice img {
    width: 80px;
    height: 80px;
  }
}