@import './collapsible-section-button.css';

html,
body,
body div.account div.book-wrapper {
  height: 100%;
  width: 100%;
}

html {
  font-size: 1px;
}

@media (max-width: 768px) {
  html {
    font-size: 0.57px;
  }
}

body {
  text-align: center;
  font-family: 'Avenir W01', Arial, sans-serif;
  font-size: 0px;
  -webkit-font-smoothing: antialiased;
  height: auto;
  overflow-x: hidden;
}

body.editor {
  overflow: hidden;
}

div.account {
  background: #f7f7f7;
  height: 100%;
}

body.noscroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

a.blue {
  color: #00a7ff;
}

a:active {
  opacity: 0.2 !important;
  transition: none;
}

.mt20 {
  margin-top: 20px;
}

.mt10 {
  margin-top: 10px;
}

.mt40 {
  margin-top: 40px;
}

.fr {
  float: right;
}

.full-width {
  width: 100%;
}

.narrow-container {
  width: 100%;
  max-width: 600px;
  margin: 100px auto;
  display: inline-block;
}

/* Typography
------------------------------------ */

.note {
  font-size: 12px;
  letter-spacing: 0.3;
  opacity: 0.5;
  color: #fff;
  font-style: italic;
  padding: 10px 0;
  display: inline-block;
}

h5 {
  font-size: 12.5px;
  padding: 10px 0 5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: #8e939c;
}

/* Buttons
------------------------------------------------ */

.button {
  background: #00a7ff;
  color: #fff;
  font-size: 12px;
  border: none;
  font-weight: 900;
  cursor: pointer;
  padding: 13px 30px;
  display: inline-block;
  border-radius: 43px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.button.big {
  padding: 16px 35px;
  font-size: 13px;
}

.button:hover {
  background: #38baff;
}

.button.light {
  background: #fff;
  color: #71787b;
  font-weight: 500;
  border: 1px solid #caced2;
}

.button.light:hover {
  background: #eee;
}

.button.dark {
  background: #696e75;
}

.button.dark:hover {
  background: #818790;
}

.button:active {
  opacity: 0.3;
}
.button.disabled,
.button.disabled:active {
  background: #d2d5dc;
  cursor: default;
  opacity: 1 !important;
  cursor: not-allowed;
}

.button.naked {
  background: none;
  color: #00a7ff;
  font-weight: 500;
  padding: 5px 10px;
}

.button.naked:hover {
  color: #46bfff;
}

.button.google {
  background: #c22e27;
  color: #fff;
}

.button.google:hover {
  background: #cc4942;
}

/* Tooltip
------------------------------------------------ */

.tooltip {
  background: #000;
  color: #fff;
  border-radius: 3px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 500;
  display: none;
  position: fixed;
  z-index: 100;
  opacity: 0.8;
  width: 200px;
}

.tooltip.active {
  display: inline-block;
}

.tooltip::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #000;
  position: absolute;
  left: 50%;
  margin-left: -5px;
  bottom: -5px;
}

.tooltip.below::after {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: none;
  border-bottom: 5px solid #000;
  left: 50%;
  margin-left: -5px;
  top: -5px;
}

.tooltip.left::after {
  border-bottom: 5px solid transparent;
  border-top: 5px solid transparent;
  border-right: none;
  border-left: 5px solid #000;
  right: -5px;
  left: auto;
  margin-left: 0;
  margin-top: -5px;
  top: 50%;
}

.tooltip.right::after {
  border-bottom: 5px solid transparent;
  border-top: 5px solid transparent;
  border-left: none;
  border-right: 5px solid #000;
  left: -5px;
  right: auto;
  margin-left: 0;
  margin-top: -5px;
  top: 50%;
}

/* Mini Menu
------------------------------------------------ */

.mini-menu-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 90;
  top: 0;
  display: none;
  left: 0;
}

.mini-menu-overlay.active {
  display: inline-block;
}

.mini-menu {
  position: fixed;
  display: none;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  padding: 5px 0;
  top: 100px;
  left: 100px;
  z-index: 100;
  font-family: 'Avenir W01', Arial, sans-serif;
}

.mini-menu.active {
  display: flex;
}

.mini-menu ul {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
  width: 100%;
}

.mini-menu li a {
  padding: 8px 15px;
  color: #535d63;
  width: 100%;
  display: inline-block;
  text-align: left;
  line-height: 20px;
}

.mini-menu .selected {
  border-left: 2px solid #00a7ff;
  padding-left: 13px;
  color: #00a7ff;
}

.mini-menu li a:hover {
  background: #00a7ff;
  color: #fff;
}

.mini-menu .break {
  display: inline-block;
  width: 100%;
  height: 1px;
  background: #eee;
  margin: 5px 0;
}

/* Snackbar
------------------------------------------------ */

.snackbar {
  position: fixed;
  bottom: -100px;
  left: 20px;
  font-size: 14px;
  background: #333;
  padding: 15px;
  width: 300px;
  text-align: left;
  color: #fff;
  border-radius: 3px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 250ms cubic-bezier(0, 0.49, 0.4, 0.99);
  -moz-transition: all 250ms cubic-bezier(0, 0.49, 0.4, 0.99);
  transition: all 250ms cubic-bezier(0, 0.49, 0.4, 0.99);
  z-index: 300;
}

.snackbar.active {
  bottom: 20px;
}

/* Modals & Alerts
------------------------------------------------ */

.modal-outer,
.modal-middle,
.alert-outer,
.alert-middle,
.master-loading-middle {
  display: none;
  border-spacing: 30px;
}

.modal-outer.active,
.alert-outer.active,
.master-loading-outer.active {
  display: table;
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  z-index: 26;
  display: flex;
  justify-content: center;
  align-items: center;
}

.alert-outer.active {
  z-index: 151;
}

.master-loading-outer.active {
  z-index: 999999;
}

.modal-middle.active,
.alert-middle.active,
.master-loading-middle.active {
  display: table-cell;
  vertical-align: middle;
}

.modal,
.alert,
.master-loading {
  margin-left: auto;
  margin-right: auto;
}

.modal-overlay,
.alert-overlay,
.master-loading-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  display: none;
}

.alert-overlay,
.master-loading-overlay {
  z-index: 150;
}

.modal,
.alert,
.master-loading {
  min-width: 500px;
  min-height: 200px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  position: relative;
  /* position: fixed;
  top:50%;
  left: 50%; */
  -webkit-transform: translate3d(0, 0, 0) scale(0.96);
  -moz-transform: translate3d(0, 0, 0) scale(0.96);
  transform: translate3d(0, 0, 0) scale(0.96);
  z-index: 21;
  overflow: hidden;
  -webkit-transition: all 200ms cubic-bezier(0, 1.11, 0.4, 1.2);
  -moz-transition: all 200ms cubic-bezier(0, 1.11, 0.4, 1.2);
  transition: all 200ms cubic-bezier(0, 1.11, 0.4, 1.2);
  display: none;
  opacity: 0;
  backface-visibility: hidden;
}

@media screen and (max-width: 769px) {
  .modal[data-id='modal-sign'] {
    display: flex;
    margin: 50px auto;
    min-width: 300px;
  }

  .modal-middle {
    padding: 0 24px 0 24px;
  }
}

@media screen and (max-width: 768px) {
  .modal {
    min-width: unset;
  }
}

.modal-overlay.active,
.alert-overylay.active,
.master-loading-overlay.active {
  display: inline-block;
}

.modal.active,
.alert.active,
.master-loading.active {
  display: inline-block;
  opacity: 0;
}
.modal.pop,
.alert.pop,
.master-loading.pop {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  -moz-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
}

.modal.out,
.alert.out,
.master-loading.out {
  -webkit-transform: translate3d(0, 0, 0) scale(1.04);
  -moz-transform: translate3d(0, 0, 0) scale(1.04);
  transform: translate3d(0, 0, 0) scale(1.04);
  opacity: 0;
}

.modal .section {
  display: none;
  overflow: scroll;
  width: 100%;
}

.modal .section.active {
  display: inline-block;
}

.modal .content {
  overflow: scroll;
  width: 100%;
  height: 100%;
}

.modal .content.overflow-hidden {
  overflow: hidden;
}

.modal h5 {
  color: #585a5f;
}

/* Slider Overlay
-------------------------------------------------------- */

.slider-close {
  position: fixed;
  top: 78px;
  left: -40px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  width: 40px;
  height: 40px;
  z-index: 23;
  transition: all 200ms cubic-bezier(0.51, 0.98, 0.39, 0.99);
  cursor: pointer;
}

.slider-close.active {
  left: 20px;
}

.slider-close:active {
  opacity: 0.2;
}

.slider-close .bar:first-child {
  content: '';
  width: 2px;
  height: 20px;
  transform: rotate(45deg);
  display: inline-block;
  background: #fff;
  position: absolute;
  left: 19px;
  top: 10px;
}

.slider-close .bar:last-child {
  content: '';
  width: 2px;
  height: 20px;
  transform: rotate(-45deg);
  display: inline-block;
  background: #fff;
  position: absolute;
  left: 19px;
  top: 10px;
}

.slider-slide,
.slider-overlay {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 90%;
  background: #fff;
  display: none;
  z-index: 23;
  overflow: scroll;
  transform: translate3d(0, 0);
}

