@import url('https://fonts.googleapis.com/css?family=Cambo&display=swap');

body {
  color: #000;
  background-color: #f4f5f7;
  font-size: 1.5em
}

.navbar { 
	width: 100% 
}
.navbar .navbar-brand img {
  width: 100%;
  max-width: 240px
}

.connect {
  width: 95%;
  max-width: 320px;
  margin: 25% auto 0;
}
.connect > img {
  margin: 0 auto 30px;
}
.connect > input[type="text"] {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom: 0px;
}
.connect > input[type="password"] {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  margin-bottom: 25px;
}

.modal.show { display: block; padding-right: 17px; }

.room-box {
  border-radius: 4px;
  padding: 5px 10px;
  background-color: #e9ecef;
  text-align: center;
  margin: 0 0 15px;
  display: flex;
  justify-content: space-between
}
.room-box button {
  background-color: #e87373;
  padding: 0 10px;
  margin: -5px -10px;
  color: #fff;
  border: 0;
  border-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-left: 1px solid #fff;
  font-size: .9em;
  font-weight: bold;
}

.box {
  display: block;
  border-radius: 4px;
  border: 1px solid #e0e3e7;
  background-color: #fff;
  padding: 20px;
  font-size: 15px;
}
.box.noPadding {
  padding: 0
}
.box.noPadding .table {
  margin: 0
}

.box > h2 {
	font-size: 1.8em;
	font-weight: bold;
	padding-bottom: 20px;
	margin-bottom: 10px;
}
.box > h3 {
	font-size: 1.2em;
	font-weight: bold;
	margin-bottom: 20px;
}
.box > hr {
	margin: 20px 0 30px
}
a.box:hover {
  text-decoration: none
}

.box .table tr {
  transition: .2s background-color ease
}
.box .table tbody tr:hover {
  background-color: #f8f8f8
}
.box .table td {
  vertical-align: middle;
}

.box.icon-wrapper {
  font-weight: bold;
  text-align: center;
  color: #667a9c
}
.box.icon-wrapper > svg {
  width: 50%;
  min-height: 250px;
  transition: .2s opacity ease;
  opacity: .7;
}
.box.icon-wrapper:hover svg {
  opacity: 1
}

.table thead th {
  border-top: 0
}

.table-box {
  display: block;
  border-radius: 3px;
  padding: 30px 10px;
  color: #fff;
  margin-bottom: 15px;
  opacity: .9;
  text-align: center;
  font-weight: bold;
  font-size: 2em;
}
.table-box:hover {
  text-decoration: none;
  opacity: 1;
  color: #fff
}
.table-box.open {
  background-color: #6ecc71;
}
.table-box.pending {
  background-color: #ffba3b
}
.table-box.occupied {
  background-color: #e74c3c;
  background-image: repeating-linear-gradient(
  45deg,
    #e74c3c,
    #e74c3c 10px,
    #c1382a 10px,
    #c1382a 20px
  );
}
.table-box.occupied.pending {
  background-color: #ffba3b;
  background-image: repeating-linear-gradient(
  45deg,
    #ffba3b,
    #ffba3b 10px,
    #e4a635 10px,
    #e4a635 20px
  );
}

.table-box small {
  opacity: .9;
  display: block;
  font-size: .7em
}

.bill {
  padding: 30px;
  font-family: Cambo, sans-serif;
}
.bill .btn {
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"
}
.bill table td {
  padding: .65rem
}
.bill table tbody td small {
  display: block;
  font-size: 0.7em
}
.bill table tbody tr.group td {
  padding-top: 30px;
  border: 0
}
.bill table tbody tr td.outline { 
  border-bottom: 2px solid #000
}
.bill table tfoot tr td.outline { 
  border-top: 2px solid #000
}

@media print {
  
  body {
    background-color: #fff;
  }

  .btn {
    display: none !important
  }

  .table {
    color: #000 !important;  
  }

  .bill .row.heading h2,
  .bill .row.heading h4 {
    font-size: 1em;
  }
  .bill .row {
    font-size: 1.5em;
  }
  .bill table {
    font-size: 1.5em;
  }
  
}

/* REACT AUTOSUGGEST STYLES */
.react-autosuggest__container {
  position: relative;
}

.react-autosuggest__input {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 0;
}

.react-autosuggest__input--focused {
  outline: none;
}

.react-autosuggest__input--open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.react-autosuggest__suggestions-container {
  display: none;
}

.react-autosuggest__suggestions-container--open {
  display: block;
  position: absolute;
  top: 50px;
  width: 100%;
  border: 1px solid #ced4da;
  background-color: #fff;
  font-size: 20px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  z-index: 2;
}

.react-autosuggest__suggestions-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.react-autosuggest__suggestion {
  cursor: pointer;
  padding: 10px 20px;
}

.react-autosuggest__suggestion i {
  color: #aaa
}
.react-autosuggest__suggestion b {
  font-weight: bolder !important
}

.react-autosuggest__suggestion--highlighted {
  background-color: #f5f5f5;
}

.datepicker {
  margin-bottom: 20px;
}
.datepicker .selector {
  border-radius: 4px;
  background-color: #8e9fbd;
  border: 0;
  color: #fff;
  text-align: center;
  cursor: pointer;
  font-weight: bold;
  outline: none;
}