#order #crossselling_list li {
  margin: 0px 0;
  padding: 10px 7px 30px 8px;
}
#order #crossselling_list li .product-name {
  display: inline-block;
  width: 100%;
  overflow: hidden;
}
#order #crossselling_list li .product-image-container {
  border: 1px solid #e8e8e8;
  float: left;
  margin-bottom: 13px;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: center;
}
#order #crossselling_list li .product-image-container img {
  margin: 0 auto;
  width: 100%;
  transition: all 500ms ease 0s;
  -webkit-transition: all 500ms ease 0s;
  -moz-transition: all 500ms ease 0s;
  -o-transition: all 500ms ease 0s;
}
#order #crossselling_list li .product-image-container .hover-image {
  left: 0;
  position: absolute;
  text-align: center;
  top: 0;
  transition: all 500ms ease 0s;
  -webkit-transition: all 500ms ease 0s;
  -moz-transition: all 500ms ease 0s;
  -o-transition: all 500ms ease 0s;
  transform: scale(0.8) rotateY(90deg);
  -moz-transform: scale(0.8) rotateY(90deg);
  -webkit-transform: scale(0.8) rotateY(90deg);
  -o-transform: scale(0.8) rotateY(90deg);
  -ms-transform: scale(0.8) rotateY(90deg);
  visibility: hidden;
  width: 100%;
}
#order #crossselling_list li:hover .product-name {
  color: #787878;
}
#order #crossselling_list li:hover .product-image-container img {
  transition: all 500ms ease 0s;
  -webkit-transition: all 500ms ease 0s;
  -moz-transition: all 500ms ease 0s;
  -o-transition: all 500ms ease 0s;
  transform: scale(1.1);
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
}
