@charset "UTF-8";
@font-face {
    font-family: 'Material Symbols Outlined';
    font-style: normal;
    font-weight: 100 700;
    src: url('./fonts/MaterialSymbolsOutlined-Regular.woff2') format('woff2');
    font-display: swap;
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

/* Reset all margins and paddings */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #616161;
}


/* Set a consistent font and line-height */

html {
    font-size: 10px;
    /* Typically 16px, but adjust as needed */
}


/* Normalize font settings for headings and paragraphs */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    margin: 0;
}

p {
    margin: 0;
}


/* Remove default list styles */
ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}


/* Remove default table styling */

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* Ensure images and videos fit within their containers */
img,
video, svg {
    max-width: 100%;
    height: auto;
}


/* Ensure links have no default styling */

a {
    text-decoration: none;
    color: inherit;
    display: block;
}


/* Ensure form elements have consistent styles */
button,
input,
textarea,
select {
    font: inherit;
    margin: 0;
    padding: 0;
}


/* Reset block-level elements to have no default spacing */
blockquote,
dl,
dt,
dd,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p {
    margin: 0;
    padding: 0;
}


/* Reset the default font size for the body element */

body {
    font-size: 10px;
    /*background-color: rgba(225, 245, 255, 0.37);*/
    background-color: var(--bg-color);
    /* Set a default background color */
    font-family: "Noto Sans JP", sans-serif;
    min-height: 100vh;
}

.fs-10 {
    font-size: 10px;
}

html {
    background-color: white;
}

.container {
    width: 1000px;
    max-width: 100%;
    margin: 0px auto;
}

.container.bd-r-20 {
    border-radius: 20px 20px 0px 0px;
}

.box-header {
    padding: 2.9em 20px;
    display: grid;
    grid-template-columns: calc(100% - 60px) 60px;
}

.box-center {
    display: block;
    margin: 0 auto;
}

.btn {
    width: 100%;
    border-radius: 5px;
    font-size: 1.6rem;
    padding: 6px 40px 6px 40px;
    border: 1px solid #A1A1A1;
    color: #A1A1A1;
    background-color: transparent;
    cursor: pointer;
}

.btn.btn-bg-blue {
    background-color: var(--btn-color);
    border: 1px solid var(--btn-color);
}

.color-w {
    color: white;
}
.fs-1 {
    font-size: 1rem;
}
.fs-14 {
    font-size: 1.4rem;
}

label {
    font-size: 1.6rem;
    line-height: 3.6rem;
    display: block;
    color: #616161;
}

.d-8-15 {
    padding: 8px 15px;
}

input:focus,
input:active,
input:focus-visible {
    outline: none;
}

.input-control {
    width: 100%;
    height: 4.6rem;
    border: 1px solid #A1A1A1;
    padding: 0.8rem;
    border-radius: 5px;
    font-size: 1.4rem;
    color: #616161;
}

.text-area {
    width: 100%;
    /*height: 4.6rem;*/
    border: 1px solid #A1A1A1;
    padding: 0.8rem;
    border-radius: 5px;
    font-size: 1.4rem;
    color: #616161;
    resize: none;
    overflow: hidden;
}


/* Basic styling for the tooltip container */

.d-bl {
    display: block;
}

.btn-bg-blue {
    background-color: var(--btn-color);
}

.box-copyright {
    width: 100%;
    padding: 20px 0px;
    color: #A1A1A1;
    font-size: 1.2rem;
    line-height: 2.4rem;
    height: 64px;
}

.text-center {
    text-align: center;
}

.tooltip-container {
    position: relative;
}

.d-fl {
    display: flex;
}
.flex {
    display: flex;
}
.mg-t-3 {
    margin-top: 3px;
}

.mg-t-14 {
    margin-top: 14px;
}

.mg-r-10 {
    margin-right: 10px;
}

.mg-r-5 {
    margin-right: 5px;
}

.mg-b-20 {
    margin-bottom: 2rem;
}

.mg-b-14 {
    margin-bottom: 1.4rem;
}

.text-link {
    text-decoration: underline;
    color: #616161;
}

