

.content-block a {border-bottom: 2px dashed #ffd800;padding: 0px 3px;font-weight: 600;transition: all 0.3s;}
.content-block a:hover {background: #f5d009;color: #000;border-radius: 4px;
}
:root {
    --theme-yellow: #F5D009;
    --theme-border-gray: #8E8E8E;
    --badge-red: #FF5A5A;
    --background-btn: #F8F8F8;
    --light-gray: #D9D9D9;
    --vector-color: #373435;
    --btn-red: #E11F1F;
    --home-background-color: #F5F5F5;
}

h3 + p,h3 + ul,h3 + table ,h3 + table +p{
    margin-right: 50px;
}

h2 + p,h2 + ul,h2 + table ,h2+ table +p{
    margin-right: 15px;
}

.body-container {
    max-width: 1166px;
    margin: 0 auto;

}

.blog-header {
    text-align: right;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0;
}

.blog-header h1 {
    font-size: 35px;
    font-weight: bolder;

}

.rating {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.rating-number,
.rating-count {
    font-size: 12px;
}

.rating-division,
.rating-score {
    font-size: 25px;
    font-weight: bold;
}

.stars span {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.stars span img {
    width: 18px;
    height: 18px;
}

.blog-image img {
    width: 100%;
    object-fit: contain;
    border-radius: 15px;
    margin-bottom: 20px;
    height: auto;
}

.blog-content ul,
.content-block ul {
    padding:11px 25px 11px 0px;
}
.blog-content ul li,
.content-block ul li{
    font-weight: 400;
}
.blog-content h2,
.content-block h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--vector-color);

    border-bottom: 2px dashed #5a5a5a;
    padding-bottom: 5px;
}
.table-striped{margin-top:10px}.table-striped tr td{padding:10px 14px}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}
table{margin-top:10px}table tr td{padding:10px 14px}table tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}
.blog-content h3,
.content-block h3 {
    border-bottom: 2px solid #e0d183;
    border-right: 2px solid #e0d183;
    border-radius: 0px 0px 10px;
    padding-bottom: 5px;
    margin-bottom: 1rem;
    font-size: 14px;
    padding-right: 10px;
    margin-right: 50px;
}
.blog-content p,
.content-block p {
    font-size: 15px;
    margin-bottom: 20px;
    color: var(--vector-color);
    line-height: 30px;
    padding:0px 10px;
}

/* breadcrumb */

.breadcrumb {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: right;
    margin: 20px 0;
}

.breadcrumb a {
    text-decoration: none;
    color: var(--vector-color);

}

.breadcrumb span {
    margin: 0 5px;
    color: var(--vector-color);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* article title divider */
.article-title-section {
    display: flex;
    justify-content: flex-start;
    align-items: center;


}

.article-title {
    font-size: 12px;
    font-weight: bold;
    color: var(--vector-color);
    margin-right: 5px;
}


hr {
    border: none;
    height: 1px !important;
    background-color: var(--light-gray);
    margin-top: 13px !important;
    margin-bottom: 15px !important;
}

.blog-content-continiue {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 100px;
}
@media (max-width: 1024px) {
    .blog-header{
        flex-direction: column-reverse;
        align-items: unset!important;
    }
    .blog-content-continiue {
        flex-direction: column;

    }

}
.blog-content-sidebar {
    width: 361px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
    align-items: flex-start;


}

.rest-of-blog {
    max-width: 741px;
    flex-grow: 1;
    position: relative;
}

/* category sidebar */

.category-container {
    padding: 20px 26px;
    border-radius: 20px;
    background-color: var(--background-btn);
    width: 100%;
}

.category-title {
    background-color: var(--vector-color);
    color: white;
    text-align: center;
    height: 45px;
    line-height: 45px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    width: 100%;
}


.category-list {
    list-style-type: none;
}


.category-list li {
    margin-bottom: 6px;
}


.category-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    height: 41px;
    line-height: 41px;
    background-color: #fff;
    border-radius: 10px;
    text-decoration: none;
    color: var(--vector-color);
    font-size: 12px;
    font-weight: bold;
    text-align: right;
    transition: background-color 0.3s ease;
}

.category-list li a {
    flex-direction: row-reverse;
}


.category-list li a:hover {
    background-color: #f1f1f1;
}

/* category sidebar */



.category-count {
    font-size: 14px;
    color: #333;
}

.category-name {
    text-align: right;
    margin-right: 10px;
}


/* rest of blog */