.slider-slide {
  right: -100%;
  transition: all 600ms cubic-bezier(0.51, 0.98, 0.39, 0.99);
  padding-top: 44px;
}

.slider-slide.active,
.slider-overlay.active {
  display: inline-block;
}

.slider-slide.slide {
  right: 0;
}

.slider-slide.out {
  right: -100%;
  transition: all 300ms ease-in;
}

.slider-overlay {
  background: rgba(0, 0, 0, 0.6);
  z-index: 22;
  width: 100%;
  display: none;
}

.slider-slide .header {
  padding: 40px;
  position: relative;
  border-bottom: 1px solid #eee;
}
.slider-slide .content {
  padding: 40px;
  position: relative;
  text-align: left;
}

.slider-slide h1 {
  font-weight: 300;
  font-size: 28px;
  width: 100%;
  text-align: left;
  letter-spacing: -0.3px;
}

.slider-slide .enable {
  position: absolute;
  right: 40px;
  top: 40px;
}

.slider-slide .enable label {
  padding-right: 55px;
}

/* Signature rows
------------------------------------ */

.slider-slide .content.dark {
  background: #f6f6f7;
  height: 100%;
}

.signature-row {
  width: 100%;
  padding: 10px;
  background: #fff;
  border: 1px solid #eee;
  padding: 15px;
  text-align: left;
  border-radius: 3px;
  margin-bottom: 10px;
}

.signature-row .signed-by {
  display: inline-block;
  width: 50%;
  font-size: 13px;
}
.signature-row .signed-on {
  display: inline-block;
  width: 40%;
  font-size: 13px;
}
.signature-row .version {
  display: inline-block;
  width: 10%;
  font-size: 13px;
}

.signature-row .version a {
  color: #00a7ff;
}

/* Settings
------------------------------------ */

#handbook-settings .button {
  width: auto;
}

/* Cell Table
------------------------------------ */

.table-headers {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #a2a5a9;
  padding: 15px;
  font-weight: 600;
  text-align: left;
}

.table-headers div {
  display: inline-block;
}

.table-headers .w50 {
  width: 50%;
}
.table-headers .w40 {
  width: 40%;
}
.table-headers .w10 {
  width: 10%;
}

.table-empty {
  width: 100%;
  font-size: 14px;
  color: #76797b;
}

/* Help Bubble
------------------------------------ */

.help-bubble {
  width: 16px;
  height: 16px;
  background: #a3a9ad;
  display: inline-block;
  color: #fff;
  border-radius: 20px;
  font-size: 12px;
  vertical-align: top;
  margin-left: 10px;
  text-align: center;
  font-weight: 800;
  line-height: 16px;
}

.help-bubble:hover {
  background: #00a7ff;
}

/* Master Loading
------------------------------------ */

.master-loading {
  z-index: 210;
  width: 140px;
  min-width: inherit;
  min-height: inherit;
  padding-top: 50px;
  background: none;
  box-shadow: none;
}

.master-loading .message {
  color: #fff;
  width: 100%;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  padding-top: 20px;
  line-height: 1.5;
  text-shadow: 0 1px 7px rgba(0, 0, 0, 0.5);
}

/* Alert
------------------------------------ */

.alert {
  z-index: 200;
  width: 260px;
  min-width: inherit;
  min-height: inherit;
}

.alert ul {
  border-top: 1px solid #eee;
  white-space: nowrap;
}

.alert li {
  width: 50%;
  display: inline-block;
}

.alert p {
  font-size: 15px;
  font-weight: 500;
  padding: 20px 30px;
  line-height: 1.5;
  color: #414448;
}

.alert a {
  font-size: 15px;
  font-weight: 500;
  color: #999;
  display: inline-block;
  width: 100%;
  padding: 15px 0;
  cursor: pointer;
}

.alert a:first-child {
  border-right: 1px solid #eee;
}

.alert a.highlighted {
  color: #ea2e61;
}

.alert a:hover {
  background: #f9f9f9;
}

.alert a:active {
  opacity: 0.2;
}

/* Modal Content
------------------------------------ */

.modal .subtop {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  font-size: 13px;
  height: 50px;
  line-height: 50px;
  border-bottom: 1px solid #eee;
  font-weight: 500;
}

.subtop div.center {
  font-size: 13px;
  line-height: 50px;
  letter-spacing: 0.2px;
  color: #5f6365;
  overflow: hidden;
  padding: 0 80px;
  height: 100%;
}

.modal .subtop .back {
  position: absolute;
  left: 0;
  top: 0;
  line-height: 50px;
  padding: 0 20px;
  opacity: 0.3;
  cursor: pointer;
}

.modal .subtop .done {
  position: absolute;
  right: 0;
  top: 0;
  line-height: 50px;
  padding: 0 20px;
  font-weight: 700;
  color: #00a7ff;
}

.modal .content {
  text-align: left;
  padding: 20px;
}

/* Form Elements
------------------------------------------------ */

form input,
form textarea,
form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 2px solid #e8ecef;
  border-radius: 3px;
  padding: 10px 15px;
  font-size: 13px;
  width: 100%;
  margin-top: 5px;
  display: inline-block;
  background: #ffffff;
  font-weight: 500;
  color: #333;
  outline: none;
  box-sizing: border-box;
  font-family: 'Avenir W01', sans-serif;
  box-shadow: none;
}

form.big input,
form.big textarea,
form.big select {
  font-size: 16px;
  padding: 12px 17px;
}

select::-ms-expand {
  display: none;
}

select:required:invalid {
  color: #757575;
}

form input:focus,
form textarea:focus,
form select:focus {
  box-shadow: 0 0 0 2px #00a7ff;
  border-color: transparent;
}

form label.error input,
form label.error textarea,
form label.error select {
  border-color: #e62525;
}

form label.error::after {
  content: attr(data-error);
  position: relative;
  font-size: 12px;
  color: #e62525;
  display: inline-block;
  padding-top: 5px;
}

input.hidden {
  display: none;
}

form select {
  background: #fff url(../../images/arrow-down.png) right 15px center no-repeat;
  background-size: 10px;
}

form input[type='file'] {
  padding: 9px 15px 8px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  form select {
    background: #fff url(../../images/arrow-down@2x.png) right 15px center
      no-repeat;
    background-size: 10px;
  }
}

form label {
  display: inline-block;
  width: 100%;
  margin-bottom: 10px;
  position: relative;
}

input[type='checkbox'].switch {
  width: 44px;
  background: rgba(195, 197, 199, 0.9);
  border: none !important;
  border-radius: 20px;
  height: 24px;
  position: absolute;
  -webkit-transition: all 200ms cubic-bezier(0, 0.96, 0.58, 1);
  -moz-transition: all 200ms cubic-bezier(0, 0.96, 0.58, 1);
  transition: all 200ms cubic-bezier(0, 0.96, 0.58, 1);
  right: 0;
  top: 3px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  opacity: 1;
  box-shadow: none;
}

input[type='checkbox'].switch::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 20px;
  position: absolute;
  left: 2px;
  top: 2px;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

input[type='checkbox'].switch:checked {
  background: #00a7ff;
}

input[type='checkbox'].switch:active::before {
  width: 26px;
}

input[type='checkbox'].switch:checked::before {
  left: 22px;
}

input[type='checkbox'].switch:active:checked::before {
  left: 16px;
  width: 26px;
}

input[type='checkbox'].switch.big {
  position: relative;
}

input[type='checkbox'].switch.big {
  width: 104px;
  height: 40px;
}

input[type='checkbox'].switch.big::after {
  content: 'NO';
  position: absolute;
  left: 57px;
  line-height: 40px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

input[type='checkbox'].switch.big::before {
  width: 36px;
  height: 36px;
}

input[type='checkbox'].switch.big:active::before {
  width: 40px;
}

input[type='checkbox'].switch.big:checked::before {
  left: 66px;
}

input[type='checkbox'].switch.big:checked::after {
  content: 'YES';
  left: 27px;
  right: auto;
}

input[type='checkbox'].switch.big:active:checked::before {
  left: 42px;
  width: 30px;
}

.checkbox-group label {
  width: 100%;
  display: inline-block;
  font-size: 16px;
  text-align: left;
  line-height: 20px;
  padding: 10px 0 10px 30px;
  margin: 0;
  color: #444;
  font-weight: 500;
}

.checkbox-group label:hover {
  border-radius: 3px;
  background: #f7f7f7;
  cursor: pointer;
}

input.inline {
  width: 200px;
}

input[type='checkbox'].checkbox,
input[type='radio'].radio {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  padding: 0;
  display: inline-block;
  margin: -10px 0 0;
  position: absolute;
  left: 0;
  top: 50%;
}

input[type='checkbox'].checkbox:active,
input[type='radio'].radio:active {
  border-color: #c9cdd2;
}

input[type='checkbox'].checkbox:checked,
input[type='radio'].radio:checked {
  background: #00a7ff url(../../images/checkbox-check@2x.png) center no-repeat;
  background-size: 10px;
  border: #00a7ff;
  box-shadow: none;
}

form a.form-link {
  font-size: 13px;
  color: #ea2e61;
  font-weight: 500;
  padding: 5px 15px;
}

form input:last-child,
form select:last-child {
  margin-right: 0;
}

form .one-third {
  width: 32%;
  margin-right: 1%;
}

form .one-half {
  width: 49%;
  margin-right: 1%;
}

form .two-thirds {
  width: 65%;
  margin-right: 1%;
}

input#file::-webkit-file-upload-button {
  visibility: hidden;
}

