.block-luxury-package {
    margin-bottom: 24px;
}
.layout-luxury-package {
    display: flex;
    align-items: center;
    border-radius: 8px;
    background: rgba(255, 200, 111, 0.15);
    padding: 12px 20px;
    transition: all .3s;
    cursor: pointer;
    gap:0 15px;
    position: relative;
}

.layout-luxury-package .icon {
    width: 46px;
}

.layout-luxury-package .content {
    flex: 1;
}

.layout-luxury-package .content .name {
    background: linear-gradient(89.93deg, #DF8100 0.06%, #F0980B 99.94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.layout-luxury-package .content .text-small {
    color: rgba(28, 43, 51, 1);
    font-size: 15px;
    font-weight: 400;
}

.layout-luxury-package .arrow {
    transform: translateX(0);
    transition: all .3s;
}

.layout-luxury-package:hover {
    background: rgba(255, 200, 111, 0.3);
}

.layout-luxury-package:hover .arrow {
    transform: translateX(4px);
}
@media (max-width: 575px) {
    .layout-luxury-package {
        align-items: flex-start;
        padding: 12px;
    }
    .layout-luxury-package .arrow {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 10px;
        top: 0;
    }
    .layout-luxury-package .content {
        padding-right: 30px;
    }
}


/* Thống kê */
.item-statistical {
    overflow: hidden;
    display: flex;
    align-items: center;
    border-radius: 8px;
    position: relative;
    padding: 12px 20px;
    height: 100%;
}

.item-statistical .content-item {
    flex: 1;
    padding-right: 20px;
}

.item-statistical .content-item .name {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.item-statistical .content-item .number {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

.item-statistical .icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    margin-right: -10px;
}

.item-statistical .icon:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    transform: scale(1.4);
    background: rgba(255, 255, 255, 0.2);
}

.item-statistical .icon:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    transform: scale(2);
    background: rgba(255, 255, 255, 0.1);
}

