div#w0 > a.gallery-item > img {
  height: auto;
  width: auto;
  max-width: 100px;
}

div#w0 > a.gallery-item:first-child > img {
  display: block;
  max-width: 500px;
  max-height: 400px;
  margin-bottom: 15px;
}

div.product-holder {
  display: flex;
  margin-top: 60px;
  flex-wrap: wrap;
  justify-content: center;
}

div.about {
  display: flex;
  flex-direction: column;
  word-break: break-word;
  padding: 0 30px;
}

div.about > h1 {
  margin-top: 0;
  border-bottom: 3px solid #20c997;
}

div.about > div {
  font-size: 20px;
}

div.no-photo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border: 1px solid black;
  border-radius: 15px;
  padding: 0 30px;
  width: 60%;
}

div.no-photo > i {
  font-size: 200px;
}

div.no-photo > span {
  font-size: 50px;
}

a.order-button {
  display: block;
  transition: 500ms;
  background-color: #20c996;
  color: white;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 24px;
  border-radius: 5px;
  padding: 5px 0;
  user-select: none;
  width: 60%;
  min-width: 200px;
  margin: 15px auto;
  text-align: center;
}

ul {
  text-align: left !important;
}

a.order-button:hover {
  text-decoration: none;
  cursor: pointer;
  background-color: #106e56;
  color: white;
}

a.order-button:active {
  background-color: white;
  color: black;
  border: 1px solid #20c996;
}

a.order-button:hover {
  animation: 1s ease-in-out tada;
}

h4.panel-title {
  text-transform: uppercase;
  font-weight: 600;
}

h4.panel-title:hover {
  animation: 1s ease-in-out shake;
}

div.panel-collapse {
  padding: 30px;
  font-size: 20px;
  overflow-wrap: break-word;
}

div.panel-default {
  width: 80%;
  margin: 0 auto;
}

@media screen and (max-width: 992px) {
  div.product-holder {
    justify-content: center;
    margin-top: 15px;
  }
  div.about > h1 {
    margin-top: 15px;
  }
}

@media screen and (min-width: 1200px){
  div.about {
    padding: 0 120px;
  }
}