.link-template {
    display: flex;
    justify-content: center; /* Căn giữa .row theo chiều ngang */
}
header {
    background: #19191e; 
	
}
/* Container overlay nằm bên trong slider */
.author-intro-overlay {
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 10;
  pointer-events: none; /* để không cản bấm slider */
}

.overlay-gradient-fade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
  z-index: 5;
  pointer-events: none;
  animation: overlayFadeOut 3s ease-out forwards;
}
.author-intro-overlay {
  position: absolute;
  top: 0;      /* ✅ không còn bị lệch xuống */
  left: 0;
  padding: 40px; /* ✅ giữ khoảng cách chữ như cũ */
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

@keyframes overlayFadeOut {
  0%   { opacity: 1; }
  100% { opacity: 0; }
}
/* Chữ tiêu đề */
.title-animation,
.author-animation {
	color: white;
	font-weight: 100;
	opacity: 0;
	animation: textIntro 3s linear forwards;
	text-shadow: 0 2px 4px rgba(0,0,0,0.6);
	letter-spacing: 1px;
	margin-top: 30px;
	padding-right: 60px;
}

/* Tiêu đề chính */
.title-animation {
	/*font-family: 'Great Vibes', cursive;*/  
	font-family: 'Audiowide', sans-serif;
	font-size: 42px;
	margin-bottom: 5px;
	line-height: 1.2;
}

@media (max-width: 599px) {
  .title-animation {
    font-size: 20px;
  }
}


.title-animation::first-letter {
  text-transform: uppercase;
}
/* Dòng Author */
.author-animation {
  font-size: 18px;
  animation-duration: 3s;
}
.desc-wrapper {
  max-height: 500px;
  max-width: 500px;
  overflow: hidden;
}
.desc-animation {
	margin-top: 30px;
  font-size: 14px;
  color: white;
  font-weight: 100;
  opacity: 0;
  animation: descFade 3s ease forwards;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  line-height: 2;
  white-space: normal;
  display: block;              /* ✅ QUAN TRỌNG để xuống dòng */
  word-break: break-word;      /* ✅ Nếu có từ dài */
}
@media screen and (max-width: 768px) {
  .desc-animation {
    display: none !important;
  }
}

@keyframes descFade {
  0%   { opacity: 0; }
  30%  { opacity: 1; }
  100% { opacity: 0; }
}


/* Keyframes cho hiệu ứng */
@keyframes textIntro {
  0% {
    opacity: 0;
    letter-spacing: 1px;
  }
  30% {
    opacity: 1;
    letter-spacing: 2px;
  }
  100% {
    opacity: 0;
    letter-spacing: 6px; /* 👈 Dãn chữ ra dần đều */
  }
}
.max-width-img {
  filter: grayscale(100%) contrast(120%) brightness(0.5) blur(2.5px);
  transition: filter 1.2s ease-in-out;
}

.max-width-img.loaded {
  filter: grayscale(0%) contrast(100%) brightness(1) blur(0);
}




/* Row chính */
.row {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	background: #19191e;
	width: 100%;
}

/* Bên trái: nội dung chính */
.col-md-8 {
	flex: 1;
	padding-right: 15px;
	min-width: 0;
}

/* Bên phải: sidebar */
.col-md-4 {
	width: 380px;
	max-width: 380px;
	padding-left: 15px;
	background: #19191e;
	margin-left: auto;
	position: sticky;
	top: 20px; /* cách mép trên khi dính */
	align-self: flex-start;
	height: fit-content;
}

@media (max-width: 768px) {
	.row {
		flex-direction: column;
	}

	.col-md-8,
	.col-md-4 {
		padding: 0px;
		width: 100%;
		max-width: 100%;
	}

	.col-md-4 {
		position: static; /* ✅ Tắt sticky trên mobile */
		top: auto;
	}
}

span.post.post-post.current-item {
    display: none;
}

.col-md-4 .titleone {
	font-size: 22px;
	margin-bottom: 15px;
}

.post-extra-content {
    margin-top: 40px;
    border-radius: 10px;
}

.breadcrumbs {
    font-size: 14px;
    margin-bottom: 20px;
    color: #aaa;
	text-align: left;
}

.post-actions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
    background-color: transparent;
}