input#file {
  color: #fff;
  width: 220px;
  height: 154px;
  float: left;
  outline: none;
}

input#file::before {
  content: 'Upload Image';
  display: inline-block;
  outline: none;
  white-space: nowrap;
  -webkit-user-select: none;
  letter-spacing: -0.2px;

  width: 200px;
  height: 134px;
  border-radius: 4px;
  overflow: hidden;
  margin: 10px;

  background: #00a7ff url(../../images/add-photo@2x.png) center top 50px
    no-repeat;
  background-size: 21px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding-top: 80px;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
}

label h5.absolute {
  position: absolute;
  left: 15px;
  line-height: 38px;
  padding: 0;
  top: 32px;
}

label h5.right {
  position: absolute;
  right: 0;
  line-height: 33px;
  padding: 0;
  top: 0px;
}

label h5.right a {
  color: #00a7ff;
}

label input.absolute {
  padding-left: 140px;
}

span.required {
  color: #f53558;
}

/* Error states
------------------------------------ */

label.taken input {
  border-color: #e24b59;
}

label.allclear input {
  border-color: #60cc81;
}

label.taken:after,
label.allclear:after {
  content: '';
  font-size: 12px;
  display: inline-block;
  width: 100%;
  text-align: left;
  padding-top: 10px;
}

label.taken:after {
  content: 'That url is already taken';
  color: #e24b59;
}

label.allclear:after {
  content: "Woo! That's available!";
  color: #34a958;
}

.hidden-uploader {
  display: none !important;
}

/* Top bar
------------------------------------ */

.top-bar {
  width: 100%;
  display: inline-block;
  height: 44px;
  background: #00a7ff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  position: absolute;
  z-index: 25;
  left: 0;
  top: 0;
  font-family: 'Avenir W01', Arial, sans-serif;
}

.top-bar .logo {
  height: 16px;
  width: 103px;
  background: url(../../images/airmason-logo-white.png);
  background-size: 100%;
  position: absolute;
  top: 13px;
  left: 50%;
  margin-left: -51px;
  display: inline-block;
  z-index: 2;
}

.top-bar .logo-left {
  height: 16px;
  width: 103px;
  background: url(../../images/airmason-logo-white.png);
  background-size: 100%;
  position: absolute;
  top: 13px;
  left: 140px;
  margin-left: -51px;
  display: inline-block;
  z-index: 2;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .top-bar .logo,
  .top-bar .logo-left {
    background-image: url(../../images/airmason-logo-white@2x.png);
  }
}

.top-bar .nav-icon {
  display: inline-block;
  position: absolute;
  top: 0;
  width: 170px;
  height: 44px;
  padding-left: 14px;
  left: 0;
  color: #fff;
  text-align: left;
  font-size: 0;
}

.top-bar .nav-icon:hover {
  background: rgba(0, 0, 0, 0.1);
}

.top-bar .nav-icon .bars {
  display: inline-block;
  position: relative;
  top: 3px;
  width: 3px;
  left: 0;
}

.top-bar .nav-icon-bars {
  width: 50px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.top-bar .nav-icon-bars .bars {
  top: 16px;
  width: 18px;
  left: 2px;
}

.top-bar .nav-icon span {
  display: inline-block;
  position: relative;
  font-size: 14px;
  padding-left: 10px;
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 44px;
}

.top-bar .nav-icon .bar {
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 3px;
}

.top-bar .nav-icon-bars .bar {
  width: 16px;
  height: 2px;
}

.top-bar .nav-icon .bar:last-child {
  margin-bottom: 0px;
}

@media screen and (max-width: 960px) {
  .top-bar .trial-expiring-soon {
    display: none !important;
  }
}

.top-bar .trial-expiring-soon {
  display: inline-block;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2px;
  position: absolute;
  right: 250px;
  padding-right: 130px;
}

.top-bar .trial-expiring-soon .trial-ends-in {
  line-height: 44px;
  display: inline-block;
  text-align: center;
  font-style: italic;
  padding-right: 10px;
  font-size: 14px;
}

.top-bar .publish,
.top-bar .upgrade-now {
  font-size: 12px;
  font-weight: 600;
  border-radius: 3px;
  position: absolute;
  right: 8px;
  top: 8px;
  height: 28px;
  line-height: 28px;
  width: 100px;
  color: #fff;
  letter-spacing: 0.1px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.top-bar .publish:hover {
  background: rgba(255, 255, 255, 0.3);
}

.top-bar .upgrade-now {
  width: 120px;
  background: rgba(255, 255, 255, 0.9);
  color: #00a9ff;
}

.top-bar .upgrade-now:hover {
  background: rgba(255, 255, 255, 0.8);
}

#main-menu {
  top: 40px !important;
  left: 10px !important;
  width: 520px;
  padding: 5px;
  flex-direction: row;
}

#main-menu.narrow {
  width: 173px;
}

#main-menu ul {
  width: 163px;
  vertical-align: top;
  border-left: 1px solid #eee;
  max-height: 250px;
}

#main-menu .wider {
  width: 183px;
  overflow-y: scroll;
}

#main-menu ul:first-child {
  border-left: none;
}

#main-menu a {
  font-size: 13px;
  padding: 5px 15px;
}

li.header {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #a2a5a9;
  padding: 20px 15px 10px 15px;
  font-weight: 600;
  text-align: left;
}

.top-bar .saving {
  display: inline-block;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 44px;
  position: absolute;
  right: 120px;
  text-align: right;
}

