@import url(https://fonts.googleapis.com/css?family=Libre+Baskerville:400,700,400italic);
@import url(https://fonts.googleapis.com/css?family=Arapey);
@import url(https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800);

:root {
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0b5ed7;
  --bs-btn-hover-border-color: #0a58ca;
  --bs-btn-focus-shadow-rgb: 49,132,253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0a58ca;
  --bs-btn-active-border-color: #0a53be;
}

html {
   box-sizing: border-box;
}

*, 
*::before, 
*::after {
   box-sizing: inherit;
   margin: 0;
   padding: 0;
}

body {
  font-family: tahoma;
  color: black;
  background-color: #ffffff;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

section#displayMessage {
  margin-top: 200px;
}

.displayMessage {
  width: 50%;
  position: fixed;
  top: 50%;
  left: 50%;
  font-size: 40px;
  font-weight: 900;
  transform: translate(-50%, -50%);
  padding: 10px;
  border: 1px solid #31240e;
  border-radius: 10px;
  text-align: center;
}

body a {
  text-decoration: none;
  display: inline-block;
  margin: 0;
  padding: 0;
}

body input {
  background-color: #f9f9f9;
}

body.overflowHidden {
  overflow: hidden;
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wrapper {
    margin: 100px 20px 10px 20px;
}

.flex {
  display: flex;
}

.hide {
  display:none;
}

.titolo-pagina {
  color: inherit;
  font-size: 100px;
  font-weight: bold;
}

#clock-header{
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgb(150, 147, 147);
}

#oggi {
  text-align: left;
  font-size: 30px;
  font-style: italic;
  font-weight: bold;
  margin-left: 60px;
  flex-grow: 1;
}

#title {
  text-align: center;
  font-size: 35px;
  font-style: italic;
  font-weight: bold;
  flex-grow: 4;
}

#clock {
  flex-grow: 1;
  text-align: right;
  font-size: 30px;
  font-style: italic;
  font-weight: bold;
  margin-right: 60px
}

.max-width {
  max-width: 400px;
}

.form-label {
  margin-bottom: .5rem;
}

label {
  display: inline-block;
}

.max-height {
  height: 100px;
}

.btn-open {
  position: absolute;
  bottom: 150px;
}

.btn-close {
  padding: 0.5rem 0.7rem;
  background: #eee;
  border-radius: 50%;
}

.btn {
  font-size: 18px;
  color: aliceblue;
  padding: 8px 16px;
  background-color: #4983cf;
  border: 0;
  cursor: pointer;
  border-radius: 5px;
  /* display: inline-flex;
  align-items: center;
  justify-content: center; */
}

.btn > i {
  font-size: 18px;
}

.btn-success {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}

.btn-primary {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.buttonSubmit {
  margin: 20px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.buttonSubmit #salva-nuovo-ordine {
  margin-bottom: 10px;
}

.width100 {
  width: 100%;
}

.center-text {
  text-align: center;
}

.end-text {
  text-align: right;
}

.font-size-0 {
  font-size: 0px;
}

.bb-1-s-w {
  border-bottom: 1px solid white;
}

.mb5 {
  margin-bottom: 5px;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-none {
  cursor: none;
}

.cursor-default {
  cursor: default;
}

.disabled {
  opacity: 0.5;
  cursor: default;
}

.enabled {
  opacity: 1;
  cursor: pointer;
}

@media (max-width: 575.98px) {
  .consegne {
    width: 95%;
  }
  
  #oggi,
  #clock {
    font-size: 25px;
    margin: 0px 15px 0px 10px;
  }

}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) { 
  
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {

}


/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 

}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {

}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

}