.post-actions-grid .action-item {
    flex: 1 1 calc(33.33% - 10px); /* 4 ô, trừ khoảng cách */
    /*background-color: #2a2a2a;*/
    border-radius: 4px;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
	height: 50px;
	cursor: default;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.post-actions-grid .action-item img {
    width: 20px;
    height: 20px;
}

.comment-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    gap: 5px;
}

.comment-count {
    font-size: 14px;
    color: #fff;
}




.post-description h2,
.post-tags h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #eee;
    border-top: 1px solid #444;
    /* padding-bottom: 5px; */
    padding-top: 10px;
}

.description-content {
    font-size: 14px;
    line-height: 1.7;
}


.post-tags .tag {
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    margin: 5px 5px 0 0;
    font-size: 12px;
}

.price-box {
	font-size: 32px;
	color: #fff;
	font-weight: bold;
	text-align: center;
	margin: 10px 0 20px;
}

.product-buttons-wrapper button.add-to-cart-btn,
.product-buttons-wrapper button.download-button-free {
	width: 100%;
	padding: 25px 20px;
	font-size: 16px;
	background: linear-gradient(to bottom, #333333, #505050);
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s ease;
	margin: 0;
	font-weight: 600;
	color: #fff;
  border: 1px solid var(--white-alpha-10);
}

 

.product-buttons-wrapper button.add-to-cart-btn:hover,
.product-buttons-wrapper button.download-button-free:hover {
	background: linear-gradient(to bottom, #19191e, #3b3b3b);
}

.formats-box h4,
.specs-box h4 {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 5px;
	color: #ccc;
}

.formats-box div {
	border: 1px solid #393939;
	padding: 10px;
	border-radius: 4px;
	font-size: 14px;
}

.specs-box table {
	width: 100%;
	font-size: 14px;
}

.specs-box td {
	padding: 5px 0;
	vertical-align: top;
	color: #ddd;
}

.author-box {
	display: flex;
	align-items: center;
	margin-top: 30px;
	border-top: 1px solid #333;
	padding-top: 15px;
}

.avatar-column img.vgehoidshvsd {
	width: 50px;
	height: 50px;
	border-radius: 50%;
}

.info-column {
	margin-left: 10px;
}

.info-column a {
	color: #fff;
	font-weight: bold;
	text-decoration: none;
}

.post-followers {


	margin-top: 3px;
    text-align: left;  
}

#license-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9998;
}


#license-popup {
	text-align: left;
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    color: black;
    z-index: 9999;
    padding: 30px 20px;
    max-width: 600px;
    width: 90%;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

#license-popup h3 {
    margin-top: 0;
    font-size: 20px;
    margin-bottom: 15px;
}

#license-popup p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

#license-popup .close-popup {
    position: absolute;
    top: 8px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}


.card-width-table .card-footer, .table tr td {
    border-top: 1px solid rgb(255 255 255 / 0%) !important;
	    background: #19191e;

}



.table-bordered {
    border: 1px solid #ffffff;
    line-height: 18px;
    width: 100%;
}

@media (min-width: 1600px) {
    .template-page-product-management {
        height: auto;
        margin: 0 auto;
        padding: 10px 45px;
 
		background: #19191e;
    }
}
@media (max-width: 1599px) {
    .template-page-product-management {
        width: auto;
        height: auto;
        margin: 0 auto;
        padding: 20px 20px;
		background: #19191e;
    }
}
	
#show-more-posts {
    display: block;
    margin: 20px auto; /* Căn giữa */
    padding: 10px 20px;
    font-size: 14px;
    text-transform: uppercase; /* In hoa */
    color: red; /* Màu chữ cam */
    background-color: transparent; /* Nền trong suốt */
    border: none; /* Bỏ bo viền */
    cursor: pointer;
}

h1.related-products-title {
    font-size: 18px;
    font-weight: 400;
	color: #ddd;
}

