.checkout-title {
  color: #242323;
  font-weight: 500;
}

.checkout {
  &-header {
    display: flex;
    width: 100%;
    height: 44px;
    font-size: 1rem;
    line-height: 1.3rem;
    align-items: center;
    &-label {
      width: 100%;
      padding-right: 20px;
      margin-bottom: 0;
      @extend .checkout-title
    }
  }
  &-close-icon {
    margin-left: 8px;
    &:hover {
      cursor: pointer;
      filter: opacity(0.8);
    }
    &:active {
      transform: translateY(2px);
    }
  }
  &-divider {
    border: 1px solid #eee;
  }
  &-money {
    display: flex;
    justify-content: space-between;
    padding-left: 24px;
    padding-top: 12px;
    &-label-container {
      padding-top: 10px;
    }
    &-label {
      font-size: 0.8rem;
      color: #767676;
    }
    &-number-container {
      padding-right: 24px;
    }
    &-number {
      font-size: 1.8rem;
      font-weight: 500;
    }
    &-unit {
      font-size: 1rem;
      font-weight: 500;
    }
    &-balance-container {
      display: flex;
      padding-right: 12px;
    }
    &-balance-icon {
      position: relative;
      top: 10px;
    }
    &-balance-label {
      font-size: 1rem;
      color: #4a4a4a;
    }
    &-balance-number {
      font-size: 0.8rem;
      font-weight: 500;
      color: #6e6e6e;
    }
    &-next-icon {
      position: relative;
      top: 8px;
      &:hover {
        cursor: pointer;
        filter: opacity(0.5);
      }
      &:active {
        transform: translateY(2px);
      }
    }
  }
  &-warning {
    display: flex;
    justify-content: flex-end;
    font-size: 0.8rem;
    font-weight: 500;
    color: #fd5c5c;
    padding-right: 24px;
    padding-top: 8px;
  }
  &-btn {
    &-container {
      margin-top: 36px;
      padding: 24px; 
    }
    &-loading-label {
      font-size: 0.8rem;
      margin-bottom: 24px;
      color: #606060;
    }
    &-size {
      width: 100%;
    }
    &-wrapper {
      margin-bottom: 12px;
    }
    &-success {
      width: 100px;
      height: 100px;
    }
  }
}