body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.container-fluid {
  display: flex;
  margin: 0;
  padding: 0;
  height: 100vh;
  padding-right: 0px !important;
  padding-left: 0px !important;
  overflow: hidden;
}
.menu {
  width: 250px;
  background-color: #6f975d;
  display: flex;
  height: 100vh;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.menu .logo {
  height: 30px;
  display: flex;
  justify-content: center;
}
.menuContent {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  padding-left: 30px;
}
a {
  color: white !important;
  text-decoration: none !important;
}
a:hover {
  color: white;
  font-weight: bold;
}
.item {
  width: 100%;
  min-width: 160px;
  text-align: left;
  height: 50px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid white;
}
.item.active {
  font-weight: bold;
}
.content {
  overflow: scroll;
  width: 100%;
  height: 100%;
  padding: 40px;
  background-color: #f0f0f0;
}
.logout-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  color: #6f975d;
  background: white;
  padding: 8px 30px;
  font-size: 16px;
  min-width: 64px;
  font-weight: 500;
  line-height: 1.75;
  border-radius: 50px;
  text-transform: none;
  text-decoration: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.logout-btn:hover {
  color: #6f975d;
  background-color: #f0f0f0;
}
.login {
  width: 100%;
  background-color: #fafafa;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.login img {
  display: flex;
  justify-content: center;
  width: 210px;
  margin-bottom: 30px;
}
.form-control {
  background-color: transparent;
  border: 0px;
  border-radius: 0px;
  border-bottom: 1px solid #6f975d;

  box-shadow: none;
  outline: 0 none;
}
.form-control:focus {
  border-bottom: 2px solid #6f975d;
  box-shadow: none;
  outline: 0 none;
  background-color: inherit !important;
  transition: linear 0.2s;
}
.form-control:focus::placeholder {
  padding-left: 10px;
  color: #6f975d;
}
#login-form-submit {
  background-color: #6f975d;
  border: none;
  margin-top: 30px;
  margin-left: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: ease-in-out 0.5s;
}
#login-form-submit:hover {
  background-color: #6f975d;
}
#login-error-message-div {
  padding: 10px;
  padding-top: 21px;
}

/* SPINNER */
.spinner-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 40px;
  background-color: #f0f0f0;
  justify-content: center;
  align-items: center;
}
.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6f975d;
  margin: -4px 0 0 -4px;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.delivery-info {
  height: 30px;
  overflow: hidden;
}
.delivery-height {
  height: auto;
  overflow: auto;
}
.delivery {
  column-span: 3;
  width: 420px;
  padding-left: 30px;
}
.delivery::before {
  content: "+";
}
.delivery:hover {
  background-color: wheat;
  cursor: pointer;
}
.bg-row-done {
  background-color: darkgrey;
}
.bg-row-kit-pending {
  background-color: darkkhaki;
}
.bg-row-payment-done {
  background-color: darksalmon;
}
/* ORDERS */
.ordersMenu {
  width:100%;
  display:flex; 
  justify-content: space-around
}
.ordersBtns {
  padding: 0 10px !important;
}
.ordersContent {
  padding-top: 15px; 
}
#semanas,
#platos,
#envios,
#platosActivos,
#transacciones {
  width: 100%;

}
#semanas h2,
#platos h2,
#platosActivos h2,
#envios h2,
#transacciones h2 { 
  width: 100%;
  display: flex;
  justify-content: space-between;
  white-space: nowrap;
}
#semanas .btn-container,
#platos .btn-container,
#platosActivos .btn-container, 
#envios .btn-container, 
#transacciones .btn-container {
  width: 100%;
  display: flex;
  justify-content:flex-end;
}
#semanas .btn-container button,
#platos .btn-container button,
#platosActivos .btn-container button, 
#envios .btn-container button, 
#transacciones .btn-container button {
  margin:0px 10px;
  padding: 5px 15px !important;
  font-size: 18px;
} 
td {
  vertical-align: middle;
}
td a {
  color: #6f975d !important;
}
  
.modifyMealBtn:hover {
  font-weight: normal;
  cursor: pointer;
}
.semanaActivaDiv {
  background-color: lightblue !important;
  height: 70px;
  font-weight: bold;
  font-size: 1.2em;
}
.toHide {
  display:none !important;
}
.toShow {
  display: inline !important;
}
#ordenes,
#ordenesCocina,
#envios {
  width: 100%;
}
.ordersContent,
.kitchenOrdersContent {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  width: 100%;
  padding:40px 0px;
}
.orderDiv {
  display: flex;
  flex-direction: column;
  background-color:white;
  border-radius: 12px;
  padding: 15px;
  border: 1px solid gray;
}
.orderDiv .order-info{
  display: flex;
  width: 100%;
  
}
.orderDiv .order-info .order-info-text{
  display: flex;
  flex-direction: column;
  width: 60%;
  /* para vertical */
  /* padding: 10px; */
  border-right:1px solid gray ;
}
.orderDiv .order-info .order-info-mealsWeeks-state{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 40%;
}
.orderDiv .order-info .order-info-mealsWeeks-state
.order-info-mealsWeeks{
  display: flex;
  justify-content: center;
  width: 100%;
}
.orderDiv .order-info .order-info-mealsWeeks-state
.order-info-mealsWeeks .order-info-meals, 
.orderDiv .order-info .order-info-mealsWeeks-state
.order-info-mealsWeeks .order-info-weeks{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 100%;
  
}
.order-info-meals {
  border-right:1px solid gray;
}

