.is-style-m-spacerhalf {
  height: 40px !important;
}
.is-style-m-spacerfull {
  height: 80px !important;
}
.is-style-m-spacerx2 {
  height: 160px !important;
}
.moai-wrapper,
.wp-block-column {
  box-sizing: border-box;
  background-size: cover;
  background-position: center;
}
.moai-wrapper .moai-video,
.wp-block-column .moai-video {
  object-position: center;
  object-fit: cover;
  position: absolute;
  left: 0px;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.moai-wrapper > p:first-of-type,
.wp-block-column > p:first-of-type {
  padding-top: 0;
  margin-top: 0;
}
.moai-wrapper > p:last-of-type,
.wp-block-column > p:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
}
.moai-wrapper.mbvt,
.wp-block-column.mbvt {
  background-position-y: top;
}
.moai-wrapper.mbvc,
.wp-block-column.mbvc {
  background-position-y: center;
}
.moai-wrapper.mbvb,
.wp-block-column.mbvb {
  background-position-y: bottom;
}
.moai-wrapper.mbhl,
.wp-block-column.mbhl {
  background-position-x: left;
}
.moai-wrapper.mbhc,
.wp-block-column.mbhc {
  background-position-x: center;
}
.moai-wrapper.mbhr,
.wp-block-column.mbhr {
  background-position-x: right;
}
.moai-wrapper.mba,
.wp-block-column.mba {
  background-size: auto;
}
.moai-wrapper.mbc,
.wp-block-column.mbc {
  background-size: contain;
}
.moai-wrapper.mbcv,
.wp-block-column.mbcv {
  background-size: cover;
}
.moai-wrapper.mbfixed,
.wp-block-column.mbfixed {
  background-attachment: fixed;
}
.moai-wrapper.mbnorep,
.wp-block-column.mbnorep {
  background-repeat: no-repeat;
}
.moai-wrapper.mbpl,
.wp-block-column.mbpl {
  padding-left: 80px;
}
.moai-wrapper.mbpr,
.wp-block-column.mbpr {
  padding-right: 80px;
}
.moai-wrapper.mbpt,
.wp-block-column.mbpt {
  padding-top: 80px;
}
.moai-wrapper.mbpb,
.wp-block-column.mbpb {
  padding-bottom: 80px;
}
.moai-wrapper.mbplx2,
.wp-block-column.mbplx2 {
  padding-left: 160px;
}
.moai-wrapper.mbprx2,
.wp-block-column.mbprx2 {
  padding-right: 160px;
}
.moai-wrapper.mbptx2,
.wp-block-column.mbptx2 {
  padding-top: 160px;
}
.moai-wrapper.mbpbx2,
.wp-block-column.mbpbx2 {
  padding-bottom: 160px;
}
.moai-wrapper.mhr,
.wp-block-column.mhr {
  margin-right: calc((100vw - 1400px)/2);
}
.moai-wrapper.mhl,
.wp-block-column.mhl {
  margin-left: calc((100vw - 1400px)/2);
}
.editor-styles-wrapper .moai-wrapper.mhl {
  margin-left: 100px;
}
.editor-styles-wrapper .moai-wrapper.mhr {
  margin-right: 100px;
}
/**
 * Simple Accordion Tabs - Front-end Styles
 */
/* Shared styles */
.moai-item-header {
  transition: background-color 0.2s ease-out;
  z-index: 1;
  cursor: pointer;
}
.moai-item-content {
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease-out, padding 0.3s ease-out;
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.moai-item-content .moai-content {
  padding-bottom: 40px;
  padding-left: 40px;
}
.moai-item.active .moai-item-content {
  max-height: 5000px;
  /* Large enough to fit content */
  overflow: visible;
  opacity: 1;
  padding-top: initial;
  padding-bottom: initial;
}
/* Accordion specific */
.moai-wrapper.accordion .moai-item-header {
  position: relative;
}
/* Tabs specific */
.moai-wrapper.tabs .moai-tabs-nav {
  display: flex;
}
.moai-wrapper.tabs .moai-tab-button {
  cursor: pointer;
  transition: all 0.2s ease-out;
}
.moai-wrapper.tabs .moai-item-header {
  display: none;
  /* Hide item headers in tab mode */
}
.moai-wrapper.tabs .moai-item-content {
  max-height: none;
  display: none;
}
.moai-wrapper.tabs .moai-item.active .moai-item-content {
  display: block;
}
