:root {
  --main-color: #16394F;
  --second-color: #ff4d00;
  --lighter-orange: #fb763d;
  --lightest-orange: #ffb300;
  --lighter-blue: #1f4761;
  --lightest-blue: #205475;
  --dark-blue: #0d1b37;
  --body-color: #fbfbfb;
  --font-color: #162950;
  --white-color: #fafafa;
  --max-width: 1200px;
  --max-width-blog: 800px;
  --main-font: 'Montserrat', sans-serif;
}
img.lazy {
  opacity: 0;
  transition: all 2s;
}
img.lazy.in-viewport {
  opacity: 1;
}
.standard .cke_reset {
  z-index: 700;
  position: relative;
}
.ccm-notifications-box {
  z-index: 990;
}
.default-content {
  padding: 156px 0 0 0;
  position: relative;
  width: 100%;
}
.lazy-content {
  opacity: 1;
  transition: all 2s;
}
.lazy-content.outside-viewport {
  opacity: 0;
}
.x2column.lazy-content .col.image {
  transform: translateX(0);
  transition: all 1s;
}
.x2column.lazy-content.outside-viewport .col.image {
  transform: translateX(-20%) !important;
}
.x2column.lazy-content.outside-viewport .reverse .col.image {
  transform: translateX(20%) !important;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--main-font);
  background: var(--body-color);
  padding-top: 90px;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  background: url('/application/themes/aurora/assets/texture-body.jpg');
  background-size: 256px;
}
body.no-scroll {
  overflow: hidden;
}
a {
  text-decoration: none;
  color: var(--second-color);
}
ul {
  list-style: none;
}
a:hover {
  color: var(--font-color);
}
.store-btn-more-details,
#show-filters,
.admin-panel .btn-secondary {
  background: var(--second-color);
  color: #fff;
  padding: 6px 22px;
  font-size: 1em;
  font-weight: 700;
  display: block;
  text-transform: capitalize;
  transition: all 0.3s;
  position: relative;
  margin: 20px 0 0 0;
  border: none;
  text-align: center;
  border-radius: 12px;
  overflow: hidden;
  line-height: 1.75em;
  cursor: pointer;
}
#show-filters:before {
  content: '\f1de';
  font-family: 'Font Awesome 5 Pro';
  font-size: 1em;
  color: var(--white-color);
  position: relative;
  margin: 0 8px 0 0;
}
#show-filters {
  position: relative;
  left: 1%;
  margin: 24px 0 0 0;
  width: 120px;
}
.store-btn-more-details:hover,
#show-filters:hover,
.admin-panel .btn-secondary:hover {
  color: var(--white-color);
  background: var(--lighter-blue);
}
.std-button,
.button,
.store-btn-add-to-cart,
section.contact-form .btn {
  background: var(--lighter-blue);
  color: #fff;
  padding: 12px 22px;
  font-weight: 700;
  display: block;
  width: fit-content;
  text-transform: uppercase;
  transition: all 0.3s;
  position: relative;
  margin: 20px 0 0 0;
  border: none;
  border-radius: 10px;
  font-size: 0.875em;
  cursor: pointer;
}
.std-button:hover,
.button:hover,
.store-btn-add-to-cart:hover,
section.contact-form .btn:hover {
  background: var(--lightest-blue);
  color: var(--white-color);
  transition: all 0.3s;
}
h1 {
  font-size: 2.5em;
  line-height: 1.1em;
  font-weight: 800;
  color: var(--second-color);
  text-transform: uppercase;
}
@media screen and (max-width: 450px) {
  h1 {
    font-size: 2.2em;
  }
}
h2 {
  font-size: 1.85em;
  line-height: 1.1em;
  font-weight: 800;
  color: var(--main-color);
  text-transform: uppercase;
}
h3 {
  font-size: 1.5em;
  font-weight: 500;
  color: var(--main-color);
  text-transform: uppercase;
}
h4 {
  font-size: 1.2em;
  margin: 10px 0;
  font-weight: 600;
  color: var(--main-color);
  text-transform: none;
}
p {
  font-size: 1em;
  color: var(--main-color);
  line-height: 1.75em;
  margin: 1em 0;
  font-weight: 400;
}
.max-width {
  max-width: var(--max-width);
  margin: 0 auto;
}
.next-prev {
  width: 100%;
  padding: 0 5%;
  position: relative;
  display: flex;
  justify-content: center;
}
.next-prev .max-width {
  max-width: 800px;
  width: 100%;
  position: relative;
}
.admin-panel .cke_contents {
  max-height: 600px;
  overflow: scroll;
}
/* HEADER */
header#main-header.nav-up {
  transform: translateY(-35%);
}
header#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 801;
  transition: all 0.3s;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}
/* Top Header */
.top-header {
  width: 100%;
  position: relative;
  background: var(--second-color);
  padding: 0 5%;
  display: flex;
  justify-content: flex-end;
}
.top-header-wrapper {
  display: flex;
  position: relative;
}
.top-header p {
  margin: 0;
  color: var(--white-color);
  font-weight: 600;
  font-size: 0.75em;
}
.top-header .opening-hours {
  padding: 5px 0 5px 15px;
  position: relative;
}
.top-header .opening-hours:before {
  content: '\f017';
  font-family: 'Font Awesome 5 Pro';
  font-size: 1em;
  position: absolute;
  color: var(--main-color);
  left: -7px;
  top: 7px;
  font-weight: 700;
}
/* Bottom Header */
header#main-header .bottom-header {
  padding: 0 5%;
  position: relative;
  height: auto;
  transition: all 0.3s;
  background: var(--main-color);
}
header#main-header .bottom-header:after {
  content: '';
  background: url('/application/themes/aurora/assets/rough-edge.svg') repeat-x;
  background-size: 700px 100%;
  background-position: center center;
  bottom: -32px;
  position: absolute;
  left: 0;
  width: 100%;
  height: 50px;
  z-index: -1;
}
header#main-header .bottom-header > .wrapper {
  display: flex;
  justify-content: flex-end;
  margin: 0 auto;
  position: relative;
  height: 60px;
}
header#main-header.nav-up div.logo a {
  padding: 7px 0 0;
}
header#main-header div.logo {
  width: 210px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  position: absolute;
  top: -22px;
  left: 0;
  z-index: 2;
}
header#main-header div.logo a {
  display: block;
  height: auto;
  width: 100%;
  transition: all 0.3s;
}
header#main-header div.logo a img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  transition: all 0.3s;
  filter: drop-shadow(0 3px 2px rgba(22, 57, 79, 0.29));
}
/* MAIN NAV */
div.blackout {
  background: rgba(65, 114, 150, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 949;
  transform: translateX(-100%);
  opacity: 0;
  transition: opacity 0.3s;
}
div.blackout.reveal {
  opacity: 1;
  transform: translateX(0);
}
nav#main-nav {
  margin-right: -15px;
}
nav#main-nav.desktop {
  margin-right: -15px;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
