:root {
  --dark-blue: #526573;
  --light-gray: #f0f0f0;
  --blue: #1677ff;
  --white: white;
  --light-blue: #e6f4ff;
  --light-gray-2: #d9d9d9;
  --gray: #bfbfbf;
  --red: #ff4d4f;
  --black: black;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

body {
  color: var(--dark-blue);
  font-family: Barlow, sans-serif;
  font-size: 16px;
  line-height: 1.3;
}

form {
  flex-flow: column;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.fullpage {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
}

.steps-container {
  cursor: default;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 960px;
  padding-bottom: 40px;
  display: flex;
}

.steps-content {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  opacity: .8;
  flex-flow: column;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  display: block;
  position: relative;
}

.steps-content.sc--active {
  opacity: 1;
}

.steps-counter {
  background-color: var(--light-gray);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-left: 8px;
  margin-right: 8px;
  transition: border-color .2s;
  display: flex;
  position: relative;
}

.steps-counter.sc--active {
  background-color: var(--blue);
  color: var(--white);
}

.steps-counter.sc--checked {
  background-color: var(--light-blue);
  background-image: url('../images/check-symbol.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 12px;
  transition: background-color .2s;
}

.steps-number {
  text-align: center;
  font-size: 14px;
  line-height: 14px;
}

.steps-number.sn--checked {
  opacity: 0;
}

.steps-title {
  text-align: center;
  white-space: nowrap;
  width: 200px;
  position: absolute;
  inset: auto 0% -30px 50%;
  transform: translate(-50%);
}

.steps-spacer {
  background-color: var(--light-gray-2);
  flex: 1;
  height: 1px;
  margin-top: 12px;
  transition: background-color .2s;
}

.steps-spacer.ss--active {
  background-color: var(--blue);
}

.steps-counter-container {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.form-content {
  flex-flow: column;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  margin-bottom: 0;
  padding-top: 50px;
  display: flex;
}

.form-page {
  flex-flow: column;
  flex: 1;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100%;
  display: flex;
}

.form-page.fp--hidden {
  display: none;
}

.input-container {
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding-bottom: 52px;
  display: flex;
}

.buttons-container {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.input-container-heading {
  margin-bottom: 32px;
  font-size: 20px;
  font-weight: 500;
}

.input {
  background-color: var(--white);
  color: var(--dark-blue);
  border: 1px solid #00000026;
  border-radius: 6px;
  max-width: 350px;
  height: 40px;
  margin-bottom: 12px;
  font-size: 16px;
  transition: border-color .2s;
}

.input:focus {
  border-color: var(--blue);
}

.input::placeholder {
  color: var(--dark-blue);
  font-size: 16px;
  line-height: 16px;
}

.input.input-large {
  max-width: 450px;
}

.input.input-small {
  max-width: 100px;
  margin-left: 12px;
}

.checkbox {
  color: var(--dark-blue);
}

.button {
  border: 1px solid var(--blue);
  background-color: var(--blue);
  border-radius: 8px;
  padding: 13px 28px;
  transition: opacity .2s;
}

.button:hover {
  opacity: .75;
}

.button.btn--secondary {
  border-color: var(--gray);
  background-color: var(--white);
  color: var(--dark-blue);
}

.button.btn--disabled {
  border-color: var(--gray);
  background-color: var(--light-gray);
  color: var(--dark-blue);
  cursor: not-allowed;
}

.button.btn--hidden {
  opacity: 0;
  cursor: default;
}

.button.btn-remove {
  border-color: var(--red);
  background-color: var(--red);
}

.button.btn--centered {
  margin-top: 20px;
}

.button.btn--return {
  margin-left: 12px;
}

.help-container {
  background-color: var(--light-gray);
  border-radius: 12px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 718px;
  margin-top: 52px;
  padding: 24px;
  display: flex;
}

.help-container.hc--article {
  margin-top: 0;
}

.info-batch {
  flex: none;
  margin-right: 20px;
}

.article-container {
  border: 1px solid var(--light-gray-2);
  border-radius: 12px;
  justify-content: space-between;
  align-items: stretch;
  width: 718px;
  padding: 24px;
  display: flex;
}

.article-container.ac--hidden {
  display: none;
}

.article-heading {
  flex: 1;
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 500;
}

.article-amount {
  margin-right: 8px;
}

.article-amount-container, .reasonofreturn-container {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 4px;
  display: flex;
}

.reasonofreturn {
  margin-right: 8px;
}

.article-details {
  flex-flow: column;
  display: flex;
}

.article-remove-container {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.article-number-container {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 12px;
  display: flex;
}

.article-number-title {
  margin-right: 8px;
}

.article-container-grid {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 52px;
  display: grid;
}

.input-2row {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 450px;
  display: flex;
}

.ror-group-heading {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 500;
}

.date-field {
  border: 1px solid var(--light-gray-2);
  color: #151e24;
  border-radius: 8px;
  width: 100%;
  min-height: 48px;
  margin-bottom: 0;
  padding: 12px 16px 12px 52px;
  font-size: 14px;
  transition: all .25s;
  box-shadow: 1px 1px 2px #7281a70a;
}

.date-field:focus {
  border-color: var(--blue);
}

.date-field::placeholder {
  color: var(--dark-blue);
}

.field-wrap {
  flex: none;
  align-items: center;
  width: 250px;
  display: flex;
  position: relative;
}

.date-field-2 {
  color: #151e24;
  border: 1px solid #e9ecf0;
  border-radius: 12px;
  width: 100%;
  min-height: 48px;
  margin-bottom: 0;
  padding: 12px 16px 12px 52px;
  font-size: 14px;
  transition: all .25s;
  box-shadow: 1px 1px 2px #7281a70a;
}

.date-field-2:hover {
  border-color: #ccd5e0;
}

.date-field-2:focus {
  border-color: #642eff;
}

.date-field-2::placeholder {
  color: #a0a6b0;
}

.field-icon {
  position: absolute;
  inset: auto auto auto 16px;
}

.return-buttons {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

@media screen and (max-width: 991px) {
  .fullpage {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .steps-container {
    width: 95%;
  }

  .steps-title {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  .help-container {
    margin-top: 12px;
    padding: 16px;
  }

  .info-batch {
    display: none;
  }
}


@font-face {
  font-family: 'Barlow';
  src: url('../fonts/Barlow-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/Barlow-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/Barlow-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}