.schedule-recycle-section {
  padding: 80px 0;
  background-color: #fff;
}
@media (max-width: 991px) {
  .schedule-recycle-section {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .schedule-recycle-section {
    padding: 50px 0;
  }
}
@media (max-width: 480px) {
  .schedule-recycle-section {
    padding: 40px 0;
  }
}
.schedule-recycle-section .title {
  margin-bottom: 15px;
}
.schedule-recycle-section .subtitle {
  color: #666;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .schedule-recycle-section .subtitle {
    margin-bottom: 40px;
  }
}
.schedule-recycle-section .step-progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto 60px;
  position: relative;
}
@media (max-width: 767px) {
  .schedule-recycle-section .step-progress {
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .schedule-recycle-section .step-progress {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.schedule-recycle-section .step-progress::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 11%;
  right: 11%;
  height: 2px;
  background-color: #E5E5E5;
  z-index: 0;
}
@media (max-width: 991px) {
  .schedule-recycle-section .step-progress::before {
    left: 8%;
    right: 8%;
  }
}
@media (max-width: 767px) {
  .schedule-recycle-section .step-progress::before {
    display: none;
  }
}
.schedule-recycle-section .step-progress .step-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 480px) {
  .schedule-recycle-section .step-progress .step-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 10px);
            flex: 0 0 calc(50% - 10px);
  }
}
.schedule-recycle-section .step-progress .step-item .step-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #FFF1CA;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .schedule-recycle-section .step-progress .step-item .step-circle {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }
}
.schedule-recycle-section .step-progress .step-item .step-circle .step-number {
  font-size: 20px;
  font-weight: 500;
  color: #666;
}
@media (max-width: 767px) {
  .schedule-recycle-section .step-progress .step-item .step-circle .step-number {
    font-size: 18px;
  }
}
.schedule-recycle-section .step-progress .step-item .step-label {
  font-size: 16px;
  color: #666;
  font-weight: 500;
}
@media (max-width: 767px) {
  .schedule-recycle-section .step-progress .step-item .step-label {
    font-size: 14px;
  }
}
.schedule-recycle-section .step-progress .step-item.active .step-circle {
  background-color: #32694A;
}
.schedule-recycle-section .step-progress .step-item.active .step-circle .step-number {
  color: #fff;
}
.schedule-recycle-section .step-progress .step-item.active .step-label {
  color: #32694A;
}
.schedule-recycle-section .step-forms {
  margin: 0 auto;
}
.schedule-recycle-section .step-form {
  display: none;
  background-color: #fff;
  padding: 40px;
  border-radius: 20px;
  -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}