.top-bar .content-checklist-button {
  font-size: 13px;
  color: #fff;
  position: absolute;
  left: 50px;
  line-height: 44px;
  padding: 0 15px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* Global Editor
------------------------------------ */

.editor-wrapper {
  display: inline-block;
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  position: relative;
  height: 100%;
  padding-top: 44px;
  overflow: hidden;
}

/* Sidebar
------------------------------------ */

.sidebar-wrapper {
  background: #45484c;
  width: 200px;
  display: inline-block;
  position: fixed;
  left: 0;
  padding-top: 44px;
  height: 100%;
  overflow: hidden;
  z-index: 20;
  top: 0;
}

.sidebar {
  background: #45484c;
  width: 200px;
  display: inline-block;
  position: fixed;
  left: 0;
  padding-top: 44px;
  height: 100%;
  z-index: 20;
  top: 0;
}

.sidebar .subtop h3 {
  color: #fff;
  font-weight: 500;
  line-height: 44px;
  font-size: 14px;
}

/* Tabs
------------------------------------ */

.tab-bar {
  background: #565c65;
  width: 100%;
  height: 44px;
  color: #fff;
}

.tab-bar.halfs li {
  width: 33.33%;
  display: inline-block;
}

.tab-bar a {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 44px;
  display: inline-block;
  opacity: 0.4;
  text-transform: uppercase;
  width: 100%;
  box-sizing: border-box;
  height: 44px;
}

.tab-bar a.active {
  opacity: 1;
  border-bottom: 2px solid #00a7ff;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: inline-block;
  width: 100%;
}

/* Sidebar Sections
------------------------------------ */

.sidebar .sections,
.sidebar .theme {
  width: 100%;
  padding: 12px;
  overflow-y: scroll;
  padding-bottom: 100px;
  overflow-x: hidden;
}

.sidebar .sections {
  padding-top: 2px;
}

.sidebar .section {
  width: 100% !important;
  background: #fff;
  border-radius: 3px;
  font-size: 14px;
  text-align: center;
  line-height: 1.4;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  display: inline-block;
  margin: 2px 0 2px 0 !important;
  position: relative;
  font-weight: 500;
  letter-spacing: 0.2px;
  height: auto !important;
  transition: background 300ms ease-in-out;
  padding-bottom: 0px !important;
}

.sidebar .section span.section-title {
  display: inline-block;
  width: 100%;
  padding: 0 30px 10px;
  font-weight: 500;
  font-size: 12.5px;
  color: #565a5d;
  letter-spacing: 0.3px;
}

.sidebar .section.new {
  background: #c4ffca;
}

.sidebar .section:hover {
  cursor: pointer;
  color: #00a7ff;
}

.sidebar .section .more-arrow {
  top: 7px;
  right: 7px;
  display: none;
}

.sidebar .section:hover .more-arrow {
  display: inline-block;
}

.section a.edit {
  display: none;
  position: absolute;
  right: -5px;
  top: -5px;
  height: 40px;
  width: 40px;
  border-radius: 30px;
  font-size: 0;
  background: #fff url(../../images/edit@2x.png) center no-repeat;
  background-size: 14px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.section:hover a.edit {
  display: inline-block;
}

.section a.edit:hover {
  background-image: url(../../images/edit-hover@2x.png);
}

.grab {
  width: 10px;
  padding: 0 20px 0 10px;
  display: none;
  position: absolute;
  left: 0px;
  top: 0;
  height: 100%;
  font-size: 0;
  cursor: -webkit-grab;
  opacity: 0.5;
}

.sidebar .section:hover .grab {
  display: inline-block;
}

.grab:hover {
  opacity: 1;
}

.grab .bars {
  display: inline-block;
  position: absolute;
  top: 99px;
  width: 10px;
}

.grab .bar {
  position: relative;
  width: 10px;
  height: 1px;
  background: #888;
  display: inline-block;
  left: 0;
  margin-bottom: 2px;
}

.grab .bar:last-child {
  margin-bottom: 0px;
}

/* New group header
------------------------------------ */

.add-section-group {
  margin: 0;
  opacity: 0;
  cursor: pointer;
  position: relative;
  z-index: 2;
  height: 15px;
  width: 200px;
  left: -12px;
}

.add-section-group:after {
  content: '';
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 7px;
  left: 0;
}

.add-section-group span {
  display: inline-block;
  background: #45484c;
  font-size: 9px;
  font-weight: 600;
  color: #fff;
  position: relative;
  border-radius: 33px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  z-index: 1;
  padding: 2px 10px;
}

.add-section-group:hover {
  opacity: 0.65;
  height: 15px;
}

.center {
  width: 100%;
  text-align: center;
  display: inline-block;
}

.delete-title {
  font-size: 13px;
  margin-top: 10px;
  padding: 5px;
  display: inline-block;
  text-align: center;
  color: #e82f57;
}

/* Group header
------------------------------------ */

li.section.title {
  margin: 0;
  cursor: pointer;
  position: relative;
  z-index: 2;
  height: 12px;
  width: 200px !important;
  left: -12px;
  background: none;
  box-shadow: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 10px !important;
}

li.section.title span {
  display: inline-block;
  font-size: 12.5px;
  color: #fff !important;
  padding: 15px 20px 15px !important;
}

/* Sidebar Panels
------------------------------------ */

.sidebar .panel {
  display: none;
  width: 200px;
  background: #45484c;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 200px;
  z-index: 2;
  height: 100%;
  color: #fff;
  padding-top: 44px;
  transition: left 400ms cubic-bezier(0.08, 0.98, 0.39, 0.99);
  overflow-y: hidden;
}

.sidebar .panel.in {
  left: 0;
}

.sidebar .panel.out {
  opacity: 1;
  left: 200px;
}

.sidebar .panel.active {
  display: inline-block;
  z-index: 3;
}

.sidebar .panel .subtop {
  background: #565c65;
  height: 44px;
  position: relative;
  z-index: 5;
}

.sidebar .panel .content {
  width: 100%;
  display: inline-block;
  padding: 10px;
  text-align: left;
  position: relative;
  height: 100%;
  overflow: scroll;
}

.sidebar .panel input {
  border: none;
}

/* Section Details
------------------------------------ */

.section-details .delete-section {
  font-size: 12px;
  color: #fff;
  width: 100%;
  display: inline-block;
  padding: 10px;
  position: absolute;
  bottom: 10px;
  left: 0;
  font-weight: 500;
  letter-spacing: 0.3px;
  cursor: pointer;
  opacity: 0.5;
}
.section-details .delete-section:hover {
  opacity: 1;
}

/* Font Picker
------------------------------------ */

.font-editor .content {
  padding: 0 !important;
}

li.font-title {
  width: 100%;
  font-size: 10px;
  background: #91979e;
  padding: 8px 0;
  display: inline-block;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  font-weight: 600;
}

ul.fonts {
  width: 100%;
}

ul.fonts .font {
  width: 100%;
  background: #444444;
  overflow: hidden;
  height: 35px;
  text-align: center;
  display: inline-block;
  position: relative;
  border-bottom: 1px solid #585858;
}

ul.fonts .font[data-font-slug]:hover {
  cursor: pointer;
  opacity: 0.5;
}

ul.fonts .font img {
  width: 150px;
  position: absolute;
  left: 50%;
  margin-top: 5px;
  margin-left: -75px;
}

/* Color Picker
------------------------------------ */

.colorpicker {
  width: 100%;
  display: inline-block;
  margin-bottom: 20px;
}

.colorpicker label {
  padding-bottom: 0;
  margin-bottom: 0;
}

.colorpicker h5 {
  margin-bottom: 10px;
}

.colorpicker .color {
  width: 28px;
  height: 28px;
  display: inline-block;
  border-radius: 20px;
  margin: 0 8px 8px 0;
  display: inline-block;
  background: #fff;
  cursor: pointer;
}

.colorpicker .color.selected {
  width: 24px;
  height: 24px;
  margin: 2px 10px 10px 2px;
  box-shadow: 0 0 0 2px #45484c, 0 0 0 4px #00a7ff;
}

.colorpicker input {
  opacity: 0.5;
  color: #999 !important;
}

.colorpicker input.selected {
  opacity: 1;
  box-shadow: 0 0 0 2px #45484c, 0 0 0 4px #00a7ff;
  color: #111 !important;
}

.color.red {
  background: #e45353;
}

.color.delight {
  background: #ec5e64;
}

.color.tangerine {
  background: #ff6252;
}

.color.orange {
  background: #fd8b3b;
}

.color.yellow {
  background: #ffc542;
}

.color.green {
  background: #5ac56a;
}

.color.teal {
  background: #40c3c5;
}

.color.blue {
  background: #56a7da;
}

.color.blue-two {
  background: #497ad4;
}

.color.navy {
  background: #304679;
}

.color.purple {
  background: #b839f3;
}

.color.pink {
  background: #d445b2;
}

.color.white {
  background: #fff;
}

.color.dark {
  background: #111;
}

.color.lightblue {
  background: #f8f9fb;
}

.color.charcoal {
  background: #485056;
}

/* Back Arrow
------------------------------------ */

.back {
  position: absolute;
  left: 0;
  top: 0;
}

.back-arrow {
  display: inline-block;
  width: 40px;
  height: 44px;
}

.back-arrow:before,
.back-arrow:after {
  content: '';
  width: 2px;
  height: 12px;
  position: absolute;
  transform: rotate(45deg);
  display: inline-block;
  background: #fff;
  top: 12px;
  left: 18px;
}

.back-arrow:after {
  transform: rotate(-45deg);
  top: 19px;
}

/* More Arrow
------------------------------------ */

.more-arrow {
  width: 18px;
  height: 19px;
  opacity: 0.5;
  position: absolute;
  display: inline-block;
}

.more-arrow:hover {
  opacity: 1;
}

.more-arrow:before,
.more-arrow:after {
  content: '';
  width: 2px;
  background: #333;
  height: 8px;
  transform: rotate(-45deg);
  display: inline-block;
  position: absolute;
  top: 5px;
  left: 5px;
}

.more-arrow:after {
  transform: rotate(45deg);
  top: 5px;
  left: 10px;
}

/* Themes
------------------------------------ */

.theme-thumbnail {
  width: 100%;
  background: #fff;
  border-radius: 3px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  height: 120px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  display: inline-block;
  margin-bottom: 10px;
  line-height: 120px;
}

.theme-thumbnail.air {
  font-weight: 100;
}

.theme-thumbnail.massive {
  background: url(../../images/themes/theme-massive@2x.png);
  background-size: cover;
}

.theme-thumbnail.selected {
  box-shadow: 0 0 0 2px #45484c, 0 0 0 4px #00a7ff;
}

/* Add Section Modal
------------------------------------------------ */

#new-section .tab-bar {
  color: inherit;
  height: 100%;
  background: #fff;
  font-size: 0;
}

#new-section .tab-bar a {
  height: 50px;
  line-height: 50px;
}

#new-section .accordian {
  width: 600px;
}

#new-section .accordian .selected-tag {
  display: none;
}

#new-section .accordian li li .title {
  cursor: default;
}

#new-section .accordian li li .title:after {
  content: none;
}

#new-section .accordian li li .add {
  position: absolute;
  top: 50%;
  margin-top: -17px;
  right: 17px;
  background: #00a5ff;
  color: #fff;
  line-height: 34px;
  padding: 0 20px;
  display: none;
}

#new-section .accordian li li .title:hover .add {
  display: inline-block;
}

/* Layout Picker
------------------------------------------------ */

.layout-picker {
  background: #66696c;
  width: 600px;
  padding: 20px;
  display: inline-block;
  text-align: center;
  overflow: scroll;
}

.layouts-container {
  width: 1386px;
}

.layout-picker h3 {
  font-size: 13px;
  color: #fff;
  padding: 0 0 20px;
}

.layout-picker .layout,
.sidebar .section {
  width: 142px;
  border-radius: 4px;
  overflow: none;
  display: inline-block;
  background: #fff;
  padding-bottom: 20px;
  margin: 0 5px;
  cursor: pointer;
  height: 165px;
  vertical-align: top;
}

.layout-picker .layout .preview,
.sidebar .section .preview {
  background-color: #dadee2;
  background-repeat: no-repeat;
  background-position: center;
  height: 84px;
  width: 100%;
  display: inline-block;
  margin-bottom: 5px;
  border-radius: 4px 4px 0 0;
}

.layout-picker .layout.selected {
  box-shadow: 0 0 0 2px #45484c, 0 0 0 4px #00a7ff;
}

.layout-picker .layout.selected .preview,
.sidebar .section.highlight .preview {
  background-color: #00a7ff;
}

