/*header style */
html, body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.syTop {
	background-color: #fff;
	display: flex;
	justify-content: space-between;
	vertical-align: middle;
}

.left-section {
	display: flex;
	align-items: center;
}

.right-section {
	display: flex;
	align-items: center;
}		
.login-icon {
	display: inline-block;
	cursor: pointer;
	font-size: 24px;
	color: #041551;
	margin-right: 20px;
	transition: color 0.3s ease; 
}
		
.login-icon:hover {
	color: #063a7e; 
}
		
.menu-bar {
	position: relative;
	display: inline-block;
	margin-right: 20px;
}

.menu-bar button {
	padding: 10px 15px;
	border: 1px solid #e4e4e4;
	border-radius: 5px;
	background-color: #fff;
	cursor: pointer;
	font-size: 14px;
}

.menu-bar .dropdown-content {
	display: none;
    position: absolute;
	background-color: #fff;
	width: 100vw; 
	min-width: 400px;
	z-index: 100; 
	top: 100%; 
	right: 0;
	margin-top : 25px;
	margin-right: -40px;
}

.menu-bar .dropdown-content a {
	color: #041551;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	font-size: 14px;
}

.menu-bar .dropdown-content a:hover {
	background-color: #f1f1f1;
}

.menu-bar:hover .dropdown-content {
	display: block;
}

/* end */		
.image-container {
    display: flex;
    justify-content: center; /* Center horizontally */
}


.menu-title{
	font-size: 14px; 
	font-weight: bold;
	margin-left: 5px;
}

.menu-border{
	width: auto;
    padding: 5px; 
	border: 1px #ddd ; 
	border-radius: 10px;
	background-color: #fff; 
	transition: background-color 0.3s ease, box-shadow 0.3s ease; 
	margin: 5px 10px;
	vertical-align: middle;
	cursor: pointer;
}

.button-row {
	justify-content: space-between; /* Distribute space between items */	margin-bottom: 10px;
	margin-left: 10px;
	text-align: center;
}
        
        
.grey-button {
	display: inline-block;
	width:100%;
	margin: 10px 0px;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: bold;
	color: #000; 
	background-color: #f2f2f2; 
	border: none;
	border-radius: 15px;
	text-align: center;
	cursor: pointer;
	text-decoration: none; /* Remove underline for link buttons */
}

.grey-button:hover {
background-color: #c0c2c6; 
}


.show-more-button {
  color: #8b8b8b;
  margin-right:10px;
  background: transparent;
  text-decoration: none;
  display: inline-block;
}

.show-more-button:hover {
  color: #8b8b8b; /* Same text color on hover */
  background: transparent; /* Same background on hover */
  text-decoration: none;
}
.product-info{
	padding:0px 5px;
	text-align:center;
	font-weight: bold;
}

.order-border{
	width: auto;
    padding: 10px; 
	border: 1px #ddd ; 
	border-radius: 10px;
	background-color: #fff; 
	transition: background-color 0.3s ease, box-shadow 0.3s ease; 
	margin: 10px 10px;
	vertical-align: middle;
	cursor: pointer;
	align-items: center;
	justify-content: space-between;
}	

.icon{
	font-size: 14px;
	margin-left: 5px;
}

.address-text{
	font-size: 14px;
	flex: 1;
}

.show-more-button2 {
	font-size: 14px;
	color: #8b8b8b;
	background: transparent;
}

.show-more-button2:hover {
  color: #8b8b8b; /* Same text color on hover */
  background: transparent; /* Same background on hover */
  text-decoration: none;
}

 .inputDiv {
 margin-bottom: 10px;

}

 .inputDiv input[type="text"] {
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 4px;
            width: 100%;
    		min-width: 50px;
            max-width: 220px;
        }   
             
.inputDiv span.redSpan {
	color: red;
	margin-right: 5px;
}
.radio,.radio_none {
            display: inline-block;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            border: 2px solid #041551;
            cursor: pointer;
            margin-right: 10px;
            position: relative;
        }
.radio_none,.radio {
            background-color: #fff;
        }

