#main {
    --orderBackground: #f7f7f7;
    background-color: var(--orderBackground);
    margin: 0;
    padding-bottom: 32px;
}

.view-order-detail {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-top: var(--gap16);
}

.view-order-detail > * {
    margin: 0 !important;
    padding: 0;
}

.txt-rq {
    color: red;
}

.view-order-detail .breadcrumb {
    width: 100%;
    margin-bottom: 16px !important;
}

img {
    color: var(--gray);
    font-size: 13px;
}

.login-page {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
}

.sidebar-profile {
    width: 260px;
}

.wishlist-content {
    width: calc(100% - 285px);
    padding-left: 25px;
}

.sidebar-content {
    width: calc(100% - 285px);
    /* background-color: #fff; */
    border-radius: 3px;
    padding: var(--gap20);
    margin-left: 25px;
}

.my-account-section-header {
    align-items: center;
    border-bottom: 1px solid #efefef;
    padding: 0px 0 var(--gap20);
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: auto 232px;
}

.my-account-header-title {
    font-size: 19px;
    font-weight: 500;
    line-height: 1.5rem;
    color: var(--dark);
}

.my-account-header-subtitle {
    font-size: 13px;
    line-height: 1.0625rem;
    color: #999;
}

.my-account-header-qr-code {
    --borderWidth: 1px;
    grid-row-start: span 2;
    font-size: 13px;
    color: #25459a;
    padding: 0;
    margin: 0;
    background-color: #fafafa;
    border-radius: 7px;
    position: relative;
    user-select: none;
}

.my-account-header-qr-code-content {
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    grid-gap: 4px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    background-color: #fafafa;
    padding: var(--gap8) var(--gap12);
}


.my-account-header-qr-code:hover {
    background-color: #f8f8f8;
}

.my-account-header-qr-code strong {
    color: var(--primary)
}

.my-account-header-qr-code .my-account-header-qr-code-content svg {
    min-width: 36px;
    width: 36px;
}

.scan-qr-code-popup {
    background-color: #fff;
    border-radius: 7px;
    box-shadow: 0 6px 36px rgba(11 11 11 / 33%);
    padding: var(--gap10) var(--gap10) var(--gap20);
    width: 340px;
    color: #595959;
    position: absolute;
    top: calc(100% + 2px);
    right: 0;
    z-index: 2;
    font-size: 14px;
    transition: opacity 300ms ease-in-out;
    opacity: 0;
    pointer-events: none;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    pointer-events: none;
}

.scan-qr-code-popup::after {
    bottom: 100%;
	right: 40px;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(255, 255, 255, 0);
	border-bottom-color: #fff;
	border-width: 6px;
	margin-left: -6px;
}


.my-account-header-qr-code::before {
    content: '';
    position: absolute;
    top: calc(-1 * var(--borderWidth));
    left: calc(-1 * var(--borderWidth));
    height: calc(100% + var(--borderWidth) * 2);
    width: calc(100% + var(--borderWidth) * 2);
    background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
    border-radius: calc(2 * var(--borderWidth));
    animation: animatedgradient 3s ease alternate infinite;
    background-size: 300% 300%;
    border-radius: 7px;
}

@keyframes animatedgradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.my-account-header-qr-code:hover .scan-qr-code-popup {
    opacity: 1;
    pointer-events: all;
}

.scan-qr-code-popup-footer a {
    color: var(--primary);
}

.scan-qr-code-popup-title {
    font-size: 18px;
    font-weight: 600;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    grid-gap: var(--gap10);
    margin-bottom: var(--gap16);
    flex-direction: column;
}

.scan-qr-code-popup-desc {
    padding-left: var(--gap10);
    padding-right: var(--gap10);
}

.scan-qr-code-popup-title::after {
    content: "";
    height: 2px;
    width: 50%;
    display: block;
    background-color: var(--primary);
}

.scan-qr-code-popup-warning {
    font-size: 18px;
    font-weight: 600;
    position: relative;
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    grid-gap: var(--gap10);
    margin-bottom: var(--gap16);
    flex-direction: column;
    color: var(--warning);
}

.scan-qr-code-popup-download {
    font-size: 18px;
    font-weight: 600;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    grid-gap: var(--gap10);
    margin-bottom: var(--gap16);
    flex-direction: column;
}

.profile-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: var(--gap10) 0;
    font-size: var(--gap16);
}

.profile-row label {
    margin: 0;
    min-height: 1px;
    width: 1var(--gap20);
    padding-right: 7px;
    color: #999;
    font-size: var(--gap14);
}

.btn-saveinfo {
    border: none;
    background-color: var(--primary);;
    color: #fff;
    padding: var(--gap12) var(--gap20);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 !important;
}

.btn-saveinfo:hover {
    background-color: #1c95c1;
}

.side-menu-header {
    font-weight: 600;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: #f1f1f1;
    border-radius: var(--borderRadius);
    color: #1582FD;
    padding: var(--gap10) var(--gap12);
    user-select: none;
}

.side-menu-header svg {
    margin-right: 4px;
}

.my-account-content i {
    font-style: normal;
    color: #999;
}

.widget-profile {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: var(--gap16) 0;
    margin-bottom: var(--gap16);
}

.chiaki-avatar {
    width: 48px;
    height: 48px;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #d1d1d1;
}

.chiaki-avatar img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.profile-info {
    padding-left: var(--gap16);
}

.profile-info {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.profile-name {
    font-weight: bold;
    margin-bottom: 3px;
}

.profile-edit {
    color: #777;
    font-size: 13px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
}

.profile-edit svg {
    width: var(--gap14);
    margin-right: 7px;
}

.user-head svg,
.widget-link svg,
.widget-link .chiaki-coin-img {
    width: var(--gap18);
    height: var(--gap18);
    margin-right: var(--gap10);
}

.widget-sub-link {
    padding-left: 28px;
}

.side-menu,
.side-menu li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.side-menu>li+li {
    margin-top: 24px;
}

.user-head,
.widget-link .link-item {
    padding: var(--gap10);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: var(--dark);
}

.widget-link .link-item:hover {
    background-color: transparent;
    color: #1976d2;
    cursor: pointer;
    user-select: none;
}

.widget-link .link-item.active {
    cursor: default;
}

.user-point {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--gap14);
}

.user-point:last-child {
    margin-bottom: var(--gap16);
}

.table-user-information tbody td {
    vertical-align: middle !important
}

.table-user-information tbody td:nth-of-type(2) {
    width: 1var(--gap20);
}

.table-user-information thead th:first-child {
    white-space: nowrap !important;
}

.table-user-information thead th {
    font-size: 13px;
    line-height: var(--gap16);
    vertical-align: middle !important;
    text-align: center;
}

.order-time {
    width: 100px;
}

.order-amount {
    text-align: right;
    font-weight: bold;
}

.order-rating {
    font-size: var(--gap12);
}

/* order page */
.order-detail-box {
    padding: 0;
}

.order-detail-box b,
.order-detail-box strong {
    font-weight: 500;
}

.order-detail-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: var(--gap16);
    border-bottom: 1px solid #e9e9e9;
    padding: var(--gap10) var(--gap16);
    gap: 6px;
}

