@media only screen and (max-width: 767px) {
  .introImageContainer,
  .tabImageContainer,
  .tabImageContainer.checkPage,
  .hint,
  .footer-left {
    display: none;
  }

  .hint.error {
    display: block;
  }

  .introContainer,
  .tabContent {
    padding: 32px 16px;
  }

  .button,
  .payButton {
    width: 100%;
  }

  .button.checkPage {
    background-color: var(--primary)!important;
    color: var(--white)!important;
    border-radius: 4px!important;
    border-style: none;
    width: 100%;
    height: 48px;
  }

  .logoIntroContainer {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logoContainer {
    display: flex;
    padding: 16px 0;
    align-items: center;
    justify-content: flex-start;
  }

  .helpContainer {
    display: flex;
    padding: 16px 0;
    align-items: center;
    justify-content: flex-end;
  }

  #paypal-button-container {
    padding-top: 16px;
    width: 100%;
  }

  .footer {
    height: 160px;
    padding: 20px 16px;
  }

  .footer.checkPage {
    height: 86px;
  }

  .footerConfirm {
    height: 115px;
    padding: 24px 16px;
  }

  .footer-center {
    padding: 0;
  }

  .mobileBackButtonContainer {
    display: flex;
    padding-right: 24px!important;
  }

  .stepRow {
    margin-bottom: 160px!important;
  }

  .stepConfirmRow {
    margin-bottom: 115px!important;
  }

  .step {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .stepNumber {
    display: flex;
    color: var(--darkGray);
    background-color: var(--white);
    border-color: var(--border);
    border-width: 1px;
    border-radius: 6px;
    border-style: solid;
    box-shadow: 0 1px 2px var(--shadowBlack);
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
  }
  
  .stepNumber.selected {
    display: flex;
    color: var(--white);
    background-color: var(--primary);
    border-width: 0px;
    border-radius: 6px;
    border-style: none;
    box-shadow: 0 1px 2px var(--shadowPrimary);
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
  }
  
  .stepText {
    color: var(--darkGray);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 0;
  }
  
  .stepText.selected {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 0;
  }

  .divider {
    width: 32px;
    padding: 0 8px;
    margin-bottom: 8px!important;
  }

  .stepConfirm {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .dividerConfirm {
    width: 32px;
    padding: 0 8px;
    margin-bottom: 8px!important;
  }

  .stepConfirmTitle {
    color: var(--darkBlue);
    font-size: 12px;
    font-weight: 700;
    padding-top: 8px;
    padding-bottom: 4px;
  }
  
  .stepConfirmTitle.selected {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    padding-top: 8px;
    padding-bottom: 4px;
  }

  .stepConfirmDescription {
    display: none;
  }
  
}