nav#main-nav ul {
  display: flex;
  list-style: none;
}
nav#main-nav > ul li .nav-wrapper {
  border-radius: 12px;
}
nav#main-nav > ul > li:hover > .nav-wrapper {
  background: var(--second-color);
}
nav#main-nav > ul > li.nav-selected {
  background: var(--lightest-blue);
  border-radius: 12px;
}
nav#main-nav ul li .subnav .nav-wrapper {
  display: block;
  width: 100%;
}
nav#main-nav ul li .subnav li:hover .nav-wrapper a .text-wrapper .subtitle {
  color: var(--white-color);
}
nav#main-nav ul li .subnav li:hover .nav-wrapper a .text-wrapper .title {
  color: var(--second-color);
}
nav#main-nav ul li {
  margin: 0 5px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}
nav#main-nav ul li a {
  color: var(--white-color);
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-transform: capitalize;
  font-size: 0.875em;
  font-weight: 700;
  transition: all 0.3s;
  position: relative;
  padding: 12px;
}
nav#main-nav.desktop ul li .expand {
  display: none;
}
/* desktop sub level nav */
nav#main-nav .subnav {
  position: absolute;
  margin: 60px 0 0 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  padding-top: 24px;
}
nav#main-nav li:hover .subnav {
  margin-top: 27px;
  visibility: visible;
  opacity: 1;
}
nav#main-nav .subnav ul {
  position: relative;
  flex-direction: column;
  width: auto;
  overflow: hidden;
  background: var(--lighter-blue);
  border-radius: 12px;
  min-width: 250px;
}
nav#main-nav .subnav ul li {
  border-bottom: solid 2px #37566a;
}
nav#main-nav .subnav ul li:last-of-type {
  border: none;
}
nav#main-nav .subnav ul li .nav-wrapper a {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  background: transparent;
  font-size: 0.8em;
  font-weight: 700;
}
nav#main-nav .subnav ul li .nav-wrapper a .text-wrapper {
  display: flex;
  flex-direction: column;
}
nav#main-nav .subnav ul li .nav-wrapper a .text-wrapper .title {
  white-space: nowrap;
}
nav#main-nav .subnav ul li .nav-wrapper a .text-wrapper .subtitle {
  font-weight: 500;
  margin: 3px 0 0 0;
  text-transform: capitalize;
  color: #8fbfdd;
  font-size: 1em;
  letter-spacing: 0;
}
nav#main-nav ul li {
  margin: 0;
}
nav#main-nav ul ul li a {
  height: auto;
  display: flex;
  align-items: :center;
  font-weight: 500;
  background: var(--main-color);
  font-size: 0.875em;
}
nav#main-nav ul ul li a:hover {
  color: var(--white-color);
  background: var(--second-color);
}
nav#main-nav ul ul li a:after {
  display: none;
}
nav#main-nav.desktop ul ul li a img {
  display: block;
  width: 64px;
  height: 64px;
  margin-right: 10px;
  border-radius: 12px;
}
/* MOBILE BURGER */
#mobile-burger {
  display: none;
  flex-direction: column;
  width: 40px;
  height: 40px;
  position: fixed;
  right: 5%;
  top: 65px;
  transform: translateY(-50%);
  justify-content: center;
  z-index: 849;
  cursor: pointer;
  transition: all 0.3s;
}
#mobile-burger.nav-up {
  transform: translateY(-46px);
  transition: all 0.3s;
}
#mobile-burger span {
  width: 100%;
  height: 4px;
  background: var(--white-color);
  display: block;
  margin: 3px auto;
  transition: all 0.3s;
  border-radius: 3px;
}
#mobile-burger.opened span {
  background: var(--second-color);
}
#mobile-burger.opened span:first-of-type {
  transform: translate(0, 10px) rotate(-45deg) scale(0.85);
}
#mobile-burger.opened span:nth-of-type(2) {
  transform: scale(0.5);
  opacity: 0;
}
#mobile-burger.opened span:last-of-type {
  transform: translate(0, -10px) rotate(45deg) scale(0.85);
}
/* MOBILE NAV */
.close-nav {
  position: absolute;
  top: 17px;
  left: 19px;
  z-index: 10;
}
.close-nav:before {
  content: '\f00d';
  font-family: 'Font Awesome 5 Pro';
  font-size: 2em;
  font-weight: 300;
  width: 40px;
  height: 40px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white-color);
  cursor: pointer;
}
.close-nav:hover:before {
  color: #ffd7c6;
}
nav#mobile-nav {
  position: fixed;
  display: block;
  top: 50px;
  right: 0;
  width: 100%;
  min-height: 75vh;
  max-height: 80vh;
  z-index: 950;
  max-width: 375px;
  transform: translateX(100%);
  transition: all 0.3s;
  background: var(--second-color);
  background-size: cover;
  background-position: top left;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  overflow: scroll;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
nav#mobile-nav::-webkit-scrollbar {
  display: none;
}
nav#mobile-nav.opened {
  transform: translateX(0);
}
nav#mobile-nav svg path {
  width: 100%;
}
nav#mobile-nav ul {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 0 0;
}
nav#mobile-nav ul li {
  position: relative;
}
nav#mobile-nav ul li a {
  color: var(--white-color);
  height: 48px;
  line-height: 48px;
  padding: 0 0 0 55px;
  display: flex;
  transition: all 0.3s;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 1.175em;
}
/* expand stuff */
nav#mobile-nav ul li div.expand {
  display: flex;
  position: absolute;
  top: 5px;
  left: 0;
  cursor: pointer;
  height: 38px;
  width: 38px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