.pending-reason {
    padding: 0;
    color: var(--dark);
    margin-left: auto;
    user-select: none;
}

.pending-reason strong {
    font-weight: bold;
}

.order-detail-header .order-status-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;
    grid-gap: 8px;
}


.order-code-item {
    white-space: nowrap;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    grid-gap: 10px;
    font-size: 14px;
}

.order-step-contain {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--gap16) 25px;
    width: 80%;
    margin: var(--gap10) auto;
    user-select: none;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
}

.step-icon {
    min-width: 64px;
    min-height: 64px;
    max-width: 64px;
    max-height: 64px;
    border-radius: 48px;
    margin: 0 auto;
    border: 2px solid #1cabcf;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.step-item.active .step-icon {
    background-color: #1cabcf;
}

.step-item.active .step-icon img {
    filter: brightness(0) invert(1);
}

.step-item:not(.active) {
    cursor: default;
    user-select: none;
}

.step-text {
    display: block;
    width: 100%;
    max-width: 85px;
    text-align: center;
    line-height: var(--gap14);
    font-size: var(--gap12);
    margin-top: var(--gap10);
    font-weight: 500
}

.step-line {
    height: 2px;
    width: calc(40px + (120 - 40) * ((100vw - 700px) / (1920 - 700)));
    min-height: 2px;
    background-color: #d1d1d1;
    display: block;
    margin-bottom: 30px;
}

.flex-dc {
    flex-direction: column;
}

.flex-b {
    display: flex;
}

.flex-s {
    justify-content: space-between;
}

.flex-e {
    justify-content: flex-end;
}

.flex-c {
    justify-content: center;
}

.align-c {
    align-items: center;
}

.align-e {
    align-items: flex-end;
}

.align-s {
    align-items: stretch;
}

.order-status-row {
    color: #666;
    align-items: center;
}

.order-small {
    font-size: 13px;
}

.order-code {
    color: #1cabcf
}

.order-list-body tr:nth-child(even) {
    background-color: #fcfcfc
}

.order-list-body tr:hover {
    background-color: #f1f1f1;
    cursor: default;
}

.order-status-item .order-stat-note {
    padding: 4px var(--gap12);
    line-height: 1.5;
    border-radius: 24px;
    display: inline-block;
    font-size: var(--gap12);
}

.order-status-item .order-stat-note strong {
    font-weight: bold;
}

.list-order-item {
    display: flex;
    flex-direction: column;
    gap: var(--gap10);
    margin-top: var(--gap16);
}

.list-order-item > * {
    width: 100%;
}

.order-item-head {
    padding: 5px var(--gap16) 8px;
    border-bottom: 1px solid #f1f1f1;
}

.order-item-body {
    padding: 8px 25px 5px;
}

.order-item-body+.order-item-body {
    border-top: 1px solid #f1f1f1;
    padding-top: var(--gap10);
}

.order-item-image {
    min-width: 115px;
    width: 115px;
    overflow: hidden;
    display: block;
    position: relative;
    white-space: nowrap;
}

a.order-item-image::before {
    content: "";
    padding-top: 100%;
    display: block;
}

a.order-item-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.order-item-detal {
    width: 100%;
}

.order-item-detal:empty {
    display: none;
}

.order-item-price-box {
    min-width: 300px;
    width: 300px;
    margin-left: auto;
}

.order-item-unit-price {
    font-size: var(--gap14);
}

.order-item-product-name {
    font-size: var(--gap16);
    line-height: 1.5;
    margin-bottom: 5px;
    color: var(--dark);
}
.order-item-product-name:hover {
    color: var(--primary);
}
.order-item-order-code,
.order-item-unit-price {
    color: var(--silver);
    font-size: var(--gap16);
}
.order-item-order-code b {
    color: var(--primary);
}
.order-item-unit-price span {
    color: var(--black);
}
.order-item-saleoff {
    padding: 0 7px;
    font-weight: 500;
    white-space: nowrap;
    min-width: 80px;
    text-align: center;
}

.order-item-total-qty {
    padding: 0 7px;
    font-weight: 500;
    white-space: nowrap;
    text-align: center;
    min-width: 80px;
}

.order-item-total-price {
    padding: 0 0 0 var(--gap10);
    font-weight: 500;
    color: var(--price);
    white-space: nowrap;
    min-width: 100px;
    text-align: right;
}

.unit-price {
    font-weight: 500;
    padding: 0 2px;
    font-size: var(--gap14);
}

.order-item-body {
    min-height: 100px;
    gap: var(--gap10);
}

.order-item-footer {
    border-top: 1px solid #e8e8e8;
    padding-left: 25px;
    padding-right: 25px;
}

.order-item-action {
    background-color: #fff;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: var(--gap16);
    border-top: 1px solid #e8e8e8;
    border-radius: 0 0 5px 5px;
}
.report-product span {
    display: block;
}

.report-product {
    padding-right: 12px;
}

.order-item-action > * + * {
    margin-left: var(--gap16);
}

.order-item-action .footer-btn {
    padding: var(--gap8) var(--gap16);
    line-height: var(--gap16);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border: 2px solid var(--primary);
    color: var(--primary-dk);
    border-radius: 5px;
    width: fit-content;
    width: -moz-fit-content;
}

.order-item-action .footer-btn:hover {
    background-color: var(--primarydk);
    color: #fff;
}

.order-item-action .footer-btn.order-successful-button {
    border-color: #4caf50;
    background-color: #4caf50;
    color: #fff;
}

.payment-online-wrap {
    flex-direction: column;
}

.order-item-action .footer-btn  {
    background-color: #006bdd;
    border-color: #006bdd;
    color: #fff;
}

.order-item-action .footer-btn:hover {
    color: #fff;
    background-color: #0453a7;
    border-color: #0453a7
}

.order-item-action .footer-btn.vnpay-button > img,
.order-item-action .footer-btn.payon-button > img {
    width: 40px;
    height: 40px;
    display: none;
    margin-right: 6px;
}

.order-item-action .footer-btn.vnpay-button div img,
.order-item-action .footer-btn.payon-button div img {
    margin: 4px auto 0;
    display: block;
    width: 130px;
}

.order-item-action  .footer-btn.order-rating-button:hover {
    border-color: var(--primary-dk);
    background-color: var(--primary-dk);
    color: #fff;
}

.order-item-action .footer-btn.order-successful-button:hover {
    border-color: #357c38;
    background-color: #357c38;
}

.footer-order-item {
    display: flex;
    gap: 6px;
    text-align: left;
    font-size: var(--gap14);
    padding: 7px 0;
    border-bottom: 1px dotted #e8e8e8;
    width: 50%;
    margin-left: auto;
}

.footer-order-item:last-child {
    border: none;
}

.footer-order-col {
    min-width: var(--gap16);
    min-height: 22px;
    text-align: right;
    padding: 0;
}

.footer-order-col input {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    margin: 0;
    padding: 0;
}

.order-last-col {
    min-width: 120px;
    font-size: var(--gap16);
    font-weight: 500;
}

.customer-info {
    margin-bottom: 25px;
}

.customer-info .footer-order-item {
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
    border: none;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 7px;
}

.customer-info .footer-order-item .order-last-col {
    text-align: left;
    padding-left: 0;
    min-width: 1px;
    font-weight: normal;
    font-size: var(--gap14);
    color: #777;
}

