@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
:root {
    --black-color: #0b0c10;
    --gray-color: #1f2833;
    --lightgray-color: #c5c6c7;
    --lightblue-color: #66fcf1;
    --darkblue-color: #45a29e;
    --prime-font: 'Poppins', sans-serif;
}
body {
    font-size: 16px;
    font-family: var(--prime-font);
}
header {
    background-color: var(--gray-color);
    height: 4.5em;
    width: 100%;
}
.controls {
    font-size: 2em;
    color: var(--lightgray-color);
    background-color: var(--darkgray-color);
    /* margin-right: 25px; */
}
.header {
    margin: 0 auto !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header a {
    color: var(--lightgray-color);
}

.header .logo {
    line-height: 3.5em;
    width: 12.5em;
    font-size: 1.25em;
}

.header .user {
    font-size: 1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .user .user-account {
    position: relative;
    width: 7.5em;
}
.header .user .user-account:hover > .user-methods {
    display: block;
}
.header .user .user-account span {
    margin-left: 5px;
}

.header .user .user-cart {
    padding: 20px 0;
    display: inline;
    position: relative;
}
.header .user .user-cart:hover > .cart-tab {
    display: block;
}

.cart-tab::after {
    position: absolute;
    top: -20px;
    right: 20px;
    content: "";
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid #fff;
}
.cart-tab {
    display: none;
    z-index: 1;
    right: 0;
    top: 62px;
    position: absolute;
    width: 500px;
    background-color: var(--black-color);
    border-radius: 10px;
    border: 1px solid var(--lightblue-color);
    font-size: 15px;
}
#no-product {
    text-align: center;
}
.cart-item {
    line-height: 50px;
    display: block;
    margin: 0 10px;
    border-bottom: 1px solid var(--lightgray-color);
    color: var(--lightgray-color);
}
.cart-item span {
    height: 50px;
}
.cart-item > .cart-item-name {
    white-space: nowrap;
    width: 35%;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cart-item > .cart-item-quantity {
    width: 25%;
}
.cart-item > .cart-item-remove {
    background-color: var(--black-color);
    border: 1px var(--lightgray-color) solid;
    border-radius: 15px;
    color: var(--lightgray-color);
    padding: 5px;
    user-select: none;
}
.cart-item > .cart-item-remove:hover {
    cursor: pointer;
}
.cart-table {
    margin: 20px;
    color: var(--lightgray-color);
}
.cart-table_head {
    text-align: center;
}
.cart-table_head > .cart-table_row {
    border-bottom: none !important;
}
.cart-table_row {
    display: grid;
    grid-template-columns: 1fr .5fr 1.5fr .75fr 1fr;
    text-align: center;
}
.cart-table_row > div {
    border: 1px solid var(--lightblue-color);
    border-bottom: none;
    border-left: none;
    display: block;
    padding: .5em;
}
.cart-table_row > div:first-child {
    border-left: 1px solid var(--lightblue-color);
}
.cart-table_row:last-child {
    border-bottom: 1px solid var(--lightblue-color);
}

.table-left {
    width: 70%;
    text-align: left;
    padding-left: 15px;
}
.table-right {
    max-width: 200px;
    padding: 0 15px;
}
.cart-props {
    display: flex;
    justify-content: space-between;
    text-align: center;
}
.col-50 {
    width: 50%;
}
.cart-props > div > div {
    margin: 0 10px 15px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: solid 1px black;
    border-radius: 10px;
    color: white;
}
#cart-details {
    border-color: var(--lightblue-color);
    background-color: var(--darkblue-color);
}
#cart-details > a {
    color: var(--black-color);
}
#cart-details:hover {
    font-weight: 800;
}
#cart-add-money {
    background-image: linear-gradient(to right, var(--darkblue-color), var(--lightblue-color));
    border-color: var(--lightblue-color);
}
#cart-add-money:hover {
    font-weight: 800;
}
#cart-add-money > a {
    color: var(--black-color);
}
.cart-details {
    text-align: center;
    height: 20px;
    margin-bottom: 15px;
}
.cart-details > a {
    color: var(--lightgray-color);
}
.header .user .user-cart > a {
    border: 1px var(--lightblue-color) solid;
    padding: 10px 10px;
    /* right: 30px; */
}

