


.overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  background-color: rgba(0,0,0,.55);
  opacity: 0;
  visibility: hidden;
  transition: all .2s linear;
}





.overlay {
  background-color: rgba(45,54,68,0.75);
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
}
.showside .overlay {
  visibility: visible;
  opacity: 1;
}






.sideprods {
  background-color: #fff;
  position: absolute;
  width: 300px;
  top: 0;
  bottom: 0;
  z-index: 5;
  box-shadow:3px 3px 12px rgba(0,0,0,0.08);
  padding: 12px 10px;
}
.sideprods h5 {
  color: #65BBE9;
  text-align: center;
}
.sideprods .head {
  padding: 0 25px;
}

.btn-myproducts {
  background-color: #fff;
  font-size: 14px;
  position: fixed;
  left: 0;
  top: 45px;
  bottom: 0;
  z-index: 3;
  border: 1px solid rgba(0,0,0,.15);
  width: 40px;
  color: #2D3644;
  line-height: 1;
  transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
  left: 0;
  display: none;
}

.btn-myproducts:hover {
  background-color: #F0F2F5;
  color: #65BBE9;
}

.btn-myproducts:hover span {
  opacity: 1;
}

.btn-myproducts span {
  font-weight: 700;
  letter-spacing: 1px;
  position: absolute;
  left: -38px;
  top: 50%;
  transform: rotate(-90deg) translateY(-50%);
  opacity: .7;
  font-size: 12px;
  white-space: nowrap;
}



@media only screen and (min-width: 992px) {

  .sideprods  {
    display: none;
  }


}


@media only screen and (max-width: 992px) {
    .resources-body  {
    padding-left: 39px;
  }
   .btn-myproducts {
    display: inline-block;
  }
  .sideprods {
    transform: translate(-25%, 0) scale3d(.9, .9, 1) rotateY(-3deg);
    transition: all 400ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
    opacity: 0;
    z-index: 20;
    visibility: hidden;
    left: -300px;
    top: 0;
    position: fixed;
    bottom: 0;
  }
  .showprods .sideprods {
    transform: translate(0, 0) scale3d(1, 1, 1) rotateY(0deg);
    opacity: 1;
    left: 0;
    visibility: visible;
  }
  .showprods .overlay {
    visibility: visible;
    opacity: 1;
  }
  .sideprods .body {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    top: 50px;
    overflow-y: auto;
    padding: 0 10px;
  }

}