nav#mobile-nav ul li div.expand.opened .wrapper {
  transform: scaleY(-1);
}
nav#mobile-nav ul li div.expand .wrapper {
  position: relative;
  width: 38px;
  height: 38px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  background: #e64500;
}
nav#mobile-nav ul li div.expand .wrapper:before {
  content: '\f0dd';
  font-family: 'Font Awesome 5 Pro';
  color: var(--white-color);
  font-weight: 700;
  font-size: 1.175em;
  position: relative;
  top: -3px;
}
/* Subnav */
nav#mobile-nav ul ul {
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  padding: 0 20px 0 20px;
}
nav#mobile-nav ul ul li {
  padding: 0;
}
nav#mobile-nav ul ul li:last-of-type {
  border-bottom: none;
}
nav#mobile-nav ul ul li a {
  font-size: 0.875em;
  padding-left: 0;
}
nav#mobile-nav ul ul li a img {
  border-radius: 6px;
  overflow: hidden;
  min-width: 50px;
  margin: 0 5px 0 0;
}
nav#mobile-nav ul ul li:hover > a {
  background: var(--main-color);
}
nav#mobile-nav .subnav .text-wrapper {
  display: flex;
  flex-direction: column;
  padding-left: 10px;
  width: 100%;
  justify-content: center;
  border-radius: 6px;
  background: #e64500;
}
nav#mobile-nav .subnav .text-wrapper:hover {
  background: #ff773c;
}
nav#mobile-nav .subnav a:hover .text-wrapper .title {
  color: var(--white-color);
}
nav#mobile-nav .subnav .text-wrapper .subtitle:hover {
  color: var(--white-color);
}
nav#mobile-nav .subnav .text-wrapper .title {
  line-height: normal;
}
nav#mobile-nav .subnav .text-wrapper .subtitle {
  line-height: normal;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 0.85em;
  color: var(--white-color);
}
@media screen and (max-width: 361px) {
  nav#mobile-nav {
    max-width: 350px;
  }
}
/* MAIN IMAGE */
/* MOBILE VIEW */
@media screen and (max-width: 1023px) {
  body {
    padding-top: 94px;
  }
  header#main-header .bottom-header,
  header#main-header div.logo a,
  header#main-header nav#main-nav li a,
  header#main-header nav#main-nav li {
    height: auto;
  }
  header#main-header div.logo {
    width: 180px;
    top: 10px;
  }
  header#main-header div.logo a svg,
  header#main-header div.logo a img {
    height: auto;
    transition: all 0.3s;
  }
  header#main-header nav#main-nav li li a,
  header#main-header nav#main-nav li li {
    height: 48px;
  }
  #mobile-burger {
    display: flex;
  }
  nav#main-nav.desktop {
    display: none;
  }
  nav#mobile-nav {
    display: flex;
    align-items: flex-start;
    padding: 100px 0 50px 0;
  }
}
/* YOUTUBE VIDEO */
section.single-video {
  margin: 45px 0;
  padding: 45px 5%;
}
section.single-video .max-width {
  max-width: var(--max-width);
  margin: 0 auto;
  filter: saturate(0.2);
}
/* CONTACT FORM */
::-webkit-input-placeholder {
  color: var(--font-color);
}
section.contact-form {
  padding: 45px 5%;
}
section.contact-form .max-width {
  margin: 0 auto;
  background: var(--white-color);
  padding: 40px;
  border-radius: 20px;
  max-width: 900px;
  box-shadow: 0 1px 10px #e8e8e8;
}
section.contact-form .ccm-block-express-form {
  padding: 0;
  margin: 45px 0;
  border-radius: 3px;
}
section.contact-form .ccm-block-express-form form {
  max-width: var(--max-width);
  margin: 0 auto;
}
section.contact-form .ccm-dashboard-express-form {
  display: flex;
  margin: 0 -2.5% 0 -2.5%;
}
section.contact-form fieldset {
  width: 95%;
  margin: 0 2.5%;
  border: none;
}
section.contact-form fieldset legend {
  display: none;
}
section.contact-form .form-group {
  margin-bottom: 20px;
}
section.contact-form input {
  font-family: var(--main-font);
}
div.radio.store-shipping-method-option {
  width: 100%;
}
div.radio.store-shipping-method-option .form-check {
  display: flex;
}
div.radio.store-shipping-method-option .form-check .form-check-input {
  margin-right: 10px;
}
section.contact-form select,
.list-filter select,
.store-checkout-page select {
  padding: 10px;
  font-family: var(--main-font);
  border: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: var(--second-color);
  color: #fff;
  border-radius: 2px;
  width: 100%;
  height: 38px;
  font-size: 0.9em;
  background-position: right .7em top 50%, 0 0;
  background-repeat: no-repeat;
  background-size: 12px auto, 100%;
  transition: all 0.3s;
}
section.contact-form select:hover,
.list-filter select:hover,
.store-product-block select:hover,
.store-checkout-page select:hover,
.store-checkout-page select:focus {
  box-shadow: 0 1px 10px #e8e8e8;
}
section.contact-form input[type=text],
section.contact-form input[type=tel],
section.contact-form input[type=email],
section.contact-form textarea,
.store-product-block input,
.store-checkout-page input[type=email],
.store-checkout-page input[type=text],
.store-checkout-page input[type=number],
.store-checkout-page input[type=tel],
.store-checkout-page textarea {
  padding: 14px 14px 14px 20px;
  border: none;
  border-radius: 8px;
  transition: all 0.3s;
  font-size: 0.9em;
  color: var(--font-color);
  -webkit-appearance: none;
  display: block;
  width: 100%;
  background: var(--body-color);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) inset;
  font-family: var(--main-font);
  border: 2px solid transparent;
}
section.contact-form div.input,
.store-checkout-page div.input {
  position: relative;
}
section.contact-form div.input:after,
.store-checkout-page div.input:after {
  display: block;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--font-color);
  font-family: 'Font Awesome 5 Pro';
  font-size: 1.25em;
  transition: all 0.3s;
  font-weight: 300;
}
div.input.first-name:after,
div.input.last-name:after,
div.input.name:after {
  content: '\f007';
}
div.input.email:after {
  content: '\f2b6';
}
div.input.phone-number:after {
  content: '\f095';
}
div.input.address:after {
  content: '\f3c5';
}
div.input.search:after {
  content: '\f002';
}
div.input.message:after {
  top: 10px !important;
  transform: none !important;
  content: '\f303';
}
section.contact-form textarea {
  min-height: 417px;
}
/* Hide arrow icon in IE browsers */
section.contact-form select::-ms-expand {
  display: none;
}
section.contact-form input[type=text]:hover,
section.contact-form input[type=tel]:hover,
section.contact-form input[type=email]:hover,
.store-checkout-page input[type=number]:hover,
section.contact-form textarea:hover,
.store-product-block input:hover,
.store-checkout-page input[type=email]:hover,
.store-checkout-page input[type=text]:hover,
.store-checkout-page input[type=tel]:hover,
.store-checkout-page textarea:hover {
  background: var(--body-color);
  border: 2px solid #fff;
}
section.contact-form input[type=text]:focus,
section.contact-form input[type=tel]:focus,
section.contact-form input[type=email]:focus,
.store-checkout-page input[type=number]:focus,
section.contact-form textarea:focus,
.store-product-block input:focus,
.store-checkout-page input[type=email]:focus,
.store-checkout-page input[type=text]:focus,
.store-checkout-page input[type=tel]:focus,
.store-checkout-page textarea:focus {
  background: var(--body-color);
  outline: none;
  border: 2px solid var(--second-color);
}
section.contact-form label,
.store-product-block label,
.store-checkout-page label {
  line-height: 1.5em;
  margin: 0 0 5px 0;
  color: var(--font-color);
  font-size: 0.9em;
  font-weight: 700;
  display: inline-block;
  user-select: none;
}
.store-product-block input:checked {
  background: var(--main-color);
  outline: none;
  border-radius: 8px;
}
section.contact-form span.small {
  font-size: 0.65em;
  color: #ed6b68;
}
section.contact-form .form-actions {
  margin-top: 30px;
  padding: 0 2px;
  text-align: center;
}
@media screen and (max-width: 800px) {
  section.contact-form .ccm-dashboard-express-form {
    flex-direction: column;
    margin: 0 -2.5% 0 -2.5%;
  }
  section.contact-form textarea {
    min-height: 150px;
  }
}
/* PAGE SHARING */
div.page-sharing {
  display: flex;
  overflow: hidden;
  justify-content: flex-end;
  width: 100%;
}
div.page-sharing div.list-socials {
  transform: translateX(140%);
  transition: all 0.7s;
}
div.page-sharing.viewing div.list-socials {
  transform: translateX(0);
  opacity: 1;
  transition: all 0.7s;
}
div.page-sharing a.socials-item,
div.page-sharing div.list-sharing-icon {
  font-size: 18px;
  width: 36px;
  height: 36px;
  line-height: 36px;
}
/* BLOG LIST SHARING */
div.list-sharing-icon {
  color: var(--main-color);
}
a.socials-item {
  color: var(--font-color);
}
a.socials-item:hover {
  color: var(--main-color);
}
/* BLOG CONTENT */
body.blog-post {
  overflow: scroll;
}
body.blog-post section.title-block {
  padding: 45px 5% 0 5%;
  margin: 45px 0;
  text-align: center;
}
body.blog-post section.title-block .max-width {
  max-width: var(--max-width-blog);
  margin: 0 auto;
}
section.blog-content {
  padding: 0 5%;
  margin: 45px 0;
}
section.blog-content ul {
  list-style: none;
  margin: 20px 0;
}
section.blog-content ul li,
.cke_wysiwyg_div ul li {
  color: var(--font-color);
  padding-left: 30px;
  position: relative;
  line-height: 1.2em;
  margin: 10px 0;
}
section.blog-content ul li:before,
.cke_wysiwyg_div ul li:before {
  content: '\f061';
  font-family: 'Font Awesome 5 Pro';
  position: absolute;
  top: 0;
  left: 0;
}
section.blog-content .max-width {
  max-width: var(--max-width-blog);
  margin: 0 auto;
}
section.blog-content img,
.std-form .cke_inner img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px 0 10px;
}
section.blog-content figcaption {
  font-style: italic;
  font-size: 0.875em;
  margin: 0 0 30px 0;
}
@media screen and (max-width: 600px) {
  body.blog-post section.title-block {
    text-align: left;
  }
}
/* BLOG PAGE SHARING */
section.page-sharing div.page-sharing {
  display: flex;
  overflow: hidden;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
}
section.page-sharing div.page-sharing div.list-socials {
  transform: translateX(0);
  display: flex;
}
section.page-sharing div.page-sharing.viewing div.list-socials {
  transform: translateX(0);
  opacity: 1;
  transition: all 0.7s;
}
section.page-sharing div.page-sharing a.socials-item {
  font-size: 1.7em;
  width: 36px;
  height: 36px;
  line-height: 36px;
  display: block;
  text-align: center;
  margin: 0 4px;
}
section.page-sharing div.page-sharing a.socials-item:hover {
  color: var(--second-color);
}
section.page-sharing div.page-sharing a.socials-item svg {
  width: 21px;
}
/* AUTHOR */
section.title-block p.author {
  display: flex;
  align-items: center;
  justify-content: center;
}
section.title-block p.author img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 10px;
}
@media screen and (max-width: 600px) {
  section.title-block p.author {
    text-align: left;
    justify-content: flex-start;
  }
  section.page-sharing div.page-sharing {
    justify-content: flex-start;
    width: 90%;
  }
}
/* FOOTER */
footer#footer {
  padding: 30px 6% 100px;
  background: var(--main-color);
  width: 100%;
  position: relative;
  text-align: center;
  mix-blend-mode: multiply;
  margin: 200px 0 0 0;
}
footer#footer:before {
  content: '';
  background: url('/application/themes/aurora/assets/mountains.svg') repeat-x;
  background-size: contain;
  width: 100%;
  height: 70px;
  position: absolute;
  top: -65px;
  left: 0;
}
footer#footer p {
  font-size: 0.70em;
  color: #7db0cf;
}
footer#footer a {
  color: #7db0cf;
}
footer#footer a:hover {
  color: var(--second-color);
}
footer#footer span {
  color: var(--second-color);
  margin: 0 5px;
  top: -1px;
  position: relative;
}
@media only screen and (max-width: 800px) {
  footer#footer:before {
    background-size: cover;
  }
}
/* FIXED FOOTER */
section.fixed-footer {
  position: fixed;
  z-index: 940;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(14, 40, 57, 0.9);
  transform: translateY(100%);
  transition: all 0.3s;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}
