/* Fonts */
:root {
  --default-font: "Roboto",  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";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "2  Arshia",  sans-serif;
  --nazanin-font: "B Nazanin",  sans-serif;
  --nastaligh-font: "IranNastaliq",  sans-serif;
  --irannastaligh: "2  Fantezy",  sans-serif;
  --kamran-font: "IRANMarker";
}

/* Global Colors  */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2B5784; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1acc8d; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --color_white: #fff;
  --color_prime: #2B5784;
  --color_grey: #e2e2e2;
  --color_grey_dark: #a2a2a2;
}

/* Nav Menu Colors */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #1acc8d; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #2B5784; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #1acc8d; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
  --d: 700ms;
  --e: cubic-bezier(0.19, 1, 0.22, 1);
  --font-sans: "Rubik", sans-serif;
  --font-serif: "Cardo", serif;
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f4f5fe;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #2B5784;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #0c0091;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Customer pofile page
--------------------------------------------------------------*/
.profile-page-container {
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  /* background-color: rgba(17, 25, 40, 0.25); */
  background: -webkit-gradient(linear, left bottom, left top, color-stop(10%, #2B5784), color-stop(#a4f5d9) , to(#2B5784));
  background: -o-linear-gradient(bottom, #2B5784 10%, #a4f5d9 , #2B5784 100%);
  background: linear-gradient(0deg, #2B5784 10%, #a4f5d9 , #2B5784 100%);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);  
  padding: 38px;  
  -webkit-filter: drop-shadow(0 30px 10px rgba(0,0,0,0.125));  
          filter: drop-shadow(0 30px 10px rgba(0,0,0,0.125));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack:center;
      -ms-flex-pack:center;
          justify-content:center;
  text-align: center;
  width: 600px;
  max-width: 100%;
  margin: auto;
}

.profile-wrapper {
  width: 100%;
  height: 100%;
}

.profile-banner-image {
  background-position: center;
  /* background-size: cover; */
  background-size: 100% 100%;
  height: 300px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255, 0.255)
}

.profile-h1{
  font-family: var(--nav-font);
  color: rgba(255,255,255,0.98);
  text-transform: uppercase;
  font-size: 2rem;
  letter-spacing: 1px;
  /* line-height: 150%; */
}

.profile-p {
  color: #fff;
  font-family: var(--nav-font);
  text-align: center;
  font-size: 1.9rem;
  letter-spacing: 1px;
}

.profile-email {
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  font-size: 1.2rem;
}

.profile-button-wrapper{
  margin-top: 18px;
}

.profile-btn {
  border: none;
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 1.4rem;  
  font-weight: bold;
  color: var(--nav-dropdown-hover-color);
  /* letter-spacing: 2px;   */
  cursor: pointer;
  /* margin: 2%; */
}

.profile-btn + .profile-btn {
  margin-left: 10px;
}

.profile-btn:hover {
  -webkit-box-shadow: 0 3px 7px 3px var(--nav-dropdown-hover-color);
          box-shadow: 0 3px 7px 3px var(--nav-dropdown-hover-color);
  color: black;
}

.profile-outline {
  background: transparent;
  color: rgba(0, 212, 255, 0.9);
  border: 1px solid rgba(0, 212, 255, 0.6);
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  
}

.profile-outline:hover{
  -webkit-transform: scale(1.125);
      -ms-transform: scale(1.125);
          transform: scale(1.125);
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;  
}

.profile-fill {
  background: rgba(0, 212, 255, 0.9);
  color: rgba(255,255,255,0.95);
  -webkit-filter: drop-shadow(0);
          filter: drop-shadow(0);
  font-weight: bold;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease; 
}

.profile-fill:hover{
  -webkit-transform: scale(1.125);
      -ms-transform: scale(1.125);
          transform: scale(1.125);  
  border-color: rgba(255, 255, 255, 0.9);
  -webkit-filter: drop-shadow(0 10px 5px rgba(0,0,0,0.125));
          filter: drop-shadow(0 10px 5px rgba(0,0,0,0.125));
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;    
}
/*--------------------------------------------------------------
# /Customer pofile page
--------------------------------------------------------------*/
.edit-address-form-inputs {
  color: rgb(0, 0, 0);
  font-size: 1.2em;
  font-family: var(--nav-font);
  text-align: center;
}
.address-cord-btn {
  border: none;
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 1.4rem;  
  font-weight: bold;
  color: var(--nav-dropdown-hover-color);
  /* letter-spacing: 2px;   */
  cursor: pointer;
  margin: 2%;
  text-align: center;
  -webkit-box-shadow: 2px 2px #059652;
          box-shadow: 2px 2px #059652;
  text-decoration: none;
}
.address-cord-btn:hover {
  -webkit-box-shadow: 0 3px 7px 3px var(--nav-dropdown-hover-color);
          box-shadow: 0 3px 7px 3px var(--nav-dropdown-hover-color);
  color: black;  
  text-decoration: none;
}
.customer-famil-btns {
  border: none;
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 0.8rem;  
  font-weight: bold;
  color: var(--nav-dropdown-hover-color);
  /* letter-spacing: 2px;   */
  cursor: pointer;
  margin: 2%;
  text-align: center;
  -webkit-box-shadow: 2px 2px #059652;
          box-shadow: 2px 2px #059652;
  text-decoration: none;
}
.customer-famil-btns:hover {
  -webkit-box-shadow: 0 3px 7px 3px var(--nav-dropdown-hover-color);
          box-shadow: 0 3px 7px 3px var(--nav-dropdown-hover-color);
  color: black;  
  text-decoration: none;
}
.edit-profile-form-group {
  margin-bottom: 20px;
  width: 60%;
  min-width: 250px;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  direction: rtl;
}

.edit-profile-form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.edit-profile-form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  outline: none;
  font-size: 1.2em;
  text-align: center;
  direction: rtl;
}

.edit-profile-form-group input:focus {
  border-color: #007BFF;
}

.edit-profile-submit-btn {
  width: 100px;
  min-width: 250px;
  padding: 10px;
  background-color: #007BFF;
  border: none;
  border-radius: 4px;
  color: white;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
}

.edit-profile-submit-btn:hover {
  background-color: #0056b3;
}

/* Modal Content */
.edit-profile-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; 
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0); 
  background-color: rgba(0,0,0,0.4); 
}

.edit-profile-modal-content {
  background-color: #fefefe;
  margin: auto;
  margin-top: 1%;
  padding: 20px;
  border: 1px solid #888;
  width: 40%;
  height: 98%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  place-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 8px;
  -webkit-box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  -o-transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.edit-profile-modal-content:hover {
  -webkit-transform: rotateY(15deg);
          transform: rotateY(15deg);
}

/* The Close Button */
.edit-profile-close {
  color: #d21818;
  float: right;
  font-size: 2.5em;
  font-weight: bold;
  cursor: pointer; /* تغییر حالت موس به pointer */
  position: relative; 
  top: -40px;
  right: 0%;  
}

.edit-profile-close:hover,
.edit-profile-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.edit-address-close {
  color: #d21818;
  float: right;
  font-size: 1.6em;
  font-weight: bold;
  cursor: pointer; /* تغییر حالت موس به pointer */
  position: absolute;
  top: -3%;
  right: 2%;  
  -ms-flex-item-align: start;  
      -ms-grid-row-align: start;  
      align-self: start;

}

.edit-address-close:hover,
.edit-address-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/*--------------------------------------------------------------
# Customer panel design
--------------------------------------------------------------*/
.bmi-chart{
  width: 700px;
  height: 400px;
  margin: 10px;
  padding: 10px;
  -webkit-box-shadow: 0 3px 7px -1px rgba(17, 8, 149, 0.5);
          box-shadow: 0 3px 7px -1px rgba(17, 8, 149, 0.5);
}
/* orders  in customerpanel */
.timer{
  color: red;
  font-family: var(--nazanin-font);
}
.hh-grayBox {
	background-color: transparent;
	margin-bottom: 20px;
	padding: 35px;
}
.pt45{padding-top:45px; width: 100%; direction: ltr;}
.order-tracking{
	text-align: center;
	width: 25%;
	position: relative;
	display: block;
}
.order-tracking .is-complete{
	display: block;
	position: relative;
	border-radius: 50%;
	height: 30px;
	width: 30px;
	border: 0px solid #AFAFAF;
	background-color: #f7be16;
	margin: 0 auto;
	-o-transition: background 0.25s linear;
	transition: background 0.25s linear;
	-webkit-transition: background 0.25s linear;
	z-index: 2;
}
.order-tracking .is-complete:after {
	display: block;
	position: absolute;
	content: '';
	height: 14px;
	width: 7px;
	top: -2px;
	bottom: 0;
	left: 5px;
	margin: auto 0;
	border: 0px solid #AFAFAF;
	border-width: 0px 2px 2px 0;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	opacity: 0;
}
.order-tracking.completed .is-complete{
	border-color: #27aa80;
	border-width: 0px;
	background-color: #27aa80;
}
.order-tracking.completed .is-complete:after {
	border-color: #fff;
	border-width: 0px 3px 3px 0;
	width: 7px;
	left: 11px;
	opacity: 1;
}
.order-tracking p {
	color: #f7be16;
	/* font-size: 0.5em; */
  font-size: calc(0.7rem + .9vw);
  text-shadow: 1px 0 black;
	margin-top: 8px;
	margin-bottom: 0;
	line-height: 20px;
}
.order-tracking p:hover {
  font-size: calc(0.8rem + .9vw);
  text-shadow: 0px 1px rgb(0, 0, 0);
}
.order-tracking p span{font-size: 14px;}
.order-tracking.completed p{color: var(--nav-dropdown-hover-color);}
.order-tracking::before {
	content: '';
	display: block;
	height: 3px;
	width: calc(100% - 40px);
	background-color: #f7be16;
	top: 13px;
	position: absolute;
	left: calc(-50% + 20px);
	z-index: 0;
}
.order-tracking:first-child:before{display: none;}
.order-tracking.completed:before{background-color: #27aa80;}
/* /orders in customerpanel */
.scrollable-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  padding: 10px;
}

.scrollable-box .card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-right: 10px;
}
.scrollable-box::-webkit-scrollbar {
  height: 8px;
}

.scrollable-box::-webkit-scrollbar-track {
    background: #000000;
}

.scrollable-box::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: #1acc8d;
}

