.is-style-m-spacerhalf {
  height: 55px !important;
}
.is-style-m-spacerfull {
  height: 110px !important;
}
.is-style-m-spacerx2 {
  height: 220px !important;
}
.moai-wrapper {
  box-sizing: border-box;
  background-size: cover;
  background-position: center;
  height: 100%;
}
.moai-wrapper > p:first-of-type {
  padding-top: 0;
  margin-top: 0;
}
.moai-wrapper > p:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
}
.moai-wrapper.mbvt {
  background-position-y: top;
}
.moai-wrapper.mbvc {
  background-position-y: center;
}
.moai-wrapper.mbvb {
  background-position-y: bottom;
}
.moai-wrapper.mbhl {
  background-position-x: left;
}
.moai-wrapper.mbhc {
  background-position-x: center;
}
.moai-wrapper.mbhr {
  background-position-x: right;
}
.moai-wrapper.mba {
  background-size: auto;
}
.moai-wrapper.mbc {
  background-size: contain;
}
.moai-wrapper.mbcv {
  background-size: cover;
}
.moai-wrapper.mbnorep {
  background-repeat: no-repeat;
}
.moai-wrapper.mbpl {
  padding-left: 110px;
}
.moai-wrapper.mbpr {
  padding-right: 110px;
}
.moai-wrapper.mbpt {
  padding-top: 110px;
}
.moai-wrapper.mbpb {
  padding-bottom: 110px;
}
.moai-wrapper.mbplx2 {
  padding-left: 220px;
}
.moai-wrapper.mbprx2 {
  padding-right: 220px;
}
.moai-wrapper.mbptx2 {
  padding-top: 220px;
}
.moai-wrapper.mbpbx2 {
  padding-bottom: 220px;
}
.moai-wrapper.mhr {
  margin-right: 10vw;
}
.moai-wrapper.mhl {
  margin-left: 10vw;
}
.editor-styles-wrapper .moai-wrapper.mhl {
  margin-left: 100px;
}
.editor-styles-wrapper .moai-wrapper.mhr {
  margin-right: 100px;
}
.moai-editor-item-header {
  background-color: #595959;
  color: #fff;
  padding: 4px 20px !important;
}
.moai-editor-item-header h4 {
  margin: 0;
}
/**
 * Simple Accordion Tabs - Front-end Styles
 */
/* Shared styles */
.moai-wrapper {
  overflow: hidden;
}
.moai-item-header {
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.moai-item-content {
  padding: 0 15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.moai-item.active .moai-item-content {
  padding: 15px;
  max-height: 1000px;
  /* Large enough to fit content */
}
/* Accordion specific */
.moai-wrapper.accordion .moai-item-header {
  position: relative;
}
.moai-wrapper.accordion .moai-item-header::after {
  content: "+";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
}
.moai-wrapper.accordion .moai-item.active .moai-item-header::after {
  content: "-";
}
/* Tabs specific */
.moai-wrapper.tabs .moai-tabs-nav {
  display: flex;
}
.moai-wrapper.tabs .moai-tab-button {
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.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;
}
@media screen and (max-width: 1400px) {
  .moai-wrapper.mhl {
    margin-left: 0;
  }
  .moai-wrapper.mhr {
    margin-right: 0;
  }
}