.header .user .user-cart span {
    margin-left: 5px;
}

.header .user .user-cart .cart-quantity {
    background-color: var(--lightblue-color);
    padding: 5px;
    border-radius: 15px;
    color: var(--gray-color);
}
.user-methods {
    z-index: 1;
    background-color: var(--black-color);
    border: var(--lightblue-color) 1px solid;
    position: absolute;
    left: -3.5em;
    top: 2.5em;
    display: none;
}
.user-methods::after {
    position: absolute;
    top: -20px;

    /* left: 50%; */
    right: 40%;
    content: "";
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid var(--lightblue-color);
}
.user-methods > .method {
    text-align: center;
    width: 200px;
    line-height: 1px;
    padding: 10px;
}
.method > .btn {
    background-color: var(--gray-color);
    width: 175px;
    height: 45px;
    border-radius: 15px;
    cursor: pointer;
    color: var(--lightgray-color);
    border: 1px solid var(--lightblue-color);
}
.modal {
    display: none;
    position: fixed; /* Stay in place */
    z-index: 10; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.modal-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    background-color: var(--gray-color);
    padding: 40px 25px;
    border: 1px solid var(--lightblue-color);
    width: 50%;
    height: 80vh;
    color: var(--lightgray-color);
}

.modal-close {
    color: var(--lightgray-color);
    position: absolute;
    right: 10px;
    top: 0;
    font-size: 50px;
    font-weight: bold;
    transition: color .5s;
}

.modal-close:hover,
.modal-close:focus {
    color: var(--lightblue-color);
    text-decoration: none;
    cursor: pointer;
}
.modal-content-head {
    margin-top: 20px;
    width: 100%;
    margin: 15px 0;
    display: flex;
    justify-content: flex-end;
}
.modal-background {
    position: absolute;
    background-color: black;
    background-color: var(--lightgray-color);
    opacity: .5;
    width: 100%;
    height: 100%;
}
.tabs {
    display: inline-table;
    height: 35px;
    width: 50%;
}
.tabs > button {
    display: inline-table;
    width: 50%;
    height: 35px;
    cursor: pointer;
    background-color: var(--lightgray-color);
    color: var(--gray-color);
}
.tab-active {
    border-bottom: 3px solid var(--lightblue-color);
}
.modal-content-body > article {
    /* display: flex !important; */
    margin: 0 !important;
    justify-content: space-between;
    width: 100%;
}
.tab-body-right > form {
    position: relative;
    width: 100%;
    height: 100%;
}
#login-tab {
    display: none;
}
#reg-tab {
    display: none;
}
.input-box {
    position: relative;
    color: var(--lightgray-color);
}
.input-box > i {
    position: absolute;
    top: 5px;
    left: 10px;
}
.input-box > input {
    padding: 2px 30px;
    height: 20px;
    width: 250px;
}
.tab-body-right > form > a {
    display: block;
    padding: 15px 0;
    color: var(--lightblue-color);
}
.tab-body-right > form > input[type="submit"] {
    width: 50%;
    padding: 10px;
    display: block;
    margin: 20px auto 0;
    border: none;
    border-radius: 15px;
    color: var(--gray-color);
    background-color: var(--lightblue-color);
}

footer {
    width: 100%;
    display: flex;
}

