.menu-button {
  float: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 100%;
  background: #59b988;
  cursor: pointer;
}

.menu-button.active .open {
  display: none;
}

.menu-button.active .close {
  display: block;
}

.menu-button .open,
.menu-button .close {
  font-size: 28px;
}

.menu-button .open {
  display: block;
}

.menu-button .close {
  display: none;
}

.mainmenu {
  position: fixed;
  width: 360px;
  height: calc(100% - 64px);
  background: #142127;
  top: 64px;
  left: -400px;
  color: #fff;
  z-index: 6;
}

.menu {
  width: 100%;
  height: 100%;
  flex: 1;
  padding: 15px 15px 0 15px;
}

.menu .menu-item {
  max-height: 158px;
  color: #fff;
  background: #283c44;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.menu .menu-item:nth-of-type(n) {
  float: left;
  clear: none;
  box-sizing: border-box;
  width: calc( ( (100% + 15px ) / 2) - 15px);
  margin-right: 15px;
  margin-bottom: 15px;
}

.menu .menu-item:nth-of-type(2n) {
  margin-right: 0;
}

.menu .menu-item.disabled {
  opacity: 0.3;
}

.menu .menu-item .icon {
  margin-top: 30px;
  font-size: 42px;
}

.menu .menu-item .name {
  margin-top: auto;
  margin-bottom: 14px;
  padding: 0 15px;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  line-height: 22px;
}

.menu-fader {
  position: fixed;
  left: 0;
  top: 64px;
  right: 0;
  bottom: 0;
  z-index: 5;
  visibility: hidden;
  background: rgba(255, 255, 255, 0.75);
  opacity: 0;
  cursor: pointer;
}

form {
  float: left;
  width: 100%;
}

