
/*--------------------------------------------------------------------------------------------------------------------------------
# PDP
---------------------------------------------------------------------------------------------------------------------------------*/





/** FIXED MENU **/
/*


*/

/** STicky Button **/
/*
.stickyButton {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 20;
  bottom: 0;
  
  display: flex;
  align-items: center;
  transition: all 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  pointer-events: none;
}

.stickyButton.-is-active {
  opacity: 1;
  pointer-events: auto;
}

.stickyButton__content {
  width: 100%;
  min-height: 80px;
  padding: 15px 0;
}
*/