.footer {
    padding-bottom: 2em;
    width: 100%;
    background-color: var(--gray-color);
    color: var(--lightgray-color);
}
.footer-head {
    margin: 0 auto 1.5em;
    padding-top: 2em;
    padding-bottom: 2em;
    font-size: .75em;
    display: flex;
    justify-content: center;
}
.service {
    display: grid;
    grid-template-columns: .5fr 1.5fr;
    grid-template-rows: .5fr 1fr;
    align-items: center;
}
.service > img {
    grid-row: 1 / 3;
}
.service > h4 {
    display: inline-block;
    text-transform: uppercase;
}
.footer-body {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 975px;
}
.footer-body-item {
    line-height: 25px;
}
.footer-body-item > p a {
    color: var(--lightblue-color);
}
.footer-body-item > h3 {
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-list {
    width: 100%;
    display: inline-block;
}
.product-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.product-heading {
    margin-bottom: 1em;
    display: flex;
    justify-content: space-between;
}
.product {
    margin: 10px 0px;
    box-shadow: 0 1px 10px var(--darkblue-color), 0 1px 2px var(--darkblue-color);
    transition: box-shadow 300ms;
    text-align: center;
    padding-bottom: 20px;
    background-color: var(--lightgray-color);
}
.product > a {
    display: block;
}
.product:hover {
    box-shadow: 0 1px 10px var(--lightblue-color), 0 3px 10px var(--lightblue-color);
}
.product-img {
    max-width: 100%;
}
.product-body > p{
    height: 1.5em;
    line-height: 1.5em;
}
.product-name {
    padding: 10px;
    font-size: 18px;
    max-width: 90%;
    word-wrap: break-word;
    color: var(--gray-color);
}
.product-price {
    text-decoration: line-through;
    color: var(--gray-color);
    font-size: 18px;
}
.product-sale-price {
    font-size: 20px;
    color: red;
}
.product-buy-opt {
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    /* width: 50%; */
}
.product-buy-opt > button {
    background-color: var(--darkblue-color);
    padding: .5em 1em;
    width: calc(100% - 5em);
    border: 1.5px solid var(--lightblue-color);
    color: var(--gray-color);
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    display: block;
    font-size: 12px;
    transition: color 200ms;
    transition: background-color 200ms;
}
.product-buy-opt > button:first-child {
    margin: 5% auto;
}
.product-buy-opt > button:hover {
    background-color: var(--lightblue-color);
    border-color: var(--darkblue-color);
}
.col-25 {
    width: calc(100% / 4 - 1em);
}

.content {
    margin-top: 2.5em;
}
.item-details {
    display: flex;
    justify-content: space-between;
}
.item-details > div {
    width: 100%;
}
.item-imgs > .banner-advertise{
    width: 100% !important;
    margin: 0 !important;
}
.slider-lib {
    display: flex;
    /* flex-direction: column; */
    justify-content: space-between;
    margin: 0 15px;
}
.slider-lib > div{
    width: calc(100% / 3 - 10px);
}
.slider-lib > div > img {
    width: 100%;
}

.item-detail {
    margin: 0 25px;
}
.item-name {
    color: var(--lightgray-color);
    text-transform: uppercase;
    font-size: 35px;
}
.item-status {
    color: var(--lightgray-color);
    margin-bottom: 10px;
}
.item-prices {
    width: 100%;
}
.item-price {
    color: var(--lightblue-color);
    font-size: 26px;
}
.presale-price {
    color: var(--lightgray-color);
    text-decoration: line-through;
    font-size: 16px;
}
.tag-sale {
    background-color: var(--gray-color);
    text-decoration: none !important;
    opacity: 0.7;
    border-color: var(--lightblue-color);
    border-radius: 25px;
    font-size: 16px;
}
.item-quantity {
    height: 25px;
    line-height: 25px;
    display: inline-table;
}
.item-quantity > span {
    margin-right: 20px;
    color: var(--lightgray-color);
}
.item-quantity > .btn {
    font-size: 16px;
    padding: 10px 15px;
    background-color: var(--gray-color);
    color: var(--lightblue-color);
    border-color: var(--lightblue-color);
    transition: background-color 200ms;
}
.btn:hover {
    background-color: var(--lightblue-color);
    color: var(--gray-color);
}
.minus-quantity {
    border-top-left-radius: 15px;
    border-top: 1px solid gray;
    border-left: 1px solid gray;
    border-bottom-left-radius: 15px;
    border-bottom: 1px solid gray;
}
.add-quantity {
    border-top-right-radius: 15px;
    border-top: 1px solid gray;
    border-right: 1px solid gray;
    border-bottom-right-radius: 15px;
    border-bottom: 1px solid gray;
}
#item-quantity {
    border: 1px solid var(--lightblue-color);
    color: var(--lightblue-color);
    background-color: var(--gray-color);
    padding: 13px 15px 11px;
    width: 30px;
}
.buy-methods {
    margin: 2.5em 0;
}
.add-to-cart {
    width: 40%;
    padding: 15px;
    border-radius: 15px;
    border: 1px solid var(--lightblue-color);
    background-color: var(--gray-color);
    color: var(--lightblue-color);
    transition: color 200ms;
    transition: background-color 200ms;
}
.add-to-cart:hover {
    background-color: var(--lightblue-color);
    color:  var(--gray-color);
}
.buy-now {
    margin-left: 25px;
    padding: 15px;
    width: 30%;
    border-radius: 15px;
    border: 1px solid var(--lightblue-color);
    background-color: var(--gray-color);
    color: var(--lightblue-color);
    transition: color 200ms;
    transition: background-color 200ms;
}
.buy-now:hover {
    background-color: var(--lightblue-color);
    color:  var(--gray-color);
}
.remind {
    padding: 15px;
    display: none;
    margin: 15px auto;
    border-radius: 15px;
    border: 1px solid var(--lightblue-color);
    background-color: var(--gray-color);
    color: var(--lightblue-color);
    transition: color 200ms;
    transition: background-color 200ms;
}
.remind:hover {
    cursor: pointer;
    background-color: var(--lightblue-color);
    color:  var(--gray-color);
}
.slider {
    width: 100%;
}
.adver-img {
    display: inline;
    width: 80%;
}