.product-price-custom {
	font-weight: 700!important;
    margin-top: 5px;
	color: #ddd;
    background-color: #e9e9e9;
    border-radius: var(--border-radius-regular);
    height: 30px;
    display: flex;
    align-items: center; /* Căn giữa theo chiều dọc */
    justify-content: center; /* Căn giữa theo chiều ngang */
    text-align: center;
}


.entry-bottom {
    margin: 10px;
}


.comments h3.comment-reply-title {
		border-top: 1px solid rgba(0, 0, 0, .1);
}

.comments,.entry-bottom {
   width: 100%;}	
   


.yarpp-related h3 {
	padding-left: 5px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

@media (max-width: 1600px){
div.breadcrumbs{
overflow: hidden;
text-transform: ;
white-space: nowrap;
text-overflow: ellipsis; 
}}

.jquerycssmenu {
height:50px
}



.yarpp-thumbnails-horizontal .yarpp-thumbnail {
border: 0px solid hsla(0,0%,50%,.1);
vertical-align: top;
}



/* CSS cho slider và thumbnails */
.slider-container {
	position: relative;
	width: 100%;
	max-width: 100%; /* Điều chỉnh kích thước slider theo ý muốn */
	margin: 0 auto; /* Canh giữa slider */
	display: flex;
	flex-direction: column;
	align-items: center;
    background: linear-gradient(to bottom, #19191e, #2a2a2a);
    border-radius: 8px;
}

.slider {
	overflow: hidden;
	position: relative; /* Thêm thuộc tính position để hiển thị nút previous và next */
	width: 100%;
}



@media (max-width: 480px) {
	.slider {
		height: 380px; /* Đảm bảo chiều cao cố định */		
	}
}

/* Thêm đoạn này để đặt chiều cao 480px trong khoảng 480px - 725px */
@media (min-width: 480px) and (max-width: 725px) {
	.slider {
		height: 580px;
	}
}

.slider ul {
list-style: none;
padding: 0;
margin: 0;
display: flex; /* Hiển thị các hình ảnh trong slider theo chiều ngang */
align-items: center; /* Canh giữa hình ảnh theo chiều dọc */
transition: transform 0.3s ease-in-out; /* Hiệu ứng chuyển đổi giữa các hình ảnh */
width: 100%;
}

.slider ul li {
flex: 0 0 100%; /* Các hình ảnh trong slider chiếm 100% chiều rộng màn hình */
padding: 0;
}


/* CSS cho nút previous và next */
.slider-container .prev-next-btns {
position: absolute;
top: 42%!important;
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 1; /* Đảm bảo nút previous và next hiển thị trên slider */
}

.slider-container .prev-next-btns button {
    background-color: transparent;
    border: none;
    padding: 10px;
    font-size: 60px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0);
    color: #bfbfbf;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
	 line-height: 0.5;
     margin: 20px;	 
}


.col-md-8:hover .prev-btn,
.prev-btn:hover {	
    background-color: rgba(0, 0, 0, 0.5)!important;
	color: #fff!important;

}
.col-md-8:hover .next-btn,
.next-btn:hover {
    background-color: rgba(0, 0, 0, 0.5)!important;
	color: #fff!important;

}



@media (max-width: 768px) {
.slider-container .prev-next-btns button {
padding: 5px 5px;
margin: 0px;
}}

@media (max-width: 768px) {
.col-md-4{
bottom:-60px!important;}}

@media (max-width: 768px) {
.thumbnailszzz{
margin-bottom:-80px;}}



/* Tạo hình ảnh hình tròn */
img.vgehoidshvsd {
height: 45px;
width: 45px; /* Đảm bảo cả chiều rộng và chiều cao bằng nhau */
background: #ccc;
object-fit: cover;
border-radius: 50%;
}
.wrap1 {
width: 1610px;
height: auto;
margin: 0 auto 0 auto;
padding: 10px 45px;	
box-shadow: 0 1px 10px rgb(255 255 255 / 20%);
}

.btn {
letter-spacing: 1px;
text-transform: uppercase;
width: 100%;
}
.table td {
background-color: #fff; 
}

.table-bordered, .table-bordered td, .table-bordered th {
border: 1px solid #ffffff00;
line-height: 18px;
}


	
@media (max-width: 768px){
.id-overlay {display:none;}} 



@media (max-width: 480px) {
.slider img {
	width: 100%;
	height: 380px;
	object-fit: contain;
}}

@media (min-width: 481px) {
    .maxve-id-1 .slider img {
        width: auto;
        max-height: 800px !important;
        object-fit: contain;
    }

    .maxve-not-1 .slider img {
        width: auto;
        height: 800px !important;
        object-fit: contain;
    }
}




button#load-template-btn {
    display: none;
}
#template-container {
    display: block; /* Đảm bảo hiển thị */
    padding: 20px;  /* Tùy chọn để làm nổi bật */

}
.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    color: #888;
}

