:root {
/* Colors: */
--color-blue: #152251;
--color-blue-light:#566AAF;
--color-white: #FFFFFF;
--color-yellow: #F8B766;
--color-gray: #A3A3A3;
--color-gray-light: #E2E2E2;
--color-orange: #FF5800;
--color-green: #00A500;
--color-yellow-light: #fbe9d2;
--color-red: #E30500;

/* Font/text values */
--font-family: Montserrat;
--font-style: Regular;


/* Shape */
--border-radius:8px;
--border-radius-big:14px;

}

html, body
{
	font-family:var(--font-family);
	font-style:var(--font-style);
	color:var(--color-blue);
	font-size: 0.95rem;
}

body.login
{
	background-image:url('../images/foodmagic-login-background.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	height: 100%;
	max-width: 100%;
	overflow-y: auto !important;
	background-attachment: fixed;
}

body.texture
{
	background-image:url('../images/foodmagic-pattern-texture.png');
	background-repeat: repeat;
	overflow-y: auto !important;
}

.login-input, .login-input:focus
{
	background: transparent;
	border-radius: var(--border-radius);	
	padding:1.5rem;
	color:white;
}

.btn-primary, .btn-primary:hover, .btn-primary:active, .btn-primary:visited  {
    background-color: var(--color-yellow) !important;
    border-color: var(--color-yellow) !important;
    padding-left: 4rem;
    padding-right: 4rem;
    padding-top:0.5rem;
    padding-bottom:0.5rem;
    font-weight: bold;
}

.btn-primary:focus  {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(248, 183, 102, 0.6);
}

textarea:focus,
input.login-input[type="text"]:focus,
input.login-input[type="password"]:focus,
input.login-input[type="datetime"]:focus,
input.login-input[type="datetime-local"]:focus,
input.login-input[type="date"]:focus,
input.login-input[type="month"]:focus,
input.login-input[type="time"]:focus,
input.login-input[type="week"]:focus,
input.login-input[type="number"]:focus,
input.login-input[type="email"]:focus,
input.login-input[type="url"]:focus,
input.login-input[type="search"]:focus,
input.login-input[type="tel"]:focus,
input.login-input[type="color"]:focus,
.uneditable-input:focus {   
  border-color: rgba(248, 183, 102, 0.8);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(248, 183, 102, 0.6);
  outline: 0 none;
}

.home-btn-icon
{
	background-color: var(--color-yellow);
	padding:2rem;
	padding-top:3rem;
	padding-bottom:3rem;
	border-radius: var(--border-radius-big);
	color:var(--color-blue);
	text-align: center;
}

a:hover
{
	text-decoration: none !important;
}

.bg-blue-foodmagic
{
	background-color:var(--color-blue);
}

.bg-yellow
{
	background-color:var(--color-yellow);
}

.bg-blue
{
	background-color:var(--color-blue);
}

.bg-green
{
	background-color:var(--color-green) !important;	
}

.text-green
{
	color:var(--color-green);	
}

.text-gray
{
	color:var(--color-gray);	
}

.home-btn-icon-small
{
	width: 8em;
	background-color: var(--color-yellow);
	padding:1.5rem;
	border-radius: var(--border-radius-big);
	color:white;
	text-align: center;
}

.mobile-menu
{
	background-color:white;
}

.home-btn-icon-small-blue
{
	width: 12em;
	height: 12em;
	background-color: var(--color-blue);
	padding:1.5rem;
	border-radius: var(--border-radius-big);
	color:white;
	text-align: center;
}

.intro-page-booking
{
	background-image:url('../images/booking-bck-intro.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: var(--border-radius-big);
	text-align: center;
	padding:6rem;
	height: 335px;
	display: flex;
    flex-direction: column;
}

.right-page-intro-block
{
	background-color: #f0f0f0;
	padding:6rem;	
	border-radius: var(--border-radius-big);
	height: 335px;
	display: flex;
    flex-direction: column;
}

.h-80
{
	height: 80%;
}

/*.nav-item.active
{
	background-color: var(--color-yellow);
	border-radius: var(--border-radius);
}*/

.nav-item
{
	border-bottom:1px dashed var(--color-blue);
	text-align: right;
	color:var(--color-blue);
}

.day-select
{
	border-top-left-radius: var(--border-radius-big);
	border-top-right-radius: var(--border-radius-big);
	border-bottom-left-radius: var(--border-radius);
	border-bottom-right-radius: var(--border-radius);
	background-color: white;
	text-align: center;
	color:var(--color-blue);
}

.title-menu
{
	border-top-left-radius: var(--border-radius-big);
	border-top-right-radius: var(--border-radius-big);
}

.day-name
{
	border-top-left-radius: var(--border-radius-big);
	border-top-right-radius: var(--border-radius-big);
	text-transform: uppercase;
	padding:0.25rem;
	margin-bottom:0.5rem;
}

.go-to-booking
{
	border-top-left-radius: var(--border-radius);
	border-top-right-radius: var(--border-radius);
	background-color: var(--color-blue-light);
	padding-top:1rem;
	padding-bottom:1rem;
}

.go-to-booking:hover
{
	border-top-left-radius: var(--border-radius);
	border-top-right-radius: var(--border-radius);
	background-color: var(--color-yellow);
	padding-top:1rem;
	padding-bottom:1rem;
}

.text-blue
{
	color:var(--color-blue);
}

.text-orange
{
	color:var(--color-yellow);
}

.bg-gray
{
	background: var(--color-gray);
}

.bg-white 
{
	background: white;
}

.bt-0
{
	border-top:none !important;
}

.table td, .table th {
    padding: .75rem;
    vertical-align: top;
    border-top: 1px dashed var(--color-yellow);
}

.all-radius-border
{
	border-radius: var(--border-radius-big);
}

.sub-radius-border
{
	border-radius: 0px 0px 20px 20px;
}

.left-radius-border {
    border-radius: 20px 0px 0px 20px;
}

a:link,
a:visited,
a:hover,
a:active
{
	color: var(--color-blue);
}

a.nav-link
{
	color:var(--color-blue);
}


.booked-refectory
{
	padding-top:0.75rem;
	padding-bottom:0.75rem;
}

.blt-default
{
	border-top-left-radius: var(--border-radius-big);
}

.brt-default
{
	border-top-right-radius: var(--border-radius-big);
}

.container-menu
{
	
}

.b-yellow
{
	border: 3px solid var(--color-yellow);
}

.b-green
{
	border: 3px solid var(--color-green);
}
.b-gray
{
	border: 3px solid var(--color-gray);
}


.cont-course
{
	background-color: var(--color-yellow-light);
	/*border-top-left-radius: var(--border-radius-big);
	border-bottom-left-radius: var(--border-radius-big);*/
}

.dashed-hr
{
	border-bottom: 2px dashed var(--color-yellow);
}

.custom-control-label::before
{
    width: 1.5rem;
    height: 1.5rem;
    background-color: #fff;
    border: var(--color-yellow) solid 2px;
    border-radius: 8px !important;
    top:0px;
}

.custom-control-label
{
	top:0.25rem;
	padding-left:0.5rem;
}

.custom-control-label::after
{
    width: 1.5rem;
    height: 1.5rem;
    top:0px;
}

input[type="checkbox"]
{
    vertical-align: middle;
}

.custom-control-input 
{
    width: 1.5rem;
    height: 1.5rem;
}

.custom-control-input:checked ~ .custom-control-label::before 
{
    color: #fff;
    border-color: var(--color-yellow);
    background-color: var(--color-yellow);
    border-radius: 8px !important;
}

.custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before 
{
  	box-shadow: 0 0 0 0.2rem rgba(248, 183, 102, 0.25);
  	border-color: var(--color-yellow);
  	border-radius: 8px !important;
}

.icoallergen
{
	height: 20px;
	margin-left:0.5rem;
}

.bg-yellow-light
{
	background-color: var(--color-yellow-light);
}

.phone-totem
{
	border:7px solid var(--color-yellow);
	border-radius: 40px;
    font-size: 1.6rem;
}

.phone-totem-menuweek
{
    border:7px solid var(--color-yellow);
    border-radius: 40px;
    font-size: 1.2rem;
}

.menu-totem
{
	border:7px solid var(--color-blue);
	border-radius: 40px;	
}

.top-phone
{
	border-left:7px solid var(--color-yellow);
	border-right:7px solid var(--color-yellow);
	border-bottom:7px solid var(--color-yellow);
	border-bottom-left-radius: var(--border-radius-big);
	border-bottom-right-radius: var(--border-radius-big);
	padding:0.75rem;
	width:200px;
}

.top-menu
{
	border-left:7px solid var(--color-blue);
	border-right:7px solid var(--color-blue);
	border-bottom:7px solid var(--color-blue);
	border-bottom-left-radius: var(--border-radius-big);
	border-bottom-right-radius: var(--border-radius-big);
	padding:0.75rem;
	width:400px;	
}

.table-noborder td, .table-noborder th {
    padding: .75rem;
    vertical-align: top;
    border-top: 0px !important;
}

.digit
{
	text-align: center;
	cursor:pointer;
}

.digit > span
{
	background-color: var(--color-blue);
	text-align: center;
	/*padding-top:2rem;
	padding-bottom:2rem;*/
	color: white;
	font-size: 30px;
	width: 80px;
	height: 80px;
	display: grid;
  	align-items: center;
  	border-radius: 20px;
  	font-weight: bold;
}

.pin-login > span
{
	background: #98D91C;
}

.num-cancel > span
{
	font-size: 23px;
}

.hidden
{
	display:none;
}

.btn-consum
{
	cursor:pointer;
}

.add-dish-to-service
{
	padding:1rem;
	background: var(--color-blue);
	color:white;
	border-radius: var(--border-radius-big);
	/*margin-bottom:0.5rem;*/
}

.count-dish-to-service
{
    padding:0.6rem;
    color: var(--color-orange);
    border-radius: var(--border-radius-big);
    /*margin-bottom:0.5rem;*/
    font-size: large;
    width: 2rem;
    text-align: center;
}

.remove-dish-to-service
{
	padding:1rem;
	background: var(--color-yellow);
	color:white;
	border-radius: var(--border-radius-big);
	/*margin-bottom:0.5rem;*/
}

.container-qrcode
{
	width: 270px;
	padding:2rem;
	background-color:white;
	margin:0 auto;
	border-radius: var(--border-radius-big);
}

.login-pin-input, .login-pin-input:focus
{
	background: transparent;
	border-radius: var(--border-radius);	
	padding:1.5rem;
	color:black;
}

.go-to-booked
{
	border-top-left-radius: var(--border-radius);
	border-top-right-radius: var(--border-radius);
	background-color: var(--color-gray);
	padding-top:1rem;
	padding-bottom:1rem;
}

.go-to-booked:hover
{
	border-top-left-radius: var(--border-radius);
	border-top-right-radius: var(--border-radius);
	background-color: var(--color-yellow);
	padding-top:1rem;
	padding-bottom:1rem;
}
.occupancy-ico
{
	height: 2.5rem;
}
.row-occupancy
{
	color:var(--color-blue);
	font-weight: 500;
	font-size: 1.3rem;
}
.gauge-dim
{
	height: 2.5rem;
	width: 100%;
}
.gauge-label
{
	width: 100%;
}
.no-booked
{
	border-color: var(--color-orange);
}
.first-user
{
	border-color: var(--color-green);	
}
.queue-pos
{
	height: 2rem;
	font-weight: 500;
	font-size: 1.5rem;
}
.display_description
{
	background-color: var(--color-blue);
}
.ref-name-addr
{
	font-size: 1.1rem;
	text-align: left;
	width: 30%;
}
.ref-line-type
{
	font-size: 1.1rem;
	text-align: right;
	width: 30%;
}
.booked-green
{
	background-color: var(--color-green);
    border-radius: 10px 0px 0px 10px;
    margin-top: 0.6rem;
    margin-bottom: 0.7rem;
    min-width: 3rem;
	font-size: 1.6rem;
	font-weight: 500;
	text-align: right;
	color: white;
	min-height: 2.5rem;
	padding-right: 0.5rem;
	padding-top: 0.1rem;
}
.booked-slash
{
	margin-top: 0.6rem;
	margin-bottom: 0.7rem;
	min-width: 1rem;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 500;
	color: var(--color-blue);
	min-height: 2.5rem;
}
.booked-yellow
{
	background-color: var(--color-yellow);
    border-radius: 0px 10px 10px 0px;
    margin-top: 0.6rem;
    margin-bottom: 0.7rem;
    min-width: 3rem;
    font-size: 1.6rem;
	font-weight: 500;
	text-align: left;
	color: var(--color-blue);
	min-height: 2.5rem;
	padding-left: 0.5rem;
	padding-top: 0.1rem;
}
.booked-text
{
	margin-top: 0.7rem;
	margin-bottom: 0.7rem;
	margin-left: 0.2rem;
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--color-blue);
	min-height: 2.5rem;
}
.all-queued
{
	margin-top: 0.6rem;
	border-radius: 10px 10px 10px 10px;
	color: white;
	background-color: var(--color-blue);
	font-size: 1.4rem;
	font-weight: 500;
	min-width: 3rem;
	text-align: center;
	padding-right: 0.3rem;
	padding-left: 0.3rem;
	padding-top: 0.2rem;
	min-height: 2.5rem;
}
.all-queued-text
{
	margin-top: 0.6rem;
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--color-blue);
	text-align: center;
	padding-left: 0.3rem;
	min-height: 2.5rem;
}
.extra-dish
{
	margin-top: 0.6rem;
	border-radius: 10px 10px 10px 10px;
	color: white;
	background-color: var(--color-orange);
	font-size: 1.4rem;
	font-weight: 500;
	min-width: 3rem;
	text-align: center;
	padding-right: 0.3rem;
	padding-left: 0.3rem;
	padding-top: 0.2rem;
	min-height: 2.5rem;
}
.extra-dish-text
{
	margin-top: 0.6rem;
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--color-blue);
	text-align: center;
	padding-right: 0.3rem;
	padding-left: 0.3rem;
	min-height: 2.5rem;
}
.remaining-dish
{
	background-color: var(--color-yellow);
    border-radius: 10px 10px 10px 10px;
    margin-top: 0.6rem;
    margin-bottom: 0.6rem;
    /*margin-left: 0.4rem;*/
    min-width: 3rem;
    font-size: 1.6rem;
	font-weight: 500;
	text-align: left;
	color: var(--color-blue);
	min-height: 2.6rem;
	text-align: center;
}
.display-dish-type
{
	margin-top: 0.5rem;
	padding-left: 0.1rem;
	/*margin-left: 0.1rem;*/
	font-size: 1rem;
	font-weight: 500;
	color: var(--color-blue);
	/*min-height: 2.5rem;*/
}
.display-dish-name
{
	/*margin-left: 0.1rem;*/
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-blue);
	padding-left: 0.1rem;
	/*min-height: 2.5rem;*/
}
.row-dish
{
	/*min-height: 2.2rem;*/
	margin-bottom: 5px;
}
.remaining
{
	border-radius: 10px 10px 10px 10px;
	border-color: var(--color-orange);
	color: var(--color-orange);
	font-size: 1.4rem;
	font-weight: 700;
	border-style: solid;
	border-width: 3px;
	/*padding-left: 0px;
	padding-right: 0px;*/
    padding-bottom: .25rem;
    padding-top: .25rem;
    width: 2.8rem;
    text-align: center;
}
.img-person-display
{
	max-height: 12rem;
}
.alternate-row
{
	background-color: #fbd3a166;
}
.display-dish-type
{
	max-height: 1.3rem;
}
.dashed-hr-orange
{
	border-style: dashed;
	border-top: 2px dashed var(--color-orange);
}
.remaining-plus
{
	background-color: var(--color-green);
    border-radius: 10px 10px 10px 10px;
    margin-top: 0.6rem;
    margin-bottom: 0.6rem;
    /*margin-left: 0.4rem;*/
    min-width: 3rem;
    font-size: 1.8rem;
	font-weight: 500;
	text-align: left;
	color: white;
	min-height: 2.6rem;
	text-align: center;
}
.remaining-minus
{
	background-color: var(--color-blue);
    border-radius: 10px 10px 10px 10px;
    margin-top: 0.6rem;
    margin-bottom: 0.6rem;
    /*margin-left: 0.4rem;*/
    min-width: 3rem;
    font-size: 1.8rem;
	font-weight: 500;
	text-align: left;
	color: white;
	min-height: 2.6rem;
	text-align: center;
}
.modal-conten-display
{
	border: 7px solid var(--color-orange);
	border-radius: 40px;
}
.close-extra-modal,.close-extra-modal:hover
{
	background-color: var(--color-blue);
    border-radius: 10px 10px 10px 10px;
	font-size: 1.5rem;
	font-weight: 500;
	color: white;
}
.save-extra-selections,.save-extra-selections:hover
{
	background-color: var(--color-green);
    border-radius: 10px 10px 10px 10px;
	font-size: 1.5rem;
	font-weight: 500;
	color: white;
}
.selected-extra-dish
{
	background-color: var(--color-green);
	font-weight: 500;
	color: white;
	font-size: 1.6rem;
	padding-left: .5rem;
	padding-right: .5rem;
	border-radius: var(--border-radius);
	font-weight: 500;
	width: 2.3rem;
}
.number-dish
{
	width: 2rem;
}
.btn-danger, .btn-danger:hover, .btn-danger:active, .btn-danger:visited  {
    background-color: var(--color-orange) !important;
    border-color: var(--color-orange) !important;
    padding-left: 4rem;
    padding-right: 4rem;
    padding-top:0.5rem;
    padding-bottom:0.5rem;
    font-weight: bold;
}
.burger-fm
{
	color: var(--color-yellow);
	font-size: 2.5rem;
}

