:root{
    --backgrnd_color:rgb(255, 255, 255);
    --dot1_color:#19d9c5;
    --dot2_color:#f18e55;
    --outline_color:#f5b692;
    --dot3_color:#19d9c5;
    --btn_color:#19d9c5;
    --boxes_coloring:#F5F5F5;
    --highlighted_zones:#ecebeb;
    --gray_zones:gray;
    --modern_font_color:#595557;
    --modern_font_color2:#666;
    /*--modern_font_color:#434444;*/
    --font_fam:Roboto, Helvetica, Arial, sans-serif;
    --new_font_fam2: Helvetica Neue, Helvetica, Arial, sans-serif;
    --system_font:'Poppins', sans-serif;
    --new_font_fam: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}






/*SUCCESS ALERT CSS*/
.success_status_div{
    position: absolute;
    padding: 10px;
    top: 20px;
    left: 10%;
    width: 80%;
    height: auto;
    background-color: rgb(176, 242, 176);
    border: solid 1px rgb(176, 242, 176);
    border-radius: 5px;
    z-index: 1000;
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.status_icon{
    width: 3vw;
    height: 3vw;
}
.status_btn{
    background-color: transparent;
    padding:0;
    color: gray;
    font-family: inherit;
    border: none;
    cursor: pointer;
}
.status_p{
    color: gray;
    font-family: inherit;
    padding: 0;
    margin: 0;

}

@media (max-width:768px){
    .success_status_div{
        left: 5%;
    }
    .status_p{
        font-size: 2vw;
    }

}


/*ERROR ALERT CSS*/
.error_status_div, .exist_status_div{
    position: absolute;
    padding: 10px;
    top: 20px;
    left: 10%;
    width: 80%;
    height: auto;
    background-color: var(--dot2_color);
    border: solid 1px var(--dot2_color);
    border-radius: 5px;
    z-index: 1000;
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.status_icon{
    width: 3vw;
    height: 3vw;
}
.error_status_btn, .exist_status_btn{
    background-color: transparent;
    padding:0;
    color: white;
    font-family: inherit;
    border: none;
    cursor: pointer;
}
.status_p{
    color: white;
    font-family: inherit;
    padding: 0;
    margin: 0;

}

@media (max-width:768px){
    .error_status_div{
        left: 5%;
    }
    .status_p{
        font-size: 2vw;
    }

}



/*LANDING PAGE CSS*/

.landing_body{
    width: 100vw;
    height: 100vh; 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--new_font_fam);
    overflow-x: hidden; 
    overflow-y: auto; 
    background-color: var(--highlighted_zones);
    
    /* Center content */
    display: flex;
    flex-direction: column;
    align-items: center;
}
.landing_head_div{
    width: 96%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--backgrnd_color);
    border-radius: 5px;
    border: solid 1px var(--highlighted_zones);
    padding-bottom: 10px;
}
.landing_logo{
    width: 35%;
    height: auto;
}

.landing_product_title {
    width: 80%;
    font-family: var(--new_font_fam);
    font-size: 30px;
    text-align: center;
    background: linear-gradient(to right, var(--btn_color), var(--modern_font_color2));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}


.checkout_p{
    font-family: var(--new_font_fam);
    font-size: 2vw;
    font-weight: 500;
    color: var(--modern_font_color2);
}


.landing_body_div{
    margin-top: 20px;
    width: 98%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.landing_body_div_left{
    width: 48%;
    padding: 10px;
    height: auto;
    display: flex;
    flex-direction: column;
    background-color: var(--backgrnd_color);
    border-radius: 5px;
    border: solid 1px var(--highlighted_zones);

}
.landing_body_div_content{
    width: 96%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    
    
    
    
}

.landing_body_div_client_feedback{
    width: 96%;
    padding: 10px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--highlighted_zones);
    border-radius: 5px;
    border: solid 1px var(--highlighted_zones);
    margin-bottom: 10px;
}

.landing_body_div_content_feature{
    position: relative;
    width: 70%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    background-color: var(--backgrnd_color);
    border-radius: 5px;
    border: solid 1px var(--highlighted_zones);
}
.landing_body_div_content_feature img{
    width: 100%;
    aspect-ratio: 1 / 0.5;
    object-fit: cover;
}

.landing_feature_shade{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: flex;
    align-items: flex-end;      
    justify-content: flex-start;
    background: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}
.landing_feature_shade div{
    width: 80%;
    height: auto;
    display: flex;
    flex-direction: column;
    margin: 20px;
}
.landing_new_header{
    font-family: "Gentium Basic", serif;
    font-weight: 400;
    font-size: 35px;
    color: var(--btn_color);
    text-transform: lowercase;
}
.landing_new_header::first-letter {
    text-transform: uppercase;
}