.banner {
    width: 100%;
    display: grid;
    grid-template-columns: .25fr 1fr;
    grid-template-rows: 1fr .5fr;
    gap: 1em;
}
.banner-nav {
    grid-row: 1 / 2;
    width: 100%;
    display: inline-table;
    font-size: 24px;
}
.banner-nav_list-item {
    position: relative;
    line-height: 75px;
    font-size: 18px;
    text-align: center;
    border: 1px solid var(--lightblue-color);
    border-bottom: none;
    background-color: var(--lightgray-color);
}
.banner-nav_list-item i {
    font-size: 25px;
    margin-right: 7.5px;
}
.banner-nav_list-item:hover {
    background: var(--gray-color);
}
.banner-nav_list-item > a {
    color: var(--gray-color);
}
.banner-nav_list-item:hover > a {
    color: var(--lightgray-color);
}
.banner-nav_list-item:last-child {
    border-bottom: 1px solid var(--lightblue-color);
}

.banner-nav_list-item:hover > .cate-items {
    display: flex;
    flex-wrap: wrap;
}
.cate-items {
    display: none;
    position: absolute;
    left: 184px;
    width: 400px;
    top: -1px;
    background-color: var(--lightgray-color);
    border: 1px solid var(--lightblue-color);
    border-left: none;
    z-index: 2;
}

.cate-item {
    font-size: 16px;
    width: 25%;
}
.cate-item:hover {
    background: var(--gray-color);
}
.cate-item:hover > a {
    color: var(--lightgray-color);
}
.banner-advertise {
    position: relative;
}
.adver-img {
    width: 100%;
}
.banner-btn {
    position: absolute;
    z-index: 1;
    top: 10%;
    border: none;
    background-color: rgba(255, 255, 255, 0);
    margin-top: 15%;
    color: var(--lightblue-color);
}
.banner-btn-left{
    left: 2em;
}
.banner-btn-right {
    right: 2em;
}
.nav-slider {
    width: 100%;
}
.banner-event {
    width: 100%;
    grid-column: 1 / 3;
    display: flex;
    justify-content: space-between;
}   
.event-item {
    width: calc(100% / 3 - 10px);
    border-radius: 1em;
}
.event-item img {
    width: 100%;
    border-radius: 1em;
}

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}