.color-error {
    color: #ED5054;
}

.mg-l-10 {
    margin-left: 10px;
}

.mg-l-20 {
    margin-left: 20px;
}

.mg-r-10 {
    margin-right: 10px;
}

.fs-20 {
    font-size: 2rem;
}

.fs-12 {
    font-size: 1.2rem;
}

.fw-bold {
    font-weight: 700;
}

.color-blue {
    color: var(--font-color);
}

.d-inline {
    display: inline;
}

.lh-normal {
    line-height: normal;
}

.box-scroll::-webkit-scrollbar {
    width: 12px;
    /* Đặt kích thước thanh cuộn dọc */
}

.box-scroll::-webkit-scrollbar-thumb {
    background-color: #888;
    /* Màu của thanh cuộn */
    border-radius: 10px;
    /* Làm tròn các góc của thanh cuộn */
}

.box-scroll::-webkit-scrollbar-thumb:hover {
    background-color: #555;
    /* Màu của thanh cuộn khi di chuột qua */
}

.box-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Màu của track (đường chạy) */
    border-radius: 10px;
}

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

.it-baseline{
    align-items: baseline;
}

.jf-content {
    justify-content: space-between;
}

.pd-y-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.pd-7-10 {
    padding: 7px 10px;
}

.container {
    width: 1000px;
    padding: 20px;
}

.bd-r-20 {
    border-radius: 20px;
}

.bd-r-10 {
    border-radius: 10px;
}

.bg-white {
    background-color: white;
}

.fs-36 {
    font-size: 3.6rem;
}

.fs-40 {
    font-size: 4rem;
}

.w-15 {
    width: 15%;
}

.text-title {
    position: relative;
    font-size: 3.6rem;
    line-height: 7.2rem;
}

.text-title:after {
    position: absolute;
    content: "";
    width: 210px;
    max-width: 30%;
    left: 50%;
    transform: translateX(-50%);
    height: 0.7rem;
    border-radius: 50px;
    background-color: var(--btn-color);
    bottom: -0.5rem;
}

.text-title.text-title-l:after {
    left: 0;
    transform: translateX(0);
}

.pd-y-30 {
    padding: 3em 0;
}

p {
    font-size: 1.6rem;
    color: #616161;
    line-height: 2.8rem;
}

.mg-b-10 {
    margin-bottom: 10px;
}

.mg-b-24 {
    margin-bottom: 2.4rem;
}

input::placeholder,
input:-ms-input-placeholder {
    color: #616161;
}

.w-320 {
    width: 320px;
    max-width: 100%;
}

.w-32r {
    width: 32rem;
}

.box-message {
    padding: 2rem;
    border: 1px solid #E7E7E7;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.message-default {
    border: 1px solid #E7E7E7;
}

.message-success {
    border: 1px solid #6BCA80;
}

.message-warning {
    border: 1px solid #EEBD47;
}

.message-error {
    border: 1px solid #ED5054;
}

.color-warning {
    color: #EEBD47;
}

.fs-16 {
    font-size: 1.6rem;
    line-height: 3.2rem;
}

.fs-18 {
    font-size: 1.8rem;
    line-height: 3.6rem;
}

.w-unset {
    width: unset;
}

.jf-content-center {
    justify-content: center;
}

.bd-r-50 {
    border-radius: 50px;
}

.pd-8-48 {
    padding: 0.8rem 4.8rem;
}

.pd-0 {
    padding: 0px !important;
}

.color-success {
    color: #6BCA80;
}

.bg-success {
    background-color: #6BCA80;
}

.text-line {
    text-decoration: underline;
}

.w-50 {
    width: 50%;
}

.w-45 {
    width: 45%;
}

.w-55 {
    width: 55%;
}



.box-content {
    min-height: calc(100vh - 121px - 64px - 151px);
}

.box-content-custom {
    min-height: calc(100vh - 121px - 64px);
}