.landing_new_header_min{
    font-family: "Gentium Basic", serif;
    font-weight: 200;
    font-size: 18px;
    color: white;
    text-transform: lowercase;
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.landing_new_header_min::first-letter {
    text-transform: uppercase;
}
.landing_like_btn{
    width: auto;
    height: auto;
    background-color: transparent;
    border: none;
    margin-left: 10px;
}

.landing_like_btn img{
    width: 25px;
    height: 25px;
    margin: 2px;
    cursor: pointer;
}

#landing_like_icon {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}


@media(max-width:769px){
    .landing_new_header{
        font-size: 25px;
    }
    .landing_logo{
        width: 50%;
        height: auto;
    }
    .landing_body_div_content_feature img{
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }
    .landing_new_header_min{
        font-size: 14px;
    }
    .landing_new_header_min_icon{
        width: 18px;
        height: 18px;
        margin-left: 10px;
    }
    
    
}




.landing_body_div_content_description{
    width: 70%;
    height: auto;
    display: flex;
    flex-direction: column;
    background-color: var(--backgrnd_color);
    border-radius: 5px;
    border: solid 1px var(--highlighted_zones);
    padding: 20px;
    box-sizing: border-box;

}

.landing_new_content_title{
  font-family: var(--new_font_fam);
  font-weight: 200;
  font-size: 18px;
  color: var(--btn_color);
  /*color: #46414b;*/
  line-height: 2;
    
}
.landing_new_content_text{
  font-family: var(--new_font_fam);
  font-weight: 200;
  font-size: 16px;
  color: #46414b;
  line-height: 2;
    
}




.landing_body_div_client_feedback_inner{
    width: 70%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: top;
    background-color: var(--backgrnd_color);
    border-radius: 5px;
    border: solid 1px var(--highlighted_zones);
    padding-left: 10px;
}

.landing_feature_img{
    width: 98%;
    aspect-ratio: 1/1;
    border-radius: 5px;
}

.landing_client_response_img{
    width: 95%;
    aspect-ratio: 1/1;
    object-fit: contain;
    margin: 0;
}


.landing_p{
    font-family: var(--new_font_fam);
    font-size: 14px;
    color: var(--modern_font_color);
    margin: 10px;
}
.landing_span{
    font-family: var(--new_font_fam);
    font-size: 10px;
    color: green;
    margin: 10px;

}

.landing_body_div_gallery{
    width: 70%;
    padding: 10px;
    box-sizing: border-box;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--backgrnd_color);
    border-radius: 5px;
    border: solid 1px var(--highlighted_zones);
    margin-bottom: 10px;
}

.landing_gallery_img{
    width: 80%;
    height: auto;
    object-fit: contain;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .landing_body_div_gallery {
        width: 98%;
    }
    .landing_gallery_img{
        width: 98%;
    }
}

.landing_body_h{
    font-family: var(--new_font_fam);
    font-size: 18px;
    font-weight: 400;
    color: var(--btn_color);
}
.landing_body_subh{
    font-family: var(--new_font_fam);
    font-size: 14px;
    font-weight: 400;
    color: var(--btn_color);
}
.landing_form-group{
    width: 93%;
    display: flex;
    flex-direction: column;
    height: auto;
    border-radius: 5px;
    padding: 5px;
    margin-top: 20px;
}

.landing_form-group_row{
    width: 97%;
    display: flex;
    flex-direction: row;

}

.landing_form-group_mini{
    width: 47%;
    display: flex;
    flex-direction: column;
    height: auto;
    border-radius: 5px;
    padding: 5px;
    margin-top: 20px;
}


.landing_form-input{
    border: none;
    border-radius: 5px;
    font-family: var(--new_font_fam);
    font-size: 13px;
    color: var(--modern_font_color);
    padding: 7px 7px;
    margin-top: 5px;
    border: solid 1px var(--highlighted_zones);
    background-color: var(--boxes_coloring);
}
.landing_form-input:focus{
    outline: 0;
}
.landing_form-group:focus{
    border: solid 1px var(--modern_font_color2);
}
.landing_label{
    font-family: var(--new_font_fam);
    font-size: 14px;
    color: var(--modern_font_color2);

}
.landing_required{
    color: var(--btn_color);
}