@media (max-width: 767px) {
  .schedule-recycle-section .step-form {
    padding: 30px 20px;
    border-radius: 15px;
  }
}
.schedule-recycle-section .step-form.active {
  display: block;
}
.schedule-recycle-section .step-form .step-title {
  font-size: 28px;
  font-weight: 500;
  color: #000;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .schedule-recycle-section .step-form .step-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
}
.schedule-recycle-section .form-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .schedule-recycle-section .form-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 25px;
  }
}
.schedule-recycle-section .form-grid .form-group.full-width {
  grid-column: 1/-1;
}
.schedule-recycle-section .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .schedule-recycle-section .form-group label {
    font-size: 13px;
    margin-bottom: 6px;
  }
}
.schedule-recycle-section .form-group .form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  font-size: 14px;
  color: #000;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .schedule-recycle-section .form-group .form-input {
    padding: 10px 12px;
    font-size: 13px;
  }
}
.schedule-recycle-section .form-group .form-input:focus {
  outline: none;
  border-color: #32694A;
  -webkit-box-shadow: 0 0 0 3px rgba(50, 105, 74, 0.1);
          box-shadow: 0 0 0 3px rgba(50, 105, 74, 0.1);
}
.schedule-recycle-section .form-group .form-input::-webkit-input-placeholder {
  color: #999;
}
.schedule-recycle-section .form-group .form-input::-moz-placeholder {
  color: #999;
}
.schedule-recycle-section .form-group .form-input:-ms-input-placeholder {
  color: #999;
}
.schedule-recycle-section .form-group .form-input::-ms-input-placeholder {
  color: #999;
}
.schedule-recycle-section .form-group .form-input::placeholder {
  color: #999;
}
.schedule-recycle-section .form-group .form-input.error {
  border-color: #DC3545;
  -webkit-box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
          box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
.schedule-recycle-section .form-group textarea.form-input {
  resize: vertical;
  min-height: 120px;
}
.schedule-recycle-section .form-group select.form-input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}
.schedule-recycle-section .form-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .schedule-recycle-section .form-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
}
.schedule-recycle-section .form-actions .btn {
  border-radius: 30px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .schedule-recycle-section .form-actions .btn {
    width: 100%;
    padding: 12px 25px;
    font-size: 15px;
  }
}
.schedule-recycle-section .form-actions .btn i {
  margin: 0 5px;
}
.schedule-recycle-section .form-actions .btn-prev {
  background-color: #fff;
  color: #32694A;
  border: 2px solid #32694A;
  margin-right: auto;
}
@media (max-width: 767px) {
  .schedule-recycle-section .form-actions .btn-prev {
    margin-right: 0;
  }
}
.schedule-recycle-section .form-actions .btn-prev:hover {
  background-color: #32694A;
  color: #fff;
}
.schedule-recycle-section .form-actions .btn-next {
  background-color: #32694A;
  color: #fff;
  border: 2px solid #32694A;
}
.schedule-recycle-section .form-actions .btn-next:hover {
  background-color: rgb(33.5483870968, 70.4516129032, 49.6516129032);
}
#step-4 .schedule-recycle-section .form-actions {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#step-4 .schedule-recycle-section .form-actions #prevStep4 {
  margin-right: auto !important;
  margin-left: 0 !important;
}
@media (max-width: 767px) {
  #step-4 .schedule-recycle-section .form-actions #prevStep4 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
#step-4 .schedule-recycle-section .form-actions .final-step-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-left: auto;
}
@media (max-width: 767px) {
  #step-4 .schedule-recycle-section .form-actions .final-step-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin-left: 0;
  }
}
#step-4 .schedule-recycle-section .form-actions .btn-save-draft {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #E5E5E5;
  color: #666;
  border: 2px solid #E5E5E5;
  white-space: nowrap;
}
#step-4 .schedule-recycle-section .form-actions .btn-save-draft:hover {
  background-color: #D5D5D5;
  border-color: #D5D5D5;
}
#step-4 .schedule-recycle-section .form-actions .btn-save-draft i {
  font-size: 14px;
}
@media (max-width: 767px) {
  #step-4 .schedule-recycle-section .form-actions .btn-save-draft {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 12px 25px;
    font-size: 15px;
  }
}
#step-4 .schedule-recycle-section .form-actions .btn-post-scrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #32694A;
  color: #fff;
  border: 2px solid #32694A;
  white-space: nowrap;
}
#step-4 .schedule-recycle-section .form-actions .btn-post-scrap:hover {
  background-color: rgb(33.5483870968, 70.4516129032, 49.6516129032);
}
#step-4 .schedule-recycle-section .form-actions .btn-post-scrap i {
  font-size: 14px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (max-width: 767px) {
  #step-4 .schedule-recycle-section .form-actions .btn-post-scrap {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 12px 25px;
    font-size: 15px;
  }
}
.schedule-recycle-section .upload-sections {
  margin-bottom: 30px;
}
.schedule-recycle-section .upload-section .upload-area {
  border: 2px dashed #32694A;
  border-radius: 15px;
  padding: 40px 20px;
  text-align: center;
  background-color: transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
@media (max-width: 767px) {
  .schedule-recycle-section .upload-section .upload-area {
    padding: 30px 15px;
  }
}
.schedule-recycle-section .upload-section .upload-area .upload-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #E3FFDE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 20px;
}
@media (max-width: 767px) {
  .schedule-recycle-section .upload-section .upload-area .upload-icon-circle {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
}
.schedule-recycle-section .upload-section .upload-area .upload-icon-circle .upload-icon {
  font-size: 32px;
  color: #fff;
}
@media (max-width: 767px) {
  .schedule-recycle-section .upload-section .upload-area .upload-icon-circle .upload-icon {
    font-size: 24px;
  }
}
.schedule-recycle-section .upload-section .upload-area .upload-text {
  margin-bottom: 20px;
}
.schedule-recycle-section .upload-section .upload-area .upload-text .upload-main-text {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .schedule-recycle-section .upload-section .upload-area .upload-text .upload-main-text {
    font-size: 16px;
  }
}
.schedule-recycle-section .upload-section .upload-area .upload-text .upload-sub-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .schedule-recycle-section .upload-section .upload-area .upload-text .upload-sub-text {
    font-size: 13px;
  }
}
.schedule-recycle-section .upload-section .upload-area .upload-text .upload-format {
  font-size: 12px;
  color: #999;
}
@media (max-width: 767px) {
  .schedule-recycle-section .upload-section .upload-area .upload-text .upload-format {
    font-size: 11px;
  }
}
.schedule-recycle-section .upload-section .upload-area .btn-choose-files {
  background-color: #32694A;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 30px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .schedule-recycle-section .upload-section .upload-area .btn-choose-files {
    padding: 10px 25px;
    font-size: 14px;
  }
}
.schedule-recycle-section .upload-section .upload-area .btn-choose-files:hover {
  background-color: rgb(33.5483870968, 70.4516129032, 49.6516129032);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.schedule-recycle-section .upload-section .upload-area .btn-choose-files i {
  font-size: 14px;
}
.schedule-recycle-section .upload-section .upload-area .file-input {
  display: none;
}
.schedule-recycle-section .upload-section .upload-area .upload-hint {
  font-size: 12px;
  color: #999;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .schedule-recycle-section .upload-section .upload-area .upload-hint {
    font-size: 11px;
    margin-top: 12px;
  }
}
.schedule-recycle-section .document-upload-section {
  margin-bottom: 30px;
}
.schedule-recycle-section .document-upload-section .document-upload-area {
  border: 2px dashed #32694A;
  border-radius: 15px;
  padding: 50px 20px;
  text-align: center;
  background-color: transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .schedule-recycle-section .document-upload-section .document-upload-area {
    padding: 25px 15px;
  }
}
.schedule-recycle-section .document-upload-section .document-upload-area:hover {
  border-color: #32694A;
  background-color: #F0F0F0;
}
.schedule-recycle-section .document-upload-section .document-upload-area .document-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #E3FFDE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 15px;
}
@media (max-width: 767px) {
  .schedule-recycle-section .document-upload-section .document-upload-area .document-icon-circle {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }
}
.schedule-recycle-section .document-upload-section .document-upload-area .document-icon-circle i {
  font-size: 24px;
  color: #666;
}
@media (max-width: 767px) {
  .schedule-recycle-section .document-upload-section .document-upload-area .document-icon-circle i {
    font-size: 20px;
  }
}
.schedule-recycle-section .document-upload-section .document-upload-area .document-upload-title {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .schedule-recycle-section .document-upload-section .document-upload-area .document-upload-title {
    font-size: 15px;
  }
}
.schedule-recycle-section .document-upload-section .document-upload-area .document-upload-subtitle {
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .schedule-recycle-section .document-upload-section .document-upload-area .document-upload-subtitle {
    font-size: 12px;
    margin-bottom: 15px;
  }
}
.schedule-recycle-section .document-upload-section .document-upload-area .btn-upload-document {
  background-color: #E5E5E5;
  color: #666;
  border: none;
  border-radius: 30px;
  padding: 10px 25px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .schedule-recycle-section .document-upload-section .document-upload-area .btn-upload-document {
    padding: 8px 20px;
    font-size: 13px;
  }
}
.schedule-recycle-section .document-upload-section .document-upload-area .btn-upload-document:hover {
  background-color: #D5D5D5;
}
.schedule-recycle-section .document-upload-section .document-upload-area .btn-upload-document i {
  font-size: 13px;
}
.schedule-recycle-section .document-upload-section .document-upload-area .document-file-input {
  display: none;
}
.schedule-recycle-section .checkbox-group {
  margin-bottom: 30px;
}
.schedule-recycle-section .checkbox-group .checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .schedule-recycle-section .checkbox-group .checkbox-label {
    gap: 10px;
    margin-bottom: 12px;
  }
}
.schedule-recycle-section .checkbox-group .checkbox-label .checkbox-input {
  display: none;
}
.schedule-recycle-section .checkbox-group .checkbox-label .checkbox-input:checked + .checkbox-mark {
  background-color: #32694A;
  border-color: #32694A;
}
.schedule-recycle-section .checkbox-group .checkbox-label .checkbox-input:checked + .checkbox-mark::after {
  display: block;
}
.schedule-recycle-section .checkbox-group .checkbox-label .checkbox-input.error + .checkbox-mark {
  border-color: #dc3545;
}
.schedule-recycle-section .checkbox-group .checkbox-label .checkbox-mark {
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 4px;
  margin-top: 2px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 767px) {
  .schedule-recycle-section .checkbox-group .checkbox-label .checkbox-mark {
    width: 18px;
    height: 18px;
  }
}
.schedule-recycle-section .checkbox-group .checkbox-label .checkbox-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: translate(-50%, -60%) rotate(45deg);
          transform: translate(-50%, -60%) rotate(45deg);
  display: none;
}
.schedule-recycle-section .checkbox-group .checkbox-label span:not(.checkbox-mark) {
  font-size: 14px;
  color: #000;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .schedule-recycle-section .checkbox-group .checkbox-label span:not(.checkbox-mark) {
    font-size: 13px;
  }
}