.multiselect {
  margin-bottom: 20px;
}
.multiselect__tags {
  min-height: 43px !important;
  border-color: #d1d1d1 !important;
}
.multiselect__tags input {
  height: auto;
  border: none;
  font-size: 13px;
  padding: 8px 10px;
}
  .multiselect__content {
    margin-top: 4px;
  }
  .multiselect__tag {
    padding: 6px 26px 6px 10px;
    font-size: 11px;
  }
  

.mobile-only {
  display: none;
}

.notification-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 35px;
  background: #fedb11;
  color: #111;
  font-weight: 600;
  font-size: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 9999;
}

.u-text-right {
  text-align: right !important;
}
  .u-text-right > .button {
    margin-right: 0;
    padding-right: 0;
    text-align: right;
    width: auto;
    min-width: 0;
  }

.u-text-left {
  text-align: left !important;
}
  .u-text-left > .button {
    margin-left: 0;
    padding-left: 0;
    text-align: left;
    width: auto;
    min-width: 0;
  }

.card .u-text-right .button {
  text-align: right !important;
}

.red {
  color: #c4250d;
}
.green {
  color: #155724;
}
.teal {
  color: #7de5d6;
}
.yellow {
  color: #856404;
}
.bg-red {
  background: #c4250d;
  color: #fff;
}
.bg-teal {
  background: #00787d;
  color: #fff;
}
.bg-white {
  background: #fff;
}
.bg-green {
  background: #d4edda;
  color: #155724;
}
.bg-yellow {
  background: #fff3cd;
  color: #856404;
}
.bg-orange {
  background: #ecaf57;
  color: #fff;
}
.bg-grey {
  background: #e9e9e9;
  color: #333;
}
.bg-slate {
  background: #111;
  color: #fff;
}

.flex-3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}
.flex-3 > div {
    width: calc(33.33% - 10px);
    margin: 0 10px 10px 0;
}

select {
    width: 100%;
}

