/*!
Theme Name: ACI-2021
Theme URI: http://underscores.me/
Author: LUA Design
Author URI: http://luadesign.co.uk
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: aci-2021
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

ACI-2021 is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
.zoom-in {
  animation: zoom-in 0.66s;
}

@media (min-width: 960px) {
  .fade-in {
    animation: fadein 1s;
  }
}

@media (min-width: 960px) {
  .fade-in-slow {
    animation: fadein 2s;
  }
}

@media (min-width: 960px) {
  .come-in {
    transform: translateX(-4000px);
    animation: come-in 0.75s ease forwards;
  }
}

.spin-in {
  animation-name: spin;
  animation-duration: 0.4s;
}

.spin-in-right {
  animation-name: spin-in-right;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes come-in {
  to {
    transform: translateY(0);
  }
}
@keyframes zoom-in {
  0% {
    transform: scale(0.1);
  }
  50% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(0.92);
  }
  90% {
    transform: scale(1);
  }
  94% {
    transform: scale(0.92);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes background-come-in {
  0% {
    background-position: right 5000px;
  }
  70% {
    background-position: right 5000px;
  }
  85% {
    background-position: right top;
  }
  90% {
    background-position: right top 150px;
  }
  93% {
    background-position: right top 10px;
  }
  96% {
    background-position: right top 80px;
  }
  100% {
    background-position: right top;
  }
}
@keyframes fadeInScale {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
/* Normalize
--------------------------------------------- */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: 700;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* Box sizing
--------------------------------------------- */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
  color: #1f2a30;
  font-family: "brother-1816-printed", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 300;
}

h1, h2, h3, .site-sidebar, .site-main, .main-navigation, .entry-summary,
[class^=icon-], [class*=" icon-"] {
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

h1, h2, h3.book-now, .woocommerce-billing-fields h3, #order_review_heading, .wc-tabs, .column-quotes h3 {
  font-family: "Bobbin-Regular";
  font-weight: normal;
  letter-spacing: 1px;
  font-size: 2.5rem;
}
@media (min-width: 960px) {
  h1, h2, h3.book-now, .woocommerce-billing-fields h3, #order_review_heading, .wc-tabs, .column-quotes h3 {
    font-size: 3.25rem;
  }
}
@media (min-width: 1241px) {
  h1, h2, h3.book-now, .woocommerce-billing-fields h3, #order_review_heading, .wc-tabs, .column-quotes h3 {
    font-size: 3.75rem;
  }
}
@media (min-width: 1621px) {
  h1, h2, h3.book-now, .woocommerce-billing-fields h3, #order_review_heading, .wc-tabs, .column-quotes h3 {
    font-size: 4.25rem;
  }
}

.site-main h2 {
  font-family: "brother-1816-printed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #3783a7;
  font-size: 1.35rem;
}
@media (min-width: 960px) {
  .site-main h2 {
    font-size: 1.55rem;
  }
}
@media (min-width: 1241px) {
  .site-main h2 {
    font-size: 1.75rem;
  }
}
@media (min-width: 1621px) {
  .site-main h2 {
    font-size: 2rem;
  }
}

.site-main .article-columns h2 {
  text-transform: capitalize;
  font-size: 1.2rem;
}
@media (min-width: 960px) {
  .site-main .article-columns h2 {
    font-size: 1.35rem;
  }
}
@media (min-width: 1241px) {
  .site-main .article-columns h2 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1621px) {
  .site-main .article-columns h2 {
    font-size: 1.75rem;
  }
}

h3, p.more-info {
  font-size: 1.25rem;
}
h3 icon, p.more-info icon {
  font-size: 1.15rem;
}
@media (min-width: 960px) {
  h3, p.more-info {
    font-size: 1.35rem;
  }
  h3 icon, p.more-info icon {
    font-size: 1.2rem;
  }
}
@media (min-width: 1621px) {
  h3, p.more-info {
    font-size: 1.7rem;
  }
  h3 icon, p.more-info icon {
    font-size: 1.5rem;
  }
}

.wc-tabs,
.column-quotes h3,
h3.book-now {
  font-size: 1.75rem;
}
@media (min-width: 960px) {
  .wc-tabs,
  .column-quotes h3,
  h3.book-now {
    font-size: 2rem;
  }
}
@media (min-width: 1241px) {
  .wc-tabs,
  .column-quotes h3,
  h3.book-now {
    font-size: 2.25rem;
  }
}
@media (min-width: 1621px) {
  .wc-tabs,
  .column-quotes h3,
  h3.book-now {
    font-size: 2.5rem;
  }
}

@font-face {
  font-family: "Bobbin-Regular";
  src: url("fonts/bobbin.woff2") format("woff2"), url("fonts/bobbin.woff") format("woff");
}
@font-face {
  font-family: "icomoon";
  src: url("fonts/icomoon.eot?a4ks7h");
  src: url("fonts/icomoon.eot?a4ks7h#iefix") format("embedded-opentype"), url("fonts/icomoon.ttf?a4ks7h") format("truetype"), url("fonts/icomoon.woff?a4ks7h") format("woff"), url("fonts/icomoon.svg?a4ks7h#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}

.icon-forward-open:before {
  content: "\e906";
}

.icon-spotify:before {
  content: "\e901";
}

.icon-patreon:before {
  content: "\e904";
}

.icon-audioboom:before {
  content: "\e905";
}

.icon-caret-right:before {
  content: "\e902";
}

.icon-caret-left:before {
  content: "\e903";
}

.icon-star:before {
  content: "\e900";
}

.icon-headphones:before {
  content: "\e910";
}

.icon-cart:before {
  content: "\e93a";
}

.icon-envelop:before {
  content: "\e945";
}

.icon-quotes-left:before {
  content: "\e977";
}

.icon-quotes-right:before {
  content: "\e978";
}

.icon-menu:before {
  content: "\e9bd";
}

.icon-link:before {
  content: "\e9cb";
}

.icon-heart:before {
  content: "\e9da";
}

.icon-cross:before {
  content: "\ea0f";
}

.icon-play3:before {
  content: "\ea1c";
}

.icon-stop2:before {
  content: "\ea1e";
}

.icon-backward2:before {
  content: "\ea1f";
}

.icon-forward3:before {
  content: "\ea20";
}

.icon-facebook2:before {
  content: "\ea91";
}

.icon-instagram:before {
  content: "\ea92";
}

.icon-whatsapp:before {
  content: "\ea93";
}

.icon-twitter:before {
  content: "\ea96";
}

.icon-youtube2:before {
  content: "\ea9e";
}

.icon-appleinc:before {
  content: "\eabe";
}

.icon-android:before {
  content: "\eac0";
}

p {
  margin: 0 0 0.5rem;
}
p:last-of-type {
  margin: 0 0 0 0;
}

dfn,
cite,
em,
i {
  font-style: italic;
  font-weight: 300;
}

blockquote {
  margin: 1rem 0 0;
  font-weight: 700;
  color: #ededed;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
  text-decoration: none;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

/* Elements
--------------------------------------------- */
#vidbox {
  display: block;
  position: relative;
  width: 100%;
  height: 33vh;
  margin: 0.33vw 0;
}
#vidbox .vidbg-container {
  background-color: transparent;
  opacity: 0.7;
}
@media (min-width: 960px) {
  #vidbox {
    height: 45vh;
  }
}
@media (min-width: 1241px) {
  #vidbox {
    height: 67vh;
  }
}