@keyframes fade {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}
.lib-img {
    width: 120%;
    cursor:pointer;
}
.cart-wrapper {
    margin: 50px 0;
}
.cart-info {
    border: 1px solid var(--lightblue-color);
    border-radius: 5px;
    padding: 15px;
    color: var(--gray-color);
}
.cart-info-head {
    color: var(--lightblue-color);
}
.cart-detail-head {
    color: var(--lightgray-color);
    width: 100%;  
    /* text-align: center; */
}
.cart-detail-body {
    margin: 1em 0;
    color: var(--lightgray-color);
}
.cart-detail-body:first-child {
    margin-top: 0;
}
.cart-detail-body:last-child {
    margin-bottom: 0;
}
.row {
    display: grid;
    grid-template-columns: 2fr 1fr .5fr 1fr .1fr;
    font-size: 15px;
    column-gap: 15px;
    justify-content: center;
    align-items: center;
}
.row > article:first-child {
    display: grid;
    grid-template-columns: .5fr 1fr;
    grid-template-rows: 1fr .5fr;
    column-gap: 10px;
}
.row > article:first-child > :first-child {
    grid-row: 1 / 3;
}
.cart-product-img {
    width: 150px;
    display: block;
}
.cart-product-name {
    text-align: left;
    font-size: 16px;
    color: var(--lightblue-color);
}
.cart-product-status {
    margin-top: 5px;
    font-size: 14px;
    text-align: left;
    color: var(--darkblue-color);
}
.cart-product-status > .active {
    color: var(--lightgray-color);
}
.cart-product-status > .unactive {
    color: var(--darkblue-color);
}
.cart-product-price {
    font-size: 16px;
    letter-spacing: 0.25px;
}
.cart-product-normal-price {
    text-decoration:line-through;
    color: var(--lightgray-color);
    display: inline;
    margin-right: 5px;
    font-size: 14px;
}
.sale-tag {
    text-decoration: none;
    color: var(--lightblue-color);
    font-size: 14px;
}
.cart-product-quantity {
    height: 10px;
    line-height: 10px;
    display: inline-table;
}
.cart-product-quantity > span {
    margin-right: 20px;
}
.cart-product-quantity > .btn {
    font-size: 16px;
    padding: 5px 10px;
    background-color: var(--gray-color);
    color: var(--lightblue-color);
    border-color: var(--lightblue-color);
    transition: background-color 200ms;
}
.cart-product-quantity > .btn:hover {
    background-color: var(--lightblue-color);
    color: var(--gray-color);
}
#cart-product-quantity {
    border: 1px solid var(--lightblue-color);
    color: var(--lightblue-color);
    background-color: var(--gray-color);
    padding: 8px 13px 6px;
    width: 15px;
}
.cart-product-remove {
    font-size: 16px;
    color: var(--lightgray-color);
    background-color: var(--black-color);
}
.cart-payment {
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1em;
}
.cart-payment > .col-50 > .payment-block {
    margin: 10px 15px;
}
.payment-info > .payment-block {
    margin-left: 0 !important;
}
.payment-code {
    margin-bottom: 25px !important;
}
.payment-details > .payment-block {
    margin-right: 0 !important;
}
.payment-block {
    border: 1px solid var(--lightblue-color);
    /* padding: 0 15px; */
    border-radius: 5px;
}
.payment-block:first-child {
    margin-bottom: 30px;
}
.payment-head {
    padding: 5px 15px;
    background-color: var(--lightgray-color);
    height: 25px;
    line-height: 25px;
    border-top-left-radius: 3.5px;
    border-top-right-radius: 3.5px;
    color: var(--gray-color);
}
.payment-body {
    padding: 5px 15px;
    color: var(--lightblue-color);
}
.payment-body > hr {
    margin: 0;
}
.payment-foot {
    padding: 5px 15px 10px;
    color: var(--lightblue-color);
}
.discount-input {
    width: 100%;
    display: inline-table;
}
.discount-input > input {
    padding: 10px;
    width: 75%;
    border: 1px solid var(--lightblue-color);
    border-radius: 10px;
    border-right: none;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}