.layout-picker .layout.blank .preview,
.sidebar .section.blank .preview {
  background-image: url(../../images/layouts/layout-blank@2x.png);
  background-size: 74px;
}

.layout-picker .layout.hero .preview,
.sidebar .section.hero .preview {
  background-image: url(../../images/layouts/layout-hero@2x.png);
  background-size: 74px;
}

.layout-picker .layout.title-subtitle .preview,
.sidebar .section.title-subtitle .preview {
  background-image: url(../../images/layouts/layout-title-subtitle@2x.png);
  background-size: 80px;
}

.layout-picker .layout.timeline .preview,
.sidebar .section.timeline .preview {
  background-image: url(../../images/layouts/layout-timeline@2x.png);
  background-size: 74px;
}

.layout-picker .layout.qa .preview,
.sidebar .section.qa .preview {
  background-image: url(../../images/layouts/layout-qa@2x.png);
  background-size: 78px;
}

.layout-picker .layout.letter .preview,
.sidebar .section.letter .preview {
  background-image: url(../../images/layouts/layout-letter@2x.png);
  background-size: 75px;
}

.layout-picker .layout.values .preview,
.sidebar .section.values .preview {
  background-image: url(../../images/layouts/layout-values@2x.png);
  background-size: 74px;
}

.layout-picker .layout.title-collage .preview {
  background-image: url(../../images/layouts/layout-title-collage@2x.png);
  background-size: 143px;
}

.sidebar .section.title-collage .preview {
  background-image: url(../../images/layouts/layout-title-collage-wide@2x.png);
  background-size: 172px;
}

.layout-picker .layout.image .preview,
.sidebar .section.image .preview {
  background-image: url(../../images/layouts/layout-image@2x.png);
  background-size: 37px;
}

.layout-picker .layout p,
.sidebar .section p {
  font-size: 11px;
  color: #66696d;
  padding: 0 10px;
}

/* Choose Photo Modal
------------------------------------ */

.modal#choose-photo {
  width: 700px;
  height: 500px;
}

.photo-grid {
  text-align: center;
}

.photo-grid .photo {
  display: inline-block;
  width: 200px;
  height: 134px;
  border-radius: 4px;
  overflow: hidden;
  margin: 10px;
  cursor: pointer;
}

.photo-grid li,
.photo-grid .photo {
  display: inline-block;
  vertical-align: top;
}

.photo-grid .photo img {
  width: 100%;
}

.photo-grid .photo.selected {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #00a7ff;
}

/* Publishing Modals
------------------------------------------------ */

#publishing,
#creating,
#loading.modal {
  width: 230px;
  min-width: 0;
  min-height: 0;
  padding: 60px 30px 50px;
}

#publishing .spinner-text,
#creating .spinner-text,
#loading.modal .spinner-text {
  font-size: 15px;
  color: #444;
  width: 100%;
  text-align: center;
  display: inline-block;
  padding-top: 40px;
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: 1.6;
}

#handbook-slug-settings {
  width: 400px;
  min-width: 400px;
}

#handbook-slug-settings .button {
  width: 100%;
}

/* Collaborators
------------------------------------ */

.modal#collaborators {
  width: 500px;
}

.collaborator {
  width: 100%;
  background: #fff;
  border: 1px solid #eee;
  font-size: 13px;
  padding: 15px;
  text-align: left;
  border-radius: 3px;
  margin-bottom: 10px;
}

.collaborator .remove {
  display: none;
  font-size: 12px;
  float: right;
  color: #ec3f5c;
}

.collaborator:hover .remove {
  display: inline-block;
}

.modal .fine-print {
  font-size: 12px;
  padding: 10px;
  color: #666;
  width: 100%;
  display: inline-block;
  text-align: center;
}

/* Onboarding
------------------------------------------------ */

.modal.onboarding {
  width: 700px;
  height: 600px;
}

.modal.onboarding h1,
.modal.onboarding .heading {
  font-size: 25px;
  padding-bottom: 15px;
  color: #06334a;
  font-weight: 600;
  letter-spacing: -0.7px;
}

.modal.onboarding h4,
.modal.onboarding .desc {
  font-size: 15px;
  line-height: 1.5;
  color: #575f65;
  margin-bottom: 15px;
}

.modal.onboarding .header {
  padding: 35px 30px 20px;
  border-bottom: 1px solid #e1e1e1;
  height: 176px;
  background: #fff;
  position: absolute;
  z-index: 3;
  top: 0;
}

.modal.onboarding .back.back-hover {
  position: absolute;
  top: 15px;
  font-size: 14px;
  left: 15px;
  opacity: 0.5;
  z-index: 5;
}

.modal.onboarding .footer {
  border-bottom: none;
  background: #f0f1f3;
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e1e1e1;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 3;
}

.modal.onboarding .footer .primary.button {
  width: 200px;
}

/* Welcome Modal
------------------------------------------------ */

#welcome .header {
  position: relative;
  height: auto;
  border: none;
  padding-top: 70px;
}

#welcome .header h1 {
  text-align: center;
}

.slide#welcome .button {
  margin: 0;
  width: 300px;
  transition: all 150ms ease-in-out;
}

#welcome .template-options {
  width: 100%;
  display: inline-block;
  padding: 20px 20px 150px;
}

.templates .template {
  width: 20%;
  max-width: 270px;
  display: inline-block;
  padding: 7px;
  position: relative;
  vertical-align: top;
  box-sizing: border-box;
}

.template-container {
  padding: 0 150px;
  box-sizing: border-box;
}

.templates .template-box {
  width: 100%;
  height: 100%;
  display: inline-block;
  border-radius: 2px;
  color: #fff;
}

#welcome .selected {
  box-shadow: 0 0 0 3px #00a7ff inset;
  border-radius: 2px;
}

.slide .template {
  height: 230px;
}

.next-bottom-wrapper {
  position: fixed;
  bottom: 0;
  padding: 40px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
}

.templates .template h1 {
  font-size: 34px;
  padding-bottom: 10px;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1px;
}

.slide.templates .template h1 {
  font-size: 22px !important;
}

.templates .template .content {
  position: absolute;
  width: 100%;
  left: 0;
  padding: 30px;
  bottom: 0px;
  text-align: left;
  z-index: 10;
  position: absolute;
  transform: translateZ(30px);
}

.slide.templates .template .content {
  padding: 20px 30px;
}

.templates .template p {
  color: #fff;
  line-height: 1.3;
  z-index: 10;
  position: relative;
  opacity: 0.8;
  font-weight: 100;
  padding: 0;
}

.templates .template .image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.templates .button {
  margin-top: 80px;
}

.templates .template.t_blank .image {
  background: linear-gradient(
    248.728deg,
    rgb(80, 92, 99) 0%,
    rgb(110, 123, 132) 100%
  );
}
.templates .template.agency .image {
  background: linear-gradient(
    248.728deg,
    rgb(230, 62, 62) 0%,
    rgb(208, 66, 151) 80%
  );
}
.templates .template.restaurant .image {
  background: linear-gradient(
    248.728deg,
    rgb(230, 111, 27) 0%,
    rgb(234, 170, 54) 80%
  );
}
.templates .template.daycare .image {
  background: linear-gradient(
    248.728deg,
    rgb(62, 230, 191) 0%,
    rgb(66, 208, 208) 80%
  );
}
.templates .template.tech-company .image {
  background: linear-gradient(
    248.728deg,
    rgb(62, 207, 230) 0%,
    rgb(66, 123, 208) 80%
  );
}
.templates .template.landscaping .image {
  background: linear-gradient(
    248.728deg,
    rgb(23, 195, 123) 0%,
    rgb(82, 216, 117) 80%
  );
}
.templates .template.cleaning .image {
  background: linear-gradient(
    248.728deg,
    rgb(230, 62, 62) 0%,
    rgb(208, 66, 151) 80%
  );
}
.templates .template.retail .image {
  background: linear-gradient(
    248.728deg,
    rgb(88, 62, 230) 0%,
    rgb(99, 140, 255) 80%
  );
}
.templates .template.security .image {
  background: linear-gradient(
    248.728deg,
    rgb(230, 62, 62) 0%,
    rgb(208, 66, 151) 80%
  );
}

.templates .template .image img {
  height: 100%;
  opacity: 0.1;
}

.hover-3d {
  transition: 500ms cubic-bezier(0, 0.55, 0.44, 1);
}

.shine {
  opacity: 0.5;
}

#welcome .template-option {
  transition: all 100ms cubic-bezier(0.01, 0.68, 0.58, 1);
}

#welcome .template-options.hovering .template-option {
  opacity: 0.7;
  color: #627282;
}

#welcome .template-option:active {
  opacity: 0.5 !important;
  transform: scale(0.97);
}

#welcome .template-options.hovered .template-option {
  opacity: 0.7 !important;
  color: #627282;
}

#welcome .template-option:hover,
#welcome .template-options.hovered .template-option:hover,
#welcome .template-option.selected,
#welcome .template-options.hovered .template-option.selected {
  opacity: 1 !important;
  color: #31373e !important;
}