.form-row {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

input {
  border-radius: 5px;
  background: #fff;
  border: 1px solid #ced4da;
  float: left;
  clear: both;
  padding: 19px 20px;
  max-width: 320px;
  width: 100%;
  font-family: canada-type-gibson, Arial, Verdana, sans-serif;
  font-size: 16px;
  margin-bottom: 14px;
}

input[type=submit],
a.button,
.button,
.btn,
a.btn {
  float: left;
  clear: both;
  color: #fff;
  font-family: canada-type-gibson, Arial, Verdana, sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  padding: 15px 20px;
  width: 100%;
  max-width: 200px;
  border-radius: 5px;
  font-size: 16px;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

input[type=submit].green,
a.button.green,
.button.green,
.btn.green,
a.btn.green {
  background: #59b988;
}

input[type=submit].gray,
a.button.gray,
.button.gray,
.btn.gray,
a.btn.gray {
  background: #c1c1c1;
}

select {
  width: 100%;
  border: 1px solid #ced4da;
  border-radius: 5px;
  font-family: canada-type-gibson, Arial, Verdana, sans-serif;
  font-size: 16px;
  padding: 17px 15px;
  font-weight: 300;
  background: #fff;
}

textarea {
  width: 100%;
  border: 1px solid #ced4da;
  border-radius: 5px;
  font-family: canada-type-gibson, Arial, Verdana, sans-serif;
  font-size: 16px;
  padding: 15px 20px;
  font-weight: 300;
  min-height: 150px;
  line-height: 22px;
  margin-bottom: 14px;
}

.fullscreen-overlay {
  position: fixed;
  z-index: 21;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
}

.fullscreen-overlay .button {
  clear: none;
  max-width: 200px;
  margin-right: 10px;
}

.fullscreen-overlay .button:last-child {
  margin-right: 0;
}

.popup {
  background: #fff;
  border-radius: 10px;
  padding: 45px;
  width: 100%;
  max-width: 40%;
}

.popup.shadow {
  box-shadow: 0px 3px 15px 0 rgba(0, 0, 0, 0.08);
}

.popup h1 {
  margin-top: 0;
  font-size: 32px;
  line-height: 32px;
}

.popup p:last-child {
  margin-bottom: 0;
}

.fullscreen-overlay.default {
  position: absolute;
  height: calc(100% - 70px);
  width: 100%;
  opacity: 0;
  height: 100%;
  visibility: hidden;
}

.fullscreen-overlay.default .popup {
  height: auto;
  padding: 45px;
  background: #fff;
  border-radius: 10px;
  padding: 45px;
  width: 100%;
  max-width: 60%;
  color: #242424;
}

.fullscreen-overlay.default h1 {
  margin-top: 0;
  font-size: 32px;
  line-height: 32px;
}

.fullscreen-overlay.default .body {
  color: #273540;
}

.fullscreen-overlay.default .close {
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 10px 15px;
  font-size: 23px;
  cursor: pointer;
}

.fullscreen-overlay.default .button {
  margin-top: 20px;
}

.mfp-content {
  position: relative;
  z-index: 5;
  background: #FFF;
  padding: 36px;
  width: auto;
  max-width: 600px;
  margin: 20px auto;
}

.mfp-close {
  font-size: 42px !important;
}

.alert {
  float: left;
  padding: 12px 24px;
  background: #eee;
  width: 100%;
  margin-bottom: 12px;
  color: #fff;
}

.alert.alert-success {
  background: #71E100;
}

.alert.alert-error {
  background: #FF5C26;
}

.datepicker {
  float: left;
  width: 100%;
  max-width: 100%;
}

.datepicker .ui-datepicker-header {
  padding: 0;
  border-radius: 0;
  border: none;
  float: left;
  width: 100%;
  height: 37px;
  background: #283c44;
  position: relative;
}

.datepicker .ui-datepicker-title {
  margin: 0;
  line-height: 20px;
  font-family: canada-type-gibson, Arial, Verdana, sans-serif;
  z-index: 2;
  width: 100%;
  top: 0;
  background: #283c44;
  color: #fff;
  padding: 0;
  margin: 0 auto;
  left: 0;
  right: 0;
  text-align: center;
  height: 37px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

.datepicker .ui-datepicker-title .ui-datepicker-month {
  display: inline-block;
  font-size: 15px;
  font-weight: 300;
  padding-top: 3px;
  text-transform: uppercase;
}

.datepicker .ui-datepicker-title .ui-datepicker-year {
  display: inline-block;
  font-size: 15px;
  font-weight: 300;
  padding-top: 3px;
  text-transform: uppercase;
}

.datepicker .ui-datepicker {
  float: left;
  width: 100%;
  padding: 0;
  border: none;
  padding: 0;
}

.datepicker .ui-datepicker .ui-datepicker-next {
  top: 0;
  right: 0;
  width: 44px;
  height: 37px;
  cursor: pointer;
  float: right;
  z-index: 3;
  position: relative;
  top: 0;
  background-image: url(/images/arrow_right.svg?a43355c9fba25c3461ff6ebff1f4e10b);
  background-repeat: no-repeat;
  background-size: 7px;
  background-position: center center;
}

.datepicker .ui-datepicker .ui-datepicker-next span {
  display: none;
}

.datepicker .ui-datepicker .ui-datepicker-next.ui-state-disabled {
  opacity: 0.35;
}

.datepicker .ui-datepicker .ui-datepicker-next-hover {
  top: 0;
  right: 0;
}

.datepicker .ui-datepicker .ui-datepicker-prev {
  top: 0;
  left: 0;
  width: 44px;
  height: 37px;
  cursor: pointer;
  float: left;
  z-index: 3;
  position: relative;
  top: 0;
  background-image: url(/images/arrow_left.svg?091c975d2cbcba62b147bc706fdeef21);
  background-repeat: no-repeat;
  background-size: 7px;
  background-position: center center;
}

.datepicker .ui-datepicker .ui-datepicker-prev span {
  display: none;
}

.datepicker .ui-datepicker .ui-datepicker-prev.ui-state-disabled {
  opacity: 0.35;
  /* background: none; */
}

.datepicker .ui-datepicker .ui-datepicker-prev-hover {
  top: 0;
  left: 0;
}

.datepicker .ui-state-hover,
.datepicker .ui-widget-content .ui-state-hover,
.datepicker .ui-widget-header .ui-state-hover {
  border: none;
  background: rgba(0, 0, 0, 0);
  right: 0;
}

.datepicker .ui-datepicker table {
  float: left;
  width: 100%;
  margin: 0;
  border-spacing: 0;
}

.datepicker .ui-datepicker table thead,
.datepicker .ui-datepicker table tbody,
.datepicker .ui-datepicker table tr {
  float: left;
  width: 100%;
}

.datepicker .ui-datepicker table tbody {
  border-top: 10px solid #f6f6f6;
  border-bottom: 10px solid #f6f6f6;
  background: #f6f6f6;
}

.datepicker .ui-datepicker table thead tr {
  background: #eaeaea;
}

.datepicker .ui-datepicker table th,
.datepicker .ui-datepicker table td {
  float: left;
  width: 14.1%;
  text-align: center;
}

.datepicker .ui-datepicker table th {
  font-size: 12px;
  font-family: canada-type-gibson, Arial, Verdana, sans-serif;
  color: #283c44;
  padding: 11px 0;
  font-weight: 300;
  text-transform: uppercase;
}

.datepicker .ui-datepicker table td {
  position: relative;
  margin: 0;
  border: none;
  background: none;
  font-size: 15px;
  font-weight: 100;
  padding: 8px 0 10px;
}

.datepicker .ui-datepicker table td a {
  background: none;
  font-size: 15px;
  font-weight: 100;
  text-decoration: none;
  color: #283c44;
  font-weight: 600;
}

.datepicker .ui-datepicker table td.ui-datepicker-today a {
  background: none;
  font-weight: 700;
  color: #000;
}

.datepicker .ui-datepicker table td.ui-datepicker-today a.ui-state-active {
  background: #59b988;
  color: #fff;
}

.datepicker .ui-datepicker table td.ui-datepicker-today a.ui-state-active.ui-state-hover {
  background: #59b988;
  color: #fff;
}

.datepicker .ui-datepicker table td.ui-datepicker-today a.ui-state-hover {
  background: none;
  color: #000;
}

.datepicker .ui-state-default {
  background: #fff;
  padding: 13px 0;
  text-align: center;
  margin: 0;
  border: none;
  font-weight: 300;
  font-size: 19px;
  font-family: canada-type-gibson, Arial, Verdana, sans-serif;
}

.datepicker .ui-state-active {
  background: #59b988;
  color: #fff;
}

.datepicker .ui-state-active.ui-state-hover {
  background: #59b988;
  color: #fff;
}

.datepicker .ui-state-disabled,
.datepicker .ui-widget-content .ui-state-disabled {
  opacity: 1;
  padding: 13px 0;
}

.datepicker .ui-datepicker-unselectable {
  padding: 0;
}

.datepicker .ui-datepicker-unselectable.ui-state-disabled {
  padding: 0;
  border: none;
  background: none;
  color: #b5b5b5;
  padding: 8px 0 10px;
}

.datepicker .ui-datepicker-unselectable.ui-state-disabled .ui-state-default {
  background: none;
  font-size: 15px;
  font-weight: 100;
}

.datepicker .ui-datepicker-other-month.ui-datepicker-unselectable.ui-state-disabled {
  padding: 0;
}

.datepicker .ui-state-highlight,
.datepicker .ui-widget-content .ui-state-highlight,
.datepicker .ui-state-active,
.datepicker .ui-widget-content .ui-state-active {
  border: none;
  background: #59b988;
  border-radius: 40px;
  color: #fff;
  width: 42px;
  height: 42px;
  display: inline-block;
  position: absolute;
  top: -3px;
  left: calc(50% - 21px);
  line-height: 19px;
}

/* Default datepicker */

.ui-datepicker table {
  margin-bottom: 4px;
  background: #f6f6f6;
}

.ui-state-default,
.ui-widget-content .ui-state-default {
  text-align: center;
  font-family: canada-type-gibson, Arial, Verdana, sans-serif;
  font-weight: 300;
  background: none;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight {
  background: #f6f6f6;
  color: #000;
  font-weight: 600;
  border: 1px solid #c5c5c5;
}

.ui-state-active,
.ui-widget-content .ui-state-active {
  background: #59b988;
  color: #fff;
  border: 1px solid #59b988;
}

#accordeon {
  float: left;
  width: 100%;
  margin: 15px 0;
}

#accordeon .accordeon-item {
  float: left;
  width: 100%;
  background: #e6e6e6;
  margin-bottom: 10px;
}

#accordeon .accordeon-item .accordeon-title {
  float: left;
  width: 100%;
  font-size: 17px;
  font-weight: 300;
  padding: 15px 20px 12px 65px;
  margin: 0;
  cursor: pointer;
  position: relative;
  letter-spacing: 0;
}

#accordeon .accordeon-item .accordeon-title .fas,
#accordeon .accordeon-item .accordeon-title .fa {
  float: left;
  position: absolute;
  background: #ddd;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  display: flex;
  color: #000;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

#accordeon .accordeon-item .accordeon-title.open {
  background: #59b988;
  color: #fff;
}