.d-grid {
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.fl-wrap {
    flex-wrap: wrap;
}

.color-default {
    color: #616161;
}

.wd-c-48 {
    width: 48%;
}

.w-full {
    width: 100%;
}

.w-20 {
    width: 20%;
}

.w-80 {
    width: 80%;
}

.w-30 {
    width: 30%;
}

.w-70 {
    width: 70%;
}

.w-35 {
    width: 35%;
}

.w-65 {
    width: 65%;
}

.pd-8-12 {
    padding: 0.8rem 1.2rem;
}
.lh-16 {
    line-height: 1.6rem !important;
}

.table-border td,
.table-border th {
    text-align: left;
}

.pd-l-10 {
    padding-left: 10px;
}

.bd-b {
    position: relative;
}

.bd-b::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
}

.bd-b.bd-b-blue::after {
    border-bottom: 1px solid var(--btn-color);
}

.bd-b.bd-b-gray::after {
    border-bottom: 1px solid #E7E7E7;
}

.bd-b-item-gray {
    border-bottom: 1px solid #E7E7E7;
}

.bd-b-item-blue-4 {
    border-bottom: 4px solid var(--btn-color);
}

.l-10 {
    left: 10px;
}

.pd-20-10 {
    padding: 2rem 1rem;
}

.pd-20 {
    padding: 2rem;
}

.pd-y-20 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.fs-24 {
    font-size: 2.4rem;
    line-height: 4.8rem;
}

.w-33 {
    width: 33%;
}

.pd-y-8 {
    padding-top: 8px;
    padding-bottom: 8px;
}

.color-white {
    color: white;
}

.box-grid {
    display: grid;
}

.item-box-200 {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.item-box-170 {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
}

.grid-item-1 {
    grid-row: 1/3;
    grid-column: 1/2;
}

.grid-item-2 {
    grid-row: 1/3;
    grid-column: 2/3;
}

.pd-8-15 {
    padding: 8px 15px;
}

.input-radio {
    width: 2rem;
    height: 2rem;
}

.column-gap-12 {
    -moz-column-gap: 1.2rem;
    column-gap: 1.2rem;
}

.column-gap-16 {
    -moz-column-gap: 1.6rem;
    column-gap: 1.6rem;
}

.text-title-b-left {
    padding-left: 2rem;
    position: relative;
}

.text-title-b-left::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0.8rem;
    width: 1rem;
    background-color: var(--btn-color);
    border-radius: 5px;
    height: 2rem;
}

.w-0 {
    width: 0;
}

.pd-0 {
    padding-top: 0px;
    padding-bottom: 0px;
}

.item-bd-t-blue {
    border-top: 3px solid var(--btn-color);
}

.mg-b-12 {
    margin-bottom: 1.2rem;
}

.fs-64 {
    font-size: 6.4rem;
}

.item-bd-r-blue {
    border-right: 1px solid var(--btn-color);
}

.item-bd-r-blue:last-child {
    border-right: 0px solid var(--btn-color);
}

.item-grid-4 {
    grid-row: 1/4;
}

.pd-y-26 {
    padding-top: 2.6rem;
    padding-bottom: 2.6rem;
}

.mg-b-16 {
    margin-bottom: 1.6rem;
}

.row-gap-20 {
    row-gap: 2rem;
}

.bg-blue-opacity {
    background-color: var(--btn-color-alpha);
}

.bg-blue {
    background-color: var(--btn-color);
}

.pd-t-30 {
    padding-top: 3rem;
}
.pd-b-30 {
    padding-bottom: 3rem;
}

.mg-b-30 {
    margin-bottom: 3rem;
}

.color-black {
    color: black;
}

.color_red {
    color: #FF0000;
}

.h-100 {
    height: 100%;
}
.h-5r {
    height: 5rem;
}
.box-disable {
    color: #D7D7D7;
    background-color: rgba(231, 231, 231, 0.25);
}

.text-disable {
    color: #D7D7D7;
}

.input-radio:checked~.input-text,
.input-radio:checked~.input-text span,
.input-checkbox:checked~.input-text span {
    color: white;
}

.input-radio:disabled~.input-text,
.input-radio:disabled~.input-text span {
    color: #D7D7D7;
}