.scrollable-box::-webkit-scrollbar-thumb:hover {
    background: #ffffff;
}
.report-btn-order{
  border-radius: 7%;
  width: 100%;
  background-color: #3b70fc;
  color: white;
  font-size: calc(0.7rem + .9vw);
  margin: 2.5%;
}
.report-btn-order:hover{
  -webkit-box-shadow: 0 3px 7px -1px rgba(17, 8, 149, 0.5);
          box-shadow: 0 3px 7px -1px rgba(17, 8, 149, 0.5);
  color: var(--nav-dropdown-hover-color);
}
.report-btn-orders{
  border-radius: 7%;
  width: 40%;
  background-color: #3b70fc;
  color: white;
  font-size: calc(0.7rem + .9vw);
  margin: 2.5%;
}
.report-btn-orders:hover{
  -webkit-box-shadow: 0 3px 7px -1px rgba(17, 8, 149, 0.5);
          box-shadow: 0 3px 7px -1px rgba(17, 8, 149, 0.5);
  color: var(--nav-dropdown-hover-color);
}
.order-product-detail:hover{
  -webkit-box-shadow: 0 3px 7px -1px rgba(17, 8, 149, 0.5);
          box-shadow: 0 3px 7px -1px rgba(17, 8, 149, 0.5);
}
.order-product-detail{
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  padding: 10px;
  direction: rtl;
  font-family: var(--nazanin-font);
  font-size: calc(0.7rem + .9vw);
  font-weight: 500;
  line-height: 1.2;
  text-shadow: 1px 0px black;
  margin-right: 7%;
  margin-top: 2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.1);
}
.order-product-detail-center{
  width: 95%;
  direction: rtl;
  font-family: var(--nazanin-font);
  font-size: calc(0.7rem + .9vw);
  font-weight: 500;
  line-height: 1.2;
  text-shadow: 1px 0px #56d8e4;
  color: var(--nav-dropdown-background-color);
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2%;

}
.cutomer-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  margin-top: 5%;
  margin-bottom: 3%;
  font-family: var(--nav-font);
  font-weight: bolder;
  font-size: 1.3em;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  #timer {
      font-size: 30px;
      font-weight: bold;
      color: red;
  }
  .dashboard {
    display: -ms-grid;
    display: grid;
    gap: 1rem;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    max-width: 1300px;
    margin: 0 auto;
  }
  .profile-dashboard {
    display: -ms-grid;
    display: grid;
    gap: 1rem;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    /* max-width: 1300px; */
    margin: 0 auto;
    width: 50%;
  }
  @media (max-width: 500px) {
  .profile-page-container {
    width: 100%;
  }

    .profile-dashboard {
      width: 100%;
    }
    .edit-profile-modal-content {
      width: 100%;
      left: 0;
      margin-left: 0px;
      margin: auto;
      height: 100%;
    }
  }
  .card {
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    height: 100%;
  }
  
  /* Project Card */
  .project-card {
    /* background: #afdbf6; */
    background: -o-linear-gradient(300deg, #73c9ff,  #2B5784 100%);
    background: linear-gradient(150deg, #73c9ff,  #2B5784 100%);
  }
  
  .profile-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 1.5rem;
  }
  
  .profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .profile-img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    -o-object-fit: cover;
       object-fit: cover;
    border: 1px solid black;
  }
  
  .actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem;
  }
  
  .icon-button {
    background: white;
    border: 0.5px solid black;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer;
  }
  
  h1 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .industry {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 1.5em;
  }
  .green{
    color: #1acc8d;
  }
  .red{
    color: red;
  }
  
  .bold {
    font-weight: 400;
    /* color: #000; */
  }
  
  .progress-section {
    margin-bottom: 1.5rem;
  }
  
  .progress-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: 300;
    font-size: 1.2em;
    color: white;
  }
  
  .progress-bar {
    background: white;
    border-radius: 0.25rem;
    height: 0.5rem;
    overflow: hidden;
  }
  
  .progress-bar .progress {
    background: #000;
    height: 100%;
    -webkit-transition: width 0.3s ease;
    -o-transition: width 0.3s ease;
    transition: width 0.3s ease;
  }
  
  .card-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 15%;
  }
  
  .select-report {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    border: 0.5px solid black;
    border-radius: 3rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
  }
  
  .send-button {
    background: #000;
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer;
  }
  
  /* Meetings Card */
  .meetings-card {
    background: #f5f5f5;
  }
  
  .meetings-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 1.5rem;
  }
  
  .month-selector {
    background: white;
    border: none;
    border-radius: 3rem;
    padding: 0.5rem 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: 0.5px solid black;
  }
  
  .calls-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  
  .calendar-days {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0.5rem 1fr 0.5rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  
  .day {
    background: white;
    border-radius: 3rem;
    padding: 1rem;
    text-align: center;
    border: 1px solid black;
  }
  
  .day.active {
    background: #86cdf9;
  }
  
  .day .number {
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
  }
  
  .day .label {
    font-size: 0.8rem;
    color: #666;
  }
  
  /* Roadmap Card */
  .roadmap-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 1.5rem;
  }
  
  .add-task {
    background: #000;
    color: white;
    border: none;
    border-radius: 3rem;
    padding: 0.5rem 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.5rem;
    cursor: pointer;
  }
  
  .tasks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .task-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 0.5rem;
  }
  
  .task-progress {
    background: #f5f5f5;
    border-radius: 3rem;
    height: 2rem;
    position: relative;
    overflow: hidden;
  }
  
  .task-progress .progress {
    background: #73c9ff;
    height: 100%;
    -webkit-transition: width 0.3s ease;
    -o-transition: width 0.3s ease;
    transition: width 0.3s ease;
  }
  
  .task-users {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .user {
    width: 1.5rem;
    height: 1.5rem;
    background: #ddd;
    border: 2px solid white;
    border-radius: 50%;
    margin-left: -0.5rem;
  }
  
  .timeline {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: repeat(5, 1fr);
    text-align: center;
    color: #666;
    font-size: 0.9rem;
  }
  
  /* Mezaj Card */
  .bmi-card {
    background: #ffffff;
    color: black;
    margin-right: 3%;
    max-width: 420px;
  }
  .chart-container {
    width: 30vw;
    height: 40vh;
    background-color: #ffffff;
    border-radius: 10px;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  canvas {
      display: block;
  }
  
  .mezaj-value {
    font-size: 1rem;
    /* font-weight: bold; */
    margin-bottom: 1rem;
  }

  /* Efficiency Card */
  .efficiency-card {
    background: #000;
    color: white;
    margin-right: 3%;
    max-width: 420px;
    min-width: 350px;
  }
  .efficiency-div-center{
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-weight: 300;
    font-size: 0.8em;
  }
  .efficiency-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 1.5rem;
  }
  
  .efficiency-value {
    font-size: 1rem;
    /* font-weight: bold; */
    margin-bottom: 1rem;
  }
  
  .chart {
    /* height: 8rem; */
    height: 95%;
    background: -webkit-gradient(linear, left bottom, left top, from(#73c9ff), to(transparent));
    background: -o-linear-gradient(bottom, #73c9ff 0%, transparent 100%);
    background: linear-gradient(to top, #73c9ff 0%, transparent 100%);
    border-radius: 0.5rem;
  }
  
  /* Time Card */
  .time-card {
    background: #eee;
  }
  
  .time-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .time-value {
    font-size: 2.5rem;
    font-weight: bold;
  }
  
  .time-value span {
    font-size: 1.5rem;
    font-weight: normal;
  }
  
  /* AI Assistant Card */
  .ai-card {
    background: -o-linear-gradient(315deg, white, #73c9ff);
    background: linear-gradient(135deg, white, #73c9ff);
    position: relative;
    overflow: hidden;
  }
  
  .ai-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  
  .arrow-button {
    background: #73c9ff;
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer;
    z-index: 100;
  }
  
  .ai-image {
    position: absolute;
    bottom: 0;
    right: 0;
    /* border-top-left-radius: 1.5rem; */
    max-width: 56%;
    height: auto;
  }
  @media (min-width: 640px) {
    .dashboard {
      -ms-grid-columns: 1fr 1fr;
      grid-template-columns: repeat(2, 1fr);
    }
  
    .calendar-days {
      -ms-grid-columns: 1fr 1fr;
      grid-template-columns: repeat(6, 1fr);
    }
  }
  
  @media (min-width: 768px) {
    body {
      padding: 1.5rem;
    }
  
    .dashboard {
      gap: 1.5rem;
    }
  
    h1 {
      font-size: 1.5rem;
    }
  
    .efficiency-value {
      font-size: 2.5rem;
    }
  
    .time-value {
      font-size: 3rem;
    }
  
    .time-value span {
      font-size: 2rem;
    }
  }
  
  @media (min-width: 1024px) {
    .dashboard {
      width: 100%;
      /* grid-template-columns: repeat(3, 1fr); */
      display: -ms-grid;
      display: grid;
      /* grid-template-columns: 1fr 1fr; */
      gap: 2rem;
    }
  
    .project-card {
      -ms-grid-column-span: 1;
      grid-column: span 1;
      min-width: 300px;
      max-width: 400px;
      max-height: 500px;
    }
  
    .project-card:hover {
      -webkit-box-shadow: 0 0 15px rgba(18, 6, 186, 0.463);
              box-shadow: 0 0 15px rgba(18, 6, 186, 0.463);
    }
    .meetings-card {
      -ms-grid-column-span: 2;
      grid-column: span 2;
    }
  
    .roadmap-card {
      -ms-grid-column-span: 2;
      grid-column: span 2;
    }
  }
  
  @media (min-width: 1280px) {
    body {
      padding: 2rem;
    }
  
    .dashboard {
      gap: 2rem;
      max-width: 100%;
    }
  }
  button,
  .card {
    border: 1px solid rgba(30, 30, 30, 0.501);
    height: 100%;
  }
}


/* end dashboard */
.username-in-uesrpanel{
  color: white;
  font-size: 14px;
  display: table;
  font-weight: bold;
  text-align: center;
  width: 100%;
  position: relative;
  padding: 4%;
  font-family: 'Times New Roman', Times, serif;
}
.main-nav{
  font-family: var(--nav-font);
  font-size: 1.2em;
  margin-top: 0;
  border-radius: 10px;
  border-width: 4px;
  background-color: var(--nav-dropdown-background-color);
  z-index: 999;
  width: 12%;
  list-style: none;
  height: 100%;
  right: 0;
  top: 15%;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  nav{
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    left: 0;
    width: 100px;
    overflow: hidden;
    
  }
  .logo img{
    width: 50px;
    height: 50px;
  }
  nav ul li a{
    position: relative;
    color: rgb(255, 255, 255);
    display: table;
    text-align: center;
    width: 100%;
    list-style-type: none;
    height: 9%;
  }
  .icon{
    width: 28px;
    height: 28px;
    font-size: 17px;
    text-align: center;
    display: inline-block;
  }
  a:hover{
    background-color: var(--heading-color);
    border-radius: 20px;
    -webkit-transition: 0.7s;
    -o-transition: 0.7s;
    transition: 0.7s;
    color: var(--nav-hover-color);
  }
  ul li a{
    padding: 25px;
    display: inline-block;
    color: white;
    text-decoration: none;
  }
}
.main-nav ul {
  padding: 0; 
  margin: 0; 
  list-style-type: none; 
}

.main-nav ul li {
  list-style-type: none; 
}
@media (max-width: 768px) {
    nav{
        overflow: auto;
        overflow-x: auto;
    }
    .main-nav{
      width: 30%;
    }
    .main-nav::-webkit-scrollbar{
            border-radius: 10px;
            width: 10px;
            -webkit-box-shadow: inset 0 0 6px rgba(18, 6, 186, 0.463);
                    box-shadow: inset 0 0 6px rgba(18, 6, 186, 0.463);
    }
    .main-nav::-webkit-scrollbar-corner{
  
        border-radius: 10px;
        width: 10px;
        -webkit-box-shadow: inset 0 0 6px rgba(18, 6, 186, 0.463);
                box-shadow: inset 0 0 6px rgba(18, 6, 186, 0.463);
    }
    .main-nav::-webkit-scrollbar-thumb{
        border-radius: 10px;
        width: 10px;
        -webkit-box-shadow: inset 0 0 6px rgba(18, 6, 186, 0.463);
                box-shadow: inset 0 0 6px rgba(18, 6, 186, 0.463);
        background-color: #999999;
    }
  }

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  direction: rtl;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
/* h2, */
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  -webkit-animation: php-email-form-loading 1s linear infinite;
          animation: php-email-form-loading 1s linear infinite;
}

@-webkit-keyframes php-email-form-loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes php-email-form-loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
/* استایل اصلی هدر */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff; 
  background-color: #2B5784;
  padding: 10px 0;
  -webkit-transition: top 0.3s ease-in-out;
  -o-transition: top 0.3s ease-in-out;
  transition: top 0.3s ease-in-out; 
  z-index: 1000;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#header.hide {
  top: -100px; 
}

.header {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo img {
  width: 110px;
  max-height: 110px;
  margin-right: 2px;
}

/* منوی دسکتاپ */
@media (min-width: 1480px) {
  .navmenu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .navmenu ul li {
    position: relative;
    margin: 0 15px;
  }

  .navmenu ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 0;
    padding-right: 7px;
    display: block;
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    background-color: #10058c;
    min-width: 200px;
    -webkit-box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }

  .dropdown-menu li {
    padding: 10px;
  }

  .dropdown-menu .dropdown-menu {
    left: 100%;
    top: 0;
  }
}

/* منوی موبایل */
@media (min-width: 768px) and (max-width: 1479px) {
  .mobile-nav-toggle {
    display: block !important;
    font-size: 28px;
    cursor: pointer;
    color: white;
    z-index: 9999;
  }

  .navmenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: #2B5784;
    padding: 60px 20px 20px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    overflow-y: auto;
    z-index: 9998;
  }

  .navmenu.active {
    right: 0;
  }

  .navmenu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
    margin: 0;
  }

  .navmenu ul li {
    margin: 10px 0;
    width: 100%;
  }

  .navmenu ul li a {
    padding: 12px 0;
    padding-right: 7px;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .dropdown > a {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .dropdown-menu {
    display: none;
    padding-right: 15px;
    background-color: rgba(0,0,0,0.2);
    margin-top: 5px;
  }

  .dropdown-menu.active {
    display: block;
  }

  .dropdown-menu li {
    padding: 8px 0;
  }

  .dropdown-menu .dropdown-menu {
    padding-right: 15px;
  }

  .bi-chevron-down {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }

  .bi-chevron-down.rotate {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  /* دکمه بستن منو */
  .close-menu {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 24px;
    color: white;
    cursor: pointer;
  }
}
/* استایل های عمومی منو */
.navmenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* منوی دسکتاپ */
@media (min-width: 1200px) {
  .navmenu > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .dropdown {
    position: relative;
  }
  
  .dropdown-submenu {
    display: none;
    position: absolute;
    background: #10058c;
    min-width: 200px;
    z-index: 1000;
  }
  
  .dropdown:hover .dropdown-submenu {
    display: block;
  }
  
  .dropdown-submenu .dropdown-submenu {
    left: 100%;
    top: 0;
  }
}

/* منوی موبایل */
@media (max-width: 1199px) {
  .navmenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    /* background: #2B5784; */
    background: #171818;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    padding-top: 60px;
    overflow-y: auto;
    z-index: 9998;
  }
  
  .navmenu.active {
    right: 0;
  }
  
  .navmenu > ul > li {
    padding: 10px 15px;
    padding-bottom: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .dropdown-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .dropdown-submenu {
    display: none;
    padding-right: 15px;
  }
  
  .dropdown-submenu.active {
    display: block;
  }
  
  .dropdown-submenu li {
    padding: 8px 0;
  }
  
  .bi-chevron-down {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  
  .bi-chevron-down.rotated {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  
  .mobile-nav-toggle {
    position: relative;
    z-index: 9999;
  }
}
.dropdown-active{
  display: block;
}

/*--------------------------------------------------------------
# Customer Login Page
--------------------------------------------------------------*/
.loginpage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; font-family: var(--default-font);
}
.loginpage .main {
	width: 350px;
	height: 650px;
	background: #2B5784;
	overflow: hidden;
	border-radius: 10px;
	-webkit-box-shadow: 5px 20px 50px #000;
	        box-shadow: 5px 20px 50px #000;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 40px;
}
.loginpage #chk{
	display: none;
}
.loginpage  .signup{
	position: relative;
	width:100%;
	height: 100%;
}
.loginpage label{
	color: #fff;
	font-size: 2.3em;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 50px;
	font-weight: bold;
	cursor: pointer;
	-webkit-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
}
.loginpage input{
	width: 60%;
	height: 10px;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 20px auto;
	padding: 12px;
	border: none;
	outline: none;
	border-radius: 5px;
  text-align: center;
}
.loginpage input::-webkit-input-placeholder {
  text-align: center; 
}
.loginpage input::-moz-placeholder {
  text-align: center; 
}
.loginpage input:-ms-input-placeholder {
  text-align: center; 
}
.loginpage input::-ms-input-placeholder {
  text-align: center; 
}
.loginpage input::placeholder {
  text-align: center; 
} 
.loginpage button{
	width: 60%;
	height: 40px;
	margin: 10px auto;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	display: block;
	color: #fff;
	background: #2B5784;
	font-size: 1em;
	font-weight: bold;
	margin-top: 30px;
	outline: none;
	border: none;
	border-radius: 5px;
	-webkit-transition: .2s ease-in;
	-o-transition: .2s ease-in;
	transition: .2s ease-in;
	cursor: pointer;
}
.loginpage button:hover{
	background: var(--nav-dropdown-hover-color);
}
.loginpage .login{
	height: 560px;
	background: #eee;
	border-radius: 60% / 10%;
	-webkit-transform: translateY(-180px);
	    -ms-transform: translateY(-180px);
	        transform: translateY(-180px);
	-webkit-transition: .8s ease-in-out;
	-o-transition: .8s ease-in-out;
	transition: .8s ease-in-out;
}
.loginpage .login label{
	color: #2B5784;
	-webkit-transform: scale(.6);
	    -ms-transform: scale(.6);
	        transform: scale(.6);
}
.loginpage .login label:hover{
	color: var(--nav-hover-color);
}
.loginpage .signup label:hover{
	color: var(--nav-hover-color);
}

.loginpage #chk:checked ~ .login{
	-webkit-transform: translateY(-600px);
	    -ms-transform: translateY(-600px);
	        transform: translateY(-600px); 
}
.loginpage #chk:checked ~ .login label{
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);	
}
.loginpage #chk:checked ~ .signup label{
	-webkit-transform: scale(.6);
	    -ms-transform: scale(.6);
	        transform: scale(.6);
}
/*--------------------------------------------------------------
# Seller Login Page
--------------------------------------------------------------*/
.sellerloginpage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; font-family: var(--default-font);
}
.sellerloginpage .main {
	width: 350px;
	height: 650px;
	background: #2B5784;
	overflow: hidden;
	border-radius: 10px;
	-webkit-box-shadow: 5px 20px 50px #000;
	        box-shadow: 5px 20px 50px #000;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 40px;
}
.sellerloginpage #chk{
	display: none;
}
.sellerloginpage  .signup{
	position: relative;
	width:100%;
	height: 100%;
}
.sellerloginpage label{
	color: #fff;
	font-size: 2.3em;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 50px;
	font-weight: bold;
	cursor: pointer;
	-webkit-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
}
.sellerloginpage input{
	width: 60%;
	height: 10px;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 20px auto;
	padding: 12px;
	border: none;
	outline: none;
	border-radius: 5px;
  text-align: center;
}
.sellerloginpage input::-webkit-input-placeholder {
  text-align: center; 
}
.sellerloginpage input::-moz-placeholder {
  text-align: center; 
}
.sellerloginpage input:-ms-input-placeholder {
  text-align: center; 
}
.sellerloginpage input::-ms-input-placeholder {
  text-align: center; 
}
.sellerloginpage input::placeholder {
  text-align: center; 
}
.sellerloginpage button{
	width: 60%;
	height: 40px;
	margin: 10px auto;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	display: block;
	color: #fff;
	background: #2B5784;
	font-size: 1em;
	font-weight: bold;
	margin-top: 30px;
	outline: none;
	border: none;
	border-radius: 5px;
	-webkit-transition: .2s ease-in;
	-o-transition: .2s ease-in;
	transition: .2s ease-in;
	cursor: pointer;
}
.sellerloginpage button:hover{
	background: var(--nav-dropdown-hover-color);
}
.sellerloginpage .login{
	height: 560px;
	background: #eee;
	border-radius: 60% / 10%;
	-webkit-transform: translateY(-170px);
	    -ms-transform: translateY(-170px);
	        transform: translateY(-170px);
	-webkit-transition: .8s ease-in-out;
	-o-transition: .8s ease-in-out;
	transition: .8s ease-in-out;
}
.sellerloginpage .login label{
	color: #2B5784;
	-webkit-transform: scale(.6);
	    -ms-transform: scale(.6);
	        transform: scale(.6);
}
.sellerloginpage .login label:hover{
	color: var(--nav-hover-color);
}
.sellerloginpage .signup label:hover{
	color: var(--nav-hover-color);
}

