div.hc-section .hc-container {
  overflow: hidden;
  margin: 10px;
}

div.hc-section .hc-item {
  float: left;
  position: relative;
  width: 20%;
  padding-bottom:20%;
}

div.hc-section .hc-item:hover{
  cursor: pointer;
}

div.hc-section .hc-item *{
  transition: all 0.35s ease-in-out;
}
div.hc-section .boxInner {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 10px;
  bottom: 10px;
  overflow: hidden;
}

div.hc-section img {
  width: 100%;
  vertical-align: top;
  height: auto;
}

div.hc-section .hc-item:hover img {
  opacity: 1;
}

div.hc-section .hc-item:hover .button1{
  bottom: 20%;
}

div.hc-section .hc-item .button1{
  position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}
@media only screen and (max-width : 480px) {
  /* Smartphone view: 2 tile */
  div.hc-section .hc-item {
     width: 50%;
     padding-bottom: 50%;
  }
  div.hc-section #details .button {
    width: 90% !important;
  }
	div.column.c-img { padding: 0 50px;}
}
@media only screen and (max-width : 650px) and (min-width : 481px) {
  /* Tablet view: 2 tiles */
  div.hc-section .hc-item {
     width: 50%;
     padding-bottom: 50%;
  }
}
@media only screen and (max-width : 1050px) and (min-width : 651px) {
  /* Small desktop / ipad view: 3 tiles */
  div.hc-section .hc-item {
     width: 33.3%;
     padding-bottom: 33.3%;
  }
}
@media only screen and (max-width : 1290px) and (min-width : 1051px) {
  /* Medium desktop: 4 tiles */
  div.hc-section .hc-item {
     width: 25%;
     padding-bottom: 25%;
  }
}

/* Modal */
div.hc-section .modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

div.hc-section .modal-content {
  background-color: #FFF;
  margin: 3% auto;
  box-sizing: border-box;
  max-width: 900px;
  min-height: 600px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  border-radius: 5px;
}

div.hc-section .scale{
  animation: scale 0.5s;
  animation-fill-mode: forwards;
}

@keyframes scale{
  from{transform: scale(0);}
  to{transform: scale(1);}
}

div.hc-section #img{
  width: 100%;
  height: auto;
}

div.hc-section #details {
  padding-top: 0px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: left;
  position: relative;
/*   height: 600px; */
  box-sizing: border-box;
  margin-top: 16px;
/*   overflow-y: scroll; */
}

div.hc-section #details *{
  transition: all .3s;
}

div.hc-section #title{
	text-align: center;
  	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	font-size: 24px;
    color: #000;
}
div#pinfo p {
    margin-top: 10px;
    margin-bottom: 0px;
}
div.hc-section #details .button{
  /* width: 40%; */
  background-color: #000000;
  color: #FFF;
  text-align: center;
  padding: 15px;
  margin-top: 10px;
}

/* Close Button */
div.hc-section .close {
  color: #aaa;
  font-size: 50px;
  font-weight: bold;
  position: absolute;
  right: 10px;
  top: -20px;
}

div.hc-section .close:hover,
.close:focus {
  color: #363638;
  text-decoration: none;
  cursor: pointer;
}

div.hc-section .container2 {
  margin: 0 auto;
  padding: 10px;
}

div.hc-section .column {
  width: 50%;
  float: left; 
}

div.hc-section .container2::after {
  content: "";
  clear: both;
  display: table;
}

@media screen and (max-width: 997px) {
  div.hc-section .column {
    width: 100%;
    float: none; 
  }
}

div.hc-section p#info {
  margin-bottom: 10px;
	text-align: center;
}
div.hc-section .social {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  justify-content: center;
}
div.hc-section svg.e-font-icon-svg {
  width: 20px;
  margin-right: 10px;
}
div.hc-section .shop-look{
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
}
div.hc-section .shop-look h3{
    color: #121212;
    font-family: "Roboto Serif", Sans-serif;
    font-size: 15px;
    font-weight: 800;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    line-height: 1.2em;
    letter-spacing: 0.6px;
}
div.hc-section .ulc-product, .store-product, .cus-product{
  display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
div.hc-section .product-img{
  cursor: pointer;
}
div.hc-section .product-img img, .custom-img img {
  max-width: 200px;
  height: auto;
}
div.hc-section #live a{
  text-decoration: none;
  color: #fff;
}

div.boxInner img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
div.boxInner:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}