.input-radio:checked~.input-text,
.input-checkbox:checked~.input-text span {
    color: white;
}

.input-radio:checked~.bg-checked,
.input-checkbox:checked~.bg-checked {
    background-color: var(--btn-color);
}
.input-checkbox-group .input-checkbox::after {
    position: absolute;
    content: "";
    width: 0.8rem;
    height: 0.8rem;
    left: calc(50% - 0.5rem);
    top: calc(50% - 0.5rem);
    border-radius: 3px;
    z-index: 10;
}
.input-checkbox-group {
    cursor: pointer;
}

.input-radio:disabled~.bg-checked {
    background-color: rgba(231, 231, 231, 0.25);
}
.div-checked {
    background-color: var(--btn-color);
}

.ov-hidden {
    overflow: hidden;
}

.ps-relative {
    position: relative;
    overflow: hidden;
}

.ps-absolute {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.z-9 {
    z-index: 9;
}

.z-1 {
    z-index: 1;
}

.item-active-blue {
    background-color: var(--btn-color-alpha);
}

.text-title-time-line {
    position: relative;
}

.text-title-time-line span {
    background-color: white;
    padding-right: 10px;
    position: relative;
    z-index: 2;
}
.pd-r-45 {
    padding-right: 45px;
}
.text-title-time-line::before {
    z-index: 1;
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 100%;
    height: 3px;
    background-color: #E7E7E7;
}

.box-header {
    align-items: end;
}

.color-gray80 {
    color: #A1A1A1;
}

.it-b-blue {
    border-bottom: 3px solid var(--btn-color);
}

.it-b-gray {
    border-bottom: 3px solid #E7E7E7;
}

.pd-x-12 {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
}

.item-end {
    align-items: end;
}

.jf-end {
    justify-content: end;
}

.bd-blue {
    border: 1px solid var(--btn-color) !important;
}

.pd-6-40 {
    padding: 0.6rem 4rem;
}

.container-layout-2 {
    min-height: calc(100vh - 122px - 151px);
    position: relative;
}

.table-disable {
    opacity: 0.7;
}

.table-disable .bd-b-blue {
    background-color: rgba(0, 0, 0, 0.0196078431);
}

.table-disable .bd-b-blue::after {
    border-bottom: 1px solid #E7E7E7;
}

.bd-no {
    border-width: 0px;
}

.bg-gray {
    background-color: #F6F6F6;
}

.color-default {
    color: #616161;
}

.d-inline-block {
    display: inline-block;
}

.box-grid-columns-190 {
    grid-template-columns: 190px;
}

.row-gap-10 {
    row-gap: 1rem;
}

.row-gap-16 {
    row-gap: 1.6rem;
}

.list-dot {
    list-style: disc;
    padding-left: 25px;
}
.list-notice {
    list-style: disc;
}
.pd-5 {
    padding: 5px;
}
.pd-10 {
    padding: 10px;
}
.pd-15 {
    padding: 15px;
}

.img-h-230 {
    height: 230px;
}
.pd-12-16 {
    padding: 1.2rem 1.6rem;
}

.table-layout2 th,
.table-layout2 td {
    padding: 0.8rem 1.2rem;
    border-bottom: 1px solid #E7E7E7;
    background: white;
}

.table-layout2 th {
    border-bottom: 1px solid var(--btn-color);
    background-color: var(--btn-color-alpha);
}

.table-layout2 tr:last-child td {
    border-width: 0px;
}

.table-layout2.table-last-bottom tr:last-child td {
    border-width: 1px;
}

.table-layout2.table-total tr:nth-last-child(2) td {
    border-bottom: 2px solid #A1A1A1;
}

.text-l {
    text-align: left;
}

.text-r {
    text-align: right !important;
}

.bg-warning {
    background-color: #EEBD47;
}

.fs-48 {
    font-size: 4.8rem;
}

.fs-48 {
    font-size: 4.8rem;
}

.fs-32 {
    font-size: 3.2rem;
}

.w-720 {
    width: 720px;
    max-width: 100%;
}

.box-center {
    margin: 0 auto;
}

.bd-r-10 {
    border-radius: 10px;
}

.box-process {
    width: 100%;
    height: 10px;
    border: 1px solid #D7D7D7;
}

.input-disable {
    background-color: #D7D7D7 !important;
    cursor: not-allowed !important;
    opacity: 1;
    border: 1px solid #D7D7D7 !important;
}

/*input:read-only {*/
/*    background-color: #F6F6F6;*/
/*    cursor: not-allowed;*/
/*}*/

.pd-30 {
    padding: 3rem;
}

.h-full {
    height: 100%;
}

.t-transition {
    transition: 1s all;
}

.input-switch {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
    border-radius: 2em;
    transition: background-position 0.15s ease-in-out;
    margin-top: 0.25em;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
}

.input-switch:checked {
    background-color: var(--btn-color);
    border-color: var(--btn-color);
    background-position: right center;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.input-switch {
    margin-left: -1.5em;
    width: 56px;
    height: 32px;
    margin-top: 0.25em;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    border: 1px solid rgba(0, 0, 0, 0.25);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 50px;
}

.tab-point {
    cursor: pointer;
}

.tab-point.active {
    color: black;
}

.tab-item {
    display: none;
}

.tab-item.active {
    display: block;
}

.input-checkbox {
    position: relative;
    width: 2rem;
    height: 2rem;
    -moz-appearance: none;
    -webkit-appearance: none;
    -o-appearance: none;
}

.input-checkbox::before {
    position: absolute;
    content: "";
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 5px;
    left: 0;
    top: 0;
    background-color: #F6F6F6;
    border: 1px solid #A1A1A1;
    z-index: 9;
}

.input-checkbox::after {
    position: absolute;
    content: "";
    width: 0.8rem;
    height: 0.8rem;
    left: calc(50% - 0.4rem);
    top: calc(50% - 0.5rem);
    border-radius: 3px;
    z-index: 10;
}

.input-checkbox:checked::before {
    background-color: white;
    border: 1px solid white;
}

.input-checkbox:checked::after {
    background-color: var(--btn-color);
    border: 1px solid var(--btn-color);
}

@keyframes animation-toast {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

@keyframes animation-toast-close {
    0% {
        transform: translate(0) scale(1);
    }
    100% {
        transform: translate(200px, 200px) scale(0);
    }
}

.toast {
    position: absolute;
    top: -18px;
    right: 20px;
    z-index: 99;
}

.toast .item-toast {
    animation: 0.3s linear alternate animation-toast;
    transition: transform 0.5s;
}

.toast .item-toast.close {
    animation: animation-toast-close 1s forwards;
    z-index: -1;
}

.bg-default {
    background-color: #616161;
}

.ps-relative-n-ov {
    position: relative;
}

.c-point {
    cursor: pointer;
}

.pd-40 {
    padding: 4rem;
}

.box-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  /*background: rgba(81, 75, 75, 0.2509803922); màu nền của modal lúc ẩn đè lên màu nền của page,  */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -10;
  transition: all 0.5s;
}

.box-modal .modal-content {
    width: 1100px;
    position: relative;
    transition: all 5s;
    transition: opacity 0.5s, visibility 0.5s, transform 0.5s;
    transform: translateY(-100%);
    opacity: 0;
    /* Khởi tạo opacity là 0 */
    visibility: hidden;
    /* Khởi tạo visibility là hidden */
}

.box-modal .modal-content .close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    cursor: pointer;
}

.box-modal.show {
  z-index: 999;
  height: 100vh;
  background: rgba(189, 189, 189, 0.8); /* Hiển thị màu nền của modal khi có class .show */
}

.box-modal.show .modal-content {
    opacity: 1; /* Hiển thị khi có lớp .show */
    visibility: visible; /* Hiển thị khi có lớp .show */
    transform: translateY(0); /* Vị trí mặc định khi có lớp .show */
}

.bg-error {
    background-color: #ed5054;
    opacity: 1;
    /* Hiển thị khi có lớp .show */
    visibility: visible;
    /* Hiển thị khi có lớp .show */
    transform: translateY(0);
    /* Vị trí mặc định khi có lớp .show */
}

.bg-error {
    background-color: #ED5054;
}

.tab-title {
    padding: 0.4rem 1.2rem;
    color: white;
    background-color: #ED5054 !important;
    border-radius: 3px;
}

.w-fit-content {
    width: -moz-fit-content;
    width: fit-content;
}

.pd-x-5 {
    padding-left: 5px;
    padding-right: 5px;
}

.bd-r-gray {
    position: relative;
    padding-right: 10px;
}

.bd-r-gray:after {
    content: "";
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background-color: #616161;
}

.bd-r-gray.gray-cross {
    padding: 0px 20px;
}

.bd-r-gray.gray-cross:after {
    transform: rotate(20deg);
}

.mg-r-20 {
    margin-right: 2rem;
}

.last-item-d li:last-child .gray-cross:after {
    display: none;
}

.item-paginate {
    height: 3.2rem;
    width: 3.2rem;
    border: 1px solid #E7E7E7;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-right: 0.8rem;
    color: black;
    font-weight: 700;
}

.item-paginate span {
    font-size: 1.6rem;
}

.item-paginate .first-item {
    margin-left: 6px;
}

.item-paginate.disable span,
.item-paginate.disable {
    background-color: #616161;
    color: #A1A1A1;
}

.item-paginate.item-current {
    border: 1px solid #616161;
    color: #616161;
}

.box-products {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.8rem;
}

.box-products .item-product {
    position: relative;
    overflow: hidden;
    padding: 1.6rem;
}

.box-products .item-product a {
    text-align: center;
}

.box-products .item-product .img-product {
    overflow: hidden;
}

.box-products .item-product .img-product img {
    transition: all 0.5s;
}

.box-products .item-product:hover .img-product img {
    transform: scale(1.1);
}

.box-products .item-product .option-product {
    border: 1px solid #E7E7E7;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 0.8rem;
}

.box-products .item-product .sale-product {
    position: absolute;
    padding: 8px;
    top: 16px;
    z-index: 99;
    width: 120px;
}
.pd-r-10 {
    padding-right: 10px;
}
.r--10 {
    right: -10px !important;
    top: 6px !important;
}
@media (max-width: 992px) {
    .box-products {
        grid-template-columns: 1fr 1fr;
    }
    .w-full-md {
        width: 100%;
    }
}

.w-48 {
    width: 4.8rem;
}

@media (max-width: 767px) {
    .mg-b-24, .mg-b-sm-12 {
        margin-bottom: 1.2rem;
    }
    .pd-b-30 {
        margin-bottom: 2rem;
    }
    .wd-c-48 {
        width: 100%;
    }
    html,
    body,
    .fs-10 {
        font-size: 8px;
    }
    .w-sm-full {
        width: 100%;
    }
    .sm-fs-32 {
        font-size: 3.2rem;
    }
    .sm-pd-8-10 {
        padding: 8px 10px;
    }
    .menu-icon {
        width: 44px;
    }
    .w-20 {
        width: 30%;
    }
    .w-70 {
        width: 70%;
    }
    .w-30 {
        width: 40%;
    }
    .w-70 {
        width: 60%;
    }
    .w-320 {
        width: 100%;
    }
    .w-720 {
        width: auto;
    }
    .w-48 {
        width: 3.2rem;
    }
    .input-switch {
        width: 45px;
        height: 25px;
    }
    .box-header {
        padding: 2rem;
    }
    .table-sm tr {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }
    .table-sm tr td,
    .table-sm tr th {
        display: block;
        width: 100% !important;
        padding: 10px !important;
    }
    .table-sm tr td:last-child {
        /* margin-left: -10px !important; */
        text-align: right;
    }
    .table-sm tr .bd-b-blue {
        border-bottom: 1px dashed #A1A1A1;
    }
    .table-sm tr .bd-b-blue::after {
        display: none;
    }
    .jf-content-start-sm {
        justify-content: start;
    }
    .w-30-sm {
        width: 33%;
    }
    .pd-40 {
        padding: 2rem;
    }
    .box-products {
        grid-template-columns: 1fr;
    }
    .d-inline-block-sm {
        display: inline-block !important;
    }
    .text-center-sm {
        text-align: center;
    }
    .mg-r-sm-0 {
        margin-right: 0 !important;
    }

    .sm-flex-col {
        flex-direction: column;
    }
    .sm-it-normal {
        align-items: normal;
    }
    .sm-gap-10 {
        gap: 10px;
    }

    .md-w-full {
        width: 100% !important;
    }

    .md-gap-1 {
        gap: 1rem;
    }

}


/* Styling for the tooltip trigger (button or any other element) */


/* Hidden by default */

.tooltip {
    visibility: hidden;
    max-width: 100%;
    color: #616161;
    background-color: #fff;
    padding: 5px 0;
    position: relative;
    z-index: 1;
    bottom: -6px;
    align-items: center;
    /* Position above the trigger element */
    left: 0;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s;
    visibility: visible;
    opacity: 1;
    border: 1px solid #ED5054;
    font-size: 1.4em;
    line-height: 2.4em;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
    padding: 10px;
    margin-top: -26px;
}

.tooltip::before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: -6px;
    left: 15px;
    transform: rotate(45deg);
    border-left: 1px solid #f08080;
    border-right: 1px solid transparent;
    border-top: 1px solid #f08080;
    border-bottom: 1px solid transparent;
    z-index: 999;
    background-color: white;
}