.item-statistical .icon svg {
    position: relative;
}
.item-statistical.item-statistical-green {
    background: linear-gradient(267.08deg, #08BF72 3.66%, #119A8C 99.25%);
}
.item-statistical.item-statistical-green .icon svg path  {
    fill:#108373;
}
.item-statistical.item-statistical-purple {
    background: linear-gradient(267.08deg, #5353DF 3.66%, #44449A 99.25%);
}
.item-statistical.item-statistical-purple .icon svg path {
    fill:#3E3E9B;
}
.item-statistical.item-statistical-yellow {
    background: linear-gradient(267.08deg, #F5AD1D 3.66%, #E69202 99.25%);
}
.item-statistical.item-statistical-yellow .icon svg path {
    fill:#DD8A15;
}
.item-statistical.item-statistical-gray {
   background: linear-gradient(267.08deg, #4C8899 3.66%, #336772 99.25%);
}
.item-statistical.item-statistical-gray .icon svg path {
    fill:#356974;
}

.block-statistical-dashboard .row .col-12 {
    margin-bottom: 12px;
}
.block-statistical-dashboard .row [class*='col-'] {
    margin-bottom: 12px;
}
.block-statistical-dashboard {
    padding-bottom: 12px;
}

.block-statistical-dashboard .row .col-12 {
    padding: 0 6px;
}
@media (min-width:992px) and (max-width:1199px) {
    .item-statistical .icon {
        width: 50px;
        height: 50px;
    }
}
@media (min-width:768px) and (max-width:991px) {
   
}
@media (min-width:576px) and (max-width:767px) {
    .item-statistical .icon {
        width: 50px;
        height: 50px;
    }
}
@media (max-width:575px) {
    .item-statistical .content-item .name {
        font-size: 14px;
    }
    .item-statistical {
        padding: 12px;
        align-items: flex-start;
    }
    
    .item-statistical .content-item {
        padding-right: 8px;
    }
    
    .item-statistical .icon {
        width: 40px;
        height: 40px;
        margin: 0;
        top: 11px;
    }
    .block-category-statistical .row {
        margin: 0 -6px;
    }
    .block-category-statistical .row [class*='col-'],.block-statistical-dashboard .row [class*='col-']{
        padding: 0 6px;
    }
    .item-statistical .icon:after {
        transform: scale(1.7);
    }
    
    .item-statistical .content-item .number {
        font-size: 26px;
    }
}
@media (max-width:325px) {
    .item-statistical .icon {
        width: 30px;
        height: 30px;
    }
    .item-statistical .icon svg {
        transform: scale(.7);
    }
}



/* Table */
.item-table-category {
    border: 1px solid rgba(224, 227, 233, 1);
    background: rgba(255, 255, 255, 1);
    border-radius: 8px;
    height: 100%;
    margin-bottom:30px;
}

.item-table-category .title-item {
    padding: 11px 16px;
    background: rgba(235, 239, 243, 1);
    display: flex;
    align-items: center;
}

.item-table-category .title-item .name {
    flex: 1;
    color: rgba(28, 43, 51, 1);
    font-size: 18px;
    font-weight: 700;
}

.tr-table-category {
    border-bottom: 1px solid rgba(224, 227, 233, 1);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 0 12px;
    position: relative;
    cursor: pointer;
    background: transparent;
    transition: all .3s;
}

.tr-table-category:last-child {
    border: none;
}

.tr-table-category .left-table {
    flex: 1;
}

.tr-table-category .left-table .name {
    margin: 0;
    color: rgba(28, 43, 51, 1);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    transition: all .3s;
    text-decoration: none;
}
.tr-table-category:hover {
    background: rgba(240, 243, 246, 1);
}
.tr-table-category:hover .left-table .name {
    text-decoration: underline;
}
.tr-table-category .right-table {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 270px;
    gap: 0 8px;
}



.box-user-icon {
    display: flex;
    align-items: center;
    gap: 0 4px;
}

.box-user-icon .text {
    color: rgba(133, 141, 154, 1);
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
}

.box-user-icon .icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tr-table-category .right-table .box-user-icon {
    width: 125px;
    justify-content: flex-end;
}

.tr-table-category .right-table .box-user-icon.box-timeline {
    width: 152px;
}

.tr-table-category .right-table .text-size-13-gray {
    line-height: 20px;
}

.block-table-category-dashboard .col-12 {
    padding: 0 12px;
    margin-bottom: 24px;
}

.block-table-category-dashboard .row {
    margin: 0 -12px;
}

.box-user-avatar {
    display: flex;
    align-items: center;
    gap: 0 8px;
}

.box-user-avatar .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
}

.box-user-avatar .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.box-user-avatar .content {
    flex: 1;
}

.box-user-avatar .content .name {
    font-size: 15px;
    font-weight: 500;
}

.box-user-avatar .content .text-small {
    color: rgba(133, 141, 154, 1);
    font-size: 13px;
    font-weight: 400;
}

.progress-category {
    display: inline-flex;
    align-items: center;
    gap: 0 8px;
}

.progress-category .number {
    width: 32px;
    text-align: right;
    color: rgba(133, 141, 154, 1);
    font-size: 13px;
}

.line-progress-category {
    position: relative;
    width: 88px;
    height: 7px;
    border-radius: 100px;
    overflow: hidden;
}

.line-progress-category .line-progess-active {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 100px;
    height: 100%;
}

.line-progress-category.progess-yellow {
    background: rgba(255, 231, 180, 1);
}

.line-progress-category.progess-yellow .line-progess-active {
    background: rgba(255, 185, 7, 1);
}
.line-progress-category.progess-purple {
    background: #d6ebd6;
}

.line-progress-category.progess-purple .line-progess-active {
    background:#218d20;
}

@media (min-width:992px) and (max-width:1199px) {
    .tr-table-category .right-table {
        width: auto;
    }
}
@media (max-width:991px) {
    .item-table-category {
        height:auto;
    }
    .block-table-category-dashboard .col-12 {
        margin: 0;
    }.block-table-category-dashboard .col-12 {
    margin: 0;
}
}
@media (min-width:576px) and (max-width:767px) {}
@media (max-width:575px) {
    .tr-table-category {
        flex-wrap: wrap;
    }
    
    .tr-table-category .left-table {
        flex: none;
        width: 100%;
        margin-bottom: 4px;
    }
    
    .tr-table-category .right-table {
        width: 100%;
        justify-content: space-between;
    }
    
    .tr-table-category .right-table .box-user-icon {
        width: auto;
    }
    .tr-table-category .right-table .progress-category {
        padding-left: 53px;
    }
}