.thumbnail-item-wrapper-related-posts:hover .overlay {
  display: block !important;
  opacity: 1 !important; /* Hiển thị lớp phủ khi di chuột */
}

 

@media (min-width: 480px) {
  .related-posts-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    min-height: 666px;
  }
}

@media (max-width: 480px) {
  .related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 170px);
    gap: 10px;
    flex: 1;
    margin-left: auto;
    align-content: center;
    text-align: center;
    justify-content: space-evenly;
  }
  .thumbnail-item-wrapper-related-posts {
    width: 170px;
  }  
}

@media (min-width: 480px) {
  .thumbnail-item-wrapper-related-posts {
    min-width: 200px;
  }  
}

.thumbnail-item-wrapper-related-posts {
  display: flex;
  flex-direction: column;
  height: auto;
  flex-grow: 1;
  max-width: 312px;
  margin-bottom: 10px;
  opacity: 1!important;
}


.thumbnail-item {
  text-align: center;
}
@media (min-width: 480px) {
  .thumbnail-img-related-posts {
    width: 100%;
  min-width: 200px;
  max-width: 310px;    
    height: 212px;
    object-fit: cover;
    border-radius: 10px;
    background: #2d2d2d;
  }
}

@media (max-width: 480px) {
  .thumbnail-img-related-posts {
    width: 170px;
    height: 170px;
    object-fit: cover;
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .thumbnail-placeholder-related-posts {
    background-image: url("https://cdn.maxve.org/icons/dark.jpg");
    background-size: cover;
    width: 170px;
    height: 170px;
    border-radius: 5px;
  }
}

@media (min-width: 480px) {
  .thumbnail-placeholder-related-posts {
    width: 100%;
    height: 212px;
    object-fit: cover;
    border-radius: 10px;
    background: #19191e;
  }
}

.thumbnail-item-wrapper {
    display: flex;
    flex-direction: column;
    height: auto;
    flex-grow: 1;
    min-width: 180px;
    max-width: 280px;
    margin-bottom: 10px;
}
.content-and-sidebar {
    display: flex;
    align-items: flex-start;
}

.thumbnail-item {
    text-align: center;
}
@media (min-width: 480px) {
.thumbnail-img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 10px;
	background: #19191e;
}}

@media (max-width: 480px) {
.thumbnail-img {
    width: 185px;
    height: 185px;
    object-fit: cover;
}}

.thumbnail-title {
font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    line-height: 1.2; /* Điều chỉnh chiều cao dòng để tránh cắt chữ */
    text-align: left;
    margin: 10px 0px 0px;
    /*border-bottom: 1px solid rgba(0, 0, 0, .1);*/
		width: 100%; /* Để tiêu đề căn đều theo phần nội dung */
        max-width: 180px; /* Đảm bảo không quá dài */
		color: #19191e;
}

.thumbnail-meta {
    font-size: 12px;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
	margin: 5px 0px 10px;
	color: #19191e;
    text-transform: capitalize;
	border-top: 1px solid rgba(0, 0, 0, .1);
}
@media (max-width: 480px) {
.thumbnail-placeholder {
    background-image: url('https://cdn.maxve.org/icons/dark.jpg');
    background-size: cover;
    width: 185px;
    height: 185px;
    border-radius: 5px;
}}