.mg-b-10 {
    margin-bottom: 10px;
}

.box-menu {
    position: fixed;
    width: 520px;
    max-width: 80%;
    transition: 0.5s all;
    background-color: white;
    left: -700px;
    top: 0;
    height: 100vh;
    z-index: 9999;
    overflow-y: auto;
}

.box-menu.active {
    left: 0;
}

.box-menu>ul>li a {
    /* padding: 1.5em 4em; */
    padding: 1.5em 3em;
    font-size: 1.6em;
    font-weight: 400;
    border-bottom: 1px solid #E7E7E7;
    display: flex;
    align-items: center;
    color: #616161;
}

.floating-menu {
    /*transition: 0.5s all;*/
    background-color: white;
    right: 24px;
    z-index: 9999;
    border-radius: 24px;
    display: none;
    height: 60vh;
    width: 520px;
    overflow-y: scroll;
}

.floating-menu.active {
    display: block;
}

@media (max-width: 992px) {
    .floating-menu {
        width: 80vw;
    }
}

.floating-menu>ul>li a {
    /* padding: 1.5em 4em; */
    padding: 1.5em 3em;
    font-size: 1.6em;
    font-weight: 400;
    border-bottom: 1px solid #E7E7E7;
    display: flex;
    align-items: center;
    color: #616161;
}

