@font-face {
	font-family: 'Ubuntu-Regular';
	src: url('./fonts/Ubuntu-Regular.ttf');
}

@font-face {
	font-family: 'Ubuntu-Bold';
	src: url('./fonts/Ubuntu-Bold.ttf');
}

@font-face {
	font-family: 'Ubuntu-Italic';
	src: url('./fonts/Ubuntu-Italic.ttf');
}

body{
	margin: 0 0 55px 0;
	overflow: hidden;
	font-family: 'Ubuntu-Regular', Arial, Helvetica, sans-serif;
}

.header {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
	width: 100%;
	height: 10vh;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	z-index: 10000;
}

.header__title {
	font-family: 'Ubuntu-Bold';
	font-size: 1.1em;
}

.subheader {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
	width: 100%;
	height: 10vh;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	z-index: 10000;
}

.subheader__title {
	flex-grow: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Ubuntu-Bold';
	font-size: 0.8em;
}

.subheader__status {
	overflow: hidden;
	padding-right: 10px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	font-family: 'Ubuntu-Italic';
	font-size: 0.8rem;
}

.container {
	height: 100vh;
	overflow: hidden;
}

.qrcode {
	width: 100%;
	height: 80vh;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	background-color: white;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.qrcode__reader {
	width: 500px;
	background-color: white;
	flex-grow: 1;
}

.qrcode__form {
	width: 100%;
	flex-grow: 1;
}

.language-selector {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.dropdown-button {
	cursor: pointer;
}

.flag {
	background-color: rgb(245, 245, 245);
	border-radius: 30px !important;
	margin-left: 5px !important;
	margin-right: 5px;
	margin-bottom: 5px !important;
}

.language-flag {
	max-width: 80%; /* Adjust the width as needed */
	height: auto; /* Automatically adjust the height */
}

/* Hide the radio buttons and labels */
.language-input {
	display: none;
}

/* Style the custom radio button (radio button appearance) */
.language-input + label:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 20px; /* Adjust the size as needed */
	height: 20px; /* Adjust the size as needed */
	border: 2px solid #007bff; /* Border color for unselected option */
	border-radius: 50%; /* Make it a circle */
	margin-right: 10px; /* Adjust spacing between the radio button and label text */
}

/* Style the custom radio button when selected */
.language-input:checked + label:before {
	background-color: #007bff; /* Background color for selected option */
	border-color: #007bff; /* Border color for selected option */
}

/* Hide the caret icons (down arrows) */
.dropdown-toggle::after {
	display: none;
}

.stores {
	width: 100%;
	height: 80vh;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.stores__link {
	width: 100%;
	height: 60px;
}

.stores__link:last-child {
	margin-bottom: 400px;
}

.stores__button {
	width: 97%;
	height: inherit;
	background-color: #80AA2C;
	color: white;
	border: 0px solid black;
	border-radius: 15px;
	margin-top: 5px;
}

.stores__button:hover {
	background-color: #80BB2C;
}

.home {
	width: 100%;
	height: 80vh;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.home__link {
	width: 100%;
	height: 100px;
}

.home__button {
	width: 97%;
	height: inherit;
	background-color: #80AA2C;
	color: white;
	border: 0px solid black;
	border-radius: 15px;
	margin-top: 5px;
}

.nav {
	position: fixed;
	bottom: 0;
	width: 100%;
	height: 10vh;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	background-color: white;
	display: flex;
	overflow: hidden;
}

.nav__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-grow: 1;
	min-width: 50px;
	overflow: hidden;
	white-space: nowrap;
	font-family: 'Ubuntu-Italic';
	font-size: 13px;
	color: #444444;
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
	transition: background-color 0.1s ease-in-out;
}

.nav__link:hover {
	background-color: #eeeeee;
}

.nav__link--active {
	color: #009578;
}

.nav__icon {
	font-size: 18px;
}

.date {
	width: 100%;
	height: 10vh;
	max-height: 10vh;
	padding-top: 10px;
	background-color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	margin-top: 2px;
	margin-bottom: 5px;
}

.date__container {
	width: 98%;
	height: 100%;
	padding: 3px;
	overflow: hidden;
	margin-bottom: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
}

.date__element {
	flex-grow: 1;
	width: 100%;
	height: 100%;
}

.date__button {
	flex-grow: 2;
	min-width: 100px;
	height: 100%;
	background-color: #80AA2C;
	color: white;
	border: 0px solid black;
	border-radius: 15px;
}

.month {
	width: 100%;
	padding-top: 10px;
	background-color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	margin-top: 2px;
	margin-bottom: 5px;
}

.month__container {
	width: 98%;
	height: 100%;
	padding: 3px;
	overflow: hidden;
	margin-bottom: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
}

.month__element {
	flex-grow: 1;
	width: 100%;
	height: 100%;
}

.month__button {
	flex-grow: 2;
	min-width: 100px;
	height: 100%;
	background-color: #80AA2C;
	color: white;
	border: 0px solid black;
	border-radius: 15px;
}

.list--history {
	width: 100%;
	height: 60vh;
	padding-top: 10px;
	background-color: white;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.list {
	width: 100%;
	height: 80vh;
	padding-top: 10px;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	background-color: white;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.list__box {
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	width: 98%;
	padding: 10px;
	border-radius: 15px;
	margin-top: 10px;
	margin-bottom: 10px;
}

.list__box:last-child {
	margin-bottom: 400px;
}

.list__tag {
	/*white-space: nowrap;*/
	font-family: 'Ubuntu-Regular';
	display: block;
}

.info {
	width: 100%;
	height: 80vh;
	padding-top: 10px;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	background-color: white;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.info__box {
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	width: 98%;
	min-height: 300px;
	padding: 10px;
	border-radius: 15px;
	overflow: hidden;
}

.info__box:last-child {
	margin-bottom: 400px;
}

.info__tag {
	padding-top: 10px;
	padding-bottom: 10px;
	/*white-space: nowrap;*/
	font-family: 'Ubuntu-Regular';
	border-bottom: 2px solid rgb(240, 240, 240);
}

.order {
	width: 100%;
	height: 60vh;
	/*box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);*/
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 15px;
}

.order__item {
	width: 98%;
	display: flex;
	padding: 5px;
	align-items: center;
	justify-content: flex-start;
	/*margin-bottom: 5px;*/
}

.order__item--automatic-start {
	width: 98%;
	display: flex;
	padding: 5px;
	align-items: center;
	justify-content: center;
	/*margin-bottom: 5px;*/
}

.order__text {
	font-size: 14px;
	font-family: 'Ubuntu-Italic';
	text-align: center;
}

.order__text--bold {
	font-size: 14px;
	font-family: 'Ubuntu-Italic';
	text-align: center;
	font-weight: 800;
}

.order__delete {
	font-size: 14px;
	font-family: 'Ubuntu-Italic';
}

.order__text--automatic-start {
	font-size: 12px;
	font-family: 'Ubuntu-Italic';
	display: flex;
	text-transform: uppercase;
}

.order__text a{
	text-decoration: none;
	color: #80AA2C;
}

.order__chosseBox {
	width: 98%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
	margin-bottom: 300px;
}

.order__form {
	height: 100%;
	flex-grow: 1;
}

.order__button {
	width: 100%;
	height: 100%;
	min-height: 50px;
	background-color: #80AA2C;
	color: white;
	border: 0px solid black;
	border-radius: 15px;
}

.delivery {
	width: 100%;
	height: 60vh;
	/*box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);*/
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 15px;
}

.delivery__item {
	width: 98%;
	display: flex;
	padding: 3px;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px;
}

.delivery__text {
	font-size: 12px;
	font-weight: 400;
}

.delivery__text--bold {
	font-size: 14px;
	font-weight: 800;
}

.delivery__chosseBox {
	width: 98%;
	display: flex;
	justify-content: center;
	flex-direction: column;
	margin-bottom: 300px;
}

.delivery__form {
	height: 100%;
	flex-grow: 1;
	padding: 5px;
}

.delivery__form--popup {
	width: 98%;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.delivery__button {
	width: 100% !important;
	height: 50%;
	min-height: 50px;
	background-color: #80AA2C;
	color: white;
	border: 0px solid black;
	border-radius: 15px;
}

.delivery__note {
	margin-top: 5px;
	padding: 10px;
	width: 100% !important;
	height: 50%;
	min-height: 50px;
	border-radius: 15px;
	resize: none;
}

.failColor {
	background-color: #aa2c2c !important;
	color: white !important;
}

.paneladdress {
	width: 100%;
	height: 20vh;
	/*box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);*/
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.panel {
	width: 100%;
	height: 20vh;
	/*box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);*/
	display: flex;
	flex-direction: column;
	align-items: center;
}

.panel__link {
	padding-bottom: 4px;
	width: 97%;
	min-height: 30px;
	flex-grow: 1;
}

.panel__button {
	width: 100%;
	height: 100%;
	background-color: #80AA2C;
	color: white;
	border: 0px solid black;
	border-radius: 15px;
}

.navpanel {
	width: 100%;
	height: 10vh;
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.navpanel__header {
	display: flex;
	width: 35%;
	min-height: 30px;
	justify-content: center;
	align-items: center;
	font-family: 'Ubuntu-Bold';
}

.navpanel__link {
	width: 20%;
	min-height: 30px;
	display: flex;
	justify-content: center;
	font-size: 28px;
	font-weight: 400;
}

.navpanel__button {
	width: 95%;
	height: 100%;
	background-color: #80AA2C;
	color: white;
	border: 1px solid black;
	border-radius: 15px;
}

.reorder__fix {
	width: 100%;
	height: 10vh;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.reorder__not {
	width: 100%;
	height: 10vh;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.reorder {
	width: 100%;
	height: 30vh;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.reorder__icon {
	width: 20%;
	height: 100%;
	font-size: 18px;
	font-weight: 400;
	cursor: pointer;
}

.reorder__item {
	width: 98%;
	min-height: 40px;
	display: flex;
	border-radius: 10px;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px;
}

.reorder__item--automatic-start {
	width: 98%;
	height: 100%;
	display: flex;
	padding-left: 10px;
	align-items: center;
	justify-content: center;
	margin-bottom: 0px;
}

.reorder__text {
	display: flex;
	align-items: flex-start;
	width: 40%;
	font-size: 12px;
	font-weight: 400;
}

.reorder__fulltext {
	display: flex;
	align-items: flex-start;
	flex-grow: 1;
	font-size: 12px;
	font-weight: 400;
}

.reorder__fulltext--automatic-start {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-grow: 1;
	font-size: 18px;
	font-weight: 400;
	text-transform: uppercase;
}

.product {
	width: 100%;
	height: 60vh;
	/*box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);*/
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 10px;
}

.product__item {
	width: 98%;
	display: flex;
	padding: 10px;
	border-radius: 10px;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	align-items: center;
	/*justify-content: space-between;*/
	margin-bottom: 8px;
	/*cursor: pointer;*/
}

.product__checkbox {
	width: 100%;
	flex-grow: 1;
	width: 20px;
	height: 20px;
	font-size: 18px;
	font-weight: 400;
	cursor: pointer;
}

.product__checkbox:checked {
	background-color: #80BB2C;
	color: #FFFFFF;
}

.product__header {
	width: 100%;
	font-size: 18px;
	font-weight: 700;
}

.product__title {
	width: 100%;
	width: 80%;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
}

.product__title--minutes {
	width: 100%;
	width: 20%;
	font-size: 18px;
	font-weight: 700;
	text-align: right;
	padding-right: 10px;
}

.product__text {
	width: 100%;
	flex-grow: 2;
	font-size: 18px;
	font-weight: 400;
	padding-left: 30px;
	cursor: pointer;
}

.settlement {
	height: 80vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 5px;
	/*background-color: chocolate;*/
}

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

.settlement__editor {
	width: 250px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}

.settlement__form {
	width: 250px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.settlement__editbutton {
	width: 100%;
	min-height: 30px;
	margin-left: 5px;
	margin-right: 5px;
	background-color: #80AA2C;
	color: white;
	border: 0px solid black;
	border-radius: 15px;
}

.settlement__button {
	width: 100%;
	min-height: 50px;
	background-color: #80AA2C;
	color: white;
	border: 0px solid black;
	border-radius: 15px;
}

.settlement__signature-pad {
	background-color: white;
	box-shadow: 0 0 3px rgb(0, 0, 0);
	border-radius: 10px;
	position: relative;
	width: 250px;
	height: 150px;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.message {
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	width: 97%;
	height: 67vh;
	display: flex;
	flex-direction: column;
	padding-top: 5px;
	border-radius: 15px;
	margin: 0 auto;
}

.message__box {
	position: relative;
	background-color: rgb(240, 240, 240);
	align-self: flex-start;
	max-width: 75%;
	padding: 10px;
	border-radius: 15px;
	margin-left: 15px;
	margin-bottom: 5px;
	word-wrap: break-word;
	text-align: start;
}

.message__box::after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 0;
	height: 0;
	border: 8px solid transparent;
	border-right-color: rgb(240, 240, 240);
	border-left: 0;
	border-top: 0;
	margin-top: -4px;
	margin-left: -8px;
}

.message__info {
	position: relative;
	align-self: flex-start;
	margin-bottom: 15px;
	margin-left: 20px;
	word-wrap: break-word;
	text-align: left;
	font-size: 0.7rem;
}

.asistance-telephone {
	font-size: 18px;
	color: white;
}

.telephone {
	font-size: 52px;
	color: #80AA2C;
}

.map {
	height: 30vh;
	width: 100%;
}

.workdays {
	width: 100%;
	height: 80vh;
	max-height: 80vh;
}

.workdays__link {
	width: 100%;
	height: 60px;
}

.workdays__link:last-child {
	margin-bottom: 400px;
}

.workdays__button {
	width: 97%;
	height: inherit;
	background-color: #80AA2C;
	color: white;
	border: 0px solid black;
	border-radius: 15px;
	margin-top: 5px;
	min-height: 60px;
}

.workdays__button--month {
	width: 98%;
	height: inherit;
	background-color: #80AA2C;
	color: #FFFFFF;
	border: 0px solid black;
	border-radius: 15px;
	margin-top: 5px;
	min-height: 80px;
	font-family: 'Ubuntu-Italic';
	font-size: 1.4rem;
}

.workdays__button:hover {
	background-color: #80BB2C;
}

.full {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
}

.login-image {
	width: 50%;
	max-width: 300px;
	max-height: 300px;
}

.home-image {
	width: 100%;
	max-width: 400px;
	max-height: 400px;
}

.noAddress-image {
	width: 100%;
	max-width: 500px;
	max-height: 500px;
}

.overflow-y {
    overflow-x: hidden;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-y: scroll; 
}
.overflow-y::-webkit-scrollbar {
    display: none;
}

.disabled {
	background-color: #ddd !important;
}

.display-none {
	display: none;
}

.text-left {
	text-align: left !important;
}

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

.w-8 {
	width: 8% !important;
}

.w-10 {
	width: 10% !important;
}

.w-20 {
	width: 20% !important;
}

.w-25 {
	width: 25% !important;
}

.w-30 {
	width: 30% !important;
}

.w-40 {
	width: 40% !important;
}

.w-50 {
	width: 50% !important;
}

.w-60 {
	width: 60% !important;
}

.w-90 {
	width: 90% !important;
}

.w-95 {
	width: 95% !important;
}

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

.h-10 {
	height: 10% !important;
	max-height: 10% !important;
}

.h-70 {
	height: 70% !important;
	max-height: 70% !important;
}

.h-100 {
	height: 100% !important;
	max-height: 100% !important;
}

.vh-10 {
	height: 10vh !important;
	max-height: 10vh !important;
}

.vh-20 {
	height: 20vh !important;
	max-height: 20vh !important;
}

.vh-25 {
	height: 25vh !important;
	max-height: 25vh !important;
}

.vh-30 {
	height: 30vh !important;
}

.vh-35 {
	height: 25vh !important;
}

.vh-40 {
	height: 40vh !important;
	max-height: 40vh !important;
}

.vh-50 {
	height: 50vh !important;
	max-height: 50vh !important;
}

.vh-60 {
	height: 60vh !important;
	max-height: 60vh !important;
}

.vh-70 {
	height: 70vh !important;
}

.swal2-actions {
	display: block !important;
	z-index: 1 !important;
    justify-content: center !important;
    margin: 1em 1.6em 0.3em !important;
    padding: 0 !important;
    overflow: auto !important;
    color: inherit !important;
    font-size: 1.125em !important;
    font-weight: 400 !important;
    line-height: normal !important;
    text-align: center !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
}

.swal2-title {
	font-size: 0.9em !important;
}

.waze-color {
	background-color: #33ccff !important;
}

.google-color {
	color: #ea4335 !important;
	background-color: white !important;
}

.apple-color {
	color: white !important;
	background-color: black !important;
}

.bg-darkred {
	background-color: #a72b37 !important;
}

.bg-disabled {
	background-color: #a5a5a5 !important;
}

.btn-green {
	background-color: #80BB2C;
	color: #FFFFFF;
}

.form-check-input:checked {
	background-color: #80BB2C;
	color: #FFFFFF;
}

#qr-reader__dashboard_section_swaplink {
	display: none;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 1,
  'wght' 700,
  'GRAD' 0,
  'opsz' 48
}