.discount-input > button {
    width: 15%;
    padding: 10px;
    display: inline;
    border: 1px solid var(--lightblue-color);
    background-color: var(--darkblue-color);
    color: var(--gray-color);
    border-radius: 10px;
    border-left: none;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    transition: background-color 200ms;
}
.discount-input > button:hover {
    background-color: var(--lightblue-color);
}
.discount-list {
    margin-top: 15px;
}
.discount-item {
    margin: 5px 0;
}
.payment-method {
    margin: 1em 0;
    display: flex;
}
.payment-method > img{
    width: 50px;
    display: block;
    /* float: left; */
    margin-right: 15px;
}
.payment-method > p {
    height: 50px;
    line-height: 50px;
}
.payment-total-price {
    padding: 15px 0;
    border-bottom: 1px dashed var(--lightblue-color);
}
.payment-discount-price {
    padding: 15px 0;
    border-bottom: 1px dashed var(--lightblue-color);
}
.discount-uses > li {
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
}
.payment-right {
    padding-right: 5px;
    text-align: right;
}
.user-wrapper {
    display: flex;
    flex-direction: row;
}
.functions {
    width: 100%;
}
.function {
    background-color: var(--gray-color);
    padding: 15px;
    color: var(--lightgray-color);
}
.function:hover {
    cursor: pointer;
}
.function:first-child > .function-icon {
    margin-left: 15px;
}
.function-icon {
    float: left;
    text-align: center;
}
.function-title {
    margin-left: 55px;
    font-size: 12px;
}
.function-active {
    background-color: var(--lightgray-color);
    color: var(--gray-color);
}
.user-container {
    width: 75%;
    background-color: var(--lightgray-color);
    color: var(--gray-color);
}
.user-content {
    margin: 0 15px;
}
.content-heading {
    margin-top: 15px;
    font-size: 24px;
}
.content-body {
    margin: 15px 0;
    font-size: 15px;
}
.user-info {
    line-height: 40px;
    margin-bottom: 20px;
}
.user-info > .user-input-box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}
.user-info > .user-input-box > input {
    width: 75%;
    height: 25px;
    padding: 3px 15px;
    border-radius: 5px;
    border: 1px solid var(--darkblue-color);
}
#edit-btn {
    padding: 15px 55px;
    display: block;
    margin: auto;
    background-color: var(--darkblue-color);
    border-radius: 15px;
    color: var(--gray-color);
    transition: color 200ms;
    transition: background-color 200ms;
}
#edit-btn:hover {
    cursor: pointer;
    background-color: var(--lightblue-color);
    color: var(--black-color);
}
#cart-info {
    display: none;
}
.detail-btn {
    padding: 10px;
    color: white;
    border-radius: 5px;
    color: var(--lightgray-color);
    background-color: var(--darkblue-color);
    transition: background-color 200ms;
    transition: color 200ms;
}
.detail-btn:hover {
    background-color: var(--lightblue-color);
    cursor: pointer;
    color: var(--black-color);
}
.info-msg {
    color: var(--gray-color);
    display: none;
    width: 100%;
    font-size: 20px;
}
.comment {
    margin-top: 70px;
    width: 100%;
    background-color: var(--lightgray-color);
}
@media only screen and (min-width: 64em) {
    
}
/* tablet */
@media only screen and (min-width: 46.25em) and (max-width: 63.9375em) {
    /* Header */
    .cart-inner-txt {
        display: none;
    }
    .user > .user-account,  .user > .user-cart{
        width: 5em !important;
        text-align: center;
    }
    .user > .user-account:hover > .user-methods, .user > .user-cart:hover > .cart-tab{
        display: none !important;
    }
    /* End Header */
    /* Content */
        /* Index */
            /* Banner */
            .banner {
                grid-template-columns: 1fr;
                grid-template-rows: 1fr .25fr .25fr;
                gap: 1em 0;
            }
            .banner-nav {
                grid-row: 2 / 3;
            }
            .banner-nav_list {
                display: flex;
                justify-content: space-between;
            }
            .banner-nav_list-item {
                width: calc(100% / 5);
                border-bottom: 1px solid var(--lightblue-color);
                border-left: none;
            }
            .banner-nav_list-item:first-child {
                border-left: 1px solid var(--lightblue-color);
            }
            /* End Banner */
            /* Product list */
            .product-wrapper > div {
                width: calc(50% - 2em);
            }
            .product-price, .product-sale-price {
                display: inline;
                font-size: 1em;
            }
            .product-sale-price {
                font-size: 1.5em;
            }
            /* End Product list */
        /* End Index */
        /* Cart */
        .row {
            grid-template-columns: 2fr .75fr .75fr 1fr .1fr;
        }

        /* End Cart */
        /* User */
        .user-wrapper {
            flex-direction: column;
        }
        .user-function > .functions {
            display: flex;
            flex-direction: row;
        }
        .user-function > .functions > .function {
            width: calc(100% / 2);
        }
        .user-container {
            width: 100%;
        }
        /* End User */
        /* Product */
        .presale-price {
            display: block;
        }
        /* End Product */
    /* End Content */
    /* Footer */
    .footer-body {
        padding: 0 1em;
        flex-wrap: wrap;
    }
    .footer-body-item:last-child {
        margin: 1em auto 0;
    }
    /* End Footer */
}
/* mobile */
@media only screen and (max-width: 46.1875em) {
    /* Header */
    .cart-inner-txt {
        display: none;
    }
    .user > .user-account,  .user > .user-cart{
        width: 5em !important;
        text-align: center;
    }
    .user > .user-account:hover > .user-methods, .user > .user-cart:hover > .cart-tab{
        display: none !important;
    }
    /* End Header */
    /* Content */
        /* Index */
            /* Banner */
            .banner {
                grid-template-columns: 1fr;
                grid-template-rows: 1fr .25fr .25fr;
                gap: 1em 0;
            }
            .banner-nav {
                grid-row: 2 / 3;
            }
            .banner-nav_list {
                display: flex;
                justify-content: space-between;
            }
            .banner-nav_list-item {
                width: calc(100% / 5);
                border-bottom: 1px solid var(--lightblue-color);
                border-left: none;
            }
            .banner-nav_list-item:first-child {
                border-left: 1px solid var(--lightblue-color);
            }
            /* End Banner */
            /* Product list */
            .product-wrapper > div {
                width: calc(50% - 2em);
            }
            .product-price, .product-sale-price {
                display: inline;
                font-size: 1em;
            }
            .product-sale-price {
                font-size: 1.5em;
            }
            /* End Product list */
        /* End Index */
        /* Cart */
        .row {
            grid-template-columns: 1fr;
            
        }
        .col-2, .col-3, .col-4, .col-5 {
            display: none;
        }
        .payment-info {
            grid-column: 1 / 3;
        }
        .payment-details {
            grid-column: 1 / 3;
        }
        .discount-input > button {
            width: auto;
        }
        /* End Cart */
        /* User */
        /* User */
        .user-wrapper {
            flex-direction: column;
        }
        .user-function > .functions {
            display: flex;
            flex-direction: row;
        }
        .user-function > .functions > .function {
            width: calc(100% / 2);
        }
        .user-container {
            width: 100%;
        }
        .user-info > .user-input-box {
            width: 100%;
        }
        .user-info > .user-input-box > input {
            width: 65%;
        }
        .cart-table_row {
            grid-template-columns: 2fr 1fr 1fr;
        }
        .cart-table_col-1, .cart-table_col-2 {
            display: none !important;
        }
        .cart-table_col-3 {
            border-left: 1px solid var(--lightblue-color) !important;
        }
        /* End User */
        /* Product */
        .item-details {
            flex-direction: column;
        }
        .presale-price {
            display: block;
        }
        /* End Product */
    /* End Content */
    /* Footer */
    .footer-head {
        flex-wrap: wrap;
        height: auto;
    }
    .footer-head > div {
        width: calc(100% / 2);
        margin: .5em 0;
    }
    .footer-body {
        padding: 0 1em;
        flex-wrap: wrap;
    }
    .footer-body-item {
        margin: .5em 0;
    }
    .footer-body-item:last-child {
        margin: 1em auto 0;
    }
    /* End Footer */
}