.emphasize-block {
    width: 100%;
    background-color: var(--background-btn);
    border-radius: 10px;
    box-shadow: 0 2px 5px 0 rgb(0, 0, 0, .25);
    font-size: 12px;
    color: var(--vector-color);
    line-height: 30px;
    padding: 10px 20px;
    margin-bottom: 20px;
}

.image-block img {
    width: 100%;
    border-radius: 10px;
}

.image-block {
    margin-bottom: 20px;
}

/* end blog rating */

.rating-section {


    text-align: right;
}



.rating-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}



.rating-buttons {
    display: flex;
    gap: 17px;
}

.rating-btn {
    background-color: white;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    padding: 0 20px;
    cursor: pointer;
    font-size: 15px;
    height: 37px;
    line-height: 37px;
    text-align: center;
    color: var(--vector-color);
}

.rating-btn.selected {
    background-color: var(--theme-yellow);
    border-color: var(--theme-yellow);
    color: var(--vector-color);
}

.rating-btn:hover {
    background-color: #f2f2f2;
    border-color: #ccc;
}

.rating-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}


/* second sidebar */
.product-list {
    list-style: none;
    padding: 0;
}

.product-item a {
    display: flex;
    align-items: center;

}

.product-item {
    display: flex;
    align-items: center;
    border-bottom: 1px dashed var(--light-gray);
    padding-bottom: 14px;
    padding-top: 14px;
    justify-content: space-between;
}

.product-item:last-child {
    border-bottom: none;
}

.icon-container {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    margin-right: 10px;
}

.icon-white {
    display: none;
}

.product-details {
    flex-grow: 1;
}

.product-title {
    font-size: 12px;
    color: var(--vector-color);
    font-weight: bold;
    margin: 0;
}

.product-description {
    font-size: 11px;
    color: var(--vector-color);
    font-weight: lighter;
    margin: 5px 0 0;
}

.product-image {
    width: 68px;
    height: auto;
    margin-left: 10px;
}

.icon-container:hover .icon {
    display: none;
}

.icon-container:hover .icon-white {
    display: block;
}

.icon-container:hover {
    background-color: var(--theme-yellow);
    border-color: var(--theme-yellow);
}


/* third sidebar */

.article-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.article-item {
    display: flex;
    align-items: flex-start;
    padding-bottom: 16px;
    padding-top: 16px;
    position: relative;
    flex-direction: column;
}

.article-item a {
    display: flex;
    align-items: flex-start;
    position: relative;
}

.article-item:last-child a {
    border-bottom: none;
    padding-bottom: 0;
}

.article-image {
    width: 98px;
    height: auto;
    margin-left: 10px;
    border-radius: 10px;
}

.article-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.article-title {
    font-size: 12px;
    color: var(--vector-color);
    font-weight: bold;
    margin: 0;

    line-height: 20px;
    height: 100%;
    padding-bottom: 20px;
}


.article-icons {
	display: flex;
	gap: 10px;
	font-size: 13px;
	color: #7B7B7B;
	width: 100%;
	align-items: center;
	max-width: 201px;
	position: absolute;
	bottom: 15px;
	left: 0;
	height: 20px;
}

.article-icons span,
.article-icons a {
    padding: 0 8px;



}

.article-icons span img,
.article-icons a img {
    margin: 0;
    margin-left: 4px;

}

.article-icons span *,
.article-icons a * {
    display: inline-block;
}

.article-icons span:not(:last-child) {
    border-left: 1px solid var(--light-gray);
}

.article-icons a:first-child {
    border-left: 1px solid var(--light-gray);
}



.article-icons .icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;

}



/* benefit-section */

.benefits-section {
    border-top: 1px dashed var(--light-gray);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 60px 20px;
    margin: 20px auto;
    max-width: 1166px;
}

.benefit-item {
    text-align: center;

    display: flex;
    flex-direction: row;
}

.benefit-img {
    width: 51px;
    height: 51px;
    background-color: var(--theme-yellow);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
}

.benefit-text {
    text-align: right;
}

.benefit-text h3 {
    font-size: 20px;
    font-weight: bold;
    color: var(--vector-color);

}

.benefit-text h3 span {
    transform: scaleX(1.5);
    display: inline-block;
}

.benefit-text p {
    font-size: 14px;
    color: var(--theme-border-gray);
    margin-bottom: 4px;
}

@media (max-width: 768px) {
    .benefits-section {
        flex-wrap: wrap;
        justify-content: center;
    }

    .benefit-item {
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 600px) and (max-width: 1024px) {
    .body-container {
        padding: 0 30px;
    }

    .blog-content-continiue {
        /*flex-direction: column-reverse;*/
        margin-bottom: 0;
    }

    .benefits-section {
        padding: 40px 0;
    }
}
