@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200..900&display=swap');
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    -webkit-tap-highlight-color: transparent !important;
}

:root {
    --font-sz-widget: 0.9em;
    --font-sz-btn: 1em;
    --text-color-widget: white;

    --loader-bg-color: rgba(96, 86, 120, 0.3);
    --loader-rotate-color: #F4F6FF;
}

body {
    display: flex;
    flex-direction: column; /* vertical */
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh; /* 100% viewport height */
    background-color: #212529;
    overflow-y: auto; /* scroll vertically */
}

.disable {
    pointer-events: none; /* disable click */
    /* opacity: 0.5; */
}

.hidden {
    display: none !important;
}

i {
    user-select: none !important;
}

/* -============= Telegram Box =============- */
.channel-card {
    display: flex;
    flex-direction: column;
    width: fit-content;
    border-radius: 6px;
    padding: 3px;
    background-color: #212529;
    margin: 3rem 2rem 1.5rem 8rem;
    user-select: none;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.3);
}

.channel-card .telegram-c {
    display: flex;
    flex-direction: row;
    align-items: end;
    padding: 0.45em 0.6em;
    border-radius: 6px;
    background-color: #1e1f23;
}

.channel-card .telegram-c p {
    font-size: 1rem;
    color: var(--text-color-widget);
    /* text-transform: uppercase; */
}

.channel-card .telegram-c img {
    width: 2rem;
    height: 2rem;
    object-fit: fill;
    border-radius: 25%;
    margin-right: 0.5em;
}

.channel-card .u-channel {
    display: flex;
    flex-direction: column;
    padding: 0.3em;
}

.channel-card .u-channel img {
    width: 2.4rem;
    height: 2.4rem;
    object-fit: fill;
    border-radius: 100%;
    margin-right: 0.5em;
}

.channel-card .u-channel span {
    font-size: 0.9rem;
    color: var(--text-color-widget);
}

.channel-card .u-channel span:hover,
.channel-card .u-channel span:focus {
    opacity: 0.8;
}

.channel-card .u-channel span > span {
    font-size: 0.75rem;    
    color: #495057;
}

.channel-card .u-channel .desc-in4 {
    font-size: 0.8rem;
    color: #495057;
    margin: 0px 5px;
    margin-top: 5px;
}

.channel-card .u-channel .desc-in4 a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    background-color: #8fe1a2b5;
    font-size: 0.85rem;
    padding: 0em 0.3em;
    border-radius: 3px;
}

.channel-card .u-channel .desc-in4 a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* -============= End Telegram Box =============- */


.tab-title {
    width: 100%;
    color: var(--text-color-widget);
}

.tab-title i {
    margin-right: 0.5rem;
}

.tab-title h1 {
    display: inline-block;
    font-size: 1.5rem;
    margin: 0px 25px;
    margin-bottom: 2rem;
    position: relative;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.6vw;
    text-transform: uppercase;
}

.tab-title h1::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    height: 0.33rem;
    width: 8rem;
    background-color: #50B498;
}

.tab-title h1::before {
    content: '';
    position: absolute;
    bottom: -1.1rem;
    left: 0;
    height: 0.3rem;
    width: 5rem;
    background-color: #50B498;
}

.card-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 5px;
}

.card {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 2px solid #495057;
    min-height: 18rem;
    max-width: 100%;
    overflow: hidden;
    background: transparent;
    gap: 0.5vw;
    padding: 15px;
    margin: 10px 25px; /* top-bottom | left-right */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
}

/* responsive layout */
.card .box-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    max-width: 100%;
}

.card .box-items-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    max-width: 100%;
}

.box-items .item {
    flex: 1 1 auto;
    word-break: break-word;
    min-width: 0;
}

/* .box-items .item:nth-child(3) {
    grid-column: 1 / -1;
} */

.box-items-2 .item {
    flex: 1 1 auto;
    word-break: break-word;
    min-width: 0;
}


