﻿:root {
    --color-primary: #141ED2;
    --color-accent: #1A4096;
    --color-bg-icon: #ff00001f;
    --color-bg: #F6F6F6;
    --color-sucess: #34C759;
    --color-border: #E9E9E9;
}

html {
    font-size: 14px;
    background-color: azure
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn{
    height:48px !important;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

.bg-main {
    background-color: var(--color-bg-default) !important;
}

.btn-link {
    background: #EDF3FF;
    color: #141ED2;
}

.home {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #141ED2 0%, #1a25e6 100%);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    max-width: 440px;
    margin: 0 auto;
    position: relative;
}

ul {
    padding-inline-start: 0px !important;
    list-style-type: none !important;
}
/* Decorative stars and colorful dots */
.floating-element {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.flex-space-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.font-12 {
    font-size: 12px;
}

.font-18 {
    font-size: 18px;
}

.star {
    position: absolute;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    animation: twinkle 3s ease-in-out infinite;
}

.dot-green {
    background: #00ff88;
    width: 12px;
    height: 12px;
    top: 15%;
    right: 20%;
    animation-delay: 0s;
}

.dot-red {
    background: #ff4757;
    width: 8px;
    height: 8px;
    top: 25%;
    left: 15%;
    animation-delay: 1s;
}

.dot-yellow {
    background: #ffa502;
    width: 10px;
    height: 10px;
    bottom: 30%;
    right: 25%;
    animation-delay: 2s;
}

.dot-cyan {
    background: #141ED2;
    width: 14px;
    height: 14px;
    bottom: 20%;
    left: 20%;
    animation-delay: 3s;
}

.dot-purple {
    background: #9c27b0;
    width: 6px;
    height: 6px;
    top: 60%;
    right: 15%;
    animation-delay: 4s;
}

.dot-orange {
    background: #ff6b35;
    width: 9px;
    height: 9px;
    top: 40%;
    left: 80%;
    animation-delay: 2.5s;
}

.star1 {
    top: 20%;
    left: 25%;
    animation-delay: 0.5s;
}

.star2 {
    top: 35%;
    right: 30%;
    animation-delay: 1.5s;
    color: rgba(255, 255, 150, 0.8);
}

.star3 {
    bottom: 40%;
    left: 30%;
    animation-delay: 2.5s;
    color: rgba(150, 255, 255, 0.8);
}

.star4 {
    bottom: 25%;
    right: 20%;
    animation-delay: 3.5s;
    color: rgba(255, 150, 255, 0.8);
}

/* Main loading container */
.loading-container {
    text-align: center;
    z-index: 10;
    position: relative;
}

/* Logo/Device container */
.logo-container {
    margin-bottom: 40px;
    position: relative;
}

.device-loading {
    display: inline-block;
    position: relative;
}

.loading-icon {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

/* Loading text */
.loading-text {
    color: white;
    margin-bottom: 30px;
}

.main-text {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 8px;
    animation: textGlow 2s ease-in-out infinite;
}

.sub-text {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 500;
}

/* Progress bar */
.progress-container {
    width: 250px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #fff, #f0f0f0);
    border-radius: 2px;
    animation: progressMove 2s ease-in-out infinite;
    width: 0%;
}

/* Loading dots */
.loading-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: dotBounce 1.4s ease-in-out infinite both;
}

    .dot:nth-child(1) {
        animation-delay: -0.32s;
    }

    .dot:nth-child(2) {
        animation-delay: -0.16s;
    }

    .dot:nth-child(3) {
        animation-delay: 0s;
    }

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@@keyframes twinkle {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }

    50% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }
}

@keyframes progressMove {
    0% {
        width: 0%;
    }

    50% {
        width: 70%;
    }

    100% {
        width: 100%;
    }
}

/* Wave effect at bottom */
.wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: wave 4s ease-in-out infinite;
}

    .wave:nth-child(2) {
        animation-delay: 1s;
        opacity: 0.7;
    }

