@import url(https://fonts.googleapis.com/css?family=Nunito+Sans:300,400,700,800&display=swap);/* DayPicker styles */

.DayPicker {
  display: inline-block;
  font-size: 1rem;
}

.DayPicker-wrapper {
  position: relative;

  flex-direction: row;
  padding-bottom: 1em;

  -webkit-user-select: none;

     -moz-user-select: none;

      -ms-user-select: none;

          user-select: none;
}

.DayPicker-Months {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.DayPicker-Month {
  display: table;
  margin: 0 1em;
  margin-top: 1em;
  border-spacing: 0;
  border-collapse: collapse;

  -webkit-user-select: none;

     -moz-user-select: none;

      -ms-user-select: none;

          user-select: none;
}

.DayPicker-NavBar {
}

.DayPicker-NavButton {
  position: absolute;
  top: 1em;
  right: 1.5em;
  left: auto;

  display: inline-block;
  margin-top: 2px;
  width: 1.25em;
  height: 1.25em;
  background-position: center;
  background-size: 50%;
  background-repeat: no-repeat;
  color: #8B9898;
  cursor: pointer;
}

.DayPicker-NavButton:hover {
  opacity: 0.8;
}

.DayPicker-NavButton--prev {
  margin-right: 1.5em;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAwCAYAAAB5R9gVAAAABGdBTUEAALGPC/xhBQAAAVVJREFUWAnN2G0KgjAYwPHpGfRkaZeqvgQaK+hY3SUHrk1YzNLay/OiEFp92I+/Mp2F2Mh2lLISWnflFjzH263RQjzMZ19wgs73ez0o1WmtW+dgA01VxrE3p6l2GLsnBy1VYQOtVSEH/atCCgqpQgKKqYIOiq2CBkqtggLKqQIKgqgCBjpJ2Y5CdJ+zrT9A7HHSTA1dxUdHgzCqJIEwq0SDsKsEg6iqBIEoq/wEcVRZBXFV+QJxV5mBtlDFB5VjYTaGZ2sf4R9PM7U9ZU+lLuaetPP/5Die3ToO1+u+MKtHs06qODB2zBnI/jBd4MPQm1VkY79Tb18gB+C62FdBFsZR6yeIo1YQiLJWMIiqVjQIu1YSCLNWFgijVjYIuhYYCKoWKAiiFgoopxYaKLUWOii2FgkophYp6F3r42W5A9s9OcgNvva8xQaysKXlFytoqdYmQH6tF3toSUo0INq9AAAAAElFTkSuQmCC');
}

.DayPicker-NavButton--next {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAwCAYAAAB5R9gVAAAABGdBTUEAALGPC/xhBQAAAXRJREFUWAnN119ugjAcwPHWzJ1gnmxzB/BBE0n24m4xfNkTaOL7wOtsl3AXMMb+Vjaa1BG00N8fSEibPpAP3xAKKs2yjzTPH9RAjhEo9WzPr/Vm8zgE0+gXATAxxuxtqeJ9t5tIwv5AtQAApsfT6TPdbp+kUBcgVwvO51KqVhMkXKsVJFXrOkigVhCIs1Y4iKlWZxB1rX4gwlpRIIpa8SDkWmggrFq4IIRaJKCYWnSgnrXIQV1r8YD+1Vrn+bReagysIFfLABRt31v8oBu1xEBttfRbltmfjgEcWh9snUS2kNdBK6WN1vrOWxObWsz+fjxevsxmB1GQDfINWiev83nhaoiB/CoOU438oPrhXS0WpQ9xc1ZQWxWHqUYe0I0qrKCQKjygDlXIQV2r0IF6ViEBxVTBBSFUQQNhVYkHIVeJAtkNsbQ7c1LtzP6FsObhb2rCKv7NBIGoq4SDmKoEgTirXAcJVGkFSVVpgoSrXICGUMUH/QBZNSUy5XWUhwAAAABJRU5ErkJggg==');
}

.DayPicker-NavButton--interactionDisabled {
  display: none;
}

.DayPicker-Caption {
  display: table-caption;
  margin-bottom: 0.5em;
  padding: 0 0.5em;
  text-align: left;
}

.DayPicker-Caption > div {
  font-weight: 500;
  font-size: 1.15em;
}

.DayPicker-Weekdays {
  display: table-header-group;
  margin-top: 1em;
}

.DayPicker-WeekdaysRow {
  display: table-row;
}

.DayPicker-Weekday {
  display: table-cell;
  padding: 0.5em;
  color: #8B9898;
  text-align: center;
  font-size: 0.875em;
}

.DayPicker-Weekday abbr[title] {
  border-bottom: none;
  text-decoration: none;
}

.DayPicker-Body {
  display: table-row-group;
}

.DayPicker-Week {
  display: table-row;
}

.DayPicker-Day {
  display: table-cell;
  padding: 0.5em;
  border-radius: 50%;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
}

.DayPicker-WeekNumber {
  display: table-cell;
  padding: 0.5em;
  min-width: 1em;
  border-right: 1px solid #EAECEC;
  color: #8B9898;
  vertical-align: middle;
  text-align: right;
  font-size: 0.75em;
  cursor: pointer;
}

.DayPicker--interactionDisabled .DayPicker-Day {
  cursor: default;
}

.DayPicker-Footer {
  padding-top: 0.5em;
}

.DayPicker-TodayButton {
  border: none;
  background-color: transparent;
  background-image: none;
  box-shadow: none;
  color: #4A90E2;
  font-size: 0.875em;
  cursor: pointer;
}

/* Default modifiers */

.DayPicker-Day--today {
  color: #D0021B;
  font-weight: 700;
}

.DayPicker-Day--outside {
  color: #8B9898;
  cursor: default;
}

.DayPicker-Day--disabled {
  color: #DCE0E0;
  cursor: default;
  /* background-color: #eff1f1; */
}

/* Example modifiers */

.DayPicker-Day--sunday {
  background-color: #F7F8F8;
}

.DayPicker-Day--sunday:not(.DayPicker-Day--today) {
  color: #DCE0E0;
}

.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside) {
  position: relative;

  background-color: #4A90E2;
  color: #F0F8FF;
}

.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside):hover {
  background-color: #51A0FA;
}