.sellerloginpage #chk:checked ~ .login{
	-webkit-transform: translateY(-620px);
	    -ms-transform: translateY(-620px);
	        transform: translateY(-620px); 
}
.sellerloginpage #chk:checked ~ .login label{
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);	
}
.sellerloginpage #chk:checked ~ .signup label{
	-webkit-transform: scale(.6);
	    -ms-transform: scale(.6);
	        transform: scale(.6);
}
/*--------------------------------------------------------------
# Error's Modal 
--------------------------------------------------------------*/
.emodal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--background-color);
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: var(--nav-font);
  z-index: 1009;
}

.emodal-content {
  background: var(--background-color);
  padding: 20px;
  width: 300px;
  margin: 100px auto;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: red;
  font-size: 2.2em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.eclose-btn {
  float: right;
  font-size: 25px;
  cursor: pointer;
  background-color: #1acc8d;
  border-radius: 7px;
  width: 100%;
}
.eclose-btn:hover {
  background-color: red;
  color: white;
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--background-color);
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: var(--nav-font);
  z-index: 1009;
}

.modal-content {
  background: var(--background-color);
  padding: 20px;
  width: 300px;
  margin: 100px auto;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: red;
  font-size: 2.2em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.close-btn {
  float: right;
  font-size: 25px;
  cursor: pointer;
  background-color: #1acc8d;
  border-radius: 7px;
  width: 100%;
}
.close-btn:hover {
  background-color: red;
  color: white;
}
/*--------------------------------------------------------------
# success's Modal 
--------------------------------------------------------------*/
.smodal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--background-color);
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: var(--nav-font);
  z-index: 1000;
}

.smodal-content {
  background: var(--background-color);
  padding: 20px;
  width: 300px;
  margin: 100px auto;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: greenyellow;
  font-size: 2.2em;
}

.sclose-btn {
  float: right;
  font-size: 25px;
  cursor: pointer;
  background-color: #1acc8d;
  border-radius: 7px;
  z-index: 1000;
  width: 99%;
}
.sclose-btn:hover {
  background-color: red;
  color: white;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: color-mix(in srgb, var(--nav-color), transparent 20%);
    font-size: 1.5em;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    white-space: nowrap;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-color);
  }
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    /* background: #000000; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 130%;
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border-radius: 15px;
    z-index: 99;
    -webkit-box-shadow: 0px 0px 30px #386b9e;
            box-shadow: 0px 0px 30px #386b9e;
    text-align: center;
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
    margin-left: 0;
  }

  .navmenu .dropdown ul a {
    padding: 10px 15px;
    font-size: 1.4em;
    text-transform: none;
    color: var(--nav-dropdown-color);
    color: white;
    z-index: 10000;
    border-radius: 7px;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    background-color: rgba(17, 122, 151, 0.5);
    z-index: 1000;
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 105%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}
/* Mobile Navigation */

@media (max-width: 1199px) {
   .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 30px; 
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
    padding: 10px; 
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(33, 37, 41, 0.9); 
    display: -webkit-box; 
    display: -ms-flexbox; 
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; 
    overflow-y: auto;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    visibility: hidden; 
    opacity: 0; 
    float: right;
  }

  .navmenu.open {
    visibility: visible; 
    opacity: 1; 
    -webkit-transition: visibility 0.3s, opacity 0.3s ease-in-out; 
    -o-transition: visibility 0.3s, opacity 0.3s ease-in-out; 
    transition: visibility 0.3s, opacity 0.3s ease-in-out; 
    display: -webkit-box; 
    display: -ms-flexbox; 
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .navmenu li {
    display: block;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    position: relative; 
  }

  .navmenu a,
  .navmenu a:focus {
    /* color: var(--nav-dropdown-color); */
    color: white;
    padding: 15px 20px; 
    font-family: var(--nav-font);
    font-size: 1.2em;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    white-space: nowrap;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 50%;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    display: none; 
    -webkit-box-orient: vertical; 
    -webkit-box-direction: normal; 
        -ms-flex-direction: column; 
            flex-direction: column;
    background-color: rgba(33, 37, 41, 0.9);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 100;
    margin-top: 10px;
  }

  .navmenu .dropdown-active ul {
    display: block; 
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    visibility: visible;
    opacity: 1;
  }

  .mobile-nav-active .navmenu > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; 
  } 
}
/* Mobile responsive styles */
@media (max-width: 768px) {
  #home-nav-btn{
    margin-top: 65px;
  }
  .header {
    padding: 10px 0;
  }
  
  .logo img {
    max-height: 40px;
  }
  
  .main-search-input-box {
    margin: 0 20px;
  }
  /*
  .main-search-input-box.open {
     max-width: 280px; 
  }
  */
  .main-filter-navbar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    right: 0;
    top: 70px;
    /* background: #fff; */
    padding: 10px;
    z-index: 1000;
  }
  
  .main-filter-navbar .styled-select {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }
  
  .store-product-detail {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .footer-top .col-lg-4, 
  .footer-top .col-lg-2, 
  .footer-top .col-md-6, 
  .footer-top .col-md-3, 
  .footer-top .col-md-12 {
    margin-bottom: 30px;
  }
  
  .footer-newsletter img {
    width: 100%;
    height: auto;
  }
  
  .fixed-chat {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

}

.quantity-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 120px; 
  height: 40px;
  margin: 0 auto;  
  margin-top: 12px;  
}

.quantity-field .value-button{ 
  border: 1px solid #ddd;
  margin: 0px;
  width: 40px;
  height: 100%;   
  padding: 0;
  background: #eee; 
  outline: none;
  cursor: pointer;
}

.quantity-field .value-button:hover {
  background: rgb(230, 230, 230);
}

.quantity-field .value-button:active{
  background: rgb(210, 210, 210);
}

.quantity-field .decrease-button {
  margin-right: -4px;
  /* border-radius: 8px 0 0 8px; */
  border-radius: 40%;
}

.quantity-field .increase-button {
  margin-left: -4px;
  /* border-radius: 0 8px 8px 0; */
  border-radius: 40%;
}
  
.quantity-field .number{
  display: inline-block;
  text-align: center;
  border: none;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin: 0px;
  width: 40px;
  height: 100%;
  line-height: 40px;
  font-size: 11pt;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; 
  background: white;
  font-family: calibri;
}

.quantity-field .number::-moz-selection{
  background: none;
}

.quantity-field .number::selection{
  background: none;
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
#contact-title{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; color: var(--heading-color); font-size: 18px; font-weight: bold; text-align: center;
}

.contact .info-wrap {
  background-color: var(--surface-color);
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-top: 3px solid var(--accent-color);
  border-bottom: 3px solid var(--accent-color);
  padding: 30px;
  height: 100%;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  border-top: 3px solid var(--accent-color);
  border-bottom: 3px solid var(--accent-color);
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::-webkit-input-placeholder, .contact .php-email-form input[type=email]::-webkit-input-placeholder, .contact .php-email-form textarea::-webkit-input-placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form input[type=text]::-moz-placeholder, .contact .php-email-form input[type=email]::-moz-placeholder, .contact .php-email-form textarea::-moz-placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form input[type=text]:-ms-input-placeholder, .contact .php-email-form input[type=email]:-ms-input-placeholder, .contact .php-email-form textarea:-ms-input-placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form input[type=text]::-ms-input-placeholder, .contact .php-email-form input[type=email]::-ms-input-placeholder, .contact .php-email-form textarea::-ms-input-placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer a:hover {
  text-decoration: none;
}
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  text-align: right;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: right;
}
.pt-3, .py-3 {
  text-align: right;
}
.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--background-color);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}

.pestle-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.pestle {
  width: 15px;
  height: 70px;
  background: var(--accent-color);
  border-radius: 8px;
  transform-origin: bottom center;
  animation: pounding 0.8s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

@keyframes pounding {
  0% {
    transform: translateY(0) rotate(-10deg);
  }
  50% {
    transform: translateY(30px) rotate(0deg);
  }
  100% {
    transform: translateY(0) rotate(10deg);
  }
}

.mortar-pestle {
  position: relative;
  width: 120px;
  height: 120px;
}

.mortar {
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80px;
  height: 50px;
  background: #2B5784;
  z-index: 1000;
  border-radius: 0 0 40px 40px;
  -webkit-animation: shake 0.8s cubic-bezier(0.5, 0, 0.5, 1) infinite;
          animation: shake 0.8s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
  50% {
    -webkit-transform: translateX(-50%) translateY(5px);
            transform: translateX(-50%) translateY(5px);
  }
}
@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
  50% {
    -webkit-transform: translateX(-50%) translateY(5px);
            transform: translateX(-50%) translateY(5px);
  }
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 0.5;
}
.scroll-top.active:hover{
  opacity: 1;
}
/*--------------------------------------------------------------
# Fixed Chatbot Button
--------------------------------------------------------------*/
.fixed-chat {
  position: fixed;
  bottom: 56px;
  right: 15px;
  background-color: var(--accent-color);
  color: white;
  /* padding: 10px 20px; */
  font-size: 20px;
  text-decoration: none;
  opacity: 0.6;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  text-align: center;
  padding-top: 5px;
  z-index: 999;
}

.fixed-chat:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  opacity: 1;
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    -webkit-transition-delay: 0 !important;
         -o-transition-delay: 0 !important;
            transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 160px 0 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 88%);
  padding: 20px 0;
}

.page-title nav ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title div {
  color: var(--heading-color);
  margin: 0;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 120px 0 120px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  margin: 0 0 20px 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 56px;
  /* color: color-mix(in srgb, var(--heading-color), transparent 30%); */
  color: white;
  font-family: "2  Kamran";
}