.customer-info .footer-order-item .footer-order-col:first-child {
    text-align: left;
}


.full-name {
    text-transform: capitalize;
}

.customer-info .footer-order-item small {
    padding: 0 5px;
    display: inline-block;
    color: #999;
}

.order-list-info .order-last-col {
    font-weight: 400 !important
}

.profile-action {
    width: 96px;
    min-width: 96px;
    padding-left: 0
}

.profile-action>a {
    display: block;
    font-size: var(--gap12);
}

#main[role="user"] .sidebar-profile {
    padding-left: 0
}

#main[role="user"] label {
    font-weight: 400;
    margin: 0;
}

.my-account-profile {
    padding-top: var(--gap20);
}

.my-account-profile.disabled-profile .btn-thay-doi{
    display: none;
    pointer-events: none;
}

.my-account-profile .form-group {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0 0 var(--gap20);
}

.profile-lable {
    width: 150px;
    min-width: 150px;
    min-height: 1px;
}

.profile-content {
    width: 100%;
    max-width: 360px;
    position: relative;
}

.profile-content > .note {
    font-style: italic;
    color: #999;
    display: block;
    margin-top: 7px;
    font-size: var(--gap12);
    position: absolute;
    top: calc(-1 * var(--gap18));
    right: var(--gap10);
    background-color: #fff;
    padding: 2px 5px;
    pointer-events: none;
}

.profile-content input {
    padding: var(--gap10) var(--gap12);
    border-radius: 3px;
    height: auto;
    color: #333;
}

.profile-content .form-control:focus {
    border-color: rgba(67 192 228 / 90%);
    outline: 0;
    box-shadow: 0 0 0 2px rgba(67 192 228 / 30%);
    border-radius: 4px;
}

.profile-content select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%);
    background-position: calc(100% - 13px) 50%, calc(100% - 7px) 50%, calc(100% - var(--gap16));
    background-size: 7px 7px, 7px 7px, 1px calc(100% - var(--gap16));
    background-repeat: no-repeat;
    padding: var(--gap10) var(--gap20);
    border-radius: 4px;
    height: auto;
}

.profile-content select.form-control:focus {
    background-image: linear-gradient(45deg, #308ee9 50%, transparent 50%), linear-gradient(135deg, transparent 50%, #308ee9 50%);
    background-position: calc(100% - 7px) 50%, calc(100% - 14px) 50%;
    background-size: 7px 7px, 7px 7px, 1px calc(100% - var(--gap16));
}

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

.profile-content-action>* {
    margin-right: var(--gap10);
    border-radius: 4px;
    padding: var(--gap10) var(--gap20);
    border: none;
}

.change-password {
    display: block;
    padding: 0 var(--gap10);
}

.add-new-address-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease-in-out;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 11111111;
}

.address-cover-active .add-new-address-wrapper {
    opacity: 1;
    pointer-events: all
}

.add-new-address-background {
    display: block;
    background-color: rgba(11 11 11 / 55%);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

.add-new-address-content {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -30%);
    z-index: 2;
    background-color: #fff;
    border-radius: var(--borderRadius);
    box-shadow: 0 6px 36px rgba(11 11 11 / 11%);
    width: 92%;
    max-width: 600px;
}

.address-content-header {
    font-size: 19px;
    padding: 8px var(--gap16);
}

.close-address-popup {
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    cursor: pointer;
    ;
    display: flex;
    justify-content: center;
    align-items: center;
}

.address-content-contain {
    padding: var(--gap10) var(--gap16);
}

.address-row {
    margin-bottom: var(--gap16);
}

.is-default {
    margin-bottom: 0px;
}
.has2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: var(--gap12);
}

.has3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: var(--gap12);
}

.address-input {
    padding: var(--gap10) var(--gap12);
    border: 1px solid #e1e1e1;
    border-radius: 3px;
    width: 100%;
}
@media (min-width: 1366px){
    select.address-input {
        font-size: var(--gap16);
        background-position: calc(100% - 13px) 20px, calc(100% - 8px) 20px, calc(100% - var(--gap16));
    }
    select.address-input:focus {
        background-image: linear-gradient(315deg, #43c0e4 50%, transparent 50%), linear-gradient(225deg, transparent 50%, #43c0e4 50%);
    }
}

.address-action-gr button {
    padding: var(--gap10) var(--gap12);
    margin-right: var(--gap10);
    background-color: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
    border-radius: 3px;
    outline: none;
    color: #fff;
}

.address-action-gr button.address-action-reset {
    background-color: #f1f1f1;
    color: var(--dark);;
    border-color: #d1d1d1;
}
.address-action-gr button.address-action-close {
    background-color: #f1f1f1;
    color: var(--dark);;
    border-color: #d1d1d1;
}

.list-address {
    padding: var(--gap16) 0;
}

.customer-address:nth-child(n + 2) {
    margin-top: var(--gap16);
    padding-top: var(--gap16);
    border-top: 1px solid #e1e1e1;
}

.customer-address .frist-col strong {
    text-transform: capitalize;
}

.address2col {
    display: grid;
    grid-template-columns: auto 280px
}

.address-item:nth-child(n + 2) {
    margin-top: 4px;
}

.item-default {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    line-height: 1.1;
}

.item-address {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.item-address-row {
    color: var(--dark);;
    margin-bottom: 5px;
    font-size: var(--gap16);
    display: flex;
    align-items: flex-start;
}
.item-address-row:last-child {
    font-size: var(--gap14);
}
.item-address-row p {
    margin-bottom: 0;
}
.item-address-row > svg {
    margin-top: 3px;
    opacity: 0.7;
    flex: 0 0 var(--gap14);
}
.item-address-row.action {
    display: block;
    text-align: right;
}

.item-address-row .item-label {
    color: #999;
}

.address-item.address2col .frist-col .add-is-default {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: 6px;
    color: rgb(38, 188, 78);
    font-size: var(--gap12);
    user-select: none;
    pointer-events: none;
}

.frist-col div svg {
    margin-right: 4px;
}

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

.address-upgrade {
    cursor: pointer;
    color: #1c95c1;
    font-weight: 600;
    white-space: nowrap;
    font-size: 13px;
    margin-left: 28px;
    display: inline-flex;
}
.address-upgrade svg {
    margin-right: 5px;
}
.address-upgrade:hover {
    color: var(--primary-dk)
}
.set-default {
    background-color: #fff;
    border: 1px solid var(--primary);
    color: var(--primary);;
    outline: none;
    padding: 0 var(--gap12);
    font-size: 13px;
    cursor: default;
    text-align: center;
    cursor: pointer;
    border-radius: 3px;
    margin-left: 6px;
    border-radius: var(--borderRadius);
    height: 36px;
    line-height: 36px;
}

.set-default:hover {
    background-color: var(--primary);
    color: #fff;
}

.new-price.viewed-sale-price {
    margin-left: 0;
}

.empty-product {
    padding: var(--gap16) 0;
}

.empty-product a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding: var(--gap10) var(--gap20);
    border: 1px solid var(--primary);
}

.wishlist-item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0;
    font-size: var(--gap14);
    margin-bottom: 0px;
}