section.fixed-footer.visible {
  transform: translateY(0);
}
section.fixed-footer .row {
  display: flex;
  justify-content: center;
}
section.fixed-footer a.item {
  margin: 15px 0;
  text-align: center;
  display: block;
  border-right: 1px solid #214860;
  padding: 0 40px;
  color: var(--white-color);
  transition: all 0.3s;
}
section.fixed-footer a.item:hover {
  color: var(--main-color);
}
section.fixed-footer a.item:last-of-type {
  border: none;
}
section.fixed-footer .item p {
  margin: 0;
  font-size: 0.9em;
  font-weight: 700;
  line-height: 1.3em;
  color: var(--white-color);
  letter-spacing: 0.03em;
}
section.fixed-footer .item p.smaller {
  font-size: 0.75em;
  font-weight: 500;
  color: #7db0cf;
}
section.fixed-footer .icon {
  margin-bottom: 5px;
}
section.fixed-footer .icon i {
  font-size: 1.5em;
  color: var(--second-color);
}
@media screen and (max-width: 600px) {
  section.fixed-footer a.item {
    padding: 0 12px;
    width: 33.3%;
  }
}
/* FORM MODAL */
div.form-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(38, 52, 66, 0.8);
  display: none;
  padding: 0 10px;
}
div.form-modal.opened {
  display: flex;
}
div.form-modal h2 {
  text-align: center;
  color: var(--main-color);
  padding: 0.5em;
  border-radius: 5px;
}
div.form-modal .wrapper {
  width: 100%;
  max-width: 860px;
  background: var(--body-color);
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.5);
  overflow: scroll;
  position: relative;
  height: 600px;
}
a.close-form {
  position: absolute;
  right: 20px;
  top: 20px;
}
a.close-form:before {
  content: '\f00d';
  font-family: 'Font Awesome 5 Pro';
  font-size: 2em;
  color: var(--main-color);
  cursor: pointer;
  transition: all 0.3s;
}
a.close-form:hover:before {
  color: #657380;
  transition: all 0.3s;
}
div.form-modal .ccm-dashboard-express-form {
  display: flex;
  justify-content: space-between;
}
div.form-modal .ccm-block-express-form fieldset {
  width: calc(50% - 10px);
  margin: 20px 0 0 0;
}
div.form-modal .mb-3 {
  margin-bottom: 20px;
}
div.form-modal textarea {
  height: 217px;
}
div.form-modal span.small {
  font-size: 0.75em;
}
div.form-modal .form-actions {
  text-align: right;
}
div.form-modal .form-group.captcha {
  margin: 0;
  transform: scale(0.7);
}
#contact-form-modal .mb-3 select {
  width: 100%;
  padding: 6px;
  background: #fff;
  border: none;
  box-shadow: 0 0 0 3px rgba(117, 180, 179, 0), 1px 1px 3px rgba(0, 0, 0, 0.15) inset;
  color: #657380;
  font-family: var(--main-font);
  font-weight: 400;
}
@media screen and (max-width: 900px) {
  div.form-modal .wrapper {
    overflow: auto;
    max-height: 80vh;
    max-width: 90%;
  }
  div.form-modal .ccm-dashboard-express-form {
    flex-direction: column;
  }
  div.form-modal .ccm-block-express-form fieldset {
    width: 100%;
    margin: 20px 0 0 0;
  }
}
/* ENQUIRY FORM */
.ccm-dashboard-express-form {
  display: flex;
  flex-wrap: wrap;
  max-width: 1024px;
  margin: 0 auto;
}
.ccm-block-express-form fieldset {
  min-width: 240px;
  width: 45%;
  margin: 2.5%;
  border: 0 none;
}
.ccm-block-express-form fieldset legend {
  display: none;
}
/* SITE ADMIN */
section.admin-panel {
  padding: 45px 5%;
  margin: 45px 0;
  position: relative;
  z-index: 800;
}
section.admin-panel h3 {
  color: var(--font-color);
  font-size: 1.2em;
  font-weight: 700;
  margin: 0 0 15px 0;
}
section.admin-panel .max-width {
  border: 1px solid #eee;
  background: #fbfbfb;
  padding: 30px;
  max-width: 860px;
  margin: 0 auto;
  line-height: 1em;
}
nav.page-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
nav.page-nav ul li {
  margin: 0 2px 5px 2px;
}
ul.list {
  list-style: none;
  margin: 30px 0;
}
.std-form .flex-wrapper {
  display: flex;
}
.std-form .flex-wrapper .form-group {
  margin-right: 10px;
}
.std-form div.form-input {
  margin-top: 10px;
}
.std-form label,
.ccm-block-express-form label,
.ccm-block-express-form span.text-muted {
  display: inline-block;
  font-size: 0.875em;
  font-family: var(--main-font);
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  margin: 0 0 5px;
}
.std-form input,
.std-form textarea,
.ccm-block-express-form input,
.ccm-block-express-form textarea {
  border: none;
  padding: 10px;
  font-size: 16px;
  font-family: var(--main-font);
  font-weight: 400;
  font-style: normal;
  display: block;
  margin-bottom: 15px;
  color: #657380;
  width: 100%;
  box-shadow: 0 0 0 3px rgba(117, 180, 179, 0), 1px 1px 3px rgba(0, 0, 0, 0.15) inset;
  border-radius: 2px;
  transition: all 0.3s;
}
.std-form input:focus,
.std-form textarea:focus,
.ccm-block-express-form input:focus,
.ccm-block-express-form textarea:focus {
  outline: none;
}
.std-form div.checkbox {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.std-form input[type=checkbox] {
  width: auto;
  margin: 0 0 0 10px;
}
.std-form .ccm-file-selector {
  margin: 0 0 20px 0;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -ms-border-radius: 2px;
  color: #ffffff;
  background-color: #3f9edc;
  text-align: center;
  font-size: 18px;
  line-height: 1.42857143;
  -webkit-transition: .1s linear all;
  -o-transition: .1s linear all;
  transition: .1s linear all;
  cursor: pointer;
}
.std-form .ccm-item-selector-loaded {
  display: flex;
  align-items: center;
  padding: 8px;
  text-align: left;
  background-color: #3f9edc;
}
.std-form .ccm-item-selector-loaded .btn-group {
  display: flex;
  align-items: center;
}
.std-form .ccm-item-selector-group .ccm-item-selector-loaded a.btn {
  padding-left: 0;
  display: flex;
  align-items: center;
  color: #fff;
}
.std-form .cke_editor {
  margin-bottom: 20px !important;
}
section.admin-panel .cke_top {
  top: 105px;
  z-index: 1000;
  position: sticky;
}
.std-form .cke_wysiwyg_div {
  background-color: var(--body-color);
}
.std-form button {
  font-family: var(--main-font);
}
.std-form button[type="submit"] {
  margin: 20px 0 5px 0;
  background: var(--main-color);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 12px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
}
.std-form button.ccm-item-selector-reset {
  border: none;
  background: red;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.std-form button.ccm-item-selector-reset .fa-times-circle:before {
  content: '\f00d';
}
.std-form .image-picker {
  margin-top: 20px;
}
.std-form .form-group-inline {
  display: inline-block;
  margin: 0 10px 20px 0;
}
.std-form .date-picker input {
  margin-bottom: 5px;
}
.std-form .ccm-file-manager-list-thumbnail {
  display: block;
}
.std-form .ccm-item-selector-group .ccm-item-selector-loaded img {
  max-height: 60px;
  max-width: 60px;
  display: block;
}
.std-form select {
  padding: 10px;
  min-width: 200px;
  font-family: var(--main-font);
  font-weight: 500;
}
/* community store product */
.store-product {
  width: 100%;
  position: relative;
  padding: 0 5% 80px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.store-product > .row {
  display: flex;
  max-width: 1200px;
  width: 100%;
  position: relative;
  flex-direction: row-reverse;
  gap: 5%;
  align-items: flex-start;
}
.store-product-details {
  width: 50%;
  position: sticky;
  top: 110px;
}
.store-product-image {
  width: 50%;
  position: relative;
}
.store-product-primary-image {
  width: 100%;
}
.store-product-primary-image img {
  width: 100%;
  hheight: auto;
}
.store-product-additional-images {
  width: 100%;
  display: flex;
  gap: 0.5%;
}
.store-product-additional-image {
  width: 25%;
}
.store-product-additional-image img {
  width: 100%;
  height: auto;
}
.store-product-name-wrapper {
  max-width: 1200px;
  position: relative;
  width: 100%;
}
.store-product-name {
  text-transform: capitalize;
  font-size: 2.3em;
  color: var(--main-color);
  line-height: 1.1em;
  margin: 0 0 40px 0;
  width: 100%;
  text-align: left;
}
.store-list-price {
  margin: 0 0 5px 0;
}
.store-original-price {
  color: var(--main-color);
  font-size: 0.7em;
}
.sale-list .store-original-price {
  font-size: 0.7em;
  color: #fcee57;
}
.store-product-price {
  font-size: 2em;
  color: var(--second-color);
  margin: 0 0 15px 0;
  font-weight: 700;
  line-height: 1em;
  display: flex;
  flex-direction: column;
}
.store-product-price strong {
  font-weight: 700;
  font-size: 0.8em;
}
.store-product-option-group {
  display: flex;
  flex-direction: column;
  margin: 0 0 10px 0;
  position: relative;
}
select.store-product-option {
  background: var(--second-color);
  border: none;
  padding: 10px 15px;
  border-radius: 8px;
  color: #f2f2f2;
  font-weight: 500;
  font-size: 1em;
  min-width: 70%;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  background-image: url(/application/themes/aurora/assets/down-arrow.svg);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 30px 10px;
  font-family: var(--main-font);
}
div.options {
  width: 100%;
  position: relative;
  display: flex;
  gap: 10px;
  cursor: pointer;
}
input.store-product-variation {
  background: var(--second-color);
  position: relative;
  z-index: 1;
  padding: 15px 20px;
  border-radius: 0;
  border: none;
  cursor: pointer;
  box-shadow: none;
}
input.store-product-variation:before,
select.store-product-option:before {
  content: '';
  background: var(--main-color);
  height: 15px;
  width: 15px;
  top: 0;
  left: 0;
  position: absolute;
  clip-path: polygon(100% 0, 0 0, 0 100%);
}
.store-product-block input:checked:before {
  content: '';
  background: var(--second-color);
  height: 15px;
  width: 15px;
  top: 0;
  left: 0;
  position: absolute;
  clip-path: polygon(100% 0, 0 0, 0 100%);
}
input.store-product-variation:hover:before {
  background: var(--second-color);
}
input.store-product-variation:focus {
  background: var(--main-color);
  border: none;
}
input.store-product-variation:focus:before {
  background: var(--second-color);
  border: none;
}
input.store-product-variation:hover {
  border: none;
  background: var(--main-color);
}
div.radio {
  position: relative;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
}
div.radio label {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
}
.radio-size {
  color: var(--white-color);
  position: absolute;
  z-index: 2;
  font-weight: 700;
  pointer-events: none;
}
.store-product-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.store-product-quantity {
  margin: 10px 0 0 0;
}
.store-product-quantity.invisible {
  visibility: hidden;
}
.store-product-quantity.visible {
  visibility: visible;
}
.store-product .info {
  margin: 0 0 5px 0;
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid #f2d2c0;
}
.store-product-qty {
  max-width: 160px;
}
.info .info-content {
  display: none;
  padding: 10px 0;
}
.info .info-content.open {
  display: block;
}
.info .info-content {
  transition: max-height 0.3s ease-out;
  max-height: 0;
  overflow: hidden;
}
.info .info-content.open {
  max-height: none;
}
.store-product ul {
  list-style: none;
}
.store-product ul li {
  font-size: 1em;
  color: var(--main-color);
  line-height: 1.75em;
  position: relative;
  padding-left: 25px;
  margin: 1em 0;
}
.store-product ul li:before {
  content: '\f0c8';
  font-family: 'Font Awesome 5 Pro';
  font-size: 1em;
  color: var(--second-color);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}
.info h4 {
  color: var(--second-color);
  font-size: 1.3em;
  position: relative;
}
.store-product-detailed-description h4 {
  color: var(--main-color);
}
.store-product-detailed-description h4:after {
  display: none;
}
.info h4.opened {
  color: var(--main-color);
}
.store-product .info h4:after {
  content: '\f078';
  font-family: 'Font Awesome 5 Pro';
  font-size: 1em;
  color: var(--second-color);
  position: absolute;
  right: 0;
  top: 5px;
}
.store-product .info h4.opened:after {
  transform: rotate(180deg);
  color: #ccc;
}
.sales-message {
  background: var(--second-color);
  padding: 20px;
  position: relative;
  margin: 60px 0 0 0;
  width: fit-content;
  border-radius: 8px;
  overflow: hidden;
}
.store-product .sales-message h4 {
  color: var(--white-color);
  margin: 0;
  font-size: 1.2em;
}
.sales-message p {
  color: var(--white-color);
  margin: 0;
}
.sales-message:before {
  content: '';
  background: var(--main-color);
  height: 30px;
  width: 30px;
  top: 0;
  left: 0;
  position: absolute;
  clip-path: polygon(100% 0, 0 0, 0 100%);
}
@media only screen and (max-width: 700px) {
  .store-product {
    padding-top: 0;
  }
  .store-product > .row {
    flex-direction: column-reverse;
  }
  .store-product-image {
    width: 100%;
  }
  .store-product-details {
    position: relative;
    top: auto;
    width: 100%;
  }
}
/* community store list */
.sale-list {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #d65804;
  background: linear-gradient(0deg, #d65804 0%, #f88705 50%, #d65804 100%);
  padding: 110px 5%;
  flex-direction: column;
}
.sale-list:before {
  content: '';
  background: url('/application/themes/aurora/assets/white-rough-edge.svg') repeat-x;
  background-size: 700px 100%;
  background-position: center center;
  top: -15px;
  position: absolute;
  left: 0;
  width: 100%;
  height: 50px;
  z-index: 1;
  filter: brightness(1.06);
}
.sale-list:after {
  content: '';
  background: url('/application/themes/aurora/assets/white-rough-edge.svg') repeat-x;
  background-size: 700px 100%;
  background-position: center center;
  bottom: -16px;
  position: absolute;
  left: 0;
  width: 100%;
  height: 50px;
  z-index: 1;
  transform: rotate(180deg);
  filter: brightness(1.02);
}
.all-products {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
}
.sale-message {
  text-align: center;
  margin: 0 0 30px 0;
  position: relative;
}
.sale-message h2 strong {
  font-weight: 800;
  color: var(--white-color);
}
.sale-message h4 {
  font-weight: 500;
  color: var(--white-color);
  margin: 10px 0 0 0 ;
}
.sale-list .textured-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  background: url('/application/themes/aurora/assets/texture-body.jpg');
  background-size: 256px;
  z-index: 1;
}
.sale-list .store-product-list {
  padding: 0;
}
.store-product-list {
  position: relative;
  width: 100%;
  padding: 0 5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.sale-list .store-product-list-item {
  box-shadow: 0 1px 10px #d45a04;
}
.store-product-list-item {
  display: flex;
  width: 23%;
  z-index: 2;
  margin: 1%;
  background: var(--white-color);
  position: relative;
  padding: 20px 20px 65px 20px;
  box-shadow: 0 1px 10px #e8e8e8;
  border-radius: 5px;
}
.store-product-list .store-product-price {
  font-size: 1em;
  font-weight: 700;
  color: #fff;
  line-height: 1.1em;
  position: absolute;
  background: var(--second-color);
  padding: 5px 8px;
  top: 40px;
  left: 0;
  z-index: 2;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
.product .store-wholesale-price {
  color: var(--main-color);
}
.store-wholesale-price {
  font-size: 0.6em;
  line-height: 1em;
  text-transform: lowercase;
}
.store-product-list-thumbnail {
  position: relative;
}
.store-product-list-thumbnail a {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}
.store-product-list-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.store-product-list-name {
  margin-top: 15px;
  font-size: 0.875em;
  text-transform: capitalize;
  font-weight: 500;
  text-align: center;
  line-height: 1.4em;
}
.store-btn-more-details-container {
  margin-bottom: 0;
  position: absolute;
  bottom: 20px;
  width: 88%;
}
.store-product-list-sort {
  width: 100%;
  position: relative;
  padding: 0 6% 20px;
  display: flex;
  justify-content: flex-end;
}
.store-product-list-sort .form-group {
  display: flex;
  flex-direction: column;
}
.store-product-list-sort .form-select {
  width: 200px;
  background: #fff;
  padding: 7px;
  border: 1px solid #fdcdb2;
  border-radius: 10px;
}
.store-product-list-sort .form-label {
  font-weight: 500;
  font-size: 0.9em;
  color: var(--main-color);
  margin: 0 0 5px 0;
}
@media only screen and (max-width: 1025px) {
  .store-product-list-item {
    width: 48%;
  }
}
@media only screen and (max-width: 500px) {
  .store-product-list-item {
    width: 98%;
    margin-bottom: 20px;
  }
  .store-product-list .store-product-price {
    font-size: 1.5em;
  }
  .store-product-list-name {
    font-size: 1em;
  }
}
/* community store basket */
.basket:before {
  content: '\f291';
  font-family: 'Font Awesome 5 Pro';
  font-size: 1em;
  position: absolute;
  color: var(--main-color);
  left: -24px;
  top: 6px;
  font-weight: 700;
}
.basket {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 20px 0 0;
}
.store-cart-link {
  color: var(--white-color);
}
.store-cart-link:hover {
  color: var(--main-color);
}
.store-cart-list-item-attribute {
  font-size: 0.85em;
  margin: 5px 0 0 0;
}
.store-cart-empty .store-cart-link {
  display: inline-block;
}
.store-whiteout {
  background: rgba(69, 84, 113, 0.7);
}
.store-product-modal,
.store-cart-modal {
  box-shadow: none;
  padding: 40px;
  background: #f7f7f7;
  border-radius: 10px;
  overflow: scroll;
  width: 90%;
}
.store-cart-modal {
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.store-cart-modal::-webkit-scrollbar {
  display: none;
}
#cart {
  border-collapse: collapse;
  width: 100%;
}
#cart-modal h3 {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 1.3em;
  margin: 0 0 20px 0;
}
#cart thead {
  text-align: left;
  font-size: 0.9em;
  color: var(--lighter-blue);
  font-weight: 600;
}
#cart th,
.store-order-complete-page th {
  padding: 0 0 10px 0;
  font-weight: 500;
  font-size: 0.9em;
  text-align: left;
}
.store-btn-cart-modal-update {
  color: var(--white-color);
  background: var(--main-color);
  padding: 8px 20px;
  font-size: 0.9em;
  margin: 15px 0 0 0;
  display: inline-block;
  border: none;
  border-radius: 2px;
  overflow: hidden;
}
.store-btn-cart-modal-update:hover {
  color: var(--white-color);
  background: var(--lighter-blue);
}
.store-btn-cart-modal-clear,
.store-btn-cart-modal-continue,
.store-btn-previous-pane {
  color: var(--white-color);
  background: var(--second-color);
  padding: 8px 20px;
  font-size: 0.9em;
  margin: 15px 0 0 0;
  display: inline-block;
  border-radius: 2px;
  overflow: hidden;
}
tfoot .text-end {
  text-align: right;
}
.store-btn-cart-modal-clear:hover,
.store-btn-cart-modal-continue:hover,
.store-btn-previous-pane:hover {
  color: var(--white-color);
  background: var(--lighter-orange);
}
.store-btn-cart-modal-checkout,
.store-btn-next-pane,
.store-btn-complete-order {
  color: var(--white-color);
  background: var(--main-color);
  padding: 8px 20px;
  font-size: 0.9em;
  margin: 15px 0 0 0;
  display: inline-block;
  border: none;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}
.store-btn-next-pane {
  margin: 15px 0 0 15px;
}
.store-btn-complete-order {
  margin: 15px 0 0 15px;
}
.store-btn-cart-modal-checkout:hover,
.store-btn-next-pane:hover,
.store-btn-complete-order:hover {
  color: var(--white-color);
  background: var(--lighter-blue);
}
.store-checkout-form-group-buttons {
  position: relative;
  display: flex;
  align-items: center;
}
.store-qty-container input {
  max-width: 120px;
  border: none;
  padding: 7px;
  border-radius: 5px;
  background: #f2f2f2;
}
.store-qty-container input:focus-visible {
  outline: 2px solid var(--second-color);
}
.store-cart-page-cart-list-item {
  border-bottom: 5px solid #f7f7f7;
}
.store-cart-page-cart-list-item td {
  vertical-align: middle;
  background: #fff;
}
.checkout-cart-product-name a {
  color: var(--main-color);
}
.checkout-cart-product-name a:hover {
  color: var(--second-color);
}
.checkout-cart-product-name,
.store-cart-product-name {
  padding: 15px;
  text-align: left;
}
.store-cart-list-item-price,
.store-cart-item-price {
  padding: 15px 25px 15px 0;
  color: var(--second-color);
  font-weight: 600;
  text-align: left;
}
.store-cart-list-product-qty {
  padding: 15px 15px 15px 0;
}
.store-btn-cart-list-remove {
  margin-top: 10px;
  display: flex;
  font-size: 0.7em;
  align-items: center;
}
.store-btn-cart-list-remove .fa-remove:before {
  font-size: 1.4em;
  margin-right: 8px;
}
.store-cart-list-thumb {
  width: 95px;
}
.store-cart-list-thumb a {
  display: flex;
  width: 100%;
}
.store-cart-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.store-cart-page-cart strong {
  color: var(--main-color);
}
.store-cart-page-cart {
  min-width: 500px;
}
.store-modal-exit {
  position: absolute;
  font-size: 2.5em;
  line-height: 20px;
  right: 15px;
  top: 15px;
  color: #162950;
  cursor: pointer;
}
.store-modal-exit:hover {
  color: var(--second-color);
}
/* Store Checkout */
.store-checkout-page,
.store-order-complete-page {
  padding: 120px 5%;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.store-checkout-form-group-body,
.store-checkout-cart-view,
.store-checkout-form-group-summary,
.store-order-complete-page fieldset {
  background: var(--white-color);
  padding: 30px;
  box-shadow: 0 1px 10px #e8e8e8;
  margin: 30px 0;
  border: none;
}
.store-checkout-form-group-summary label {
  color: var(--second-color);
  font-weight: 600;
  margin: 0;
}
.store-checkout-form-group-summary p {
  margin: 0 0 15px 0;
}
.store-checkout-page h1,
.store-order-complete-page h1 {
  font-size: 1.8em;
}
.store-checkout-page h2,
.store-checkout-form-group-summary .panel-heading,
.store-order-complete-page legend {
  font-size: 1.2em;
  margin: 0 0 20px 0;
  font-weight: 700;
  text-transform: uppercase;
}
.store-checkout-form-group-summary .panel-body {
  display: flex;
}
.store-checkout-form-group-summary .col-sm-6:first-of-type {
  margin: 0 30px 0 0;
}
.store-checkout-form-group-summary .col-sm-6 {
  margin: 0 30px;
}
.store-checkout-page .form-group {
  margin: 0 0 20px 0;
}
.store-checkout-totals-line-items {
  list-style: none;
  padding: 20px 0 0 0;
}
.store-checkout-totals-line-items li strong {
  color: var(--second-color);
}
.store-total-amount,
.store-sub-total-amount {
  color: var(--main-color);
  font-weight: 600;
}
.store-checkout-error {
  background: #ff8b54;
  padding: 10px 20px;
  margin: 0 0 20px 0;
  color: #fafafa;
}
.store-order-complete-page .table {
  width: 100%;
}
.store-order-complete-page .table tfoot td {
  padding: 20px 0 0 0;
}
.return {
  display: flex;
  align-self: flex-start;
}
/* Product Filter */
.filter-button {
  padding: 0 5% 10px;
  width: 100%;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 500px) {
  #show-filters span {
    font-size: 0;
  }
  #show-filters:before {
    margin: 0;
  }
  #show-filters {
    padding: 12px 18px;
    line-height: normal;
    width: auto;
  }
}
.store-btn-filter-clear {
  background: var(--second-color);
  color: #fff;
  padding: 10px 22px;
  font-size: 1em;
  font-weight: 500;
  display: block;
  text-transform: capitalize;
  transition: all 0.3s;
  position: relative;
  margin: 20px 0 0 0;
  border: none;
  text-align: center;
  font-weight: 600;
  border-radius: 12px;
  overflow: hidden;
}
.store-btn-filter-clear:hover {
  color: var(--white-color);
  background: var(--lighter-orange);
}
.close-filters {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
}
.close-filters:before {
  content: '\f00d';
  font-family: 'Font Awesome 5 Pro';
  font-size: 1.5em;
  font-weight: 300;
  width: 40px;
  height: 40px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--main-color);
  cursor: pointer;
}
.store-product-filter-block {
  width: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  background: rgba(69, 84, 113, 0.7);
  height: 100vh;
}
.store-product-filter-block.filters-visible {
  display: flex;
}
.store-product-filter-block-auto {
  padding: 20px;
  max-width: 350px;
  width: 100%;
  display: flex;
  height: auto;
  background: var(--white-color);
  align-items: flex-start;
  position: absolute;
  flex-direction: column;
  max-height: 300px;
  overflow: scroll;
  border-radius: 10px;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
}
.store-product-filter-block-auto::-webkit-scrollbar {
  display: none;
}
.store-product-filter-block-option-title {
  font-size: 1em;
  color: var(--main-color);
  margin: 0 0 0 5px;
  text-transform: capitalize;
}
.store-product-filter-block-option {
  color: var(--main-color);
}
.store-product-filter-block-count {
  color: var(--second-color);
}
.store-product-filter-block-auto .form-group {
  display: flex;
  position: relative;
  width: 100%;
  padding: 10px 0;
}
.store-product-filter-block-options {
  margin: 0 0 0 8px;
}