.landing_payment_options_div{
    width: 93%;
    display: flex;
    flex-direction: column;
    height: auto;
    border-radius: 5px;
    padding: 5px;
    margin-top: 20px;

}
.landing_payment_option{
    width: 100%;
    background-color: var(--boxes_coloring);
    padding: 5px;
}
.landing_payment_icon{
    width: 14px;
    height: 14px;
    margin-right: 5px;
}


.landing_order_details_1{
    width: 95%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-bottom: solid 1px var(--highlighted_zones);
}

.landing_order_details_body{
    width: 95%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    border-bottom: solid 1px var(--highlighted_zones);
}
.landing_product_p1{
    font-family: var(--new_font_fam);
    font-size: 14px;
    color: var(--modern_font_color2);
    width: 55%;
}
.landing_product_p2{
    font-family: var(--new_font_fam);
    font-size: 14px;
    color: var(--modern_font_color2);
    width: 15%;
}

.landing_product_img{
    width: 10%;
    height: auto;
}

.landing_place_order_btn{
    width: 97%;
    padding: 15px 7px;
    background-color: var(--btn_color);
    border: solid 1px var(--btn_color);
    border-radius: 5px;
    color: white;
    cursor: pointer;
    margin-top: 10px;
}
.landing_place_order_btn:hover{
    background-color: var(--dot2_color);
    border: solid 1px var(--dot2_color);
}

.landing_footer{
    width: 97%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.landing_footer_p{
    font-family: var(--new_font_fam);
    font-size: 14px;
    color: var(--modern_font_color2);
}

.landing_till_icon{
    width: 50%;
    height: auto;
}

.landing_options_div{
    width: 99%;
    height: auto;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
    background-color: var(--backgrnd_color);
    margin-bottom: 10px;
}

@media (max-width: 200px) {
    .landing_options_div {
        grid-template-columns: 1fr; 
    }
}





.landing_option_label{
    display: block;
    width: 90%;
    height: 200px;
    background-color: var(--boxes_coloring);
    display: flex;
    flex-direction: column;
    align-items: top;
    cursor: pointer;
    border-radius: 5px;
    border: solid 1px var(--highlighted_zones);
}
.landing_option_label_top{
    width: 100%;
    height: 60%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}
.landing_option_label_bottom{
    width: 100%;
    height: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}
.landing_option_label_image{
    width: 40%;
    height: auto;
    margin-right: 5px;
}

.landing_option_label_p{
    width: 90%;
    font-family: var(--new_font_fam);
    font-size: 10px;
    color: var(--gray_zones);
}

.landing_compatibility_div{
    width: 100%;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
}
.landing_compatibility_label{
    width: 80%;
    display: flex;
    flex-direction: row; 
    cursor: pointer;
}
.landing_compatibility_label:hover{
    background-color: var(--highlighted_zones);
    border-radius: 5px;
}

.landing_summary_div{
    width: 98%;
    height: auto;
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    background-color: var(--boxes_coloring);
    border-radius: 5px;
}
.landing_summary_div_inner{
    width: 95%;
    height: auto;
    display: flex;
    flex-direction:row;
    justify-content: space-between;
}
.landing_input{
    width: 30%;
    padding: 7px 7px;
    background-color: var(--highlighted_zones);
    border: solid 1px var(--gray_zones);
    border-radius: 5px;
}
.landing_support_icons_div{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-top: solid 1px var(--highlighted_zones);
}
.landing_support_icons{
    width: 45%;
    height: auto;
    margin: 10px;
}

.lp_select_county{
    padding: 10px 10px;
    background-color: var(--highlighted_zones);
    border: solid 1px gray;
    border-radius: 5px;
}






@media(max-width:768px){
    .landing_body_div_left{
        width: 97%;
        margin-top: 20px;
    }
    .landing_body_div_content{
        width: 97%;
        order: -1;
        flex-direction: column;
    }
    .landing_body_div_content_feature, .landing_body_div_content_description{
        width: 96%;
        margin-bottom: 10px;
    }

    .landing_body_div_client_feedback{
        width: 97%;
        flex-direction: column;
    }
    
    .landing_body_div_client_feedback_inner{
        width: 96%;
        margin-bottom: 10px;
    }


    .landing_product_p1{
        font-size: 2.2vw;
    }
    .landing_product_p2{
        font-size: 2.2vw;
    }
    .landing_label{
        font-size: 2.2vw;

    }
    .landing_footer{
        font-size: 2.2vw;
    }
    .landing_p{
        font-size: 2.3vw;
    }
    .landing_span{
        font-size: 1.8vw;

    }
    .product_desc_numbering{
        font-size: 2vw;
    }

}

/*END OF LANDING PAGE CSS*/


/*PRODUCT VARIATIONS SECTION*/
.product_detail_variations {
    width: 95%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .product_detail_variations_inner{
    width: 98%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    margin: 0;

  }
  
 /* .product_detail_variations input[type="radio"] {
    display: none;
  }       */
  
  .product_detail_variations label {
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    color: var(--modern_font_color);
  }  
  
  /*.product_detail_variations input[type="radio"]:checked + label {
    background-color: var(--btn_color);
    color: white;
    border-color: var(--btn_color);
  }    */

  @media(max-width:768px){
    .product_detail_variations label, .product_detail_color-options label{
        font-size: 8px;
    }

  }


  /*END OF PRODUCT VARIATIONS*/
  
  
  /*MOBILE SEARCH POPUP*/

.mobile_search_popup{
    position: absolute;
    display: none;
    top: 2;
    margin-left: 10px;
    width: 90vw;
    height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: var(--backgrnd_color);
    box-shadow: 1px 1px 3px var(--gray_zones);
    border: solid 1px var(--backgrnd_color);
    border-radius: 5px;
    z-index: 1000;
    padding: 5px;
}
.mobile_search_popup input{
    width: 80%;
    padding: 7px 7px;
    background-color: var(--highlighted_zones);
    border: solid 1px var(--highlighted_zones);
    border-radius: 5px;
    color: var(--modern_font_color2);
    font-size: 12px;

}
.mobile_search_popup input:focus {
    outline: none;
    box-shadow: 1px 1px 3px var(--gray_zones); 
    border-radius: 5px;
}
.mobile_search_popup img{
    width: 5%;
    height: auto;
    cursor: pointer;
}




/*MAP DISPLAY CSS*/
 #map-container {
    display: none; 
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: white;
    border: 2px solid black;
    z-index: 1000;
    padding: 10px;
}

#map {
    width: 100%;
    height: 100%;
}