.wishlist-mod .shops + .shops {
    border-top: 1px solid #eff0f5;
    padding-top: var(--gap20);
}

.mod-shop {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: var(--dark);;
    margin-bottom: var(--gap10);
}

.shopName {
    color: var(--dark);;
    text-transform: uppercase;
    font-size: var(--gap12);
    font-weight: bold;
    margin-left: 6px;
    line-height: 1;
}

.mod-shop:hover .shopName {
    text-decoration: none;
}

.wishlist-mod .shops + .shops {
    margin-top: var(--gap20);
}

.wishlist-item .pic {
    width: 80px;
    height: 80px;
    margin-right: var(--gap12);
    position: relative;
}


.wishlist-item .pic img {
    height: 80px;
    max-width: 100%;
    margin-left:auto;
    margin-right:auto;
    display: block;
    object-fit: contain;
}

.wishlist-item .info {
    width: 52%;
    margin-right: 36px;
}
.wishlist-item .title {
    color: var(--black);
}
.wishlist-item .title:hover {
    color: var(--primary);
}
.wishlist-item .sku {
    color: #888;
}

.wishlist-item .currPrice {
    color: var(--price);
    font-size: var(--gap18);
    margin-right: 8px;
    min-width: 80px;
}
.product-show-code {
    color: var(--primary) !important;
    font-weight: bold;
    font-size: 106%;
    letter-spacing: 1px;
}
.originPrice {
    text-decoration: line-through;
}

.mod-shop-wrap {
    margin-bottom: 6px;
}