.hero h1 span {
  color: var(--accent-color);
  /* color: var(--heading-color); */
  /* border-bottom: 4px solid var(--accent-color); */
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 22px;
  font-weight: 400;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  -webkit-box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

.hero .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.hero .wave1 use {
  -webkit-animation: move-forever1 10s linear infinite;
          animation: move-forever1 10s linear infinite;
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.6;
}

.hero .wave2 use {
  -webkit-animation: move-forever2 8s linear infinite;
          animation: move-forever2 8s linear infinite;
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.4;
}

.hero .wave3 use {
  -webkit-animation: move-forever3 6s linear infinite;
          animation: move-forever3 6s linear infinite;
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
  fill: var(--default-color);
}

@-webkit-keyframes move-forever1 {
  0% {
    -webkit-transform: translate(85px, 0%);
            transform: translate(85px, 0%);
  }

  100% {
    -webkit-transform: translate(-90px, 0%);
            transform: translate(-90px, 0%);
  }
}

@keyframes move-forever1 {
  0% {
    -webkit-transform: translate(85px, 0%);
            transform: translate(85px, 0%);
  }

  100% {
    -webkit-transform: translate(-90px, 0%);
            transform: translate(-90px, 0%);
  }
}

@-webkit-keyframes move-forever2 {
  0% {
    -webkit-transform: translate(-90px, 0%);
            transform: translate(-90px, 0%);
  }

  100% {
    -webkit-transform: translate(85px, 0%);
            transform: translate(85px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    -webkit-transform: translate(-90px, 0%);
            transform: translate(-90px, 0%);
  }

  100% {
    -webkit-transform: translate(85px, 0%);
            transform: translate(85px, 0%);
  }
}

@-webkit-keyframes move-forever3 {
  0% {
    -webkit-transform: translate(-90px, 0%);
            transform: translate(-90px, 0%);
  }

  100% {
    -webkit-transform: translate(85px, 0%);
            transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    -webkit-transform: translate(-90px, 0%);
            transform: translate(-90px, 0%);
  }

  100% {
    -webkit-transform: translate(85px, 0%);
            transform: translate(85px, 0%);
  }
}

@-webkit-keyframes up-down {
  0% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.custom-file-upload {
  background-color: white; /* Green background */
  color: black; /* White text */
  /* padding: 10px 20px;  */
  z-index: 1009;
  font-family: var(--nav-font);
  border-radius: 5px; /* Rounded corners */
  cursor: pointer; /* Pointer cursor on hover */
  display: inline-block; 
}

.custom-file-upload:hover {
  background-color: #45a049; /* Darker green on hover */
}
.verification-video-input{
  min-height: -webkit-fit-content;
  min-height: -moz-fit-content;
  min-height: fit-content;
}
.about {
  padding-top: 100px;
}

.about .content h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  padding: 10px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  border-radius: 7px;
  display: inline-block;
}

.about .content h2 {
  font-weight: 700;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .icon-box {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 25px;
  -webkit-box-shadow: 0 8px 28px rgba(10, 3, 139, 0.1);
          box-shadow: 0 8px 28px rgba(10, 3, 139, 0.1);
  border-radius: 7px;
}
.about .icon-box:hover {
  -webkit-box-shadow: 0 8px 28px rgba(10, 3, 139, 0.5);
          box-shadow: 0 8px 28px rgba(10, 3, 139, 0.5);
}


.about .icon-box i {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 24px;
  margin-top: 20px;
  font-size: 32px;
  line-height: 0;
  -webkit-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.about .icon-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  font-family: var(--kamran-font);
}

.about .icon-box p {
  margin-bottom: 0;
  font-family: var(--nazanin-font);
}

.about .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}

@media (max-width: 768px) {

  .about .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
}



/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

.testimonials:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 250px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  -webkit-transform: scale(-1, -1);
      -ms-transform: scale(-1, -1);
          transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  -webkit-box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 17px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 0fr;
  grid-template-rows: 0fr;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 22px;
  line-height: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# BMI resault page
--------------------------------------------------------------*/
.bimres-main{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
  width: 100%;
  background-color: white;
  margin: 0;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(15%, #2B5784), color-stop(#1acc8d) , color-stop(80%, #2B5784));
  background: -o-linear-gradient(bottom, #2B5784 15%, #1acc8d , #2B5784 80%);
  background: linear-gradient(0deg, #2B5784 15%, #1acc8d , #2B5784 80%);
  font-family: var(--nav-font);
  color: var(--nav-dropdown-hover-color);
  .bmi-p{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1.5em;
    font-weight: 600;
  }
  .profile-container {
    position: relative;
    width: 400px;
    height: 400px;

  }
  .outer-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    /* background: var(--conic-gradient); */
    -webkit-animation: rotate 4s linear infinite;
            animation: rotate 4s linear infinite;
    z-index: 1;
  }
  
  .circle-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    /* background: var(--conic-gradient); */
    -webkit-filter: blur(20px);
            filter: blur(20px);
    opacity: 0.5;
    top: -10%;
    left: -10%;
    z-index: 2;
    -webkit-animation: pulse 4s ease-in-out infinite;
            animation: pulse 4s ease-in-out infinite;
  }
  
  .inner-circle {
    position: absolute;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    /* background: #2B57847c; */
    top: 5%;
    left: 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 3;
    font-family: var(--nav-font);
    color: #10058c;
    text-shadow: 1px 1px #1acc8d;
    font-weight: 800;
  }
  
  @-webkit-keyframes rotate {
    from {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
    }
    to {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg);
    }
  }
  
  @keyframes rotate {
    from {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
    }
    to {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg);
    }
  }
  
  @-webkit-keyframes pulse {
    0%, 100% {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 0.5;
    }
    50% {
      -webkit-transform: scale(1.1);
              transform: scale(1.1);
      opacity: 0.8;
    }
  }
  
  @keyframes pulse {
    0%, 100% {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 0.5;
    }
    50% {
      -webkit-transform: scale(1.1);
              transform: scale(1.1);
      opacity: 0.8;
    }
  }
}
/*--------------------------------------------------------------
# BMI page
--------------------------------------------------------------*/
 .bmi-root {
    padding-top: 8%;
    padding-bottom: 8%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 100vh;
    font-family: var(--nav-font);
    background: -webkit-gradient(linear, left bottom, left top, color-stop(15%, #2B5784), color-stop(#1acc8d) , color-stop(80%, #2B5784));
    background: -o-linear-gradient(bottom, #2B5784 15%, #1acc8d , #2B5784 80%);
    background: linear-gradient(0deg, #2B5784 15%, #1acc8d , #2B5784 80%);
    outline: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    place-items: center;
    .container {
      /* max-width: 800px; */
      background: #fff;
      width: 35%;
      padding: 25px 40px 10px 40px;
      -webkit-box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.842);
              box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.842);
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      font-family: var(--nav-font);
      border-radius: 7px;
    }

    .container:hover{
      -webkit-box-shadow: 0px 0px 30px #2B5784;
              box-shadow: 0px 0px 30px #2B5784;
    }

    .container .text {
      text-align: center;
      font-size: 2.5rem;
      font-weight: 600;
      background: -webkit-linear-gradient(right,#2B5784, #1acc8d, #2B5784);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      width: 100%;
      font-family: var(--nav-font);
      white-space: nowrap;
    }

    .container form {
      padding: 30px 0 0 0;
    }

    .container form .form-row {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin: 32px 0;
    }

    form .form-row .input-data {
      width: 100%;
      height: 40px;
      margin: 0 20px;
      position: relative;
      outline: none;
    }

    form .form-row .textarea {
      height: 70px;
    }

    .input-data input,
    .textarea textarea {
      display: block;
      width: 100%;
      height: 100%;
      border: none;
      font-size: 1.5rem;
      border-bottom: 2px solid rgba(0,0,0, 0.12);
      outline: none;
    }

    .input-data input:focus ~ label,
    .textarea textarea:focus ~ label,
    .input-data input:valid ~ label,
    .textarea textarea:valid ~ label {
      -webkit-transform: translateY(-20px);
          -ms-transform: translateY(-20px);
              transform: translateY(-20px);
      font-size:  1.5rem;
      color: #1acc8d;
    }

    .textarea textarea {
      resize: none;
      padding-top: 10px;
    }

    .input-data label {
      position: absolute;
      pointer-events: none;
      bottom: 10px;
      font-size:  1.5rem;
      -webkit-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease;
    }

    .textarea label {
      width: 100%;
      bottom: 40px;
      background: #fff;
    }

    .input-data .underline {
      position: absolute;
      bottom: 0;
      height: 2px;
      width: 100%;
    }

    .input-data .underline:before {
      position: absolute;
      content: "";
      height: 2px;
      width: 100%;
      background: #1acc8d;
      -webkit-transform: scaleX(0);
          -ms-transform: scaleX(0);
              transform: scaleX(0);
      -webkit-transform-origin: center;
          -ms-transform-origin: center;
              transform-origin: center;
      -webkit-transition: -webkit-transform 0.3s ease;
      transition: -webkit-transform 0.3s ease;
      -o-transition: transform 0.3s ease;
      transition: transform 0.3s ease;
      transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    }

    .input-data input:focus ~ .underline:before,
    .input-data input:valid ~ .underline:before,
    .textarea textarea:focus ~ .underline:before,
    .textarea textarea:valid ~ .underline:before {
      -webkit-transform: scale(1);
          -ms-transform: scale(1);
              transform: scale(1);
    }

    .submit-btn .input-data {
      width: 25% !important;
      margin: 0 auto;
      overflow: hidden;
    }

    .form-row.submit-btn {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin: 32px 0;
      font-family: var(--nav-font);
    }

    .submit-btn .input-data .inner {
      height: 100%;
      width: 300%;
      position: absolute;
      left: -100%;
      background: -webkit-linear-gradient(right, #1acc8d, #2B5784, #56d8e4, #1acc8d);
      -webkit-transition: all 0.4s;
      -o-transition: all 0.4s;
      transition: all 0.4s;
      overflow: hidden;
    }

    .submit-btn .input-data:hover .inner {
      left: 0;
    }

    .submit-btn .input-data input {
      background: none;
      border: none;
      color: #fff;
      font-size:  1.5rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
      cursor: pointer;
      position: relative;
      z-index: 2;
      border-radius: 10px;
    }

    @media (max-width: 700px) {
      .container .text {
          font-size: 30px;
      }
      .container form {
          padding: 10px 0 0 0;
      }
      .container form .form-row {
          display: block;
      }
      form .form-row .input-data {
          margin: 35px 0 !important;
      }
      .submit-btn .input-data {
          width: 40% !important;
      }
      .submit-btn .input-data input {
        font-size:  1.5rem;
      }
      .container .text {
        font-size: 2rem;
      }
      .container {
        width: 85%;
      }
      .submit-btn .input-data {
        width: 40% !important;
        margin: 0 auto;
        overflow: hidden;
      }
    }
  }    

/*--------------------------------------------------------------
# Post's Section
--------------------------------------------------------------*/
/* Media slider */
#media-modal{
  display: none;
}
.image-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  width: clamp(360px, 96vw, 830px);
  aspect-ratio: 16 / 9;
  min-height: 300px;
  overflow: hidden;
  border-radius: 8px;
  container-type: inline-size;
  contain: content;
  background-color: #0006;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 2px, rgba(0, 0, 0, 0.3) 0px 2px 4px,
      rgba(0, 0, 0, 0.25) 0px 4px 8px, rgba(0, 0, 0, 0.2) 0px 8px 16px,
      rgba(0, 0, 0, 0.15) 0px 16px 32px;
          box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 2px, rgba(0, 0, 0, 0.3) 0px 2px 4px,
      rgba(0, 0, 0, 0.25) 0px 4px 8px, rgba(0, 0, 0, 0.2) 0px 8px 16px,
      rgba(0, 0, 0, 0.15) 0px 16px 32px;
  margin: auto;    
}

.slider__content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.slider-control--button {
  border: 0;
  background: 0;
  outline: 0;
  cursor: pointer;
  place-content: center;
  padding-inline: 3vw;
  z-index: 1;
  display: -ms-grid;
  display: grid;
}

.icon {
  height: 2rem;
  width: 2rem;
  fill: var(--icon-default);
  border-radius: 50%;
}

.slider-control--button:where(:hover) {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#0000),
    color-stop(20%, #0002),
    color-stop(80%, #0004),
    to(#0006)
);
  background-image: -o-linear-gradient(
      var(--position),
      #0000 0%,
      #0002,
      80%,
      #0006 100%
  );
  background-image: linear-gradient(
      to var(--position),
      #0000 0%,
      #0002,
      80%,
      #0006 100%
  );
  .icon {
      fill: var(--icon-accent);
      background: #0001;
  }
}

.slider-control--button:active {
  outline: 0.2em solid hsl(204 100 53);
  outline-offset: -0.5em;
}

.prev-button {
  --position: left;
}
.next-button {
  --position: right;
}

.image-display {
  position: fixed;
  inset: 0;
}

.slider-navigation {
  z-index: 10;
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  -ms-grid-columns: 1fr 1.25rem 1fr 1.25rem 1fr 1.25rem 1fr 1.25rem 1fr 1.25rem 1fr;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-columns: 100%;
  gap: 1.25rem;
  padding: 1rem;
  place-content: center;
  background-color: var(--navigation-color);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

.nav-button {
  display: -ms-grid;
  display: grid;
  width: 100%;
  height: 100%;
  border-radius: 0.5em;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 0;
  aspect-ratio: 16 / 9;
  -webkit-transition: scale 266ms ease, -webkit-filter 150ms linear;
  transition: scale 266ms ease, -webkit-filter 150ms linear;
  -o-transition: filter 150ms linear, scale 266ms ease;
  transition: filter 150ms linear, scale 266ms ease;
  transition: filter 150ms linear, scale 266ms ease, -webkit-filter 150ms linear;
}

.thumbnail {
  display: block;
  max-width: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.nav-button[aria-selected="true"] {
  scale: 1.1;
}

.nav-button[aria-selected="true"],
.nav-button:focus-visible {
  outline: 0.2em solid var(--active-color);
  outline-offset: 0.2em;
}

.nav-button[aria-selected="false"] {
  -webkit-filter: opacity(0.7);
          filter: opacity(0.7);
}

.nav-button[aria-selected="false"]:where(:hover, :focus-visible) {
  -webkit-filter: opacity(1);
          filter: opacity(1);
}

@container (max-width: 660px) {
  .nav-button:not(:has(img)) {
      background-color: rgb(241, 235, 232);
  }

  .slider-navigation {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      padding-block: 1.5em;
  }

  .nav-button {
      inline-size: 0.625rem;
      aspect-ratio: 1;
      border-radius: 50%;
  }

  .nav-button > .thumbnail {
      display: none;
  }

  .nav-button[aria-selected="true"] {
      background-color: black;
      scale: 1.5;
  }
}

/* /Media slider */

/* Comments Section */
.button-8525{
  border: none;
  color: var(--heading-color);
  background-color: transparent;
  font-family: var(--nav-font);
  font-size: 1.5em;
}
.button-8525:hover{
  color: var(--heading-font);
  font-size: 1.6em;
  border-bottom: 2px solid #059652;
}
.reply-form{
  display: none;
}
.comment-reply-form{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  margin-top: 5px;
}
.comment-form{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  margin-top: 10px;
}
.add-comment-btn{
  width: 10%;
  font-family: var(--nav-font);
  font-size: 1.1em;
  border: none;
  
  right: 0;
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0px 5px rgba(0, 0, 0, 0.30);
          box-shadow: inset 0 0px 5px rgba(0, 0, 0, 0.30);
}
.add-comment-btn:hover{
  color: var(--accent-color);
  font-size: 1.5em;
}
.aa0 {
  padding: 0 24px;
  margin: 28px auto 32px;
  margin-top: 0;
  top: 0;
  max-width: 700px;
  display: none;
  textarea {
    /* margin-top: 10px; */
    margin-left: 2px;
    width: 90%;
    height: 40px;
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0.07);
    border-color: -moz-use-text-color #FFFFFF #FFFFFF -moz-use-text-color;
    -o-border-image: none;
       border-image: none;
    border-radius: 6px 6px 6px 6px;
    border-style: none solid solid none;
    border-width: medium 1px 1px medium;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12) inset;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12) inset;
    color: #555555;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 1em;
    line-height: 1.4em;
    padding: 5px 8px;
    -webkit-transition: background-color 0.2s ease 0s;
    -o-transition: background-color 0.2s ease 0s;
    transition: background-color 0.2s ease 0s;
  }
  
  
  textarea:focus {
      background: none repeat scroll 0 0 #FFFFFF;
      outline-width: 0;
  }
}

.aa0 .ah2 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto
}

.aa0 .ah2 .ah1 {
  line-height: 1;
  font-family: opensans, helvetica, arial, sans-serif;
  width: 100%;
  color: #111;
  cursor: auto;
  font-size: 24px;
  letter-spacing: -.5px;
  padding: 4px 0 4px 0;
  font-weight: 700
}

.aa0 .ah2 .ah1:last-of-type {
  font-size: medium;
  text-align: center
}

.aa0 .ah2 .ah0 {
  min-width: 250px;
  border: 1px solid #ccc;
  border-radius: 10.5px;
  padding: 16px 0 12px 0
}

.af9 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 16px;
  gap: 2px;
  margin: 0;
  padding: 0 16px;
  color: #333;
  font-family: "Segoe UI Historic", "Segoe UI", Helvetica, Arial, sans-serif
}

.ag5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  position: relative
}

.af9 > .af7 > :not(.ag6,.ag8,.ag9):nth-child(n+2){
  margin-left: 44px
}

.af7 > :not(.ag6,.ag8,.ag9):nth-child(n+2){
  margin-left: 36px;
  padding-left: 4px
}


.af7 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
  position: relative
}