#accordeon .accordeon-item .accordeon-title.open .fas,
#accordeon .accordeon-item .accordeon-title.open .fa {
  background: #59b988;
  color: #fff;
}

#accordeon .accordeon-item .accordeon-title.open .fa,
#accordeon .accordeon-item .accordeon-title.open .fas {
  transform: rotate(90deg);
}

#accordeon .accordeon-item .accordeon-container {
  float: left;
  width: 100%;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s false;
  -webkit-transition-delay: 0.1s;
  transition: height 0.35s 0.1s;
}

#accordeon .accordeon-item .accordeon-container .accordeon-content {
  float: left;
  width: 100%;
  background: #fff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
  padding: 15px 25px 10px 65px;
}

#accordeon .accordeon-item .accordeon-container .accordeon-content p:first-child {
  margin-top: 4px;
}

* {
  box-sizing: border-box;
  outline: none;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: canada-type-gibson, Arial, Verdana, sans-serif;
}

body {
  width: 100%;
  max-width: 100vw;
  height: 100%;
  max-height: 100vh;
  font-size: 17px;
  line-height: 24px;
  color: #273540;
  font-weight: 300;
  overflow: hidden;
}

body.keyboard .main-content {
  padding-bottom: 500px;
}

h1,
h2,
h3,
h4 {
  font-weight: 600;
  letter-spacing: -0.5px;
}

h1,
.h1 {
  font-size: 26px;
  margin-top: 0;
  margin-bottom: 5px;
}

h2,
.h2 {
  font-size: 22px;
}

h3,
.h3 {
  font-size: 17px;
}

hr {
  border: none;
  height: 0;
  border-bottom: 1px solid #ddd;
  margin: 24px 0;
  display: block;
  width: 100%;
}

ul,
ol {
  display: block;
}

.splash-logo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  top: calc(50% - 20px);
  height: 40px;
  margin: 0 auto;
  left: 0;
  right: 0;
  opacity: 0.8;
}

.app-container {
  float: left;
  width: 100%;
  display: flex;
  z-index: 2;
  position: relative;
  flex-direction: column;
  height: 100%;
  background: #fff;
  overflow: hidden;
  opacity: 1;
}

.container {
  float: left;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  -webkit-overflow-scrolling: touch;
}

.container.messages {
  height: auto;
}

