.w1 {
	width: 100%;
}

.mxw1 {
	max-width: 100%;
}

.wvh {
	width: 100vh;
}

.h1 {
	height: 100%;
}

.vh {
	height: 100vh;
}

.pointer {
	cursor: pointer;
}

.tcenter {
	text-align: center;
}

.tleft {
	text-align: left;
}

.tright {
	text-align: right;
}

.tjustify {
	text-align: justify;
}

.tstart {
	text-align: start;
}

.tend {
	text-align: end;
}

.background {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.block {
	display: block;
}

.none {
	display: none;
}

.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

.fixed {
	position: fixed;
}
.sticky {
	position: sticky;
}

.fixed.fill,
.absolute.fill {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
.absolute.centered {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.top {
	top: 0;
}
.bottom {
	bottom: 0;
}
.left {
	left: 0;
}
.right {
	right: 0;
}
.top-5 {
	top: 5px;
}
.right-5 {
	right: 5px;
}
.left-5 {
	left: 5px;
}
.bottom-5 {
	bottom: 5px;
}

.flex {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 5px;
}

.flex.total > * {
	flex: 1;
}

.flex .flex-1 {
	flex: 1;
}

.flex.noshrink {
	flex-shrink: 0;
}

.flex.column {
	flex-direction: column;
}

.flex.center {
	justify-content: center;
}

.flex.end {
	justify-content: flex-end;
}

.flex.start {
	justify-content: flex-start;
}

.flex.between {
	justify-content: space-between;
}

.flex.around {
	justify-content: space-around;
}

.flex.evenly {
	justify-content: space-evenly;
}

.flex.wrap {
	flex-wrap: wrap;
}

.flex.nowrap {
	flex-wrap: nowrap;
}

.flex.noalign {
	align-items: unset;
}

.flex.acenter {
	align-items: center;
}

.flex.aend {
	align-items: flex-end;
}

.flex.astart {
	align-items: flex-start;
}

.flex.abaseline {
	align-items: baseline;
}

.flex.reverse {
	flex-direction: row-reverse;
}

.grid.list-item {
	display: grid;
	background-color: var(--white);
	place-items: center;
	align-items: center;
	border-radius: 12px;
	padding: 1rem;
	gap: 1rem;
}
.grid.list-item > * {
	width: 100%;
	text-align: center;
}
.grid.list-item > .self-start {
	text-align: left;
}
.grid.list-item > .self-center {
	text-align: center;
}
.grid.list-item > .self-end {
	text-align: right;
}
.grid.two-column,
.grid.two-column-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
.gap {
	gap: 35px;
}

.gap-20,
.gap-medium {
	gap: 20px;
}

.gap-small {
	gap: 15px;
}

.gap-smaller {
	gap: 10px;
}

.gap-5 {
	gap: 5px;
}

.nogap,
.gap-0,
.no-gap {
	gap: 0;
}

.uppercase {
	text-transform: uppercase;
}

.lowercase {
	text-transform: lowercase;
}

.capitalize {
	text-transform: capitalize;
}

.bold {
	font-weight: bold;
}

.down {
	margin-top: 20px;
}

.overflow-vertical {
	overflow-x: hidden;
	overflow-y: auto;
	padding: 5px;
}

.overflow-horizontal {
	overflow-x: auto;
	overflow-y: hidden;
	padding: 5px;
}

.overflow-hidden {
	overflow: hidden;
}

.onmobile {
	display: none;
}

@media only screen and (max-width: 768px) {
	.onmobile {
		display: block;
	}

	.grid-span-column {
		grid-column: span 1;
	}

	.ondesktop {
		display: none;
	}

	.flex.responsive {
		flex-direction: column;
	}

	.grid.responsive {
		grid-template-columns: 1fr;
	}

	.responsive-w1,
	.w1-responsive {
		width: 100%;
	}
	.flex-responsive,
	.responsive-flex {
		display: flex;
		flex-direction: column;
	}

	.flex.responsive-align-start {
		align-items: flex-start;
	}

	.flex.responsive-align-center {
		align-items: center;
	}

	.flex.responsive-align-end {
		align-items: flex-end;
	}

	.flex.responsive-justify-center {
		justify-content: center;
	}

	.flex.responsive-justify-between {
		justify-content: space-between;
	}

	.flex.responsive-justify-evenly {
		justify-content: space-evenly;
	}

	.flex.responsive-justify-around {
		justify-content: space-around;
	}

	.flex.responsive-justify-end {
		justify-content: flex-end;
	}

	.flex.responsive-justify-start {
		justify-content: flex-start;
	}

	.flex.responsive-column {
		flex-direction: column;
	}

	.flex.responsive-column-reverse {
		flex-direction: column-reverse;
	}

	.flex.responsive-wrap {
		flex-wrap: wrap;
	}

	.grid.responsive-nowrap,
	.flex.responsive-nowrap {
		flex-wrap: nowrap;
	}
	.grid.responsive-gap,
	.flex.responsive-gap {
		gap: 35px;
	}
	.grid.responsive-no-gap,
	.flex.responsive-no-gap {
		gap: 0;
	}
	.grid.responsive-gap-5,
	.flex.responsive-gap-5 {
		gap: 5px;
	}
	.grid.responsive-gap-10,
	.flex.responsive-gap-10,
	.grid.responsive-gap-small,
	.flex.responsive-gap-small {
		gap: 10px;
	}
	.grid.responsive-gap-15,
	.flex.responsive-gap-15 {
		gap: 15px;
	}
}

:root {
    --color: #f1995a;
	--green: #f1995a;
	--green-light: #f1995a;
	--brown: #f1995a;
	--accent: #f1995a;
	--white: #FFFFFF;
	--white-light: #F5F5F5;
	--black: #000000;
	--yellow: #FFC107;
	--gravel: #FF7043;
    --ckeditor-height: 160px;
}

*,
*::after,
*::before {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    transition: all 0.3s ease-in-out;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

img {
    max-width: 100%;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: #333;
}

ul {
    list-style: none;
}

header.mandarinos-header {
    display: block;
    position: sticky;
    top: 0;
    background-color: #fff;
    padding: 10px;
    z-index: 1000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header.mandarinos-header .mandarinos-nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
}

header.mandarinos-header .mandarinos-nav ul li.mandarinos-nav-item a.mandarinos-nav-link {
    color: #333;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

header.mandarinos-header .mandarinos-nav ul li.mandarinos-nav-item a.mandarinos-nav-link.private-area {
    color: var(--color);
}

header.mandarinos-header .mandarinos-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header.mandarinos-header .mandarinos-nav .mandarinos-nav-item.mandarinos-icon a.mandarinos-nav-link.mandarinos-icon-link {
    width: 30px;
    height: 30px;
    display: block;
    background-color: #ddd;
    border-radius: 50%;
}

.bi {
    list-style: none;
    line-height: 1;
}

.mandarinos-flash-messages {
    position: fixed;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    flex-direction: column;
    gap: 10px;
    top: 20px;
    right: 20px;
    z-index: 1001;
}

.flash.flash-alert {
    padding: 10px 15px;
    border-radius: 5px;
}

.flash.flash-alert.flash-error {
    background-color: #f8d7da;
    color: #721c24;
}

.flash.flash-alert.flash-confirmation {
    background-color: #d4edda;
    color: #155724;
}

.page .page-content {
    padding: 20px 0;
}

.page .page-content>* {
    padding: 0 15px;
}

.page .page-content>.nopadding {
    padding: 0;
}

.page-content-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 15px;
}

.page .page-content .admin-sidebar {
    position: fixed;
    top: 60px;
    left: 10px;
    width: 100%;
    height: 100%;
    max-width: 250px;
    background-color: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.page .page-content.has-admin-sidebar {
    margin-left: 250px;
    padding-left: 15px;
    padding-right: 15px;
}

.admin-sidebar .admin-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.admin-sidebar .admin-sidebar-list .admin-sidebar-item,
.admin-sidebar .admin-sidebar-list .admin-sidebar-item a {
    display: block;
    position: relative;
    font-weight: 600;
    width: 100%;
}

.admin-sidebar .admin-sidebar-list .admin-sidebar-item a {
    padding: 5px 10px;
    background-color: #eee;
    border: 1px solid var(--color);
    border-radius: 5px;
}

.admin-sidebar .admin-sidebar-list .admin-sidebar-item a.main-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 103%;
    width: 50%;
    height: 2px;
    background-color: var(--color);
}

.admin-sidebar .admin-sidebar-list .admin-sidebar-item a.active {
    color: #000;
    background-color: var(--color);
    padding: 10px;
    border-radius: 5px;
}

.admin-sidebar .admin-sidebar-list .admin-sidebar-item a.active::after {
    content: '';
    background-color: #000;
}

.admin-sidebar .admin-sidebar-list .admin-sidebar-item .sub-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: 10px;
    margin-right: 10px;
    transition: max-height 0.3s;
    background-color: transparent;
    overflow: hidden;
    max-height: 0;
}

.admin-sidebar .admin-sidebar-list .admin-sidebar-item .sub-menu.active {
    max-height: 1000px;
    padding: 10px 5px;
    border: 1px solid var(--color);
    border-top: 0;
    border-radius: 0 0 5px 5px;
}

.admin-sidebar .admin-sidebar-list .admin-sidebar-item .sub-menu.active a {
    background-color: transparent;
    font-size: 14px;
    font-weight: 400;
}

.admin-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.admin-list .admin-list-item {
    width: 100%;
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: grid;
    align-items: center;
}

form .form-buttons.end {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

form .form-buttons.center {
    display: flex;
    justify-content: center;
    gap: 10px;
}

button,
input[type='submit'],
input[type='reset'],
input[type='button'],
.btn {
    padding: 6px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.btn.cta,
button.cta,
input[type='submit'].cta,
.btn.btn-primary,
button.btn-primary,
input[type='submit'].btn-primary {
    background-color: var(--color);
    color: #fff;
    border: 1px solid var(--color);
}

button:disabled,
input[type='submit']:disabled,
input[type='reset']:disabled,
input[type='button']:disabled,
.btn:disabled,
.btn.disabled {
    opacity: 0.6;
    background-color: #ddd;
    color: #999;
    cursor: not-allowed;
}

button.unbutton,
input[type='submit'].unbutton,
input[type='reset'].unbutton,
input[type='button'].unbutton,
.btn.unbutton,
.btn.unbutton {
    background-color: transparent;
    color: #333;
    border: none;
}

form .form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

form .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
}

form .form-group input,
form .form-group select,
form .form-group textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
}

form .form-group input:focus,
form .form-group select:focus,
form .form-group textarea:focus {
    border-color: var(--color);
}

form .form-group input::placeholder,
form .form-group select::placeholder,
form .form-group textarea::placeholder {
    color: #999;
}

form .form-group input[type='checkbox'] {
    width: auto;
}

form .submit-buttons-container {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    gap: 5px;
}

.panel {
    width: 100%;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.list-panel {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.list-item {
    width: 100%;
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.pointer {
    cursor: pointer;
}

.uppercase {
    text-transform: uppercase;
}

.lowercase {
    text-transform: lowercase;
}

.capitalize {
    text-transform: capitalize;
}

.list-container {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    gap: 1rem;
}

.comfortaa {
    font-family: 'Comfortaa', sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.nunito {
    font-family: 'Nunito', sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.montserrat {
    font-family: 'Montserrat', sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: var(--white-light);
    font-size: 16px;
    line-height: 1.4;
    color: #333;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: normal;
    text-transform: uppercase;
    font-family: 'Nunito', sans-serif;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

main {
    margin: 0 auto;
    min-height: 100dvh;
	padding: 20px;
}

main.admin-page {
    max-width: 100%;
    position: relative;
}

.image-container img {
    background-color: var(--accent);
    border-radius: 5px;
}

header.page-title {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 8px 15px;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	background-color: #fff;
}
header.page-title h1 {
	position: relative;
	font-size: 1.3rem;
	font-weight: 700;
}
header.page-title h1::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0px;
	width: 10%;
	height: 3px;
	border-radius: 12px;
	background-color: var(--accent);
}
header.page-title span,
header.page-title small {
	display: block;
	font-size: 0.85rem;
	color: #666;
}


button,
.btn {
    background-color: #eee;
    color: #333;
    border: 1px solid #bbbbbb;
    outline: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

.rounded,
.btn.rounded {
    border-radius: 20px;
}

.btn.icon,
.btn.iconed {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.btn.icon.center {
    justify-content: center;
}

.btn.small {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
}

.btn.green,
.btn.primary {
    border: none;
    color: #fff;
    background-color: var(--green);
}

.btn.success {
    background-color: #d4f8e8;
    color: #388e3c;
    border: 1px solid #388e3c;
}

.btn.danger {
    background-color: #fcb2b8;
    color: #ab2626;
    border: 1px solid #d32f2f;
}

.btn.warn,
.btn.warning {
    background-color: #ffebd0;
    color: #9b742f;
    border: 1px solid #9b742f;
}

.btn.info {
    background-color: #b3e5fc;
    color: #0288d1;
    border: 1px solid #0288d1;
}

.btn.light {
    background-color: #f8f9fa;
    color: #495057;
    border: 1px solid #495057;
}

.btn.dark {
    background-color: #6c757d;
    color: #ffffff;
    border: 1px solid #343a40;
}

.btn.small {
    padding: 4px 10px;
    font-size: 12px;
}

.btn.small span {
    font-size: 10px;
}
strong {
	position: relative;
	font-weight: 800;
}
/* FORMs */
.form-item {
    width: 100%;
    display: block;
}

.form-item.app-form-item.flex {
    display: flex;
}

.form-item label,
.form-item span.label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
}

.form-item label.unlabel {
    color: #000;
    font-size: 16px;
    font-weight: 400;
}

.form-item label .required,
.form-item span.label .required {
    color: #d32f2f;
    font-weight: 800;
}

.form-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-item.app-form-item label {
    display: flex;
    flex-direction: column;
}

label.form-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

label.form-item .label {
	font-size: 1rem;
    font-weight: 800;
    color: var(--accent);
}
.label {
	position: relative;
	font-size: 1rem;
    font-weight: 800;
    color: #a8a8a8;
	text-transform: uppercase;
}

.input,
input,
textarea,
select {
    border: 1px solid #ddd;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    outline: none;
    transition: all 0.3s ease-in-out;
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.06);
}

input {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-overflow: ellipsis;
}

input.checkbox,
input.radio {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    cursor: pointer;
}

input.radio:checked+.inner,
input.checkbox:checked+.inner {
    background-color: transparent;
    border: 2px solid var(--accent);
}

.form-item.radio-check-item label {
    position: relative;
}

.form-item.radio-check-item input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.form-item.radio-check-item input+span {
    display: block;
    padding: 4px 15px;
    border-radius: 20px;
    background-color: transparent;
    border: 1px solid var(--accent);
    text-align: center;
}

.form-item.radio-check-item input:hover+span,
.form-item.radio-check-item input:checked+span {
    background-color: var(--accent);
    color: #fff;
}

.form-item.app-form-item.ckeditor-custom-container .ck.ck-editor {
    width: 100%;
    height: 100%;
    min-height: var(--ckeditor-height, 300px);
}

.form-item.app-form-item.ckeditor-custom-container label {
    display: none;
}

.ck.ck-content.ck-editor__editable {
    white-space: pre-wrap;
    min-height: var(--ckeditor-height, 300px);
}

/* BOX */
.card {
    background-color: #fff;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.box {
    background-color: #fff;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.box .box-title-container {
    line-height: 1;
}

.box .box-header h4.box-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
    margin: 0;
}

.box .box-header small {
    font-size: 12px;
    color: #999;
}

.box .box-content {
    padding: 1rem 0;
}

.non-visible-scroll::-webkit-scrollbar {
    display: none;
}

.button-group {
    position: absolute;
    top: 5px;
    right: 10px;
    display: flex;
    gap: 4px;
}

table.table.custom-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 5px;
    overflow: hidden;
}

table.table.custom-table thead {
    color: #fff;
    background-color: var(--accent);
}

table.table.custom-table thead th {
    padding: 10px;
    text-align: left;
    font-weight: 600;
}

table.table.custom-table tbody td {
    padding: 10px;
    border-bottom: 1px solid #ccc;
    background-color: #fff;
}

table.table.custom-table tbody td[aria-readonly="true"] {
    color: #999;
    font-style: italic;
    pointer-events: none;
}

.form-item.radio-item {
	width: auto;
}
.form-item input.app-radio {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	cursor: pointer;
}
.form-item input.app-radio + span {
	border-radius: 20px;
	padding: 4px 15px;
	background-color: #ebebeb;
	border: 1px solid #a6bee0;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.06);
}
.form-item input.app-radio:checked+ span {
	background-color: var(--accent);
	border: 1px solid var(--accent);
	color: #fff;
}

.app-main {
	padding: 20px;
}
.app-main > * {
	width: 100%;
}

pre.debug {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	font-size: 11px;
	background-color: #222;
	color: goldenrod;
	position: fixed;
	max-height: 100dvh;
	overflow: auto;
	padding: 10px;
}

header.app-header {
    width: 100%;
    padding: 10px 15px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}
header.app-header h1 {
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
}
header.app-header small {
    font-size: 0.85rem;
    font-weight: 200;
    color: #666;
}