@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*{
  font-family: 'AdorshoLipi', Arial, sans-serif !important;
}
.accordian_heading{
    border: 3px dashed black ;
      border-radius: 10px;
}
.dashboard h6{
    font-weight: normal;
}

.dashboard span{
    font-size: 26px;
}
.dashboard i{
    font-size: 35px;
}
.title{
    background-image: url(/assets/img/title.png);
    padding: 50px 0 10px 0;
    background-size: cover;
    background-repeat: no-repeat;
    color: floralwhite;
    font-size: 25px !important;
    display: grid;
    place-items: center;
    margin-bottom: 15px;
    box-shadow: 4px 1px 18px #5b99ea;
    font-weight: 100;
}


.landingpage_heading{
    font-size: 35px;
    background-color: rgb(228, 73, 11);
}
.landingpage_heading2{
    font-size: 35px;
    border: 1px solid black;
	color: black;
}
body {
	
	font-family: 'Montserrat', sans-serif;
}
.wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin: 6% auto 0;
}
.single-card {
	position: relative;
	width: 280px;
	height: 400px;
	margin: 76px;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
	transition: box-shadow 0.3s ease;
	overflow: hidden;
	background: #414852;
	border-radius: 15px;
	transition: all 0.8s ease-in-out;
}
.single-card:hover {
	transform: translateY(-10px);
}
.img-area {
	position: relative;
	width: 100%;
	height: 200px;
	overflow: hidden;
}
.img-area img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.img-area:hover img {
	transform: scale(1.1);
}
.overlay {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.33);
	opacity: 0;
	transition: opacity 0.3s ease;
}
.single-card:hover .overlay {
	opacity: 1;
}
.add-to-cart, .view-details {
	background-color: #fff;
	color: #333;
	padding: 10px 15px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease;
	margin-bottom: 10px;
}
.add-to-cart:hover, .view-details:hover {
	background-color: orangered;
	color: #fff;
	border: none;
}
.info {
	padding: 10px;
	text-align: center;
	color: #ddd;
}
.info h3 {
	margin: 15px 0 10px;
	font-size: 30px;
	font-weight: bold;
	text-transform: uppercase;
	font-family: 'Bebas Neue', sans-serif;
}
.info .price {
	margin: 0;
	font-size: 30px;
	font-weight: bold;
	color: aqua;
}
.ekhane_order{
	border: 1px solid black;
	border-radius: 50px;
	background-color:rgb(236, 91, 18);
	color: #ddd;
}
.ekhane_order_link{
	text-decoration: none;
}
.product_use_history_heading{
	color: #E7D981;
}
.product_use_history{
	background-color: #005038;
}
.product_use_history_points li{
	color: #ddd;
}
.contact_info{
	background-color: rgb(224, 72, 16);
}
.oder_cart{
	border:1px solid black;
	border-radius: 10px;
}
.product_cart_pakeg{
	border: 1px solid black;
	background-color: #ECFAF0;
	border-radius: 10px;
}
.product_price_total{
	border-bottom: 1px dashed black;
}
.cashon_delivary_cart{
	background-color: #ECFAF0;
}
.cashon_delivary_cart_inner{
	background-color:#89BC97;
}
.privacy_policy p {
    font-size: 11px;
    text-align: justify;
    text-justify: inter-word;
}
.privacy_policy p a {
    text-decoration: none;
}












