@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap');

:root {
	--primary-color: rgb(34, 153, 221);
	--secondary-color: rgb(204, 238, 255);
	--danger-color: rgb(255, 68, 0);
	--warning-color: rgb(255, 204, 0);
	--success-color: rgb(51, 221, 153);
	--dark100-color: rgb(51, 51, 51);
	--dark66-color: rgba(51, 51, 51, 0.66);
	--dark33-color: rgba(51, 51, 51, 0.33);
	--dark20-color: rgba(51, 51, 51, 0.2);
	--dark10-color: rgba(51, 51, 51, 0.1);
	--dark05-color: rgba(51, 51, 51, 0.05);
	--light-color: rgb(255, 255, 255);
	--body-color: rgb(249, 249, 249);
	--transparent-color: rgba(255, 255, 255, 0);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

::-moz-selection {
	background: var(--dark10-color);
}

::selection {
	background: var(--dark10-color);
}

body {
	background-color: var(--body-color);
	font-weight: 400;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	line-height: 20px;
	color: var(--dark100-color);
}

.overflow-hidden {
	overflow: hidden;
}

h1 {
	margin: 0;
	font-weight: 500;
	font-family: 'Roboto', sans-serif;
	font-size: 36px;
	line-height: 40px;
}

h2 {
	margin: 0;
	font-weight: 500;
	font-family: 'Roboto', sans-serif;
	font-size: 24px;
	line-height: 30px;
}

h3 {
	margin: 0;
	font-weight: 500;
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	line-height: 25px;
}

h4,
h5,
h6 {
	margin: 0;
	font-weight: 500;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	line-height: 20px;
}

p {
	margin: 0;
	font-weight: 400;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	line-height: 20px;
}

strong,
th {
	font-weight: 500;
}

small {
	font-weight: 500;
	font-family: 'Roboto', sans-serif;
	font-size: 10px;
	line-height: 20px;
}

ul {
	list-style: none;
}

.dl-container p {
	margin-bottom: 10px;
}

.dl-container dl {
	margin-bottom: 20px;
	padding-bottom: 19px;
	border-bottom: 1px dashed var(--dark10-color);
}

.dl-container dl:last-of-type {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

dl dt {
	width: 100px;
	color: var(--dark33-color);
	float: left;
}

dl dd {
	margin-left: 100px;
}

dl dd a {
	text-decoration: none;
}

a {
	color: var(--primary-color);
	transition: color ease-out 0.1s;
}

a:hover {
	color: var(--dark100-color);
}

.form-row .alert-danger,
.form-row .alert-warning,
.form-row .alert-success {
	margin-top: 5px;
}

.alert-danger {
	margin-bottom: 20px;
	font-size: 12px;
	color: var(--danger-color);
}

.alert-warning {
	margin-bottom: 20px;
	color: var(--warning-color);
}

.alert-success {
	margin-bottom: 20px;
	color: var(--success-color);
}

.heading {
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.heading h1 {
	display: flex;
	align-items: center;
	gap: 10px;
}

.heading h1 a,
.heading h1 svg {
	text-decoration: none;
	display: block;
}

.heading h1 a:hover svg path {
	fill: var(--dark100-color);
	fill-opacity: 1;
	transition: all ease-out 0.1s;
}

.tab {
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 40px;
}

.tab button {
	padding: 10px 0 8px;
	border: none;
	border-bottom: 2px solid var(--transparent-color);
	cursor: pointer;
}

.tab button.active {
	border-bottom-color: var(--primary-color);
	border-radius: 0;
}

.tabcontent {
	display: none;
}

.tabcontent {
	animation: fadeEffect 0.25s;
}

@keyframes fadeEffect {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

details {
	display: block;
}
summary {
	display: block;
	cursor: pointer;
}

summary::-webkit-details-marker,
details[open] summary::-webkit-details-marker,
summary::-webkit-details-marker,
summary:after,
details[open] summary:after {
	display: none;
}

#filter-form-modal {
	width: 100%;
	height: 100vh;
	background: var(--dark33-color);
	opacity: 0;
	display: flex;
	align-items: center;
	position: fixed;
	top: 0;
	left: -100%;
	z-index: 999999;
	transition: opacity ease-out 0.25s;
}

#filter-form-modal.filter-form-modal-visible {
	opacity: 1;
	left: 0;
    overflow: auto;
}

#filter-form-modal .filter-form {
	padding: 20px;
	width: 30%;
	background: var(--light-color);
	border-radius: 0 10px 10px 0;
	box-shadow: 2px 0 5px var(--dark10-color);
}

#filter-form-modal .modal-close {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

#filter-form-modal .modal-close svg {
	cursor: pointer;
}