.right-oper {
    margin-left: auto;
}
.delete-item {
    display: flex;
    align-items: center;
    margin-top: 5px;
    font-size: 13px;
    color: var(--silver);
    cursor: pointer;
}
.delete-item:hover {
    color: var(--dark);
}
.ic-delete {
    -webkit-mask-image: url(/images/trash.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-image: url(/images/trash.svg);
    mask-size: cover;
    mask-repeat: no-repeat;
    width: var(--gap16);
    height: var(--gap16);
    background-color: #777;
    display: block;
    margin-right: 5px;
    cursor: pointer;
}

.wishlist-item-add {
    border-radius: var(--borderRadius);
    color: #fff;
    cursor: pointer;
    display: block;
    font-size: 13px;
    font-weight: 400;
    padding: 0px 24px 0px 40px;
    text-align: center;
    white-space: nowrap;
    text-transform: uppercase;
    position: relative;
    user-select: none;
    background: var(--primary) url(https://chiaki.vn/frontend/images/add-cart.svg) no-repeat 13px center/20px auto;
    height: 46px;
    line-height: 46px;
}
.wishlist-item-add.load-popup {
    border-radius: var(--borderRadius);
}
.wishlist-item-add:hover {
    background-color: var(--primary-dk);
}

.wishlist-content .account-info {
    background-color: #fff;
    padding: var(--gap16) 35px;
    border-radius: 5px 5px 0 0;
}

.wishlist-mod {
    background-color: #fff;
    padding: 0 20px var(--gap20);
    border-radius: 0 0 5px 5px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}

.shops.wishlist-out-off-stock {
    order: 9999;
}

.shops.wishlist-out-off-stock:has(.mod-shop .shopName:empty) {
    order: 99999;
}

.wishlist-out-off-stock .wishlist-item >  *:not(.pic) {
    filter: grayscale(1);
    user-select: none;
}

.wishlist-out-off-stock .wishlist-item-add {
    pointer-events: none;
    opacity: 0.5;
    background-image: none;
    padding: 0 24px;
}

.wishlist-out-off-stock .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.imgMask {
    position: absolute;
    top: 0;
    left: 0;;
    border-radius: var(--borderRadius);
    background-color: rgba(11 11 11 / 33%);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: var(--gap10);
    text-align: center;
    font-size: 11px;
    pointer-events: none;
}

.my-account-header-button {
    border: none;
    background-color: var(--primary-dk);;
    color: #fff;
    padding: var(--gap12) var(--gap20);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    outline: none;
    width: 100%;
}

.message-alert {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: var(--gap10) var(--gap20);
    border-radius: 4px
}

.message-alert svg {
    margin-right: var(--gap10)
}

.message-error {
    color: #721c24;
    background-color: #f8d7da;
}


.download-app {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: var(--gap16);
    padding: 0 0 0;
    margin: 0;
    background-color: var(--orderBackground);;
}

.download-footer {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    align-items: flex-start;
    text-align: center;
    margin-bottom: 24px;
}

.scan-qr-head {
    background-color: #43c0e4;
    border-radius: 9px 9px 0 0;
    padding: 6px var(--gap12);
    color: #fff;
}

.scan-qr-head span {
    display: block;
    font-weight: bold;
    font-size: 19px;
}

.scan-qr-footer {
    background-color: #fff;
    border-radius: 0 0 5px 5px;
    padding: var(--gap12);
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-login-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5); /* Màu mờ */
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.btn-refresh-qr-login {
    height: 40px;
    background: #25AADA;
    border: 1px solid #25AADA;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
}

.btn-refresh-qr-login:hover {
    background-color: #2199c4;
}

.btn-download-qr-login {
    height: 40px;
    background: #25AADA;
    border: 1px solid #25AADA;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
}

.btn-download-qr-login:hover {
    background-color: #2199c4;
}

.download-head {
    text-align: center;
}
.download-head > span:first-child {
    display: block;
    text-align: center;
    font-size: var(--gap16);
}

.download-head > div {
    font-size: 17px;
    color: #43c0e4;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 4px;
}

.download-head-sub {
    width: fit-content;
    position: relative;
    margin: 6px auto 0;
    text-align: center;
    font-size: var(--gap12);
    font-weight: bold;
    padding-left: 5px;
    padding-right: 5px;
}

.download-head-sub span {
    position: relative;
    z-index: 3;
    color: #fff;
    padding: 6px;
    display: block;
    text-transform: uppercase;
}

.download-head-sub::before {
    content: "";
    height: 100%;
    z-index: 2;
    width: 100%;
    display: block;
    position: absolute;
    background-color: #43c0e4;
    transform: skewX(-10deg);
}

.download-head-sub::after {
    content: "";
    height: 100%;
    z-index: 1;
    width: 100%;
    display: block;
    position: absolute;
    background-color: #fff;
    transform: skewX(-10deg) translate(-4px, -4px);
    top: 0;
    left: 0
}

.download-app .icon {
    display: block;
    border: 1px solid #43c0e4;
    border-radius: var(--borderRadius);
}

.download-app .icon img {
    max-width: 100%;
    display: block;
    margin: 0;
}

.form-group.has-error {
    position: relative;
}
.form-group.has-error .note {
    display: none;
}
.form-group.has-error span.help-block {
    position: absolute;
    top: var(--gap12);
    right: var(--gap10);
    background: #FFF;
    padding: 0;
    /* min-width: 50%; */
    text-align: right;
    color: #ff2f16;
} 
.form-group.has-error .control-label {
    color: #ff2f16;
}
.form-group.has-error .form-control {
    border-color: #ff2f16;
}

.wishlist-content .account-info {
    padding: var(--gap16);
}

.order-expected {
    padding: var(--gap16) 24px;
    background-color: rgba(67 191 227 / 7%);
    font-size: var(--gap14);
}

.order-expected > * {
    display: grid;
    grid-template-columns: 110px auto;
    grid-gap: 4px;
}

.order-expected > * + * {
    margin-top: 8px;
}

.order-expected span:first-child {
    color: #333;
}

.order-expected span:last-child {
    color: #23527c;
    font-weight: bold;
}

@media (min-width: 1000px) {
    .sidebar-content {
        background-color: #fff;
    }
}

@media (max-width: 997px) {
    .sidebar-profile {
        width: 216px;
    }

    .sidebar-content {
        width: calc(100% - 216px);
        margin-left: 0
    }

    .step-text {
        width: 90px;
    }

    .order-step-contain {
        width: fit-content;
        padding-left: 6px;
        padding-right: 6px;
    }

    .order-item-price-box {
        width: 200px;
        min-width: 200px;
    }
}


@media (max-width: 820px) {
    .profile-content > .note {
        position: relative;
        top: 0;
        right: 0;
    }
    #main {
        font-size: var(--gap16);
    }
    .breadcrumb {
        padding-left: 0;
        padding-right: 0;
    }
    .breadcrumb>li {
        margin-left: 0;
    }
    .address-header {
        display: block;
        padding: 8px var(--gap16);
    }
    .address-button-wrap {
        padding: 8px;
    }
    .my-account-header-button {
        border: none;
        background-color: #139CC6;
        color: #fff;
        padding: var(--gap12) var(--gap20);
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        outline: none;
        width: 100%;
    }

    .my-account-header-button:hover {
        background-color: #1c95c1;
    }
    .my-account-header-subtitle {
        margin-top: 0;
    }


    .address-item {
        padding: 0 10px;
        margin: 0;
    }

    .address2col {
        grid-template-columns: auto 280px;
        margin-bottom: 6px;
    }

    .set-default {
        width: fit-content
    }

    .has3col {
        grid-template-columns: repeat(1, 1fr)
    }

    .sidebar-profile {
        width: 250px;
    }

    .sidebar-content {
        width: calc(100% - 250px - 20px);
        margin-left: var(--gap20);
        font-size: var(--gap16);
        padding: var(--gap12);
    }

    .my-account-header-subtitle {
        margin-top: 6px;
    }

    .wishlist-content .pagination {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .item-address-row p {
        line-height: 1.5;
    }
    .address-upgrade {
        margin-left: var(--gap16);
    }
    .address2col {
        grid-template-columns: 100%;
    }
    .form-group.has-error span.help-block {
        top: 50%;
        margin: 0;
        line-height: 1;
        transform: translateY(-50%);
    }
    .wishlist-content .address-header {
        padding: 0;    
        grid-template-columns: auto;
    }
    .wishlist-content .account-info,
    .wishlist-mod {
        padding: var(--gap16);
    }

    .wishlist-item {
        display: grid;
        grid-template-columns: 92px calc(100% - 92px);
        grid-template-areas:
        "wPic wContent"
        "wPic wPrice"
        "wPic wButton";
        position: relative;
    }

    .wishlist-item .pic {
        grid-area: wPic;
    }
    .wishlist-item .info {
        grid-area: wContent;
        width: 100% !important;
        margin: 0 20px 8px 0;
    }

    .wishlist-item .price {
        grid-area: wPrice;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .wishlist-item .right-oper {
        grid-area: wButton;
        margin: var(--gap10) 0 0 auto;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .wishlist-item-add {
        display: inline-block;
    }
    .wishlist-item-add {
        font-size: 0;
        color: rgba(222 222 222 / 0);
        padding: var(--gap10) 0;
        width: 50px;
        height: 50px;
    }

    .wishlist-out-off-stock .wishlist-item .wishlist-item-add {
        display: none;
    } 
    .item-address-row {
        margin-bottom: 0;
    }
    .address-row.address-action-gr {
        margin-top: var(--gap10);
        position: sticky;
        bottom: 0;
        z-index: 999;
        background: #fff;
        margin: 0;
        padding: 8px 0 12px;
        margin-bottom: 0 !important;
    }

    .address-content-contain {
        padding-bottom: 0;
    }

    .change-password h2.content-title {
        font-size: 17px;
        font-weight: 600;
    }

    .profile-content input {
        height: 36px;
        font-size: 16px;
    }
    .form-group.has-error span.help-block {
        position: relative;
        transform: unset;
        right: unset;
        text-align: left;
        top: unset;
        margin-top: 7px;
        font-size: 12px;
        padding: 2px 5px;
    }
}
@media (max-width: 1100px) {
    .login-page {
        flex-wrap: wrap;
    }

    .sidebar-profile,
    .sidebar-content,
    .wishlist-content {
        width: 100%;
        padding: 0 !important;
        font-size: var(--gap14);
        margin: 0;
    }
    .sidebar-content {
        position: relative;
        border: none;
        margin-bottom: var(--gap16);
        border-radius: var(--borderRadius);
        padding: 8px;
    }
    .profile-row {
        padding: var(--gap10) var(--gap16);
    }

    .my-account-profile .form-group {
        /* padding-left: var(--gap16);
        padding-right: var(--gap16); */
        display: block;
    }

    .profile-lable {
        min-width: 90px;
    }

    .my-account-section-header {
        padding: 0;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 110px;
        grid-gap: var(--gap8);
        align-items: center;
        border: 0;
    }

    .scan-qr-code-popup,
    .scan-qr-code-popup-bg {
        width: 100%;
        height: 100%;
        opacity: 0;
        pointer-events: none;
        background-color: rgba(11 11 11 / 33%);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99999;
        transition: all 300ms ease-in-out;
    }

    .scan-qr-code-popup {
        z-index: 100000;
        top: auto;
        bottom: 0;
        background-color: #fff;
        border-radius: 21px 21px 0 0;
        height: fit-content;
        pointer-events: none;
        transform: translateY(100%);
        padding-bottom: 60px;
    }

    .scan-qr-code-popup::after {
        display: none;
    }

    .profile-settings {
        width: 100%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .my-account-header-qr-code::before {
        display: none;
    }

    .my-account-header-qr-code-content {
        padding: 4px 6px;
    }

    .my-account-header-qr-code-content-text {
        display: flex;
        white-space: nowrap;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .my-account-header-qr-code-content-text small {
        font-size: 12px
    }

    .scan-qr-code-popup img {
        object-fit: contain;
    }

    .scan-qr-code-popup.active,
    .scan-qr-code-popup-bg.active {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }

    .my-account-header-title {
        font-size: 16px;
        font-weight: 600;
        color: #0A0A0A;
    }
    .my-account-header-subtitle {
        color: #737373;
        font-size: 14px;
        margin: 0;
    }
    .my-account-header-button {
        padding: 8px var(--gap12);
        text-align: center;
        border-radius: var(--borderRadius);
        height: 36px;
        line-height: 36px;
    }

    .my-account-header-button svg {
        min-width: var(--gap20);
        transform: translateX(-3px);
    }

    .item-address-row {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        grid-gap: 12px;
        color: #525252;
    }

    .item-label {
        min-width: 76px;
    }

    .birthday-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: var(--gap10);
    }

    .birthday-row > * {
        padding: 0;
    }

    .widget-link {
        position: fixed;
        bottom: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(11 11 11 / 20%);
        box-shadow: 0 6px 32px rgba(11 11 11 / 11%);
        z-index: 99999;
        padding: var(--gap16);
        opacity: 0;
        pointer-events: none;
        transition: opacity 300ms ease-in-out;
    }

    .widget-profile-background {
        position: fixed;
        bottom: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(11 11 11 / 20%);
        box-shadow: 0 6px 32px rgba(11 11 11 / 11%);
        z-index: 1;
        opacity: 1;
    }

    .side-menu {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 6px 32px rgba(11 11 11 / 11%);
        padding: 24px var(--gap16) 60px;
        transform: translateY(110%);
        pointer-events: none;
        transition: transform 300ms ease-in-out;
        z-index: 2;
        max-height: 86vh;
        border-radius: 21px 21px 0 0;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .user-setting {
        overflow: hidden;
    }

    .user-point {
        margin-bottom: 0;
    }

    .user-head,
    .widget-link .link-item {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .user-setting .widget-link {
        opacity: 1;
        pointer-events: all;
    }
    .user-setting .side-menu {
        transform: translateY(0);
        pointer-events: all;
    }

    .widget-profile {
        position: relative;
        border: none;
        background: #fff;
        margin-bottom: var(--gap16);
        border-radius: var(--borderRadius);
        padding: 8px;
    }

    .profile-settings::after {
        content: "";
        background-color: #888;
        width: 24px;
        height: 24px;
        display: block;
        position: absolute;
        top: 50%;
        right: var(--gap12);
        transform: translateY(-50%);

        -webkit-mask-image: url(/images/gear.svg);
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-size: cover;
        mask-image: url(/images/gear.svg);
        mask-size: cover;
        mask-repeat: no-repeat;
    }

    .widget-sub-link {
        padding-left: 0;
    }

    .wishlist-item .info {
        grid-area: wContent;
        width: 50%;
        margin: 0 20px 8px 0;
    }
    .download-app-user {
        display: none;
    }
    .my-account-profile{
        padding: 12px;
    }
    .my-account-profile.snow-my-acc-profile .form-group{
        display: flex;
    }   
    .my-account-profile.snow-my-acc-profile .profile-lable {
        min-width: 150px;
    }

    .list-address .customer-address {
        padding: 10px 0;
        background: #fff;
        border-radius: 8px;
    }

    .customer-address:nth-child(n + 2) {
        border: 0;
        margin-top: 12px;
    }

    .address-item.address2col .frist-col .add-is-default {
        color: #17803D;
        background-color: #F1FDF4;
        border-radius: 16px;
        padding: 4px 8px;
        font-size: 14px;
    }

    .customer-address .item-default {
        font-size: 16px;
    }

    .item-address-row > svg,
    .frist-col div svg {
        margin: 2px 0 0 0;
        min-width: 16px;
    }

    .item-address-row + .item-address-row {
        margin-top: 4px;
    }

    .item-address-row a {
        font-weight: 500;
        font-size: 15px;
    }

    .address-item:has(.address-action-wrapp) {
        margin-top: 10px;
        border-top: 1px solid #f5f5f5;
        padding-top: 12px;
    }

    .address-action-wrapp .set-default {
        color: #137CA6;
        background-color: #EDFBFD;
        padding: 4px 10px;
        border-radius: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 0;
    }

    .address-upgrade.delete-action {
        color: #D92A28;
    }

    .add-new-address-content {
        width: 100%;
        bottom: 0;
        top: auto;
        left: 0;
        transform: unset;
        border-radius: 20px 20px 0 0;
        max-height: 85vh;
        overflow-y: auto;
    }

    .address-header-content {
        padding: 16px 26px 0 16px;
    }

    .address-header-content .address-header-title {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .add-new-address-content .address-row {
        margin-bottom: 8px;
    }

    .address-header-content .address-header-desc {
        font-size: 14px;
        color: #525252;
    }

    .add-new-address-content .close-address-popup {
        width: 36px;
        height: 36px;
        top: 4px;
    }

    .address-row label {
        color: #3F484F;
        font-size: 15px;
        font-weight: 400;
        margin-bottom: 4px;
        line-height: 1;
    }

    .address-row.is-default {
        margin-top: 12px;
    }

    .add-new-address-content .address-input {
        border-radius: 8px;
    }

    .add-new-address-content .address-input:focus-visible {
        outline: 0;
    } 

    .address-row label.address-default {
        display: flex;
        align-items: center;
        grid-gap: 4px;
        line-height: 1;
    }

    .address-row label.address-default input {
        width: 16px;
        height: 16px;
        margin: 0;
    }

    .add-new-address-content .address-action-submit, 
    .add-new-address-content .address-action-reset,
    .add-new-address-content .address-action-close {
        width: calc((100% - 22px) / 2);
        margin-right: 0;
        border-radius: 8px;
    }

    .add-new-address-content .address-action-submit {
        margin-right: 16px;
    }

    .address-row.address-action-gr {
        margin-bottom: 8px;
    }

    .address-action-gr button.address-action-close,
    .address-action-gr button.address-action-reset {
        background-color: transparent;
    }
}

@media (min-width: 780px) and (max-width: 1279px) and (orientation:landscape) {
    .list-address {
        padding: var(--gap16) var(--gap16);
    }

    .my-account-header-subtitle {
        margin-top: 4px;
    }

    .account-info {
        grid-area: sHeader;
    }
    .my-account-section-header {
        border: none;
    }
    .list-address {
        grid-area: sContent;
        border-top: 1px solid #efefef;
    }
    .address-button-wrap {
        grid-area: sButton;
        padding: var(--gap16) 0 var(--gap20);
        margin: 0;
    }
}

@media (max-width: 1024px) {
    .list-address {
        padding: var(--gap16) 0;
    }
   
}
@media (max-width: 1366px) and (orientation:landscape) {
    .my-account-header-button {
        width: auto;
        margin-top: var(--gap10);
    }
}
@media (max-width: 767px) {
    .address-action-wrapp {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    .address-upgrade:first-child {
        margin-left: 0;
    }
    .set-default {
        width: fit-content;
        display: inline-flex;
        margin-left: 0;
        margin-right: auto;
    }
    .side-menu > li + li {
        margin-top: var(--gap16);
    }
    
}
@media (max-width: 320px) { 
    .address-action-wrapp {
        flex-wrap: wrap;
    }
    .set-default {
        width: 100%;
        margin-left: 0;
        margin-top: var(--gap10);
        text-align: center;
        justify-content: center;
    }
}

@media (min-width: 760px) and (max-width: 1279px) {
    .login-page {
        width: 100%;
        max-width: 98vw;
        margin: 0 auto;
        padding: var(--gap16) 32px 24px;
    }
    .widget-profile,
    .order-detail.sidebar-content {
        box-shadow: 0 4px var(--gap16) rgba(11 11 11 / 10%);
        margin-top: var(--gap16);
    }

    .breadcrumb {
        width: 100%;
        margin: 0;
    }

    .item-address-row p + p {
        margin: 6px 0 0;
    }

    .my-account-profile .form-group {
        padding: 0;
    }
}

.shop-left.shop-name-head {
    display: flex;
    align-items: center;
    grid-gap: 6px;
}

.shop-name-head strong {
    cursor: default;
    font-weight: 400;
    font-size: 13px;
    color: var(--black) !important;
}

.shop-name-head small {
    cursor: pointer;
    background-color: #dbeef7;
    color: #1876ba;
    display: block;
    padding: 6px 8px;
    line-height: 1;
    border-radius: 3px;
}

.message-simple {
    width: calc(100% - 24px);
    margin: 14px auto 0;
    border: 1px solid rgba(235 16 0 / 10%);
    background-color: rgba(235 16 0 / 5%);
    color: #d10000;
    transition: 0.5s;
    font-size: 14px;
    padding: 10px;
    border-radius: 7px;
    position: relative;
    text-align: left;
    line-height: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    grid-gap: 8px
}

.message-head {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 10px;
    font-size: 17px;
    font-weight: bold;
}

.message-simple div {
    margin-top: 2px;
}

.message-simple strong {
    font-weight: bold;
}

.footer-btn.cancel-order {
    border: 1px solid #999;
    background-color: #fff;
    cursor: pointer;
    color: #333;
    font-size: 16px;
    display: block;
    width: fit-content;
    padding: 9px 16px;
    border-radius: 3px;
}

.footer-order-item .footer-btn.cancel-order {
    padding: 4px 12px;
    font-size: 15px;
    display: flex;
    align-items: center;
    grid-gap: 6px;
}

.footer-order-item .footer-btn.cancel-order:hover {
    border-color: var(--price);
    color: var(--price);
}

.footer-order-item .select-re-in-type {
    font-size: 16px;
}

.footer-order-item .cancel-order-reason,
.footer-order-item .reason-other {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    grid-gap: 6px;
}

.footer-order-item .reason-other button {
    font-size: 15px;
    padding: 4px 16px;
    border: none;
}

.form-control.reason-cancell-order {
    width: 150px;
    font-size: 15px;
    box-shadow: none;
}

.shop-request {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    grid-gap: 4px;
    color: #856404;
    border: 1px solid #FFECB3;
    background-color: #FFF3CD;
    padding: 6px 10px;
    width: fit-content;
    border-radius: 4px;
    font-size: 15px;
}

.footer-order-item-action {
    width: 100%;
    grid-gap: 10px;
    flex-wrap: wrap;
}

.footer-order-item-action > .footer-btn {
    display: flex;
    align-items: center;
    grid-gap: 6px;
    border: 1px solid var(--primary);
    padding: 4px 12px;
    border-radius: 3px;
    font-size: 15px;
}

.footer-order-item-action > .footer-btn:hover {
    background-color: var(--primary);
    color: #fff;
}

.footer-order-item.footer-order-item-action .select-re-in-type {
    font-size: 15px;
    padding: 4px 12px;
}

.footer-order-item.footer-order-item-action .cancel-order-reason {
    grid-gap: 0;
}

.footer-order-item.footer-order-item-action .cancel-order-reason .reason-other {
    margin-left: 6px;
}

.view-order-detail .footer-order-item {
    border-bottom: 0;
}

.footer-order-item .reason-other button:focus {
    outline: none;
}

.footer-order-item .reason-other .button-cancle:hover {
    color: #d80d0d;
}


/* Css profile 2025 */
.phone-input-group{
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
}
.phone-input-group .btn-send-code{
    min-width: 100px;
}
.phone-input-group .send-code{
    height: 40px;
    background: #25AADA;
    border: 1px solid #25AADA;
    border-radius: 5px;
    color: #fff;
    width: 100%;
    font-size: 16px;
}
.phone-input-group .send-code:hover{
    background-color:#2199c4;
}
.btn-saveinfo.btn-login:hover{
    background: #25AADA;
}
.form-group.has-error .form-group-has-erro .help-block{
    position: relative;
    left: 0;
    right: inherit;
    text-align: left;
    top: 0px;
    background-color: transparent;
    display: inline-block;
    margin-bottom: 0;
}

.note-phone {
    display: block;
}
.has-error label{
    padding-bottom: 24px;
}
.pdt-sdt{
    padding-top: 22px;
}
.has-error .profile-lable.pdt-sdt{
    padding-top: 0px;
    padding-bottom: 0;
}
input[type="number"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
  }
  
  input[type=number]::-webkit-inner-spin-button,
  input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
  }
.snow-my-acc-profile .form-control{
    font-size: 16px;
    box-shadow: none;
    min-height: 42px;
    padding-bottom: 7px;
    padding-top: 7px;
    max-width: 450px;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
}
.breadcrumb>li, .pagination {
    display: inline-block;
}
.breadcrumb {
    padding: 8px 0;
    list-style: none;
}
ol, ul {
    margin-bottom: 10px;
}
dl, ol, ul {
    margin-top: 0;
}
.breadcrumb>li+li:before {
    padding: 0 5px;
    color: #ccc;
    content: "/\00a0";
}
.profile-content{
    max-width: 450px;
}
.my-account-profile .form-group{
    margin-bottom: 12px;
}
.radio-btn-gender [type="radio"]:checked,
.radio-btn-gender [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.radio-btn-gender [type="radio"]:checked + label,
.radio-btn-gender [type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 20px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}
.radio-btn-gender [type="radio"]:checked + label:before,
.radio-btn-gender [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 16px;
    height: 16px;
    border: 1px solid #6b6868;
    border-radius: 100%;
    background: #fff;
}
.radio-btn-gender [type="radio"]:checked + label:after,
.radio-btn-gender [type="radio"]:not(:checked) + label:after {
    content: '';
    width: 10px;
    height: 10px;
    background: #43bfe3;
    position: absolute;
    top: 4px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.radio-btn-gender [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.radio-btn-gender [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.profile-content-gender{
    display: flex;
    gap: 25px;
    align-items: center;
}
.box-phone-number.unverify .profile-lable{
    padding-top: 18px;
}
.list-date-profile{
    display: flex;
    gap: 10px;
}
@media(max-width:550px){
    .my-account-profile {
        padding: 0px;
    }
    .snow-my-acc-profile-mb{
        padding: 10px 16px;
    }
    .snow-my-acc-profile-mb .profile-content input{
        padding: 6px 10px;
        font-size: 16px;
    }
    .pd0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
    .row-date{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: var(--gap10);
    }
    .form-group.has-error .form-group-has-erro .help-block{
        top: 10px;
    }
    .has-error label {
        padding-bottom: 0;
    }
    #main[role="user"] label{
        padding-bottom: 5px;
    }
    .profile-lable{
        font-size: 16px;
        line-height: 24px;
    }
    .profile-content{
        max-width: 100%;
    }
    .radio-btn-gender label{
        font-size: 16px;
        line-height: 24px;
    }
    .phone-input-group .btn-send-code{
        min-width: 115px;
    }
    .snow-my-acc-profile-mb .profile-content select{
        font-size: 16px;
        line-height: 20px;
    }
    .isVerified.box-phone-number .profile-lable{
        padding-top: 0;
    }
}
.order-item-order-key {
    width: fit-content;
    font-size: 14px;
    margin-bottom: 5px;
    position: relative;
    border-radius: 0px 20px 20px 0px;
    background: #2199C4;
    padding: 2px 10px 2px 18px;
    color: #fff;
    margin: 4px 0 8px 14px;
}

.order-item-order-key svg {
    position: absolute;
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
}

.key-copy-btn svg {
    position: static;
    left: unset;
    top: unset;
    transform: unset;
}

.order-item-order-key-detail {
    display: flex;
    align-items: center;
    grid-gap: 6px;
}

.key-copy-btn {
    display: flex;
    cursor: pointer;
}

#copy-notification {
    display: none;
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #d4edda;
    color: #155724;
    padding: 8px 20px;
    border-radius: 28px;
    font-size: 16px;
    font-family: sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    text-align: center;
    max-width: 90vw;
    word-break: break-word;
}

.display-key-copyright {
    display: flex;
    align-items: center;
    grid-gap: 4px;
    border: 0;
    font-size: 13px;
    background: var(--primary);
    color: #fff;
    border-radius: 5px;
    margin-bottom: 5px;
    padding: 4px 8px;
}

.password-key-copyright .key-label {
    color: var(--silver);
    font-size: var(--gap16);
    display: flex;
    align-items: center;
}

.password-key-copyright input {
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 2px;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 2px 4px;
    min-width: 200px;
}

.password-key-copyright input::placeholder {
    font-size: 14px;
}

.password-key-copyright {
    margin-bottom: 4px;
    display: flex;
    align-items: stretch;
    grid-gap: 4px;
}

.password-key-copyright button {
    background: transparent;
    border: 1px solid var(--primary);
    background: var(--primary);
    font-size: 15px;
    padding: 2px 6px;
    color: #fff;
    border-radius: 3px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-key {
    width: 18px;
    padding: 2px;
    height: 18px;
    display: none;
    border-radius: 50%;
    background: #fff;
    --_m:
            conic-gradient(#0000 10%,#000),
            linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: guest-loader 1s infinite linear;
}
@keyframes guest-loader {to{transform: rotate(1turn)}}

.copyright-overlay {
    display: none; /* Mặc định ẩn */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Màu đen với độ trong suốt */
    z-index: 1;
}

/* Popup */
.copyright-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

/* Nút đóng */
.copyright-close-btn {
    color: #fff;
    background-color: red;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.error-copyright {
    color: red;
    font-size: 13px;
}

@media (max-width: 760px) {
    .container {
        padding-left: 12px;
        padding-right: 12px
    }

    .container::before,
    .container::after {
        display: none;
    }
}
.account-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.account-popup {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
    position: relative;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.account-popup .icon-container {
    width: 80px;
    height: 80px;
    background: #00acd6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 25px rgba(0, 172, 214, 0.3);
}

.account-popup .icon-container svg {
    width: 45px;
    height: 45px;
    fill: white;
}

.account-popup h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.account-popup p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 30px;
}

.account-phone-number {
    color: #00acd6;
    font-weight: 600;
}

.account-button-container {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.account-btn {
    padding: 14px 35px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 160px;
}

.account-btn-agree {
    background: #00acd6;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 172, 214, 0.4);
}

.account-btn-agree:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 172, 214, 0.5);
    background: #0096bd;
}

.account-btn-agree:active {
    transform: translateY(0);
}

.account-btn-cancel {
    background: white;
    color: #666;
    border: 2px solid #e0e0e0;
}

.account-btn-cancel:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.account-btn-cancel:active {
    background: #ebebeb;
}

/* Delete Address Confirmation Popup */
.confirm-delete-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 11111112;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}
.confirm-delete-wrapper.active {
    display: flex;
}
.confirm-delete-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
}
.confirm-delete-popup {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 380px;
    position: relative;
    z-index: 10001;
    padding: 24px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.confirm-delete-icon {
    width: 64px;
    height: 64px;
    background: #FEF2F2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}
.confirm-delete-title {
    font-size: 18px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 16px;
}
.confirm-delete-body {
    font-size: 15px;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 24px;
    padding: 0 10px;
}
.confirm-delete-footer {
    display: flex;
    gap: 12px;
}
.confirm-delete-footer button {
    flex: 1;
    padding: 11px 14px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    outline: none;
}
.confirm-delete-cancel {
    background: #fff;
    border: 1px solid #E5E7EB !important;
    color: #1A1A1A;
}
.confirm-delete-cancel:hover {
    background: #F9FAFB;
}
.confirm-delete-ok {
    background: #fff;
    border: 1px solid #D92A28 !important;
    color: #D92A28;
}
.confirm-delete-ok:hover {
    background: #FEF2F2;
}
.confirm-delete-ok:active {
    background: #D92A28;
    color: #fff;
}

/* Default Address Confirmation Popup */
.confirm-default-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 11111112;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}
.confirm-default-wrapper.active {
    display: flex;
}
.confirm-default-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
}
.confirm-default-popup {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 380px;
    position: relative;
    z-index: 10001;
    padding: 24px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.confirm-default-icon {
    width: 64px;
    height: 64px;
    background: #E0F7FA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.confirm-default-title {
    font-size: 18px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 8px;
}
.confirm-default-body {
    font-size: 15px;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 24px;
    padding: 0 10px;
}
.confirm-default-footer {
    display: flex;
    gap: 12px;
}
.confirm-default-footer button {
    flex: 1;
    padding: 11px 14px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    outline: none;
}
.confirm-default-cancel {
    background: #fff;
    border: 1px solid #E5E7EB !important;
    color: #1A1A1A;
}
.confirm-default-cancel:hover {
    background: #F9FAFB;
}
.confirm-default-ok {
    background: #25AADA;
    color: #fff;
}
.confirm-default-ok:hover {
    background: #2199C4;
}

@media (max-width: 767px) {
    .address-row:has(#register-district),
    .address-row:has(#register-commune) {
        position: relative;
    }
    .address-input-loading-wrapper {
        position: absolute;
        left: 12px;
        bottom: 2px;
        width: calc(100% - 30px);
        background: #fff;
        z-index: 9;
        height: 36px;
        display: none;
        align-items: center;
        justify-content: flex-start;
    }
    .address-input-loading {
        width: 26px;
        aspect-ratio: 4;
        --_g: no-repeat radial-gradient(circle closest-side,#525252 90%,#0000);
        background: 
            var(--_g) 0%   50%,
            var(--_g) 50%  50%,
            var(--_g) 100% 50%;
        background-size: calc(100%/3) 100%;
        animation: address-dot-loading 1s infinite linear;
        display: block;
    }
    @keyframes address-dot-loading {
        33%{background-size:calc(100%/3) 0%  ,calc(100%/3) 100%,calc(100%/3) 100%}
        50%{background-size:calc(100%/3) 100%,calc(100%/3) 0%  ,calc(100%/3) 100%}
        66%{background-size:calc(100%/3) 100%,calc(100%/3) 100%,calc(100%/3) 0%  }
    }

    .address-content-contain select.address-input {
        background-color: #fff !important;
        -webkit-text-fill-color: #000;
        color: #000;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%);
        background-position: calc(100% - 13px) 50%, calc(100% - 7px) 50%, calc(100% - var(--gap16));
        background-size: 7px 7px, 7px 7px, 1px calc(100% - var(--gap16));
        background-repeat: no-repeat;
    }
}
