.desktop {
    display: block;
}

.choices {
    margin-bottom: 0px !important;
}

.btn-block {
    width: 100% !important;
}

.side-menu__item>i {
    font-size: 18px;
    margin-right: 5px;
}

.side-menu__item.active.open {
    background-color: #985ffd !important;
}

.side-menu__item.active.open span {
    color: white !important;
}

.has-sub>.side-menu__item>i {
    margin-right: 0px !important;
}

.my-toast-container {
    position: fixed !important;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.my-toast {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 300px;
    max-width: 250px;
    padding: 12px 16px;
    border-radius: 3px;
    color: #fff;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateX(100%);
    animation: my-slideIn 0.4s forwards, my-fadeOut 0.5s forwards 3.5s;
    position: relative;
    overflow: hidden;
}

.my-toast .my-icon {
    font-size: 18px;
}

.my-toast.success {
    background: #4caf50;
}

.my-toast.error {
    background: #fa4c40;
}

.my-toast.info {
    background: #2196f3;
}

.my-toast.warning {
    background: #ff9800;
}

.my-toast::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: rgba(255, 255, 255, 0.6);
    animation: my-progress 3.5s linear forwards;
}

@keyframes my-slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes my-fadeOut {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

@keyframes my-progress {
    from {
        width: 100%;
    }

    to {
        width: 0;
    }
}

.cursor-p {
    cursor: pointer;
}

.viethoachudau {
    text-transform: capitalize !important;
}

.w-30 {
    width: 30% !important;
}

.form-group {
    margin-bottom: 10px;
}

.avatar-sm {
    height: 2.2rem;
    width: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-title {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 0.3rem;
}

.banner-track {
    display: flex;
    transition: transform 0.5s ease;
}

.banner-item {
    flex: 0 0 100%;
}

.banner-item img {
    width: 100%;
    display: block;
}

.banner-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.banner-dots .dot {
    width: 12px;
    height: 3px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 0px;
    cursor: pointer;
}

.banner-dots .dot.active {
    background: rgb(var(--primary-rgb));
}

.tick-rotate {
    display: inline-block;
    animation: tickRotate 0.4s ease-in-out infinite;
}

@keyframes tickRotate {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(20deg);
    }

    100% {
        transform: rotate(-10deg);
    }
}

.times-zoom {
    display: inline-block;
    animation: tickZoom 0.4s ease-in-out infinite;
}

@keyframes tickZoom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

.money-spin-back {
    display: inline-block;
    animation: tickSpinBack 1.5s ease-in-out infinite;
}

@keyframes tickSpinBack {
    0% {
        transform: rotate(0deg);
    }

    60% {
        transform: rotate(400deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.card.custom-card.dashboard-main-card.pricing-card.pricing-danger:before {
    background-image: linear-gradient(to right top, transparent, transparent, rgba(var(--danger-rgb), 0.1), rgba(var(--danger-rgb), 0.1));
}

.card.custom-card.dashboard-main-card.pricing-card.pricing-info:before {
    background-image: linear-gradient(to right top, transparent, transparent, rgba(var(--info-rgb), 0.1), rgba(var(--info-rgb), 0.1));
}

@media (min-width: 900px) {
    /* .slide-menu.child1.double-menu-active {
        background: white !important;
    } */

    .slide.has-sub {
        justify-content: center !important;
    }

    .slide.has-sub.open>a {
        background: rgba(var(--primary-rgb), 0.1) !important;
        color: var(--primary-rgb) !important;
    }
}

@media (max-width: 760px) {
    .desktop {
        display: none;
    }

    .slide-menu .side-menu__item::before {
        display: none;
    }

    .has-sub>.side-menu__item>i {
        margin-right: 5px !important;
    }
}