@@keyframes wave {
    0%, 100% {
        transform: translateX(-50%) translateY(0px);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Loading percentage */
.loading-percentage {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    opacity: 0.8;
}

/* Responsive */
@@media (max-width: 440px) {
    .progress-container {
        width: 200px;
    }

    .main-text {
        font-size: 20px;
    }

    .sub-text {
        font-size: 14px;
    }
}

.form-control {
    font-size: 14px !important;
}

.fixed-bottom {
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    padding: 15px;
}

.buy-head {
    background-image: url('../img/mb_home_head.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 300px;
    position: relative;
    clip-path: ellipse(160% 91% at 50% 0%);
}

    .buy-head .listen {
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 2;
        height: 48px;
        display: flex;
        align-items: center;
    }

.soundbox-standalone {
    position: absolute;
    top: 52px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

    .soundbox-standalone img {
        width: 169px;
    }

.listen-btn {
    position: relative;
    border: none;
    border-radius: 25px;
    color: white;
    padding: 4px 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    min-width: 120px;
    background: white;
    border: 2px solid var(--color-primary, #007bff);
    color: var(--color-primary, #007bff);
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.15);
}

    .listen-btn:hover {
        transform: translateY(-2px);
        background: #f8f9ff;
    }

    .listen-btn:disabled {
        cursor: not-allowed;
        transform: none;
        opacity: 0.7;
    }

.btn-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 123, 255, 0.2), rgba(0, 123, 255, 0.1));
    width: 0%;
    transition: width 0.1s ease;
    border-radius: 25px;
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-icon {
    font-size: 18px;
    transition: all 0.3s ease;
}

    .btn-icon.playing {
        animation: pulse 1s ease-in-out infinite;
        color: var(--color-primary);
    }

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.loading-dots::after {
    content: '';
    animation: dots 1.5s steps(3, end) infinite;
}

@keyframes dots {
    0% {
        content: '';
    }

    33% {
        content: '.';
    }

    66% {
        content: '..';
    }

    100% {
        content: '...';
    }
}

.buy-title {
    color: var(--color-primary);
    font-weight: bold;
    text-align: center;
}

.text-danger {
    color: red !important;
}

.btn-primary {
    color: white;
    font-weight: 600;
    height: 48px !important;
    border-radius: 10px;
    background: var(--color-primary) !important;
}


.buy-flow-container {
    display: flex;
    margin-bottom: 6px;
    gap: 6px; /* Khoảng cách giữa 2 box */
}

.buy-flow {
    width: 50%;
    border-radius: 15px;
    padding: 17px;
}

    .buy-flow .title {
        margin-top: 7px;
        font-size: 16px;
        font-weight: bold;
    }

.buy-flow-1 {
    color: #3F899C;
    background-color: #E7FAFF;
}

.buy-flow-2 {
    color: #EB2D4B;
    background-color: #FFF5E7;
}

.buy-flow-3 {
    color: #3DBA3B;
    background-color: #E7FFEF;
}

.buy-flow-4 {
    color: #973F9C;
    background-color: #FFEFFC;
}

.cs-card {
    background: white;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid white;
    min-height: 170px;
}

    .cs-card:hover {
        border-color: var(--color-primary);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .cs-card.selected {
        border: 1px solid #e0e0e0;
        border-color: var(--color-primary);
    }

.card-content {
    flex-basis: calc(100% - 155px)
}

.card-chose {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-basis: 155px;
    margin-left: 10px;
}

.card-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.card-description {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.card-icon {
    width: 69px;
}

    .card-icon.sm {
        width: 49px;
    }

.quantity-controls {
    display: none;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

    .quantity-controls.show {
        display: flex;
    }

.quantity-btn {
    width: 27px;
    height: 27px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: #666;
    transition: all 0.2s ease;
}

    .quantity-btn:hover {
        border-color: var(--color-primary);
        color: var(--color-primary);
        background: #f0f0ff;
    }

    .quantity-btn:active {
        transform: scale(0.95);
    }

.quantity-display {
    font-size: 20px;
    font-weight: bold;
    min-width: 30px;
    text-align: center;
}

.card-mb {
    background: white;
    border-radius: 10px;
    padding: 16px;
}

.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 0px;
}

.invoice-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .invoice-card .title {
        font-weight: 600;
        color: black;
        margin-bottom: 8px;
    }

    .invoice-card .description {
        font-size: 14px;
        color: #666666;
        line-height: 1.5;
    }

.custom-dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}

.dropdown-selected {
    width: 100%;
    padding: 6px 9px;
    min-height: 36px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

    .dropdown-selected:hover {
        border-color: #ccc;
    }

    .dropdown-selected.active {
        border-color: #007bff;
        box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
    }

.dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-top: 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

    .dropdown-options.show {
        display: block;
    }

.dropdown-option {
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

    .dropdown-option:last-child {
        border-bottom: none;
    }

    .dropdown-option:hover {
        background-color: #f8f9fa;
    }

    .dropdown-option.selected {
        background-color: #e3f2fd;
        color: #1976d2;
    }

.dropdown-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 20px;
    pointer-events: none;
    z-index: 1;
}

    .dropdown-arrow ion-icon {
        display: block;
        width: 20px;
        height: 20px;
    }

.cs-card {
    min-height: 100px !important;
    border: 1px solid var(--color-border);
}

.price-original {
    text-decoration: line-through;
    color: rgba(0,0,0,.5) !important;
}

.modal-header {
    padding: 20px 20px 0 20px;
    border-bottom: none;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 16px !important;
    font-weight: 600;
    color: #333;
    margin: 0;
    padding: 15px 0px !important;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}

    .close-btn:hover {
        color: #333;
    }

.option-list {
    padding: 0 20px;
    max-height: 300px;
    overflow-y: scroll;
}

.option-item {
    display: flex;
    align-items: center;
    padding: 16px;
    margin-bottom: 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
    position: relative;
    border: 1px solid var(--color-border);
}

    .option-item:hover {
        background-color: #f8f9fa;
    }

    .option-item.selected {
        background-color: #f0f4ff;
    }

.option-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    overflow: hidden;
}

    .option-icon img {
        width: 24px;
        height: 24px;
        object-fit: contain;
    }


.option-content {
    flex: 1;
}

.option-title {
    font-size: 16px;
    font-weight: 500;
    color: black;
    margin-bottom: 4px;
}

.option-subtitle {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.radio-button {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #ddd;
    position: relative;
    margin-left: 12px;
    flex-shrink: 0;
    transition: all 0.2s;
}

.option-item.selected .radio-button {
    border-color: #e53e3e;
    background-color: #e53e3e;
}

    .option-item.selected .radio-button::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: white;
    }

.modal-footer {
    padding: 20px;
    border-top: none;
    display: flex;
    gap: 12px;
}

.btn {
    flex: 1;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cancel {
    background-color: #f5f5f5;
    color: #666;
}

    .btn-cancel:hover {
        background-color: #e9e9e9;
    }

.btn-primary {
    background-color: #1a73e8;
    color: white;
}

    .btn-primary:hover {
        background-color: #1557b0;
    }

.modal-handle {
    width: 40px;
    height: 4px;
    background-color: #ddd;
    border-radius: 2px;
    margin: 8px auto 0;
}


.modal-header {
    padding: 16px 16px 0 16px;
}

.option-list {
    padding: 0 16px;
}

.modal-footer {
    padding: 16px;
}

.modal-dialog {
    padding: 1.5rem;
}

.modal-content-mb {
    border-radius: 20px !important
}
.modalbox .modal-dialog .modal-content .modal-header {
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}
.modalbox .modal-dialog .modal-content {
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.modal-content-sheet {
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
}

.shop-dashboard {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    height: 205px;
    padding: 10px;
}

.dashboard-container {
    margin: 10px;
    background: white;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.dashboard-title {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
}

.tabs-container {
    margin-bottom: 30px;
}

.tabs-wrapper {
    display: flex;
    gap: 2px;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-button {
    border-radius: 25px;
    background: #f7fafc;
    color: #718096;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 70px;
    text-align: center;
    padding: 4px 8px;
    font-size: 12px;
    border: none;
}

    .tab-button:hover {
        background: #edf2f7;
        color: #4a5568;
        transform: translateY(-1px);
    }

    .tab-button.active {
        background: var(--color-primary);
        color: white;
        border-color: var(--color-primary);
        box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
    }

.stats-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    margin-top: 20px;
}

.stat-card {
    background: #f8fafc;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .stat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--color-primary), #7c3aed);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .stat-card:hover::before {
        transform: scaleX(1);
    }

    .stat-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        border-color: #cbd5e0;
    }

.stat-label {
    font-size: 12px;
    color: #718096;
    margin-bottom: 8px;
    font-weight: 500;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
}


.loading {
    opacity: 0.6;
    position: relative;
}

    .loading::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 20px;
        height: 20px;
        margin: -10px 0 0 -10px;
        border: 2px solid #e2e8f0;
        border-top: 2px solid var(--color-primary);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

.stat-value.animate {
    animation: countUp 0.6s ease-out;
}

.tabs-wrapper {
    gap: 6px;
}

.stats-container {
    gap: 15px;
}

.stat-value {
    font-size: 20px;
}



/* Additional styling for better UX */
.dashboard-container {
    position: relative;
}

.refresh-indicator {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .refresh-indicator.active {
        opacity: 1;
        animation: pulse 2s infinite;
    }

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e2e8f0;
    padding: 8px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    margin-left: auto;
    margin-right: auto;
    max-width: 440px;
}

.nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
    min-width: 60px;
    text-decoration: none;
    position: relative;
}

    .nav-item:hover {
        background: #f7fafc;
        transform: translateY(-2px);
    }

    .nav-item.active {
        background: transparent;
    }

.nav-icon {
    width: 100%;
    height: 27px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 25px;
    padding: 8px;
}

.nav-item.active .nav-icon {
    background: #E0E9FF;
    transform: scale(1.1);
}

.nav-label {
    font-size: 12px;
    font-weight: 500;
    color: #9ca3af;
    transition: color 0.3s ease;
}

.nav-item.active .nav-label {
    color: var(--color-primary);
    font-weight: 600;
}

/* Icons */
.nav-item .icon {
    width: 20px;
    height: 20px;
    fill: #9ca3af;
    transition: fill 0.3s ease;
}

.nav-item.active .icon {
    fill: var(--color-primary);
}

/* Removed active indicator dot */

/* Ripple effect */
.nav-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(79, 70, 229, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.nav-item:active::after {
    width: 40px;
    height: 40px;
}


.chip-status .delivery,
.chip-status .finish,
.chip-status .wait {
    border-radius: 16px;
    padding: 2px 8px;
}

.chip-status .delivery {
    background: #FFF2E2;
    color: #EB2D4B;
}

.chip-status .finish {
    background: #E6FCE2;
    color: #00BA3D;
}

.chip-status .wait {
    background: #F2F2F2;
    color: #656565;
}

.chip-status .danger {
    background: #F2F2F2;
    color: #DE372D;
}

.personal-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: gainsboro;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 16px;
}

    .personal-logo .icon {
        width: 80%;
        height: 80%;
        color: white;
    }

.shop-dashboard {
    height: 164px;
}

.personal-icon {
    width: 24px;
    height: 24px;
}

.personal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    color: #4F5050;
}