:root {
    --global-color-0: #a40043;
    --global-color-1: #121f83;
    --global-color-2: #ffffff;
    --global-color-3: #334155;
    --global-color-4: #f9fafb;
    --global-color-5: #FFFFFF;
    --global-color-6: #e2e8f0;
    --global-color-7: #333333;
    --global-color-8: #94a3b8;
    --global-color-9: #dc3545;
    --global-color-10: #ECF4DB;
    --global-color-11: #f3f3f3;
    --global-color-12: #c2c2c2;

    --light-global-color-0: #fe8b8b;
    --dark-global-color-0: #520c0c;
    --hover-global-color-0: #fe8b8b;

    --border-color: #dee2e6;
    --shadow-color: rgba(0, 0, 0, 0.147);

    --document-color: white;
    --document-width: 1440px;

    --link-decoration: none;
    --link-text-color: var(--global-color-0);
    --link-text-weight: 500;
    --link-hover-text-color: var(--global-color-1);

    --odd-child-color: #f7f7f7;

    --danger-color: #dc3545;
    --success-color: #23ca17;

    /* HEADER */
    --above-header-height: 34px;
    --above-header-padding: 0px 20px;
    --above-header-background-color: var(--global-color-0);
    --above-header-content-color: var(--global-color-4);
    --above-header-border : solid var(--global-color-4) 1px;
    --above-header-text-color: var(--global-color-5);

    --header-border: none;
    --header-height: 80px;
    --header-padding: 0px 20px;
    --header-background-color: var(--global-color-7);
    --header-content-color: var(--global-color-4);
    --header-border : solid var(--global-color-4) 1px;

    --header-shadow: 0px 2px 10px grey;

    /* FOOTER */
    --below-footer-height: 34px;
    --below-footer-padding: 0px 20px;
    /* --below-footer-background-color: var(--global-color-1); */
    --below-footer-background-color: #a40043;
    --below-footer-content-color: var(--global-color-4);
    --below-footer-border : solid var(--global-color-4) 1px;

    --footer-border: none;
    --footer-height: 80px;
    --footer-padding: 0px 20px;
    --footer-background-color: #9fa7df;
    --footer-content-color: var(--global-color-4);
    --footer-border : solid var(--global-color-4) 1px;

    --footer-shadow: 0px 2px 10px grey;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--document-color);
}

a {
    text-decoration: var(--link-decoration);
    color: var(--link-text-color);
    font-weight: var(--link-text-weight);
    transition: all 0.2s ease-in-out;
}

a:hover {
    color: var(--link-hover-text-color);
}

/* HEADERS */
h1, h2, h3, h4, h5, h6 {
    color: #333;
    font-family: Roboto,Sans-serif;
    font-weight: 600;
    line-height: 1.4em;
}

h1 {
    font-size: 42px; 
}
h2 {
    font-size: 32px;
}

h3 {
    font-size: 26px;
}

.title:not(.alt) {
    border-bottom: solid #dcdcdc 1px;
    position:relative;
}

.title:not(.alt)::after {
    content: '';
    height: 3px;
    width: 200px;
    background-color: var(--global-color-0);
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0px;
}

.title.alt {
    color: var(--global-color-0);
}


/* TEXT */

/* FROM */
.form-title {
    width: 100%;
    margin-bottom: 20px;
    font-size: 26px;
}

/* TABLE */
.table {
    border:none !important;
    border-collapse: collapse;
    table-layout: fixed;
    margin-bottom: 0px;
}

.table caption {
    font-size: 1.5em;
    margin: .5em 0 .75em;
}

/* .table tr {

    background-color: #f8f8f8;
    border: 1px solid #ddd;
    padding: .35em;
    font-size: 14px;
} */

.table th,
.table td {
    /* padding: .625em; */
    text-align: start;
    border:none;
    font-size: 14px;
    padding: 10px;
}
.table th:not(.order-table-row-td),
.table td:not(.order-table-row-td) {
    text-align: start;
    vertical-align: middle;
}

.table.order-overview-table th,
.table.order-overview-table td {
    padding: 20px 5px !important;
}

.table th {
    /* font-size: .85em;
    letter-spacing: .1em; */
    font-size: 14px;
    text-transform: uppercase;
    text-align:left;
    padding: 10px !important;
    border:none;
    border-bottom: solid #cdcdcd 1px !important;
}

.table > tbody > tr:nth-child(even) > td {
    background-color: var(--odd-child-color);
} 

/* TOGGLER */
.toggler:not(:first-child) {
    border-top: solid var(--border-color) 1px;
    padding-top: 20px;
}

.toggler > h2 {
    font-size: 26px;
    width: 90%;
    margin: 0px;
}

.toggler > i {
    width:10%; 
    font-size: 20px;
    cursor:pointer; 
    text-align: right;
}

/* MISC */

.site-logo {
    width: 250px;
    height: 70px;
    object-fit: contain;
    object-position: left;
    z-index: 1;
    position: sticky;
}

.price {
    white-space: nowrap;
}

.breadcrumbs {
    gap:10px;
}
.breadcrumbs > a {
    gap:10px;
    color: var(--global-color-7);
    white-space: nowrap;
}

.floating-buttons-container {
    position: fixed;
    width: 50px;
    display:flex; 
    flex-direction:column-reverse;
    justify-content: center;
    align-items:center;
    gap:10px;
    z-index: 49;
    bottom: 60px;
    right: 30px; 
}
.floating-buttons-container > div, .floating-buttons-container > li {
    box-shadow: 2px 2px 5px black;
}

.product-filter-toggler:not(.search-bar) {
    background-color: var(--global-color-1);
    color: var(--global-color-5);
    width: 50px;
    height: 50px;
    display:flex; 
    justify-content: center;
    align-items:center;
    z-index: 49;
    cursor:pointer;
}

.scroll-to-top {
    background-color: var(--global-color-1);
    color: var(--global-color-5);
    width: 50px;
    height: 50px;
    display:flex; 
    justify-content: center;
    align-items:center;
    z-index: 49;
    display:none;
    cursor:pointer;
}

.arrow-up {
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    
    border-bottom: 5px solid black;
}

.image-upload-spiner {
    background-color: white; 
    width: 100%; 
    height: 100%; 
    display: flex; 
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    position:absolute; 
    z-index:100;
    top: 0;
}

.image-upload-spiner > i {
    color: var(--global-color-0); 
    font-size: 4em;
    margin-bottom: 20px;
}

.no-border {
    border: none !important;
}
.line-through {
    text-decoration: line-through;
    color: var(--danger-color);
}

.loading-overlay {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0px;
    left:0px;
    display:none;
    justify-content: center;
    align-items:center;
    flex-direction: column;
    background-color: var(--global-color-0);
    z-index: 100;
    /* opacity: 0.75; */
}

.loading-overlay > i {
    color: var(--global-color-2);
    font-size: 50px;
}

.loading-overlay > p:not(.loading-overlay-icon-message) {
    color: var(--global-color-2);
    font-size: 20px;
    margin: 10px 10px;
    text-align: center;
}

.loading-overlay > .loading-overlay-icon-message {
    color: var(--global-color-2);
    font-size: 14px;
    margin: 10px 10px;
}

/* COUPONS CHECKOUT */
.coupon-details {
    display:flex;
    justify-content: flex-start;
    align-items: center;
    gap:20px;
}

/* SINGLE PRODUCT PAGE TABS */

.tabs {
    display: flex;
    cursor: pointer;
    gap: 5px;
}

.tab {
    padding: 10px 20px;
    background-color: var(--global-color-11);
    border: 1px solid var(--global-color-11);
    border-radius: 5px 5px 0 0;
    color: var(--global-color-12);
    font-weight: bold;
    margin-bottom: -1px;
    border-bottom: var(--border-color) solid 1px;
}

