.customer-item {
    height: 5rem;
    border: 1px solid #d9d9d9d9;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.customer-item img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video-review {
    position: absolute;
    top: 35px;
    right: 5px;
    transform: translate(-50%, -50%);
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #cb2134;
    border: 4px solid #fff;
    border-radius: 50%;
    z-index: 2;
    transition: all ease .2s;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
}

.video-review-Play {
    color: white;
    width: 100%;
    font-size: 11px;
    font-weight: 500;
    padding-right: 10px;
    display: inline-block;
    opacity: 0;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    position: absolute;
    transition: all ease .1s;
}

.video-review::after {
    border-color: transparent transparent transparent white;
    border-style: solid;
    border-width: 5px 0 5px 10px;
    content: "";
    left: 55%;
    position: absolute;
    top: 45%;
    transform: translate(-50%, -50%);
    transition: all ease .1s;
}

.article-item {
    position: relative;
    height: 100%;
    width: 100%;
}

.article-item .item-thumbnail {
    position: relative;
    height: 192px;
    overflow: hidden;
}

.article-item:hover .video-review-Play {
    opacity: 1;
}

.article-item:hover .video-review {
    width: 90px;
    border-radius: 25px;
    right: -20px;
}

.article-item:hover .video-review:after {
    left: 88%;
}

.article-item.border-for-item {
    border: 1px solid #eaecf1 !important;
}

.article-item.border-for-item:hover {
    box-shadow: rgb(0 0 0 / 8%) 0px 4px 12px;
}

.article-item .item-body .item-content {
    padding: 1.5rem 1.25rem .85rem !important;
}

.article-item .item-body .item-content .item-title {
    font-weight: bold;
}

.article-item .item-body .item-content a {
    color: #1f2d3d;
    text-decoration: none;
}

.article-item .item-body .item-description {
    margin: 0;
    -webkit-line-clamp: 3;
    -moz-line-clamp: 3;
    -o-line-clamp: 3;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    display: -moz-box;
    display: -o-box;
    position: relative;
}

/* [Add] Add by Huu Thang to fix margin of tag at dropdown menu on 2022-11-08 */
.feature-info-wrap h3 span i {
    margin-right: 5px;
}

/* [End] Add by Huu Thang to fix margin of tag at dropdown menu on 2022-11-08 */

.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: .25rem;
}

.page-item {
    cursor: pointer;
}
.pagination-article .page-item:first-child .page-link {
    margin-left: 0;
    padding-left: 1rem;
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem
  }
  
  .pagination-article .page-item:last-child .page-link {
    margin-right: 0;
    padding-right: 1rem;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem
  }
  
  .pagination-article .page-link {
    padding: .75rem 1rem;
    color: #676767;
    background-color: #fff;
    border: 1px solid #e5e9f2;
    text-decoration: none;
  }
  
  .pagination-article .page-item.active .page-link {
    color: #cb2134;
    background: transparent;
    border: 1px solid #e5e9f2
  }

.pagination-article .page-item.active .page-link {
    background: #f8f8f8
}

.review-item {
    background: #FFFFFF;
    border: 1px solid #E3E7ED;
    border-radius: 20px;
    position: relative;
    padding: 5rem 2rem 1.5rem;
    margin-top: 60px;
    height: 350px;
    max-height: 350px;
}

.review-item .customer-item {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: -55px;
    width: 110px;
    height: 110px;
    text-align: center;
    background: #fff;
    border: 1.5px solid #f7f8ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    overflow: hidden;
}

.review-item .item-content {
    text-align: justify;
    overflow: hidden;
    display: -webkit-box !important;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    white-space: normal;
    height: 144px;
    font-size: 16px;
    border: 0;
    padding: 0;
    margin: 0;
    color: #273444;
}

.review-item h5 {
    text-align: justify;
}

.review-item i {
    color: #cb2134;
    font-size: 1.5rem;
    position: absolute;
    top: 4rem;
    right: 2rem;
}


.customer-reviews-text .slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    list-style-type: none;
    width: 100%;
    z-index: 9;
    padding: 0;
}
.customer-reviews-text .slick-dots button {
    display: block;
    width: 1rem;
    height: 1rem;
    padding: 0;
    border: none;
    border-radius: 100%;
    background-color: #fff;
    border: 1px solid #cb2134;
    text-indent: -9999px;
    margin-right: 5px;
    outline: none;
}
.customer-reviews-text .slick-dots li.slick-active button {
    background-color: #cb2134;
}

.customer-reviews-text .text-review .prev-arrow {
    left: -15px !important;
}
.customer-reviews-text .text-review .next-arrow {
    right: -15px !important;
}
.customer-reviews-text .text-review .slick-arrow {
    position: absolute !important;
    top: 50% !important;
    margin-top: -15px !important;
    background: none !important;
    border: none !important;
    outline: none !important;
}

.customer-reviews-text .text-review .slick-arrow i {
    color: #cb2134;
    font-size: 2rem;
}