.radio.selected, .radio_none.selected {
    background-color: #041551;
    color: #fff; 
}
 
.inputDiv select {
            padding: 8px;
            font-size: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            background-color: #fff;
            cursor: pointer;
            max-width: 300px;
            width: 100%;
}
.inputDiv select option {
padding: 8px;
}
.order-details {
    align-items: center;
    text-align: center;
    display: flex;
    padding: 10px;
    justify-content: space-between;
}


.order-image {
    width: 80px;
    height: auto;
    max-width: 80px; /* Adjust according to your design */
}

.order-title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.order-info {
    font-size: 14px;
}

.order-price {
    font-weight: bold;
    margin-bottom: 10px;
}

.order-name {
    font-weight: bold;
    margin-bottom: 5px;
}


#cover{
	position: fixed;
	left: 0px;
	top: 0px;
	background:rgba(0, 0, 0, 0.68);
	width:100%;  /*宽度设置为100%，这样才能使隐藏背景层覆盖原页面*/
	height:100%;
	filter:alpha(opacity=60);  /*设置透明度为60%*/
	opacity:0.6;  /*非IE浏览器下设置透明度为60%*/
	display:none;
	z-Index:999;
}
	
.coverInfo {
	background:#fff;
	z-index: 1000;/* Above #cover */
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 20px;
	width: 300px;
	max-width: 90%; 
	height: auto;
	display: none;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);	
}

.coverInfo.fade-in {
    display: flex;
    animation: fadeIn 0.5s ease forwards; /* Animation name, duration, timing function, and fill mode */
}

.coverInfo2 {
	background:#fff;
	z-index: 1000;/* Above #cover */
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0%);
	padding: 20px;
	width: 100%;
	height: auto;
	display: none;
	border-top-left-radius: 10px; 
    border-top-right-radius: 10px; 
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);	
}

.coverInfo2.fade-in {
    display: flex;
    animation: fadeIn 0.5s ease forwards; /* Animation name, duration, timing function, and fill mode */
}

.popup-title {
	font-weight:bold;
    font-size: 18px;
    color: #333;
    margin: 0 0 10px;
}

.addItem {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    width: 100%;
}


.spanLeft {
    font-weight: bold;
    display: inline-block;
}


.spanRight {
    flex: 1;
    margin-left: 10px;
}

input[type="text"],
textarea,
select {
    width: 85%;
    padding: 8px;
}

textarea {
    resize: vertical;
    height: 100px;
}

