:root {
  --blank-value: 80px;
}

.ethic-form {
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
}
.ethic-form__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 90px 155px 130px 155px;
  width: 100%;
  max-width: 1280px;
  border-left: 1px solid #eeeeee;
  border-right: 1px solid #eeeeee;
}
.ethic-form__container__item {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  width: 50%;
  height: auto;
}
.ethic-form__container__item:first-child {
  max-width: 475px;
}
.ethic-form__container__item:last-child {
  margin: 0 0 0 40px;
  max-width: 390px;
}
.ethic-form__form {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.ethic-form__form__row-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 30px;
  margin-bottom: 20px;
  width: 100%;
  color: #4c4f52;
}
.ethic-form__form__row-item .form-label {
  position: relative;
  margin-left: 36px;
  max-width: 100%;
  font-size: 13px;
}
.ethic-form__form__row-item .form-label span {
  font-size: 12px;
  font-style: italic;
}
.ethic-form__form__row-item .form-label p {
  font-size: 13px;
}
.ethic-form__form__row-item .form-label p strong {
  font-size: 13px;
}
.ethic-form__form__row-item .form-label ul {
  list-style: none;
  padding: 0px;
}
.ethic-form__form__row-item .form-label ul li {
  font-size: 13px;
}
.ethic-form__form__row-item .form-label ul li strong {
  font-size: 13px;
}
.ethic-form__form__row-item .form-check {
  opacity: 1;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 0;
  width: 0;
  cursor: pointer;
}
.ethic-form__form__row-item .form-check::before {
  z-index: 90;
  content: "";
  position: absolute;
  display: none;
  left: 8px;
  top: 3px;
  width: 8px;
  height: 15px;
  border: solid #0154a3;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.ethic-form__form__row-item .form-check::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background-color: #f7f9fa;
  border: 1px solid #e8ecf0;
}
.ethic-form__form__row-item .form-check:checked::before {
  display: block;
}
.ethic-form__form__row-item .kvkk-link {
  font-size: 14px;
  text-decoration: underline;
  color: #0154a3;
}
.ethic-form__form__row-item.-margin-top {
  margin-top: 0;
}
.ethic-form__form__option-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
.ethic-form__form__option {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin: 10px 0 10px 0;
  width: 50%;
  color: #4c4f52;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}
.ethic-form__form__option .form-radio {
  opacity: 1;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 0;
  width: 0;
  cursor: pointer;
}
.ethic-form__form__option .form-radio::before {
  z-index: 90;
  content: "";
  position: absolute;
  display: none;
  top: -8px;
  left: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #0154a3;
}
.ethic-form__form__option .form-radio::after {
  content: "";
  position: absolute;
  top: -13px;
  left: 100%;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #e8ecf0;
  background-color: #f7f9fa;
}
.ethic-form__form__option .form-radio:checked::before {
  display: block;
}
.ethic-form__form__option.-parent-invalid > .form-radio::after {
  border: 1px solid red;
}
.ethic-form__form__option label {
  margin-left: 30px;
}
.ethic-form__form__option .form-others-input {
  display: block;
  margin-left: 10px;
  width: 250px;
  height: 30px;
  border: 1px solid #e8ecf0;
  background: #f7f9fa;
}
.ethic-form__form__option .form-others-input.-invalid {
  border: 1px solid red;
}
.ethic-form__form__option.-four {
  width: 25%;
}
.ethic-form__form__option.-one {
  width: 100%;
}
.ethic-form__form__item {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
}
.ethic-form__form__item .big-title {
  margin: 30px 0 20px 0;
  font-size: 22px;
  color: #313130;
}
.ethic-form__form__item .small-title {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 700;
  color: #313130;
}
.ethic-form__form__item .description {
  margin-bottom: 10px;
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  color: #313130;
}
.ethic-form__form__item .input {
  padding: 21px 20px;
  width: 100%;
  height: 60px;
  border: 1px solid #e8ecf0;
  box-shadow: none;
  background-color: #f7f9fa;
  transition: box-shadow 0.4s, border 0.4s;
  resize: none;
}
.ethic-form__form__item.-parent-invalid input, .ethic-form__form__item.-parent-invalid textarea, .ethic-form__form__item.-parent-invalid select {
  border: 1px solid red;
}
.ethic-form__form__item .requirement {
  position: relative;
  display: none;
  align-self: flex-end;
  color: rgb(255, 0, 0);
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 19.2px;
  line-height: 1.2rem;
}
.ethic-form__form__item.-parent-invalid > .requirement {
  display: flex;
}
.ethic-form__form__item .dropdown {
  position: relative;
  -webkit-appearance: none;
          appearance: none;
  background: #f7f9fa url("/assets/svg/dropdown-arrow.svg") no-repeat top 27px right 27px;
}
.ethic-form__form__item textarea {
  padding: 21px 20px;
  width: 100%;
  height: 60px;
  border: 1px solid #e8ecf0;
  box-shadow: none;
  background-color: #f7f9fa;
  resize: none;
}
.ethic-form__form__item textarea.-big {
  height: 120px;
}
.ethic-form__form__upload {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 60px;
  border: 1px solid #e8ecf0;
  background-color: #f7f9fa;
}
.ethic-form__form__upload .upload-file {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.ethic-form__form__upload [type=file] {
  opacity: 0;
  width: 0;
  overflow: hidden;
}
.ethic-form__form__upload .upload-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 12px;
  padding: 15px 12px;
  width: 100px;
  height: 36px;
  border: none;
  outline: none;
  background: linear-gradient(279deg, rgb(178, 225, 230) 0%, rgb(88, 148, 197) 35%, rgb(123, 120, 166) 100%);
  color: #ffffff;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
}
.ethic-form__form__upload .upload-text {
  display: block;
  padding-left: 50px;
  min-width: 250px;
  font-size: 13px;
  font-style: italic;
  color: #959799;
}
.ethic-form__form__upload .close {
  position: absolute;
  display: none;
  right: 20px;
  top: 6px;
  padding: 0 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  background-color: inherit;
  color: #0154a3;
  font-size: 34px;
  cursor: pointer;
}
.ethic-form__form__button {
  width: 100%;
  max-width: 157px;
  height: 46px;
  border: 1px solid #dbdddf;
  background-color: white;
  color: #181818;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 22.4px;
  line-height: 1.4rem;
  font-weight: 600;
  transition: background-color 0.4s, color 0.4s;
  cursor: pointer;
}
.ethic-form__form__button:hover {
  background-color: #bdc7d1;
  color: #ffffff;
}
.ethic-form__form__border {
  display: block;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #e8ecf0;
}
.ethic-form__mt {
  margin-top: 20px;
}
.ethic-form__hide {
  display: none;
}

.-checkbox-invalid::after {
  border: 1px solid red !important;
}

.-hidden {
  display: none;
}

@media only screen and (max-width: 1024px) {
  :root {
    --blank-value: 50px;
  }
  .ethic-form__container {
    padding: 67px;
    border: 0;
  }
}

@media only screen and (max-width: 909px) {
  .ethic-form__container {
    flex-direction: column-reverse;
  }
  .ethic-form__container__item:first-child {
    width: 100%;
    max-width: none;
  }
  .ethic-form__container__item:last-child {
    margin: 0;
    width: 100%;
    max-width: none;
  }
  .ethic-form__form__row-item.-center {
    justify-content: center;
  }
  .ethic-form__form__option {
    width: 100%;
  }
  .ethic-form__form__option .form-others-input {
    width: 200px;
  }
  .ethic-form__form__option.-four {
    width: 50%;
  }
  .ethic-form__form__upload .upload-button {
    font-size: 12px;
  }
  .ethic-form__form__upload .upload-text {
    font-size: 12px;
  }
}

@media only screen and (max-width: 639px) {
  .ethic-form__container {
    padding: 67px 24px 67px 24px;
  }
}