/*
#welcome .template-option.blank {
  background-image: url(../../images/blank-hover@2x.png);
  background-size: 50px;
}

#welcome .template-option.office {
  background-image: url(../../images/office-hover@2x.png);
}

#welcome .template-option.restaurant {
  background-image: url(../../images/resto-hover@2x.png);
}

#welcome .template-options.hovering .template-option.blank, #welcome .template-options.hovered .template-option.blank {
  background-image: url(../../images/blank@2x.png);
}

#welcome .template-options.hovering .template-option.office, #welcome .template-options.hovered .template-option.office {
  background-image: url(../../images/office@2x.png);
}

#welcome .template-options.hovering .template-option.restaurant, #welcome .template-options.hovered .template-option.restaurant {
  background-image: url(../../images/resto@2x.png);
}

#welcome .template-options .template-option.blank:hover, #welcome .template-options .template-option.blank.selected {
  background-image: url(../../images/blank-hover@2x.png) !important;
}

#welcome .template-options .template-option.office:hover, #welcome .template-options .template-option.office.selected {
  background-image: url(../../images/office-hover@2x.png) !important;
}

#welcome .template-options .template-option.restaurant:hover, #welcome .template-options .template-option.restaurant.selected {
  background-image: url(../../images/resto-hover@2x.png) !important;
}

*/

/* Wizard
------------------------------------------------ */

.wizard-wrapper {
  position: relative;
  height: 100%;
}

.progress-wrapper {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  height: 8px;
  display: inline-block;
  z-index: 4;
}

.progress-text {
  font-size: 10px;
  text-transform: uppercase;
  color: #4f595e;
  text-align: left;
  width: 100%;
  padding-bottom: 10px;
  display: inline-block;
  font-weight: 600;
  display: none;
  letter-spacing: 0.5px;
}

.progress-total {
  position: relative;
  width: 100%;
  height: 8px;
}

.progress-to-date {
  background: #23c53f;
  position: absolute;
  left: 0;
  top: 0;
  height: 8px;
  width: 0;
  transition: all 200ms ease-in-out;
}

.wizard-content {
  width: 100%;
  height: 100%;
  overflow: scroll;
  padding: 30px;
  display: inline-block;
}

.wizard-content .header {
  border-bottom: none;
  text-align: left;
  padding-bottom: 20px;
}

.wizard-content .header .button {
  margin-right: 30px;
}

.wizard-content form {
  position: relative;
}

.wizard-content h1 {
  padding-bottom: 30px;
}

.wizard-content h4 {
  font-size: 16px;
  padding-bottom: 30px;
  text-align: left;
  width: 100%;
  line-height: 1.5;
  color: #4c5b62;
}

.wizard-content h6 {
  font-size: 10px;
  padding: 50px 0 20px 40px;
  text-align: left;
  width: 100%;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #00a7ff;
  border-bottom: 1px solid #f7f7f7;
}

.wizard-content h5 {
  font-size: 14px;
  padding: 0 0 15px;
  text-align: left;
  width: 100%;
  font-weight: 300;
  line-height: 1.5;
  color: #4c5b62;
}

.wizard-content .question {
  width: 100%;
  display: inline-block;
  padding: 30px 0;
  text-align: left;
  position: relative;
}

.wizard-content .hidden {
  display: none;
}

.wizard-content .question .q-number {
  position: absolute;
  text-align: right;
  display: inline-block;
  color: #00a7ff;
  background: url(../../images/number-arrow@2x.png) top 2px right no-repeat;
  background-size: 9px;
  font-size: 13px;
  padding-right: 13px;
  left: 0;
  top: 4px;
  font-weight: 600;
}

.wizard-content .question .q-content {
  width: 100%;
  text-align: left;
  display: inline-block;
  position: relative;
  padding-left: 40px;
}

.wizard-content .question h2 {
  font-size: 19px;
  font-weight: 400;
  text-align: left;
  padding-bottom: 20px;
}

.wizard-content .question.done .q-number {
  color: #23c53f;
}

.wizard-content .question.done .q-number {
  background-image: url(../../images/number-arrow-green@2x.png);
}

.wizard-content .question:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: #fff;
  z-index: 2;
  opacity: 0.9;
  transition: opacity 200ms ease-in-out;
}

.wizard-content .question:hover:before {
  opacity: 0.6;
}

.wizard-content .question.enabled:before {
  display: none;
}

.wizard-content .question.active:before {
  opacity: 0;
}

.wizard-content .question.done:before {
  opacity: 0;
}

.wizard-content .question.done:hover:before {
  opacity: 0.5;
}

.wizard-content .question .button {
  margin-top: 30px;
  display: none;
  width: 230px;
}

.wizard-content .question.active .button {
  display: inline-block;
}

.wizard-content .button-wrapper {
  display: block;
}

.wizard-content .enter {
  font-size: 12px;
  display: inline-block;
  padding-left: 20px;
  color: #777;
}

.wizard-content .enter .key {
  font-size: 10px;
  letter-spacing: 0.7px;
  border-radius: 3px;
  border: 1px solid #d0d0d0;
  color: #6b6b6b;
  padding: 3px 7px 2px;
  margin-left: 5px;
  font-weight: 500;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Choose Handbook Modal
------------------------------------------------ */

.modal#choose-handbook {
  width: 500px;
  height: 500px;
  background: #5d646d;
}

#choose-handbook .header {
  position: relative;
  height: 23%;
  border: none;
  border-bottom: none;
}

#choose-handbook .handbook-option {
  background: #fff;
  border-radius: 4px;
  width: 100%;
  display: inline-block;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  padding: 20px;
  margin: 5px 0;
  text-align: center;
}

#choose-handbook .handbook-option.new {
  color: #00a7ff;
}

#choose-handbook .content {
  height: 77%;
  overflow-x: hidden;
}

/* Content Checklist
------------------------------------ */

.accordian {
  text-align: left;
  max-height: 410px;
  overflow: scroll;
  z-index: 100;
}

.accordian li span {
  width: 100%;
  display: inline-block;
  text-align: left;
}

.accordian li span.selected-tag {
  font-size: 12px;
  color: #a9b0b7;
  position: absolute;
  right: 25px;
  text-align: right;
  line-height: 20px;
  top: 50%;
  margin-top: -10px;
  width: auto;
}

.accordian li span.selected-tag .number {
  width: auto;
}

.accordian li span.title {
  position: relative;
}

.accordian li li span.title {
  color: #2c3033;
  position: relative;
  padding: 15px 60px 12px;
  border-bottom: 1px solid #f6f7f7;
  font-size: 14px;
  position: relative;
  font-weight: 400;
  cursor: pointer;
}

.accordian li li span.title:after {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -10px;
  height: 20px;
  width: 20px;
  right: 26px;
  border-radius: 20px;
  border: 1px solid #c0c1c1;
  display: inline-block;
}

.accordian li.master ul li:last-child span.title {
  border-bottom: none;
}

.accordian li span.subtitle {
  font-size: 13px;
  opacity: 0.6;
  line-height: 1.5;
  padding-top: 5px;
  font-weight: 400;
}

.accordian li.master > span.title:after,
.accordian li.master > span.title:before {
  content: '';
  width: 6px;
  height: 1px;
  border-radius: 1px;
  background: #93979a;
  display: inline-block;
  position: absolute;
  right: 29px;
  top: 50%;
  transform: rotate(45deg);
  margin-top: -1px;
  opacity: 0;
  border: none;
}

.accordian li.master > span.title:hover:after,
.accordian li.master > span.title:hover:before,
.accordian li.master.active > span.title:after,
.accordian li.master.active > span.title:before {
  opacity: 1;
}

.accordian li.master > span.title:hover .selected-tag,
.accordian li.master > span.title:hover .selected-tag,
.accordian li.master.active > span.title .selected-tag,
.accordian li.master.active > span.title .selected-tag {
  right: 50px;
}

.accordian li.master > span.title:before {
  transform: rotate(-45deg);
  right: 25px;
}

.accordian li.master.active > span.title:before {
  transform: rotate(45deg);
}

.accordian li.master.active > span.title:after {
  transform: rotate(-45deg);
}

.accordian li.master > span.title {
  border-bottom: 1px solid #eee;
  cursor: pointer;
  font-size: 17px;
  padding: 20px 15px 20px 60px;
  color: #344048;
  font-weight: 500;
}

.accordian li.master:last-child > span.title {
  border: none;
}

.accordian li.master > span.title:hover,
.accordian li.master.active > span.title {
  background: #f6f6f7;
  font-weight: 500;
}

.accordian li.master ul {
  display: none;
  border-bottom: 1px solid #eee;
  width: 100%;
}

.accordian li.master.active ul {
  display: inline-block;
}

.accordian li > span.title.selected {
  font-weight: 600;
  background: #fff;
}

.accordian li > span.title.selected span {
  opacity: 1 !important;
}

.accordian li > span.title.selected:after,
.accordian li > span.title.selected:before {
  content: '';
  width: 18px;
  height: 2px;
  background: #00a5ff;
  display: inline-block;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: rotate(-45deg);
  margin-top: -1px;
  border: none;
  border-radius: 0;
}

.accordian li > span.title.selected:before {
  transform: rotate(45deg);
  right: 37px;
  width: 10px;
  margin-top: 2px;
}

.accordian .icon {
  width: 30px;
  height: 30px;
  display: inline-block;
  background: #00a5ff;
  border-radius: 30px;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 15px;
  top: 13px;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.1);
}