@media (min-width: 850px) {
    .box-items {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

.item h3 {
    font-family: "Poppins", sans-serif;
    letter-spacing: 1.5px;
    font-size: 1.1rem;
}

.custom-hr {
    margin: 0rem 2.5rem !important;
    border: 1px solid #495057;
    border-radius: 100px;
}

.card.active {
    display: block;
}

.card.active.pay {
    margin: 10px 4ch;
}

.card :is(h1, h2, h3, h4, h5, h6) {
    color: white;
    margin: 3px 0px;
}

h2 i, h3 i, h4 i {
    margin-right: 8px;
}

.popup-container {
    /* đặt nội dung theo hướng dọc */
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    position: fixed; /* vị trí nổi */
    top: 20px;
    left: 20px;
    z-index: 1; /* đặt lớp */
}

.popup {
    width: auto;
    text-align: center;
    padding: 6px 8px;
    border-radius: 5px;
    background-color: #2b3035;
    box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.35);

    transition: width 0.3s ease;
    transform-origin: top;
}

.popup.collapsed {
    transform: scaleY(0);
    height: 0;
    overflow: hidden;
}

.popup.config {
    border-radius: 10px;
    margin-bottom: 5px;
    border: 2px solid #FFAA80;
}

.popup.config .btn-func {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    padding: 10px;
    border-style: none;
    box-shadow: none;
}

.popup.config .btn-func.active {
    color: #ffc107;
}

.popup.config button {
    padding: 5px;
    margin: 0px;
}

.popup.config i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0px;
    animation: icon-settings 2.5s linear infinite;
}

@keyframes icon-settings {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.popup button {
    font-size: 0.9rem;
    margin: 5px 0px;
}

button i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.0rem;
    margin-right: 8px;
}

.btn-func {
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: rgba(119, 109, 140, 0.5);
    border-radius: 6px;
    border: 2px solid rgba(119, 109, 140, 0.3);
    padding: 8px 5px;
    user-select: none; /* no select text */
    cursor: pointer; /* clickable */
    transition: border 0.3s ease; /* animation */
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}

.btn-func.active {
    border: 2px solid #712cf9;
    color: #ffe484;
}

.btn-func:hover {
    border: 2px solid #712cf9;
}

.btn-func:active {
    background-color: transparent;
}


.custom-link {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    background-color: #8fe1a2b5;
    font-size: 0.9rem;
    padding: 0em 0.3em;
    border-radius: 3px;
    /* border: 1px solid #2ca18c; */

}

.custom-link:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}


/* button group */
.btn-group {
    display: flex;
    flex-direction: row;
    color: white;
    margin: 0.5em 1em;
}

.header {
    position: relative;
    /* padding: 0.5em; */
    /* height: fit-content; */
    width: 50px;
    /* aspect-ratio: 1 / 1; ratio wid - hei*/
    cursor: default;
    user-select: none !important;
    margin-right: 1rem;
    border: 2px solid #495057;
    border-radius: 8px;
    box-shadow: 3px -2px 10px rgba(0, 0, 0, 0.8);
}

.header i {
    font-size: 1rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row; /* orientation in horizontal */
    user-select: none; /* default is no select */
    cursor: pointer;
    padding: 0.35em 0.7em;
    background: transparent;
    font-size: var(--font-sz-widget);
    border: 1px solid #495057;
    color: #495057;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s ease;
    transition: color 0.2s ease;
    border-radius: 5px;
}

.btn img {
    display: inline-block;
    width: 23px;
    aspect-ratio: 1 / 1;
    margin-right: 6px;
    border-radius: 30%;
    object-fit: cover; /* img scale */
}

.btn:hover {
    background-color: rgba(106, 156, 137, 0.8);
    color: var(--text-color-widget);
}

.main-status .btn {
    position: relative;
}

.btn .status {
    width: 1vw;
    height: 1vh;
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 3px;
    margin-right: 3px;
    border-radius: 100%;
    animation: pulse 1.5s ease-out infinite;
}

.btn .status.active {
    background-color: #50B498;
}

