.container {
  width: 100%;
  max-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 60px 0;
}

.container .title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 50px;
}

.container .detail-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.container .detail-container .p-image {
  width: 35%;
  height: 100%;
}

.container .detail-container .detail-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 60%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.container .detail-container .detail-desc .title-desc {
  width: 100%;
  font-size: 26px;
  color: #00af5d;
  border-bottom: 3px solid #e2e2e2;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 5px 10px;
  font-weight: 600;
}

.container .detail-container .detail-desc .item-container {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 10px;
  border-bottom: 1px solid #e2e2e2;
}

.container .detail-container .detail-desc .item-container .item-title {
  width: 35%;
  font-weight: 600;
  color: #777777;
  font-size: 18px;
}

.container .detail-container .detail-desc .item-container .item-desc {
  width: 65%;
  color: #777777;
  font-size: 18px;
}

.container .detail-container .detail-desc .button-back {
  cursor: pointer;
  margin-left: 10px;
  margin-top: 30px;
  padding: 10px 35px;
  background-color: #00af5d;
  color: white;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 10px;
  text-decoration: none;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
          box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
/*# sourceMappingURL=product-detail.css.map */