.af7 .ag5 img{
  cursor: pointer;
  border-radius: 50%;
  margin-top: 4px;
  position: relative;
  -webkit-box-shadow: 0 0 0 3px #fff;
          box-shadow: 0 0 0 3px #fff;
  z-index: 10
}

.af9 > .af7 :nth-child(1) img{
  height: 36px;
  width: 36px
}

.af9 > .af7 :nth-child(n+2) img{
  height: 28px;
  width: 28px
}


.ac2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 6
}

.ac2 .ac5 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 12px;
  background: #22ab8e54;
  border-radius: 18px;
  text-align: start;
  margin-right: 10px;
}

#reply-box {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 12px;
  background: #88a8a254;
  border-radius: 18px;
  margin-right: 10px;
  text-align: start;
}

.ac2 .ac4 {
  line-height: 16px;
  font-size: 13px;
  margin: 0;
  font-weight: 600;
  cursor: pointer;
  color: #080809
}   

.ac2 .ac1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 4px 0 0 12px
}

.ac2 .ac1 u {
  font-size: 12px;
  text-decoration: none;
  color: #65676b
}

.ac2 .ac1 u:hover {
  text-decoration: underline;
  cursor: pointer
}            

.ac2 .ac1 :nth-child(2){
  font-weight: 700
}  

.ac2 .ac1 .ac0 {
  position: relative;
  top: -5px
}

.ac2 .ac1 .ac0>span {
  display: inline-block;
  position: relative;
  width: 18px;
  height: 18px;
  overflow: hidden;
  background-color: #fff;
  border-radius: 50%;
  background-repeat: no-repeat;
  -webkit-box-shadow: 0 0 0 2px #fff;
          box-shadow: 0 0 0 2px #fff;
  top: 4px
}

.ac2 .ac1 .ac0 :nth-child(n+2) {
  z-index: 1001
}

.ac2 .ac1 .ac0 :nth-child(n+3) {
  z-index: 1000;
  left: -6px
}

.ac2 .ac1 .ac0 :nth-child(n+4) {
  z-index: 999;
  left: -12px
}

.ac2 .ac3 {
  margin: 0;
  line-height: 21.3328px;
  font-size: 15px
}

.ac1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column;
}

.ag6{
  position: absolute;
  background-color: #F0F2F5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 2px;
  top: 6px;
  left: 16px;
  z-index: 3
}
.ag7{
  position: relative;
  z-index: 6;
  color: #65686c;
  font-size: 15px;
  line-height: 20px;
  display: block;
  font-weight: 600;
  background-color: #fff;
  -webkit-box-shadow: -4px 0 0 0 #fff;
          box-shadow: -4px 0 0 0 #fff;
  margin-bottom: 6px;
  text-decoration: none;
  cursor: pointer
}
.ag9{
  position: absolute;
  height: 32px;
  width: 48px;
  border: 2px solid #F0F2F5;
  border-radius: 10.5px;
  left:-28px;
  top:-16px;
  z-index:1
}
.af7 .af7 .af7 .ag9,
.af7 .af7 .ag5 .ag9{
  left: -24px
}
.ag5 > .ag7 ~ .ag9 {
  top: -24px
}         
.af7{
  margin-top: 5px;
}   
.ag8{
  position: absolute;
  height: 48px;
  width: 64px;
  background-color: #fff;
  border-radius: 10.5px;
  left: -26px;
  top: -31px;
  z-index: 2
}
.af7 .af7 .af7 .ag8,
.af7 .af7 .ag5 .ag8{
  left: -22px
}
.ag5 > .ag7 ~ .ag8 {
  top: -39px
}
.ac2 .ac1 .ac0 .ab3 {
  background-image: url("data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M16.0001 7.9996c0 4.418-3.5815 7.9996-7.9995 7.9996S.001 12.4176.001 7.9996 3.5825 0 8.0006 0C12.4186 0 16 3.5815 16 7.9996Z' fill='url(%23paint0_linear_15251_63610)'/%3E%3Cpath d='M16.0001 7.9996c0 4.418-3.5815 7.9996-7.9995 7.9996S.001 12.4176.001 7.9996 3.5825 0 8.0006 0C12.4186 0 16 3.5815 16 7.9996Z' fill='url(%23paint1_radial_15251_63610)'/%3E%3Cpath d='M16.0001 7.9996c0 4.418-3.5815 7.9996-7.9995 7.9996S.001 12.4176.001 7.9996 3.5825 0 8.0006 0C12.4186 0 16 3.5815 16 7.9996Z' fill='url(%23paint2_radial_15251_63610)' fill-opacity='.5'/%3E%3Cpath d='M7.3014 3.8662a.6974.6974 0 0 1 .6974-.6977c.6742 0 1.2207.5465 1.2207 1.2206v1.7464a.101.101 0 0 0 .101.101h1.7953c.992 0 1.7232.9273 1.4917 1.892l-.4572 1.9047a2.301 2.301 0 0 1-2.2374 1.764H6.9185a.5752.5752 0 0 1-.5752-.5752V7.7384c0-.4168.097-.8278.2834-1.2005l.2856-.5712a3.6878 3.6878 0 0 0 .3893-1.6509l-.0002-.4496ZM4.367 7a.767.767 0 0 0-.7669.767v3.2598a.767.767 0 0 0 .767.767h.767a.3835.3835 0 0 0 .3835-.3835V7.3835A.3835.3835 0 0 0 5.134 7h-.767Z' fill='%23fff'/%3E%3Cdefs%3E%3CradialGradient id='paint1_radial_15251_63610' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='rotate(90 .0005 8) scale(7.99958)'%3E%3Cstop offset='.5618' stop-color='%230866FF' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%230866FF' stop-opacity='.1'/%3E%3C/radialGradient%3E%3CradialGradient id='paint2_radial_15251_63610' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='rotate(45 -4.5257 10.9237) scale(10.1818)'%3E%3Cstop offset='.3143' stop-color='%2302ADFC'/%3E%3Cstop offset='1' stop-color='%2302ADFC' stop-opacity='0'/%3E%3C/radialGradient%3E%3ClinearGradient id='paint0_linear_15251_63610' x1='2.3989' y1='2.3999' x2='13.5983' y2='13.5993' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2302ADFC'/%3E%3Cstop offset='.5' stop-color='%230866FF'/%3E%3Cstop offset='1' stop-color='%232B7EFF'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E")
}

.ac2 .ac1 .ac0 .ab2 {
  background-image: url("data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cg clip-path='url(%23clip0_15251_63610)'%3E%3Cpath d='M15.9963 8c0 4.4179-3.5811 7.9993-7.9986 7.9993-4.4176 0-7.9987-3.5814-7.9987-7.9992 0-4.4179 3.5811-7.9992 7.9987-7.9992 4.4175 0 7.9986 3.5813 7.9986 7.9992Z' fill='url(%23paint0_linear_15251_63610)'/%3E%3Cpath d='M15.9973 7.9992c0 4.4178-3.5811 7.9992-7.9987 7.9992C3.5811 15.9984 0 12.417 0 7.9992S3.5811 0 7.9986 0c4.4176 0 7.9987 3.5814 7.9987 7.9992Z' fill='url(%23paint1_radial_15251_63610)'/%3E%3Cpath d='M7.9996 5.9081c-.3528-.8845-1.1936-1.507-2.1748-1.507-1.4323 0-2.4254 1.328-2.4254 2.6797 0 2.2718 2.3938 4.0094 4.0816 5.1589.3168.2157.7205.2157 1.0373 0 1.6878-1.1495 4.0815-2.8871 4.0815-5.159 0-1.3517-.993-2.6796-2.4254-2.6796-.9811 0-1.822.6225-2.1748 1.507Z' fill='%23fff'/%3E%3C/g%3E%3Cdefs%3E%3CradialGradient id='paint1_radial_15251_63610' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='matrix(0 7.9992 -7.99863 0 7.9986 7.9992)'%3E%3Cstop offset='.5637' stop-color='%23E11731' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23E11731' stop-opacity='.1'/%3E%3C/radialGradient%3E%3ClinearGradient id='paint0_linear_15251_63610' x1='2.3986' y1='2.4007' x2='13.5975' y2='13.5993' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23FF74AE'/%3E%3Cstop offset='.5001' stop-color='%23FA2E3E'/%3E%3Cstop offset='1' stop-color='%23FF5758'/%3E%3C/linearGradient%3E%3CclipPath id='clip0_15251_63610'%3E%3Cpath fill='%23fff' d='M-.001.0009h15.9992v15.9984H-.001z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E")
}

.ac2 .ac1 .ac0 .ab1 {
  background-image: url("data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cg clip-path='url(%23clip0_15251_63610)'%3E%3Cpath d='M15.9953 7.9996c0 4.418-3.5816 7.9996-7.9996 7.9996S-.004 12.4176-.004 7.9996 3.5776 0 7.9957 0c4.418 0 7.9996 3.5815 7.9996 7.9996Z' fill='url(%23paint0_linear_15251_63610)'/%3E%3Cpath d='M15.9973 7.9992c0 4.4178-3.5811 7.9992-7.9987 7.9992C3.5811 15.9984 0 12.417 0 7.9992S3.5811 0 7.9986 0c4.4176 0 7.9987 3.5814 7.9987 7.9992Z' fill='url(%23paint1_radial_15251_63610)'/%3E%3Cpath d='M15.9953 7.9996c0 4.418-3.5816 7.9996-7.9996 7.9996S-.004 12.4176-.004 7.9996 3.5776 0 7.9957 0c4.418 0 7.9996 3.5815 7.9996 7.9996Z' fill='url(%23paint2_radial_15251_63610)' fill-opacity='.8'/%3E%3Cpath d='M12.5278 8.1957c.4057.1104.6772.4854.623.9024-.3379 2.6001-2.5167 4.9012-5.1542 4.9012s-4.8163-2.3011-5.1542-4.9012c-.0542-.417.2173-.792.623-.9024.8708-.237 2.5215-.596 4.5312-.596 2.0098 0 3.6605.359 4.5312.596Z' fill='%234B280E'/%3E%3Cpath d='M11.5809 12.3764c-.9328.9843-2.1948 1.6228-3.5841 1.6228-1.3892 0-2.6512-.6383-3.5839-1.6225a1.5425 1.5425 0 0 0-.016-.0174c.4475-1.0137 2.2-1.3599 3.5999-1.3599 1.4 0 3.1514.3468 3.5998 1.3599l-.0157.0171Z' fill='url(%23paint3_linear_15251_63610)'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M13.3049 5.8793c.1614-1.1485-.6387-2.2103-1.7872-2.3717l-.0979-.0138c-1.1484-.1614-2.2103.6388-2.3717 1.7872l-.0163.1164a.5.5 0 0 0 .9902.1392l.0163-.1164c.0846-.6016.6408-1.0207 1.2424-.9362l.0978.0138c.6016.0845 1.0207.6407.9362 1.2423l-.0164.1164a.5.5 0 0 0 .9903.1392l.0163-.1164ZM2.6902 5.8793c-.1614-1.1485.6387-2.2103 1.7872-2.3717l.0979-.0138c1.1484-.1614 2.2103.6388 2.3717 1.7872l.0164.1164a.5.5 0 1 1-.9903.1392l-.0163-.1164c-.0846-.6016-.6408-1.0207-1.2423-.9362l-.098.0138c-.6015.0845-1.0206.6407-.936 1.2423l.0163.1164a.5.5 0 0 1-.9902.1392l-.0164-.1164Z' fill='%231C1C1D'/%3E%3C/g%3E%3Cdefs%3E%3CradialGradient id='paint1_radial_15251_63610' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='matrix(0 7.9992 -7.99863 0 7.9986 7.9992)'%3E%3Cstop offset='.5637' stop-color='%23FF5758' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23FF5758' stop-opacity='.1'/%3E%3C/radialGradient%3E%3CradialGradient id='paint2_radial_15251_63610' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='rotate(45 -4.5272 10.9202) scale(10.1818)'%3E%3Cstop stop-color='%23FFF287'/%3E%3Cstop offset='1' stop-color='%23FFF287' stop-opacity='0'/%3E%3C/radialGradient%3E%3ClinearGradient id='paint0_linear_15251_63610' x1='2.396' y1='2.3999' x2='13.5954' y2='13.5993' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23FFF287'/%3E%3Cstop offset='1' stop-color='%23F68628'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint3_linear_15251_63610' x1='5.1979' y1='10.7996' x2='5.245' y2='14.2452' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23FF60A4'/%3E%3Cstop offset='.2417' stop-color='%23FA2E3E'/%3E%3Cstop offset='1' stop-color='%23BC0A26'/%3E%3C/linearGradient%3E%3CclipPath id='clip0_15251_63610'%3E%3Cpath fill='%23fff' d='M-.002 0h16v15.9992h-16z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E")
}