.mapclose-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: red;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    z-index: 1000;
}


/*SUBCATEGORY PART*/

.header_scroll_menu {
    list-style: none;
    padding: 0;
    width: 99%;
    height:auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow-x: scroll;
    scrollbar-width: none; 
    -ms-overflow-style: none;
    scroll-behavior: smooth; 
    flex: 1;
    position: relative; 
}

.header_scroll_menu > li {
    
    padding: 7px 7px;
    cursor: pointer;
    margin-right: 10px;
    color: var(--modern_font_color);
    font-family: var(--new_font_fam2);
    font-size: 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 0 0 auto;
    text-decoration: none;
}
#header_scroll_menu_a{
    padding: 7px 7px;
    cursor: pointer;
    margin-right: 10px;
    color: var(--modern_font_color);
    font-family: var(--new_font_fam2);
    font-size: 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 0 0 auto;
    text-decoration: none;
}

.header_scroll_menu > li:hover {
    background-color: var(--highlighted_zones);
    border-radius: 5px;
}

.header_scroll_submenu {
    list-style: none;
    display: none;
    position: fixed;  
    background: var(--backgrnd_color);
    border: 1px solid var(--highlighted_zones);
    box-shadow: 1px 1px 3px var(--gray_zones);
    border-radius: 5px;
    padding: 10px;
    width: 50vw;
    height: auto;
    z-index: 1000;
    flex-direction: column;
}

.header_scroll_submenu li {
    width: 45%;
    padding: 10px;
    color: var(--modern_font_color2);
    font-size: 12px;
}

.header_scroll_submenu a {
   text-decoration: none;
   color: #355b4d;
}

.header_scroll_submenu li:hover {
    background: var(--boxes_coloring);
    color: var(--btn_color);
    border-radius: 5px;
}

@media(max-width:768px){
    .header_scroll_submenu li{
        width: 90%;
    }
    
}


/*product review*/
.review_product_id{
    width: 97%;
    background-color:var(--boxes_coloring);
    margin-top: 20px;
    border-radius: 5px;
}

#review-summary{
    font-family: var(--new_font_fam2);
    font-size: 14px;
    color: var(--modern_font_color2);
    margin-left: 10px;
}

#reviews-list{
    width: 100%;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
}

.review{
    padding: 10px 10px;
    box-shadow: 1px 1px 3px var(--gray_zones);
    border-radius: 5px;
    background-color: var(--backgrnd_color);
    margin: 10px;
}
.review h3{
    font-family: var(--new_font_fam2);
    font-size: 18px;
    color: var(--modern_font_color2);
}
.review p{
    font-family: var(--new_font_fam2);
    font-size: 10px;
    color: var(--modern_font_color2);
}
.star{
    color:var(--btn_color);
}