.p-absolute {
    position: absolute;
}

.z-1000 {
    z-index: 1000;
}

.box-shadow {
    width: 100vw;
    height: 100vh;
    background: rgba(81, 75, 75, 0.2509803922);
    z-index: -99;
    position: fixed;
    left: 0;
    top: 0;
}

.box-shadow.active {
    z-index: 999;
}

.box-account {
    padding: 24px 48px;
    color: #616161;
    display: flex;
    align-items: center;
    font-size: 1.6em;
    border-bottom: 1px solid #E7E7E7;
}

.box-content-login {
    min-height: calc(100vh - 100px - 125px);
    align-items: center;
}

.box-content-login .box-login {
    width: 350px;
    padding: 0px 15px;
    margin: 0 auto;
}

.box-content-login .box-login .box-login-logo {
  margin-bottom: 20px;
}/*# sourceMappingURL=styles.css.map */
.box-login-logo {
    max-height: 38px;
}

.gap-20px {
    gap: 20px;
}

.toggle-pwd-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-75%);
    cursor: pointer;
}

.flex-grow {
    flex-grow: 1;
}
.btn:disabled {
    cursor: not-allowed;
    border: none !important;
}
.bg-red {
    background-color: #ED5054;
}
.box-error {
    display: none;
}
.box-error.active {
    display: flex;
}
.logo img {
    max-width: 170px;
}

