/*sticky header*/
.sticky-header {
   // display: none;
   position: fixed;
    width: 100%;   
    top: 0px;
    z-index: 10;
    background-color: #fff;
    border-bottom: #eee;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    /*animation: sticky .75s forwards;*/
    animation:slide-down 0.7s;
    opacity: 1;
}
.bottom-pad {
padding-bottom: 20px !important;
}
.top-pad {
padding-top: 20px !important;
}
.sticky-header .header__top {
  display: none;
}
@media (max-width: 767px) {
  .sticky-header .c-grid__col.c-grid__col--left {
    display: none;
  }
}

.default-header {
  position: static !important;
  /* animation: unsticky .75s forwards; */
}

@keyframes unsticky {
  0% {
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 10;
    background-color: #fff;
  }

  50% {
    position: fixed;
    width: 100%;
    top: -210px;
    z-index: 10;
    background-color: #fff;    
  }

  100% {
    position: static; 
    top: auto;
  }
}

@keyframes sticky {
  0% {
  	position: fixed;
  	width: 100%;
  	top: -210px;
  	z-index: 10;
  	background-color: #fff;
  }

  100% {
  	position: fixed;
  	top: 0;
  	width: 100%;
  	z-index: 10;
  	background-color: #fff;
  }
}
@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    } 
    100% {
        opacity: 0.9;
        transform: translateY(0);
    } 
}
/*scroll top*/
.vol-scroll-top {
  position: fixed;
  display: inline-block;
  z-index: 99;
  padding: 15px;
  border-radius: 0;
  visibility: hidden;
  opacity: 0;
  background-color: rgba(245, 97, 81, 0.80);
  text-align: center;
  transition: .8s all ease;
  right: 5%;
  bottom: 30px;
}
.vol-scroll-top.vol-active {
  opacity: 1;
  visibility: visible;
}
.vol-scroll-top .icon {
  position: relative;
  width: 40px;
  height: 40px;
  margin: 0px 0 10px 0;
  fill: #fff;
  transform: rotate(-90deg);
  transition: .5s all ease;
  animation-duration: 0.4s;
  animation-name: upDown;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.vol-scroll-top-text {
  display: block;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
}
.vol-scroll-top:hover {
  background-color: black;
}
@keyframes upDown {
  from {
    transform: translate3d(0, -8px, 0) rotate(-90deg);
  }
  to {
    transform: translate3d(0, 8px, 0) rotate(-90deg);
  }
}


.home .vol-promos--category {
  padding: 0 ;
}
.home .vol-promos--category > a {
  margin: 15px auto;
  display: block;
}

.shoppingcart table#v65-cart-checkout-parent {
  display: none !important;
}
.shoppingcart #proceedToSamples {
  float: right;
}