.br-yellow
{
	border-right: 1px solid var(--color-yellow);
}

.pay-attention
{
	font-size: 1rem;
    font-weight: 700;
    color: var(--color-orange);
    margin-right: 4%;
}

.kopsw
{
	color: var(--color-orange);
}

.okpsw
{
	color: var(--color-green);
}

.served-no-prenotation, .served
{
	height: 4rem !important;
	font-size: 2rem;
	background-color: var(--color-green) !important;
	border-color: var(--color-green) !important;
}

.user-serve
{
	font-size: 2rem;
	font-weight: 700;
}


.checkout-person{
	border: 7px solid var(--color-yellow);
    border-radius: 20px;
    cursor: pointer;
}

.toast
{
	width: 800px;
}

.bg-red
{
	background-color:var(--color-red);	
}

.realodpage
{
    max-height: 80%;
    font-size: 0.8rem;
    /*max-width: 80%;*/
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 0.3rem;
    color: var(--color-blue);
}

.realodpage:hover
{
    max-height: 80%;
    font-size: 0.8rem;
    /*max-width: 80%;*/
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 0.3rem;
    color: var(--color-blue);
}

.dish-qnt-font
{
    font-size: large;
    font-weight: bold;
}

.fixed {
    position: sticky;
    top: 0;
    left: 0;  
    /*background-color: #00A500;*/
    background-color: var(--color-yellow);
    z-index:100;
    border-radius: 20px;
    margin: 0px;
}

.reservation-green{
    background-color: #00A500 !important;
}