/* Common classes */
.text-align-left {
    text-align: left;
  }
  .min-width-30px {
    min-width: 30px;
  }
  .vertical-align-top {
    vertical-align: top;
  }
  .padding-bottom-10px {
    padding-bottom: 10px;
  }
  .margin-bottom-10px {
    margin-bottom: 10px;
  }
  .margin-bottom-20px {
    margin-bottom: 20px;
  }
  .font-weight-bold {
    font-weight: bold;
  }
  .text-decoration-underline {
    -webkit-text-decoration: underline;
    text-decoration: underline;
  }
  .font-size-1em {
    font-size: 1em;
  }
  .color-red {
    color: red;
  }
  .width-93percent {
    width: 93%;
  }
  .align-center {
    align: center;
  }
  .text-center {
    text-align: center;
  }