#vidbox, .n2-section-smartslider {
  z-index: 1;
  background-image: linear-gradient(0deg, #81cff4 37.5%, #3783a7 37.5%, #3783a7 50%, #81cff4 50%, #81cff4 87.5%, #3783a7 87.5%, #3783a7 100%);
  background-size: 10px 10px;
}

body.home .main-navigation {
  z-index: 2;
}

.nav-menu {
  z-index: 3;
}

.other-links {
  z-index: 4;
}

body {
  background: #034d72;
}

@media (min-width: 960px) {
  .site-branding,
  .nav-menu {
    padding: 0.7vw 0;
  }
}

.site-title {
  margin: 0 0;
  text-align: center;
}
.site-title img {
  max-width: 250px;
}
@media (min-width: 1241px) {
  .site-title img {
    max-width: 300px;
  }
}
@media (min-width: 1621px) {
  .site-title img {
    max-width: 360px;
  }
}

.podcast {
  padding: 5vw;
}
@media (min-width: 960px) {
  .podcast {
    padding: 2.5vw;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.podcast .podcast-box {
  border: 1px solid #ededed;
}
@media (min-width: 960px) {
  .podcast .podcast-box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 70vw;
  }
}
.podcast .podcast-box img {
  flex: 1 1 10%;
  max-width: 240px;
  padding-top: 5vw;
}
@media (min-width: 960px) {
  .podcast .podcast-box img {
    padding-top: 0;
  }
}
.podcast .podcast-box .podcast-details {
  flex: 2 1 auto;
  padding: 5vw;
}
@media (min-width: 960px) {
  .podcast .podcast-box .podcast-details {
    padding: 2.5vw;
    align-self: center;
  }
}

.site-footer,
#mc_embed_signup,
.column-half {
  padding: 5vw;
}
@media (min-width: 960px) {
  .site-footer,
  #mc_embed_signup,
  .column-half {
    padding: 2.5vw;
  }
}

.site-sidebar {
  padding: 0 5vw 5vw;
}
@media (min-width: 960px) {
  .site-sidebar {
    padding: 0 2.5vw;
  }
}

.site-header {
  margin-bottom: 1rem;
}
@media (min-width: 960px) {
  .site-header {
    margin-bottom: 1.5vw;
  }
}

body.home .site-header {
  position: relative;
  margin-bottom: 0;
}
@media (min-width: 960px) {
  body.home .site-header {
    overflow: visible;
  }
}

.site-sidebar {
  color: #ededed;
  background: #034d72;
  background-image: url(images/aci-circle-solid.svg);
  background-position: right top;
  background-size: 40%;
  background-repeat: no-repeat;
}
@media (min-width: 960px) {
  .site-sidebar {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    flex: 0 0 100%;
    justify-content: space-evenly;
  }
}
@media (min-width: 960px) {
  .site-sidebar h2 {
    flex: 0 0 100%;
    display: block;
    width: 100%;
  }
}
.site-sidebar .column-3 {
  display: block;
  width: 100%;
  border: 1px solid #ededed;
  margin: 0 0 3vw;
}
@media (min-width: 960px) {
  .site-sidebar .column-3 {
    flex: 0 0 32%;
  }
}
@media (min-width: 1241px) {
  .site-sidebar .column-3 {
    flex: 0 0 19%;
  }
}

body.post-type-archive-product .site-sidebar {
  padding: 0 5vw 5vw;
}
@media (min-width: 960px) {
  body.post-type-archive-product .site-sidebar {
    padding: 0 2.5vw 2.5vw;
  }
}

.column-3 h3, .column-3 p {
  padding: 1rem 1rem 0;
  margin: 0 0;
  text-align: center;
  text-transform: uppercase;
}
.column-3 h3 {
  color: #ededed;
}
.column-3 p {
  color: #81cff4;
  padding: 1rem;
}
.column-3 p.type-of {
  padding-top: 0;
}
.column-3:hover {
  border: 1px solid #f2963b;
  background-color: #3783a7;
}
.column-3:hover p, .column-3:hover h3 {
  color: #f2963b;
}

.site-main {
  min-height: 50vh;
  margin: 0 5vw 5vw;
}
@media (min-width: 960px) {
  .site-main {
    margin: 0 2.5vw 2.5vw;
  }
}
.site-main h1 {
  color: #ededed;
  line-height: 1;
}

body.page-template-page-about .site-main {
  padding: 0;
}
body.page-template-page-about .site-main h2 {
  color: #ededed;
}

.site-last-section {
  background-color: #81cff4;
}

.site-footer {
  font-size: 0.85rem;
}
@media (min-width: 960px) {
  .site-footer img, .site-footer span, .site-footer a {
    display: inline-block;
    vertical-align: bottom;
  }
}
.site-footer .copyright,
.site-footer .footer-links,
.site-footer .lua-link {
  text-align: center;
  display: block;
  margin-top: 3vw;
}
@media (min-width: 960px) {
  .site-footer .copyright,
  .site-footer .footer-links,
  .site-footer .lua-link {
    width: 37%;
    padding-bottom: 5px;
    display: inline-block;
    margin-top: 0;
  }
}
.site-footer a:hover {
  background-color: #ededed;
}
.site-footer .lua-link {
  text-align: center;
}
.site-footer img {
  max-width: 40%;
  margin: 0 auto;
  display: block;
}
@media (min-width: 960px) {
  .site-footer img {
    max-width: 16%;
    padding-right: 1rem;
    display: inline-block;
  }
}
.site-footer .cookies-link {
  padding: 0 0.5rem;
}
@media (min-width: 960px) {
  .site-footer .lua-link {
    width: 10%;
    text-align: right;
  }
}

.column-half,
#mc_embed_signup {
  width: 100%;
  margin: 0 0;
  vertical-align: middle;
  background-color: #3783a7;
}
.column-half h3,
#mc_embed_signup h3 {
  margin: 0 0 1rem;
  line-height: 1;
  text-align: center;
  display: block;
  flex: 0 0 100%;
  align-self: center;
  text-transform: uppercase;
  color: #ededed;
}
.column-half icon,
#mc_embed_signup icon {
  font-size: 1.25rem;
  padding-left: 0.5rem;
}
.column-half form,
#mc_embed_signup form {
  display: flex;
  flex: 0 0 100%;
  width: 100%;
  margin: 0 auto;
  flex-wrap: wrap;
  align-content: stretch;
  align-items: stretch;
  justify-content: space-between;
}
.column-half form input,
#mc_embed_signup form input {
  border: none;
  border-radius: 0;
  flex: 1 1 auto;
  line-height: 1.6;
  display: block;
  flex: 0 0 100%;
}
.column-half form input[type=email],
#mc_embed_signup form input[type=email] {
  text-align: center;
  margin: 0;
  padding: 5px;
  letter-spacing: 2px;
  font-size: 1rem;
  border: 1px solid #ededed;
  background-color: transparent;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1) {
  .column-half form input[type=email],
  #mc_embed_signup form input[type=email] {
    font-size: 1rem;
  }
}
@media (min-width: 1241px) {
  .column-half form input[type=email],
  #mc_embed_signup form input[type=email] {
    font-size: 1.15rem;
  }
}
.column-half form input[type=email]:focus,
#mc_embed_signup form input[type=email]:focus {
  background-color: white;
}
.column-half form button, .column-half form h3,
#mc_embed_signup form button,
#mc_embed_signup form h3 {
  font-weight: 300;
  letter-spacing: 1px;
  vertical-align: middle;
  line-height: 1;
  font-size: 20px;
  font-size: 1.25rem;
}
@media (min-width: 760px) {
  .column-half form button, .column-half form h3,
  #mc_embed_signup form button,
  #mc_embed_signup form h3 {
    font-size: 23.2px;
    font-size: 1.45rem;
  }
}
.column-half form button,
#mc_embed_signup form button {
  padding: 10px 0 0;
  border: none;
  border-radius: 0;
  line-height: 1.6;
  display: block;
  flex: 0 0 100%;
  text-align: center;
  text-transform: uppercase;
  background-color: transparent;
  color: #81cff4;
  justify-content: center;
}
.column-half form button:hover, .column-half form button:focus,
#mc_embed_signup form button:hover,
#mc_embed_signup form button:focus {
  color: #f2963b;
}
.column-half form i,
#mc_embed_signup form i {
  line-height: 1;
  align-self: center;
}
.column-half ::-webkit-input-placeholder,
#mc_embed_signup ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #ededed;
}
.column-half ::-moz-placeholder,
#mc_embed_signup ::-moz-placeholder { /* Firefox 19+ */
  color: #ededed;
}
.column-half :-ms-input-placeholder,
#mc_embed_signup :-ms-input-placeholder { /* IE 10+ */
  color: #ededed;
}
.column-half :-moz-placeholder,
#mc_embed_signup :-moz-placeholder { /* Firefox 18- */
  color: #ededed;
}

