.ws-product-header {
  height: 300px;
  display: flex;
  align-items: end;
  flex-direction: column;
  width: 70vw;
}
.ws-product-header a {
  background-color: #e8e8e8;
  padding: 5px 15px;
  border-radius: 15px;
  color: #333333;
  font-family: "Open Sans";
  font-weight: 700;
  font-size: 14px;
  margin: 0 10px 0 0;
}
.ws-product-header .tags {
  margin: 0 0 0 0;
  display: flex;
  align-items: end;
  margin: 0 0 15px 0;
  width: 100%;
}
.ws-product-header .h1ama {
  display: flex;
  width: 100%;
  align-items: end;
  height: 100%;
  margin: 0 0 15px 0;
  color: #333333;
  font-weight: 600;
  font-family: "Open Sans";
  font-size: 32px;
}

.main-porducts-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(253px, 1fr));
  gap: 10px 20px;
  margin: 0 0;
  width: 60vw;
}

.product-box {
  max-width: 321px;
  background-color: #eee;
  height: 100%;
  width: 100%;
  border-radius: 15px 15px 5px 5px;
}

.product-imgbox {
  height: 150px;
  position: relative;
}
.product-imgbox .product_quantity_onimg {
  position: absolute;
  padding: 10px;
  border: solid 1px #0b463e;
  right: 0;
  background-color: white;
}
.product-imgbox .product-imgbox-img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px 15px 0 0;
  height: 100%;
  width: 100%;
}

.product-information-text {
  display: flex;
  flex-direction: column;
  font-family: "Open Sans";
}
.product-information-text .product-title {
  font-size: 14px;
  font-weight: 600;
  color: #333333;
}
.product-information-text .product-description {
  font-size: 12px;
  font-weight: 600;
  color: #0b463e;
}
.product-information-text .product-price {
  font-size: 14px;
  font-weight: 700;
  color: #0b463e;
}

.product-information-top {
  display: flex;
  justify-content: space-between;
  margin: 2px 5px;
  align-items: center;
}

.product-information-center {
  margin: 0 5px;
}

.product-information-bottom {
  margin: 2.5 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.product-information-bottom .product-information-bottom-subgroup {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.product-information-bottom .product-information-bottom-subgroup svg {
  height: 22px;
  opacity: 0.8;
}
.product-information-bottom .product-information-bottom-subgroup .product-price {
  color: #0b463e;
}
.product-information-bottom .add-cart {
  border: solid 1px #0b463e;
  margin-right: 15px;
  margin-bottom: 5px;
  border-radius: 5px;
  background-color: transparent;
  color: #0b463e;
  font-family: "Open Sans";
  font-weight: 600;
  padding: 2.5px 5px;
  cursor: pointer;
}

.catpro {
  padding: 2px 4px;
  background-color: #0b463e;
  color: #ffffff;
  font-size: 10px;
  border-radius: 10px;
  font-weight: 700;
}

.ws-productpage-content {
  display: flex;
  flex-direction: column;
}

.ws-sidebar {
  position: absolute;
  left: 0;
  top: 111px;
  width: 19vw;
  height: 90%;
  text-align: center;
}

.ws-sidebar {
  flex-direction: column;
  align-items: end;
  border-right: solid 1px #e8e8e8;
}

.ws-product-sidebar {
  font-family: "Open Sans";
  letter-spacing: 0.15px;
  font-weight: 600;
  text-align: start;
  color: #181818;
  line-height: 2;
  width: 18vw;
}
.ws-product-sidebar a {
  color: #0b463e;
}
.ws-product-sidebar span {
  padding: 5px 60px 5px 20px;
}
.ws-product-sidebar h3 {
  font-weight: 600;
  margin: 3px 0 3px 0;
  border-radius: 10px;
}
.ws-product-sidebar ul {
  margin: 0 0 0 0;
  list-style-type: none;
}
.ws-product-sidebar ul li {
  padding: 5px 60px 5px 20px;
  margin: 3px 0 3px 0;
  border-radius: 10px;
}
.ws-product-sidebar ul li:hover {
  background-color: rgba(11, 70, 62, 0.15);
}

.ws-sidebar-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: inline-block;
}

label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #0b463e;
  background: #ffffff;
  box-sizing: border-box;
}

@media (min-width: 769px) {
  .ws-sidebar {
    display: flex;
  }
}
@media (max-width: 768px) {
  .ws-sidebar {
    display: none;
  }
}/*# sourceMappingURL=products.css.map */