.item-list {
  float: left;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.item-list.scrollable {
  height: 620px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.item-list .list-item {
  float: left;
  width: 100%;
  margin-bottom: 5px;
  background: #fff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 16px 0 14px 15px;
  text-decoration: none;
  color: #273540;
}

.item-list .list-item h3 {
  margin: 0 0 2px 0;
  line-height: 18px;
}

.item-list .list-item .date {
  float: left;
  font-size: 14px;
  line-height: 20px;
  color: #83909a;
}

.item-list .list-item:last-child {
  margin-bottom: 0;
}

.item-list .list-item.green {
  border-left: 4px solid #59b988;
}

.item-list .list-item.gray {
  border-left: 4px solid #c0ced7;
}

.item-list .list-content {
  float: left;
  width: calc(100% - 40px);
  margin-right: auto;
}

.item-list .fa,
.item-list .fas,
.item-list .far {
  margin: auto auto auto 0;
  color: #c1cad9;
  line-height: 0;
}

.item-list .fa-times {
  color: #e84353;
  height: 100%;
  padding: 20px 0;
}

.reminders .item-list.scrollable {
  height: 186px;
}

.reminders .item-list .list-item {
  padding: 0 0 0 15px;
}

.reminders .item-list .list-content {
  width: calc(100% - 50px);
  padding: 16px 0 14px 0;
}

.reminders .item-list .remove-item {
  color: #e84353;
  height: 100%;
  width: 50px;
  text-align: center;
}

.topbar {
  float: left;
  width: 100%;
  height: 70px;
  background: #142127;
  color: #fff;
}

.topbar .top-left {
  float: left;
  height: 100%;
  width: calc(100% - 284px);
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 20px 0 0;
}

.topbar .top-right {
  float: right;
  height: 100%;
  background: #283c44;
  width: 284px;
  padding: 0 20px;
  display: flex;
  align-items: center;
}

.topbar .welcome {
  float: left;
  padding-left: 20px;
}

.topbar .welcome .name {
  float: left;
  clear: both;
  font-size: 22px;
  font-weight: 500;
}

.topbar .welcome .date {
  float: left;
  clear: both;
  font-size: 14px;
  line-height: 17px;
  font-weight: 200;
  padding-left: 1px;
}

.topbar .welcome .date .fa,
.topbar .welcome .date .fas {
  font-size: 9px;
  margin: 0 4px;
}

.topbar .time {
  float: right;
  margin-left: auto;
  font-size: 34px;
  line-height: 40px;
  padding-top: 8px;
  font-weight: 200;
}

.topbar .quicklinks {
  float: right;
  margin-left: 20px;
  display: flex;
  flex-direction: row;
}

.topbar .quicklinks span {
  float: left;
  clear: both;
  background: #283c44;
  width: 41px;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 7px;
  cursor: pointer;
}

.topbar .quicklinks span:last-child {
  margin: 0;
}

.topbar .quicklinks span .far,
.topbar .quicklinks span fa,
.topbar .quicklinks span fas {
  font-size: 21px;
}

.topbar .show-messages {
  position: relative;
}

.topbar .show-messages .amount {
  background: #e84353;
  position: absolute;
  right: -10px;
  top: -7px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 13px;
  margin: 0;
  display: none;
  text-align: center;
}

.topbar .show-messages .amount.show {
  display: block;
}

.topbar .show-messages .new-message-alert {
  display: none;
  position: absolute;
  top: 47px;
  right: 0;
  background: #fff;
  color: #283c44;
  z-index: 1;
  border-radius: 4px;
  width: 240px;
  font-size: 14px;
  text-align: center;
  font-weight: 600;
  padding: 8px 5px 5px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15);
}

.topbar .show-messages .new-message-alert .fa,
.topbar .show-messages .new-message-alert .fas {
  font-size: 16px;
  position: relative;
  top: 1px;
  left: -2px;
}

.topbar .weather {
  float: left;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.topbar .weather .location {
  font-size: 15px;
  line-height: 18px;
  margin: auto 0 auto 10px;
}

.topbar .weather .fas,
.topbar .weather fa,
.topbar .weather far {
  font-size: 32px;
}

.topbar .temperature {
  float: right;
  margin-left: auto;
  font-size: 34px;
  line-height: 40px;
  padding-top: 8px;
  font-weight: 200;
}

.layout {
  height: 100%;
}

.main-content {
  float: left;
  height: 100%;
  width: calc(100% - 284px);
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
}

.sidebar {
  float: right;
  width: 284px;
  background: #e9f1f4;
  padding: 30px 12px 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.sidebar h2 {
  padding-left: 7px;
  margin-top: 0;
  margin-bottom: 12px;
}

.sidebar p {
  padding-left: 7px;
}

.sidebar button {
  margin-left: 7px;
}

.sidebar button.front-desk {
  text-transform: none;
}

.sidebar .reminders {
  margin-top: auto;
}

.tab-container {
  float: left;
  width: 100%;
  margin-top: 30px;
}

.tab-container .tab-menu {
  float: left;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  box-shadow: inset 2px -2px 0px -1px #dfdfdf;
}

.tab-container .tab-menu li {
  float: left;
  width: 25%;
  background: #efefef;
  padding: 15px 10px;
  font-size: 17px;
  text-align: center;
  border-right: 1px solid #dfdfdf;
}

.tab-container .tab-menu li.active {
  background: #283c44;
  color: #fff;
  font-weight: 600;
  border-right: 1px solid #283c44;
}

.tab-container .tab-content {
  float: left;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}

.tab-container .tab-content li {
  float: left;
  width: 100%;
  display: none;
}

.tab-container .tab-content li.active {
  display: block;
}

.tab-container .tab-content li .tab-intro {
  float: left;
  width: 100%;
  padding: 10px 0 20px;
}

.tab-container .tab-content li h3:first-child {
  margin-bottom: 0;
}

.tab-container .tab-content li ul {
  list-style-type: disc;
  float: none;
  padding-left: 12px;
}

.tab-container .tab-content li ul li {
  display: block;
  float: none;
}

.checkbox-list {
  float: left;
  width: 100%;
  margin: 10px 0 30px;
}

.checkbox-list .option {
  float: left;
  width: 100%;
  position: relative;
  margin-bottom: 6px;
}

.checkbox-list .option label {
  float: left;
  width: 100%;
  font-size: 16px;
  background: #efefef;
  padding: 12px 10px;
  text-align: center;
  position: relative;
}

.checkbox-list .option label:before {
  display: block;
  content: "";
  background: #dddddd;
  width: 48px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.checkbox-list .option .checkmark {
  display: none;
  position: absolute;
  left: 18px;
  top: 14px;
  color: #fff;
  font-size: 14px;
}

.checkbox-list .option input {
  display: none;
  visibility: hidden;
  opacity: 0;
}

.checkbox-list .option .value {
  float: left;
  width: 100%;
  padding-left: 56px;
  padding-right: 10px;
  text-align: left;
}

.checkbox-list .option .text {
  float: left;
  width: calc(100% - 100px);
}

.checkbox-list .option .subtext {
  font-size: 14px;
  font-style: italic;
  color: #8a999e;
}

.checkbox-list .option .price {
  float: right;
  font-weight: 600;
  width: 100px;
  text-align: right;
}

.checkbox-list .option input:checked + label .checkmark {
  display: block;
}

.checkbox-list .option input:checked + label:before {
  background: #59b988;
}

.container.login {
  background: url(/images/background_login.jpg?80ab31b315c1d273cb78f24f216401af) no-repeat bottom center;
  background-size: cover;
  align-items: center;
  justify-content: center;
}

.container.login .logo {
  width: 320px;
  position: absolute;
  top: 46px;
}

.container.login .popup {
  position: relative;
  max-width: 420px;
  top: -34px;
}

.container.login form {
  margin-top: 10px;
}

.container.login input {
  font-size: 28px;
  font-weight: 900;
  padding: 16px 20px 12px;
  text-transform: uppercase;
}

/*** Image mode ***/

/*
.container.dashboard {
	.main-content {
		color:#fff;
		padding:0 0 0 15px;
		background:#142127;
	}

	.dashboard-top {
		float:left;
		width:100%;
		height:70%;

		.image-container {
			float:left;
			width:50%;
			height:50%;
		}
	}

	.dashboard-bottom {
		float:left;
		width:100%;
		height:30%;
		background:red;

		.image-container {
			@include new-grid(4,0px,0px);
			height:100%;
		}
	}

	.image-container { 
		position:relative;
		overflow:hidden;

		img {
			object-fit: cover;
			width: 100%;
			height: 100%;
			border-bottom:15px solid #142127;
			border-right:15px solid #142127;
		}

		.title {
			position:absolute;
			z-index:1;
			font-size:24px;
			font-weight:500;
			color:#fff;
			bottom:0;
			left:0;
			width: calc(100% - 15px);
			min-height:50px;
    		display: flex;
    		align-items: flex-end;
    		padding: 30px 16px 32px 16px;
    		background: rgb(0,0,0);
			background: linear-gradient(0deg, rgba(0,0,0,0.80) 11%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0) 100%);
		}

		.fas, .fa, .far {
			font-size: 15px;
			margin-left: 12px;
			top: -5px;
			position: relative;
		}
	}
}
*/

.container.dashboard .main-content {
  color: #fff;
  padding: 0 0 0 15px;
  background: #142127;
}

.container.dashboard .dashboard-top {
  float: left;
  width: 100%;
  height: 40%;
}

.container.dashboard .dashboard-top .tile {
  float: left;
  width: 33.33%;
  height: 100%;
}

.container.dashboard .dashboard-middle {
  float: left;
  width: 100%;
  height: 30%;
}

.container.dashboard .dashboard-middle .tile {
  float: left;
  width: 50%;
  height: 100%;
}

.container.dashboard .dashboard-bottom {
  float: left;
  width: 100%;
  height: 30%;
}

.container.dashboard .dashboard-bottom .tile {
  height: 100%;
}

.container.dashboard .dashboard-bottom .tile:nth-of-type(n) {
  float: left;
  clear: none;
  box-sizing: border-box;
  width: calc( ( (100% + 0px ) / 4) - 0px);
  margin-right: 0px;
  margin-bottom: 0px;
}

.container.dashboard .dashboard-bottom .tile:nth-of-type(4n) {
  margin-right: 0;
}

.container.dashboard .dashboard-bottom .tile .icon {
  font-size: 40px;
  top: -30px;
}

.container.dashboard .dashboard-bottom .tile .title {
  font-size: 20px;
  text-align: center;
}

.container.dashboard .tile {
  position: relative;
  overflow: hidden;
  background: #283c44;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-bottom: 15px solid #142127;
  border-right: 15px solid #142127;
}

.container.dashboard .tile.disabled {
  opacity: 0.3;
}

.container.dashboard .tile .title {
  position: absolute;
  z-index: 1;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  bottom: 0;
  left: 0;
  width: calc(100%);
  min-height: 50px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px 16px 25px 16px;
}

.container.dashboard .tile .icon {
  font-size: 60px;
  margin-left: 0;
  top: -25px;
  position: relative;
  color: #fff;
}

.container.dashboard .tile .fa-chevron-right {
  font-size: 15px;
  margin-left: 12px;
  top: -5px;
  position: relative;
}

.container.experiences .page-content.no-scroll {
  overflow: hidden;
}

.container.experiences .main-content {
  padding-bottom: 0;
}

.container.experiences .tile-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0 0 15px 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.container.experiences .tile-list li:nth-of-type(n) {
  float: left;
  clear: none;
  box-sizing: border-box;
  width: calc( ( (100% + 22px ) / 3) - 22px);
  margin-right: 22px;
  margin-bottom: 22px;
}

.container.experiences .tile-list li:nth-of-type(3n) {
  margin-right: 0;
}

.container.experiences .tile-list li a {
  float: left;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #273540;
}

.container.experiences .tile-list .image-container {
  position: relative;
  overflow: hidden;
  max-height: 30vh;
  line-height: 0;
}

.container.experiences .tile-list .image-container img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 190px;
}

.container.experiences .tile-list .name {
  background: #e9f1f4;
  flex-grow: 1;
  color: #1e2429;
  font-weight: 500;
  line-height: 16px;
  padding: 13px 14px;
  font-size: 17px;
}

.container.experience-details {
  float: left;
  width: 100%;
  z-index: 4;
  position: absolute;
  background: #fff;
}

.container.experience-details .button.close {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
  padding: 16px 20px 15px;
  width: auto;
  text-transform: none;
}

.container.experience-details .button.close .icon {
  padding-right: 6px;
  font-size: 14px;
}

.container.experience-details .hero-image {
  float: left;
  width: 100%;
  height: 64vh;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  z-index: 1;
  position: relative;
}

.container.experience-details .hero-image .shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
  min-height: 200px;
  background: black;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 11%, rgba(0, 0, 0, 0) 100%);
}

.container.experience-details .content {
  position: relative;
  width: calc(100% - 320px);
}

.container.experience-details .title {
  color: #fff;
  position: relative;
  max-width: 60vw;
  padding-left: 60px;
  margin-top: auto;
  margin-bottom: 30px;
  z-index: 2;
}

.container.experience-details .title span {
  padding: 11px 0 8px 0;
  display: inline;
  background: #142127;
  font-size: 38px;
  line-height: 46px;
  font-weight: 200;
  padding-left: 0;
  padding-right: 0;
  letter-spacing: 1px;
  box-shadow: 20px 0 0 #142127, -60px 0 0 #142127;
}

.container.experience-details .text {
  float: left;
  width: calc(100% - 290px);
  padding: 40px 60px 100px 60px;
  margin-bottom: 40px;
  font-size: 18px;
  letter-spacing: 0.5px;
  line-height: 30px;
  text-align: justify;
}

.container.experience-details .side-information {
  position: relative;
  float: right;
  margin-right: 20px;
  margin-top: -130px;
  width: 265px;
  padding: 25px;
  background: #e9f1f4;
  z-index: 2;
}

.container.experience-details .side-information h2 {
  margin-bottom: 6px;
  margin-top: 12px;
}

.container.experience-details .side-information .rates,
.container.experience-details .side-information .duration {
  float: left;
  width: 100%;
}

.container.experience-details .side-information .rates h3,
.container.experience-details .side-information .duration h3 {
  float: left;
  width: 100%;
  margin-bottom: 2px;
}

.container.experience-details .side-information .rates span,
.container.experience-details .side-information .duration span {
  float: left;
  width: 100%;
  font-size: 16px;
  line-height: 22px;
}

.container.experience-details .side-information button {
  margin-top: 25px;
}

.fullscreen-overlay.book-experience {
  position: absolute;
  height: calc(100% - 70px);
  width: 100%;
  opacity: 0;
  z-index: 21;
  visibility: hidden;
}

.fullscreen-overlay.book-experience .popup {
  max-width: 95%;
  height: 92%;
  padding: 20px 45px 30px;
}

.fullscreen-overlay.book-experience form {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.fullscreen-overlay.book-experience h3 {
  font-weight: 600;
  font-size: 19px;
  margin-bottom: 10px;
}

.fullscreen-overlay.book-experience .close {
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 10px 15px;
  font-size: 23px;
  cursor: pointer;
}

.fullscreen-overlay.book-experience .item-container {
  float: left;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.fullscreen-overlay.book-experience .left {
  float: left;
  width: 48%;
  display: flex;
  flex-direction: column;
}

.fullscreen-overlay.book-experience .right {
  float: right;
  width: 48%;
  margin-left: auto;
  display: flex;
  flex-direction: column;
}

.fullscreen-overlay.book-experience .select-date,
.fullscreen-overlay.book-experience .select-time,
.fullscreen-overlay.book-experience .select-party,
.fullscreen-overlay.book-experience .select-payment {
  float: left;
  width: 100%;
}

.fullscreen-overlay.book-experience .select-time {
  padding-top: 18px;
  margin-top: auto;
}

.fullscreen-overlay.book-experience .select-time .options {
  float: left;
  width: 100%;
}

.fullscreen-overlay.book-experience .option {
  position: relative;
}

.fullscreen-overlay.book-experience .option:nth-of-type(n) {
  float: left;
  clear: none;
  box-sizing: border-box;
  width: calc( ( (100% + 15px ) / 2) - 15px);
  margin-right: 15px;
  margin-bottom: 0px;
}

.fullscreen-overlay.book-experience .option:nth-of-type(2n) {
  margin-right: 0;
}

.fullscreen-overlay.book-experience .option label {
  float: left;
  width: 100%;
  font-size: 16px;
  background: #efefef;
  padding: 15px 10px;
  text-align: center;
}

.fullscreen-overlay.book-experience .option .checkmark {
  display: none;
  position: absolute;
  left: 21px;
  top: 16px;
}

.fullscreen-overlay.book-experience .option input {
  display: none;
  visibility: hidden;
  opacity: 0;
}

.fullscreen-overlay.book-experience .option input:checked + label {
  color: #fff;
  background: #59b988;
}

.fullscreen-overlay.book-experience .option input:checked + label .checkmark {
  display: block;
}

.fullscreen-overlay.book-experience .select-party {
  float: left;
  widht: 100%;
}

.fullscreen-overlay.book-experience .party-category {
  float: left;
  width: 100%;
  margin-bottom: 6px;
  background: #efefef;
  padding: 12px 20px;
}

.fullscreen-overlay.book-experience .party-category .amount {
  float: left;
  width: 160px;
}

.fullscreen-overlay.book-experience .party-category .plus,
.fullscreen-overlay.book-experience .party-category .minus,
.fullscreen-overlay.book-experience .party-category .quantity {
  float: left;
  width: 38px;
  height: 38px;
}

.fullscreen-overlay.book-experience .party-category .plus,
.fullscreen-overlay.book-experience .party-category .minus {
  background: #283c44;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
  cursor: pointer;
}

.fullscreen-overlay.book-experience .party-category .quantity {
  width: 60px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  margin: 0 3px;
  clear: none;
  border: none;
  border-radius: 0;
  padding: 4px 0 0;
}

.fullscreen-overlay.book-experience .party-category .name-price {
  float: right;
  width: calc(100% - 160px);
}

.fullscreen-overlay.book-experience .party-category .cat-name {
  float: left;
  width: 50%;
  font-weight: bold;
}

.fullscreen-overlay.book-experience .party-category .cat-name .note {
  float: left;
  width: 100%;
  font-size: 0.8em;
  opacity: 0.6;
  font-weight: normal;
  font-style: italic;
}

.fullscreen-overlay.book-experience .party-category .cat-singular-price {
  float: right;
  font-weight: 400;
  width: 25%;
  text-align: right;
}

.fullscreen-overlay.book-experience .party-category .cat-price {
  float: right;
  font-weight: 700;
  width: 25%;
  text-align: right;
}

.fullscreen-overlay.book-experience .prices {
  float: right;
  margin-top: 10px;
  padding-right: 20px;
}

.fullscreen-overlay.book-experience .prices .row {
  float: right;
  clear: both;
}

.fullscreen-overlay.book-experience .prices .label {
  float: left;
  text-align: right;
  font-weight: 600;
}

.fullscreen-overlay.book-experience .prices .value {
  float: right;
  text-align: right;
  min-width: 110px;
}

.fullscreen-overlay.book-experience .prices .row.total {
  margin-top: 14px;
  font-size: 20px;
  font-weight: 600;
}

.fullscreen-overlay.book-experience .select-payment {
  padding-top: 18px;
  margin-top: auto;
}

.fullscreen-overlay.book-experience input[type=submit].confirm,
.fullscreen-overlay.book-experience button.confirm {
  float: right;
  width: auto;
  max-width: none;
  padding: 17px 30px 16px;
  margin-top: auto;
  margin-left: auto;
}

.fullscreen-overlay.payBill {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
  left: 0;
  top: 0;
  z-index: 21;
  visibility: hidden;
}

.fullscreen-overlay.payBill .popup {
  max-width: 60%;
  height: 60%;
  padding: 20px 45px 30px;
}

.fullscreen-overlay.payBill form {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.fullscreen-overlay.payBill h3 {
  font-weight: 600;
  font-size: 19px;
  margin-bottom: 10px;
}

.fullscreen-overlay.payBill .close {
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 10px 15px;
  font-size: 23px;
  cursor: pointer;
}

.fullscreen-overlay.payBill .item-container {
  float: left;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.fullscreen-overlay.payBill .left {
  float: left;
  width: 44%;
  display: flex;
  flex-direction: column;
}

.fullscreen-overlay.payBill .right {
  float: right;
  width: 44%;
  margin-left: auto;
  display: flex;
  flex-direction: column;
}

.fullscreen-overlay.payBill input[type=submit].confirm,
.fullscreen-overlay.payBill button.confirm {
  float: right;
  width: auto;
  max-width: none;
  padding: 17px 30px 16px;
  margin-top: auto;
  margin-left: auto;
}

.fullscreen-overlay.messagecenter {
  z-index: 20;
}

.fullscreen-overlay.messagecenter .popup {
  padding: 0;
  width: 100%;
  max-width: 936px;
  height: 86vh;
  max-height: 660px;
  overflow: hidden;
  color: #273540;
  position: relative;
}

.fullscreen-overlay.messagecenter .no-messages-yet {
  float: left;
  width: 100%;
  text-align: center;
  margin-top: 180px;
}

.fullscreen-overlay.messagecenter .no-messages-yet h2 {
  font-size: 40px;
}

.fullscreen-overlay.messagecenter .message-menu {
  float: left;
  width: 280px;
  height: 100%;
  background: #e9f1f4;
  padding: 45px 10px 10px;
}

.fullscreen-overlay.messagecenter .message-menu.scrollable {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.fullscreen-overlay.messagecenter .messages {
  float: left;
  width: 100%;
}

.fullscreen-overlay.messagecenter .message-view {
  float: left;
  font-size: 18px;
  padding: 80px 45px 50px 45px;
  height: 100%;
  width: calc(100% - 280px);
}

.fullscreen-overlay.messagecenter .message-view.scrollable {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.fullscreen-overlay.messagecenter .message-view h2 {
  font-size: 28px;
  margin: 0;
}

.fullscreen-overlay.messagecenter .message-view .date-posted {
  color: #8c8c8c;
  margin-top: 4px;
  font-size: 16px;
  margin-bottom: 20px;
}

.fullscreen-overlay.messagecenter .message-view .message-content {
  line-height: 28px;
}

.fullscreen-overlay.messagecenter .message-view .message-content strong {
  font-weight: 600;
}

.fullscreen-overlay.messagecenter .message-list {
  float: left;
  width: 100%;
}

.fullscreen-overlay.messagecenter .message-list h3 {
  margin-left: 5px;
  font-size: 21px;
  margin: 0 0 14px 5px;
}

.fullscreen-overlay.messagecenter .message-list ul {
  float: left;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.fullscreen-overlay.messagecenter .message-list li {
  font-size: 16px;
  background: #fff;
  line-height: 19px;
  padding: 15px 16px 13px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
}

.fullscreen-overlay.messagecenter .message-list li.active {
  background: #59b988;
  color: #fff;
}

.fullscreen-overlay.messagecenter .message-list li.active .fa,
.fullscreen-overlay.messagecenter .message-list li.active .fas {
  color: #fff;
}

.fullscreen-overlay.messagecenter .message-list li .fa,
.fullscreen-overlay.messagecenter .message-list li .fas {
  float: right;
  margin-left: auto;
  padding-left: 14px;
  right: 14px;
  color: #bdbdbd;
  margin-top: -2px;
}

.fullscreen-overlay.messagecenter .message-list.read-messages .fa,
.fullscreen-overlay.messagecenter .message-list.read-messages .fas {
  display: none;
}

.fullscreen-overlay.messagecenter .message-list.unread-messages {
  margin-bottom: 40px;
}

.fullscreen-overlay.messagecenter .message-list.unread-messages.hide {
  visibility: hidden;
  opacity: 0;
  margin: 0;
  height: 0;
}

.fullscreen-overlay.messagecenter .message-list.unread-messages li {
  font-weight: 600;
}

.fullscreen-overlay.messagecenter .message-list.unread-messages li.read {
  font-weight: 400;
}

.homepage {
  background: #000;
}

.homepage .fullscreen-overlay.screensaver {
  opacity: 1;
  visibility: visible;
}

.fullscreen-overlay.screensaver {
  background: #000;
  flex-direction: column;
}

.fullscreen-overlay.screensaver .time {
  font-size: 150px;
  clear: both;
  width: 100%;
  text-align: center;
  line-height: 130px;
  margin-top: auto;
  color: #8c8c8c;
  font-weight: 100;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fullscreen-overlay.screensaver .unlock-message {
  margin-top: auto;
  margin-bottom: 70px;
  color: #fff;
  font-size: 21px;
  font-weight: 100;
  opacity: 0.2;
  width: 100%;
  text-align: center;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.container.service .totals {
  float: left;
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
}

.container.service .totals .total-price {
  margin-left: 20px;
  clear: both;
}

.container.service .payment-option {
  margin: 10px 0 20px;
  clear: both;
}

.container.information .cat-title {
  margin: 24px 0 0 0;
  font-size: 22px;
}

.container.information .cat-title:first-of-type {
  margin-top: 44px;
}

.container.information #accordeon {
  margin-top: 10px;
}

#loadingoverlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.92);
  text-align: center;
  z-index: 20;
  color: #999;
  font-size: 1.4em;
  transition: visibility 0s, opacity 0.2s linear;
  position: fixed;
  visibility: hidden;
  opacity: 0;
}

#loadingoverlay.active {
  visibility: visible;
  opacity: 1;
}

#loadingoverlay .loader {
  margin: 30vh auto 24px auto;
  background: none;
}

#loadingoverlay .text {
  margin: 0 auto;
  clear: both;
  display: block;
}

#loadingoverlay .extratext {
  opacity: 0;
  margin: 24px 0;
  transition: opacity 1s linear;
  display: block;
  color: #666;
}

#loadingoverlay .extratext.visible {
  opacity: 1;
}

.lds-facebook {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  margin-bottom: 24px;
}

.lds-facebook div {
  display: inline-block;
  position: absolute;
  left: 8px;
  width: 16px;
  background: #555;
  -webkit-animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
          animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.lds-facebook div:nth-child(1) {
  left: 8px;
  -webkit-animation-delay: -0.24s;
          animation-delay: -0.24s;
}

.lds-facebook div:nth-child(2) {
  left: 32px;
  -webkit-animation-delay: -0.12s;
          animation-delay: -0.12s;
}

.lds-facebook div:nth-child(3) {
  left: 56px;
  -webkit-animation-delay: 0;
          animation-delay: 0;
}

@-webkit-keyframes lds-facebook {
  0% {
    top: 8px;
    height: 64px;
  }

  50%, 100% {
    top: 24px;
    height: 32px;
  }
}

@keyframes lds-facebook {
  0% {
    top: 8px;
    height: 64px;
  }

  50%, 100% {
    top: 24px;
    height: 32px;
  }
}

.weathertable {
  border-collapse: collapse;
}

.weathertable th,
.weathertable td {
  border: 1px solid #eee;
  text-align: center;
  padding: 8px 6px;
}

.weathertable th img,
.weathertable td img {
  width: 70px;
}

.itinerary_table,
.bill_table {
  width: 100%;
  margin: 0 0 48px 0;
}

.itinerary_table tr.past,
.bill_table tr.past {
  font-style: italic;
  color: #999;
}

.itinerary_table tr.cancelled,
.bill_table tr.cancelled {
  text-decoration: line-through;
  color: #999;
}

.itinerary_table td,
.itinerary_table th,
.bill_table td,
.bill_table th {
  text-align: left;
  padding: 10px;
  vertical-align: top;
}

.itinerary_table td.alignright,
.itinerary_table th.alignright,
.bill_table td.alignright,
.bill_table th.alignright {
  text-align: right;
}

.itinerary_table td.aligncenter,
.itinerary_table th.aligncenter,
.bill_table td.aligncenter,
.bill_table th.aligncenter {
  text-align: center;
}

.itinerary_table tfoot td,
.bill_table tfoot td {
  border-top: 1px solid #eee;
  font-weight: bold;
}

.itinerary_table th,
.bill_table th {
  border-bottom: 1px solid #eee;
}

.itinerary_table .strike,
.bill_table .strike {
  text-decoration: line-through;
  color: #CC0000;
  display: block;
  clear: both;
  opacity: 0.5;
}

.payment-form {
  padding: 12px;
  float: left;
  width: 100%;
}

.stripeElement {
  border: 1px solid #ddd;
  padding: 12px 12px;
  display: block;
  width: 100%;
}

.activitycategory_menu {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  float: left;
}

.activitycategory_menu li {
  float: left;
  margin: 0 6px 6px 0;
}

.outerButton {
  float: left;
  width: 100%;
}

.outerButton .payBillButton {
  float: right;
}

.cc_errors {
  float: left;
  width: 100%;
}

.cc_errors.active {
  padding: 6px 12px;
  background: #FF5C26;
  color: #fff;
  margin-bottom: 12px;
  border-radius: 3px;
}

#payment-form {
  background-color: #fff;
}

#payment-form * {
  font-family: Arial;
  font-size: 16px;
  font-weight: 500;
}

#payment-form h2 {
  font-size: 1.4em;
  font-weight: bold;
}

#payment-form .row {
  display: flex;
  margin: 10px 5px 10px;
}

