/*BEGIN DEFAULT*/
.help-slider {
  top: 20%;
  /*Start out of sight*/
  right: -100%;
  /*Must be on top of all the things*/
  z-index: 1000;
  position: fixed;
  color: #555555;
  font-family: "Roboto Slab", serif;
  text-align: center;
}

.help-slider hr {
  border: .5px solid #555555;
  margin: 15px 0;
}

.help-slider a {
  text-decoration: none;
  color: #555555;
}

.help-slider a:hover {
  text-decoration: none;
  color: #212121;
}

.tag-top, .tag-bottom { 
  float: left;
  border: 1px solid #555;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tag-top {
  height: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tag-bottom {
  border-top: none;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.help-tag {
  /*Marika requested cursor be a pointer*/
  min-height: 140px;
  /*fixed height for IE*/
  height: 140px;
  width: 20%;
  background-color: #FFC20E;
  cursor: pointer;
  float: left;
  /*height: 100%;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.help-content {
  padding: 15px 0;
  float: right;
  width: 80%;
  background-color: #FFC20E;
}

.help-inner {
  padding: 0 7px;
}

.help-slider h3 {
  font-size: 11px;
}

.help-slider p {
  font-size: 9px;
}

.help-slider .fluke-icon, i {
  font-size: 30px;
}

.help-slider h2 {
  position: relative;
  font-size: 11px;
  /*Rotate "Need Help" text*/ 
  -webkit-transform: rotate(-90deg); 
      -ms-transform: rotate(-90deg); 
          transform: rotate(-90deg);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}
/*END DEFAULT*/

/*BEGIN DESKTOP*/
@media (min-width: 769px) {
  aside.help-slider {
    top: 60%;
    min-width: 512px; 
    height: 140px;
    background-color: #FFC20E; 
  }

  .help-slider hr {
    display: none;
  }

  .help-tag {
    width: 10%;
    min-height: 100%;
  }

  .help-content {
    width: 90%;
    float: right;
    padding: 0;
    background-color: transparent;
  }

  .help-slider{
/*    height: 140px;
    background-color: #FFC20E;*/
  }

  .help-boxes {
    float: left;
    width: 33.33%;
    /*Margin keeps border away from top and bottom edges*/
    margin: 20px 0;
  }

  .box1, .box2 {
    border-right: 1px solid #555;
  }
}
/*END DESKTOP*/