.ac2 .ac1 .ac0 .ab0 {
  background-image: url("data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cg clip-path='url(%23clip0_15251_63610)'%3E%3Cpath d='M15.9972 7.9996c0 4.418-3.5815 7.9996-7.9996 7.9996-4.418 0-7.9996-3.5816-7.9996-7.9996S3.5796 0 7.9976 0c4.4181 0 7.9996 3.5815 7.9996 7.9996Z' fill='url(%23paint0_linear_15251_63610)'/%3E%3Cpath d='M15.9973 7.9992c0 4.4178-3.5811 7.9992-7.9987 7.9992C3.5811 15.9984 0 12.417 0 7.9992S3.5811 0 7.9986 0c4.4176 0 7.9987 3.5814 7.9987 7.9992Z' fill='url(%23paint1_radial_15251_63610)'/%3E%3Cpath d='M15.9972 7.9996c0 4.418-3.5815 7.9996-7.9996 7.9996-4.418 0-7.9996-3.5816-7.9996-7.9996S3.5796 0 7.9976 0c4.4181 0 7.9996 3.5815 7.9996 7.9996Z' fill='url(%23paint2_radial_15251_63610)' fill-opacity='.8'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.6144 10.8866c.159-1.8461 1.127-2.887 2.382-2.887 1.2551 0 2.2231 1.0418 2.3822 2.887.1591 1.8461-.7342 3.1127-2.3821 3.1127-1.648 0-2.5412-1.2666-2.3821-3.1127Z' fill='%234B280E'/%3E%3Cellipse cx='11.1978' cy='5.6997' rx='1.3999' ry='1.6999' fill='%231C1C1D'/%3E%3Cellipse cx='4.7979' cy='5.6997' rx='1.3999' ry='1.6999' fill='%231C1C1D'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.3528 3.166a1.4744 1.4744 0 0 0-1.8591-.3279.4.4 0 1 1-.3976-.6941c.9527-.5457 2.1592-.333 2.8678.5056a.4.4 0 0 1-.6111.5163ZM5.4998 2.8381a1.4744 1.4744 0 0 0-1.859.3278.4.4 0 0 1-.6111-.5162c.7085-.8387 1.915-1.0514 2.8677-.5057a.4.4 0 0 1-.3976.6941Z' fill='%23E0761A'/%3E%3C/g%3E%3Cdefs%3E%3CradialGradient id='paint1_radial_15251_63610' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='matrix(0 7.9992 -7.99863 0 7.9986 7.9992)'%3E%3Cstop offset='.5637' stop-color='%23FF5758' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23FF5758' stop-opacity='.1'/%3E%3C/radialGradient%3E%3CradialGradient id='paint2_radial_15251_63610' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='rotate(45 -4.5262 10.9226) scale(10.1818)'%3E%3Cstop stop-color='%23FFF287'/%3E%3Cstop offset='1' stop-color='%23FFF287' stop-opacity='0'/%3E%3C/radialGradient%3E%3ClinearGradient id='paint0_linear_15251_63610' x1='2.3979' y1='2.3999' x2='13.5973' y2='13.5993' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23FFF287'/%3E%3Cstop offset='1' stop-color='%23F68628'/%3E%3C/linearGradient%3E%3CclipPath id='clip0_15251_63610'%3E%3Cpath fill='%23fff' d='M-.002 0h15.9992v15.9992H-.002z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E")
}

@media (max-width: 450px) {
  .af9,.af7 {
    gap: 6px
  }
  .ac2 .ac1 {
    row-gap: 2px
  }
  .ac2 .ac1 u {
    font-size: 14px
  }
  .ac2 .ac1 .ac0 {
    position: relative;
    top: -2px
  }
  .ac2 .ac1 .ac0>span {
    width: 16px;
    height: 16px;
    -webkit-box-shadow: 0 0 0 1.5px #fff;
            box-shadow: 0 0 0 1.5px #fff;
    top: 3px
  }
}
.comment-box img{
  border-radius: 10%;
}
/* /Comments Section */
.image-containerrr {
  position: relative;
  display: inline-block;
}

.containertt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* برای چیدمان افقی */
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; /* فاصله بین دو بخش */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* تراز عمودی عناصر */
  padding: 20px; /* فاصله داخلی */
}
.lefttt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; 
  -webkit-box-align: center; 
      -ms-flex-align: center; 
          align-items: center;
}
.store-on-product{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 80%;
  height: 20%;
  min-height: 70px;
  -webkit-box-shadow: inset 0 0px 5px rgba(0, 0, 0, 0.30);
          box-shadow: inset 0 0px 5px rgba(0, 0, 0, 0.30);
  padding: 5px;
  margin: 15px;
  font-size: 1em;
}
.store-name-on-product:hover{
  text-decoration: none;
}
.store-name-on-product{
  width: 100%;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  text-decoration: none;
  font-size: 1.1rem;
  color: #2B5784;
}
.righttt h1 {
  margin: 0;
}
.like-count{
  color: rgb(27, 232, 61);
  border-radius: 7px;
  cursor: pointer;
}
.like-count:hover{
  font-weight: bolder;
  background-color: rgb(27, 232, 61);
}
.dislike-count{
  color: red;
  border-radius: 7px;
  cursor: pointer;
}
.dislike-count:hover{
  font-weight: bolder;
  background-color: red;
}
.loadmorebtn{
  display: -ms-grid;
  display: grid; place-items: center;
}
.button-73 {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 40em;
  border-style: none;
  color: var(--heading-color);
  cursor: pointer;
  -webkit-box-shadow: 2px 2px var(--nav-dropdown-background-color);
          box-shadow: 2px 2px var(--nav-dropdown-background-color);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  font-family: var(--kamran-font);
  font-size: 0.7rem;
  font-weight: bold;
  /* letter-spacing: -.24px; */
  margin: 0;
  outline: none;
  padding: 1rem 1.3rem;
  quotes: auto;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all .15s;
  -o-transition: all .15s;
  transition: all .15s;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  width: 20%;
}
/* CSS */
.button-72 {
  background-color: #2B5784;
  border: 0;
  /* border-radius: 56px; */
  border-radius: 40em;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: system-ui,-apple-system,system-ui,"Segoe UI",Roboto,Ubuntu,"Helvetica Neue",sans-serif;
  font-size: 1rem;
  outline: 0;
  white-space: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 7px 10px;
  height: 45px;
  width: 70%;
  margin: auto;
  position: relative;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  font-weight: bold;
  bottom: 0px;
  margin-top: 20px;
}

