:root {
  --primaryColor: #EB672C;
  --textColor: #333333;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.float-right {
  float: right;
}
.d-flex {
  display: flex!important;
}
.flex-fill {
  flex: 1 1 auto!important;
}
.text-right {
  text-align: right;
}

.lh-1 {
  line-height: 1;
}

.mb-1 {
  margin-bottom:5px;
}
.mb-2 {
  margin-bottom:10px;
}
.mb-3 {
  margin-bottom:15px;
}

.mr-1 {
  margin-right:5px;
}
.mr-2 {
  margin-right:10px;
}
.mr-3 {
  margin-right:15px;
}

.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 15px;
  margin-top:-15px;
}

.table th {
  vertical-align: bottom;
  background-color: white;
  color: #555;
}

.table td, .table th {
  text-align:left;
  padding: .75rem;
  border-top:none !important;
  vertical-align: middle;
}

.table td {
  background-color: rgb(244 242 236);
}

.btn {
  text-transform: uppercase;
  font-size: .7rem;
  padding: .6rem 1.5rem;
  line-height: 1;
}
.text-link {
  color: var(--primaryColor);
  cursor:pointer;
}

small {
  font-size: .75em;
}

.form-check-input:checked {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
}

.btn-book {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
  color: white;
  border-width: 2px;
}
.btn-book:hover {
  background-color: transparent;
  border-color: var(--primaryColor);
  color: var(--primaryColor);
}

.no-wrap {
  white-space: nowrap;
}

.pointer {
  cursor:pointer;
}

.rounded-left {
  border-top-left-radius: 15px !important;
  border-bottom-left-radius: 15px !important;
}
.rounded-right {
  border-top-right-radius: 15px !important;
  border-bottom-right-radius: 15px !important;
}

.badge-pill {
  border-radius: 10rem;
  color: white;
  border: 2px solid var(--primaryColor);
  background-color:var(--primaryColor);
}
.badge-pill.active,.badge-pill:hover {
  color: black;
  border-color: black;
  background-color: white;
}

.badge {
  font-size: 90%;
  padding: .5em 1em;
}

.custom-control-input:checked~.custom-control-label::before {
  color: #fff;
  border-color: black;
  background-color: black;
}


.WidgetRow {
  background-color: rgb(244 242 236);
  border-radius: 15px !important;
}