[placeholder]:focus::-webkit-input-placeholder {
  -webkit-transition: opacity 0.3s 0.3s ease;
  transition: opacity 0.3s 0.3s ease;
  opacity: 0;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #3783a7;
}

::-moz-placeholder { /* Firefox 19+ */
  color: #3783a7;
}

:-ms-input-placeholder { /* IE 10+ */
  color: #3783a7;
}

:-moz-placeholder { /* Firefox 18- */
  color: #3783a7;
}

.column-half {
  color: #ededed;
  text-align: center;
}
.column-half h3 {
  font-weight: 300;
}

@media (min-width: 960px) {
  .columns {
    display: flex;
    flex-direction: row;
    flex: 0 0 100%;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.columns .column-half:last-of-type {
  background-color: #034d72;
}

.column-2 {
  border: 1px solid #ededed;
  background-color: #ededed;
  margin-bottom: 1rem;
}
@media (min-width: 960px) {
  .column-2 {
    flex: 0 0 32%;
  }
}
.column-2 h2, .column-2 .wp-post-image {
  display: inline-block;
  width: 25%;
  vertical-align: middle;
}
.column-2 h2 {
  width: 74%;
  padding-left: 2vw;
}
.column-2 .column-header {
  background-color: #034d72;
  background-image: url(images/aci-circle-solid.svg);
  background-position: right top;
  background-size: contain;
  background-repeat: no-repeat;
}
.column-inner {
  padding: 5vw;
  background-color: #ededed;
  align-self: stretch;
  min-height: 20vh;
}
@media (min-width: 960px) {
  .column-inner {
    padding: 2vw;
  }
}

.ethos {
  background-color: #ededed;
  margin: 0 0 1.5vw;
  padding: 5vw;
  background-image: url(images/aci-circle-solid.svg);
  background-position: right top;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 960px) {
  .ethos {
    padding: 2vw;
  }
}

.column-half {
  background-color: #15678e;
}
@media (min-width: 960px) {
  .column-half {
    flex: 0 0 50%;
  }
}
.column-half a, .column-half a:visited {
  text-transform: uppercase;
  color: #81cff4;
}
.column-half a:hover, .column-half a:focus, .column-half a:visited:hover, .column-half a:visited:focus {
  color: #f2963b;
}

body.page-template-page-faq .site-main ul li {
  padding: 5vw;
  background-color: #ededed;
  margin-bottom: 1vw;
}
@media (min-width: 960px) {
  body.page-template-page-faq .site-main ul li {
    padding: 2vw;
  }
}

.woocommerce-breadcrumb {
  background-color: #ededed;
  border-bottom: 1px solid #034d72;
  padding: 0.5rem 2rem;
}

@media (min-width: 960px) {
  .type-product {
    display: flex;
    flex: 0 0 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.type-product .column-small {
  background-color: #3783a7;
}
@media (min-width: 960px) {
  .type-product .column-small {
    flex: 1 1 40%;
  }
}
.type-product .column-small figure {
  margin: 0 0;
}
.type-product .column-small figure img {
  width: 100%;
}
.type-product .column-small .column-quotes,
.type-product .column-small .wc-tabs-wrapper {
  padding: 0 2.5vw 2.5vw;
}
.type-product .column-small .wc-tab ul li {
  display: block;
  padding: 1rem;
  background-color: #ededed;
  margin-bottom: 0.5rem;
}
.type-product .column-small .wc-tab ul li:last-of-type {
  margin-bottom: 0;
}
.type-product .entry-summary {
  background-image: url(images/aci-circle-solid.svg);
  background-position: right top;
  background-size: contain;
  background-repeat: no-repeat;
  background-size: 17%;
  padding: 2.5vw;
}
@media (min-width: 960px) {
  .type-product .entry-summary {
    flex: 2 1 60%;
  }
}

body.woocommerce-shop .site-last-section {
  min-height: 100vh;
}

.cart-contents {
  display: block;
  position: relative;
  width: 100%;
  margin: 0 auto;
  text-align: right;
}

.cart-contents-count {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  color: #034d72;
  padding: 0.25rem 5vw;
  margin-bottom: 0.5rem;
  background-color: #81cff4;
  font-weight: 700;
  font-size: 1rem;
}
@media (min-width: 960px) {
  .cart-contents-count {
    padding: 0.25rem 2.5vw 0.25rem 1rem;
    width: 19%;
  }
}
@media (min-width: 1241px) {
  .cart-contents-count {
    font-size: 1.2rem;
  }
}
.cart-contents-count:hover {
  text-decoration: none;
  color: #ededed;
  background-color: #034d72;
}

.entry-summary .cart-contents-count {
  display: inline-block;
  vertical-align: middle;
  text-align: right;
  color: #034d72;
  padding: 0 0;
  margin: 2rem 1rem 0;
  background-color: transparent;
  font-size: 1rem;
  font-weight: 700;
}
@media (min-width: 960px) {
  .entry-summary .cart-contents-count {
    padding: 0 0;
    width: auto;
  }
}
.entry-summary .cart-contents-count:hover {
  text-decoration: none;
  color: #f2963b;
}

.forminator-guttenberg {
  padding-top: 2rem;
}

.forminator-ui#forminator-module-144.forminator-design--default .forminator-label {
  font-size: 1.5rem !important;
  font-family: "Bobbin-Regular", sans-serif !important;
  font-weight: normal !important;
}

.forminator-ui#forminator-module-144.forminator-design--default .forminator-button-submit {
  font-weight: 700 !important;
  border-radius: 0 !important;
  font-size: 1rem !important;
}
.forminator-ui#forminator-module-144.forminator-design--default .forminator-button-submit:hover, .forminator-ui#forminator-module-144.forminator-design--default .forminator-button-submit:focus {
  box-shadow: none;
}

.n2-section-smartslider {
  margin: 0.5vw 0;
}

.column-quotes h3 {
  color: #ededed;
}

.hustle-ui button.hustle-button-icon {
  background-color: #034d72 !important;
}
.hustle-ui .hustle-layout-footer {
  background-color: #034d72 !important;
  margin-top: 0 !important;
  padding: 5px;
}

@media (min-width: 760px) {
  .article-columns {
    display: flex;
    flex: 0 0 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .article-columns article {
    -moz-column-break-inside: avoid;
         break-inside: avoid-column;
    flex: 0 0 32%;
    margin: 0 auto 1%;
  }
}
@media (min-width: 960px) {
  .article-columns article {
    flex: 0 0 24%;
  }
}
@media (min-width: 1241px) {
  .article-columns article {
    flex: 0 0 19%;
  }
}

.type-post {
  background-color: #ededed;
  padding: 3vw;
  margin-bottom: 2vw;
}
.type-post .entry-title {
  padding-bottom: 0.5rem;
}
@media (min-width: 960px) {
  .type-post {
    padding: 1.5vw;
    margin-bottom: 1vw;
  }
}
.type-post .entry-content {
  font-size: 0.9rem;
}
.type-post .entry-side {
  margin-top: 5px;
}
.type-post .entry-side .button {
  background-color: #81cff4;
  padding: 0.5rem;
  width: 100%;
  display: block;
  font-size: 1rem;
  text-align: right;
  font-weight: 700;
  line-height: 1.1;
}
.type-post .entry-side .button:hover {
  background-color: #f2963b;
  color: #034d72;
}
.type-post .tags-links,
.type-post .category-links {
  display: inline-block;
  width: auto;
  margin-right: 0.25rem;
}
.type-post .tags-links a,
.type-post .category-links a {
  font-weight: 700;
  margin-right: 0.25rem;
}

.password-box {
  background-color: #ededed;
  padding: 5vw;
  text-align: center;
  margin: 1vw 0;
}

body.error404 .site-main {
  text-align: center;
}
body.error404 .page-content {
  background-color: #ededed;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 10vw 5vw;
  background-image: url(images/aci-circle-solid.svg);
  background-position: right top;
  background-size: contain;
  background-repeat: no-repeat;
}

.search-scripts ul {
  margin-bottom: 1rem;
}
.search-scripts ul li {
  padding: 0;
  width: 100%;
}
.search-scripts ul li label {
  width: 100%;
  display: block;
}
@media (min-width: 760px) {
  .search-scripts ul li label {
    width: auto;
  }
}
.search-scripts ul li input, .search-scripts ul li select {
  border-radius: 5px;
  line-height: 1.85;
  margin: 5px 0;
  width: 100%;
  display: block;
}
@media (min-width: 760px) {
  .search-scripts ul li input, .search-scripts ul li select {
    margin: 0;
  }
}
@media (min-width: 760px) {
  .search-scripts ul li {
    display: inline-block;
    width: auto;
    margin: 0 1% 0 0;
  }
}

.search-filter-results {
  background-color: #ededed;
}

.quantity.hidden {
  width: 0;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul,
ol {
  margin: 0 0;
  line-height: 1.4;
  padding: 0 0;
}

ul {
  list-style: none;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

img {
  height: auto;
  max-width: 100%;
}

figure {
  margin: 0 0 1em 0;
}

table {
  margin: 0 0;
  width: 100%;
  border-spacing: 0 0.5em;
}

/* Links
--------------------------------------------- */
a {
  color: #034d72;
  text-decoration: none;
}
a:visited {
  color: #034d72;
  text-decoration: none;
}
a:hover, a:focus, a:active {
  color: #f2963b;
  text-decoration: none;
}
a:focus {
  outline: thin dotted;
  color: #034d72;
  text-decoration: none;
}
a:hover, a:active {
  outline: 0;
  text-decoration: none;
}

button, a, a:hover, a:focus, textarea:focus, .menu-item, input, textarea, figcaption, .more-links, .more-links:hover, label:hover, label, #sb_instagram #sbi_load a.sbi_load_btn, #sb_instagram #sbi_load a.sbi_load_btn:hover, #ctf .ctf-tweets .ctf-tweet-actions a, #ctf .ctf-tweets .ctf-tweet-actions a:hover, .tab-container label, .tab-container label:hover, h3.button, h3.button:hover, .ctf-tweet-actions, .ctf-tweet-actions:hover, .sbi_load_btn:hover, .cff-post-links, .cff-post-links:hover, .cff-load-more span, .cff-load-more span:hover, .ctf-tweet-actions a svg, .ctf-tweet-actions a:hover svg, .ctf-action-count, .ctf-action-count:hover, a.column-3, a.column-3:hover, a.column-3 h3, a.column-3:hover h3, a.column-3 p, a.column-3:hover p, .forminator-button-submit, .forminator-button-submit:hover, .cart-contents-count, .cart-contents-count:hover {
  transition: all 0.45s ease-in-out;
  outline: 0px !important;
  -webkit-appearance: none;
}

button.forminator-button {
  font-weight: 700;
  text-transform: uppercase;
}

/* Forms
--------------------------------------------- */
button,
input[type=button],
input[type=reset],
input[type=submit] {
  border: 1px solid;
  border-color: #81cff4;
  border-radius: 0;
  background: #81cff4;
  color: rgba(0, 0, 0, 0.8);
  font-weight: 700;
}
button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  border-color: #f2963b;
  background: #f2963b;
}
button:active, button:focus,
input[type=button]:active,
input[type=button]:focus,
input[type=reset]:active,
input[type=reset]:focus,
input[type=submit]:active,
input[type=submit]:focus {
  border-color: #aaa #bbb #bbb;
}

input,
button {
  -webkit-appearance: none;
  display: inline-block;
  padding: 0 1rem;
  line-height: 2;
}

button {
  text-transform: uppercase;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  color: #034d72;
  border: 1px solid #034d72;
  border-radius: 0;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
  color: #034d72;
}

select {
  border: none;
  box-sizing: content-box;
  line-height: 2;
  border-radius: 0;
}

textarea {
  width: 100%;
  padding: 1rem;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Navigation
--------------------------------------------- */
.main-navigation {
  display: flex;
  flex: 0 0 100%;
  flex-wrap: wrap;
  flex-direction: column-reverse;
  background-color: transparent;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  background-color: #81cff4;
  font-family: "Bobbin-Regular", sans-serif;
  overflow: visible;
}
@media (min-width: 960px) {
  .main-navigation {
    flex-direction: row;
    background-color: transparent;
  }
}
.main-navigation ul.nav-menu {
  display: none;
  list-style: none;
  margin: 0;
}
@media (min-width: 960px) {
  .main-navigation ul.nav-menu {
    display: flex;
    flex: 1 1 50%;
    margin: 0 0.5%;
    flex-wrap: wrap;
    justify-content: space-around;
    font-size: 1.35rem;
    background-color: #81cff4;
    align-items: center;
  }
}
.main-navigation ul.nav-menu li:hover > ul,
.main-navigation ul.nav-menu li.focus > ul {
  left: auto;
}
.main-navigation ul.nav-menu li {
  position: relative;
  padding: 0 1rem;
  font-size: 1.45rem;
}
@media (min-width: 640px) {
  .main-navigation ul.nav-menu li {
    font-size: 1.45rem;
  }
}
@media (min-width: 760px) {
  .main-navigation ul.nav-menu li {
    font-size: 1.35rem;
  }
}
@media (min-width: 960px) {
  .main-navigation ul.nav-menu li {
    font-size: 1.4rem;
    padding: 0 0.35rem;
  }
}
@media (min-width: 1241px) {
  .main-navigation ul.nav-menu li {
    font-size: 1.55rem;
    padding: 0 1rem;
  }
}
@media (min-width: 1621px) {
  .main-navigation ul.nav-menu li {
    font-size: 1.85rem;
    padding: 0 1rem;
  }
}
.main-navigation ul.nav-menu li:hover {
  background-color: #034d72;
}
.main-navigation ul.nav-menu li:hover a {
  color: #ededed;
}
.main-navigation ul.nav-menu a {
  display: block;
  text-decoration: none;
}
.main-navigation ul.nav-menu a:hover {
  color: #ededed;
}
.main-navigation ul.nav-menu .current_page_item,
.main-navigation ul.nav-menu .current-menu-item,
.main-navigation ul.nav-menu .current_page_ancestor,
.main-navigation ul.nav-menu .current-menu-ancestor {
  background-color: #034d72;
  cursor: default;
}
.main-navigation ul.nav-menu .current_page_item a,
.main-navigation ul.nav-menu .current-menu-item a,
.main-navigation ul.nav-menu .current_page_ancestor a,
.main-navigation ul.nav-menu .current-menu-ancestor a {
  color: #81cff4;
}
.main-navigation ul.nav-menu .current_page_item a:hover,
.main-navigation ul.nav-menu .current-menu-item a:hover,
.main-navigation ul.nav-menu .current_page_ancestor a:hover,
.main-navigation ul.nav-menu .current-menu-ancestor a:hover {
  color: #81cff4;
  cursor: default;
}
.main-navigation .other-links {
  display: block;
  width: 100%;
  padding: 3vw 3vw 0;
}
@media (min-width: 960px) {
  .main-navigation .other-links {
    display: flex;
    flex: 0 1 19%;
    justify-content: space-around;
    font-size: 1.35rem;
    background-color: #81cff4;
    align-items: center;
    padding: 0.7vw 0;
  }
}
.main-navigation ul.social-media {
  text-align: right;
  font-size: 1.5rem;
  display: inline-block;
  width: 60%;
}
@media (min-width: 960px) {
  .main-navigation ul.social-media {
    text-align: center;
    display: block;
    width: 100%;
  }
}
.main-navigation ul.social-media li {
  display: inline-block;
  padding: 0 0 0 5vw;
  font-size: 1.45rem;
}
@media (min-width: 640px) {
  .main-navigation ul.social-media li {
    font-size: 1.45rem;
  }
}
@media (min-width: 760px) {
  .main-navigation ul.social-media li {
    font-size: 1.35rem;
  }
}
@media (min-width: 960px) {
  .main-navigation ul.social-media li {
    padding: 0 1.25vw;
    font-size: 1.4rem;
  }
}
@media (min-width: 1241px) {
  .main-navigation ul.social-media li {
    font-size: 1.5rem;
  }
}
@media (min-width: 1621px) {
  .main-navigation ul.social-media li {
    font-size: 1.65rem;
  }
}
.main-navigation ul.social-media li a {
  text-align: center;
  vertical-align: middle;
}
.main-navigation ul.social-media li a:hover {
  color: #ededed;
}

/* Small menu. */
.menu-toggle {
  font-size: 1.75rem;
  order: 1;
  color: #034d72;
  background-color: transparent;
  border: none;
  width: 38%;
  padding: 0 0;
  text-align: left;
  line-height: 1;
}
.menu-toggle:hover {
  color: white;
  background-color: transparent;
}

@media screen and (min-width: 960px) {
  .menu-toggle {
    display: none;
  }
}
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
}
.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
  display: flex;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  flex: 1 0 50%;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  text-align: end;
  flex: 1 0 50%;
}

@media (min-width: 960px) {
  .site-branding {
    background-color: #81cff4;
    flex: 0 1 19%;
  }
  .site-branding img {
    padding: 0 14%;
    display: block;
    overflow: hidden;
    position: relative;
  }
}

.main-navigation.toggled ul.nav-menu {
  position: absolute;
  background-color: #81cff4;
  height: 94vh;
  left: 0;
  right: 0;
  top: -5px;
  padding: 10% 20px 5%;
  text-align: center;
  transform: translateY(-500px);
  animation: come-in 0.3s ease forwards;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  flex: 0 0 100%;
  justify-content: space-around;
  margin-top: 5px;
}
.main-navigation.toggled ul.nav-menu li {
  width: 100%;
  flex: none;
  display: block;
  padding: 0.75rem;
}
.main-navigation.toggled ul.nav-menu li a:before, .main-navigation.toggled ul.nav-menu li a:after {
  content: "";
  bottom: 0;
  height: 0;
  border-radius: 0;
  background-color: transparent;
  margin: 0 0;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
  display: block;
}

.updated:not(.published) {
  display: none;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

.type-articles {
  margin-top: 2rem;
}
.type-articles h2.entry-title {
  color: #ededed;
  margin-bottom: 0.5rem;
}

/* Comments
--------------------------------------------- */
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
  margin: 0 0 1.5em;
}
.widget select {
  max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}

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

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #ededed;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #1f2a30;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

/*
Theme Name: ACI-2021

WooCommerce styles override
*/
.zoom-in {
  animation: zoom-in 0.66s;
}

@media (min-width: 960px) {
  .fade-in {
    animation: fadein 1s;
  }
}

@media (min-width: 960px) {
  .fade-in-slow {
    animation: fadein 2s;
  }
}

@media (min-width: 960px) {
  .come-in {
    transform: translateX(-4000px);
    animation: come-in 0.75s ease forwards;
  }
}

.spin-in {
  animation-name: spin;
  animation-duration: 0.4s;
}

.spin-in-right {
  animation-name: spin-in-right;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes come-in {
  to {
    transform: translateY(0);
  }
}
@keyframes zoom-in {
  0% {
    transform: scale(0.1);
  }
  50% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(0.92);
  }
  90% {
    transform: scale(1);
  }
  94% {
    transform: scale(0.92);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes background-come-in {
  0% {
    background-position: right 5000px;
  }
  70% {
    background-position: right 5000px;
  }
  85% {
    background-position: right top;
  }
  90% {
    background-position: right top 150px;
  }
  93% {
    background-position: right top 10px;
  }
  96% {
    background-position: right top 80px;
  }
  100% {
    background-position: right top;
  }
}
@keyframes fadeInScale {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/**
 * Shop tables
 */
table.shop_table_responsive thead {
  display: none;
}
table.shop_table_responsive tbody th {
  display: none;
}
table.shop_table_responsive tr td {
  display: block;
  text-align: right;
  clear: both;
}
table.shop_table_responsive tr td::before {
  content: attr(data-title) ": ";
  float: left;
}
table.shop_table_responsive tr td.product-remove a {
  text-align: left;
}
table.shop_table_responsive tr td.product-remove::before {
  display: none;
}
table.shop_table_responsive tr td.actions::before, table.shop_table_responsive tr td.download-actions::before {
  display: none;
}
table.shop_table_responsive tr td.download-actions .button {
  display: block;
  text-align: center;
}

@media screen and (min-width: 48em) {
  table.shop_table_responsive thead {
    display: table-header-group;
  }
  table.shop_table_responsive tbody th {
    display: table-cell;
  }
  table.shop_table_responsive tr td {
    display: table-cell;
  }
  table.shop_table_responsive tr td::before {
    display: none;
  }
}
/**
 * Products
 */
ul.products {
  margin: 0;
  padding: 0;
}
ul.products li.product {
  list-style: none;
  position: relative;
  margin-bottom: 2em;
}
ul.products li.product img {
  display: block;
}
ul.products li.product .button {
  display: block;
}

@media screen and (min-width: 48em) {
  ul.products li.product {
    width: 30.7966666667%;
    float: left;
    margin-right: 3.8%;
  }
  ul.products li.product.first {
    clear: both;
  }
  ul.products li.product.last {
    margin-right: 0;
  }
  ul.products.columns-1 li.product {
    float: none;
    width: 100%;
  }
  ul.products.columns-2 li.product {
    width: 48.1%;
  }
  ul.products.columns-3 li.product {
    width: 30.7966666667%;
  }
  ul.products.columns-4 li.product {
    width: 22.15%;
  }
  ul.products.columns-5 li.product {
    width: 16.96%;
  }
  ul.products.columns-6 li.product {
    width: 13.4933333333%;
  }
}
/**
 * Single product
 */
.single-product div.product {
  position: relative;
  background-color: #ededed;
}
.single-product div.product h1.product_title {
  color: #034d72;
  line-height: 1;
}
.single-product div.product h2.inperson {
  margin-bottom: 2rem;
}
.single-product div.product .woocommerce-product-gallery {
  position: relative;
  vertical-align: top;
}
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
  position: absolute;
  top: 2em;
  right: 1em;
  display: block;
  z-index: 99;
}
.single-product div.product .woocommerce-product-gallery .flex-viewport {
  margin-bottom: 1em;
}
.single-product div.product .woocommerce-product-gallery .flex-control-thumbs {
  margin: 0;
  padding: 0;
}
.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li {
  list-style: none;
  cursor: pointer;
  float: left;
}
.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img {
  opacity: 0.5;
}
.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img.flex-active {
  opacity: 1;
}
.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li:hover img {
  opacity: 1;
}
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li {
  width: 48.1%;
}
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li:nth-child(2n) {
  margin-right: 0;
}
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li:nth-child(2n+1) {
  clear: both;
}
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li {
  width: 30.7966666667%;
}
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n) {
  margin-right: 0;
}
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n+1) {
  clear: both;
}
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li {
  width: 22.15%;
}
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n) {
  margin-right: 0;
}
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n+1) {
  clear: both;
}
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li {
  width: 16.96%;
}
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n) {
  margin-right: 0;
}
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n+1) {
  clear: both;
}
.single-product .price {
  font-weight: 700;
  font-size: 1.16rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  display: block;
}