@media (min-width: 480px) {
.thumbnail-placeholder {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 10px;
        background: #ffffff;
}}

#articles, #featured-articles {
    min-height: 70vh;
}

.an-display-view{color: #ddd;}

div.type {
    float: right;
    margin: 0px;
	margin-left: 5px;
    color: #ddd;
    border-radius: 3px;
    text-align: center;
                margin-top: 0px!important;
	width: 27px;
}



.formats,.product-price {
 color: #ddd;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; 
}

@media (max-width: 480px) {
.size-controls {
display: none!important;
}}

@media (max-width: 480px) {
.an-display-view {
display: none;
}}

.an-display-view {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Ẩn nút Like và Bookmark mặc định */
.thumbnail-item-wrapper-related-posts .like-button,
.thumbnail-item-wrapper-related-posts .bookmark-button {
  top: 5px; /* Khoảng cách từ phía trên */
  color: white; /* Màu chữ */
  cursor: pointer; /* Con trỏ chuột */
  z-index: 10; /* Đảm bảo nút nằm trên lớp khác */
  display: none; /* Ẩn mặc định */
}

/* Vị trí của nút Like và Bookmark */
.thumbnail-item-wrapper-related-posts .like-button {
  left: 5px; /* Nằm bên trái */
}

.thumbnail-item-wrapper-related-posts .bookmark-button {
  right: 5px; /* Nằm bên phải */
}

.thumbnail-item-wrapper-related-posts:hover .like-button,
.thumbnail-item-wrapper-related-posts:hover .bookmark-button {
  display: block; /* Hiển thị nút khi hover */
}
.author-row {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    margin-top: 10px;
}

.avatar-column {
    margin-right: 20px; /* Khoảng cách giữa cột avatar và cột thông tin */
    display: flex;
    align-items: center; /* Căn giữa ảnh avatar theo chiều dọc */
}

.info-column {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Căn giữa tên tác giả và followers theo chiều dọc */
}
img.vgehoidshvsd {
    height: 45px;
    width: 45px;
    background: #ccc;
    border-radius: 50%;
}


.interaction-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
 

/* Tạo tooltip khi di chuột vào nút Comment */
.comment-section::after {
    content: 'Comment';
    position: absolute;
    top: 30px; /* Khoảng cách từ tooltip đến nút */
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    font-size: 14px;
    z-index: 10;
}

/* Hiệu ứng khi di chuột vào */
.comment-section:hover::after {
    opacity: 1;
    transform: translate(-50%, -10px); /* Hiệu ứng di chuyển nhẹ lên trên */
}

.comment-section {
    padding: 0px 5px;
    border: none;
    cursor: pointer;
    border-radius: 8px!important;
}

.content-row {
    display: flex;
    align-items: center;
    gap: 10px; /* Khoảng cách giữa các phần tử */
}

.formats, .type {
    display: inline-block; /* Hiển thị trên cùng một dòng */
    width: auto;           /* Tự động điều chỉnh chiều rộng theo nội dung */
    margin-right: 10px;    /* Khoảng cách giữa các phần tử */
    vertical-align: top;   /* Canh chỉnh trên cùng nếu chiều cao khác nhau */
}



.yarpp-related .yarpp-thumbnail-title {
font-size: 14px;}

.gallery-metadata {
	border-top: 1px solid rgba(0, 0, 0, .1);
    display: flex;
    justify-content: space-between;
    width: 94%;
}
				




	
.an-display-view, div.type, div.formats {
	text-transform: capitalize;
    font-size: 12px;
    font-weight: 400;
}

button.close-share-menu {
    color: #ffffff;
    float: right;
    font-size: 20px;
    font-weight: bold;
    border: none;
    background-color: #ffffff00;
    margin: 0;
    padding: 0;
}

button.close-share-menu:hover,
button.close-share-menu:focus {
    color: #505050;
    text-decoration: none;
    cursor: pointer;}

button.share-btn {
  border: none;
  background-color: #ffffff00;
  margin: 0;
  padding: 0;
  width: 45px;
  height: 34px;
}

/* Nút chia sẻ chính */
.share-button {
    position: relative; /* Giữ vị trí tương đối để sử dụng trong JavaScript */
}

#share-btn {
    font-size: 16px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: black;
}

/* Dropdown menu chia sẻ */
.share-menu {
    display: none; /* Ẩn mặc định */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid var(--white-alpha-10);
    background: var(--background-dark);
    box-shadow: var(--shadow-medium);
    border-radius: 10px;
    padding: 10px;
    width: 250px;
    z-index: 1000;
}


.share-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.share-menu ul li {
    margin-bottom: 5px;
}

.share-menu ul li a {
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    padding: 0px;
    border-radius: 5px;
    transition: background-color 0.2s ease-in-out;
}

.share-menu ul li a:hover {
    background-color: #f2f2f2; /* Đổi nền khi hover */
}

.share-menu ul li a i {
    margin-right: 10px;
    font-size: 18px;
}

/* Các màu icon riêng biệt */
.facebook i { color: #3b5998; } /* Màu Facebook */
.whatsapp i { color: #25d366; } /* Màu WhatsApp */
.twitter i { color: #1da1f2; } /* Màu Twitter */
.linkedin i { color: #0077b5; } /* Màu LinkedIn */
.reddit i { color: #ff4500; } /* Màu Reddit */
.telegram i { color: #0088cc; } /* Màu Telegram */
.email i { color: #D44638; } /* Màu Email */
.line i { color: #00c300; } /* Màu Line */
.pinterest i { color: #bd081c; } /* Màu Pinterest */

/* Đường viền và căn chỉnh của các icon */
i {
    width: 24px;
    text-align: center;
}

/* Nút đóng */
.close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.post-followers{font-size: 11px;}

.author-row {
    display: flex;
}

.avatar-column {
    margin-right: 20px; /* Khoảng cách giữa cột avatar và cột thông tin */
    display: flex;
    align-items: center; /* Căn giữa ảnh avatar theo chiều dọc */
}

.info-column {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Căn giữa tên tác giả và followers theo chiều dọc */
}

#share-tooltip {
    position: absolute;
    visibility: hidden;
    color: white!important;
    background-color: black!important;
    font-size: 14px;
    padding: 5px;
    border-radius: 5px;
	z-index: 1000; 
}

@media (min-width: 768px) {
.yarpp-related {
    margin-top: 0px!important; }}
	
@media (max-width: 768px) {
.yarpp-related {
    margin-top: 60px; }}
				
.sleft {
    margin-bottom: 10px; /* Khoảng cách giữa các biểu tượng chia sẻ */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.sleft a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
	cursor: pointer; /* Thêm thuộc tính này để hiển thị hình bàn tay khi di chuột vào */
}

.social-share-container2 {
	margin-left: -50px;
    display: flex;
    margin-top: -100px;
    justify-content: flex-start; /* Căn trên */
    align-items: center; /* Căn giữa theo chiều ngang */
   
}

.single-share1 {
    display: flex;
	height: 20px;
}

.sleft1 {
    margin-top: 10px; /* Khoảng cách giữa các biểu tượng chia sẻ */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
}


@media (min-width: 1600px) {
.social-share-container3 {
    display: none;
}}





.thumbnailszzz ul {
list-style: none;
padding: 0;
margin: 0;
display: flex; 
justify-content: left; 
}

.thumbnailszzz li {
display: inline-block;
margin: 5px;
}
@media (max-width: 480px) {
  .thumbnailszzz img {
    max-height: 30px!important;
  }
}


.thumbnailszzz img {
  width: auto; /* Điều chỉnh kích thước hình thu nhỏ trong danh sách theo ý muốn */
  max-height: 60px;
  cursor: pointer;
  border: 2px solid transparent; /* Thêm đường viền mặc định cho hình thu nhỏ */
}

/* Thêm hiển thị active cho thumbnail khi được chọn */
.thumbnailszzz li.active img {
border: 2px solid #ddd; /* Thay đổi hiển thị chỉ số active theo ý muốn */
}

.table td, .table th {
    padding: .25rem;
}

@media only screen and (min-width: 768px) {
	.ID3dmodel {
		display: none 
	}
}



.social-button {
margin-left: 15px;
width: 25px;
height: 25px;
background-size: cover;
display: inline-block;
margin: 0 5px;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 15px;
cursor: pointer; /* Add this line to make the cursor a hand pointer */
}

.facebook-btn { background-color: #3b5998; }
.twitter-btn { background-color: #1da1f2; }
.pinterest-btn { background-color: #bd081c; }
.reddit-btn { background-color: #FF4500; }
.linkedin-btn { background-color: #0077B5; }
.tumblr-btn { background-color: #35465C; }
.vkontakte-btn { background-color: #4C75A3; }
.digg-btn { background-color: #000000; }	




.description-limit-product {
    max-height: 800px; /* Giá trị mặc định sẽ bị JS thay đổi */
    overflow: hidden; /* Ẩn nội dung vượt quá chiều cao */
    transition: max-height 0.3s ease; /* Thêm hiệu ứng chuyển đổi */
	line-height: 25px!important;
}

@media (max-width: 1600px){
.description-limit-product {
text-align: justify;
word-wrap: break-word;
position: relative;
width: 100%; /* Hoặc bất kỳ chiều rộng nào bạn muốn */
word-wrap: break-word; /* Đảm bảo các từ quá dài được ngắt xuống dòng */
white-space: normal; /* Đảm bảo văn bản xuống dòng bình thường */
}}

@media (min-width: 16010px){
.description-limit-product {
text-align: justify;
max-width: 350px;
word-wrap: break-word;
position: relative;
}}

 
	
@media (min-width: 480px) {
.single-share {
opacity: 1!important;
height: 20px;
float: left!important;
margin-left: 10px!important;
}}

.single-share {
    display: flex;
    flex-direction: column;
    align-items: center; /* Căn chỉnh về phía giữa */
}

.capitalize-first-letter::first-letter {
text-transform: uppercase;
}

@media (min-width: 768px){
.yarpp-related .yarpp-thumbnail-title{
font-size: 14px;
font-weight: 200!important;
white-space: nowrap; 
overflow: hidden;
text-overflow: ellipsis;
}}

.table tr:first-child td {
border-top: -5px !important;
}

.image-counter {
z-index: 1;
position: absolute;
top: 20px;
right: 20px;
background-color: rgba(128, 128, 128, .5);
color: white;
border-radius: 9px;
padding: 5px;
font-size: 14px;}




.btn {
letter-spacing: 1px;
text-transform: uppercase;
width: 100%;
}



.table td, .table th {
text-transform: none;
padding-top: 0.125rem;
padding-right: 0.5rem;
padding-bottom: 0.125rem;
padding-left: 0.5rem;
color: white;
}

@media (max-width: 768px) {
.bredxdses {
	display: block; /* Để ảnh được căn giữa */
	margin: 0 auto; /* Để căn giữa ảnh trong vùng chứa */

}} 

@media (min-width: 768px) {
.bredxdses {
display: block; /* Để ảnh được căn giữa */
margin: 0 auto; /* Để căn giữa ảnh trong vùng chứa */
height: 800px!important;
object-fit: cover;
}}

@media (max-width: 768px) {
	.max-width-img {
	height: auto;
}} 

@media (min-width: 768px) {
.max-width-img {
display: block; /* Để ảnh được căn giữa */

margin: 0 auto; /* Để căn giữa ảnh trong vùng chứa */
max-height: 800px!important;
}}


@media (min-width: 768px) {
.id-overlay {
position: absolute;
right: 0px;
background-color: rgba(0, 0, 0, 0.5);
color: #fff;
padding: 19px;
bottom: 10px;
border-radius: 20px 0 0 20px;
}}

.colorContainer {
display: flex;
align-items: center;
}

.colorItem {
margin-right: 20px; /* Khoảng cách giữa các màu */
}

.colorCircle {
width: 20px!important; 
height: 20px!important; 
border-radius: 50%;
cursor: pointer;
margin-right: 3px;
border: 1px solid #ccc; /* Thêm viền màu xám */
position: relative;
}

.color-circle {
display: inline-block;
width: 20px;
height: 20px;
border-radius: 50%;
margin-right: 5px;
}
.colorCircle:hover {
transform: scale(1.5)!important; 
}
.colorCircle::after {
font-size: 10px;  
content: "Copy hex code";
position: absolute;
top: -40px;
left: 50%;
transform: translateX(-50%);
padding: 2px 10px;
background-color: black;
color: white;
border-radius: 5px;
opacity: 0;
transition: opacity 0.3s ease;
pointer-events: none;
white-space: nowrap; /* Thêm dòng này để ngăn văn bản xuống dòng */
}

.colorCircle.copied::after {
content: "Copied";
}

.colorCircle:hover::after {
opacity: 1;
}

.colorDetails {
display: none;
}


.underline {
    width: 100%;         /* Nét gạch trải dài toàn bộ chiều rộng */
    height: 1px;         /* Độ dày của nét gạch */
    background-color: rgba(0, 0, 0, .1); /* Màu sắc nét gạch (ở đây là đen) */
    margin-bottom: 10px; /* Khoảng cách giữa nét gạch và phần mô tả */
}
.table td {
    font-size: 14px;
    color: #ddd;
}

.product_link-limi {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 200px!important;
}
@media (min-width: 1200px){
.titleone{
text-align: justify;
font-size:20px	
max-width: 350px;
word-wrap: break-word;
overflow: hidden;
position: relative;
color: #ddd;
}}


.description-content {
    overflow: hidden;
    transition: max-height 0.3s ease;
}
@media (min-width: 481px){
	.description-content.short {
		max-height: 480px;
	}
}
.show-more-button,
.show-less-button {
    cursor: pointer;
    color: #ddd;
    margin-bottom: 10px;
    font-size: 16px;
}

/* CSS cho các hình thu nhỏ */
.thumbnailszzz
{background: rgba(50, 50, 50, 0);
text-align: center;
position: absolute;
left: 10px;
bottom: 0px!important; /* Căn lề ra ngoài cùng bên trái và dưới cùng của phần tử cha */
}

.thumbnailszzz ul {
list-style: none;
padding-left: 0px;
margin: 0;
display: flex; 
justify-content: center; 
}

.thumbnailszzz li {
display: inline-block;
margin: 5px;
}



/* Thêm hiển thị active cho thumbnail khi được chọn */
.thumbnailszzz li.active img {
border: 2px solid red; /* Thay đổi hiển thị chỉ số active theo ý muốn */
}

.comment-must-log-in {
	font-size: 16px;
	margin: 10px auto;
	text-align: center;
}

.comment-must-log-in a {
    color: red; /* Màu của liên kết */
    text-decoration: underline; /* Gạch dưới liên kết */
}

.comment-must-log-in a:hover {
    color: #0056b3; /* Màu khi hover vào liên kết */
    text-decoration: none; /* Bỏ gạch dưới khi hover */
}
#license-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
}

#license-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid var(--white-alpha-10);
  background: var(--background-dark);
  box-shadow: var(--shadow-medium);
  color: #ddd;
  z-index: 9999;
  padding: 30px 20px;
  max-width: 600px;
  width: 90%;
  border-radius: 8px;
}
.ads-wrapper-product {
  margin-top: 16px;
}
.post-models {
    text-align: left;
}

.marzipano-fullscreen-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 20;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 4px;
  padding: 5px 10px;
  font-size: 14px;
  cursor: pointer;
}
 
.turntable-container-preview {
  width: 100%;
  min-width: 300px;
  min-height: 200px;
  display: block;
}

.slider-container .prev-next-btns {
  pointer-events: none; /* 🔹 Cho phép xuyên qua container */
 
}

.slider-container .prev-btn,
.slider-container .next-btn {
  pointer-events: auto; /* ✅ Cho phép click các nút */
}