main {
  position: relative;
  width: 100%;
  min-height: 100%;
  margin-top: 100px;
  clear: both;
}

.product {
  display: flex;
  max-width: 1000px;
  margin: 50px 150px 0px 150px;
}

.product img {
  width: 600px;
  cursor: zoom-in;
}

.product .details {
  width: 70%;
  margin-left: 30px;
}

.product .details h1 {
  margin: 0;
  font-size: 2.5rem;
}

.product .details .price {
  font-size: 1.5rem;
  margin: 10px 0px 10px 0px;
}

.prices {
  position: relative;
  height: 30px;
  margin: 10px;
  text-align: left;
}

.prices .new-price {
  font-size: 1.5rem;
}

.prices .old-price {
  position: absolute;
  margin-left: 5px;
  font-size: 1rem;
  text-decoration: line-through;
  color: #dd1111;
}


.product .details button {
  font-size: 1.2rem;
  padding: 11px 12px;
  width: 150px;
  background-color: #fed495;
  color: #DA5599;
  border: none;
  cursor: pointer;
}

.product .details button:hover {
  background-color: #f8c579;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 3px;
  z-index: 101;
  height: auto;
  width: 500px;
}

.modal-header {
  padding: 30px 40px 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header .title {
  font-size: 1.8rem;
  font-weight: bold;
}

.close-button {
  position: static;
  cursor: pointer;
  outline: none;
  border: 1px solid #333;
  border-radius: 50%;
  background-color: #fff;
  font-size: 2rem;
  display: flex;
  float: right;
  vertical-align: middle;
  padding-top: 5px;
  padding-right: 12px;
  padding-left: 12px;
  font-weight: bold;
  margin: 10px;
  font-family: sans-serif;
}

.modal .mapouter {
  clear: both;
  padding: 4px 40px;
  height: auto;
  width: 100%;
}

.modal .mapouter .gmap_canvas {
  background: none !important;
  height: auto;
  width: 100%;
}

.modal .mapouter .gmap_canvas iframe {
  height: 250px;
  width: 100%;
  border: 2px solid #cccccc;
}

.modal-body {
  padding: 30px 40px;
  align-content: center;
}

.modal-body .contact {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 10px 0px;
}

.modal-body span {
  display: block;
  font-size: 1.2rem;
  padding: 5px 0px;
}


#overlay {
  position: fixed;
  opacity: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 100;
}

#overlay.active {
  opacity: 1;
  pointer-events: all;
}

.description {
  margin: 50px 150px 0px 150px;
}

.description h2 {
  font-size: 1.8rem;
}

.description p {
  text-align: justify;
  font-size: 1.2rem;
  line-height: 20px;
}

.description .btn{
  width: 100px;
  height: auto;
}

.description a{list-style: none;text-decoration: none;}

.description a .btn{
  width: 150px;
  height: 45px;
  cursor: pointer;
  padding: 10;
  margin-right: 10px;
  border: none;
  font-size: 1.1rem;
}

.description a .bb{background-color: #fed495;color: #DA5599}
.description a .vv{background-color: #007C89;color: #fed495}

.banner {
  display: flex;
  margin: 50px 150px 0px 150px;
}

.banner img {
  margin: 40px 0;
  width: 100%;
}


.none{
  display: none!important;
}

/*mobile*/
@media only screen and (max-width: 930px) {


  .product {
    display: block;
    margin: 50px 25px 0px 20px;
  }

  .product .details{
    width: 100%;
  }

  .product .details h1 {
    margin: 0;
    padding-top: 10px;
    font-size: 1.5rem;
  }

  .product img{width: 100%;}

  main {margin-top: 0px;}

  .modal {
    width: 95%;
    height: 90vh;
    overflow-y: scroll;
  }

  .modal-header {
    padding: 10px 5px;
  }

  .modal-header .title, .modal-body .contact {
    font-size: 1.5rem;
  }

  .modal .mapouter {
    padding: 4px 1px;
    height: auto;
    width: 100%;
  }

  .modal .mapouter .gmap_canvas {
    height: auto;
    width: 100%;
  }

  .modal .mapouter iframe {
    height: 250px;
    width: 100%;
  }

  .modal-body {
    padding: 10px 5px;
  }

  .modal-body .contact {
    padding: 5px 0px;
  }

  .modal-body span{font-size: 1rem;}

  .description {
    margin: 50px 25px 0px 20px;
  }

  .banner {
    margin: 50px 25px 0px 20px;
  }

  .product .details {
    margin: 0;
  }

}