.accordian .icon.chat {
  background-image: url(../../images/chat@2x.png);
  background-size: 14px;
}

.accordian .icon.group {
  background-image: url(../../images/group@2x.png);
  background-size: 12px;
}

.accordian .icon.check {
  background-image: url(../../images/check@2x.png);
  background-size: 14px;
}

.accordian .icon.flash {
  background-image: url(../../images/flash@2x.png);
  background-size: 11px;
}

.accordian .icon.heart {
  background-image: url(../../images/heart@2x.png);
  background-size: 12px;
}

.accordian .icon.leaf {
  background-image: url(../../images/leaf@2x.png);
  background-size: 13px;
}

.accordian .icon.lightbulb {
  background-image: url(../../images/lightbulb@2x.png);
  background-size: 9px;
}

.accordian li a,
.accordian li a:hover {
  padding: 0;
  color: #00a6fe;
  display: inline;
  text-align: inherit;
  line-height: inherit;
  opacity: 1;
  background: none;
}

.mini-menu .accordian {
  text-align: left;
  max-height: 80%;
  overflow: scroll;
}

/* Publish options
------------------------------------ */

#publish-options {
  top: 40px !important;
  right: 10px !important;
}

.modal#export {
  height: auto;
  width: 400px;
}

.modal#export .header {
  height: auto;
  position: relative;
  width: 100%;
}

.modal#export button,
.modal#export .button {
  width: 100%;
}

/* TinyMCE Overrides
------------------------------------ */

.mce-label,
.mce-window,
.mce-window-head,
.mce-primary {
  font-family: 'Avenir W01', sans-serif !important;
}

.mce-floatpanel {
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

.mce-window {
  border: none !important;
  border-radius: 4px !important;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2) !important;
}

.mce-window-head {
  font-size: 13px !important;
  padding: 14px 0 !important;
  line-height: 50px !important;
  border-bottom: 1px solid #eee !important;
}

.mce-window-head .mce-title {
  font-size: 13px !important;
  letter-spacing: 0.2px !important;
  color: #5f6365 !important;
  padding-right: 0 !important;
  text-align: center !important;
}

.mce-container,
.mce-container *,
.mce-widget,
.mce-widget *,
.mce-reset {
  font-weight: 500 !important;
}
.mce-window .mce-panel {
  background: #fff !important;
}

.mce-primary {
  background: #00a7ff !important;
  color: #fff !important;
  border: none !important;
  text-shadow: none !important;
}

.mce-foot {
  border: none !important;
}

.mce-btn button {
  color: #fff !important;
  font-size: 14px !important;
  border: none !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  display: inline-block !important;
  text-align: center !important;
}

.mce-offscreen-selection {
  display: none;
}

.mce-content-body:hover {
  outline: 1px solid #00a7ff !important;
}

.mce-floatpanel.mce-menu .mce-stack-layout span {
  color: #111 !important;
}

.mce-custom-color-btn .mce-btn {
  text-align: center;
  width: 100%;
  font-size: 13px;
  background: #1a1a1a;
}

.mce-custom-color-btn button {
  font-size: 12px !important;
}

/* Loading
------------------------------------ */

.sidebar-content-loading {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #45484c;
  z-index: 3;
  display: none;
  opacity: 0;
  transition: opacity 300ms ease-in-out;
}

.sidebar-content-loading.active {
  display: inline-block;
}

.sidebar-content-loading.visible {
  opacity: 1;
}

.sidebar-content-loading #spinner {
  position: absolute;
  left: 50%;
  margin-left: -9px;
  top: 50%;
  margin-top: -9px;
}

/* Loading SVG
------------------------------------------------ */

#spinner.cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.spinner {
  -webkit-animation: rotator 1.4s linear infinite;
  animation: rotator 1.4s linear infinite;
}

#spinner.cover .spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -9px;
  margin-left: -9px;
}

.top-bar .spinner {
  position: absolute;
  left: 15px;
  top: 15px;
}

@-webkit-keyframes rotator {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}

@keyframes rotator {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}
.path {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  stroke: #ffffff;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-animation: dash 1.4s ease-in-out infinite;
  animation: dash 1.4s ease-in-out infinite;
}

@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
    transform: rotate(450deg);
  }
}
@keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
    transform: rotate(450deg);
  }
}

#spinner.dark .path {
  stroke: #444;
}

/* Account stuff
------------------------------------------------ */

div.account {
  background: #00a7ff;
}

div.account.inside {
  background: #f7f7f7;
}

div.account.outside .top-bar {
  box-shadow: none;
}

#account-wrapper {
  width: 100%;
  max-width: 400px;
  display: inline-block;
  margin: 150px auto;
  text-align: left;
  font-size: 15px;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}

body.outside #account-wrapper {
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}
body.inside #account-wrapper {
  border: 1px solid #eee;
}

#account-wrapper h1 {
  width: 100%;
  display: inline-block;
  font-size: 18px;
  text-align: center;
  padding: 40px 0;
}

#account-wrapper .tab-bar {
  height: 100%;
  font-size: 0;
  text-align: center;
}

#account-wrapper .tab-bar a {
  height: 50px;
  line-height: 50px;
  font-size: 11px;
}

#account-wrapper #main {
  width: 100%;
  padding: 0 40px 30px;
  display: inline-block;
}

#account-wrapper .tab-bar a.active {
  border-color: #fff;
}

#account-wrapper form label {
  margin-bottom: 15px;
}

#account-wrapper form label input {
  padding: 13px 15px;
  margin-top: 0;
  font-size: 14px;
}

#account-wrapper .button {
  width: 100%;
  margin-top: 0;
  margin-bottom: 10px;
}
#account-wrapper #error,
#account-wrapper #success,
#account-wrapper #account-result-block.error,
#account-wrapper #account-result-block.success {
  width: 100%;
  display: inline-block;
  border: 1px solid #eac6c6;
  background: #ffecec;
  color: #b54444;
  padding: 13px 15px;
  line-height: 1.5;
  font-size: 14px;
  margin-bottom: 15px;
  border-radius: 4px;
}
#account-wrapper #success,
#account-wrapper #account-result-block.success {
  border: 1px solid #c6ead0;
  background: #ecffef;
  color: #44b563;
}

/* Billing
------------------------------------------------ */

.handbook-subscription {
  font-size: 17px;
}

/* Pricing
------------------------------------------------ */

.modal#trial-expired {
  /*width: 769px;
    height: 570px;*/
  width: initial;
  height: initial;
  /* display: inline-block; */
}

#trial-expired .container.step1 {
  /* width: 769px; */
  width: 700px;
  height: 650px;
  display: inline-block;
  /*display: none;*/
}

#trial-expired .container.step2 {
  width: 544px;
  height: 546px;
  /*display: inline-block;*/
  display: none;
}

#trial-expired .pricing-header {
  width: 100%;
  height: 140px;
  background-color: #5d646c;
  margin: auto;
  display: inline-flex;
}

#trial-expired .container.step2 .pricing-header {
  height: 66px;
}

#trial-expired .pricing-header .top-line {
  width: 100%;
  color: #fff;
  font-size: 20px;
  margin: auto;
  line-height: 28px;
  font-weight: 500;
}

#trial-expired .pricing-header .bottom-line {
  font-size: 24px;
}

#trial-expired .pricing-options {
  display: inline-flex;
  /* width: 712px; */
  height: 353px;
  margin: -24px auto 0px auto;
  border-radius: 8px;
  border: solid #e9e9e9;
  border-width: 2px;
  overflow: hidden;
  background-color: #fff;
}

#trial-expired .pricing-options .option {
  width: 237px;
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  background: #ffffff;
  color: #222;
  height: 363px;
  cursor: pointer;
}

#trial-expired .pricing-options .option.active {
  background-color: rgba(160, 212, 249, 0.15);
}

#trial-expired .pricing-options .option h3 {
  font-size: 12px;
  color: #2c2e2f;
  margin-top: 58px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

#trial-expired .pricing-options .option.active h3 {
  color: #2ca2f6;
}

#trial-expired .pricing-options .option img {
  width: 40px;
  margin-top: 17px;
}

#trial-expired .pricing-options .option p {
  font-size: 15px;
  color: #2c2e2f;
  font-weight: 300;
  margin: 26px 30px 0px 30px;
  padding: 0;
}

#trial-expired .pricing-options .option .separator {
  height: 1px;
  background-color: #979797;
  opacity: 0.21;
  width: 122px;
  margin: 26px auto 0px auto;
}

#trial-expired .pricing-options .option .price {
  font-size: 20px;
  color: #9ac267;
  font-weight: 600;
  margin-top: 18px;
  display: block;
  text-align: center;
}

#trial-expired .pricing-options .option .price .period {
  font-weight: 300;
  color: #2c2e2f;
}

#trial-expired .pricing-options .option .price .annual {
  font-size: 16px;
  color: #7c8d95;
  font-weight: 300;
}

#trial-expired .pricing-options .option .cta.button {
  margin-top: 26px;
  background-color: #2ca2f6;
  color: #fff;
  width: 140px;
  height: 40px;
  line-height: 40px;
  font-size: 15px;
  font-weight: 600;
  padding: 0;
  vertical-align: middle;
  text-transform: none;
}