.none_display {
    display: none;
}

.block_display {
    display: block;
}
.p-3-9 {
    padding: 3px 9px 3px 9px;
}
.w-fit {
    width: fit-content;
}
.border-radius-3 {
    border-radius: 3px;
}
.text-white {
    color: #FFFFFF;
}
.font-bold {
    font-weight: 700;
}
.text-xs {
    font-weight: 400;
    font-size: 1.2em;
    line-height: 2em;
}
.mg-r-15 {
    margin-right: 15px;
}


.mt-n-6 {
    margin-top: -6px;
}

.box-grid-columns-fit-40 {
    grid-template-columns: fit-content(40%);
}

.h-280 {
    height: 280px !important;
}
.fit-container {
    object-fit: contain;
}
.img-fit-container {
    object-fit: contain;
    object-position: center;
    height: 100%;
    min-width: 100%;
    margin-top: 15px;
}

.device-checked {
    position: absolute;
    right: 10px;
    top: 10px;
}

.radio-css {
    color: #F6F6F6 !important;
    width: 1px;
    height: 20px;
    padding: 0;
    margin: 0;
    margin-right: 20px;
}

.radio-checked {
    position: relative;
}

.radio-checked::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 25px;
    border: 1px solid #A1A1A1;
    z-index: 99;
    background: #F6F6F6;
}