.stock {
  font-weight: 700;
}
.stock:empty::before {
  display: none;
}
.stock.in-stock {
  color: #9fd694;
}
.stock.out-of-stock {
  color: #cc6757;
}

@media (min-width: 960px) {
  .entry-summary {
    display: inline-block;
    width: 66%;
  }
}
.entry-summary ul {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}
.entry-summary ul li {
  background-color: white;
  margin: 0.5rem 0;
  padding: 1rem;
}

.woocommerce-variation-price,
.woocommerce-variation-availability,
.quantity,
.single_add_to_cart_button {
  display: inline-block;
  width: auto;
}
.woocommerce-variation-price:hover, .woocommerce-variation-price:focus,
.woocommerce-variation-availability:hover,
.woocommerce-variation-availability:focus,
.quantity:hover,
.quantity:focus,
.single_add_to_cart_button:hover,
.single_add_to_cart_button:focus {
  cursor: pointer;
}

.quantity {
  width: 4rem;
}

.reset_variations {
  padding-left: 1rem;
  text-transform: uppercase;
  float: right;
}

.woocommerce-message,
.woocommerce-error {
  padding: 1rem;
  list-style: none;
  font-weight: 300;
}

input[type=number] {
  padding-right: 0;
  width: 100%;
}

.variations_button {
  text-align: right;
}