h3 span {
    display: block;
    font-size: 11px;
    margin: 0 0 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

html,
body {
  color: #333;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: #f9f9f9;
  font-family: "DM Sans";
  font-weight: 400;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  letter-spacing: 0;
}


h1,h2,h3,h4,h5,h6 {
  font-family: 'DM Sans', serif;
  font-weight: 700;
  letter-spacing: -1px;
}

p {
    margin-bottom: 25px;
}

.small-font-85 {
  font-size: 0.85em;
}
.u-text-center {
  text-align: center;
}

input[type="text"],
input[type="password"],
input[type="tel"],
input[type="email"],
input[type="date"],
input[type="time"],
input[type="number"],
textarea {
  width: 100%;
  color: #333;
  text-align: left;
}
textarea {
  min-height: 80px;
}
.form-container input[type="text"],
.form-container input[type="date"],
.form-container input[type="time"],
.form-container select {
  border: solid 1px #ddd;
  background: #fefefe;
  border-radius: 2px;
  padding: 10px;
  font-size: 15px;
  width: 100%;
}

input[type="text"].disabled {
 background: #efefef;
 color: #999;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  top: 100vh;
  z-index: -1;
  transition: all 0.2s;
}
.overlay.active {
  top: 0;
  z-index: 999;
  opacity: 1;
}
.modal {
  width: 90%;
  max-width: 500px;
  min-height: 200px;
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  max-height: 90%;
  overflow: auto;
}
.modal h4 {
  font-size: 22px;
}
.modal h5 {
  margin-top: 0;
}
.modal select {
  width: 100%;
}
.modal-cta {
  margin-top: 20px;
}

.button {
  border: none !important;
  display: block;
  font-size: 16px;
  font-weight: 700;
  text-transform: none;
  height: 50px;
  line-height: 50px;
  min-width: 160px;
  letter-spacing: -0.5px;
  border-radius: 50px;
  transition: all 0.2s;
  height: auto;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.button.inline {
  display: inline-block !important;
  width: auto !important;
  margin: 0 auto;
}
.button.medium {
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  min-width: 0;
}
.button.small {
  height: 30px;
  line-height: 30px;
  font-size: 13px;
}
.button.xsmall {
  height: 20px;
  line-height: 20px;
  font-size: 11px;
}

.button.blank{
  background: none;
  color: #62aedc;
}
.button.yellow {
  background: #f9d359;
  color: #000;
}
.button.blue {
  background: #21c7cb;
  color: #fff;
}
.button.pink {
  background: #feafbf;
  color: #3f3f3f;
}
.button:disabled,
.button.disabled {
  background: #f8f8f8 !important;
  color: #ddd !important;
  opacity: 0.8;
  cursor: default !important;
}
.button.red {
  background: #c4250d;
  color: #fff;
  border-radius: 100px;
  text-transform: initial;
  letter-spacing: -0.5px;
}
.button.white {
  background: #fff;
  color: #c4250d;
}
.button.grey {
  background: #222;
  color: #fff;
}
.button.green {
  background: #7de5d6;
  color: #fff;
  height: auto;
  transition: all 0.2s;
}
.button.blank:hover{
  color: #85bee0;
}
.button.green:hover{
  background: #5a9a26;
  color: #fff;
}
.button.pink:hover {
  background: #3f3f3f;
  color: #fff;
}
.button.grey:hover {
  background: #777;
}
.button.rounded {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  padding: 0;
}

.button.invert {
  background: none;
  border: solid 1px #21c7cb !important;
  color: #21c7cb !important;
  height: 38px;
  line-height: 34px;
}
.button.invert.unfavourable {
  border: none !important;
}

.button.text {
  color: #222 !important;
  background: none;
  border: none;
}
.button.button-block {
  display: block;
  width: 100%;
}
.button.bold {
  font-weight: 700;
}
.button.button-l {
  padding: 0.3em 1.3em;
  font-size: 30px;
  line-height: 1em;
  height: auto;
}
.button.button-xl {
  padding: 0.3em 1.3em;
  font-size: 60px;
  line-height: 1em;
  height: auto;
}
.button.button-xxl {
  padding: 0.6em 1.4em;
  font-size: 72px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1em;
  display: inline-block;
  margin: 1em 0;
}

.button.button-bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0;
  padding: 0.4em 0.6em;
  display: block;
  font-size: 61px;
  border-radius: 0;
}

.button.profile {
  float: right;
  font-weight: 600 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px 20px 0;
}
.button.help.fixed {
  position: fixed;
  bottom: 5px;
  right: 5px;
}
.button.help {
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px 20px 0;
}
.button img {
  margin: 0 8px 0 0;
  width: 15px;
}
.button.help img {
  width: 30px;
}

form .alert {
  line-height: 1.5em;
  margin-bottom: 35px;
}

.alert {
  display: block;
  margin: 0 0 10px;
  border: solid 1px;
  padding: 3px 8px;
  font-size: 12px;
  line-height: 14px;
  border-radius: 0;
}

.alert.red {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.alert.yellow {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
.alert.blue {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.input-error {
    display: block;
    margin: -15px 0 0;
    font-size: 12px;
    color: #c4250d;
    padding: 2px;
}

.checkbox {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  margin: 0 0 10px;
}
.checkbox input {
  margin: 3px 10px 0 0;
  display: block;
  padding: 0;
  width: 20px;
  height: 20px;
  flex-wrap: wrap;
}
.checkbox label {
  margin: 0;
  font-size: 14px;
  width: calc(100% - 30px);
}

.badge {
  display: inline-block;
  padding: 5px 15px;
  font-size: 0.8em;
  border-radius: 5px;
  font-weight: 600;
  line-height: 1em;
  text-transform: capitalize;
}
  .badge.yellow {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
  }
  .badge.grey {
    color: #fff;
    background-color: #333;
    border-color: #666;
  }
  .badge.green {
    color: #fff;
    background-color: #155724;
    border-color: #155724;
  }
  .badge.red {
    background: #c4250d;
    color: #fff;
  }
