/*
 * Default Styles
 */
/* Container / Main */
@media (max-width: 1500px) {
  .container {
    padding: 0 20px;
    max-width: 100%;
  }
}
main {
  overflow: hidden;
}
main > *:not(.shuffl-section):first-child {
  margin-top: 50px;
}
main > *:not(.shuffl-section):last-child {
  margin-bottom: 50px;
}
.container {
  box-sizing: content-box;
}
.container.page-not-found {
  padding: 100px 0;
  text-align: center;
}
.container.page-not-found .btn {
  margin-top: 20px;
}
.container.with-margin {
  margin: 50px auto;
}
/*
 * Breadcrumbs
 */
.breadcrumbs {
  font-size: 0.8em;
}
.breadcrumbs .breadcrumb-item {
  display: inline-block;
  color: #484848;
}
.breadcrumbs .breadcrumb-item:not(:last-child)::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin: 0 8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent #bbbbbb;
  margin-top: -1px;
}
/*
 * WPCF7
 */
.wpcf7 span[role=alert] {
  padding: 5px 0 0 0;
  font-size: 0.9em;
}
.wpcf7 form .wpcf7-response-output {
  border: none;
  margin: 0;
  padding: 10px 0;
  text-align: center;
  width: 100%;
  font-size: 1em;
  line-height: 1.2;
}




/*
 * Default Document Styles
 */
* {
  box-sizing: border-box;
}
.editor-styles-wrapper, body, html {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: subpixel-antialiased;
  background-color: var(--primary-color);
  color: var(--primary-text-color);
  font-size: var(--font-body-size);
  font-family: var(--font-body-family);
}
body.header-spacing {
  padding-top: var(--header-height);
}
p {
  line-height: var(--font-line-height);
}
p:first-child {
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}
iframe {
  border: none;
}
img {
  max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading-family);
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}
h1 {
  font-size: var(--h1-size);
  font-weight: var(--h1-weight);
}
h2 {
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
}
h3 {
  font-size: var(--h3-size);
  font-weight: var(--h3-weight);
}
h4 {
  font-size: var(--h4-size);
  font-weight: var(--h4-weight);
}
h5 {
  font-size: var(--h5-size);
  font-weight: var(--h5-weight);
}
h6 {
  font-size: var(--h6-size);
  font-weight: var(--h6-weight);
}
a {
  color: var(--link-color);
  transition: color 0.5s;
}
a:hover {
  color: var(--link-hover-color);
}
.acf-block-preview .button-wrapper, .shuffl-frontend .button-wrapper {
  margin-top: 1em;
}
.acf-block-preview button, .acf-block-preview input[type=submit], .acf-block-preview input[type=button], .shuffl-frontend button, .shuffl-frontend input[type=submit], .shuffl-frontend input[type=button] {
  -webkit-appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  max-width: 100%;
}
.acf-block-preview .btn, .acf-block-preview .button, .shuffl-frontend .btn, .shuffl-frontend .button {
  text-decoration: none;
  background-color: var(--button-primary-color);
  color: var(--button-primary-text-color);
  font-family: var(--font-button-family);
  border-radius: var(--button-primary-round);
  margin-right: 0.5em;
  padding: 10px 37px;
  display: inline-block;
  text-align: center;
  transition: background-color 0.5s, color 0.5s, border 0.5s;
  vertical-align: middle;
  border: var(--button-primary-border);
}
.acf-block-preview .btn:last-child, .acf-block-preview .button:last-child, .shuffl-frontend .btn:last-child, .shuffl-frontend .button:last-child {
  margin-right: 0;
}
.acf-block-preview .btn:hover, .acf-block-preview .button:hover, .shuffl-frontend .btn:hover, .shuffl-frontend .button:hover {
  background-color: var(--button-primary-hover-color);
  color: var(--button-primary-hover-text-color);
  border-color: var(--button-primary-border-hover);
}
.acf-block-preview .btn-secondary, .acf-block-preview .button-secondary, .shuffl-frontend .btn-secondary, .shuffl-frontend .button-secondary {
  background-color: var(--button-secondary-color);
  color: var(--button-secondary-text-color);
  border-radius: var(--button-secondary-round);
  border: var(--button-secondary-border);
}
.acf-block-preview .btn-secondary:hover, .acf-block-preview .button-secondary:hover, .shuffl-frontend .btn-secondary:hover, .shuffl-frontend .button-secondary:hover {
  background-color: var(--button-secondary-hover-color);
  color: var(--button-secondary-hover-text-color);
  border-color: var(--button-secondary-border-hover);
}
.acf-block-preview .button-link, .shuffl-frontend .button-link {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  margin-top: 25px;
  position: relative;
  margin-right: 50px;
}
.acf-block-preview .button-link::after, .shuffl-frontend .button-link::after {
  content: '';
  display: block;
  position: absolute;
  border: solid var(--link-color);
  border-width: 0 2px 2px 0;
  width: 5px;
  height: 5px;
  left: 100%;
  margin-left: 10px;
  top: 50%;
  transform: rotate(-45deg) translateY(-50%);
  transition: margin 0.5s;
}
.acf-block-preview .button-link:hover::after, .shuffl-frontend .button-link:hover::after {
  border-color: var(--link-hover-color);
  margin-left: 15px;
}
.acf-block-preview .button-link:last-child, .shuffl-frontend .button-link:last-child {
  margin-right: 10px;
}
.menu {
  font-family: var(--font-menu-family);
}
.menu a {
  text-decoration: none;
}
.shuffl-gallery .slick-track {
  display: flex;
  align-items: center;
}
.shuffl-gallery .slick-arrow {
  position: absolute;
  top: 50%;
  font-size: 0;
  background: 0;
  border: 0;
  width: 14px;
  height: 14px;
  border: 2px solid var(--primary-text-color);
  border-width: 3px 3px 0px 0;
  margin: 0;
  transform: rotate(-135deg);
  cursor: pointer;
}
.shuffl-gallery .slick-arrow.slick-prev {
  left: -20px;
}
.shuffl-gallery .slick-arrow.slick-next {
  right: -20px;
  transform: rotate(45deg);
}
.shuffl-video {
  position: relative;
}
.shuffl-video:not(.with-controls) {
  cursor: pointer;
}
.shuffl-video:not(.with-controls)::before, .shuffl-video:not(.with-controls)::after {
  content: '';
  transition: opacity 2s;
  display: block;
  position: absolute;
  opacity: 0;
}
.shuffl-video:not(.with-controls)::before {
  width: 60px;
  height: 60px;
  border-radius: 40px;
  position: absolute;
  background: var(--primary-color);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.shuffl-video:not(.with-controls)[data-state="play"]::after {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 18px;
  background-color: var(--primary-text-color);
  box-shadow: 10px 0 0 var(--primary-text-color);
  margin-left: -5px;
  pointer-events: none;
}
.shuffl-video:not(.with-controls)[data-state="play"]:hover::before, .shuffl-video:not(.with-controls)[data-state="play"]:hover::after {
  opacity: 1;
}
.shuffl-video:not(.with-controls)[data-state="pause"]::before {
  opacity: 1;
}
.shuffl-video:not(.with-controls)[data-state="pause"]::after {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 18px;
  border-color: transparent transparent transparent var(--primary-text-color);
  margin-left: 3px;
  pointer-events: none;
  opacity: 1;
}
.shuffl-video video {
  max-width: 100%;
}
.shuffl-step {
  flex: 0 0 100%;
  opacity: 0;
  transition: opacity 0.5s;
}
.shuffl-step.active {
  opacity: 1;
}
.shuffl-step-wrap {
  overflow: hidden;
}
.shuffl-step-track {
  display: flex;
  transition: transform 0.8s 0.2s;
}
/*
 * Additional
 */
.small-text {
  display: inline-block;
  max-width: 13em;
  font-size: 0.75em;
  margin: 0 0 0 0.5em;
  vertical-align: middle;
}




/*
 * Loading Screen Styles
 */
body.is-loading {
    pointer-events: none;
}

#shuffl-loader {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 9999999999;
    background: #fff;
    display: flex;
    align-items: center;
}

