/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
	background: #292929;
}

.breadcrumb ul {
    display: block;
    white-space: normal;
}

.breadcrumb ul li{
    display: inline;
}

.breadcrumb ul li:not(:last-child) {
    position: relative;
    padding-right: 15px;
}

.breadcrumb ul li:not(:last-child)::before{
    content: '/';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 6px;
}
/* End breadcrumb  */

/* Search location  */
/* .search-location {
    padding: 60px 0;
    position: relative;
    background: #f1ece8;
    color: var(--color-1);
}

.form-search-location {
    position: relative;
}

.form-search-location input {
    width: 100%;
    padding: 5px 100px 5px 35px;
    height: 45px;
}

.form-search-location svg {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    z-index: 1;
}

.form-search-location button {
    position: absolute;
    top: 0;
    right: 0;
    height: 45px;
    z-index: 1;
    color: var(--color-2);
    background-color: var(--color-1);
}

.search-location .left h2 {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 10px;
} */

/* Content cho editor  */
.noi-dung{
    font-size: 15px;
}

.noi-dung p{
    margin-bottom: 10px;
    text-align: justify;
    line-height: 1.7;
}

.noi-dung h2{
    font-size: 20px;
    margin-bottom: 15px;
}

.noi-dung h3{
    font-size: 17px;
    margin-bottom: 15px;
}

.noi-dung hr{
    margin: 15px 0;
}

.noi-dung table td img{
    border-radius: 20px;
}

.noi-dung table td {
    width: 50%;
}

.noi-dung blockquote{
    border-left: 5px solid var(--color-2);
    padding: 8px 15px;
	background: #292929;
    border-radius: 10px;
    margin-bottom: 15px;
}

.noi-dung blockquote h3,
.noi-dung blockquote h2{
    margin-bottom: 0;
}

.noi-dung ul,
.noi-dung ol {
    margin-left: 30px;
	margin-bottom: 10px;
}

.noi-dung ul li,
.noi-dung ol li {
	margin-bottom: 5px;
}

.noi-dung table tr td {
    padding: 10px;
}

.noi-dung table {
	margin: 0 -10px;
}
/* end  */

/* pagination  */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin-top: 30px;
    gap: 6px;
}

.pagination .page-item {
    display: inline-block;
}

.pagination .page-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #FFF;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
}

.pagination .page-link:hover {
    background: var(--color-4);
    color: #fff;
    border-color: var(--color-4);
}

.pagination .page-item.active .page-link {
    background: var(--color-4);
    color: #fff;
    border-color: var(--color-4);
    pointer-events: none;
}

.pagination .page-item.disabled .page-link {
    background: #f5f5f5;
    color: #aaa;
    border-color: #ddd;
    pointer-events: none;
}

@media (max-width: 1100px) {
    .noi-dung table tr td {
        width: 50%;
    }

    .noi-dung img {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
	.noi-dung table tr td {
        width: 100% !important;
        display: block;
        padding: 0;
    }
}

@media (max-width: 768px) {
  	.search-location {
      	padding: 30px 0;
      	text-align: center;
    }
  
    .form-search-location {
     	margin-top: 20px;
  	}

    .pagination .page-link {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .noi-dung h2 {
        font-size: 18px;
    }

    .noi-dung h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
}
