:root {
  --primaryColor: #373637;
  --secondaryColor: white;
  --tertiaryColor: #373637;
  --textColor: white;
}

@font-face {
  font-family: 'GoodSans';
  src:url('/widgets/dimensionsretreats/fonts/GoodSans-Regular.otf') format('opentype');
  font-style: normal;
  font-weight:400;
  font-display: swap;
}

body {
  font-family: 'GoodSans', Helvetica, Arial, serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  background-color: #F7F4ED;
}

.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: white;
}

.btn {
  border-radius: 25px;
  border: 1px solid var(--primaryColor);
  text-transform: uppercase;
  font-size: 14px;
  padding: .6rem 1.5rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1.4;
}

.text-link {
  color: var(--primaryColor);
}
.text-link:hover {
  color: var(--primaryColor);
}

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

.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: 25px;
  color: white;
  border: 1px solid var(--primaryColor);
  background-color:var(--primaryColor);
}
.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;
}