.tab.active {
    background-color: var(--global-color-5);
    color: var(--global-color-7);
    border: 1px solid var(--border-color);
    border-bottom: none;
}

.tab.hidden {
    display:none;
}

.tab:hover {
    background-color: var(--global-color-0);
    color: var(--global-color-5);
}

.tab-content {
    display: none;
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 0 0 5px 5px;
}

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

/* MESSAGES */

.message {
    width: 100%;
    background-color: var(--global-color-6);
    border-top: solid var(--global-color-3) 4px;
    margin: 10px 0px;
}

.message > .icon, .message > .content {
    padding: 20px;
}

.message > .icon > i {
    font-size: 30px;
    color: var(--global-color-2);
}

.message.success > .icon > i {
    color: var(--global-color-0);
}

.message.danger > .icon > i {
    color: var(--global-color-9);
}

.message > .content > p {
    margin: 0px;
}

.message.success {
    border-top: solid var(--global-color-0) 4px;
}

.message.danger {
    border-top: solid var(--global-color-9) 4px;
}

/* DOCUMENT */
.document {
    max-width: var(--document-width);
    width: var(--document-width);
    overflow: visible;
}

/* PAGE GLOBAL */
.page {
    width: 100%;
    height: 100%;
    display:flex;
    justify-content: center;
    align-items:center;
    flex-direction: column;
    /* margin: 50px 0px; */
    /* padding: 20px; */
}
.page.row {
    flex-direction: row;
    align-items: flex-start;
}

/* LOGIN PAGE FORGOT PASSWORD PAGE */

.login-page, .forgot-password-page {
    width: 100%;
    height: 550px;
    display:flex;
    justify-content: center;
    align-items:center;
    flex-direction: column;
}

.login-page > form, .forgot-password-page > form {
    padding: 20px 20px 30px 20px;
    border-radius: 5px;
    border: solid var(--border-color) 1px;
    width: 500px;
}

.login-page-register-container {
    width: 500px;
    padding: 20px 0px;
}

.login-page-register-container > p {
    margin-bottom: 0px;
}

/* REGISTER PAGE */
.register-page {
    width: 100%;
    height: 100%;
    display:flex;
    justify-content: center;
    align-items:center;
    flex-direction: column;
    margin: 50px 0px;
}

.register-page > form {
    padding: 30px 20px;
    border-radius: 5px;
    border: solid var(--border-color) 1px;
    width: 100%;
}


/* LIGHTBOX */
.lightbox {
    position: fixed;
    top: 0px;
    left: 0px;
    background-color:rgb(0 0 0 / 75%);
    width: 100%;
    height: 100%;
    display:none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index:99;
}

.lightbox > div {
    max-width: 612px;
    max-height: 612px;
    min-width: 300px;
    width: 100%;
}

.lightbox-header > i, .lightbox-footer > p {
    font-weight: bold;
    color: var(--global-color-6);
    font-size: 20px;
}

.lightbox-header {
    text-align: right;
}

.lightbox-header > i {
    cursor: pointer;
}
.lightbox-header > i:hover {
    color: var(--global-color-5);
}

/* DATE PICKER FIX */
.flatpickr-months, .flatpickr-month, .flatpickr-prev-month, .flatpickr-next-month {
    height: 50px !important;
}
.flatpickr-monthDropdown-months, .numInput.cur-year {
    padding: 2px !important;
}

.flatpickr-current-month {
    padding: 0px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}

/* LANGUAGE PICKER */
.header .dropdown {
    padding: 0.5rem;
}
.dropdown-language-item {
    display:flex;
    justify-content: flex-start;
    align-items:center;
    gap: 5px;
}

/* CART */
.cart-details-page {
    margin-bottom: 50px;
}
.cart-totals-container {
    border-top: solid var(--border-color) 1px;
    padding: 10px 0px;
    /* margin-top: 20px; */
    width: 100%;
}
.cart-totals-container > .cart-totals-item {
    display:flex;
    justify-content: space-between;
    align-items: center;
}

.tax-item {
    display:flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0px 0px 0px 10px;
}
.tax-item.checkout {
    padding: 0px !important;
}

.tax-item > p {
    margin: 0px;
}

.cart-totals-container > .cart-totals-item.tax {
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}
.cart-totals-container > .cart-totals-item.tax > .cart-total-tax-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
}

.cart-totals-container > .cart-totals-item p {
    margin: 0px;
}

.cart-buttons-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: solid var(--border-color) 1px;
    padding: 10px 0px;
    width: 100%;
}

.remove-product-from-cart {
    cursor: pointer;
    font-size: 26px;
}

.cart-products-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

/* CHECKOUT */

.checkout-page > form {
    display:flex;
    width: 100%;
    gap:20px;
}

.checkout-addresses {
    width: 60%;
    padding:20px;
    border: solid var(--border-color) 1px;
    border-radius: 5px;
}

.checkout-payment-address {
    padding-bottom: 20px;
}

.checkout-order {
    width: 40%;
    /* background-color: #c8e3e0; */
    padding: 20px;
    border: solid var(--border-color) 1px;
    border-radius: 5px;
    position: relative;
}

.checkout-details-overlay {
    position: absolute;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--document-color);
    z-index: 100;
}

.checkout-details-overlay > i {
    color: var(--global-color-0);
    font-size: 5em;
    margin-bottom: 5em;
}

.checkout-delivery-details {
    display: flex;
    flex-direction: column;
}

.checkout-totals-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.checkout-totals-item > p {
    margin: 0px;
}

.checkout-order-details-item {
    min-height: 70px;
}

.checkout-order-details-item:nth-child(even) {
    background-color: var(--odd-child-color);
}

.checkout-order-details-item p {
    margin:0px;
}

.checkout-order-details-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

/* SMECE */
#checkout-payment-address-form > h3, #checkout-delivery-address-form > h3 {
    font-size:16px;
}

.checkout-page {
    flex-direction: row;
    align-items: stretch;
    gap: 10px;
}

/*ORDER OVERVIEW AND THANK YOU PAGE */
.order-summary .price {
    font-weight: bold;
}