#trial-expired .pricing-options .option .cta.button.enterprise {
  background-color: #9ac267;
}

#trial-expired .pricing-options .option .pricing-selector {
  content: url('../../images/pricingRadioButtonOff.svg');
  width: 18px;
  height: 18px;
  margin: 24px auto 0px auto;
}

#trial-expired .pricing-options .option.active .pricing-selector {
  content: url('../../images/pricingRadioButtonOn.svg');
}

#trial-expired .container .button-container {
  display: inline-flex;
  width: 100%;
  height: 150px;
}

#trial-expired .container .cta.button {
  margin: auto;
  margin-top: 26px;
  width: 220px;
  height: 40px;
  text-transform: none;
  font-size: 15px;
  font-weight: 600;
  background-color: #2ca2f6;
}

#trial-expired .container .cta.button.green {
  background-color: #9ac267;
}

#trial-expired .container .features {
  height: 80px;
  margin-top: 39px;
}

#trial-expired .container .features ul li {
  margin-left: 74px;
  display: flex;
  padding-bottom: 13px;
}

#trial-expired .container .features ul li p {
  padding-left: 13px;
  font-size: 15px;
  color: #5d646c;
  font-weight: 500;
}

#trial-expired .container .dropdowns {
  height: 157px;
  margin-top: 55px;
  display: inline-block;
}

#trial-expired .trial-expired-dropdown {
  height: 80px;
  width: 286px;
  display: flex;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(151, 151, 151, 0.21);
  padding: 0;
  cursor: pointer;
  outline: none;
  font-size: 16px;
}

#trial-expired .container .dropdowns .dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  border-radius: 8px;
  width: 286px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

#trial-expired .container .dropdowns .dropdown-content a {
  color: #5d646c;
  padding: 12px 16px;
  display: block;
  font-size: 14px;
  font-weight: 600;
}

#trial-expired .container .dropdowns .dropdown-content a:hover {
  background-color: #2ca2f6;
  color: #fff;
}

#trial-expired .container .dropdowns .dropdown-content.show {
  display: block;
}

#trial-expired .trial-expired-dropdown .icon {
  width: 40px;
  height: 100%;
  content: url('../../images/pricing_small_biz.svg');
}

#trial-expired .trial-expired-dropdown .labels {
  margin-left: 23px;
  height: 100%;
  width: 100%;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  margin-top: 15px;
}

#trial-expired .trial-expired-dropdown .labels .top-line {
  display: flex;
  height: 50%;
}

#trial-expired .trial-expired-dropdown .labels .bottom-line {
  display: flex;
  height: 50%;
}

#trial-expired .trial-expired-dropdown .chevron {
  width: 10px;
  margin-right: 20px;
  height: 100%;
}

#trial-expired .trial-expired-dropdown.frequency .labels {
  margin-left: 63px;
}

#trial-expired .trial-expired-dropdown.plan .labels .top-line {
  color: #000;
  size: 16px;
}

#trial-expired .trial-expired-dropdown.plan .labels .bottom-line {
  color: #7c8d95;
  font-weight: 400;
  white-space: pre;
}

#trial-expired .trial-expired-dropdown.plan .labels .bottom-line .employees {
  font-weight: 600;
}

#trial-expired .trial-expired-dropdown.frequency .labels .top-line {
  color: #5d646c;
}

#trial-expired .trial-expired-dropdown.frequency .labels .bottom-line {
  color: #9ac267;
  font-weight: 600;
}

#trial-expired .container .button-container.step2 {
  height: 160px;
}

#trial-expired .container.step2 #trial-expired-payment-button {
  display: block;
  margin-top: 48px;
}

#trial-expired-choose-handbook-button {
  margin: auto;
  width: 220px;
  height: 40px;
  font-size: 14px;
  font-weight: 400;
  color: #5d646c;
  display: block;
  margin-bottom: 30px;
  cursor: pointer;
}

#trial-expired-delete-button {
  margin: auto;
  width: 220px;
  height: 40px;
  font-size: 14px;
  font-weight: 400;
  color: #e82f57;
  display: block;
  margin-top: 24px;
  cursor: pointer;
}

#trial-expired-cancel-button {
  margin: auto;
  width: 220px;
  height: 40px;
  font-size: 14px;
  font-weight: 400;
  color: #5d646c;
  display: block;
  margin-top: 24px;
  margin-bottom: 30px;
  cursor: pointer;
}

#trial-expired .container .button-container .container {
  display: inline-block;
  width: 100%;
  height: 100%;
}

#mce-toolbar-container {
  position: fixed;
  left: 220px;
  top: 130px;
  z-index: 20;
}

/* add new page button */
#add-new-page {
  position: fixed;
  bottom: 5%;
  z-index: 12;
}

#add-new-page .svg-icon {
  vertical-align: middle;
  margin-right: 10px;
}

#add-new-page .new-section {
  width: 100% !important;
  background: #fff;
  border-radius: 3px;
  font-size: 14px;
  text-align: center;
  line-height: 1.4;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  display: inline-block;
  margin: 2px 0 2px 0 !important;
  position: relative;
  font-weight: 500;
  letter-spacing: 0.2px;
  height: auto !important;
  transition: background 300ms ease-in-out;
  padding-bottom: 0px !important;
}

#add-new-page .new-section {
  color: #fff;
  font-weight: 500;
  background: none;
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 160px !important;
  background: #d04727;
  padding: 13px 0 !important;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

#add-new-page .new-section:hover {
  opacity: 1;
}
#add-new-page .new-section:active {
  opacity: 1 !important;
  background: #c53d1f;
}

#style-and-delete-button-group {
  position: fixed;
  top: 150px;
  left: 220px;
  z-index: 12;
  display: flex;
  flex-direction: column;
  height: 121px;
  width: 50px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

#style-and-delete-button-group .flex-button {
  width: 50px;
  height: 60px;
  font-size: 9px;
  background-size: 14px;
  vertical-align: bottom;
  background-position: center 15px;
  background-repeat: no-repeat;
}

#style-and-delete-button-group .flex-button span {
  position: relative;
  top: 38px;
}

#style-and-delete-button-group .line {
  border-top: 1px solid #c9c9c9;
  height: 1px;
}

#style-and-delete-button-group .style-button {
  border-radius: 30px 30px 0 0;
  background-image: url(../../images/style.svg);
}

#style-and-delete-button-group .delete-button {
  border-radius: 0 0 30px 30px;
  background-image: url(../../images/delete.svg);
}

/* Context Menu */
.context-menu-section {
  font-size: 16px !important;
  text-align: left;
}

.context-menu-section .context-menu-icon {
  padding-top: 0.3em;
  padding-bottom: 0.3em;
}

/* reset-password */
#reset-password-container {
  padding-top: 2.8rem;
}

.form-group {
  position: relative;
}

#input-glyph {
  position: absolute;
  color: green;
  right: 10px;
  pointer-events: none;
  top: 10px;
  display: none;
}

/* .form-control {
	padding-right: 47px;
} */
/* need to add bootsrtap icon to activate the glyph icon */
.form-control.valid ~ #input-glyph,
.form-control.valid:invalid ~ #input-glyph {
  display: block;
}

.form-control.valid ~ #input-glyph {
  display: block;
}
.form-control.valid:invalid ~ #input-glyph {
  display: none;
}
.form-control:valid ~ #input-glyph {
  display: block;
}

.block-wrapper ul {
  list-style-type: disc;
}

.block-wrapper ol {
  list-style-type: decimal;
}

[data-grammarly-part] {
  width: 0px !important;
  height: 0px !important;
  display: none !important;
}

#acknowledging-receipt {
  font-size: 15px;
  font-family: 'Lato';
  color: #3d4353;
  line-height: 1.4;
}

/* modal Acknowledge */
#acknowledging-receipt .acknowledging-receipt-wrapper {
  font-family: 'Lato';
  position: relative;
  color: #3d4353;
  max-width: 700px;
}

#acknowledging-receipt
  .acknowledging-receipt-wrapper
  .acknowledging-receipt-header {
  padding: 20px;
  border-bottom: 1px solid #d5d6da;
}

#acknowledging-receipt .acknowledging-receipt-wrapper .acknowledging-close {
  position: absolute;
  right: 20px;
  top: 20px;
}

#acknowledging-receipt
  .acknowledging-receipt-wrapper
  .acknowledging-receipt-content {
  text-align: left;
  padding: 20px;
}

.acknowledging-receipt-wrapper .handbook-name {
  font-weight: bold;
}

.acknowledging-receipt-wrapper .acknowledging-receipt-content .button {
  width: 100%;
  margin-top: 20px;
  text-transform: capitalize;
}

/* 404 page */
.not-found-wrapper {
  padding-top: 140px;
  text-align: center;
  font-family: 'Avenir W01';
  max-width: 768px;
  margin: 0 auto;
}

.not-found-wrapper .title {
  font-size: 26px;
  color: #47a6f8;
  font-weight: 700;
  margin: 30px 0px 15px;
}

.not-found-wrapper .description {
  font-weight: 400;
  color: #3d4353;
  font-size: 18px;
  line-height: 1.3;
}

.not-found-wrapper .background-image {
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 350px;
}

.not-found-wrapper .footer-logo {
  max-width: 224px;
  margin-top: 75px;
}
