.show_noti {
    transition: 2s;
    right: 1px;
    top: 50px;
    z-index: 999;
    opacity: 1;
    box-shadow: 0px 15px 60px #00000023;
}

.hide_noti {
    transition: 2s;
    right: -10px;
    width: 0px;
    top: -20px;
    overflow: hidden;
    opacity: 0;
    cursor: not-allowed;
    pointer-events: none;
}

.show_noti_zoom {
    height: 500px;
    transition: 0.5s;
}

.hide_noti_zoom {
    height: 50px;
    transition: 0.5s;
}

.notification_box::-webkit-scrollbar {
    width: 5px;
}

.notification_box::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.notification_box::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.notification_box::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.noti-item {
    /*border-radius: 10px;*/
    transition: 0.3s;
    position: relative;
    /*margin: 0px 15px 15px;*/
    /*border-bottom: 1px solid #d0d0d1;*/
    cursor: pointer;
}

.noti-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    /* Để căn giữa border */
    width: 80%;
    /* Chiều rộng của border-bottom */
    border-bottom: 1px solid #d0d0d1;
    /* Đặt border-bottom */
}

.noti-item:hover {
    box-shadow: 1px 1px 1px 1px #b3b3b3;
    transition: 0.3s;
}

/*Pagination*/
.page-item {
    border-radius: 50%;
    overflow: hidden;
}


.page-link.active,
.active>.page-link {
    background-color: #333333;
    border-color: #333333;
}

.page-link:hover,
.page-link {
    color: #333333;
}

.page-link:hover {
    background-color: #777;
}

.active>.page-link:hover {
    color: var(--cui-pagination-active-color);
}

.page-link:first-child,
.page-link:last-child {
    border-width: 0;
}

.page-link {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.dots.disabled>.page-link,
.page-link.disabled {
    color: var(--bs-pagination-disabled-color);
    pointer-events: none;
    background-color: transparent;
    border-color: unset;
}

.page-item .first,
.page-item .last {
    fill: #333333;
}

.page-item.disabled .first,
.page-item.disabled .last {
    fill: #777;
}

.show_inforbox {
    transition: 500ms cubic-bezier(.41, .95, .19, .93);
    right: 5px;
    top: 16px;
    z-index: 999;
    opacity: 1;
}

.hide_inforbox {
    transition: 500ms cubic-bezier(.41, .95, .19, .93);
    right: -40px;
    width: 0px;
    top: 16px;
    opacity: 0;
    cursor: not-allowed;
    pointer-events: none;
}

.row-arrow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    position: absolute;
    width: 104%;
    top: 48%;
    transform: translate(-2%, 0%);
}

.circle-button {
    position: relative;
    width: 35px;
    height: 35px;
    background-color: white;
    border: 2px solid #682243;
    border-radius: 50%;
    overflow: hidden;
    align-items: center;
    display: flex;
}

.arrow {
    color: #682243;
    display: flex;
    justify-content: center;
    width: 100%;
}

.review-image-dialog {
    height: 600px;
    width: 100%;
    margin-right: 10px;
    border-radius: 10px;
    border: 1px solid #CDCDCD;
    background-size: cover;
    object-fit: contain;
    background-repeat: no-repeat;
}

@media screen and (max-width: 750px) {
    .review-image-dialog {
        height: 300px
    }
}

.ava-review {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    border: 1px solid #CDCDCD;
    margin-right: 15px;
    background-color: #FFFFFF;
    object-fit: cover;
}

.flex-content {
    display: flex;
    align-items: center;
}

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

.vertical-divider {
    height: 24px;
    width: 1px;
    background-color: #aaa;
}

.reaction-button {
    width: 145px;
    height: 35px;
    border-radius: 300px;
    border: 1px solid #333333;
}

.salon_feature__btn--item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0.25rem 1.5rem;
}

.salon_feature__btn--item:hover {
    cursor: pointer;
    background-color: #e0e0e0;
    filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.25));
    -webkit-filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.25));
}

.react_buttoncustom {
    border-radius: 300px;
    background: white;
    color: #333333 !important;
    border: #777777 solid 1px !important;
    height: 35px !important;
    transition: 0.3s;
}

.react_buttoncustom:hover {
    background: #d3427a !important;
    color: white !important;
}