form .form-columns {
	display: flex;
	align-items: flex-start;
	gap: 40px;
}

form .form-column {
	width: 50%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

form .form-group {
	margin-bottom: 20px;
	padding-bottom: 19px;
	border-bottom: 1px dashed var(--dark10-color);
}

form .form-row-double {
	display: flex;
	gap: 20px;
}

form .dashboard-filter.mt  {
    margin-top: 15px;
}

form .form-column .form-row,
form .form-row-double .form-row {
	margin-bottom: 0;
	flex-basis: 100%;
	flex: 1;
}

form .form-row {
	margin-bottom: 20px;
}

form .form-group .form-row:last-of-type {
	margin-bottom: 0;
}

form .form-group .title {
	margin-bottom: 10px;
	font-weight: 500;
}

form .dashboard-filter.checkbox-container {
    columns: 2;
}


form .checkbox-container input[type='checkbox'],
form .checkbox-container input[type='radio'] {
	margin-right: 10px;
	float: left;
}

form .checkbox-container label::first-letter {
	text-transform: uppercase;
}

label {
	margin-bottom: 10px;
	color: var(--dark33-color);
	display: block;
}

input::placeholder {
	color: var(--dark33-color);
}

input,
input[type='text'],
input[type='number'],
input[type='email'],
input[type='password'],
input[type='date'],
input[type='checkbox'],
input[type='radio'],
select,
textarea {
	padding: 9px 15px;
	width: 100%;
	background-color: var(--transparent-color);
	border: 1px solid var(--dark10-color);
	border-radius: 5px;
	font-weight: 400;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	line-height: 20px;
	color: var(--dark100-color);
	display: block;
	transition: border-color ease-out 0.1s;
	appearance: none;
}

input[type='date'] {
	padding: 8px 15px;
	font-size: 12px;
}

input[type='date']::-webkit-calendar-picker-indicator {
	/*display: none;*/
}

input[type='checkbox'],
input[type='radio'] {
	padding: 0;
	width: 20px;
	height: 20px;
}

input[type='checkbox']:checked::after,
input[type='radio']:checked::after {
	margin: 4px;
	width: 10px;
	height: 10px;
	background-color: var(--primary-color);
	border-radius: 2px;
	content: '';
	display: block;
}

input[type='radio']:checked::after {
	border-radius: 50%;
}

input[type='file']::file-selector-button {
	display: none;
}

textarea {
	min-width: 100%;
	width: 100%;
	max-width: 100%;
	min-height: 70px;
	height: 70px;
}

input:focus,
input[type='text']:focus,
input[type='number']:focus,
input[type='email']:focus,
input[type='password']:focus,
input[type='date']:focus,
input[type='checkbox']:focus,
select:focus,
textarea:focus {
	border-color: var(--dark20-color);
	outline: none;
}

button,
.btn {
	padding: 8px 18px;
	background-color: var(--transparent-color);
	border: 2px solid var(--transparent-color);
	border-radius: 5px;
	font-weight: 500;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	line-height: 20px;
	color: var(--primary-color);
	text-decoration: none;
	display: inline-block;
	transition: all ease-out 0.1s;
	appearance: none;
}

.btn-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.btn-icon {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.btn-icon.svgicon {
    padding: 2px;
    cursor: pointer;
}

.btn-icon.svgicon svg{
    width: 20px;
}

.btn-icon.svgicon svg.white{
    stroke: white;
}

.btn-icon.svgicon svg.primary{
    stroke: var(--primary-color);
}

.btn-primary.svgicon:hover {
    background-color: white;
    border-color: inherit;
    color: var(--primary-color);
}

.btn-secondary.svgicon:hover {
    background-color: black;
    border-color: black;
}



.btn-primary.svgicon:hover svg.white {
    stroke: var(--primary-color);
}

.btn-secondary.svgicon:hover svg.primary {
    stroke: white;
}



.btn-primary {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: var(--light-color);
}

.btn-secondary {
	background-color: var(--transparent-color);
	border-color: var(--primary-color);
	color: var(--primary-color);
}

.btn-danger {
	background-color: var(--transparent-color);
	border-color: var(--danger-color);
	color: var(--danger-color);
}

.btn-primary:hover {
	background-color: var(--dark100-color);
	border-color: var(--dark100-color);
	color: var(--light-color);
}

.btn-secondary:hover {
	background-color: var(--transparent-color);
	border-color: var(--dark100-color);
	color: var(--dark100-color);
}

.btn-danger:hover {
	background-color: var(--transparent-color);
	border-color: var(--dark100-color);
	color: var(--dark100-color);
}

.badge {
	padding: 5px;
	border-radius: 50%;
	font-weight: 500;
	font-size: 10px;
	text-transform: uppercase;
	display: inline-flex;
	gap: 5px;
}

.badge.badge-in-progress {
	background-color: rgba(255, 204, 0, 0.1);
}

.badge.badge-cancelled {
	background-color: rgba(255, 68, 0, 0.1);
}

.badge.badge-shipped,
.badge.badge-par-shipped {
	background-color: rgba(34, 153, 221, 0.1);
}

.badge.badge-completed {
	background-color: rgba(51, 221, 153, 0.1);
}

.wrapper {
	padding: 40px;
}

.card {
	margin-bottom: 40px;
	padding: 20px;
	background-color: var(--light-color);
	box-shadow: 0 2px 5px var(--dark10-color);
	border-radius: 10px;
}

.table {
	margin-bottom: 40px;
	display: flex;
	flex-direction: column;
}

.table .thead {
	margin-bottom: 20px;
	padding: 10px 20px 9px;
	border-bottom: 1px solid var(--dark10-color);
}

.table .thead ul {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.table .thead ul li:last-of-type {
	text-align: right;
}

.table .thead ul li a,
.table .thead ul li span {
	font-weight: 400;
	color: var(--dark33-color);
	text-decoration: none;
}

.table .tbody {
	padding: 20px;
	background-color: var(--light-color);
	box-shadow: 0 2px 5px var(--dark10-color);
	border-radius: 10px;
}

details summary .tbody {
	margin-bottom: 20px;
}

.table.table-order-item details:last-of-type summary .tbody {
	margin-bottom: 0;
}

details[open] > summary .tbody {
	margin-bottom: 0;
	padding: 20px 20px 0;
	border-radius: 10px 10px 0 0;
}

.table .tbody.tbody-sub {
	margin-bottom: 20px;
	padding: 20px;
	background-color: var(--light-color);
	box-shadow: 0 2px 5px var(--dark10-color);
	border-radius: 0 0 10px 10px;
}

.table .tbody.tbody-sub h3 {
	margin: 20px 0;
	padding-top: 19px;
	border-top: 1px dashed var(--dark10-color);
}

.table .tbody ul {
	padding: 10px 0 9px;
	border-bottom: 1px solid var(--dark10-color);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.table .tbody ul:first-of-type {
	padding: 0 0 9px;
}

.table .tbody ul:last-of-type {
	padding: 10px 0 0;
	border-bottom: none;
}

.table .tbody ul li:last-of-type {
	font-weight: 500;
	text-align: right;
}

.table .thead ul li,
.table .tbody ul li {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}


.table .tbody ul.order-cancelled li, .table .tbody ul.order-cancelled li a{
   color: crimson !important;
}


.table .tbody ul li a {
	text-decoration: none;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.table .tbody ul li a svg {
	display: block;
}

.table .tbody ul li small {
	display: none;
}

.table .table-code {
	width: 120px;
}

.table .table-code.customers {
    width: 100%;
}

.table .table-status {
	width: 60px;
	display: flex;
}

.table .table-type {
	width: 100px;
}

.table .table-season {
	width: 100px;
}

.table .table-businessName {
	width: 180px;
}

.table .table-customer {
	width: 250px;
}

.table .table-createdAt {
	width: 100px;
}

.table .table-itemQuantity {
	width: 50px;
}

.table .table-orderPrice {
	width: 80px;
}

.table.table-order-item .tbody ul,
.table.table-order-item .tbody ul:first-of-type,
.table.table-order-item .tbody ul:last-of-type {
	margin-bottom: 0;
	padding: 0;
	border-bottom: none;
	border-radius: 10px;
}

.table.table-order-item .tbody.tbody-sub ul,
.table.table-order-item .tbody.tbody-sub ul:first-of-type,
.table.table-order-item .tbody.tbody-sub ul:last-of-type {
	margin-bottom: 10px;
	padding: 20px;
	border-bottom: none;
	border-radius: 10px;
}

.table.table-order-item .tbody.tbody-sub ul:last-of-type {
	margin-bottom: 0;
}

.table.table-order-item .tbody.tbody-sub ul.shipment-order-item {
	margin-bottom: 0;
	padding: 10px 20px 9px;
	border-bottom: 1px solid var(--dark05-color);
}

.table.table-order-item .tbody.tbody-sub ul.shipment-order-item:last-of-type {
	margin-bottom: 0;
	padding: 10px 20px 0;
	border-bottom: none;
}

.table.table-order-item .tbody ul.status-pending,
.table.table-order-item .tbody ul.status-progress,
.table.table-order-item .tbody.status-pending,
.table.table-order-item .tbody.status-progress {
	background-color: rgba(255, 204, 0, 0.1);
}

.table.table-order-item .tbody ul.status-transit,
.table.table-order-item .tbody.status-transit {
	background-color: rgba(34, 153, 221, 0.1);
}

.table.table-order-item .tbody ul.status-delivery,
.table.table-order-item .tbody ul.status-delivered,
.table.table-order-item .tbody.status-delivery,
.table.table-order-item .tbody.status-delivered {
	background-color: rgba(51, 221, 153, 0.1);
}

details[open] > summary .tbody.status-pending,
details[open] > summary .tbody.status-progress,
details[open] > summary .tbody.status-transit,
details[open] > summary .tbody.status-delivery,
details[open] > summary .tbody.status-delivered {
	padding: 20px;
}

.table.table-order-item .tbody.tbody-sub .thead ul {
	margin-bottom: 0;
	padding: 0;
	border-radius: 0;
}

.note-row {
	margin-bottom: 20px;
}

.note-row h4 {
	margin-bottom: 10px;
}

.table.table-order-item .tbody.tbody-sub ul.attachments-list,
.table.table-order-item .tbody.tbody-sub ul.attachments-list:last-of-type {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 40px;
}

.table .tbody ul.attachments-list li a {
	font-weight: 400;
	display: flex;
	gap: 5px;
}

.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
    margin-top: 10px;
}

.pagination li a {
	width: 40px;
	color: var(--dark33-color);
	text-align: center;
	text-decoration: none;
	display: block;
}

.pagination li a:hover,
.pagination li.active a {
	color: var(--dark100-color);
}

.pagination li a svg {
	display: block;
}

.attachments li {
	margin-bottom: 20px;
	display: flex;
	align-items: flex-end;
	gap: 10px;
}

.attachments li button {
	margin-bottom: 0;
}

.attachments .vich-file {
	display: flex;
	align-items: center;
	gap: 10px;
}

.product-qty-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.customer-head-dl {
	margin: 10px 0 20px;
}

.customer-head-dl dt {
	width: 200px;
}

.customer-body-info {
	margin: 0 0 20px;
	padding: 19px 0 0;
	border-top: 1px solid var(--dark10-color);
}

.wrapper .customer-body-info:last-of-type {
	margin-bottom: 40px;
}

.customer-body-info dt {
	width: 200px;
}

.customer-head-dl dd,
.customer-body-info dd {
	margin-left: 200px;
	min-height: 20px;
}

.customer-form-address li > div {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.customer-form-address li {
	margin-top: 20px;
	padding-top: 19px;
	width: 100%;
	border-top: 1px dashed var(--dark33-color);
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 20px;
}

.customer-form-address li:first-child {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}

.customer-form-address li > div > div:last-of-type {
	display: flex;
	flex-direction: row-reverse;
	align-items: flex-start;
	justify-content: flex-end;
	gap: 10px;
}

.customer-form-address {
	margin-bottom: 20px;
}

.selected-filters-wrapper {
    display: flex;
    gap: 5px;
    align-items: center;
    flex-wrap: wrap;
}

.selected-filters-wrapper .filter-wrapper {

    border: solid 1px var(--primary-color);
    padding: 3px 5px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 3px;
    line-height: normal;
    flex-wrap: wrap;

}

.selected-filters-wrapper .filter-wrapper .selected-filter-multiple {
    border: solid 1px var(--primary-color);
    padding: 3px 3px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 3px;

}


.selected-filters-wrapper .filter-wrapper .selected-filter {
    display: flex;
    align-items: center;
    gap: 3px;

}

.selected-filters-wrapper i  {
    width: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.selected-filters-wrapper i svg {
    width: 15px;
    fill: var(--primary-color);
}

.overlay {
    display: none;
    background-color: black;
    opacity: 0.2;
    width: 100%;
    height: 100vh;
    position: fixed;
}


table.dashboard {
    border-collapse: collapse;
    font-family: Tahoma, Geneva, sans-serif;
    width: 100%;
}
table.dashboard td {
    padding: 10px;
}

table.dashboard td.notes .notes-wrapper {
    display: flex;
    gap: 3px;
}

table.dashboard thead td, table.dashboard thead th {
    background-color: #54585d;
    color: #ffffff;
    font-weight: bold;
    font-size: 12px;
    border: 1px solid #FFF;
    padding: 2px 3px;
}
table.dashboard tbody td {
    color: #636363;
    border: 1px solid #dddfe1;
    font-size: 12px;
}
table.dashboard tbody tr {
    background-color: #f9fafb;
}

table.dashboard tbody tr:hover {
    background-color: #accae8 !important;
}

table.dashboard tbody tr:nth-child(odd) {
    background-color: #ffffff;
}


div.styled-recap {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

div.styled-recap div.recap-card {
    border: solid 1px #ccc;
    padding: 15px;
    border-radius: 10px;
    width: 100%;
    min-width: 200px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 1px 2px 3px 0px #0000001c;
    -webkit-box-shadow: 1px 2px 3px 0px #0000001c;
}

div.styled-recap div.recap-card div.title {
    font-size: 16px;
    font-weight: 500;
}


div.styled-recap div.recap-card div.value {
    font-size: 28px;
    font-weight: 500;
    color: #000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

div.styled-recap div.recap-card div.value div.row {
    display: flex;
    justify-content: space-between;
}

div.styled-recap div.recap-card div.value div.row span.label{
    font-size: 20px;
}

div.dashboard-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

div.dashboard-options div.recap h4{
    margin-bottom: 5px;
}


div.dashboard-options div.recap ul {
    columns: 2;
    gap: 30px;
}



div.dashboard-options div.recap ul li{
    display: flex;
    justify-content: space-between;
    gap: 5px;
    padding: 0px 3px;
}

div.dashboard-options div.recap ul li:hover{
    background-color: #accae8 !important;
}

.topnav.mobile-menu {
    display: none;
}



.dashboard-table-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: auto;
}



.popover {
    border: 0;
    padding: 2ch;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    width: 200px;
    border-radius: 1ch;
    max-width: 90vw;
    max-height: 90vh;
    margin: auto;
    min-width: 50%;
}

.popover .content {
    overflow: auto;
    max-height: 600px;
    margin-top: 10px;
}

.popover::backdrop {
    background-color: rgba(200, 200, 200, 0.3);
    backdrop-filter: blur(2px);
}

.popover:popover-open {
    animation: fadeIn 150ms ease-in-out;
}




@media screen and (max-width: 1199px) {
	h1 {
		font-size: 26px;
		line-height: 30px;
	}

	h2 {
		font-size: 18px;
		line-height: 20px;
	}

	h3 {
		font-size: 16px;
		line-height: 20px;
	}

	#filter-form-modal .filter-form {
		width: 50%;
	}

	.wrapper {
		padding: 20px;
	}

	.card {
		margin-bottom: 20px;
	}

	form .form-columns {
		flex-direction: column;
	}

	form .form-column {
		width: 100%;
	}

	.table {
		margin-bottom: 20px;
	}

	.table .table-season {
		display: none;
	}

	.table .table-itemQuantity {
		width: 35px;
	}
}

@media screen and (max-width: 767px) {
	#filter-form-modal {
		align-items: flex-start;
	}

	#filter-form-modal .filter-form {
		width: 100%;
		border-radius: 0 0 10px 10px;
	}

	form .form-row-double {
		align-items: flex-start;
		flex-direction: column;
	}

	form .form-row-double .form-row {
		width: 100%;
	}

	.table .thead {
		display: none;
	}

	.table .tbody ul {
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
	}

	.table .tbody ul li small {
		width: 100px;
		font-size: 14px;
		color: var(--dark33-color);
		display: block;
	}

	.table .tbody ul li:last-of-type {
		text-align: left;
	}

	.table .table-code,
	.table .table-status,
	.table .table-season,
	.table .table-businessName,
	.table .table-createdAt,
	.table .tbody ul li,
	.table .tbody ul li:last-of-type {
		width: 100%;
		display: flex;
		align-items: center;
		gap: 20px;
	}

	.table.table-order-item .tbody.tbody-sub ul.shipment-order-item {
		margin-bottom: 10px;
		padding: 0 0 9px;
	}

	.table.table-order-item
		.tbody.tbody-sub
		ul.shipment-order-item:last-of-type {
		margin-bottom: 0;
		padding: 0;
	}

	.table.table-order-item .tbody.tbody-sub ul.attachments-list,
	.table.table-order-item .tbody.tbody-sub ul.attachments-list:last-of-type {
		gap: 10px;
	}

	.attachments li {
		flex-direction: column;
		align-items: inherit;
	}

	.product-qty-list {
		grid-template-columns: repeat(2, 1fr);
	}

	.customer-head-dl dt,
	.customer-body-info dt {
		width: 100%;
		float: none;
	}

	.customer-head-dl dd,
	.customer-body-info dd {
		margin-left: 0;
	}

	.customer-form-address li > div {
		grid-template-columns: repeat(2, 1fr);
	}

	.customer-form-address li > div label {
		max-height: 20px;
		overflow: hidden;
	}

    div.dashboard-options div.recap ul {
        columns: 1;
    }





    ul.desktop-menu {
        display: none;
    }



    /* Style the navigation menu */
    .topnav.mobile-menu {
        display: block;
        overflow: hidden;
        background-color: #333;
        position: relative;
    }

    /* Hide the links inside the navigation menu (except for logo/home) */
    .topnav.mobile-menu #links {
        display: none;
    }

    /* Style navigation menu links */
    .topnav.mobile-menu a {
        color: white;
        padding: 14px 16px;
        text-decoration: none;
        font-size: 17px;
        display: block;
    }

    /* Style the hamburger menu */
    .topnav.mobile-menu a.icon {
        background: black;
        display: block;
        position: absolute;
        right: 0;
        top: 0;
    }

    /* Add a grey background color on mouse-over */
    .topnav.mobile-menu a:hover {
        background-color: #ddd;
        color: black;
    }


    div.styled-recap div.recap-card {
        width: 100%;
        min-width: calc(50% - 5px);
    }

    div.styled-recap div.recap-card div.value {
        font-size: 22px;
    }


}


@media screen and (max-width: 400px) {
    .dashboard-options {
        flex-direction: column;
        align-items: normal !important;
        gap: 20px;
    }
}




.topnav {
    overflow: hidden;
    //background-color: #333;
}

.topnav a {
    float: left;
    display: block;
    color: var(--dark100-color);
    text-align: center;
    padding: 10px 12px;
    text-decoration: none;
    font-size: 14px;
}

.topnav a:hover {
    //background-color: #ddd;
    color: black;
}

/*.topnav a.active {*/
/*    background-color: #04AA6D;*/
/*    color: white;*/
/*}*/

.topnav .icon {
    display: none;
}

@media screen and (max-width: 1200px) {
    .topnav a {display: none;}






    .topnav i.icon {
        float: right;
        display: block;
        width: 30px;
    }

    /*.topnav.responsive {position: relative; min-width: 30px; min-height: 30px}*/
    /*.topnav.responsive .icon {*/
    /*    position: absolute;*/
    /*    right: 0;*/
    /*    top: 0;*/
    /*}*/
    .topnav.open a {
        float: none;
        display: block;
        text-align: left;
    }

    .topnav.open a:hover {
        color: #333333;
    }

    .topnav.open .menu-links {
        position: absolute;
        right: 0px;
        padding: 10px;
        background: var(--light-color);
        border-radius: 10px 0 0 10px;
        box-shadow: 0px -1px 5px 4px var(--dark10-color);
        top: 55px;
    }


}

