/* Tùy chỉnh radio button */
.gender-custom-radio {
    appearance: none; /* Ẩn radio mặc định */
    width: 11px;
    height: 11px;
    border: 1px solid #DADADA;
    border-radius: 50%; /* Hình tròn */
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gender-custom-radio:checked {
    background-color: #FFFFFF; /* Màu nền cam khi được chọn */
    border-color: #FF8640; /* Đổi màu viền thành cam khi được chọn */
}

.gender-custom-radio:checked::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #FF8640; /* Tạo vòng tròn trắng bên trong */
}
.personal-notify-setting:checked{
    background-color: #FFBE98;
    border: 1.5px solid #FFBE98 ;
}
.nav-tabs-point-button {
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    color: #000000;
}
.nav-tabs-point-button.active {
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    color: #FF8640;
}

.text-ellipsis {
    white-space: nowrap; /* Không cho văn bản xuống dòng */
    overflow: hidden;    /* Ẩn phần văn bản tràn ra ngoài */
    text-overflow: ellipsis; /* Thêm dấu ba chấm khi văn bản bị cắt */
}
@media (max-width: 768px) {
    .point-item-history-title{
        max-width: 220px;
    }
    .point-item-history-img-preview{
        width: 100%;
        height: 73px;
        border-radius: 2px;
    }
    .list-menu ul {
        display: inline-block;
        overflow: auto;
        overflow-y: hidden;
        max-width: 100%;
        margin: 0 0 1em;
        white-space: nowrap;
    }

    .list-menu li {
        display: inline-block;
        vertical-align: top;
        border-bottom: none;
    }
}
.list-menu li {
    height: 30px; padding: 0 30px;
}
@media (min-width: 768px) {
    .point-item-history-img-preview{
        width: 100%;
        height: 80px;
        border-radius: 2px;
    }

    .list-menu li {
       border-bottom: 0.4px solid #FF8640;
    }
}

.personal-account-menu-bar .active{
    background-color: #FFBE98!important;
    color: white!important;
}
.personal-account-menu-bar .active span img{
    filter: brightness(0) invert(1);

}