@keyframes pulse {
    0% {
        transform: scale(1, 1);
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.btn-group.row-list .btn {
    border-radius: 0px;
}

.btn-group.row-list .btn:first-of-type {
    border-radius: 5px 0px 0px 5px;
}

.btn-group.row-list .btn:last-of-type {
    border-radius: 0px 5px 5px 0px;
}

.btn-group.row-list .btn:only-of-type {
    border-radius: 5px !important;
}

/* .abcxyz {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 10%;
}

@media (max-width: 580px) {
    .abcxyz {
        display: none;
    }
    .btn img {
        margin-right: 0px;
    }
} */


.btn.active {
    background: #8fe1a2b5;
    color: var(--text-color-widget);
}

.list-btn .btn {
    display: flex;
    margin-bottom: 5px;
}

.list-btn .btn:last-child {
    margin-bottom: 0px;
}

.show-selected {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    color: white;
    align-items: center;
}

.show-selected i {
    margin-right: 8px;
}

.show-selected p {
    display: inline-flex;
    flex-wrap: nowrap;
    background-color: #f95454ff;
    font-size: 0.9rem;
    padding: 0px 0.3em;
    border-radius: 3px;
    /* border: 1px solid #2ca18c; */
    text-align: center;
}

.submit-order {
    display: none;
    justify-content: center;
    align-content: center;
    text-align: center;
    cursor: pointer;
    user-select: none !important;
    width: fit-content;
    padding: 0.35em 4vw;
    background: transparent;
    border-radius: 6px;
    border-width: 0px;
    background-color: #50B498;
    margin: 0.3rem auto;
    margin-bottom: 0px;
    transition: box-shadow 0.2s ease;
}

.submit-order:hover {
    box-shadow: inset 0 0 0 100vw rgba(0, 0, 0, 0.15);
}

.submit-order .pay {
    display: inline-flex;
    justify-content: center;
    align-content: center;
    text-align: center;
    font-size: var(--font-sz-btn);
    color: var(--text-color-widget);
}

.submit-order .pay i {
    margin-right: 0.3rem;
}

.submit-order .loader {
    display: none;
    cursor: default;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    animation: spin 1s ease infinite;
}

.submit-order .loader::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--loader-bg-color);
    border-top-color: var(--loader-rotate-color);
    box-shadow: 0 0 3px var(--loader-rotate-color);
    filter: blur(0.2px);
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
    
}

.submit-order.loading .pay {
    visibility: hidden;
}

.submit-order.loading .loader {
    display: block;
}

/* info list payment */
.clist-pay {
    color: var(--text-color-widget);
}

.clist-pay dt {
    font-size: 1.1rem;
    margin-top: 3px;
}

.clist-pay dt i {
    margin-right: 8px;
}

.clist-pay dd {
    display: list-item;
    list-style: none;
    padding-inline-start: 1ch;
    margin-left: 1.1rem;
    font-size: 0.9rem;
    width: fit-content;
}

.clist-pay dd::before {
    content: "\F132";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 3.8rem;
}

.clist-pay dd p {
    display: flex;
    text-align: center;
    font-size: inherit;
}

.clist-pay dd img {
    display: inline-block;
    width: 23px;
    aspect-ratio: 1 / 1;
    margin-left: 6px;
    border-radius: 30%;
    object-fit: cover; /* img scale */
}

.text-copy {
    display: inline-flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 2px;
    width: 100%;
}

.text-copy p {
    font-family: "Poppins", sans-serif;
    letter-spacing: 1.5px;
    font-size: 1rem;
    color: var(--loader-rotate-color);
    margin-left: 1rem;
}

.text-copy button {
    margin-right: 5vw;
    padding: 1px 0.8ch;
    text-align: center;
    font-size: 0.75em;
    border-radius: 3px;
    background-color: transparent;
    border: 2px solid #EAD196;
    color: var(--text-color-widget);
    transition: color 0.1s linear;
    transition: background-color 0.4s ease;
    font-family: "Poppins", sans-serif;
}

.text-copy button::before {
    content: '\F28E';
    font-family: "bootstrap-icons";
    margin-right: 6px;
    vertical-align: middle;
}

.text-copy button::after {
    content: 'Copy';
}

.text-copy button:hover,
.text-copy button:active {
    color: #213555;
    background-color: #EAD196;
}

/* -=========== Alert Box -============== */
.alert-box {
    border-radius: 5px;
    padding: 0.5rem 0.8rem;
    margin: 0.4rem 25px;
}

.alert-box.warning {
    background-color: rgba(255, 193, 180, 0.4);
    border-left: 4px solid #F38C79;
}

.alert-box.success {
    background-color: rgba(153, 188, 133, 0.4);
    border-left: 4px solid #A0C878;
}
/* -========= End Alert Box ==============- */