.button-72:before {
  background-color: initial;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), to(rgba(255, 255, 255, 0)));
  background-image: -o-linear-gradient(#fff 0, rgba(255, 255, 255, 0) 100%);
  background-image: linear-gradient(#fff 0, rgba(255, 255, 255, 0) 100%);
  border-radius: 125px;
  content: "";
  height: 30%;
  left: 4%;
  opacity: .5;
  position: absolute;
  /* top: 0; */
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  width: 92%;
  top: 0px;
}
.button-72::after {
  bottom: 0px;
}
.button-72:hover {
  -webkit-box-shadow: rgba(255, 255, 255, .2) 0 3px 15px inset, rgba(0, 0, 0, .1) 0 3px 5px, rgba(0, 0, 0, .1) 0 10px 13px;
          box-shadow: rgba(255, 255, 255, .2) 0 3px 15px inset, rgba(0, 0, 0, .1) 0 3px 5px, rgba(0, 0, 0, .1) 0 10px 13px;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.button-71 {
  background-color: #2B5784;
  border: 0;
  border-radius: 56px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: system-ui,-apple-system,system-ui,"Segoe UI",Roboto,Ubuntu,"Helvetica Neue",sans-serif;
  font-size: 18px;
  font-weight: 600;
  outline: 0;
  padding: 16px 21px;
  position: relative;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

.button-71:before {
  background-color: initial;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), to(rgba(255, 255, 255, 0)));
  background-image: -o-linear-gradient(#fff 0, rgba(255, 255, 255, 0) 100%);
  background-image: linear-gradient(#fff 0, rgba(255, 255, 255, 0) 100%);
  border-radius: 125px;
  content: "";
  height: 50%;
  left: 4%;
  opacity: .5;
  position: absolute;
  top: 0;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  width: 92%;
}

.button-71:hover {
  -webkit-box-shadow: rgba(255, 255, 255, .2) 0 3px 15px inset, rgba(0, 0, 0, .1) 0 3px 5px, rgba(0, 0, 0, .1) 0 10px 13px;
          box-shadow: rgba(255, 255, 255, .2) 0 3px 15px inset, rgba(0, 0, 0, .1) 0 3px 5px, rgba(0, 0, 0, .1) 0 10px 13px;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

@media (min-width: 768px) {
  .button-71 {
    padding: 16px 48px;
  }
}

.button-73:hover {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
  -webkit-transform: scale(1.025);
      -ms-transform: scale(1.025);
          transform: scale(1.025);
  color: #040677;
  font-weight: bolder;
}

.button-73:active {
  -webkit-transform: scale(1.025);
      -ms-transform: scale(1.025);
          transform: scale(1.025);
}

@media (min-width: 768px) {
  .button-73 {
    font-size: 1.5rem;
    padding: .75rem 2rem;
  }
}
.store-name {
  position: absolute;
  top: 10px; /* فاصله از پایین */
  left: 28px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%); /* تنظیم دقیق وسط */
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  width: 100%;
  font-weight: bold;
}
.store-logo{
  width: 60px;
  height: 60px;
  border-radius: 20px;
  display: block;
  /* position: absolute; */
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
}
.store-logo:hover{
  -webkit-box-shadow: 0 0px 20px #1acc8d;
          box-shadow: 0 0px 20px #1acc8d;  
}
.blog-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 1rem auto;
  -webkit-box-shadow: 0 3px 7px -1px rgba(0,0,0, 50%);
          box-shadow: 0 3px 7px -1px rgba(0,0,0, 50%);
  margin-bottom: 1.6%;
  background: var(--color_white);
  /* background: #3b70fc; */
  line-height: 1.4;
  font-family: sans-serif;
  border-radius: 50px;
  overflow: hidden;
  z-index: 0;
  direction: rtl;
  a {
    /* color: inherit; */
    &:hover {
      color: var(--color_prime);
    }
  }
  &:hover {
    .photo {
      -webkit-transform: scale(1.3) rotate(3deg);
          -ms-transform: scale(1.3) rotate(3deg);
              transform: scale(1.3) rotate(3deg);
      opacity: 0.5;
    }
  }
  .meta {
    position: relative;
    z-index: 0;
    height: 200px;
    color: #000;
    font-weight: bold;
  }
  .photo {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    -o-transition: transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
    -webkit-mask-image: -webkit-gradient(
      linear, 
      left top, right top, 
      from(transparent), 
      color-stop(20%, black), 
      color-stop(80%, black), 
      to(transparent)
    );
    -webkit-mask-image: linear-gradient(
      to right, 
      transparent 0%, 
      black 20%, 
      black 80%, 
      transparent 100%
    );
    mask-image: -webkit-gradient(
      linear, 
      left top, right top, 
      from(transparent), 
      color-stop(20%, black), 
      color-stop(80%, black), 
      to(transparent)
    );
    mask-image: linear-gradient(
      to right, 
      transparent 0%, 
      black 20%, 
      black 80%, 
      transparent 100%
    );
  }
  .details,
  .details ul {
    margin: auto;
    padding: 0;
    list-style: none;
  }

  .details {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100%;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: auto;
    margin-left: 0px;
    -webkit-transition: left .2s;
    -o-transition: left .2s;
    transition: left .2s;
    background: transparent;
    color: black;
    padding: 10px;
    width: 100%;
    font-size: 0.5rem;
    ul li {
      display: inline-block;
    }
    .author:before {
      font-family: FontAwesome;
      margin-right: 10px;
      /* content: "\f007"; */
    }

    .date:before {
      font-family: FontAwesome;
      margin-right: 10px;
      /* content: "\f133"; */
    }

    .tags {
      ul:before {
        font-family: FontAwesome;
        content: "\f02b";
        margin-right: 10px;
      }
      li {
        margin-right: 2px;
        &:first-child {
          margin-left: -4px;
        }
      }
    }
  }
  .description {
    padding: 1rem;
    background: var(--color_white);
    position: relative;
    z-index: 1;
    h1,
    h2 {
      font-family: Poppins, sans-serif;
    }
    h1 {
      line-height: 1;
      margin: 0;
      font-size: 1.7rem;
    }
    h2 {
      font-size: 1rem;
      font-weight: 300;
      text-transform: uppercase;
      color: var(--color_grey_dark);
      margin-top: 5px;
    }
    .read-more {
      text-align: right;
      a {
        color: var(--color_prime);
        display: inline-block;
        position: relative;
        &:after {
          content: "\f061";
          font-family: FontAwesome;
          margin-left: -10px;
          opacity: 0;
          vertical-align: middle;
          -webkit-transition: margin .3s, opacity .3s;
          -o-transition: margin .3s, opacity .3s;
          transition: margin .3s, opacity .3s;
        }

        &:hover:after {
          margin-left: 5px;
          opacity: 1;
        }
      }
    }
  }
  p {
    position: relative;
    margin: 1rem 0 0;
    &:first-of-type {
      margin-top: 1.25rem;
      &:before {
        content: "";
        position: absolute;
        height: 5px;
        background: var(--color_prime);
        width: 35px;
        top: -0.75rem;
        border-radius: 3px;
      }
    }
  }
  &:hover {
    .details {
      left: 0%;
    }
  }


  @media (min-width: 640px) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 700px;
    .meta {
      -ms-flex-preferred-size: 40%;
          flex-basis: 40%;
      height: auto;
    }
    .description {
      -ms-flex-preferred-size: 60%;
          flex-basis: 60%;
      &:before {
        -webkit-transform: skewX(-3deg);
            -ms-transform: skewX(-3deg);
                transform: skewX(-3deg);
        content: "";
        background: #fff;
        width: 30px;
        position: absolute;
        left: -10px;
        top: 0;
        bottom: 0;
        z-index: -1;
      }
    }
    &.alt {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse;
      .description {
        &:before {
          left: inherit;
          right: -10px;
          -webkit-transform: skew(3deg);
              -ms-transform: skew(3deg);
                  transform: skew(3deg)
        }
      }
      .details {
        padding-left: 25px;
      }
    }
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::-webkit-input-placeholder, .contact .php-email-form input[type=email]::-webkit-input-placeholder, .contact .php-email-form textarea::-webkit-input-placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form input[type=text]::-moz-placeholder, .contact .php-email-form input[type=email]::-moz-placeholder, .contact .php-email-form textarea::-moz-placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form input[type=text]:-ms-input-placeholder, .contact .php-email-form input[type=email]:-ms-input-placeholder, .contact .php-email-form textarea:-ms-input-placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form input[type=text]::-ms-input-placeholder, .contact .php-email-form input[type=email]::-ms-input-placeholder, .contact .php-email-form textarea::-ms-input-placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# temprement questions Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 80vh;
  position: relative;
  padding: 120px 0 60px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .btn-watch-video {
  font-size: 16px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--contrast-color);
  font-size: 32px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
/* --------------------------------------- 
  Alert Confirmation modal
 --------------------------------------*/
 .modal-confirm {		
	color: #636363;
	width: 400px;
}
.modal-confirm .modal-content {
	padding: 20px;
	border-radius: 5px;
	border: none;
	text-align: center;
	font-size: 14px;
}
.modal-confirm .modal-header {
	border-bottom: none;   
	position: relative;
}
.modal-confirm h4 {
	text-align: center;
	font-size: 26px;
	margin: 30px 0 -10px;
}
.modal-confirm .close {
	position: absolute;
	top: -5px;
	right: -2px;
}
.modal-confirm .modal-body {
	color: #999;
}
.modal-confirm .modal-footer {
	border: none;
	text-align: center;		
	border-radius: 5px;
	font-size: 13px;
	padding: 10px 15px 25px;
}
.modal-confirm .modal-footer a {
	color: #999;
}		
.modal-confirm .icon-box {
	width: 80px;
	height: 80px;
	margin: 0 auto;
	border-radius: 50%;
	z-index: 9;
	text-align: center;
	border: 3px solid #f15e5e;
}
.modal-confirm .icon-box i {
	color: #f15e5e;
	font-size: 46px;
	display: inline-block;
	margin-top: 13px;
}
.modal-confirm .btn, .modal-confirm .btn:active {
	color: #fff;
	border-radius: 4px;
	background: #60c7c1;
	text-decoration: none;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	line-height: normal;
	min-width: 120px;
	border: none;
	min-height: 40px;
	border-radius: 3px;
	margin: 0 5px;
}
.modal-confirm .btn-secondary {
	background: #c1c1c1;
  font-size: 1.6em;
  font-family: var(--nav-font);
}
.modal-confirm .btn-secondary:hover, .modal-confirm .btn-secondary:focus {
	background: #a8a8a8;
}
.modal-confirm .btn-danger {
	background: #f15e5e;
  font-size: 1.6em;
  font-family: var(--nav-font);
}
.modal-confirm .btn-danger:hover, .modal-confirm .btn-danger:focus {
	background: #ee3535;
}
/* --------------------------------------- 
  /Alert Confirmation modal
 --------------------------------------*/
 /* --------------------------------------- 
  my store page
 --------------------------------------*/
 .header-banner-store{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  .progress-container {
      width: 100%;
      background-color: #f3f3f3;
      -webkit-box-shadow: 0 3px 3px -5px #000000, 0 2px 5px #aaaaaa;
              box-shadow: 0 3px 3px -5px #000000, 0 2px 5px #aaaaaa;
      margin: 20px 0;
      text-align: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      position: relative; 
      height: 25px; 
      border-radius: 7px;
  }

  .progress-bar {
      height: 25px;
      width: 1%;
      background-color: #4caf50;
      text-align: center;
      line-height: 30px;
      color: white;
      -webkit-transition: width 0.4s ease;
      -o-transition: width 0.4s ease;
      transition: width 0.4s ease;
      border-radius: 7px;
  }

  .score-title {
    position: absolute;
    top: 50%; 
    left: 50%; 
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); 
    z-index: 1; 
    font-family: "B Nazanin";
    color: #0c0091;
    font-weight: bold;
  }
  .Pic-container{
    width:100%;
    height:200px;
    border-radius: 10%;
    overflow: hidden;
  }
 }
 .store-medals{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-top: 20px;
 }
.medal {
  width: 120px;
  height: 120px;
  background: -o-linear-gradient(45deg, #ffd700, #daa520);
  background: linear-gradient(45deg, #ffd700, #daa520);
  border-radius: 50%;
  -webkit-box-shadow: 
    0 0 25px rgba(255, 215, 0, 0.5),
    inset 0 -5px 15px rgba(0,0,0,0.2);
          box-shadow: 
    0 0 25px rgba(255, 215, 0, 0.5),
    inset 0 -5px 15px rgba(0,0,0,0.2);
  -webkit-animation: glow 2s infinite alternate;
          animation: glow 2s infinite alternate;
  margin-right: 10px;
}

/* حلقه داخلی مدال */
.inner-circle {
  position: absolute;
  width: 110px;
  height: 110px;
  border: 2px solid var(--nav-dropdown-hover-color);
  border-radius: 50%;
  top: 5px;
  left: 5px;
  -webkit-box-shadow: inset 0 0 15px rgba(0,0,0,0.1);
          box-shadow: inset 0 0 15px rgba(0,0,0,0.1);
}
.medal-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: var(--nav-dropdown-hover-color);
  font-family: 'Arial', sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  text-shadow: 
    1px 1px 2px rgba(0, 0, 0, 0.5),
    -1px -1px 2px rgba(255, 255, 255, 0.3);
  z-index: 2;
  text-align: center;
  line-height: 1.2;
  width: 80%; /* جلوگیری از بیرون زدن متن */
}

/* انیمیشن درخشش */
@-webkit-keyframes glow {
  from {
    -webkit-filter: brightness(0.9);
            filter: brightness(0.9);
  }
  to {
    -webkit-filter: brightness(1.2);
            filter: brightness(1.2);
  }
}
@keyframes glow {
  from {
    -webkit-filter: brightness(0.9);
            filter: brightness(0.9);
  }
  to {
    -webkit-filter: brightness(1.2);
            filter: brightness(1.2);
  }
}
 /* --------------------------------------- 
  /my store page
 --------------------------------------*/
 /* Add Button For All page */
 .add-btn{
  width: 100%;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;

 }
 /* /Add Button For All page */
 /*  hr with text  For All page */
 .hr-text{
  position: relative;
  border: 0;
  height: 1.5em;
}
.hr-text:before{
  content: '';
  position: absolute;
  background: green;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
}
.hr-text:after{
  content: attr(data-content);
  position: relative;
  display: inline-block;
  color: black;
  padding: 0 2em;
  line-height: 1.5em;
  color: #818078;
  background-color: #fcfcfa;
}
 /* / hr with text  For All page */
 /* center-input-design */
 .center-input-design{
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: var(--nav-font);
  font-size: 1.2em;
  width: 200px;
  margin: 15px;
 }
 .center-input-design:hover{
  -webkit-box-shadow: 2px 2px rgba(13, 9, 127, 0.5);
          box-shadow: 2px 2px rgba(13, 9, 127, 0.5);
 }
 .input-design-rating{
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: var(--nav-font);
  font-size: 0.7em;
  width: 300px;
 }
 /* / center-input-design */
/* --------------------------------------- 
   My Products Page
 --------------------------------------*/
 .category-box-mee{
  width: 80%;
  height: 250px;
  overflow: scroll;
  margin-top: 20px;
  padding: 3%;
 }
 /* --------------------------------------- 
   /My Products Page
 --------------------------------------*/
 /* --------------------------------------- 
   Store Page
 --------------------------------------*/
 .store-filter-navbar{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(10%, #2B5784), color-stop(95%, transparent), color-stop(10%, #2B5784));
  background: -o-linear-gradient(bottom, #2B5784 10%, transparent 95%, #2B5784 10%);
  background: linear-gradient(0deg, #2B5784 10%, transparent 95%, #2B5784 10%); 
  color: #fefefe;
  font-family: var(--nav-font);
  padding: 10px;
  padding-bottom: 20px;
  padding-top: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.scrollable-box-title{
  text-align: center;
  font-family: var(--kamran-font);
  font-size: 1.3em;
  color: #fefefe;
  bottom: 0;
  background: #2B5784;
  padding-top: 15px;
  border-top: 1px solid rgba(100, 100, 100, 0.68);
}
.scrollable-store-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  padding: 10px;
  background: #2B5784;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1%;
}

.scrollable-store-box .card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-right: 10px;
}
.scrollable-store-box::-webkit-scrollbar {
  height: 8px;
}

.scrollable-store-box::-webkit-scrollbar-track {
    background: #000000;
}

.scrollable-store-box::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: #1acc8d;
}

.scrollable-store-box::-webkit-scrollbar-thumb:hover {
    background: #ffffff;
}
.scrollable-store-box-two-row {
  /* display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, auto);
  gap: 10px;
  overflow-x: auto;
  padding: 10px;
  justify-content: start;
  scroll-padding-left: 20px; */
  background: #2B5784;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  direction: rtl;
  white-space: nowrap;
  min-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; 
  -ms-flex-wrap: nowrap; 
      flex-wrap: nowrap; 
  gap: 10px;
  overflow-x: auto;
  padding: 10px 20px;
  background: #2B5784;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; /* نمایش کارت‌ها از سمت راست */
  scroll-behavior: smooth;
}
.scrollable-store-box-two-row .card {
  width: 300px;
  height: 350px;
  margin-right: 10px;
}
.scrollable-store-box-two-row::-webkit-scrollbar {
  height: 8px;
}

.scrollable-store-box-two-row::-webkit-scrollbar-track {
    background: #000000;
}

.scrollable-store-box-two-row::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: #1acc8d;
}

.scrollable-store-box-two-row::-webkit-scrollbar-thumb:hover {
    background: #ffffff;
}
.store-category-a{
  text-decoration: none;
  margin: 10px;
}
.store-category-a:hover{
  text-decoration: none;
  color: var(--nav-hover-color);
  
}
.store-product-detail:hover{
  -webkit-box-shadow: 0 3px 7px -1px rgba(17, 8, 149, 0.5);
          box-shadow: 0 3px 7px -1px rgba(17, 8, 149, 0.5);
}
.store-product-detail{
  min-width: 300px; 
  max-width: 300px; 
  -ms-flex-negative: 0; 
      flex-shrink: 0;
  height: 420px;
  -webkit-box-shadow: 0 4px 8px rgba(255, 255, 255, 0.5);
          box-shadow: 0 4px 8px rgba(255, 255, 255, 0.5);
  padding: 10px;
  direction: rtl;
  font-family: var(--nazanin-font);
  font-size: calc(0.7rem + .9vw);
  font-weight: 500;
  line-height: 1.2;
  text-shadow: 1px 0px black;
  margin: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  background: -o-linear-gradient(135deg, #ee7752, #1acc8d, #23a6d5, #23d5ab);
  background: linear-gradient(-45deg, #ee7752, #1acc8d, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	-webkit-animation: gradient 10s ease infinite;
	        animation: gradient 10s ease infinite;
  border-radius: 7px;
  .txtdes{
    margin-top: 4px;
    text-align: center;
    overflow-wrap: break-word;
    word-wrap: break-word;
    white-space: pre-wrap;
    padding: 5px;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.1);
  }
}
@-webkit-keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.store-product-detail-center{
  width: 95%;
  direction: rtl;
  font-family: var(--nazanin-font);
  font-size: calc(0.7rem + .9vw);
  font-weight: 500;
  line-height: 1.2;
  text-shadow: 1px 0px #56d8e4;
  color: var(--nav-dropdown-background-color);
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2%;
}
.store-product-detail-big{
  min-width: 600px; 
  max-width: 60%; 
  -ms-flex-negative: 0; 
      flex-shrink: 0;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  -webkit-box-shadow: 0 4px 8px rgba(255, 255, 255, 0.5);
          box-shadow: 0 4px 8px rgba(255, 255, 255, 0.5);
  padding: 20px;
  direction: rtl;
  font-family: var(--nazanin-font);
  font-size: calc(0.7rem + .9vw);
  font-weight: 500;
  line-height: 1.2;
  text-shadow: 1px 0px black;
  margin: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  background-color: rgba(39, 205, 108, 0.5);
  border-radius: 7px;
  .txtdes{
    margin-top: 4px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    white-space: pre-wrap;
    padding: 5px;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.1);
  }
}
 /* --------------------------------------- 
   /Store Page
 --------------------------------------*/
 /* --------------------------------------- 
   Payment Status's
 --------------------------------------*/
 ._failed{ border-bottom: solid 4px red !important; }
._failed i{  color:red !important;  }

._success {
    -webkit-box-shadow: 0 15px 25px #00000019;
            box-shadow: 0 15px 25px #00000019;
    padding: 45px;
    width: 100%;
    text-align: center;
    margin: 40px auto;
    border-bottom: solid 4px #28a745;
}

._success i {
    font-size: 55px;
    color: #28a745;
}

._success h2 {
    margin-bottom: 12px;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 10px;
}

._success p {
    margin-bottom: 0px;
    font-size: 18px;
    color: #495057;
    font-weight: 500;
}
 /* --------------------------------------- 
   /Payment Status's
 --------------------------------------*/
 /* --------------------------------------- 
   Main Search And Filters
 --------------------------------------*/
 .main-search-input-box {
  position: absolute;
  width: 100%;
  left: 5px;
  max-width: 60px;
  height: 55px;
  margin: 0 50px;
  border-radius: 6px;
  background-color: transparent;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.main-search-input-box.open {
  max-width: 250px;
  background-color: #fff;
}
.main-search-input-box input {
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: 400;
  color: darkgray;
  background-color: transparent;
  padding: 0 15px;
  border: none;
  border-radius: 6px;
  outline: none;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  display: none;
  font-family: var(--nav-font);
  font-size: 1.5em;
}
.main-search-input-box.open input {
  padding: 0 15px 0 65px;
  display: block;
}

.main-search-input-box .search {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
  border-radius: 6px;
  cursor: pointer;
}
.main-search-input-box.open .search {
  border-radius: 6px 0 0 6px;
}
.search .search-icon {
  font-size: 28px;
  color: #1acc8d;
}
.main-search-input-box .close-icon:hover {
  color: red;
}
.main-search-input-box .close-icon {
  position: absolute;
  top: 50%;
  right: -45px;
  font-size: 30px;
  color: #1acc8d;
  padding: 5px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  pointer-events: none;
  opacity: 0;
}
.main-search-input-box.open .close-icon {
  -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  pointer-events: auto;
  opacity: 1;
}
.main-filter-navbar{
  right: 200px;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* flex-direction: row; */
  width: 40%;
  color: #fefefe;
  font-family: var(--nav-font);
  padding: 10px;
  padding-bottom: 20px;
  padding-top: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: none;
}
.main-filter-navbar #theme-select option{
  background-color: #1acc8d;
}
.main-filter-navbar #theme-select{
  text-align: center;
}
.main-filter-navbar .filters-select option{
  background-color: #1acc8d;
}
.main-filter-navbar .filters-select{
  text-align: center;
}
.main-filter-navbar .styled-select {
  position: relative;
  width: 150px;
  font-size: 1.2rem;
  -webkit-box-shadow: 0 1px 4px 1px white;
          box-shadow: 0 1px 4px 1px white;
  margin-right: 4%;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
}
.main-filter-navbar .styled-select::after {
  content: "\276F";
  position: absolute;
  top: 50%;
  right: 1rem;
  translate: 0 -50%;
  z-index: -1;
  -webkit-transition: 300ms ease-in-out;
  -o-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}
.main-filter-navbar .styled-select:focus-within::after {
  rotate: 90deg;
}
.main-filter-navbar .styled-select > select {
  padding: 0.5rem 1rem;
  width: auto;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  background: transparent;
  font-size: inherit;
  font-family: var(--kamran-font);
  color: inherit;
  padding-right: 1.9rem;
}
.main-product-wrapper{
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #2B5784;
  direction: rtl;
  white-space: nowrap;
  min-width: 100%;
  gap: 5%;
  padding: 10px 20px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; /* نمایش کارت‌ها از سمت راست */
  scroll-behavior: smooth;
  padding-top: 105px;
}
 /* --------------------------------------- 
   /Main Search And Filters
 --------------------------------------*/
 /* --------------------------------------- 
   Doctor's Page
 --------------------------------------*/
 .doctor-box {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 25px;
  -webkit-box-shadow: 0 8px 28px rgba(10, 3, 139, 0.1);
          box-shadow: 0 8px 28px rgba(10, 3, 139, 0.1);
  border-radius: 30px;
}
.doctor-box:hover {
  -webkit-box-shadow: 0 8px 28px rgba(10, 3, 139, 0.5);
          box-shadow: 0 8px 28px rgba(10, 3, 139, 0.5);
}
.doctor-box i {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 24px;
  margin-top: 20px;
  font-size: 32px;
  line-height: 0;
  -webkit-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}
.doctor-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
}
.doctor-box p {
  margin-bottom: 0;
  margin-top: 8px;
}
.doctor-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}
.nobat-button {
  position: absolute; 
  bottom: 10px; 
  left: 38%; 
  margin: auto;
  border: none;
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 1rem;  
  font-weight: bold;
  color: white;
  cursor: pointer;
  margin: 2%;
  text-align: center;
  -webkit-box-shadow: 2px 2px #38618a;
          box-shadow: 2px 2px #38618a;
  text-decoration: none;
}
.nobat-button:hover {
  -webkit-box-shadow: 0 3px 7px 3px var(--nav-dropdown-hover-color);
          box-shadow: 0 3px 7px 3px var(--nav-dropdown-hover-color);
  color: var(--nav-dropdown-hover-color);
  text-decoration: none;
}
.span-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; 
  -webkit-box-pack: center; 
      -ms-flex-pack: center; 
          justify-content: center;
  text-align: center;
}