.variations label {
  font-weight: 700;
}
.variations td.label {
  display: inline-block;
  margin: 0.5rem 0 0;
}
.variations td select {
  width: 100%;
}
.variations th.label {
  display: block;
}

.cart, .shop_table {
  margin-top: 1rem;
}
.cart h3, .shop_table h3 {
  color: #3783a7;
}

.woocommerce-breadcrumb {
  text-transform: uppercase;
  font-size: 0.9rem;
  text-align: center;
}
@media (min-width: 960px) {
  .woocommerce-breadcrumb {
    letter-spacing: 1px;
    font-size: 1rem;
    text-align: left;
  }
}

.cart.woocommerce-cart-form__contents {
  margin-top: 0;
}

.currency-box {
  margin-bottom: 2rem;
}

.wdgk_donation_content a.button.wdgk_add_donation {
  border-radius: 0 !important;
  text-transform: uppercase;
}

.wdgk_donation_content a.button.wdgk_add_donation:hover {
  background-color: #f2963b !important;
}

/**
 * Checkout
 */
@media screen and (min-width: 768px) {
  .col2-set .form-row-first {
    float: left;
    margin-right: 3.8%;
  }
  .col2-set .form-row-last {
    float: right;
    margin-right: 0;
  }
  .col2-set .form-row-first,
  .col2-set .form-row-last {
    width: 48.1%;
  }
}
@media (min-width: 960px) {
  .cart-collaterals {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    flex: 0 0 100%;
    justify-content: flex-end;
  }
}