#payment-form .field {
  position: relative;
  width: 100%;
  height: 50px;
  margin: 0 10px;
}

#payment-form .field.half-width {
  width: 50%;
}

#payment-form .field.quarter-width {
  width: calc(25% - 10px);
}

#payment-form .baseline {
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: #cfd7df;
  transition: background-color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#payment-form label {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 8px;
  color: #cfd7df;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transform-origin: 0 50%;
  cursor: text;
  pointer-events: none;
  transition-property: color, transform;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

#payment-form .input {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  padding-bottom: 7px;
  color: #32325d;
  padding: 8px 12px;
  background-color: transparent;
  margin-bottom: 3px;
}

#payment-form .StripeElement {
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: opacity;
}

#payment-form .input::-webkit-input-placeholder {
  color: transparent;
  transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#payment-form .input::-moz-placeholder {
  color: transparent;
  transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#payment-form .input:-ms-input-placeholder {
  color: transparent;
  transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#payment-form .input.focused,
#payment-form .input:not(.empty) {
  opacity: 1;
}

#payment-form .input.focused::-webkit-input-placeholder,
#payment-form .input:not(.empty)::-webkit-input-placeholder {
  color: #cfd7df;
}

#payment-form .input.focused::-moz-placeholder,
#payment-form .input:not(.empty)::-moz-placeholder {
  color: #cfd7df;
}

