.tableColumn{
  background-color: navy;
  color: white;
}

@media (max-width:550px){
.variableColumn {
  display: none;
}
}

@media (min-width:551px){
  .variableColumn2 {
    display: none;
  }
}

@media (max-width:550px){
  .variableSum{
    width: 25%;
  }
}

@media (max-width:550px){
  .table{
    font-size: 70%;
  }
}

.tableLeft{

}

.right {
  text-align: right;
}

.info {
  padding-left: 15px;
  padding-right: 25px
}

.image {
}

.customText {
    border: 1px solid navy;  /* ?? */
}

.customText2 {
    border: 1px solid black;  /* ?? */
}

.singleItem{
  background-color: aqua;
}

.setItem{
  background-color: #fffacd;
}

.otherItem{
  background-color: deb887;
}



//tooltip
.textArea {
  width: 50%;
}
.customerInfo {
  border-bottom: solid 3px #87CEFA;
  font-weight:bold;
  font-size: x-large;
}

.customerInfo2 {
  background-color: silver;
  padding-left: 15px;
  padding-right: 15px;
}

.tooltip1{
    position: relative;
    cursor: pointer;
    display: inline-block;
}
.tooltip1 p{
    margin:0;
    padding:0;
}
.description1 {
    display: none;
    position: absolute;
    padding: 10px;
    font-size: 12px;
    line-height: 1.6em;
    color: #fff;
    border-radius: 5px;
    background: #000;
    width: 250px;
}
.description1:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    border: 15px solid transparent;
    border-top: 15px solid #000;
    margin-left: -15px;
}
.tooltip1:hover .description1{
    display: inline-block;
    top: -70px;
    left: -30px;
}