@keyframes fadeIn {
    from {
	opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.proMain a {
	color: #444;
}
	
#proName {
	white-space: nowrap;
	overflow: hidden;
    text-overflow: ellipsis;
}
	
.goldBtn {
	background-color: #c5a639;
	border-radius: 15px;
    color: #fff;
    text-align: center;
	padding: 9px 0px;
    width: 150px;
    margin: 0 auto;
    cursor: pointer;
}
	
.goldBtn:hover {
	background-color: #a1822e; /* Darken background color on hover */
    transform: scale(1.05); /* Scale up slightly on hover */
}

.blueBtn2 {
	background-color:#041551;
	border-radius: 15px;
    color: #fff;
    text-align: center;
	padding: 9px 0px;
    width: 150px;
    margin: 0 auto;
    cursor: pointer;
}
	
.blueBtn2:hover {
	background-color: #063a7e; 
    transform: scale(1.05); 
}

.button-container {
  display: flex;
  padding:5px;

}
	
.category-list {
	padding: 0;
	margin: 0;
}

.category-item {
	padding: 10px;
	background-color: #f1f2f7;
	color: #929499;
	margin-top: 2px;
	cursor: pointer;
	border-left: 2px solid transparent;
	font-size: 14px;	    
}
        
.category-item:hover {
	border-left-color: #013f64; 
	color: #013f64; 
}

hr {
    margin: 1rem -1vh;
    border-top: 1px solid rgb(214, 214, 214)
}
   
.product-title{
	margin-top: 5px;
	margin-left: 5px;
	font-size: 1.5em;
	font-weight: bold; 
	color: #333;
}
        
.product-list {
	width: auto;
    padding-top: 5px; 
	padding-left: 5px; 
	border: 1px #ddd ; 
	border-radius: 10px;
	background-color: #fff; 
	transition: background-color 0.3s ease, box-shadow 0.3s ease; 
	margin-bottom: 15px;
	margin-right:10px;
	vertical-align: middle;
	cursor: pointer;
}
		
.product-row{
	 display: inline-block;
	 vertical-align: middle;
 	 width: auto;
	 height: auto; 
	 margin: 5px;
	 padding: 5px;
}
.product-item {
	width: 100px;
	margin:10px;
}
		
.product-item img {
	width: 110px; 
	height: 110px;
	object-fit: cover; 
    border-radius: 5px; 
    margin-bottom: 10px; 
	transition: transform 0.3s ease;
}
        
@media (max-width: 768px) {
	.product-row {
		width: 100%; 
		max-width: 100px; 
		height: auto; 
		margin:2px;
		padding:2px;
	}
				
.product-row .product-item img {
	width: 80px; 
	height: 80px;
	}
}

.product-details {
	flex: 1;
}
        
.proName {
	font-weight: bold; 
}


.proPrice {
	color: red; 
}

.paywayselect{
	margin-left: 5px;
	border-radius: 5px; 
	background-color: #e9e9e9;
	font-size: 1.5em;
	width: 120px;
	height:auto;
	border: none; 
	outline: none;
}

* html #service {
	margin-top: 258px;
	position: absolute;
	top: expression(eval(document.documentElement.scrollTop));
}

/*页码*/
.pages {
  margin: 30px auto;
  text-align: right;
}
.pages .page-panel {
  vertical-align: top;
  text-align: center;
  display: inline-block;
}
.pages .page-panel a {
  float: left;
  margin-left: 5px;
  display: block;
  padding: 3px 15px;
  min-width: 28px;
  line-height: 24px;
  word-break: keep-all;
  border: 1px solid #ededed;
  text-decoration: none;
  color: black;
}
.pages .page-panel a:hover , .pages .page-panel .on {
  background: #333;
  color: #fff;
  border-color: #333;
}
.pages .page-panel span {
  float: left;
  display: block;
  width: 30px;
  line-height: 24px;
}
.pages .page-panel input {
  float: left;
  display: block;
  width: 70px;
  height: 32px;
  line-height: 30px;
  margin-left: 5px;
  text-align: center;
  padding-left: 0;
  border: 1px solid #e4e4e4;
  outline: none;
  font-size: 12px;
}
.column{
	width:25%;
	text-align: center;
}
.pages .page-panel .prev , .pages .page-panel .next {
  padding: 3px 13px;
}
/*end 页码*/
.row-container {
    display: flex;
    flex-direction: column;
}

.profile-icon {
    font-size: 50px;
    margin-right: 15px;
    color: #041551;
}
.profile-info  {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.profile-info .welcome-text {
    font-size: 16px;
    color: #666;
    margin: 0;
}
.profile-info .username {
    font-size: 18px;
    font-weight: bold;
    color: #041551;
    margin: 0;
    max-width: 100px;
}
.logout-button {
	width:80px;
    font-size: 14px;
    color: #fff;
    background-color: #041551;
    border: none;
    border-radius: 20px;
    padding: 10px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s;
}
.logout-button:hover {
   background-color: #063a7e;
}

.order-table {
    width: 100%;
}
.order-table th, .order-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px  #ddd;
}
.order-table th {
    background-color: #f9f9f9;
    font-weight: bold;
}


.product-checkbox {
     margin-right: 10px;
     background-color: #041551;
}

#total-price-container {
     position: fixed;
     bottom: 60px;
     left: 0;
     width:100%; 
     background-color: #ffffff;
     border-top: 1px solid #ddd;
     padding: 10px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     z-index: 800;
 }
 #total-price {
     font-size: 16px; 
