#paf-form-section form {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 10px;
}

#paf-form-section :is(input, select, .paf-btn){
  font-size: 1rem;
  text-align: justify;
  height: 35px;
  border: 1px solid #ccc;
}
#paf-form-section label {
  font-size: 1rem;
  text-align: justify;
  margin-bottom: 0.5rem;
  color: var(--e-global-color-primary);
}
#paf-form-section label b {
  color: #c10b0b;
}
#paf-form-section input:focus {
  border-color: var(--e-global-color-primary);
}
#paf-form-section select {
  padding: 0;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #00000040;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #00000040;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #00000040;
}

#paf-form-section .paf-item-title {
  font-size: 1rem;
  font-weight: bold;
  color: var(--e-global-color-primary);
  border-bottom: 1px solid var(--e-global-color-primary);
}

#paf-form-section .paf-dep-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#paf-form-section .paf-dep-field {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 1rem;
}
#paf-form-section .paf-form-item {
  margin-bottom: 1rem;
}
#paf-form-section .paf-register-item {
  border-left: 3px solid var(--e-global-color-primary);
  padding-left: 10px;
}

#paf-form-section .paf-full {
  width: 100%;
}
#paf-form-section .paf-half {
  width: calc(50% - 5px);
}
#paf-form-section .paf-repeater-item {
  margin-top: 1rem;
  padding: 10px;
}
#paf-form-section .paf-repeater-item .paf-dep-resume {
  width: 100%;
  border-top: 1px solid var(--e-global-color-primary);
}
#paf-form-section .paf-repeater-item h5 {
  color: var(--e-global-color-primary);
  margin-bottom: 0;
  font-size: 1rem;
}
#paf-form-section .paf-dep-field .paf-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  height: 36px;
  width: 100%;
  padding: 0;
  text-align: center;
  color: #fff;
  background-color: var(--e-global-color-primary);
  cursor: pointer;
}
#paf-form-section .paf-btn.paf-remove-btn {
  background-color: #d13f3f;
}
#paf-form-section .paf-dep-field .paf-btn:hover {
  border: 1px solid transparent;
  background-color: var(--e-global-color-secondary);
}
#paf-form-section .paf-column  {
  padding: 10px;
}

#paf-form-section .paf-column-form {
  width: calc(70% - 10px);
}

#paf-form-section .paf-column-box {
  width: calc(30% - 10px);
  position: sticky;
  top: 15%;
}
#paf-form-section .paf-column-box h4 {
    font-size: 1rem;
    margin-bottom: 0;
}
#paf-form-section .paf-column-box h5 {
    font-size: 1.5rem;
}
#paf-form-section .paf-column-box {
  padding: 20px;
  box-shadow: 1px 1px 8px 1px rgb(0 0 0 / 11%);
  border-radius: 10px;
}
#paf-form-section .paf-column-box .paf-checkout-button button {
  border: 0;
  width: 100%;
  font-size: 1rem;
  background-color: var(--e-global-color-primary);
  font-weight: 600;
  display: flex;
  justify-content: center;
  gap: 10px;
}
#paf-form-section .paf-column-box .paf-checkout-button button:hover {
  background-color: var(--e-global-color-secondary);
}

@media screen and (max-width: 1024px) {
  #paf-form-section form {
    flex-direction: column-reverse;
  }
  #paf-form-section .paf-column-form,
  #paf-form-section .paf-column-box {
    width: 100%;
  }
  #paf-form-section .paf-column-box {
    position: relative;
    top: 0;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 380px) {
  #paf-form-section .paf-half {
    width: 100%;
  }
}