
.top_header{
    position: relative;
  height: 100%;
  background: linear-gradient(264deg, rgb(24 76 150) 0%, rgb(34 107 161));
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 5px 10px;
  height: 60px;
}
.top_header img{
    height: 35px;
    width: auto;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: 5px;
}
.top_header .header_title{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #fff;
}
.image_preview #preview_cancel {
    position: fixed;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background: rgba(0,0,0,.7);
    border-radius: 50%;
    text-align: center;
    color: #fff;
    font-size: 25px;
    transition: .3s;
    cursor: pointer;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    z-index: 9999999999;
}
		.image_preview{
		 position: fixed;
		 top: 50%;
		 left: 50%;
		 transform:translate(-50%,-50%);
		 height: 100%;
		 width: 100%;
		 box-shadow: 0px 0px 5px 1px lightgray;
		 z-index: 9999999999;
		 overflow: hidden;
		 display: none;
		 box-sizing:border-box;
	 }
	 .image_preview div{
		 /*height: 100%;*/
		 /*width: 100%;*/
		 /*position: relative;*/
		 /*margin:auto;*/
		 /*overflow-y:auto;*/

	 }
	 .image_preview .preview_content{
        width:100%;
        height:100vh;
        display:flex;
        flex-direction:column;
        background:#fff;
        padding:10px 0px;
        padding-top: 0;
        background:#fff;
        /*backdrop-filter: blur(10px);*/
        padding-bottom:20px;
        box-sizing:border-box;
        overflow-y:auto;
        padding-bottom:100px;
	 }
	 .image_preview .preview_content .preview_main_img{
        width:250px;
        height:auto;
        margin-left:auto;
        margin-right:auto;
        margin-top:50px;
        margin-bottom:30px;
        border-radius:10px;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	 }
	 .product_carousel .carousel-item .img_div{
	     height:100%;
	     width:100%;
	     margin:auto;
	     /*margin-top:20px;*/
	     margin-bottom:20px;
	     display: flex;
	     align-items: center;
	 }
	 .product_carousel .carousel-item img{
	     height:90%;
	     width:90%!important;
	     object-fit:contain;
	     object-position: center;
	     margin: auto;
	 }
	 .image_preview .preview_content .preview_title{
       font-weight:bold;
       font-size:16px;
       line-height:18px;
       margin-bottom:20px!important;
       margin-top:20px!important;
       padding:0px 15px;
	 }
	 .image_preview .preview_content .preview_desc{
       padding:0px 15px;
       text-align:justify;
       overflow-y:auto;
	 }
	 
	 img{
		 cursor: pointer;
	 }
	 /*.image_preview #preview_cancel:hover{*/
		/* background: #e8524a;*/
		/* transition: .3s;*/
	 /*}*/
	 @media only screen and (max-width:700px){
	 /*    .image_preview img{*/
		/* width: 90%;*/
		/* top:80px;*/
		/* height: auto;*/
		/* position: absolute;*/

	 /*}*/
	 }
	 
	 .provider_info_div{
	     padding:10px 20px;
	     display:flex;
	     flex-direction:column;
	     gap:5px;
	     background:#fff;
	     margin-top:10px;
	     /*border:1px solid #3888df;*/
	 }
	 .provider_info_div .provider_col {
        display: grid;
        grid-template-columns: 80px 1fr;
        align-items: center;
        background: #f7fafe;
        padding: 5px 8px;
        border-radius:5px;
    }
	 .provider_info_div .provider_col span:nth-child(1){
	     font-size:12px;
	 }
	 .provider_info_div .provider_col span:nth-child(2){
	     font-size:12px;
	     font-weight:500;
	 }
	 .comment_head{
	     border-bottom:1px solid #000;
	     padding-bottom:5px;
	     
	 }
	 .comments_div{
	     background:#fff;
	     padding:10px;
	     display:flex;
	     flex-direction:column;
	     gap:10px;
	     margin:10px;
	     margin-top:20px;
	 }
	 
	 .comment_box{
        display:flex;
        flex-direction:column;
        padding:10px 12px;
        border-radius:10px;
        /*box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;*/
        gap:5px;
}
    .comment_box p{
        font-size:14px;
    }
.comment_box .comment_box_sub_1{
    display:flex;
    align-items:center;
    gap:10px;
}
.comment_box .comment_box_sub_1 img{
    height:35px;
    width:35px;
    border-radius:50%;
}
.comment_box .comment_box_sub_1 span{
    font-weight:600;
}