.cart_totals {
  padding: 5vw 0 0;
}
@media (min-width: 960px) {
  .cart_totals {
    padding: 2vw 0 0;
    margin: 0 0;
  }
  .cart_totals h2, .cart_totals tr th,
  .cart_totals tr td {
    text-align: right;
  }
}
.cart_totals h2 {
  color: #3783a7;
  text-align: right;
}

.woocommerce-account-fields {
  margin-top: 1rem;
}

input[type=checkbox] {
  display: inline-block;
  border: 2px solid #034d72;
  border-radius: 50%;
  height: 1rem;
  width: 1rem;
}
input[type=checkbox]:checked {
  background-color: #3783a7;
  border: 2px solid white;
}

.wc-proceed-to-checkout a {
  display: block;
  width: 100%;
  padding: 0.5rem;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  background-color: #81cff4;
  color: #1f2a30;
}
.wc-proceed-to-checkout a:hover {
  background-color: #f2963b;
}

@media (min-width: 960px) {
  .woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
    display: inline-block;
    width: 50%;
    vertical-align: top;
  }
}

@media (min-width: 960px) {
  .woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
    display: inline-block;
    width: 50%;
    vertical-align: top;
    padding-left: 2.5vw;
  }
}

.woocommerce-billing-fields input {
  width: 100%;
  display: block;
  text-transform: none;
}
.woocommerce-billing-fields input:focus, .woocommerce-billing-fields input:active {
  border-color: #81cff4;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #034d72;
  border-radius: 0;
}