#shuffl-loader img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 90vw;
    max-height: 90vh;
}

#shuffl-loader.completed {
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s 1s;
}

#shuffl-loader .loading-svg {
    margin: 0 auto;
    max-width: 90vw;
    max-height: 90vh;
}

#shuffl-loader svg {
    max-width: 100%;
    max-height: 100%;
}




/*
 * Admin Bar Styles
 */
.shuffl-edit-page {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 999999999;
  color: #fff;
  font-size: 0;
  height: 60px;
  width: 60px;
  border-radius: 999px;
  background: var(--button-primary-color, #fff);
  transition: background-color 0.5s;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.18);
}
.shuffl-edit-page i {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  -webkit-mask-image: url(https://jfvisuals.au/wp-content/plugins/shuffl/modules/admin-bar/assets/images/ico-edit.svg);
  -webkit-mask-size: 21px;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(https://jfvisuals.au/wp-content/plugins/shuffl/modules/admin-bar/assets/images/ico-edit.svg);
  mask-size: 21px;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: var(--button-primary-text-color, #000);
}
.shuffl-edit-page:hover {
  background-color: var(--button-primary-hover-color, #21759b);
}
.shuffl-edit-page:hover i {
  background-color: var(--button-primary-hover-text-color, #fff);
}
.shuffl-page-edit-options {
  background: #2b2b2b;
  list-style: none;
  margin: 0;
  pointer-events: none;
  opacity: 0;
  background: #000;
  position: fixed;
  bottom: 0;
  left: 25px;
  padding: 0;
  font-family: sans-serif;
  letter-spacing: 0.9px;
  font-size: 13px;
  font-weight: 400;
  border-radius: 4px;
  transition: opacity 0.5s, bottom 0.5s 0.2s;
  text-align: left;
  z-index: 999999999;
  border: 1px solid #444;
}
.shuffl-page-edit-options a {
  text-decoration: none;
  color: #a2a2a2;
  display: block;
  padding: 10px;
  transition: color 0.5s, background-color 0.5s;
  line-height: 16px;
}
.shuffl-page-edit-options li {
  border-bottom: 1px solid #444444;
}
.shuffl-page-edit-options li a:hover {
  background: #232323;
  color: #fff;
  text-decoration: none;
}
.shuffl-page-edit-options li:last-child {
  border-bottom: 0;
}
.shuffl-page-edit-options.visible {
  pointer-events: all;
  opacity: 1;
  bottom: 100px;
  transition: opacity 0.5s, bottom 0.2s;
}
@media (max-width: 1000px) {
  .shuffl-page-edit-options, .shuffl-edit-page {
    display: none;
  }
}




/*
 * JFVisuals design
 */
body {
  position: relative;
  overflow: hidden;
}