.radio-checked:checked::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 8px;
    z-index: 99;
    background: var(--font-color);
}
.radio-checked:checked::before {
    background: white;
}

.radio-checked:checked ~ .bg-blues {
    background-color: var(--font-color);
}

.radio-checked:checked ~ .flex .z-9  {
    color: white;
}

.radio-checked:checked ~ .z-9  {
    color: white;
}

.cursor-pointer {
    cursor: pointer;
}

.pagination a {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    border: 1px solid #E7E7E7;
}

.pagination a.active {
    border: 1px solid #616161;
}

.gap-8 {
    gap: 8px;
}

.pagination a.disable {
    background-color: #616161;
}

.font-size-14 {
    font-size: 14em;
}


.border-radius-10 {
 border-radius: 10px;
}



.fw-400 {
    font-weight: 400;
}

.text-black {
    color: #000000;
}
.font-size-16 {
    font-size: 1.6em;
}

.font-size-18 {
    font-size: 1.8em;
}


.input-group-append {
    position: absolute;
    top: 0;
    right: 0;
}
.input-group-append button {
    background: transparent;
    border: 0;
    height: 100%;
    padding: 10px;
    font-size: 1.8rem;
}

.cursor-not-allowed {
    cursor: not-allowed !important;
}

.bg-light-blue {
    background-color: var(--btn-color-alpha);
}

.border-b-blue {
    border-bottom: 1px solid var(--btn-color)
}

.border-b-gray {
    border-bottom: 1px solid #E7E7E7
}

.mg-l-auto {
    margin-left: auto;
}
.mg-r-auto {
    margin-right: auto;
}


@media (max-width: 767px) {
    .break-down-right {
        flex-basis: 100%;
        margin-left: auto;
        text-align: right;
    }
    .button-container-mobile {
        flex-direction: column-reverse;
        gap: 5px;
    }
}
.pd-left-25 {
    padding-left: 25px;
}
.radio-group-disabled {
    cursor: not-allowed;
    background-color: rgb(231, 231, 231, 0.25);
}

.fit-content {
    width: fit-content;
}
.mg-t-32 {
    margin-top: 32px;
}

.ws-nowrap {
    white-space: nowrap;
}.float-none {
    float: none !important;
}
.justify-end {
    justify-content: end;
}
.li-type-none{
    list-style-type: none;
}
.add_data_gui {
    font-size: 1.8em;
}
#dataChargeSelected .price {
    font-weight: 700;
    text-align: right;
}
@media (max-width: 400px) {
    .pd-40 {
        padding: 1rem;
    }
}
.color-btn-blue {
    color: var(--btn-color);
}