.orderDiv .order-info .order-info-mealsWeeks-state 
.order-info-state {
  display: flex;
  width: 100%;
  height: 100%;
  /* para vertical */
  /* flex-direction: column; */
  justify-content: center;
  align-items: center;
  border-top: 1px solid gray;
}
.orderDiv .order-orderDays {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-top: 1px solid gray;
}
.orderDiv .order-orderDays .order-orderDays-h2 {
  display: flex;
  justify-content: center;
  font-weight: bold;
  width: 100%;
  background-color: skyblue;
  
}
.orderDiv .order-orderDays .order-orderDays-line {
  display: flex;
  border-bottom: 1px solid gray;
  padding: 5px 0px;
}
.orderDiv .order-orderDays .order-orderDays-line .order-orderDay-date-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-right: 20px;  
}
.orderDiv .order-orderDays .order-orderDays-line .order-orderDay-date-text div{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius:12px;
  background-color:skyblue;
  padding: 10px;
}
.orderDiv .order-orderDays .order-orderDays-line .order-orderDay-date-text div b {
  font-size: 1.1em;
}
.orderDiv .order-orderDays .order-orderDays-line .order-orderDay-dates {
  display: flex;
  flex-direction: column;
}
.orderDiv .order-orderDays .order-orderDays-line .order-orderDay-dates .order-meal-line {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 2px 0px;
}

.orderDiv .order-orderDays .order-orderDays-line .order-orderDay-dates .order-meal-line .order-mealId {
  display: flex;
  padding: 5px 10px;
  width: 50px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.orderDiv .order-orderDays .order-orderDays-line .order-orderDay-dates .order-meal-line .order-mealQuantity {
  display: flex;
  padding: 5px 10px;
  width: 100px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.orderDiv .order-orderDays .order-orderDays-line .order-orderDay-dates .order-meal-line .order-mealImg {
  /* display: flex; */
  display:none;
  justify-content: center;
  align-items: center;

}
.orderDiv .order-orderDays .order-orderDays-line .order-orderDay-dates .order-meal-line .order-mealImg img {
  width: 40px;
  height: 40px;
}
.orderDiv .order-orderDays .order-orderDays-line .order-orderDay-dates .order-meal-line .order-mealTitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 0.9em;
  text-align: center;
  padding-left: 10px;
}
.orderDiv .order-comments {
  
  display: flex;
  /* flex-direction: column; */
  justify-content: flex-start;
  padding-top: 15px;
  /* align-items: center; */
  /* text-align: center; */
  /* height: 50px; */
  
  font-size: 1em;
}
.kitchenOrdersContent {
  display: flex;
  flex-direction: column;
  width: 100%;
}
#ordenesCocina .kitchenOrdersContent .orderDays {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.kitchenOrdersContent .orderDays .orderDayTitle {
  width: 100%;
  background-color: skyblue;
  padding: 15px 10px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.kitchenOrdersContent .orderDays .orderDayTitle 
.changeStateOrderDayBtn button{
  padding: 10px 20px;
}
.orderDayMeals {
  padding: 15px 15px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  
}
.orderDayMeals .order-meal-line {
  background-color: white;
  border-radius: 30px;
  padding: 40px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 5px;
}
.orderDayMeals .order-meal-line .order-mealTitle {
  
  font-size: 1.1em;
  text-align: center;
  padding-top: 10px;
}
.orderDayMeals .order-meal-line .idQPhoto {
  display: flex;
  width: 100%;
}

.orderDayMeals .order-meal-line .idQPhoto 
.order-mealImg {
  width: 60%;
  
}
.orderDayMeals .order-meal-line .idQPhoto .idQ {
  width: 40%;
  
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px 5px;
  font-size: 1.3em;
  font-weight: bold;
}
.orderDayMeals .order-meal-line .idQ div {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.orderDayMeals .order-meal-line 
.order-mealImg img {
  width: 100%;
}
.meal-line {
  display: flex;
  padding: 10px 0px;
  font-size: 0.9em;
}
.meal-line div {
  display: flex;
  align-items: flex-start;
  
  /*padding:0px 10px;*/
}
.meal-line div img{
  width: 50px;
  height: 50px;
}
.meal-line div:last-child {
  
  flex-direction: column;
  justify-content: center;
}
.meal-line div:last-child div{
  width: 100%;
}
.shipping-comments {
  border-top:1px solid gray;
  font-size: 10px;
}
.shippingOrdersContent {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /* Para vertical comentar esta de abajo*/
  flex-direction: column;
}
.shippingOrdersContent .orderDiv {
  /* Para vertical */
  /* max-width: 330px; */
  width: 100%;
  margin: 8px 8px;
}
.shippingOrdersContent .order-info-meals,
.shippingOrdersContent .order-info-weeks{
  font-size: 11px;
}
.shippingOrdersContent .order-info-meals b {
  font-size: 13px;
}
.shippingOrdersContent .order-info-weeks b {
  font-size: 13px;
}
.ticket {
  width: 155px;
  max-width: 155px;
  font-size: 10px;
}
.printTable {
  border-collapse: collapse;
  border-spacing: 0;
  width: 155px;
  word-wrap:normal;
}
.printTable tbody tr {
  line-height: 15px;
  width: 100%;
  font-size: 12px;
}
.printTable tbody tr b{
  width: 100%;
  word-wrap:normal;
}
.printTable tbody .mealTableLine 
.img-td {
  width: 50px;
}
.printTable tbody .mealTableLine 
.img-td img{
  width: 90%;
}
.printTable tbody .mealTableLine 
.text-td {
  max-width: 105px;
  width: 105px;
  font-size: 10px;
  line-height: 14px;
}
#modal .modal-dialog 
.modal-content .modal-body .line input {
  width: 100%;
}
#modal .modal-dialog 
.modal-content .modal-body 
.post-meal--macros-line {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#modal .modal-dialog 
.modal-content .modal-body 
.post-meal--macros-line 
div input  {
  width: 50px;
}