.order-summary, .bank-summary {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.order-summary > div, .bank-summary > div {
    padding:0px 20px;
}

.order-summary > div:first-child, .bank-summary > div:first-child {
    padding-left: 0px;
}

.order-summary > div:not(:last-child), .bank-summary > div:not(:last-child) {
    border-right: dashed var(--border-color) 1px;
    flex: 1 1 0px;
}

.order-summary > div > p, .bank-summary > div > p {
    margin: 0px;
}

.order-summary > div > p:first-child, .bank-summary > div > p:first-child {
    text-transform: uppercase;
    color: var(--global-color-7);
    font-size: 12px;
}
.order-summary > div > p:last-child, .bank-summary > div > p:last-child {
    font-weight: bold;
    color: var(--global-color-7);
}

.order-details {
    width: 100%;
}

.order-details > .totals-details {
    border: solid var(--border-color) 1px;
    margin-top: 30px;
    padding-bottom: 20px;
}

.order-details > .totals-details > h3 {
    margin-bottom: 0px;
    border-bottom: solid var(--border-color) 1px;
    padding: 20px;
    margin-bottom: 20px;
    width:100%;
    background-color: #f7f7f7;
}

.order-details > .totals-details > .order-details-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-details > .totals-details > .order-details-item.toggler:not(:first-child) {
    min-height: 70px;
}

.order-details > .totals-details > .order-details-item.product {
    padding: 10px 0px;
}

.order-details > .totals-details > .order-details-item.product:nth-child(even) {
    background-color: var(--odd-child-color);
}

.order-details > .totals-details > .order-details-item > p, .order-details > .totals-details > .order-details-item > div > p, .order-details > .totals-details > .order-details-item > div > div > p  {
    margin: 0px;
}

.order-details > .billing-delivery-details {
    display:flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.order-details > .billing-delivery-details > .billing-details, .order-details > .billing-delivery-details > .delivery-details {
    border: solid var(--border-color) 1px;
    width: 50%;
}

.order-details > .billing-delivery-details > .billing-details > h3, .order-details > .billing-delivery-details > .delivery-details > h3 {
    margin-bottom: 0px;
    border-bottom: solid var(--border-color) 1px;
    padding: 20px;
    margin-bottom: 20px;
    width:100%;
    background-color: #f7f7f7;
}

.payment-description {
    width: 100%;
}


/* THANK YOU PAGE */
.order-completed-page > h2:first-child {
    color: var(--global-color-0);
    font-size: 2.5em;
    font-weight: 600;
    padding-top: 50px;
}

.order-completed-page > p {
    font-size: 1.5em;
    color: var(--global-color-0);
    font-weight: 500;
    padding-bottom: 50px;
}

.no-order-found {
    min-height: 300px;
    height: 300px;
    display:flex;
    justify-content: center;
    align-items: center;
}

.no-order-found > h2 {
    color: var(--global-color-0);
    text-align: center;
}
/* MINI CART ICON */

.mini-cart-icon {
    position: relative;
    cursor: pointer;
    list-style-type: none;
    bottom: unset;
    right: unset;
    display: flex;
    align-items: center;
}

.mini-cart-icon.undocked{
    background-color: var(--global-color-1);
    z-index: 49;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mini-cart-icon.undocked > span {
    top: 0;
    left: 30px;
    color:var(--global-color-5);
}

.mini-cart-icon > span {
    position: absolute;
    background-color: var(--global-color-0);
    color:var(--global-color-5);
    padding: 0px 5px;
    border-radius: 50px;
    height: 20px;
    min-width: 20px;
    top: 0px;
    left: 20px;
    line-height: 1.5em;
    font-weight: 600;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* MINI CART */

.back-overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #00000091;
    top: 0px;
    left: 0px;
    z-index: 50;
}
.mini-cart-container {
    display: none;
    width: 500px;
    height: 100vh;
    position: absolute;
    top: 0;
    right: 0;
    background: var(--global-color-4);
    z-index: 51;
}

.mini-cart-container > .mc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: solid var(--border-color) 1px;
}

.mini-cart-container > .mc-content {
    height: calc(70% - 20px);
    overflow-y: scroll;
}

.mini-cart-container > .mc-message {
    padding:20px;
}

/* .mini-cart-container > .mc-message > p {
    font-size: 12px;
    padding: 10px;
    border: solid var(--border-color) 1px;
}

.mini-cart-container > .mc-message > p.danger {
    background-color: var(--global-color-9);
} */

.mini-cart-container > .mc-header > p {
    margin: 0px;
    font-size: 18px;
}

.mini-cart-container > .mc-header > i {
    font-size: 24px;
    cursor:pointer;
}

.mini-cart-container > .mc-buttons {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
}
.mini-cart-container > .mc-buttons > a {
    width: 100%;
}

.mini-cart-container > .mc-content.empty {
    display:flex;
    justify-content: center;
    align-items:center;
    height: calc(100% - (68px + 96px + 68px));
}

.mini-cart-container .mc-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 10px;
    border-bottom: solid var(--border-color) 1px;
    width: 100%;
    padding: 10px;
    position : relative;
    gap: 10px;
}

.mini-cart-container .mc-item .remove-mini-cart-product {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}

.mini-cart-container .mc-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.mini-cart-container .mc-item p {
    margin: 0px;
    margin-right:25px;
}

.mini-cart-container .mc-item > div:last-child {
    width: 100%;
}

.mini-cart-container .mc-item > .mc-item-details > div {
    display: flex;
    justify-content: space-between;
    align-items:center;
}

/* PRODUCTS */
.products-loader {
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.products-loader > i {
    font-size: 5em;
    color: var(--global-color-0);
}

.floater-container {
    width: 100%;
    height: 0px;
    position: relative;
    z-index:60;
}

.product-action-floater {
    /* width: calc(var(--document-width) - 40px);
    width: var(--document-width); */
    display: none;
    z-index: 60;
    position: fixed;
    box-shadow: 2px 2px 5px grey;
    width: 320px;
    right: 20px;
}
.product-action-floater > .floater-content {
    display:flex;
    justify-content: space-between;
    align-items: flex-start;
    gap:20px;
}

.product-action-floater > .floater-content > .close-product-floater {
    cursor: pointer;
}

/* PRODUCTS */
.products-container-list, .category-container-list, .related-products-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.product {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: solid var(--border-color) 1px;
    padding: 5px;
    border-radius: 5px;
    position: relative;
    background-color: var(--document-color);
    box-shadow: 2px 2px 3px var(--shadow-color);
    transition: box-shadow 0.2s ease-in-out;
}

.product > a {
    /* height: -webkit-fill-available; */
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    width:100%;
}

.product img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.2s ease-in-out;
}

.product img:hover {
    transform: scale(1.1);
}

.product .product-name {
    font-size: 18px;
    text-align:center;
}

.product button {
    width: 100%;
    margin-top: 20px;
}

.product .price, .product .product-category {
    color: var(--global-color-7)!important;
}

.product .price {
    font-size: 1.4em;
    margin-bottom: 5px;
    margin-top: auto;
}

.product > .product-category {
    margin: 5px 0px;
}
.product > a > .variation-info {
    margin-bottom: 0px;
    background: var(--global-color-0);
    width: 100%;
    padding: 16px;
    text-align: center;
    font-weight: 500;
    color: var(--global-color-4);
    margin-top: 20px;
}
.product > a > .variation-info > i {
    font-size: 20px;
}

.above-product-list {
    justify-content: space-between;
}
.above-product-list > select{
    padding: 5px 15px !important;
    height: 38px; 
    border-color: var(--bs-border-color); 
    width: 200px;
}

.add-to-cart-quantity {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}
.add-to-cart-quantity > p {
    margin:0px;
    padding: 13px 20px;
}
.add-to-cart-quantity > input {
    width:70px;
    text-align: center;
}

.add-to-cart-quantity > input::-webkit-outer-spin-button,
.add-to-cart-quantity > input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.add-to-cart-quantity > input[type=number] {
  -moz-appearance: textfield;
}

.category-container {
    padding: 10px;
    background-color: #f9f9f9;
}

.category-container-list > .category {
    border: solid var(--border-color) 1px;
    background-color: var(--document-color);
    display: flex;
    align-items: center;
    gap: 20px;
    cursor:pointer;
    transition: box-shadow 0.2s ease-in-out;
    border-radius:5px;
    padding: 2px;
    min-height:54px;
    max-height:54px;
    height:54px;
}

.category-container-list > .category > img {
    width: 50px;
    border-radius: 5px 0px 0px 5px;
}
.category-container-list > .category > p {
    margin: 0px;
    color: var(--global-color-7);
    font-weight: 400;
}

.category-container-toggler {
    background-color:#eaeaea;
    text-align:center;
    color: var(--global-color-7);
    padding:5px 20px;
    width: 100%;
    padding: 10px;
    font-weight: bold;
    border-radius: 0px 0px 5px 5px;
}
.category-container-toggler-button {
    cursor: pointer;
}

.category-container-toggler > p, .category-container-toggler > div > p {
    margin:0px;
}

.category-container-toggler > div > i {
    font-size: 18px;
    cursor: pointer;
    /* padding-top: 3px; */
}

.product:hover, .category-container-list > .category:hover {
    box-shadow: 2px 2px 10px var(--shadow-color);
}

.product-free-delivery {
    gap:10px;
    align-items:center;
}

.product-free-delivery > i {
    color: var(--global-color-9);
    font-size: 20px;
}
.product-free-delivery > div > p {
    margin: 0px;
}

.cart-already-have-product i {
    color: var(--global-color-9);
    font-size: 20px;
}

.single-product-action-container {
    padding: 20px;
    background-color: var(--global-color-4);
    position:relative;
}

.single-product-action-container::before {
    position: absolute;
    content:'';
    width: 300px;
    height: 3px;
    top: 0px;
    left: 0px;
    display:block;
    z-index: 1;
    background-color: var(--global-color-0);
}

.product-variations .attribute {
    border: solid var(--border-color) 1px;
    border-radius: 5px;
    min-width: 31px;
    padding:5px;
    margin-right: 10px;
    font-size: 14px;
    cursor:pointer;
    display: inline-block;
    text-align: center;
    opacity: 1;
} 

.product-variations .attribute.color {
    width: 31px;
    height:31px;
    border-radius: 50px;
} 

.product-variations .attribute.selected {
    background-color: var(--global-color-0);
    border-color: var(--global-color-0);
    color: var(--global-color-5);
    opacity: 1;
} 

.single-product-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
}