.notification-box {
    display: flex;
    align-items: center;
    border-radius: 5px;
    padding: 0.5rem 0.8rem;
    margin: 0.4rem 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.notification-box.warning {
    background-color: rgba(255, 193, 180, 0.4);
    border-left: 4px solid #F38C79;
}

.notification-box .notification-content {
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
    align-items: center;
}

.notification-icon i {
    font-size: 20px;
    color: var(--text-color-widget);
}

@keyframes bell-ring {
    0% { transform: rotate(0); }
    20% { transform: rotate(10deg); }
    40% { transform: rotate(-10deg); }
    60% { transform: rotate(5deg); }
    80% { transform: rotate(-5deg); }
    100% { transform: rotate(0); }
}

.bell-anm {
    display: inline-block;
    animation: bell-ring 1.5s ease 0.5s;
    animation-iteration-count: 2;
}

.notification-content .nt-close {
    display: flex;
    border: none;
    box-shadow: none;
    background-color: transparent;
}

.notification-content .nt-close i {
    font-size: 25px;
    color: var(--text-color-widget);
}

.notification-content .nt-close i:hover {
    opacity: 0.7;
}

/* -================== Custom Footer ===================- */

.custom-footer {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    padding: 1rem;
    margin-top: 5rem;
    color: var(--text-color-widget);
    /* font-style: italic; */
    border-top: 1px solid #495057;
    user-select: none;
    font-size: 0.8rem;
}


/* -=================== End Custom Footer =================- */

.dropdown-box {
    position: relative;
    display: inline-block;
    /* max-width: 14.5rem; */
}

.dropdown-select {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    flex-direction: row; /* orientation in horizontal */
    user-select: none; /* default is no select */
    cursor: pointer;
    padding: 0.35em 0.7em;
    background: transparent;
    font-size: var(--font-sz-widget);
    border: 2px solid #495057;
    color: #495057;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    /* transition: background-color 0.3s ease;
    transition: color 0.2s ease; */
    border-radius: 5px;
    margin: 1px 0px;
    padding: 5px 12px;
    cursor: pointer;
    /* transition: background 0.3s; */
}

/* .dropdown-select:hover {
    background-color: #000;
} */

.select-left {
    display: flex;
    align-items: center;
}

@media (max-width: 480px) {
    .select-left > span {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        
        max-width: 100%;
    }
    
    .select-left > img + span {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        max-width: 80%;
    }
}

.select-left img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border-radius: 30%;
    object-fit: cover;
}

.arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.arrow.open {
    transform: rotate(180deg);
}

.options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    height: fit-content;
    max-height: 10rem;
    background: #2b3035;
    border-radius: 5px;
    box-shadow: 0 4px 6px 5px rgba(0,0,0,0.1);
    display: none;
    z-index: 10;
    overflow-y: auto;
    scrollbar-width: none;
}

.options::-webkit-scrollbar {
    display: none;
}

.option {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    font-size: var(--font-sz-widget);
    color: #F6F1DE;
}

/* .option:hover {
    background: #f1f1f1;
} */

.option img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border-radius: 30%;
    object-fit: cover;
}

/* =================================== */

.bank-logo {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 25px;
    gap: 0.5em;
}

.bank-logo img {
    height: 3rem;
    object-fit: fill;
    border-radius: 0.2rem;
}

.bank-logo p {
    display: inline-block;
    width: fit-content;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.4vw;
    text-transform: uppercase;
    color: var(--text-color-widget);
}

.qr-transfer {
    object-fit: fill;
    max-width: 25rem;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 0.4rem;
    margin-top: 0.4rem;
}
/* =================================== */


.invoice-box {
    padding: 5px 10px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.invoice-box h3 {
    font-size: 1rem;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 1px solid #495057;
}

.invoice-box .pp {
    font-family: "Poppins", sans-serif;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    color: var(--loader-rotate-color);
    margin-left: 1rem;
    color: #B5FCCD;
}

.invoice-box p {
    font-family: "Poppins", sans-serif;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    color: var(--loader-rotate-color);
    margin-left: 1rem;
    color: #B5FCCD;
}


/* ===================================== */
.my-swal-font {
    font-family: "Poppins", sans-serif !important;
}

.my-swal-font.hder {
    font-size: 1.3rem;
}

.my-swal-font.title {
    font-size: 1.2rem;
}

.my-swal-font.content {
    font-size: 1rem;
}

.my-swal-button {
    font-family: "Poppins", sans-serif;
    width: 7em;
    font-size: 1.15;
}

/* ===================================== */

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: stretch;
    gap: 15px;
    max-width: 100%;
    margin: 0 25px;
    color: var(--text-color-widget);
}

