<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.product-description-container {
  display: flex;
  flex-direction: column;
}

.product-description-bottom {
  padding: 0 30px;
}

.product-description-top {
  display: flex;
  gap: 2rem;
  padding: 0 30px;
}

.description-containers {
  margin: 2rem 0;
  width: 100%;
}

.pdt-description-content,
.product-review-writing-cont {
  margin: 30px 0;
}

.product-descvideo-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
}

.product-descvideo-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.bottom-border-line {
  border-bottom: 1px solid #d9d9d9;
}

.review-write textarea {
  width: 100%;
  resize: none;
  border: 1px solid #d9d9d9;
  font-size: 16px;
  font-weight: bold;
  font-family: "Cairo", sans-serif;
}

.review-rating-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
}

.rating-container,
.product-rating-given {
  display: flex;
  gap: 10px;
}

.review-cards-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.review-card {
  display: flex;
  gap: 5%;
}

.reviewer-profile-pic {
  width: 15%;
}

.reviewer-profile-pic img {
  border-radius: 50%;
}

.reviewer-review-container {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: bold;
  justify-content: center;
}

.reviewer-review {
  font-size: 14px;
}

.reviewer-name {
  text-transform: uppercase;
}

.product-tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  border-radius: 5px 5px 0 0;
}

.product-tab button {
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-family: "Cairo", sans-serif;
  font-weight: bold;
  font-size: 16px;
}

.product-tab button:hover {
  background-color: #ddd;
}

.product-tab button.active {
  background-color: #ccc;
}

.product-tabcontent {
  display: none;
  padding: 12px;
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 0 0 5px 5px;
}

.product-long-desc {
  flex-wrap: wrap;
  align-items: center;
}

.product-long-desc table {
  width: 100% !important;
}

.product-long-desc table td {
  padding: 5px 0;
}

.product-long-desc img {
  padding: 0px;
  box-sizing: border-box;
}

.product-long-desc div {
  padding: 4px 0;
}

.title-element {
  font-weight: bold;
  font-size: 16px;
  color: #333;
  background-color: white;
  padding-left:3px !important;
  padding-top: 15px !important;
  padding-bottom:10px !important;
  border: none;
  margin: 0;
  font-family: 'Cairo', sans-serif;  

}

.specification-table {
  width: 100%;
  border-collapse: collapse;
}

.specification-table tr:nth-child(odd) {
  background-color: #f9f9f9d4;
}

.specification-table tr:nth-child(even) {
  background-color: #f3f3f3;
}

.specification-table td {
  padding: 10px;
  text-align: left;
  font-family: 'Cairo', sans-serif;  
}

.specification-table td:nth-child(1) {
  width: 20% !important;
  word-wrap: break-word; 
  padding-left: 20px !important;
  padding-top: 8px !important;
  padding-bottom: 10px !important;
}

#specificationTable{
  padding:10px;
}

@media screen and (max-width: 1024px) {
  .product-description-top {
    flex-direction: column-reverse;
  }

  .description-containers {
    width: 100%;
    margin: 0;
  }
}

@media screen and (max-width: 999px) {
  .product-long-desc img,
  .product-long-desc div {
    width: 100% !important;
    height: auto !important;
  }
}

#specification table {
  border-collapse: collapse;
}

#specification table th,
#specification table td {
  padding: 8px;
  text-align: left; 
}

#specification table th {
  background-color: #f2f2f2;
}

#specification{
  padding:1px;
}

@media (max-width: 550px) {
  .product-description-top {
    padding: 0;
  }

  .product-description-bottom {
    padding: 0;
  }
}

.popup-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.close-popup {
  border-radius: 6px;
  position: absolute;
  top: 11px;
  right: 28px;
  background-color: var(--secondary-color-new);
  color: white;
  border: none;
  width: 7%;
  height: 35px;
  font-size: 25px;
  cursor: pointer;
  font-weight: bold;
}</pre></body></html>