.single-product-container > h2:first-child {
    font-size: 26px;
}

.single-product-price-container {
    display:flex;
    align-items: flex-start;
    gap:10px;
}

.attribute-list > div > p {
    margin: 0px;
}
.attribute-list > div > p:first-child {
    width: 100px;
}

.badge-container {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.badge-container.single-product {
    left: 15px;
    top: 80px;
    width: fit-content;
    flex-direction: row;
}

/* .single-product-additional-info {
    display:flex;
    flex-direction: column-reverse;
} */

.product-details-price .p-badge {
    width: 64px;
    height: 64px;
    font-size: 16px;
}

.p-badge {
    background-color: var(--global-color-0);
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    line-height: 1em;
    display:flex;
    flex-direction: column;
    box-shadow: 2px 2px 5px #0000007a;
}
.p-badge > span {
    color: var(--global-color-5);
    font-weight: bold;
    font-size:1em;
}

.p-badge.new {
    background-color: var(--global-color-7);
}
.p-badge.new > span {
    color: var(--global-color-5);
}

.product-details-short-description > p {
    margin: 0px;
}

.product-details-long-description-link {
    font-weight: bold;
    cursor:pointer;
    color: var(--global-color-0);
    white-space: nowrap;
}

.product-details-price-box {
    display: flex;
    height: -webkit-fill-available;
    flex-direction: column;
    border: solid var(--border-color) 1px;
    box-shadow: 2px 2px 10px var(--shadow-color);
    min-height: 300px;
}

.product-details-price-box .additional-info, .product-details-price-box > .product-details-price {
    padding: 20px;
}

.product-details-price {
    position: relative;
}

.product-details-price > {
    position: relative;
}

.product-details-price > .product-discount{
    top: 75px;
    left: 15px;
}

.product-details-price > .product-discount > span {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 30px;
    font-weight: bold;
}

.product-details-price .price {
    font-weight: bold;
    font-size: 32px;
}

.product-details-price .price > span.line-through {
    font-size:24px;
    color: var(--global-color-9);
    font-weight: 400;
}

.product-details-price .price.discounted > span:last-child {
    font-size: 32px;
    /* color: var(--header-background-color); */
    /* text-shadow: 0px 1px 2px black; */
}

.product-details-price .price-vat-info {
    color: var(--global-color-0);
    /* background-color: var(--global-color-7); */
    border-radius: 50px;
    font-size:28px;
}

.product-details-price > div:nth-child(2) > p {
    font-size: 16px;
    font-weight: 400;
    margin:0px;
}

.product-details-price > .single-product-additional-info p {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 5px;
}


.product-image-carosel {
    margin-top: 5px;
}
.product-image-carosel > .product-image-carosel-item {
    cursor: pointer;
}


/* STOCK */
.product-stock {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.product-stock > div > p {
    color: var(--danger-color);
}

.product-stock > div > p > span {
    color: var(--bs-body-color);
}

.product-stock > i {
    color: var(--danger-color);
    font-size: 20px;
}

.product-stock > i.stocked, .product-stock > div > p.stocked {
    color: var(--success-color);
}

.no-stock {
    padding: 15px 20px;
    margin:0px;
    margin-top: 20px;
}


/* PRODUCT FILTER */
.product-search-filter {
    width: 100%;
    position: relative;
}
.product-filter {
    width: var(--document-width);
    border-radius:5px;
    border:solid var(--global-color-0) 1px;
}
.product-filter.float {
    position: fixed;
    z-index: 20;
    top: 5px;
}

.product-search-filter > .product-search-result {
    position: absolute;
    top:56px;
    left: -1px;
    max-height: 300px;
    width: calc(100% + 2px);
    background-color: var(--document-color);
    border:solid var(--global-color-0) 1px;
    display: none;
    z-index:30;
    overflow-y: scroll;
    border-top: none;
}

.search-result > .search-result-add-to-cart-button {
    padding:5px 10px;
    color: var(--global-color-5) !important;
}
.search-result > .search-result-add-to-cart-button:hover {
    color: var(--global-color-7) !important;
}

.search-result > .search-result-stock {
    display: flex;
    gap:10px;
    margin-left: auto;
    color: var(--danger-color) !important;
}
.search-result > .search-result-stock > i {
    color: var(--danger-color) !important;
}

.product-search-result > .search-result {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 5px 10px;
    transition: background-color 0.2s ease-in-out;
    min-height: 64px;
}
.product-search-result > .search-result:hover {
    background-color: var(--hover-global-color-0) !important;
}

.product-search-result > .search-result:nth-child(odd) {
    background-color: var(--odd-child-color);
}
.search-result > div > i {
    color: var(--global-color-7);
    font-size:20px;
}
.search-result > .search-result-add-to-cart-button {
    padding: 10px;
    width: 60px !important;
}

.product-search-result > .search-result > p, .product-search-result > .search-result > div > p {
    color: var(--global-color-7);
    margin:0px;
    font-weight: 400;
}

.product-search-filter > form {
    display: flex;
    overflow: hidden;
    border-radius: 5px 5px 0px 0px;
    position: relative;
    border-bottom: none;
}

.product-filter.float .product-search-filter > form {
    border:none;
}

.product-search-filter > form > input {
    width: 100%;
    border:none;
}
.product-search-filter > form > input:focus-visible {
    outline: none;
}
.product-search-filter > form > input:focus-visible + .product-search-filter > form {
    border-color: var(--document-color) !important;
}

.product-search-filter  > form > .product-search-filter-button {
    min-width: 200px;
}

.product-search-filter  > form > .product-search-clear-button {
    position: absolute;
    width: 20px;
    min-width: 20px;
    top: 10px;
    right: 210px;
    font-size: 24px;
    color: var(--global-color-7);
    display:none;
}

.product-search-filter  > form > .product-search-filter-button {
    min-width: 200px;
}

/* CUSTOM CONTENT */
.custom-single-product-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.custom-single-product-content > .custom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.custom-single-product-content > .custom-content > h3 {
    white-space: nowrap;
}
.custom-single-product-content > .custom-content > i {
    color: var(--global-color-0);
    font-size: 32px;
    margin-bottom: 10px;
}
.custom-single-product-content > .custom-content > p {
    margin: 0px;
    text-align: center;
}


/* PRODUCT SEARCH FILTER SINGLE PRODUCT AND CART*/
.single-product-container > .product-search-filter > form, .cart-details-page > .product-search-filter > form {
    border: solid var(--global-color-0) 1px;
    border-radius: 5px;
}
.single-product-container > .product-search-filter > .product-search-result, .cart-details-page > .product-search-filter > .product-search-result {
    width: 100%;
    left: 0px;
    top: 55px;
}

/* HEADER */
.social-container {
    display:flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
}

/* .social-container:after {
    content: '|';
    display: block;
    color: var(--above-header-text-color);
    top: -2px;
    right: -20px;
    position: absolute;
} */

.social-container > a {
    color: var(--above-header-text-color);
}

.social-container > a > i {
    font-size: 20px;
    color: var(--above-header-text-color);
}

.above-header {
    background-color: var(--above-header-background-color) !important;
}

.above-header .fa-solid.fa-user {
    color: var(--above-header-text-color);
}

.above-header > .container {
    max-width: 100% !important;
}

.above-header > .container > div {
    gap: 5px;
}
.above-header > .container > div > a, .above-header > .container > div > div > a, .above-header > .container > div > span {
    color: var(--above-header-text-color) !important;
    font-size: 14px;
}

.above-header .dropdown .btn-link, .above-header .btn-group .btn-link {
    color: var(--global-color-5) !important;
    font-size: 12px;
}
.above-header .btn-group .dropdown-toggle {
    font-size: 20px;
    width: 30px;
    /* border: solid black 1px; */
    padding: 0px;
    width:20px;
    height: 20px;
}

.above-header .dropdown-toggle > .dropdown-toggle-icon {
    font-size: 21px;
    position: absolute;
    top: 0px;
    left: 0px;
}

.above-header .btn-group .dropdown-toggle-split::after {
    vertical-align: .5em;
}

.above-header .btn-group {
    align-items: center;
    gap: 20px;
}

.above-header .dropdown-item > .btn-link {
    color: var(--global-color-7) !important;
    font-size: 16px;
    font-weight: 400;
}

.above-header .account > a:first-child {
    font-size: 14px;
    display: flex;
    gap: 5px;
    align-items: center;
}


.header {
    background-color: var(--header-background-color) !important;
    box-shadow: 2px 2px 2px grey;
}
.header:after {
    width: calc(var(--document-width) / 2);
    height: 94px;
    content: '';
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: var(--global-color-5);
    clip-path: polygon(0 0, 100% 0%, 94% 100%, 0% 100%);
}

.header .navbar-nav {
    gap: 20px;
}

.header .navbar-nav > .nav-item > a, .dropdown-toggle.dropdown-language-item {
    color: var(--global-color-4);
    text-transform: uppercase;
    font-weight: 600;
}

/* .header .navbar-nav > .nav-item:last-child {
    padding-top: 6px;
} */

.header .navbar-nav > .nav-item:last-child > a {
    margin: 0px 5px;
}

/* FOOTER */
.document-footer {
    width: 100%;
    position:relative;
}

.document-footer > .main-footer {
    width: 100%;
    background-color: var(--footer-background-color);
    border-bottom: var(--footer-border);
    padding: var(--footer-padding);
    border-bottom: var(--main-footer-border);
}

.document-footer > .main-footer > .container {
    padding: 40px 0px;
}

.document-footer > .main-footer > .container > div {
    display:flex;
    gap: 20px;
}

.document-footer > .main-footer > .container > div .footer-section {
    flex: 1 1 0;
    text-align: center;
    z-index:1;
}

.document-footer > .main-footer > div > div > div .logo-container img {
    width: 250px;
    height: 70px;
    object-fit: contain;
    object-position: left;
}

.document-footer > .main-footer > div > div > div .contact-container {
    margin-top: 20px;
    color: var(--global-color-4);
    list-style-type: none;
    padding: 0px;
}

.document-footer > .main-footer > div > div > div:not(:first-child) > h3 {
    font-size: 1.3em;
    color:var(--global-color-10);
}

.document-footer > .main-footer a {
    color: var(--global-color-5) !important;
}

.document-footer div .contact-container > li {
    padding: 5px 0px;
}

.document-footer div .contact-container > li > p {
    margin: 0px;
}

.document-footer div .google-play-link {
    color: var(--global-color-0);
    margin-top: 20px;
}

.document-footer div .google-play-link > p {
    font-size: 1.3em;
    color:var(--global-color-10);
    font-weight: 600;
}

.document-footer div .social-container {
    margin-top: 20px;
}

.document-footer div .social-container i {
    color: var(--global-color-4);
    font-size: 26px;
}

.document-footer div h3 {
    font-size: 16px;
    color: var(--global-color-0);
    font-weight: 600;
}

.document-footer div .footer-menu {
    color: var(--global-color-4);
    list-style-type: none;
    padding: 0px;
}
.document-footer div .footer-menu > li {
    padding: 10px 0px;
}

.document-footer div .footer-menu > li > p {
    margin: 0px;
    font-size: 18px;
}


.document-footer div .footer-menu > li > a {
    font-size: 18px;
    /* font-weight: bold;
    letter-spacing: 3px; */
}

.document-footer div .footer-menu > li > a > i{
    font-size: 14px;
    margin-right: 8px;
}

.document-footer > .below-footer {
    height: 100px;
    background-color: var(--below-footer-background-color);
    height: fit-content;
}

.main-footer > .container, .document-footer > .below-footer > .below-footer-container  {
    max-width: var(--document-width);
    width: var(--document-width);
}

.below-footer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.below-footer-container > div > a {
    color: var(--global-color-4) !important;
    margin: 0px;
    font-size: 14px;
}

.below-footer-container > div > a > img {
    padding: 10px;
    background-color: white;
    width: 70px;
    border-radius: 5px;
    transition: transform 0.2s ease-in-out;
}
.below-footer-container > div > a > img:hover {
    transform: scale(1.2);
}

.below-footer-container > div:last-child {
    display:flex;
    justify-content: flex-end;
    gap: 20px;
    align-items:center;
}

.below-footer-container > div:last-child > a:not(:last-child) {
    position: relative;
}

.below-footer-container > div:last-child > a:not(:last-child):after {
    display: block;
    content: "|";
    position: absolute;
    top: 0;
    right: -12px;
}


/* .below-footer-container > .links {
    display:flex;
    justify-content: space-between;
    align-items:center;
}

.below-footer-container > .links > a {
    font-size: 14px;
} */




/* COOKIE CONSENT */
.cookie_container {
    width: 100%;
    background-color: var(--global-color-7);
    position: fixed;
    left: 0px;
    bottom: 0px;
    display:flex;
    justify-content: center;
    align-items:center;
    z-index:100;
}

.cookie_container > i {
    position:absolute;
    top: 10px;
    right: 10px;
    color: var(--global-color-4);
    cursor: pointer;
    font-size: 24px;
}

.cookie_container > div {
    max-width: var(--document-width);
    width: var(--document-width);
    flex-direction: column;
    gap:20px;
}
.cookie_container > div > div:first-child {
    display: flex;
    justify-content: flex-start;
    align-items:flex-start;
    gap: 10px;
    width: 100%;
}

.cookie_container > div p, .cookie_container > div i {
    color: var(--global-color-4);
    margin: 0px;
}
.cookie_container > div i {
    font-size: 40px;
}

.cookie_container > div > div:last-child {
    text-align:center;
}

/* WIZARD */
.wizard-title {
    width: 100%;
}

.wizard-title > h2, .wizard-title > div > h2 {
    margin: 0px;
}
.wizard-title > div > p {
    margin: 0px;
}
.wizard-title > div > p > i {
    color: var(--global-color-0);
}

.help-container {
    /* margin-top: 50px; */
    margin: 10px 0px;
    width: 100%;
}

.image-help-container > div > p:first-child, .status-help-container > div > p:first-child, .statement-help-container > div > p:first-child, .family-members-help-container > div > p:first-child {
    font-weight: bold;
    font-style: italic;
    margin-bottom: 0px;
}

.image-help-container > div > p:last-child, .status-help-container > div > p:last-child, .statement-help-container > div > p:last-child, .family-members-help-container > div > p:last-child {
    font-style: italic;
}


/* WIZARD TABS */
.wizard-steps {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0px;
}   
.wizard-steps > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    justify-content: center;
    width: 140px;
}   
.wizard-steps > div > .step {
    font-size: 16px;
    font-weight: 500;
    color: #AFB2AB;
    background-color: #f6f6f6;
    border: solid #E8EAE4 3px;
    padding: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px;
    z-index: 10;
    cursor: pointer;
}
.wizard-steps > div > .step-description {
    font-size: 16px;
    margin-top: 10px;
    font-weight: 500;
    color: #444443;
    letter-spacing: 2px;
    margin-bottom: 0px;
    white-space: nowrap;
    cursor: pointer;
}
.wizard-steps > div > .step.no-link , .wizard-steps > div > .step-description.no-link {
    cursor:not-allowed;
}


.wizard-steps > div > .step.used, .wizard-steps > div > .step-description.used {
    color: var(--global-color-0); 
    border-color: var(--global-color-0);
}

.wizard-steps > div > .step-description.selected {
    color: #645f5f !important;
}
.wizard-steps > div > .step-description.completed {
    color: var(--global-color-0);
    border-color: var(--global-color-0);
}

.wizard-steps > div > .step.selected {
    border-color: #645f5f !important;
    /* background-color: var(--global-color-0); */
    color: #AFB2AB;
}
.wizard-steps > div > .step.completed {
    border-color: var(--global-color-0);
    background-color: var(--global-color-0);
    color: white;
}

.wizard-steps > div:not(:first-child).selected:before, .wizard-steps > div:not(:first-child).used:before {
    background-color: var(--global-color-0);
}

.wizard-steps > div:not(:first-child):before {
    content: '';
    display: block;
    background-color: #E8EAE4;
    width: 110px;
    height: 3px;
    position: absolute;
    left: -80px;
    top: 25px;
    z-index: 8;
}

.status-table-container, .family-members-table-container {
    margin: 20px 0px;
    overflow: hidden;
    border-radius: 5px;
    border: solid var(--border-color) 1px;
}

/* WIZARD FORMS */
.user-image-page, .user-statement-page, .user-status-page, .user-family-members-page, .account-status-page {
    width: 100%;
    height: 100%;
    display:flex;
    justify-content: center;
    align-items:center;
    flex-direction: column;
    padding: 20px;
}

.status-form {
    width: 100%;
    padding: 30px 20px;
    border-radius: 5px;
    border: solid var(--border-color) 1px;  
}

.statement-form {
    width: 100%;
    padding: 30px 20px;
    border-radius: 5px;
    border: solid var(--border-color) 1px;
}

.upload-image-form {
    width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
}

.form-content-container {
    width: 100%;
    padding: 30px 20px;
    border-radius: 5px;
    border: solid var(--border-color) 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.upload-image-preview {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
}

.form-content-container > div {
    margin: 30px 20px 0px 20px;
    display:flex; 
    justify-content: space-between; 
    align-items:center; 
    gap: 20px; 
    width: 100%;
}

.upload-image-form > div > div > .upload-file-button-label, .right-col > .upload-file-button-label  {
    line-height: 1.4em;
    display: block;
    width: 100%;
}

.upload-image-form > button {
    width: 540px;
}

/* STATUS */
.file-preview-drop-container {
    margin: 20px 0px;
}

.file-preview-drop-container > .status-file-object:nth-child(even) {
    background-color: var(--odd-child-color);
}

.status-file-object {
    display:flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.status-file-object > div {
    display:flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.status-file-object > div > i {
    font-size: 20px;
    color: var(--global-color-0);
    cursor: pointer;
}

.status-file-object > div > p {
    margin: 0px;
}

/* FAMILY MEMBERS */
.family-members-form {
    width: 100%;
    padding: 30px 20px;
    border-radius: 5px;
    border: solid var(--border-color) 1px;  
}

.family-members-upload-image {
    height: 300px;
    width: 300px;
    object-fit: contain;
}

/* ACCOUNT STATUS */
.account-status-content {
    /* display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; */
    width: 100%;
    /* border: solid var(--border-color) 1px;
    border-radius: 5px;
    padding: 20px; */
}
.account-status-content > .client-account-status {
    /* padding: 10px; */
    border: solid var(--border-color) 1px;
    border-radius: 5px;
}
.account-status-content > .client-account-status .client-account-status-title {
    font-weight: 600;
    margin-bottom: 5px;
}
.account-status-content > .client-account-status > .client-status-name {
    margin-bottom: 20px;
}
.account-status-content > .client-account-status > .client-status-name > p {
    margin: 0px;
    font-size: 20px;
    font-weight: 600;
}


/* STATEMENT CONFIRMATION PAGE */
.statement-confirmation-page-content {
    padding: 20px 0px;
    display:flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.statement-confirmation-page-content p {
    margin: 0px;
    font-size: 24px;
    font-weight: 500;
}
.statement-confirmation-page-content i {
    font-size: 45px;
}

/* DOCUMENTS */
.order-document {
    white-space: nowrap;
}

/* DASHBOARD */
.dashboard {
    min-height: 400px;
    margin: 50px 0px;
}

.dashboard .order-action-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.dashboard > div > div:not(:first-child){
    border: solid var(--border-color) 1px;
    border-radius: 5px;
}
.dashboard > div > div:not(:first-child) > .dashboard-section-header{
    margin: 20px 0px;
}

.db-nav-menu {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0px;
}

.db-nav-menu > .db-nav-item {
    padding: 15px 20px;
    border: solid var(--border-color) 1px;
    background-color: var(--global-color-6);
    display: flex;
    align-items: center;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.db-nav-menu > .db-nav-item.selected{
    color: var(--global-color-4);
    background-color: var(--global-color-0);
    border-color: var(--global-color-0);
}

.db-nav-menu > .db-nav-item:hover {
    color: var(--global-color-5);
    background-color: var(--global-color-1);
    border-color: var(--global-color-1);
}


/* DASHBOARD TICKETS */
.db-ticket-list .ticket-qr-code {
    width: 40px; 
    font-size:26px; 
    cursor:pointer;
    color: var(--global-color-0);
}

.db-ticket-list > .db-ticket > div {
    padding: 10px;
    border: solid var(--border-color) 1px;
    border-radius: 5px;
    width: 100%;
    min-height: 233px;
}

.db-ticket-list > .db-ticket > div > div > div > p:first-child {
    font-size: 16px; 
    /* width: 100px; */
    width: fit-content;
    width: -moz-fit-content;
}

.db-ticket-list > .db-ticket > div > div > div > p:not(:first-child) {
    font-size: 16px; 
    text-align: right;
    width: fit-content;
    width: -moz-fit-content;
}

.db-ticket-list > .db-ticket > div > div > div:nth-of-type(even) {
    background-color: var(--global-color-4);
}

.db-ticket-list > .db-ticket > div > .ticket-qr-details {
    height: calc(100% - 50px);
    display: flex;
    align-items: center;
    justify-content: center; 
}

.db-ticket-list > .db-ticket > div > .ticket-qr-details > img {
    max-width: 66px;
}


#dashboard-tickets-change-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#dashboard-tickets-change-filter > div {
    display: flex;
    align-items: center;
    gap: 20px;
}
#dashboard-tickets-change-filter > div > div {
    width: fit-content;
    width: -moz-fit-content;
    margin: 0px;
    display: flex;
    gap: 5px;
    align-items: center;
}

/* DASHBOARD DELIVERY ADDRESS */
.delivery-address-list {
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.delivery-address-list > .delivery-address-list-item {
    border: solid var(--border-color) 1px;
    border-radius: 5px;
    padding: 10px;
}

.delivery-address-list-item > .delivery-address-list-item-headery {
    display:flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: solid var(--border-color) 1px;
    padding-bottom: 10px;
}
.delivery-address-list-item > .delivery-address-list-item-headery > h3 {
    margin: 0px;
}

.delivery-address-list-item > .delivery-address-list-item-headery > div {
    display:flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
.delivery-address-list-item > .delivery-address-list-item-headery > div > i {
    cursor: pointer;
    color: var(--global-color-0);
}

.delivery-address-list-item > .delivery-address-list-item-body > p {
    margin: 0px;
}

.delivery-address-list-item.disabled {
    background-color: rgb(246 246 246);
}

.delivery-address-list-item.disabled > .delivery-address-list-item-headery > h3, .delivery-address-list-item.disabled > .delivery-address-list-item-body > p {
    color: #b1b1b1;
}

/* DASHBOARD ORDERS */
.order-list .document-list {
    display:flex;
    flex-direction: column;
}

/* PAGENATION */
.pagenation-container {
    display:flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: solid var(--border-color) 1px;
    padding: 20px 0px;
    gap: 10px;
}

.pagenation-container > p, .pagenation-container .page-link {
    margin: 0px;
}

.page-link {
    cursor:pointer;
    color: var(--global-color-7);
    font-weight: 500;
}

.page-link:hover {
    z-index: 2;
    color: var(--global-color-0);
}

.active>.page-link, .page-link.active {
    z-index: 3;
    color: var(--global-color-4);
    background-color: var(--global-color-0);
    border-color: var(--global-color-0);
}

/* RESPONSIVE */
@media(min-width: 1600px) {
    .header:after {
        width: calc(100% / 2.2);
        clip-path: polygon(0 0, 100% 0%, 95% 100%, 0% 100%);
    }
}


@media(max-width: 1480px) {
    .document {
        width: 100%;
        padding: 0px 20px;
    }

    .main-footer > .container {
        width: 100%;
        padding: 40px 0px;
    }
}

@media(max-width: 1157px) {
    .header:after {
        width: calc(var(--document-width) / 3);
        clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
    }
    /* .page {
        padding: 0px 20px;
    } */
    /* .dashboard {
        padding: 0px 20px;
    } */

    .product-filter {
        width: 100%;
        margin-left: 20px;
        margin-right: 20px;
    }
    .product-filter.float {
        width: calc(100% - 40px);
    }
    .product-search-filter {
        padding: 0px;
    }

    .product-search-filter.float {
        padding:0px;
        margin: 5px 20px 0px 20px;
        width: calc(100% - 40px) !important;
    }
}
@media(max-width: 1142px) {

    .main-footer > .container, .below-footer-container {
        width: 100%;
    }
}

@media(max-width: 1132px) {
    .wizard-steps > div {
        width: 120px;
    }
    .wizard-steps > div:not(:first-child):before {
        left: -70px;
        width: 90px;
    }
}

@media(max-width: 1091px) {

}

@media(max-width: 1050px) {
    .wizard-steps > div {
        width: 100px;
    }
    .wizard-steps > div:not(:first-child):before {
        left: -60px;
        width: 70px;
    }
    .cookie_container > div {
        flex-direction: column;
        gap: 20px;
    }
    .cookie_container > div > div {
        width: 100%;
    }
    .cookie_container > div > div:last-child {
        text-align:center;
    }

    .checkout-page {
        flex-direction: column;
    }
    .checkout-page > div {
        width: 100%;
    }
}

@media(max-width: 992px) {
    .document-footer > .main-footer > .container > div {
        flex-wrap: wrap;
    }
    .document-footer > .main-footer > .container > div > .footer-section:not(:last-child){
        flex:unset;
        width: calc(50% - 10px);
    }
    .document-footer > .main-footer > .container > div > .footer-section:last-child{
        flex:unset;
        width: 100%;
    }

    .header .navbar-nav > .nav-item:last-child > a {
        margin:0px;
    }

    .custom-single-product-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .header .navbar-collapse {
        padding-top: 1.5rem!important;
    }

    .header .navbar-collapse > ul {
        gap: 5px;
    }

    .wizard-title > h2 {
        font-size:28px;
    }

    .wizard-steps > div {
        width: 250px;
    }
    .wizard-steps > div:not(:first-child):before {
        left: -130px;
        width: 210px;
    }
    .wizard-steps {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .wizard-steps > div:not(:first-child):nth-child(4)::before {
        display: none;
    }

    .below-footer-container > div > p, .below-footer-container > div > a  {
        text-align:center;
    }

    .db-nav-menu {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    /* .dashboard > div > div:first-child {
        padding: 0px;
    } */

    .product-details-price-box > .product-free-delivery, .product-details-price-box > .product-details-price, .single-product-action-container {
        padding: 10px;
    }

    .product-details-price > .single-product-additional-info {
        display:flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: flex-start;
    }

    .product-details-price {
        flex-direction: column-reverse;
        align-items: flex-start !important;
        gap: 20px;
    }
    .product-details-price > div:last-child {
        width: 100%;
        text-align: right;
    }

    .badge-container.single-product {
        right: 15px;
        top: 80px;
        left: unset;
        width: fit-content;
    }

}

@media(max-width: 850px) {
    .table caption {
        font-size: 1.3em;
    }

    .table {
        border: none !important;
    }
    
    .table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }
    
    .table tr {
        border-bottom: 3px solid #ddd;
        display: block;
        margin-bottom: .625em;
        background-color: #f8f8f8;
        border: 1px solid #ddd;
        border-radius: 5px;
        overflow: hidden;
    }
    
    .table td {
        border-bottom: 1px solid #ddd;
        display: block;
        text-align: right;
        border-right: none;
        font-size: 16px;
        text-align: right !important;
    }
    
    .table td::before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
    }
    
    .table td:last-child {
        border-bottom: 0;
    }
    .status-table-container, .family-members-table-container {
        border: none;
    }
    .table > tbody > tr:nth-child(even) > td {
        background-color: var(--odd-child-color);
    } 
    .order-list {
        margin-top: 15px;
    }

    .order-list .document-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: start;
        padding-left: 20px;
        gap: 10px;
    }

    .single-product-container > div:nth-child(4) {
        flex-direction: column;
    }
    .single-product-container > div:nth-child(4) > div {
        width: 100%;
    }
    .single-product-container > div:nth-child(4) > div:last-child {
        margin-top: 20px;
    }
    .single-product-buttons {
        justify-content: space-between;
        padding: 0px;
    }

    .tab {
        flex: 1 1 0px;
        text-align: center;
        margin: 0px;
    }

}

@media(max-width: 767px) {
    .document {
        padding: 10px;
    }

    .wizard-title  {
        flex-direction: column !important;
        margin-bottom: 20px;
    }
    .wizard-title > h2 {
        width:100%;
        font-size:28px;
    }
    .wizard-title > form, .wizard-title > form > select {
        width: 100% !important;
    }

    .wizard-steps > div {
        width: 180px;
    }
    .wizard-steps > div:not(:first-child):before {
        left: -100px;
        width: 150px;
    }

    .family-members-upload-image {
        height: unset;
        width: 100%;
        object-fit: contain;
    }
    
    /* .user-image-page, .user-statement-page, .user-status-page, .user-family-members-page, .account-status-page, .products-page, .single-product-page {
        padding: 10px;
    } */

    .db-nav-menu {
        grid-template-columns: repeat(2, 1fr);
    }
    
    #dashboard-tickets-change-filter {
        flex-direction: column;
        gap: 10px;
    }
    #dashboard-tickets-change-filter > div {
        width: 100%;
        flex-wrap: wrap;
    }
    #dashboard-tickets-change-filter #dashboard_tickets_id_client {
        width: 100%;
    }

    .below-footer-container {
        padding: 20px 0px;
    }

    .below-footer-container > div:last-child {
        margin-top: 20px;
        flex-direction: column !important;
    }

    .below-footer-container > div:first-child {
        flex-direction: column-reverse !important;
        gap:20px;
    }

    .below-footer-container > div:last-child > a:not(:last-child):after {
        display: none;
    }

    .products-container-list, .category-container-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .mini-cart-container {
        width: 100%;
    }

    .checkout-page > form {
        flex-direction:column;
    }
    
    .checkout-page > form > .checkout-addresses {
        width:100%;
    }

    .checkout-page > form > .checkout-order {
        width:100%;
    }

    .checkout-addresses, .checkout-order {
        padding: 0px;
        border:none;
    }

    /* .page {
        padding: 10px;
    } */
    /* .generic-page, .contact-page {
        padding: 10px;
    } */

    .order-summary, .bank-summary {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .order-summary > div, .bank-summary > div {
        padding:0px 0px;
        border:none !important;
    }

    .above-header > .container {
        flex-direction: column;
        gap:10px;
    }

    .above-header > .container > div {
        width: 100%;
        justify-content: space-between;
    }
    .above-header > .container > div > span, .above-header > .container > div > .social-container::after {
        display:none;
    }

    .lightbox {
        padding: 0px 20px;
    }

    .products-page {
        padding-top: 0px !important;
        margin-top: 10px !important;
    }
    .breadcrumbs {
        margin-bottom: 10px !important;
    }
    
    .product-search-filter {
        padding: 0px;
    }

    .product-filter.float {
        padding: 0px;
        margin: 5px 10px;
        width: calc(100% - 20px) !important;
    }

    .product-search-filter.float .product-search-result {
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 0px;
        width: 100% !important;
    }
        
    .product-search-filter  > form > .product-search-filter-button {
        min-width: 50px;
    }
    .product-search-filter  > form > .product-search-filter-button > span{
        display:none;
    }
    .product-search-filter  > form > p:last-child {
        right: 70px;
    }

    .order-completed-page > h2:first-child {
        font-size: 1.8em;
    }
    .order-completed-page > p {
        font-size: 1em;
    }
    .products-container-list > .product > .price.discounted {
        display:flex;
        flex-direction: column;
        align-items: center;
    }
    .products-container-list > .product > .price.discounted > span:first-child{
        font-size:0.75em;
    }

    .dashboard > div > div:not(:first-child){
        border: none;
    }

    .title {
        font-size: 26px;
    }

    .single-product-brand-img {
        width: 130px !important;
    }
    .single-product-action-container::before {
        width: 50%;
    }

    .order-details > .order-details-item > div > p.order-details-item-product-name {
        display: flex;
        align-items: center;
    }

    .order-details > .billing-delivery-details {
        flex-direction: column;
    }

    .order-details > .billing-delivery-details > .billing-details, .order-details > .billing-delivery-details > .delivery-details {
        width:100%;
    }
}

@media(max-width: 640px) {
    .wizard-steps > div {
        width: 150px;
    }
    .wizard-steps > div:not(:first-child):before {
        left: -80px;
        width: 110px;
    }

    .upload-image-form {
        width: 100%;
        padding:0px;
    }
    .upload-image-form > button {
        width: 100%;
    }

    .add-status-form-content > form > div:first-child {
        flex-direction:column;
    }
    .add-status-form-content > form > div:first-child > div {
        width:100% !important;
    }

    .delivery-address-list {
        grid-template-columns: repeat(1, 1fr);
    }
    .dashboard-section-header {
        flex-direction: column;
        gap: 20px;
        align-items: stretch !important;
    }
    .pagenation-container {
        flex-direction: column;
        align-items: flex-end;
    }

    .tabs {
        flex-direction: column;
        gap: 10px;
    }

    .tabs > .tab {
        border-radius: 0px;
        border-bottom: solid var(--border-color) 1px;
        /* border: 1px solid var(--dark-global-color-0); */
        width: 100%;
    }
    .tabs > .tab:not(.active) {
        border-bottom: solid var(--global-color-11) 1px;
    }

    .tab-content {
        margin-top: 20px;
        padding: 10px;
    }
}

@media(max-width: 565px) {
    .header:after {
        width: calc(var(--document-width) / 4);
        clip-path: polygon(0 0, 100% 0%, 87% 100%, 0% 100%);
    }

    .login-page, .forgot-password-page {
        padding: 10px;
    }
    .login-page > form, .forgot-password-page > form {
        width: 100%;
    }
    .login-page-register-container {
        width: 100%;
        flex-direction: column !important;
        gap: 5px !important;
    }

    .wizard-steps > div {
        width: 100px;
    }
    .wizard-steps > div:not(:first-child):before {
        left: -60px;
        width: 70px;
    }
    .p-badge {
        width: 60px;
        height: 60px;
    }
    .p-badge > span, .p-badge.new > span {
        font-size: 0.8em;
    }
    
    .cart-buttons-container {
        flex-direction: column;
        gap: 20px;
    }

    .cart-buttons-container > a {
        width: 100%;
    }

    .page-error-404 {
        flex-direction: column;
    }
    
    .order-list .document-list {
        grid-template-columns: repeat(1, 1fr);
    }
    .result-brand {
        display:none;
    }
    .above-product-list {
        flex-direction: column;
    }

    .above-product-list .form-select.order-products {
        width: 100%;
    }

    .above-product-list .pagination > .page-item {
        /* flex: 1;
        text-align:center; */
    }

    .custom-single-product-content {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }

    .document-footer > .main-footer > .container > div > .footer-section:not(:last-child){
        width: 100%;
    }
}

@media(max-width: 482px) {
    .products-container-list > .product button {
        padding: 15px 10px;
    }

    .wizard-steps {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .wizard-steps > div:not(:first-child):nth-child(3)::before, .wizard-steps > div:not(:first-child):nth-child(5)::before {
        display: none;
    }
    .wizard-steps > div:not(:first-child):nth-child(4)::before {
        display: block;
    }

    .wizard-steps > div {
        width: 100px;
    }
    .wizard-steps > div:not(:first-child):before {
        left: -60px;
        width: 70px;
    }

    .cookie_container > div > div:last-child {
        display:flex;
        flex-direction: column;
        gap: 10px;
    }

    .db-nav-menu {
        grid-template-columns: repeat(1, 1fr);
    }

    .single-product-buttons {
        flex-direction: column;
    }

    .single-product-buttons > button, .single-product-buttons .add-to-cart-quantity {
        width:100%;
    }
    .single-product-buttons > .add-to-cart-quantity > p, .single-product-buttons > .add-to-cart-quantity > input{
        flex: 1 1 0px;
    }
    .products-container-list, .category-container-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .category-container-toggler > div > p {
        font-size:12px;
    }
    
    .category-container-toggler > div > i {
        font-size: 12px;
        padding-top: 3px;
    }
    .category-container-toggler .breadcrumbs, .category-container-toggler .bredcrumb {
        font-size:12px;
    }
}
@media(max-width: 375px) {
    .header:after {
        width: calc(var(--document-width) / 6);
        clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
    }
    .site-logo {
        width: 200px;
    }
}