/*end of product review*/





.product_edit_form_details{
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width:50vw;
    height: auto;
    padding: 20px;
    box-sizing: border-box;
    z-index: 1000;
    background-color: var(--highlighted_zones);
    border-radius: 5px;
    box-shadow: 1px 1px 3px gray;
}


.product_edit_form_h{
    margin-bottom: 10px;
    color: var(--modern_font_color);
    font-size: 16px;
    
}

.product_edit_form_input{
    width: 50%;
    padding: 7px 7px;
    background-color: var(--backgrnd_color);
    border: solid 1px var(--highlighted_zones);
    border-radius: 5px;
    color: var(--gray_zones);
    margin-bottom: 10px;
    font-family: var(--new_font_fam);
    color: var(--modern_font_color);
    font-size: 13px;

}

.product_edit_form_btn{
    padding: 7px 7px;
    background-color: var(--dot2_color);
    border: solid 1px var(--dot2_color);
    border-radius: 5px;
    color: white;
    font-family: inherit;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 10px;
    
}
.product_edit_form_close{
    margin-bottom: 10px;
    color: var(--dot2_color);
    font-size: 16px;
    cursor: pointer;
    
}

.product_edit_form_select{
    margin: 10px;
    background-color: var(--backgrnd_color);
    border-radius: 5px;
}

@media (max-width:768px){
    .p_details_icon{
        width: 3vw;
        height: 3vw;
    }
    .product_edit_form_details{
        width: 95vw;
    }

}




/*EMPTY RETURN CSS*/
.empty_return_div{
    width: 100%;
    min-height: 200px;
    height: auto;
    background-color: var(--backgrnd_color);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.empty_return_icon{
    width: 15%;
    height: auto;
}
.empty_return_title{
    font-size: 16px;
    margin: 0;
    line-height: 2;
}
.empty_return_desc{
    font-size: 12px;
    margin: 0;
    line-height: 2;
}

@media(max-width:768px){
    .empty_return_icon{
        width: 25%;
    }

}




/*STATUS DISPLAY CSS*/
.status_display_invalid, .status_display_duplicate, .status_display_error, .status_display_null{
    display: none;
    font-size: 12px;
    color: var(--btn_color);
}




@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.status_display_wrongpass {
    display: none;
    font-size: 12px;
    background-color: var(--btn_color);
    color: white;
    padding: 7px 7px;
    border-radius:3px;
    animation: blink 1s infinite;
}





/*ONLINE STATUS DOT*/

.user_icon_wrapper {
    position: relative;
    display: inline-block;
}

.user_status {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background-color: green;
    border-radius: 50%;
    border: 2px solid white;
}

/*ONLINE STATUS DOT*/

/*NEW PAYMENT TERMS*/
.payment_notify_div{
    width: 95%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.payment_notify_div h2{
    font-family: 'Poppins', sans-serif;
    color: #606060;
    font-size: 20px;
}
.payment_notify_div h2 span{
    font-family: 'Poppins', sans-serif;
    color: #0099ff;
    font-size: 20px;
}
.payment_notify_card{
    width: 100%;
    height: auto;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-color: rgb(208, 248, 248);
    padding: 20px;
    box-sizing: border-box;
    border: solid 1px gray;
    border-radius: 10px;
}
.payment_notify_card_inner{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content:flex-start;
    margin-top: 10px;
}
.payment_notify_card_inner img{
    width: 40px;
    height: 40px;
    margin-right: 10px;
}
.payment_notify_card_inner span{
    font-family: 'Poppins', sans-serif;
    color: #606060;
    font-size: 20px;
}
.payment_notify_card_inner p{
    font-family: 'Poppins', sans-serif;
    color: #606060;
    font-size: 14px;
    margin: 0;
    line-height: 2;
}

.payment_notify_card_inner p span{
    font-family: 'Poppins', sans-serif;
    color: #0099ff;
    font-size: 14px;
    margin: 0;
    line-height: 2;
}

.landing_body_div_client_feedback_inner-client-say{
    width: 70%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: var(--backgrnd_color);
    border-radius: 5px;
    border: solid 1px var(--highlighted_zones);
    padding: 10px;
}
.landing_body_div_client_feedback_inner-client-say div{
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.landing_body_div_client_feedback_inner-client-say img{
    width: 100%;
    height: auto;
    margin: 0 !important;
    padding: 0;
    box-sizing: border-box;
}
.landing_body_div_client_feedback_inner-client-say span{
    font-family: var(--new_font_fam);
    font-size: 18px;
    font-weight: 400;
    color: var(--btn_color);
}



.details-tab-p