#payment-form .input.focused:-ms-input-placeholder,
#payment-form .input:not(.empty):-ms-input-placeholder {
  color: #cfd7df;
}

#payment-form .input.focused + label,
#payment-form .input:not(.empty) + label {
  color: #aab7c4;
  transform: scale(0.85) translateY(-30px);
  cursor: default;
}

#payment-form .input.focused + label {
  color: #24b47e;
}

#payment-form .input.invalid + label {
  color: #ffa27b;
}

#payment-form .input.focused + label + .baseline {
  background-color: #24b47e;
}

#payment-form .input.focused.invalid + label + .baseline {
  background-color: #e25950;
}

#payment-form input,
#payment-form button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border-style: none;
  -webkit-animation: 1ms void-animation-out;
          animation: 1ms void-animation-out;
}

#payment-form input:-webkit-autofill {
  -webkit-text-fill-color: #e39f48;
  transition: background-color 100000000s;
  -webkit-animation: 1ms void-animation-out;
          animation: 1ms void-animation-out;
}

#payment-form .StripeElement--webkit-autofill {
  background: transparent !important;
}

#payment-form button {
  display: block;
  width: calc(100% - 30px);
  height: 40px;
  margin: 40px 15px 0;
  background-color: #24b47e;
  border-radius: 4px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
}

#payment-form .error {
  display: block;
  width: 100%;
  text-align: center;
  margin: 12px 0;
}

#payment-form .error .message {
  color: #e25950;
}

#payment-form .success .icon .border {
  stroke: #abe9d2;
}

#payment-form .success .icon .checkmark {
  stroke: #24b47e;
}

#payment-form .success .title {
  color: #32325d;
  font-size: 16px !important;
}

#payment-form .success .message {
  color: #8898aa;
  font-size: 13px !important;
}

#payment-form .success .reset path {
  fill: #24b47e;
}