#order_review_heading {
  text-transform: uppercase;
  display: block;
  color: #3783a7;
  font-weight: normal;
  padding-top: 2rem;
}
@media (min-width: 960px) {
  #order_review_heading {
    padding-top: 0;
  }
}

.woocommerce table.shop_table {
  text-align: left;
}
.woocommerce table.shop_table td {
  vertical-align: middle;
  line-height: 1.5em;
  text-align: right;
}
.woocommerce table.shop_table td .quantity {
  margin: 5px 0;
  float: right;
}
.woocommerce table.shop_table tr.woocommerce-cart-form__cart-item {
  background-color: white;
}
@media (min-width: 960px) {
  .woocommerce table.shop_table tr.woocommerce-cart-form__cart-item {
    background-color: transparent;
  }
}
.woocommerce table.shop_table tr.woocommerce-cart-form__cart-item td {
  padding: 5px;
}
@media (min-width: 960px) {
  .woocommerce table.shop_table tr.woocommerce-cart-form__cart-item td {
    border-bottom: 1px solid #034d72;
  }
}
.woocommerce table.shop_table th {
  text-align: right;
}

.checkout_coupon {
  padding-bottom: 1rem;
}

.cart_item {
  border-spacing: 5px 0;
}

.woocommerce-NoticeGroup-checkout {
  margin-bottom: 2rem;
}

