* {
  box-sizing: border-box;
}

.selfhelp-container {
  display: flex;
  background-color: #fff;
  flex-wrap: wrap;
  text-align: center;
  min-height: 30px;
  width: 100%;
}

.selfhelp-item-left {
  background-color: #fff;
  padding: 3px;
  flex: 50%;
}

.selfhelp-item-right {
  background-color: #fff;
  padding: 3px;
  flex: 50%;
}

.selfhelp-container2 {
  display: flex;
  background-color: #317aba;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  min-height: 30px;

}

.selfhelp-item-left2 {
  display: flex; 
  align-items: center;
  background-color: #317aba;
  padding: 3px;
/*  flex: 10%; */
}

.selfhelp-item-right2 {
  display: flex; 
  background-color: #317aba;
  text-align: left;
  padding: 3px;
  flex: 85%;
  font-size: 1em;
  align-items: center;
  color: #ffffff;
}

/* Responsive layout - makes a one column-layout instead of a two-column layout */
@media (max-width: 550px) {
  .selfhelp-item-right, .selfhelp-item-left {
    flex: 100%;
  }

}