.u-box-mainv {
  margin-bottom: 40px;
}

.bordered {
  border: solid 1px gray;
}

.steps, .howtos {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.steps .step {
  width: 30%;
  border: solid 3px #00AFEC;
  border-radius: 10px;
  background-color: #c9e8f3;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 15px 20px;
  line-height: 150%;
}

.step {
  background-color: #fbf4e6;
  border-color: #dfb15d;
}

.howtos .howto {
  width: 30%;
}

.steps .step .step-title {
  color: #036081;
  border-bottom: dotted 1px #036081;
  padding-bottom: 0.2em;
  margin-bottom: 1em;
  font-size: 130%;
  font-weight: 600;
  text-align: left;
  width: 100%;
}

.steps.howto .step .step-title {
  color: #755417;
  position: relative;;
}

.step .step-title .howto-icon {
  display: block;
  max-width: 58px;
  padding: 2px;
  position: absolute;
  right: 0;
  top: -30px;
  margin: 0;
  background-color: white;
}

.steps .step .step-p {
  color: #333;
  text-align: left;
  line-height: 1.7;
  width: 100%;
}

.steps .step img {
  margin-top: 10px;
  margin-bottom: 15px;
  display: block;
}

.steps .arrow, .howtos .arrow {
  width: 5%;
  font-size: 40px;
  color: #00AFEC;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.howtos .arrow.arrow-green {
  color: #c3dc79;
}

.howtos .arrow.arrow-orange {
  color: #d7a344;
}

.sub-text {
  font-size: 90%;
  color: darkgray;
}

.password-table {
  width: auto;
}

.password-table .password {
  font-family: monospace;
  font-size: 150%;
}

@media screen and (max-width: 767px) {
  .steps, .howtos {
    flex-direction: column;
  }

  .steps .step, .howtos .howto {
    width: 100%;
  }

  .steps .arrow, .howtos .arrow {
    flex-direction: row;
    align-items: center;
    width: 100%;
    transform: rotate(90deg);
  }

  .steps .step .step-title {
    text-align: left;
  }
}