.a-row {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  padding: 10px;
}

.a-column {
  flex: 1 1 auto;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-content: flex-start;
}
.a-column:first-child {
  flex: 0 0 60%;
  width: 60%;
}

.a-hidden {
  display: none !important;
}

.a-row p {
  margin: 0;
  padding: 0;
}

.a-row a {
  color: #29abe2 !important;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none !important;
}

.a-label {
  color: #555555;
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
}
.a-label-sample {
  font-size: 40px;
  line-height: 50px;
}

.a-text {
  width: 230px;
  min-height: 16px;
  max-width: 100%;
  padding: 6px 10px;
  color: #4d4d4d;
  font-size: 14px;
  line-height: 16px;
  font-weight: 300;
  text-align: left;
  border: 1px solid #999999 !important;
  border-left: 6px solid #999999 !important;
  outline: 0;
  resize: none;
}

.a-select {
  width: 230px;
  max-width: 100%;
  padding: 6px 10px;
  color: #4d4d4d;
  font-size: 14px;
  line-height: 16px;
  border: 1px solid #999999 !important;
  border-left: 6px solid #999999 !important;
  background: #ffffff !important;
  outline: 0;
}

@media only screen and (max-width: 550px) {
  .a-row {
    flex-flow: column nowrap;
  }

  .a-column {
    width: 100%;
    margin-bottom: 20px;
  }
  .a-column:first-child {
    flex: 0 0 100%;
    width: 100%;
  }
  .a-column:last-child {
    margin-bottom: 0;
  }
}