@media (min-width: 768px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.grid-container .g-card {
    padding: 10px 15px;
    border: 2px solid #393E46;
    border-radius: 5px;
    line-height: 1.5;
    color: #F6F1DE;
}

.g-card * {
    font-family: "Poppins", sans-serif;
}

.g-card i {
    color: #A9B5DF;
}

.g-card .g-title {
    padding-top: 2px;
    padding-left: 10px;
    padding-right: 10px;
    text-transform: uppercase;
    border-radius: 4px;
    color: #FFFDF6;
}

.g-card-c-gem {
    background-color: rgba(100, 226, 183, 0.6);
    border-left: 4px solid rgb(100, 226, 183);
}

.g-card-c-ruby {
    background-color: rgba(255, 99, 99, 0.6);
    border-left: 4px solid rgb(255, 99, 99);
}

.g-card-c-lw {
    background-color: rgba(248, 181, 95, 0.6);
    border-left: 4px solid rgb(248, 181, 95);
}

.g-card-c-be {
    background-color: rgba(109, 225, 210, 0.6);
    border-left: 4px solid rgb(109, 225, 210);
}

.g-card .g-ic {
    display: flex;
    align-items: center;
    font-family: inherit;
}

.g-card .g-ic i {
    margin: 0 0.3rem;
    flex-wrap: nowrap;
}

.g-card .g-title i {
    margin-right: 0.4rem;
    color: #FFFDF6;
}

.copy-key-btn {
    margin: 15px 25px;
    padding: 10px;
    background-color: rgb(0, 123, 255);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* =========================== */


.iiiiii {
    display: flex;
}

@media (max-width: 780px) {
    .iiiiii {
        display: none;
    }
    .btn img {
        margin-right: 0;
    }
}


/* =========================== */


.discount-code-section {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.discount-code-section h3 {
    display: flex;
    align-items: stretch;
    margin-top: 10px;
    font-family: "Poppins", sans-serif;
    letter-spacing: 1.5px;
    font-size: 1.1rem;
    color: var(--text-color-widget);
}

.discount-code-section span#status-discount-code {
    color: var(--text-color-widget);
    font-family: "Poppins", sans-serif;
    font-size: 0.8rem;
    color: #393E46;
    font-style: italic;
}

.discount-code-section .input-button-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.input-button-wrapper input#discount-code-original {
    font-family: 'Poppins', sans-serif;
    font-size: var(--font-sz-widget);
    caret-color: var(--text-color-widget);
    color: var(--text-color-widget);
    flex-grow: 1;
    min-width: 0;
    max-width: 300px;
    width: auto;
    padding: 8px;
    border: 2px solid #393E46;
    background-color: transparent;
    border-radius: 4px;
    box-sizing: border-box;
}

.input-button-wrapper input#discount-code-original:focus {
    outline: 2px solid #FFFDF6;
}


.input-button-wrapper button {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color-widget);
    flex-shrink: 0;
    width: auto;
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    background-color: rgb(0, 123, 255);
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;
}

.input-button-wrapper button:focus {
    outline: 2px solid #FFFDF6;
    box-shadow: 0 0 0 2px #007bff55;
}

.input-button-wrapper button:active {
    background-color: #0056b3;
}


/* =========================== */


.input-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.input-container h3 {
    display: flex;
    align-items: stretch;
    margin-top: 10px;
    font-family: "Poppins", sans-serif;
    letter-spacing: 1.5px;
    font-size: 1.1rem;
    color: var(--text-color-widget);
}

.input-container span {
    color: var(--text-color-widget);
    font-family: "Poppins", sans-serif;
    font-size: 0.8rem;
    color: #393E46;
    font-style: italic;
}

.input-container .input-submit {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 1em;
}

.input-submit .alias-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    padding: 5px 1rem;
    border: 2px solid #495057;
    color: var(--text-color-widget);
    border-radius: 8px;
    box-shadow: 3px -2px 10px rgba(0, 0, 0, 0.8);
}

.input-submit .alias-icon i {
    font-size: 1rem;
}

.input-submit input {
    font-family: 'Poppins', sans-serif;
    font-size: var(--font-sz-widget);
    caret-color: var(--text-color-widget);
    color: var(--text-color-widget);
    flex-grow: 1;
    min-width: 0;
    max-width: 300px;
    width: auto;
    padding: 5px 10px;
    border: 2px solid #495057;
    background-color: transparent;
    border-radius: 5px;
    box-sizing: border-box;
}

.input-submit input:focus {
    outline: 2px solid #FFFDF6;
}


.input-submit button {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color-widget);
    flex-shrink: 0;
    width: auto;
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    background-color: rgb(0, 123, 255);
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;
}

.input-submit button:focus {
    outline: 2px solid #FFFDF6;
    box-shadow: 0 0 0 2px #007bff55;
}

.input-submit button:active {
    background-color: #0056b3;
}

.total-amount {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    color: var(--text-color-widget);
    margin-top: 1rem;
    font-size: 1rem;
}

.total-amount span {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    color: var(--text-color-widget);
}

/* =========================== */