@-webkit-keyframes product-elevation {
  0% {
    -webkit-transform: translate(0px, 0px);
     transform: translate(0px, 0px);
 }
 50%{
   -webkit-transform: translate(-10px, -5px);
   transform: translate(-10px, -5px);
 }
 100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
 }
}
@-moz-keyframes product-elevation {
  0% {
    -webkit-transform: translate(0px, 0px);
     transform: translate(0px, 0px);
 }
 50%{
   -webkit-transform: translate(-10px, -5px);
   transform: translate(-10px, -5px);
 }
 100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
 }
}
@-o-keyframes product-elevation {
  0% {
    -webkit-transform: translate(0px, 0px);
     transform: translate(0px, 0px);
 }
 50%{
   -webkit-transform: translate(-10px, -5px);
   transform: translate(-10px, -5px);
 }
 100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
 }
}
@keyframes product-elevation {
  0% {
    -webkit-transform: translate(0px, 0px);
     transform: translate(0px, 0px);
 }
 50%{
   -webkit-transform: translate(-10px, -5px);
   transform: translate(-10px, -5px);
 }
 100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
 }
}

#products-menu {
    background: #826953;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#827553', endColorstr='#912828', GradientType=0);
    /* IE6-9 */
    background: -webkit-linear-gradient(top, #826953ea, #912828e7 110%);
    /* Chrome10-25,Safari5.1-6 */
    background: -ms-linear-gradient(top, #827553 50%, #912828e7 110%);
    background: linear-gradient(to bottom, #826953 5%, #912828e7 110%);
    /* Edge */
    background: -moz-linear-gradient(top, #826953ea 5%, #912828e7 110%);
    /* FF3.6-15 */
    background: linear-gradient(184deg, #826953d5 2px, #912828e7 117%),
      /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
      linear-gradient(180deg, #486a47c7 4px, #912828e7 128%),
      linear-gradient(177deg, #826953ea 3px, #912828e7 125%);
  }
  
  #products-menu h3 {
    font-size: 3.2em;
    letter-spacing: 5px;
    position: absolute;
    color: #222222ec !important;
    right: 20px;
    top: 50px;
  }
  
  #products-menu h3::before {
    content: '';
    width: 100%;
    height: 15px;
    top: 40px;
    left: 5px;
    background-color: #790101c9;
    position: relative;
    display: block;
    z-index: -1;
  }
  
  .container.alt-stack {
    position: relative;
    z-index: 1;
  }
  
  .order-1 {
    order: 1;
  }
  
  .order-2 {
    order: 2;
  }
  
  #products-menu .chillie-row {
    background-image: url('/static/img/texture/texture_chillies.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0em 0 5em 0;
    vertical-align: middle;
    opacity: .85;
    box-shadow: 1px 1px 6px 2px rgba(0, 0, 0, 0.199);
    z-index: 10 !important;
  }
  
  #products-menu .image-col {
    display: flex;
    align-items: center;
  }
  
  
  #products-menu .product-image {
    position: relative;
    display: block;
    margin: 1em auto;
    min-height: 150px;
    max-height: 250px;
    padding: 2em;
    box-sizing: border-box;
    transition: filter 500ms;
  }

  #products-menu .chillie-row:hover .product-image{
    -webkit-filter: drop-shadow(10px 5px 10px rgba(34, 34, 34, 0.595));
    filter: drop-shadow(15px 15px 20px rgba(34, 34, 34, 0.595));
    transition: filter 800ms 400ms ease-out;
    animation:  product-elevation 2s infinite;
    animation-timing-function: ease-in-out;
  }
  
  #products-menu .slate::after {
    position: absolute;
    content: '';
    display: block;
    top: -95px;
    bottom: -20px;
    left: -25px;
    right: 0px;
    width: auto;
    height: auto;
    background-color: rgba(26, 16, 16, 0.199);
    background-image: linear-gradient(190deg, rgba(56, 30, 14, 0.87) 5%,
        #70262652 58%, rgba(218, 177, 177, 0.062) 90%, #f3f3f32f 100%);
    background-position: 12px 4px;
    z-index: -1;
    box-shadow: -5px 3px 4px 0px rgba(63, 26, 26, 0.329)
  }
  
  @media (max-width: 991.98px) {
    .slate::after {
      width: auto !important;
      left: -15px !important;
      right: -50px !important;
    }
  }
  
  #products-menu .scale {
    -webkit-filter: brightness(25%);
    -webkit-transition: all 0.5s ease !important;
    -moz-transition: all 0.5s ease !important;
    -o-transition: all 0.5s ease !important;
    -ms-transition: all 0.5s ease !important;
    transition: all 0.5s ease !important;
    -webkit-transition-delay: 250ms !important;
    -moz-transition-delay: 250ms !important;
    -o-transition-delay: 250ms !important;
    -ms-transition-delay: 250ms !important;
    transition-delay: 250ms !important;
  }
  
  #products-menu .info-card {
    padding: 5em;
    background-color: rgba(255, 255, 255, 0.05) !important;
    transition: all 800ms;
  }
  
  @media (max-width: 991.98px) {
    #products-menu .info-card {
      padding: 2em !important;
    }
  }
  
  #products-menu .info-card.right-card {
    box-shadow: 3px -3px 5px rgba(39, 39, 39, 0.136);
  }
  
  #products-menu .info-card.left-card {
    box-shadow: -3px 3px 5px rgba(39, 39, 39, 0.306);
  }
  
  #products-menu .info-card.left-card::after,
  .info-card.right-card::after {
    content: "";
    background-size: cover;
    background-repeat: no-repeat;
    transition: opacity 600ms;
    position: absolute;
    opacity: 0.75;
  }
  
  #products-menu .info-card.left-card::after {
    background-color: #ffffff;
    top: 5px;
    left: 20px;
    bottom: 5px;
    right: 7px;
    z-index: -1;
  }
  
  #products-menu .info-card.right-card::after {
    background-color: #ffffff;
    background-position: 500px 10px;
    top: 7px;
    left: 5px;
    bottom: 5px;
    right: 12px;
    z-index: -1;
  }
  
 
  
  #products-menu .info-card p {
    /* color:rgba(119, 119, 119, 0.9); */
    color: #2b2928;
  }
  
  #products-menu .chillie-row .info-card .head {
    margin: 5px 0;
  }
  
  .shu-label,
  .shu-level {
    display: inline;
    font-weight: 600;
  }
  
  .shu-label {
    color: #745440d8 !important;
  }
  
  .shu-level {
    color: #8a1616bd !important;
  }
  
  #products-menu .chillie-row:hover .info-card,
  #products-menu .chillie-row:focus .info-card {
    background-color: rgba(255, 255, 255, 0.705) !important;
    transition: all 1s;
  }
  
  #products-menu .chillie-row:hover .info-card::after,
  #products-menu .chillie-row:focus .info-card::after {
    opacity: 0.95;
    transition: all 800ms;
  }
  
  /* #products-menu .chillie-row:hover .left-card,
  #products-menu .chillie-row:focus .left-card {
    box-shadow: 4px 4px 20px 5px rgba(39, 39, 39, 0.306);
  }
  
  #products-menu .chillie-row:hover .right-card,
  #products-menu .chillie-row:focus .right-card {
    box-shadow: -4px 4px 20px 5px rgba(39, 39, 39, 0.306);
  } */

  
  
  #products-menu .info-card:hover .scale,
  #products-menu .info-card:focus .scale {
    -webkit-filter: brightness(125%);
    -webkit-transition: all 0.75s ease;
    -moz-transition: all 0.75s ease;
    -o-transition: all 0.75s ease;
    -ms-transition: all 0.75s ease;
    transition: all 0.75s ease;
    -webkit-transition-delay: 0ms !important;
    -moz-transition-delay: 0ms !important;
    -o-transition-delay: 0ms !important;
    -ms-transition-delay: 0ms !important;
    transition-delay: 0ms !important;
  }
  
  .info-card.faced-down {
    display: none;
  }