:root {
  --primaryColor: #9B1063;
  --secondaryColor: black;
  --tertiaryColor: #82C3B7;
  --textColor: white;
}

body {
  font-family: "Montserrat", Helvetica, Arial;
  font-size: 1rem;
  font-weight: 300;
  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: #F7F2F5;
}

.btn {
  border-radius: 10px;
  border: 2px solid var(--primaryColor);
  text-transform: uppercase;
  font-size: 1rem;
  padding: .6rem 1.5rem;
  line-height: 1;
}
.text-link {
  color: var(--primaryColor);
}
.text-link:hover {
  color: var(--primaryColor);
}

.btn-book {
  background-color: var(--tertiaryColor);
  border-color: var(--tertiaryColor);
  color: white;
}
.btn-book:hover {
  background-color: transparent;
  border-color: var(--tertiaryColor);
  color: var(--tertiaryColor);
}

.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(--secondaryColor);
  background-color:var(--secondaryColor);
}
.badge-pill.active,.badge-pill:hover {
  color: black;
  border-color: black;
  background-color: white;
}

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

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

.text-bold {
  font-weight:500;
}

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