/* dashboard css   */
 
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
.sidebar{
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 260px;
  background: #11101d;
  z-index: 100;
  transition: all 0.5s ease;
}
.sidebar.close{
  width: 78px;
}
.sidebar .logo-details{
  height: 60px;
  width: 100%;
  display: flex;
  align-items: center;
}
.sidebar .logo-details i{
  font-size: 30px;
  color: #fff;
  height: 50px;
  min-width: 78px;
  text-align: center;
  line-height: 50px;
}
.sidebar .logo-details .logo_name{
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  transition: 0.3s ease;
  transition-delay: 0.1s;
}
.sidebar.close .logo-details .logo_name{
  transition-delay: 0s;
  opacity: 0;
  pointer-events: none;
}
.sidebar .nav-links{
  height: 100%;
  padding: 30px 0 150px 0;
  overflow: auto;
}
.sidebar.close .nav-links{
  overflow: visible;
}
.sidebar .nav-links::-webkit-scrollbar{
  display: none;
}
.sidebar .nav-links li{
  position: relative;
  list-style: none;
  transition: all 0.4s ease;
}
.sidebar .nav-links li:hover{
  background: #1d1b31;
}
.sidebar .nav-links li .iocn-link{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar.close .nav-links li .iocn-link{
  display: block
}
.sidebar .nav-links li i{
  height: 50px;
  min-width: 78px;
  text-align: center;
  line-height: 50px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sidebar .nav-links li.showMenu i.arrow{
  transform: rotate(-180deg);
}
.sidebar.close .nav-links i.arrow{
  display: none;
}
.sidebar .nav-links li a{
  display: flex;
  align-items: center;
  text-decoration: none;
}
.sidebar .nav-links li a .link_name{
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  transition: all 0.4s ease;
}
.sidebar.close .nav-links li a .link_name{
  opacity: 0;
  pointer-events: none;
}
.sidebar .nav-links li .sub-menu{
  padding: 6px 6px 14px 80px;
  margin-top: -10px;
  background: #1d1b31;
  display: none;
}
.sidebar .nav-links li.showMenu .sub-menu{
  display: block;
}
.sidebar .nav-links li .sub-menu a{
  color: #fff;
  font-size: 15px;
  padding: 5px 0;
  white-space: nowrap;
  opacity: 0.6;
  transition: all 0.3s ease;
}
.sidebar .nav-links li .sub-menu a:hover{
  opacity: 1;
}
.sidebar.close .nav-links li .sub-menu{
  position: absolute;
  left: 100%;
  top: -10px;
  margin-top: 0;
  padding: 10px 20px;
  border-radius: 0 6px 6px 0;
  opacity: 0;
  display: block;
  pointer-events: none;
  transition: 0s;
}
.sidebar.close .nav-links li:hover .sub-menu{
  top: 0;
  opacity: 1;
  pointer-events: auto;
  transition: all 0.4s ease;
}
.sidebar .nav-links li .sub-menu .link_name{
  display: none;
}
.sidebar.close .nav-links li .sub-menu .link_name{
  font-size: 18px;
  opacity: 1;
  display: block;
}
.sidebar .nav-links li .sub-menu.blank{
  opacity: 1;
  pointer-events: auto;
  padding: 3px 20px 6px 16px;
  opacity: 0;
  pointer-events: none;
}
.sidebar .nav-links li:hover .sub-menu.blank{
  top: 50%;
  transform: translateY(-50%);
}

.one {
  width: 80%;
  margin-left: 10%;
  /* background-color: black; */
  height: 400px;
}

.sidebar .profile-details{
  position: fixed;
  bottom: 0;
  width: 260px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1d1b31;
  padding: 12px 0;
  transition: all 0.5s ease;
}
.sidebar.close .profile-details{
  background: none;
}
.sidebar.close .profile-details{
  width: 78px;
}
.sidebar .profile-details .profile-content{
  display: flex;
  align-items: center;
}
.sidebar .profile-details img{
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 16px;
  margin: 0 14px 0 12px;
  background: #1d1b31;
  transition: all 0.5s ease;
}
.sidebar.close .profile-details img{
  padding: 10px;
}
.sidebar .profile-details .profile_name,
.sidebar .profile-details .job{
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}
.sidebar.close .profile-details i,
.sidebar.close .profile-details .profile_name,
.sidebar.close .profile-details .job{
  display: none;
}
.sidebar .profile-details .job{
  font-size: 12px;
}
.home-section{
  position: relative;
  background: #E4E9F7;
  height: 100vh;
  left: 260px;
  width: calc(100% - 260px);
  transition: all 0.5s ease;
}
.sidebar.close ~ .home-section{
  left: 78px;
  width: calc(100% - 78px);
}
.home-section .home-content{
  height: 60px;
  display: flex;
  align-items: center;
}
.home-section .home-content .bx-menu,
.home-section .home-content .text{
  color: #11101d;
  font-size: 35px;
}
.home-section .home-content .bx-menu{
  margin: 0 15px;
  cursor: pointer;
}
.home-section .home-content .text{
  font-size: 26px;
  font-weight: 600;
}
@media (max-width: 420px) {
  .sidebar.close .nav-links li .sub-menu{
    display: none;
  }
}

/* -----------Table-------------- */
 
table {
    position: absolute;
    left: 55%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-collapse: collapse;
    width: 900px;
    height: 200px;
    border: 1px solid #bdc3c7;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2), -1px -1px 8px rgba(0, 0, 0, 0.2);
    }

  tr {
    transition: all .2s ease-in;
    cursor: pointer;
   }

  th,
  td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    }
  th {
        white-space: nowrap; /* Prevent text wrapping in header */
      }
  #header {
    background-color: #16a085;
    color: #fff;
  }
    th:nth-child(2), td:nth-child(2) {
        width: 100px; 
    }
    
    th:nth-child(3), td:nth-child(3) {
        width: 200px; 
    }

h1 {
    font-weight: 600;
    text-align: center;
    /*background-color: #16a085;*/
    color: #fff;
    padding: 10px;
}

tr:hover {
    background-color: #f5f5f5;
    transform: scale(1.02);
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2), -1px -1px 8px rgba(0, 0, 0, 0.2);
}



/*=======================================*/
/*                footer*/
/*=======================================*/
.btn-get-started {

    font-weight: 400;
    font-size: 25px;
    display: inline-block;
    padding: 20px 60px;
    /*border-radius: 20px;*/
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
    text-decoration: none;
    color: #fff;
    background: #ff4500;
  }
  
  .btn-get-started:hover {
    background: #ff4500;
  }
  .footer{
    background-color: #003556;
}
.footer_contact_address:hover{
    margin-left: 20px;
    transition: 1.30s ease all;
}
.footer_design{
    background-color: #ff4500;
    font-family: "Roboto", sans-serif !important;
   
}
.footer_st {
    text-decoration:none;
}
nav {
    width: 350px;
    display: flex;
    justify-content: space-between;
}

.social_media a {
    width: 50px;
    height: 50px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(-30deg) skew(25deg) translate(0,0);
    box-shadow: -5px 5px 10px rgba(0,0,0,0.5);
    transition: 0.3s all ease-in-out;
}

.social_media a:hover {
    transform: rotate(-30deg) skew(25deg) translate(10px, -10px);
    box-shadow: -20px 20px 30px rgba(0,0,0,0.5);
}

a.facebook:hover {
    background-color: #3a5796;
}

a.twitter:hover {
    background-color: #1c9ceb;
}

a.linkedin:hover {
    background-color: #0371ae;
}

a.instagram:hover {
    background-color: #d12c7a;
}

a svg {
    width: 30px;
    height: 30px;
}

a svg path,
a svg circle {
    transition: 0.3s all ease-in-out;
    fill: #292929;
}

a:hover svg path,
a:hover svg circle {
    fill: #fff;
}
.site_heading_logo{
    border: 2px solid #FFA435;
    border-radius: 5px;
}

@media only screen and (max-width: 768px) {
    table {
        width: 90%;
    }
}
