<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@500;600;700;800;900&amp;display=swap');

.details_container{
background: rgba(255, 255, 255, 0.52);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(6.3px);
-webkit-backdrop-filter: blur(6.3px);
border: 1px solid rgba(255, 255, 255, 0.3);
display: flex;
justify-content: space-between;
min-height: 550px;
width: 1100px;
margin: auto;
margin-top: 50px;
padding: 20px;
margin-bottom: 100px;
font-size: 21px !important;

}

.details_container .img_section{
  width: 50%;
  margin-top: 35px;
}

.details_container .img_section img{
  border-radius: 25px;
  width: 100%;
  height: 450px;
}

.details_container .details_section{
  padding: 25px;
  width: 50%;
  display: flex;
  flex-direction: column;
  font-size: 21px !important;

}

.details_container .details_section .product_info{
  margin-bottom: 5px;
  font-family: 'Cairo', sans-serif;
}

.details_container .details_section .Details_th{
  padding: 10px;
  color: rgb(33, 33, 92);
  font-family: 'Cairo', sans-serif;
}

.details_container .details_section .details_info{
  display: flex;
  justify-content: right;
  line-height: 2.5rem;
  font-size: 21px !important;

}

.details_container .details_section .details_info h3{
  font-size: 21px !important;
  font-family: 'Cairo', sans-serif;
}

.title{
  color: rgb(0, 41, 80);
  width: 110px;
  font-family: 'Cairo', sans-serif;
}

.product_info textarea{
  font-size: 18px;
  background: none;
  border: none;
  width: 100%;
  height: 200px;
  max-height: 300px;
  max-width: 750px;
  text-align: right;
  resize: none;
  color: rgb(0, 0, 0);
  cursor: pointer;
}

.product_info textarea:focus,
.product_info textarea:active {
  outline: none;
  border-color: transparent;
}

.product_info textarea::-webkit-scrollbar {
  width: 5px;
}

.product_info textarea::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px white;
  border-radius: 10px;
}

.product_info textarea::-webkit-scrollbar-thumb {
  background: rgb(0, 41, 80);
  border-radius: 10px;
}

.product_info textarea::-webkit-scrollbar-thumb:hover {
  background: rgb(0, 41, 80);
  border-radius: 10px;
}


@media(max-width:768px){
  .details_container{
    display: flex;
    flex-direction: column;
    height: auto;
    width: 95%;
    margin-top: 10px;
    padding: 10px;
    }
    
    .details_container .img_section{
      width: 100%;
    }

    .details_container .details_section{
      padding: 25px;
      width: 100%;
      display: flex;
      flex-direction: column;
    }

    .product_info textarea {
      font-size: 18px;
      max-height: 500px;
      overflow: auto;
      text-align: right;
    }
}</pre></body></html>