.woocommerce table.cart .product-thumbnail {
  display: none;
}

.cart {
  margin-top: 2rem;
}

.showcoupon {
  color: #ededed;
}

.actions input {
  text-align: center;
}
.actions .coupon {
  margin: 1rem 0 0;
  display: inline-block;
  width: auto;
}
.actions .button {
  margin: 1rem 0 0;
  min-width: 67%;
}
@media (min-width: 960px) {
  .actions .button {
    min-width: auto;
  }
}

.woocommerce-checkout-payment {
  text-align: right;
  margin-top: 1rem;
}
.woocommerce-checkout-payment button {
  margin-top: 1rem;
  min-width: 55%;
  text-align: center;
}
.woocommerce-checkout-payment .woocommerce-privacy-policy-text {
  margin-top: 1rem;
}
.woocommerce-checkout-payment .woocommerce-privacy-policy-text p {
  font-size: 0.8rem !important;
}

.wc_payment_method label, .wc_payment_method img {
  display: inline-block;
  vertical-align: middle;
}

#wc-customer-source {
  margin-top: 1rem;
}
#wc-customer-source select {
  color: #034d72;
  border: 1px solid #034d72;
  border-radius: 0;
  margin-left: 1rem;
}

/**
 * General WooCommerce components
 */
/**
 * Header cart
 */
.site-header-cart {
  position: relative;
  margin: 0;
  padding: 0;
}
.site-header-cart .cart-contents {
  text-decoration: none;
}
.site-header-cart .widget_shopping_cart {
  display: none;
}
.site-header-cart .product_list_widget {
  margin: 0;
  padding: 0;
}

/**
 * Tabs
 */
.woocommerce-tabs ul.tabs {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
.woocommerce-tabs ul.tabs li {
  display: block;
  margin: 0;
  position: relative;
}
.woocommerce-tabs ul.tabs li a {
  padding: 0.5rem 0;
  display: block;
  color: #ededed;
  cursor: default;
}
.woocommerce-tabs .panel h2:first-of-type {
  margin-bottom: 1em;
}

/**
 * Password strength meter
 */
.woocommerce-password-strength {
  text-align: right;
}
.woocommerce-password-strength.strong {
  color: #9fd694;
}
.woocommerce-password-strength.short {
  color: #cc6757;
}
.woocommerce-password-strength.bad {
  color: #cc6757;
}
.woocommerce-password-strength.good {
  color: #3d9cd2;
}

/**
 * Forms
 */
.form-row.woocommerce-validated input.input-text {
  box-shadow: inset 2px 0 0 #9fd694;
}
.form-row.woocommerce-invalid input.input-text {
  box-shadow: inset 2px 0 0 #cc6757;
}

.required {
  color: #f00;
}

/**
 * Notices
 */
.woocommerce-info {
  padding: 1rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.no-comments {
  background-color: #9fd694;
  clear: both;
}

.woocommerce-info,
.woocommerce-noreviews,
p.no-comments {
  background-color: #3d9cd2;
}

.woocommerce-error {
  background-color: #cc6757;
}

.demo_store {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0;
  padding: 1em;
  background-color: #3d9cd2;
  z-index: 9999;
}

@media screen and (min-width: 48em) {
  /**
   * Header cart
   */
  .site-header-cart .widget_shopping_cart {
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 999999;
    left: -999em;
    display: block;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  }
  .site-header-cart:hover .widget_shopping_cart, .site-header-cart.focus .widget_shopping_cart {
    left: 0;
    display: block;
  }
}
/**
 * WooCommerce widgets
 */
/**
 * WooCommerce Price Filter
 */
.widget_price_filter .price_slider {
  margin-bottom: 1.5em;
}
.widget_price_filter .price_slider_amount {
  text-align: right;
  line-height: 2.4;
}
.widget_price_filter .price_slider_amount .button {
  float: left;
}
.widget_price_filter .ui-slider {
  position: relative;
  text-align: left;
}
.widget_price_filter .ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1em;
  height: 1em;
  cursor: ew-resize;
  outline: none;
  background: #034d72;
  box-sizing: border-box;
  margin-top: -0.25em;
  opacity: 1;
}
.widget_price_filter .ui-slider .ui-slider-handle:last-child {
  margin-left: -1em;
}
.widget_price_filter .ui-slider .ui-slider-handle:hover, .widget_price_filter .ui-slider .ui-slider-handle.ui-state-active {
  box-shadow: 0 0 0 0.25em rgba(0, 0, 0, 0.1);
}
.widget_price_filter .ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  display: block;
  border: 0;
  background: #034d72;
}
.widget_price_filter .price_slider_wrapper .ui-widget-content {
  background: rgba(0, 0, 0, 0.1);
}
.widget_price_filter .ui-slider-horizontal {
  height: 0.5em;
}
.widget_price_filter .ui-slider-horizontal .ui-slider-range {
  height: 100%;
}