.uniform-span {
  display: inline-block;
  white-space: nowrap;
  text-align: right;
  padding: 5px 10px;
  font-size: var(--nazanin-font);
  background-color: rgba(119, 119, 119, 0.2);
  border-radius: 10px;
  margin: 4px;
  cursor: default;
}
.doc-address-span-in-address-pg:hover {
  color: var(--nav-dropdown-hover-color);
}
.doc-address-span-in-address-pg {
  display: inline-block;
  white-space: nowrap;
  text-align: right;
  padding: 5px;
  font-size: var(--nazanin-font);
  background-color: rgba(26, 148, 4, 0.2);
  border-radius: 10px;
  margin: 4px;
  color: #28a745;
  cursor: default;
}
.spec-p-doc:hover{
  color: #ffffff;
}
.spec-p-doc{
  background-color: rgba(119, 119, 119, 0.2);
  border-radius: 10px;
  padding: 7px;
  color: var(--nav-dropdown-hover-color);
  cursor: default;
  margin-right: 4px;
  opacity: 0.8;
  background-image: -o-radial-gradient(#444cf7 0.5px, #040444 0.5px);
  background-image: radial-gradient(#444cf7 0.5px, #040444 0.5px);
}
.doctor-spesialities-in-doc-pg{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.main-doc-filter-navbar{
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  color: #fefefe;
  background-color: #2B5784;
  font-family: var(--nav-font);
  padding: 10px;
  padding-bottom: 20px;
  padding-top: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.main-doc-filter-navbar .search-input {
  position: relative;
  width: 150px;
  font-size: 1.1rem;
  -webkit-box-shadow: 0 1px 4px 1px white;
          box-shadow: 0 1px 4px 1px white;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
  font-family: var(--kamran-font);
}
.main-doc-filter-navbar .search-input input {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 5px;
  background: transparent;
  color: white;
  text-align: center;
  direction: rtl;
  font-family: var(--kamran-font);
}
.main-doc-filter-navbar .search-input input::-webkit-input-placeholder {
  color: white;
}
.main-doc-filter-navbar .search-input input::-moz-placeholder {
  color: white;
}
.main-doc-filter-navbar .search-input input:-ms-input-placeholder {
  color: white;
}
.main-doc-filter-navbar .search-input input::-ms-input-placeholder {
  color: white;
}
.main-doc-filter-navbar .search-input input::placeholder {
  color: white;
}
.main-doc-filter-navbar #theme-select option{
  background-color: #2B5784;
}
.main-doc-filter-navbar #theme-select{
  text-align: center;
}
.main-doc-filter-navbar .filters-select option{
  background-color: #2B5784;
}
.main-doc-filter-navbar .filters-select{
  text-align: center;
}
.main-doc-filter-navbar .styled-select {
  position: relative;
  /* width: 150px; */
  font-size: 1.2rem;
  -webkit-box-shadow: 0 1px 4px 1px white;
          box-shadow: 0 1px 4px 1px white;
  margin-right: 4%;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
}
.main-doc-filter-navbar .styled-select::after {
  content: "\276F";
  position: absolute;
  top: 50%;
  right: 1rem;
  translate: 0 -50%;
  z-index: -1;
  -webkit-transition: 300ms ease-in-out;
  -o-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}
.main-doc-filter-navbar .styled-select:focus-within::after {
  rotate: 90deg;
}
.main-doc-filter-navbar .styled-select > select {
  padding: 0.5rem 1rem;
  width: auto;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  background: transparent;
  font-size: inherit;
  font-family: var(--kamran-font);
  color: inherit;
  /* padding-right: 1.9rem; */
}
.reviews-section{
  direction: rtl;
  text-align: right;
}

@media (min-width: 768px) and (max-width: 1479px) {
  .main-doc-filter-navbar {
    position: relative; 
    display: -webkit-box; 
    display: -ms-flexbox; 
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    overflow-x: auto; 
    overflow-y: hidden; 
    white-space: nowrap; 
    padding: 10px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-overflow-scrolling: touch; 
    scrollbar-width: none; 
  }
  
  .main-doc-filter-navbar::-webkit-scrollbar {
    display: none; 
  }
  
  .main-doc-filter-navbar .search-input,
  .main-doc-filter-navbar .styled-select {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto; 
    width: auto;
    margin-right: 10px; 
    font-size: 1rem;
    font-family: var(--kamran-font);
  }
  
  .main-doc-filter-navbar .search-input input {
    padding: 2px;
  }
  
  .main-doc-filter-navbar .styled-select > select {
    padding: 8px 1.9rem 8px 1rem; 
  }
  /* end */
  .header-banner-store{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .nobat-button {
    bottom: 0px;
    /* left: 31%; */
  }
  .header-banner-store .Pic-container {
      height: 300px;
  }
  #logo-base-icon{
    margin: auto;
    margin-right: 15%;
  }
  .main-filter-navbar{
    display: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    top: 80px;
    width: 100%;
    right: 0;
    background: #2b5784;
  }
  #dllgka{
    -webkit-box-align: normal;
    -ms-flex-align: normal;
    align-items: normal;
    max-width: none;
  }
  .main-search-input-box.open{
    width: 70%;
    z-index: 100000;
  }
  .main-product-wrapper {
    margin-top: 300px;
  }
  .doctor-box{
    padding-bottom: 50px;
  }
}

 /* --------------------------------------- 
   /Doctor's Page
 --------------------------------------*/
 .tree-container {
  position: relative;
  height: 400px;
  width: 450px;
  margin: 50px auto;
  overflow: hidden;
}

#tree {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  /* object-fit: cover;  */
  -webkit-animation: grow 10s ease-out forwards;
          animation: grow 10s ease-out forwards;
}

@-webkit-keyframes grow {
  from {
    height: 0;
  }
  to {
    height: 80%;
  }
}

@keyframes grow {
  from {
    height: 0;
  }
  to {
    height: 80%;
  }
}
 .barsan-about{
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #277c65;
  width: 60%;
  max-width: 80%;
  position: relative;
  margin: 50px auto;
  font-family: var(--kamran-font);
  line-height: 3em;
  font-size: 1.5rem;
 }
 .barsan-about h1{
  color: #277c65;
  font-family: var(--kamran-font);
  text-decoration: none;
 }
 .barsan-about h3{
  color: #277c65;
  font-family: var(--kamran-font);
 }
 .barsan-about p{
  line-height: 2.5em;
  font-size: 1rem;
 }
/*--------------------------------------------------------------
# Doctor Login Page
--------------------------------------------------------------*/
.doctorloginpage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; font-family: var(--default-font);
}
.doctorloginpage .main {
	width: 400px;
	height: 950px;
	background: #2B5784;
	overflow: hidden;
	border-radius: 10px;
	-webkit-box-shadow: 5px 20px 50px #000;
	        box-shadow: 5px 20px 50px #000;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 40px;
}
.doctorloginpage #chk{
	display: none;
}
.doctorloginpage  .signup{
	position: relative;
	width:100%;
	height: 100%;
}
.doctorloginpage label{
	color: #fff;
	font-size: 2.3em;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 50px;
	font-weight: bold;
	cursor: pointer;
	-webkit-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
}
.doctorloginpage input{
	width: 60%;
	height: 10px;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 20px auto;
	padding: 12px;
	border: none;
	outline: none;
	border-radius: 5px;
  text-align: center;
}
.doctorloginpage input::-webkit-input-placeholder {
  text-align: center; 
}
.doctorloginpage input::-moz-placeholder {
  text-align: center; 
}
.doctorloginpage input:-ms-input-placeholder {
  text-align: center; 
}
.doctorloginpage input::-ms-input-placeholder {
  text-align: center; 
}
.doctorloginpage input::placeholder {
  text-align: center; 
}
.doctorloginpage textarea{
	width: 80%;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 20px auto;
	padding: 12px;
	border: none;
	outline: none;
	border-radius: 5px;
  text-align: center;
}
.doctorloginpage textarea::-webkit-input-placeholder {
  text-align: center; 
}
.doctorloginpage textarea::-moz-placeholder {
  text-align: center; 
}
.doctorloginpage textarea:-ms-input-placeholder {
  text-align: center; 
}
.doctorloginpage textarea::-ms-input-placeholder {
  text-align: center; 
}
.doctorloginpage textarea::placeholder {
  text-align: center; 
}
.doctorloginpage button{
	width: 60%;
	height: 40px;
	margin: 10px auto;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	display: block;
	color: #fff;
	background: #2B5784;
	font-size: 1em;
	font-weight: bold;
	margin-top: 30px;
	outline: none;
	border: none;
	border-radius: 5px;
	-webkit-transition: .2s ease-in;
	-o-transition: .2s ease-in;
	transition: .2s ease-in;
	cursor: pointer;
}
.doctorloginpage button:hover{
	background: var(--nav-dropdown-hover-color);
}
.doctorloginpage .login{
	height: 560px;
	background: #eee;
	border-radius: 60% / 10%;
	-webkit-transform: translateY(-170px);
	    -ms-transform: translateY(-170px);
	        transform: translateY(-170px);
	-webkit-transition: .8s ease-in-out;
	-o-transition: .8s ease-in-out;
	transition: .8s ease-in-out;
}
.doctorloginpage .login label{
	color: #2B5784;
	-webkit-transform: scale(.6);
	    -ms-transform: scale(.6);
	        transform: scale(.6);
}
.doctorloginpage .login label:hover{
	color: var(--nav-hover-color);
}
.doctorloginpage .signup label:hover{
	color: var(--nav-hover-color);
}

.doctorloginpage #chk:checked ~ .login{
	-webkit-transform: translateY(-620px);
	    -ms-transform: translateY(-620px);
	        transform: translateY(-620px); 
}
.doctorloginpage #chk:checked ~ .login label{
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);	
}
.doctorloginpage #chk:checked ~ .signup label{
	-webkit-transform: scale(.6);
	    -ms-transform: scale(.6);
	        transform: scale(.6);
}
#header-text-style{
  font-family: var(--heading-font);
}
#enamad-logo:hover{
  -webkit-box-shadow: 0 4px 8px rgba(255, 255, 255, 0.5);
          box-shadow: 0 4px 8px rgba(255, 255, 255, 0.5);
}
#enamad-logo{
  background: #ffffff5e;
  border-radius: 10%;
}
@-webkit-keyframes progress {
  0% { --percentage: 0; }
  100% { --percentage: var(--value); }
}
@keyframes progress {
  0% { --percentage: 0; }
  100% { --percentage: var(--value); }
}

@property --percentage {
  syntax: '<number>';
  inherits: true;
  initial-value: 0;
}

[role="progressbar"] {
  --percentage: var(--value);
  /* --primary: #369;
  --secondary: #adf; */
  --primary: #157f5a;
  --secondary: rgb(181, 235, 212);
  --size: 300px;
  -webkit-animation: progress 2s 0.5s forwards;
          animation: progress 2s 0.5s forwards;
  width: var(--size);
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

[role="progressbar"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: conic-gradient(var(--primary) calc(var(--percentage) * 1%), var(--secondary) 0);
  -webkit-mask: radial-gradient(white 65%, transparent 0);
          mask: radial-gradient(white 65%, transparent 0);
  mask-mode: alpha;
  -webkit-mask: radial-gradient(#0000 65%, #000 0);
  -webkit-mask-mode: alpha;
}
[role="progressbar"]::after {
  counter-reset: percentage var(--value);
  font-family: Helvetica, Arial, sans-serif;
  font-size: calc(var(--size) / 5);
  color: var(--primary);
}
.Pic-container-doctors{
  width:100%;
  height:100%;
}
.score-title-doctores {
  margin: auto;
  font-family: "B Nazanin";
  color: #0c0091;
  font-weight: bold;
}
#center-doctor-bannnner{
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#store-title-in-stores-page{
  text-align: center; 
  -webkit-box-pack: center; 
      -ms-flex-pack: center; 
          justify-content: center;
  font-family: var(--kamran-font);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 60%;
}
/* PWA */
#installContainer{
  display: none;
}