font-weight: bold;
color: #041551; 
 }
 #buy-now-button {
     background-color: #041551;
     color: #ffffff;
     border: none;
     border-radius: 15px;
     padding: 10px 20px;
     cursor: pointer;
     text-align: center;

 }
#buy-now-button:hover {
    background-color: #063a7e; 
	transform: scale(1.05); 
 }
 .delete-button {
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    color: #dc3545;
    font-size: 20px;
}
.profile-container {
	width: auto;
   display: flex;
   align-items: center;
   padding: 10px;
   border: 1px  #ddd;
   border-radius: 10px;
   background-color: #fff;
   margin: 10px 10px;
   justify-content: space-between;
}
.margin-top{
	margin-top: 8px;
}

.margin-bottom{
	margin-bottom: 12px;
}
.row-div{
	padding:15px; 
}

.row{
  display: flex;
  flex-wrap:wrap;  
}

.grey-bg{
	background-color: rgba(255, 255, 255, 0.9);
}

.blog-meta{
    font-size: 12px; 
    margin_top: 10px;
    margin-bottom: 10px; 
}

.gold-text {
  color: #c7ab6a;
}

.section-title h3 {
  text-align: center; 
  position: relative;
}

.section-title p {
  text-align: center; 	
  font-size: 10px;
  color: #555;

}

.text-black{
  color: black;
}

a.boxed-btn {
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  background-color: transparent;
  color: #c7ab6a;
  padding: 10px 20px;
  border: 2px solid #c7ab6a;
  border-radius: 50px;
  width: 100px;
}

a.boxed-btn:hover {
  background-color: #c7ab6a;
  color: white;
}

.company-description {
    line-height: 1.6; 
    color: black; 
    padding: 10px 0; 
    font-size: 1.1em; 
    word-spacing: 2px;
}
.milestones-container {
    text-align: center;
    margin-top: 20px;
    overflow-x: auto; 
}

.milestones-line {
    display: inline-flex;
    justify-content: center;
    gap: 20px;  /* Adjust spacing between the years */
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
}

.year {
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

.year:hover {
  	color: #c7ab6a;
}

.year.active {
    color: #c7ab6a;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

/* Styling for pagination links */
.pagination a {
    text-decoration: none;
    display: inline-block;
    padding: 8px 12px;
    margin: 0 5px;
    border-radius: 5px;
    background-color: #f0f0f0;
    color: #333;
    font-size: 14px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Active page styling */
.pagination a.current {
    background-color: #c6b539;
    color: white;
    font-weight: bold;
}

/* Hover effects */
.pagination a:hover {
    background-color: #c6b539;
    color: white;
}

/* Styling for previous and next buttons */
.pagination-prev a, .pagination-next a {
    display: flex;
    align-items: center;
    font-size: 14px;
}

/* Add some space between the icon and text */
.pagination-prev a i, .pagination-next a i {
    margin: 0 5px;
}

.info {
    font-size: 12px;
    margin: 10px;
    padding: 5px;
    color: #333; 
}

.info-container{
	height: 200px;
	background-color: #f6f6f6;
}

.mobile-content {
  max-height: 200px;     /* limit height */
  overflow-y: auto;      /* vertical scrollbar when needed */
  padding: 15px;
}

.mobile-content p,
.mobile-content span,
.mobile-content strong {
  font-size: 14px !important;
  line-height: 1.4 !important;
  text-align: left !important;
  margin: 0 0 5px 0 !important;
  word-break: break-word !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

.certificate-img {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 10px 0;
}

/* Search Icon */
.search-bar-wrapper i {
  font-size: 1rem;
}

/* Filters */
.trading-filters {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.trading-filters::-webkit-scrollbar {
  display: none;
}

.filter-block {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.filter-title {
  font-weight: 500;
}

.nav-item:focus {
  box-shadow: none;
  border-color: #ccc;
}
.content {
  padding: 15px;
}

.content p,
.content span,
.content strong {
  font-size: 14px !important;
  line-height: 1.4 !important;
  text-align: left !important;
  margin: 0 0 5px 0 !important;
  word-break: break-word !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
}