.DayPicker:not(.DayPicker--interactionDisabled)
  .DayPicker-Day:not(.DayPicker-Day--disabled):not(.DayPicker-Day--selected):not(.DayPicker-Day--outside):hover {
  background-color: #F0F8FF;
}

/* DayPickerInput */

.DayPickerInput {
  display: inline-block;
}

.DayPickerInput-OverlayWrapper {
  position: relative;
}

.DayPickerInput-Overlay {
  position: absolute;
  left: 0;
  z-index: 1;

  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}
.invoice-content{border:1px solid #ddd;width:800px;padding:30px;font-family:"Nunito"}.invoice-content .logo-container{text-align:right}.invoice-content h1{font-size:50px;color:#ddd;margin-bottom:5px}.invoice-content h2{margin-bottom:0}.invoice-content h4{text-transform:none;font-size:16px;margin-bottom:2px;font-weight:bold}.invoice-content p{margin-top:0}.invoice-content table{margin-bottom:20px}.invoice-content .receipt-info td:first-child{width:200px}.invoice-content table.inventory{margin-top:40px;width:100%}.invoice-content table.inventory td:nth-child(1){width:400px}.invoice-content table.inventory tr th{background-color:transparent;color:#000;border-bottom:1px solid;font-size:16px;font-weight:bold;padding:8px 0}.invoice-content table.inventory tr td{padding:8px 0}.invoice-content table.inventory tr.subtotal td{border-top:1px solid #aaa}.invoice-content table.inventory tr.taxes td{border-bottom:1px solid #000}.invoice-content table.inventory tr.final-total td{font-weight:bold}.cherish{font-family:"Nunito Sans",sans-serif}.cherish a{color:#1a81e2}.cherish p{margin-bottom:30px}.cherish .pill-tag{background-color:#ccc;border-radius:100px;padding:1px 10px;color:#555;font-size:11px}.cherish select{font-size:16px}.cherish button{border:none;font-size:16px;height:auto;width:auto;padding:10px 15px;border-radius:4px;margin-bottom:5px}.cherish button.good-action{color:#0fa11c;background-color:#cefad2}.cherish button.good-action:hover{color:#0b7214;background-color:#88f492}.cherish button.disabled{color:#888;background-color:#ccc;cursor:default}.cherish button.disabled:hover{cursor:default}.cherish button.secondary-action{color:#1a81e2;background-color:#cfe5f9}.cherish button.secondary-action:hover{color:#1567b4;background-color:#a1ccf4}.cherish button.neutral-action{color:#181818;background-color:#d7d7d7}.cherish button.neutral-action:hover{color:#181818;background-color:#b1b1b1}.cherish button.revert-action{color:#d86f0e;background-color:#fad8b8}.cherish button.revert-action:hover{color:#d86f0e;background-color:#f7be88}.cherish button.inline-button{font-size:11px;padding:5px 8px;margin:5px 10px}.cherish button.large-button{font-size:32px;padding:16px 24px;font-weight:normal;line-height:normal}.cherish-notice{color:#0f4d87;background-color:#cfe5f9;border-radius:12px;padding:20px 30px;margin-bottom:20px;margin-top:20px;font-size:16px}.cherish-notice em{font-weight:560}.cherish-container{background:#fff;box-shadow:0 2px 50px 0 rgba(0,0,0,.1);border-radius:12px;margin-bottom:40px;padding:10px 30px}.cherish-stats-container{display:flex;margin-bottom:20px}.cherish-stats-container .stats{flex:1 1 0;padding:10px 30px;text-align:center;border-left:2px solid #ddd}.cherish-stats-container .stats .number{font-size:20px;font-weight:bold;color:#111}.cherish-stats-container .stats .description{font-size:14px;color:#555}.cherish-stats-container .stats:last-child{border-right:2px solid #eee}.cherish-table{display:grid;width:100%;margin-bottom:0}.cherish-table thead,.cherish-table tbody,.cherish-table tr{display:contents}.cherish-table td{padding:20px 15px 20px 0;border-top:1px solid #ddd}.cherish-table td:last-child{padding-right:0}.cherish-table tr:first-child td{border-top:0}.cherish-table th{padding:6px 15px 6px 0;background-color:transparent;color:#000;font-weight:bold;text-transform:uppercase;border-bottom:2px solid #000}.cherish-table tr:first-child td{border-top:0}.cherish-table.has-header tr:nth-child(2) td{border-top:0}.cherish-table.compact td{padding:5px 15px 5px 0;font-size:12px}.cherish-form-table{display:grid;grid-template-columns:1fr;margin-bottom:50px}.cherish-form-table .row{padding-bottom:20px}.cherish-form-table label{display:block;margin-bottom:5px;font-size:14px}.cherish-form-table .error-message{color:#bb2121;font-weight:bold}.cherish-form-table .textbox-label-dollar input[type=text]{width:calc(100% - 60px);max-width:240px}.cherish-form-table .textbox-label-shortlink input[type=text]{width:calc(100% - 193px);max-width:107px}.cherish-form-table .textbox-label{position:relative;display:flex;width:fit-content;border-radius:4px;border:2px solid #ddd}.cherish-form-table .textbox-label .label{background-color:#eee;color:#444;height:100%;display:flex;align-items:center;justify-content:center;border-radius:4px 0 0 4px;padding:10px 15px;z-index:1;font-size:15px}.cherish-form-table .textbox-label input[type=text]{position:relative;z-index:2;background-color:transparent;display:flex;border:0px;padding-left:4px}.cherish-form-table .textbox-label input:focus+span{background-color:#dce4ec}.cherish-form-table input[type=text],.cherish-form-table textarea{overflow:visible;font-size:15px;font-family:"Nunito Sans",sans-serif;display:block;width:calc(100% - 26px);max-width:274px;padding:10px 13px;border-radius:4px;border:2px solid #ddd;outline:none}.cherish-form-table input[type=text].short,.cherish-form-table textarea.short{width:60px}.cherish-form-table input[type=text].disabled,.cherish-form-table textarea.disabled{background-color:#eee;color:#999}.cherish-form-table input[type=text].disabled:focus,.cherish-form-table textarea.disabled:focus{border:2px solid #ddd}.cherish-form-table input[type=text]::placeholder,.cherish-form-table textarea::placeholder{color:#ccc}.cherish-form-table input[type=text]:focus,.cherish-form-table textarea:focus{border-color:#1a81e2}.cherish-form-table textarea{max-width:none}.bottom-description{font-size:13px;margin-top:5px;color:#888}.bottom-description em{color:#333;font-weight:600}.manager-user-profiles .cherish-table{grid-template-columns:minmax(150px, 250px) auto 140px}.manager-user-profiles .cherish-table button{margin-bottom:0}.manager-user-profiles .cherish-table td.details-container{grid-column:1/4;padding:20px !important;border:none !important;background-color:#f3f3f3;margin-bottom:20px;border-radius:5px}.manager-user-profiles .cherish-table td.details-container .cherish-form-table{margin-bottom:0}.manager-user-profiles .cherish-table .vertical-center{display:flex;align-items:center}.manager-user-profiles .cherish-table .vertical-center div{width:100%}.shortlink .cherish-table{grid-template-columns:minmax(350px, auto) auto auto auto}.shortlink .shortlink-id{font-size:26px;font-weight:600}.shortlink .redirect-links{text-overflow:ellipsis;width:100%;font-size:13px;white-space:nowrap;overflow:hidden}.shortlink .shortlink-baseurl{color:#aaa}.shortlink .shortlink-url{font-weight:600}.shortlink .datetime-text{font-size:14px;font-weight:600}.shortlink .creator-text{font-size:13px;color:#888}.shortlink .views-text{font-size:12px;color:#888;text-align:center}.shortlink .views-number{line-height:20px;font-size:24px;font-weight:800;text-align:center}.shortlink .vertical-center{display:flex;align-items:center}.shortlink .vertical-center div{width:100%}.shortlink .view-details{margin-right:7px}.shortlink .arrow{color:#ccc}.shortlink .cherish-table td.details-container{grid-column:1/5;padding:20px !important;border:none !important;background-color:#eee;margin-bottom:20px}.shortlink .details-table{display:grid;grid-template-columns:100px 100px auto}.shortlink .details-table .overview{padding:20px}.shortlink .details-table .views-number{font-size:30px;margin-bottom:5px}.shortlink .details-table .views-text{font-size:14px;color:#999;line-height:15px}.shortlink .user-listing-table{display:grid;grid-template-columns:auto auto auto auto;height:fit-content}.shortlink .user-listing-group{display:contents}.shortlink .user-listing-group div{padding:8px 8px 8px 0;border-bottom:1px solid #999;font-size:13px}.shortlink .user-listing-group div:last-child{text-align:right}.shortlink .user-listing-group div.link-creator{white-space:nowrap;text-align:right}.shortlink .user-listing-group:last-child div{border-bottom:none}.create-special-payment .full-link-label{font-size:14px;color:#aaa;margin-bottom:5px}.create-special-payment .custom-payment-link-container{padding:10px 15px;font-size:14px;font-family:monospace;background-color:#eee;border-radius:4px;box-shadow:0 0 10px inset rgba(0,0,0,.1);user-select:none}.create-special-payment .copy-hint{margin-top:5px;margin-bottom:20px;font-size:15px;color:#888}.create-special-payment .additional-actions button{margin-right:10px}html{height:100%}body{font-family:sans-serif;line-height:normal;height:100%}h1{font-size:16px;font-weight:600;margin-bottom:20px;color:#555;text-transform:uppercase}h1 .logo{font-size:13px;color:#999;text-transform:none}h2{font-size:24px;font-weight:bold;margin-bottom:10px}h3{font-size:18px;margin-bottom:15px;font-weight:400;color:#666}h4{text-transform:uppercase;font-size:12px;font-weight:600}.link-block{margin-bottom:30px;border:1px solid #ddd;border-radius:3px;display:inline-block;vertical-align:top;padding:20px 20px 10px;margin-right:10px}.link-museum{color:#e29117}.link-magic{color:#7f0099}.important-links h3{margin-top:15px}.important-links .link-item{margin-bottom:5px}.important-links .important-links-notes{color:#aaa;margin-left:5px;font-size:12px}a{color:#090086}ul li{margin-bottom:5px}nav{display:inline-block;vertical-align:top;flex-shrink:0;margin:0 30px 20px 0}nav ul{margin-bottom:15px}nav ul li{margin-bottom:0}nav a{text-decoration:none;color:#666;display:inline-block;margin:0 5px 6px 0;font-size:15px}nav a:hover{color:#000}p{margin:10px 0;line-height:1.4em}button,.link-button{cursor:pointer;font-size:14px;padding:4px 9px;font-weight:bold;border:1px solid #aaa;border-radius:2px;outline:none;color:#444;background-color:#eee;margin-bottom:10px;transition:.2s all;text-decoration:none;line-height:16px;vertical-align:top}button:hover,.link-button:hover{color:#000;border-color:#000;background-color:#fff;transition:.2s all}button.manage-slots-submit,.link-button.manage-slots-submit{text-decoration:none;padding:5px 10px;background-color:#ff4500;color:#fff;display:inline-block;margin-bottom:5px;border:none}button.manage-slots-submit:hover,.link-button.manage-slots-submit:hover{opacity:.2}button.delete-button,.link-button.delete-button{color:#fff;font-size:16px;background-color:#c42121;border-color:#7e1919}button.disabled,.link-button.disabled{opacity:.3;cursor:not-allowed}.session-photo-container{background-color:#ddd;display:inline-block;padding:20px;margin-bottom:20px}.session-photo-container img{margin-bottom:8px}.session-photo-container select{font-size:13px;font-family:sans-serif;margin-bottom:3px}.session-photo-container .do-not-post{font-size:12px;color:#666}#logout{cursor:pointer;color:#000;font-weight:700}.nav-title{margin-bottom:6px;color:#8809ff;font-weight:700;font-size:12px;padding:2px 10px 2px 0;text-transform:uppercase}.nav-title.bookings-title{color:#df4600}.nav-version{margin-bottom:6px;color:#aaa;font-weight:700;font-size:12px;padding:2px 10px 2px 0}.top-bar{position:fixed;z-index:10;left:0;right:0;top:0px;padding:5px 30px;background-color:#eee;font-size:13px;color:#999;border-top:4px solid #333}.top-bar em{color:#8809ff;font-weight:600}.main-container{display:flex;overflow:hidden;padding:60px 30px 0px}.container{vertical-align:top;flex-grow:1}strong{font-weight:bold}.help-text{font-style:oblique;font-size:12px;color:#aaa}#specialpayment{width:400px}.slack-quote{color:#999;font-size:15px;margin-bottom:20px;line-height:20px}table.main-booking-table tr:not(.spacer-row){box-shadow:1px 1px 30px rgba(0,0,0,.1)}table.main-booking-table tr td{background-color:#fff}table.main-booking-table tr td .time-info{font-size:19px;font-weight:bold}table.main-booking-table tr td .date-info{font-size:15px}table{margin-bottom:30px}table tr.spacer-row{height:8px}table tr.spacer-row td{background-color:transparent}table tr th{text-align:left;padding:4px 7px;font-size:14px;background-color:#333;color:#eee}table tr td.first-day-divider{background-color:#000;padding:13px 15px;font-size:16px;text-transform:uppercase;font-weight:bold;letter-spacing:1px;color:#fff}table tr.timeslot td.date-time-info div.photo-upload input[type=file]{display:none}table tr.timeslot td.date-time-info div.photo-upload .photo-uploader{font-size:15px;padding:5px 10px;border:1px solid #555;border-radius:2px;outline:none;color:#444;background-color:#eee;font-weight:bold;margin:10px 0}table tr.timeslot td.date-time-info div.photo-upload .photo-uploader:hover{cursor:pointer;color:#000;border-color:#000;background-color:#fff;transition:.2s all}table tr.timeslot td.date-time-info div.photo-list ul li button+button{margin-left:5px}table tr.timeslot td.room-type-cell{padding:0;border-right:1px solid #fff;color:rgba(255,255,255,.8);padding:10px 5px;font-size:12px;text-transform:uppercase;height:100%;vertical-align:top}table tr.timeslot td.room-type-cell.room-museum-text{background-color:#e29117;border-color:#85560e}table tr.timeslot td.room-type-cell.room-magic-text{background-color:#7f0099;border-color:#2a0033}table tr.timeslot td.room-type-cell.room-storyteller-text{background-color:#07a74d;border-color:#034520}table tr.has-bookings td{background-color:#bbe7c5}table tr.slot-full td{background-color:#50c070}table tr.slot-blocked td{color:#444 !important;background-color:#777 !important;border-color:#666 !important}table tr.valid-proposal td{background-color:#6f6 !important}table tr.invalid-proposal td{background-color:#f22 !important}table tr input[type=button]{font-size:15px;padding:5px 10px;border:1px solid #555;border-radius:2px;outline:none;color:#444;background-color:#eee}table tr input[type=button]:hover{cursor:pointer}table tr.timeslot>td{padding:10px 10px 10px 10px;vertical-align:top}table tr.timeslot>td table{margin-bottom:0px;width:100%}table tr.timeslot>td table tr{box-shadow:none !important;border-bottom:1px solid rgba(0,0,0,.2);padding-bottom:10px}table tr.timeslot>td table tr td{display:inline-block;overflow-x:scroll;padding-bottom:10px;white-space:nowrap;line-height:20px;margin-top:10px}table tr.timeslot>td table tr td.time-slot-info{overflow:visible}table tr.timeslot>td table tr td .action-container{display:block;margin-top:10px}table tr.timeslot>td table tr td .time-slot-info-actions{text-align:left;display:block}table tr.timeslot>td table tr td .time-slot-info-actions button,table tr.timeslot>td table tr td .time-slot-info-actions .link-button{display:inline-block;margin-right:5px;margin-bottom:0}table tr.timeslot>td table tr td .secondary-information{font-size:15px;line-height:18px;opacity:.6}table tr.timeslot>td table tr td .signup-source{display:inline-block;background-color:#333 !important;font-size:10px;border-radius:3px;padding:4px 8px;line-height:normal;padding-bottom:4px !important;color:#eee;font-weight:normal;margin-top:5px}table tr.timeslot>td table tr td .payment-status-note{display:inline-block;font-size:10px;border-radius:3px;padding:0 6px;margin-left:0;color:#eee;font-weight:normal;margin-top:5px;text-transform:uppercase;letter-spacing:1px;margin-right:5px}table tr.timeslot>td table tr td .has-paid{background-color:#44a031 !important}table tr.timeslot>td table tr td .not-paid{background-color:#a71414 !important}table tr.timeslot>td table tr td .coupon-name{background-color:#666;color:#fff}table tr.timeslot>td table tr td .coupon-name .dem{opacity:.4}table tr.timeslot>td table tr td .survey-result-link{background:#333;border-radius:3px;color:#eee;cursor:pointer;font-size:10px;padding:4px 8px 4px;margin-left:5px}table tr.timeslot>td table tr td .survey-result-link:hover{background:#888}table tr.timeslot>td table tr:first-child td{margin-top:3px}table tr.timeslot>td table tr:last-child{border:none}table tr.timeslot>td table tr:last-child td{padding-bottom:0}table tr td.error{color:red}table tr.day-of-week-slots.add-slot-row{border-top:1px solid #ccc}table tr.day-of-week-slots.add-slot-row td{padding-top:10px}table tr.day-of-week-slots td.remove-slot,table tr.day-of-week-slots td.add-slot{padding-left:10px}table .time-slot-actions button{display:block;margin-bottom:10px}.waiver-count{font-size:14px;background-color:#000;border-radius:100px;color:rgba(255,255,255,.8);padding:2px 15px 1px;display:inline-block;margin:5px 10px 10px 0}.waiver-count em{color:#fff;font-weight:bold}.booking-waiver-hint{margin-bottom:10px;width:100%;padding:10px 0;background-color:#eee;border-radius:5px}.waiver-filled-info{font-size:13px;border-radius:4px;padding:2px 7px;margin-top:5px;background:rgba(255,255,255,.3);display:inline-block}.waiver-filled-info .waiver-name{color:#000}.waiver-filled-info .waiver-email{color:rgba(0,0,0,.7)}.waiver-filled-info .waiver-grid{display:grid;grid-template-columns:1fr min-content;column-gap:10px}.waiver-filled-info .waiver-row{display:contents}.waiver-filled-info .minor{background-color:#888;color:#fff;display:inline-block;padding:2px 3px;border-radius:10px;font-size:11px;line-height:11px;font-weight:bold}.waiver-filled-info .cover{background-color:rgba(0,0,0,.8);position:fixed;left:0;top:0;right:0;bottom:0;display:flex;align-items:center;z-index:999;justify-content:center}.waiver-filled-info .cover .content{background-color:#fff;width:100%;max-width:600px;padding:30px;margin:20px 20px;border-radius:20px;text-align:center}.waiver-filled-info .cover input[type=text]{font-size:18px;margin-top:20px;box-sizing:border-box;width:100%;padding:5px 10px}.manager .error{color:red;margin:10px 0}.manager .month-form label{margin:0 10px}.manager .month-form label:first-child{margin-left:0}.manager .month-form input[type=submit]{margin-left:10px}.manager .success{color:green;margin:10px 0}.manager h3{font-weight:600;margin:20px 0}.manager h4{margin:15px 0}.survey-table td{padding:3px 3px 10px}.survey-table [data-text],.survey-table .date-time{color:#eee;background-color:#333;padding:3px 5px}.survey-table .time-info{color:#999;margin-left:10px}.survey-table [data-text]::after{content:attr(data-text)}.survey-table .notes-column{min-width:100px}.survey-table .image-column{vertical-align:bottom}.survey-table-small{font-size:12px}.manage-slots-form{padding:10px 0;border-top:solid;border-bottom:solid;border-width:3px;border-color:#000;width:200px;position:fixed;left:620px;top:75px}.manage-slots-form label,.manage-slots-form input,.manage-slots-form div{margin-bottom:10px}.manage-slots-form label.form-message,.manage-slots-form input.form-message,.manage-slots-form div.form-message{margin-top:10px;font-size:12px;color:red}.manage-slots-table table tbody tr>td table tr td{overflow-x:hidden}.cake-line{padding:2px;margin-bottom:5px}textarea,.simulated-textarea{font-family:sans-serif;border-radius:2px;font-size:13px;width:130px;height:100px;padding:5px;outline:none;border:1px solid rgba(0,0,0,.2);margin-bottom:3px}textarea:focus,.simulated-textarea:focus{opacity:1;border-color:#000}.notes-editor .simulated-textarea{height:initial}.notes-editor .simulated-textarea-placeholder{font-size:11px;color:rgba(0,0,0,.4)}.notes-editor .click-to-edit-memo{font-size:11px;opacity:.4}.notes-editor .save-note-button{animation:important-save-green .5s ease-in-out infinite alternate;border:1px solid #000}.has-bookings .save-note-button{animation-name:important-save}@keyframes important-save{0%{box-shadow:0px 0px 0px 1px rgba(255,255,255,.5)}100%{box-shadow:0px 0px 0px 4px #fff}}@keyframes important-save-green{0%{box-shadow:0px 0px 0px 1px rgba(15,121,0,.5)}100%{box-shadow:0px 0px 0px 4px #18a80b}}.adding-booking-type{display:flex;width:auto;flex-wrap:wrap}.adding-booking-type .option{background:#cfe5f9;border-radius:5px;min-width:240px;padding:20px;flex:1 1 0px;margin-bottom:10px;margin-right:10px;transition:.1s all;box-shadow:0 0 40px rgba(0,0,0,.1)}.adding-booking-type .option .option-info{line-height:24px}.adding-booking-type .option .option-title{font-size:18px;text-transform:uppercase;font-weight:700;color:rgba(0,0,0,.2);margin-bottom:0;padding-bottom:3px}.adding-booking-type .option .option-subtitle{font-size:12px;margin-bottom:10px;color:rgba(0,0,0,.6)}.adding-booking-type .option:hover{transition:.1s all;background:#dcecfb;cursor:pointer}.room-selector{margin:10px 0 20px}.room-selector select{font-size:17px}.room-selector label{margin-right:10px}.day-of-week-table{border-bottom:1px solid #ccc}.day-of-week-table .day-of-week-column{border-left:1px solid #ccc;border-right:1px solid #ccc;padding:10px 10px 0}.calendar-selector{display:inline-block;margin-right:20px}.calendar-selector .calendar-selector-label label{display:inline-block;font-weight:600;margin-right:5px}.calendar-selector .calendar-selector-label div{display:inline-block}.calendar-selector .DayPicker{border:1px solid #ccc;margin-top:10px}.date-range-selector{margin:20px 0 30px}.date-range-selector .error{color:red;margin-bottom:10px}.date-range-selector .add-slots-button{vertical-align:top}.day-time-slot-editor{margin-top:20px}.day-time-slot-editor .day-time-slot-editor-calendar{vertical-align:top}.day-time-slot-editor .day-time-slot-editor-table{display:inline-block;margin-left:20px}.day-time-slot-editor .day-time-slot-editor-table tbody td{padding:10px}.day-time-slot-editor .day-time-slot-editor-table .proposed-slot{color:green}.day-time-slot-editor .add-slots-button{vertical-align:top;margin-left:20px}.day-time-slot-editor .add-slots-button:disabled{opacity:.5}.dialog{position:fixed;top:0;left:0;z-index:11;width:100%;height:100%;background:rgba(0,0,0,.8);display:flex;align-items:center;justify-content:center}.edit-booking-form{padding:20px;background:#fff;box-shadow:0px 0px 15px #000}.survey-results{box-shadow:0px 0px 15px #000;padding:20px;background:#fff;width:500px}.survey-results table td{padding:6px 15px 0 0}.survey-results h3{margin-bottom:10px}.survey-results .survey-result .survey-question{display:inline-block;width:250px;font-weight:700;text-transform:capitalize}.survey-results .survey-result .survey-answer{display:inline-block}.survey-results .survey-results-footer{margin-top:20px}.edit-booking-form,.new-booking-form{width:720px}.edit-booking-form .edit-booking-form-container,.new-booking-form .edit-booking-form-container{display:flex}.edit-booking-form em,.new-booking-form em{font-style:italic;font-size:12px;margin-bottom:15px;display:block;color:#555}.edit-booking-form h4,.new-booking-form h4{font-size:18px;font-weight:600;margin-bottom:5px}.edit-booking-form .original,.new-booking-form .original{margin-bottom:20px}.edit-booking-form .original label,.new-booking-form .original label{font-weight:600;color:#555;margin-right:5px}.edit-booking-form .preselected-calendar-container,.new-booking-form .preselected-calendar-container{width:310px;margin-right:20px}.edit-booking-form .preselected-calendar-container label,.new-booking-form .preselected-calendar-container label{font-weight:600}.edit-booking-form .edit-booking-form-calendar,.new-booking-form .edit-booking-form-calendar{vertical-align:top;width:310px}.edit-booking-form .edit-booking-form-calendar .booking-slot,.new-booking-form .edit-booking-form-calendar .booking-slot{color:#ccc}.edit-booking-form .edit-booking-form-calendar .booking-slot.has-slots,.new-booking-form .edit-booking-form-calendar .booking-slot.has-slots{color:#000;font-weight:700}.edit-booking-form .edit-preselected-value,.new-booking-form .edit-preselected-value{display:inline-block;padding:3px 5px;border-radius:4px;border:1px solid #aaa;text-transform:uppercase;font-size:12px;position:relative;margin-left:5px;top:-2px}.edit-booking-form .edit-preselected-value:hover,.new-booking-form .edit-preselected-value:hover{border:1px solid #000;cursor:pointer}.edit-booking-form .error,.new-booking-form .error{color:red}.edit-booking-form .edit-booking-form-contents,.new-booking-form .edit-booking-form-contents{display:inline-block}.edit-booking-form .edit-booking-form-contents .form-row,.new-booking-form .edit-booking-form-contents .form-row{margin-bottom:10px}.edit-booking-form .edit-booking-form-contents .form-row label,.new-booking-form .edit-booking-form-contents .form-row label{color:#555;display:inline-block;width:150px}.edit-booking-form .edit-booking-form-contents .form-row .walkup,.new-booking-form .edit-booking-form-contents .form-row .walkup{padding:6px 10px;border:1px solid #aaa;width:100%;margin-bottom:10px;border-radius:3px;background-color:#fafafa;transition:.2s all;width:360px}.edit-booking-form .edit-booking-form-contents .form-row .walkup input[type=checkbox],.new-booking-form .edit-booking-form-contents .form-row .walkup input[type=checkbox]{margin-right:8px;width:15px;height:15px}.edit-booking-form .edit-booking-form-contents .form-row .walkup:hover,.new-booking-form .edit-booking-form-contents .form-row .walkup:hover{cursor:pointer;background-color:#fff;border-color:#333;color:#000}.edit-booking-form .edit-booking-form-contents .form-row .walkup-notice,.new-booking-form .edit-booking-form-contents .form-row .walkup-notice{font-size:13px;max-width:360px;line-height:17px;color:#555;margin-bottom:15px}.edit-booking-form .edit-booking-form-contents .form-row input[type=text],.new-booking-form .edit-booking-form-contents .form-row input[type=text]{height:25px;line-height:25px;font-size:14px;padding:0 3px}.edit-booking-form .edit-booking-form-footer,.new-booking-form .edit-booking-form-footer{margin-top:30px}.edit-booking-form .edit-booking-form-footer .confirm-prompt,.new-booking-form .edit-booking-form-footer .confirm-prompt{padding:20px;border-radius:4px;background-color:#eee;margin-bottom:20px}.edit-booking-form .edit-booking-form-footer p,.new-booking-form .edit-booking-form-footer p{font-size:16px;margin-bottom:0}.edit-booking-form .edit-booking-form-footer p em,.new-booking-form .edit-booking-form-footer p em{font-style:normal;font-size:16px;display:inline;color:#000;font-weight:bold}.edit-booking-form .edit-booking-form-footer button,.new-booking-form .edit-booking-form-footer button{cursor:pointer;margin-right:10px;margin-bottom:0}.edit-booking-form .edit-booking-form-footer button.save,.new-booking-form .edit-booking-form-footer button.save{background:green;border-color:#006400;color:#fff}.add-coupon-form .form-row{display:block;margin-bottom:10px}.add-coupon-form .form-row .form-label{display:inline-block;width:150px}.add-coupon-form .form-row .form-label em{color:#999;text-transform:none}.add-coupon-form .form-row input[type=radio]{margin-right:5px}.add-coupon-form .form-row .coupon-type{margin-right:10px}.add-coupon-form input[type=submit]{background:green;border-color:#006400;cursor:pointer;color:#fff;padding:5px 8px;font-size:16px;margin-top:10px}.add-coupon-form input[type=submit]:hover{background:#009a00}.add-coupon-form .error{color:red}.add-coupon-form .success{color:green}.coupon-table .empty-coupons td{padding:5px 0}.coupon-table .coupon td{padding:5px 10px 5px 5px}.new-booking-form{width:inherit}.notice-container{margin-bottom:30px}.online-survey-chart{margin-bottom:20px}.online-survey-chart h3{text-transform:capitalize}.online-survey-chart .chart{margin-top:10px}.online-survey-chart .chart .answer{display:inline-block;width:200px;font-size:12px;vertical-align:middle}.online-survey-chart .chart .bar-container{width:200px;display:inline-block}.online-survey-chart .chart .bar{margin-bottom:10px;height:15px;font-size:10px;background:#ccc}.online-survey-chart .chart .bar .answer-percentage{white-space:nowrap;margin-left:2px;vertical-align:middle}.success-message{padding:8px 12px;background-color:#38a038;border:1px solid #2b7a2b;margin-bottom:10px;color:#fff}.success-message em{display:inline-block;font-weight:bold;font-style:normal;font-size:15px;margin-bottom:0;color:#fff}.phone-tip{padding:8px 12px;background-color:#ffd0b1;border:1px solid #ffb17e;margin-bottom:10px}.phone-tip em{display:inline-block;font-weight:bold;font-style:normal;font-size:15px;margin-bottom:0;color:#000}.home-login-container{height:100%;display:flex;align-items:center;justify-content:center;margin:0 20px}.home-login-container h1{text-transform:none;margin-bottom:10px}.home-login-container img{width:60px;margin-bottom:10px}.home-login-content{text-align:center;background-color:#eee;padding:30px;border:1px solid #ccc;border-radius:3px}#signin-message{line-height:1.4em}.g-signin2{margin:20px auto 0}.g-signin2 .abcRioButtonLightBlue{margin:0 auto;display:inline-block}.important-reminder{margin-top:10px;line-height:1.4em}.important-reminder em{font-weight:700;text-transform:uppercase}.em-action-taker{margin:0px 2px;padding:4px 10px;background-color:#000;color:#fff;font-size:16px;white-space:nowrap;display:inline-block;margin-top:5px;margin-bottom:5px}.em-action-taker .confirmation-action-taker{color:#fff;margin-left:5px;opacity:.5;font-size:16px}.confirmation-area{margin-top:20px}.confirmation-area .emoji{font-size:40px}.scheduler .day-row{border:1px solid #eee;background-color:#fff;border-bottom:2px solid #ddd;border-radius:5px;margin-bottom:8px;display:flex;width:900px;justify-content:space-between;overflow:hidden}.scheduler .day-of-week-label{padding:7px}.scheduler .day-of-week-label .date{margin-top:2px;color:#aaa;font-size:.8em}.scheduler .staff-availability-preference{width:70px;text-align:center}.scheduler .staff-availability-preference .staff-preference-level{margin-top:5px;font-size:13px;font-weight:600}.scheduler .staff-availability-preference .staff-username{font-size:10px}.scheduler .shift-information{border-bottom:1px solid #999;display:flex}.scheduler .shift-information:last-child{border-bottom:none}.scheduler .time-period{background-color:#eee;padding:10px 18px;display:flex;align-items:center;width:120px;font-size:13px}.scheduler .staff-needed{background-color:#ddd;padding:10px 14px;text-align:center}.scheduler .pick-button{background-color:#aaa;color:#fff;padding:10px;width:100px;text-align:center;border-right:1px solid #888}.scheduler .pick-button .yes{text-transform:uppercase;margin-bottom:1px}.scheduler .pick-button .yes-level{font-size:10px;letter-spacing:.4px;text-transform:lowercase;opacity:.8}.scheduler .pick-button:hover{color:#fff;background-color:#333;cursor:pointer}.scheduler .pick-button:last-child{border-right:none}.scheduler .pick-button.selected-button{background-color:#00a800}.scheduler .pick-button.selected-button:hover{background-color:#518051}.page-stale-notification{position:fixed;left:0;right:0;bottom:0;padding:10px 20px;text-align:center;background-color:#ffd0b1}.page-stale-notification em{font-weight:bold}.add-booking-inline-button{margin-top:20px;margin-bottom:10px}.add-booking-inline-button a{font-size:13px;padding:5px 8px;border-radius:4px;border:1px dashed rgba(0,0,0,.2);text-decoration:none;color:rgba(0,0,0,.2);transition:all .2s;display:inline-block}.add-booking-inline-button a:hover{cursor:pointer;transition:all .2s;border:1px dashed rgba(0,0,0,.9);color:rgba(0,0,0,.9)}.timeslot-edit-actions{position:relative}.timeslot-edit-actions .options{padding:3px 3px;border-radius:5px;position:absolute;z-index:99;background-color:#fff;top:30px;left:0px;box-shadow:0 0 30px rgba(0,0,0,.2)}.timeslot-edit-actions .option{padding:5px 22px 5px 18px}.timeslot-edit-actions .option.danger-action{color:#b12222}.timeslot-edit-actions .option.danger-action:hover{background-color:#e0b2b2}.timeslot-edit-actions .option.disabled{color:#aaa}.timeslot-edit-actions .option.disabled:hover{cursor:not-allowed}.timeslot-edit-actions .option:hover{background-color:#b8d9ff;cursor:pointer}@media screen and (max-width: 800px){.manage-slots-form{width:100%;position:relative;left:0px;top:0px;margin-bottom:10px}}@media screen and (max-width: 760px){.top-bar{position:relative}.nav-title{margin-bottom:0px}nav{position:relative;width:100%}nav ul{margin-bottom:8px}nav li{display:inline-block;background-color:#ddd;margin:0 5px 5px 0}nav a{margin:0;padding:5px 8px;font-size:12px}h2{font-size:18px}.main-container{padding:30px 10px 10px;flex-direction:column}.container{margin-left:0;overflow-x:auto}table{font-size:12px}table tr.timeslot>td table tr td .secondary-information{margin-left:none;font-size:11px;line-height:normal}}