@charset "UTF-8";
/*------------------------------------*\
	vars
\*------------------------------------*/
:root {
  --site-width: 1100px;
}

/*------------------------------------*\
    MAIN
\*------------------------------------*/
/* global box-sizing */
/* html element 62.5% font-size for REM use */
html {
  font-size: 62.5%;
}

body {
  font: 400 11px/1.4 'Fira Sans', sans-serif, Helvetica, Arial;
  color: #444;
  padding: 0;
  margin: 0;
  top: 0 !important;
}

/* clear */
.clear:before,
.clear:after {
  content: ' ';
  display: table;
}

.clear:after {
  clear: both;
}

.clear {
  *zoom: 1;
}

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

/*
a {
	color: #444;
	text-decoration: none;
}*/
a:hover {
  color: #444;
  text-decoration: none;
}

a:focus {
  outline: 0;
}

a:hover,
a:active {
  outline: 0;
}

input:focus {
  outline: 0;
  border: 1px solid #04a4cc;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/
body.frontend::before {
  background: url("https://www.toptal.com/designers/subtlepatterns/patterns/dot-grid.png");
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.5;
  content: '';
  z-index: -5;
  position: fixed;
  pointer-events: none;
}

body.page-template-page-no-margin #wrapper header {
  margin-bottom: 0;
}

body.page-template-page-no-margin #wrapper main {
  padding-top: 0;
  margin-top: -3em;
}

/* Current Region Colors */
#wp-admin-bar-current-region-tag-test-site {
  background-color: #16a085 !important;
}

#wp-admin-bar-current-region-tag-test-site > div {
  color: black !important;
}

#wp-admin-bar-current-region-tag-au {
  background-color: #8e44ad !important;
}

#wp-admin-bar-current-region-tag-eu {
  background-color: #b34f0d !important;
}

#wp-admin-bar-current-region-tag-us {
  background-color: #f39c12 !important;
}

#wp-admin-bar-current-region-tag-us > div {
  color: black !important;
}

/* wrapper */
#wrapper {
  max-width: var(--site-width);
  width: 100%;
  position: relative;
  background-color: white;
}

#wrapper > header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 5rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  z-index: 15;
}

@-webkit-keyframes colorchange {
  to {
    -webkit-filter: hue-rotate(360deg);
            filter: hue-rotate(360deg);
  }
}

@keyframes colorchange {
  to {
    -webkit-filter: hue-rotate(360deg);
            filter: hue-rotate(360deg);
  }
}

#wrapper > header .header-inner-wrapper {
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  background-color: #d9d9d9;
  -webkit-box-shadow: 0 0 10em 0 #d9d9d9;
          box-shadow: 0 0 10em 0 #d9d9d9;
  overflow: hidden;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 84%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 84%, 0 100%);
}

#wrapper > header .header-inner {
  min-height: 26rem;
  padding: 5rem 4rem 2rem 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#wrapper > header .header-inner > h1 {
  font-size: 4em;
  font-weight: bold;
  color: #737373;
  z-index: 1;
}

#wrapper > header .header-inner nav {
  z-index: 1;
}

#wrapper > header .header-inner .header-banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  z-index: 0;
}

#wrapper > header .header-inner .header-banner-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.2)));
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
}

#wrapper > header .header-inner .header-banner-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0% 50%, rgba(0, 0, 0, 0) 50% 100%);
  background-size: 5px 5px;
}

#wrapper > header .header-inner .header-banner-image img {
  position: relative;
  z-index: -1;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

#wrapper > header .header-inner .header-banner-image + h1,
#wrapper > header .header-inner .header-banner-image ~ nav,
#wrapper > header .header-inner .header-banner-image ~ nav a {
  color: white;
}

#container {
  width: 1100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
  -webkit-box-shadow: 0 0 1rem 0 lightgray;
          box-shadow: 0 0 1rem 0 lightgray;
  min-height: 100%;
  overflow: hidden;
  max-width: 100%;
}

body:not(.home) main {
  padding: 2rem 4rem;
}

body.single-product #launcher-frame {
  margin-right: 55px;
}

.loader-alt {
  --font-size: 1em;
  height: 2em;
  width: 2em;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 5;
  -webkit-animation: rotate 0.8s ease-in-out infinite;
          animation: rotate 0.8s ease-in-out infinite;
  font-size: var(--font-size);
  display: block;
  border: 1em solid transparent;
  border-top: 1em solid #8c8c8c;
  border-bottom: 1em solid #8c8c8c;
}

@-webkit-keyframes rotate {
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotate {
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

#go-to-top {
  position: fixed;
  bottom: -7rem;
  right: 2.3rem;
  height: 2em;
  width: 2em;
  font-size: 1.8em;
  background-color: #a6a6a6;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.3em;
  border-radius: 0.2em;
  cursor: pointer;
  font-weight: normal;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  z-index: 1;
}

#go-to-top.show {
  opacity: 1;
  bottom: 15px;
}

#go-to-top:hover {
  background-color: #bfbfbf;
}

#fc_frame.fc-widget-small {
  bottom: 80px !important;
}

/* -------------------------------------------------------------------------- */
/*                                  News page                                 */
/* -------------------------------------------------------------------------- */
main.news h3 {
  font-size: 2.75rem;
  margin: 1em 0;
  padding: 0 1em;
  line-height: 1.5;
  width: 100%;
  color: #737373;
}

main.news article {
  margin-bottom: 4em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

main.news article img {
  border-radius: 3px;
}

main.news a {
  display: block;
}

main.news a:first-child {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

main.news a:last-child {
  border-bottom: 1px solid #e2e2e2;
}

/* -------------------------------------------------------------------------- */
/*                                   Navbar                                   */
/* -------------------------------------------------------------------------- */
#navbar {
  width: 100%;
  background-color: #2c2d33;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 10;
}

#navbar .resposnive-icon {
  color: white;
  font-size: 2em;
  padding: 0.5em;
  display: none;
}

#navbar .resposnive-icon i {
  display: none;
}

#navbar .logo {
  padding: 1em 3em;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.4em;
}

#navbar .logo span {
  color: #15a6df;
}

#navbar a {
  color: white;
}

#navbar nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: auto;
}

#navbar nav > .menu-item.flyout {
  position: relative;
}

#navbar nav > .menu-item:hover .title-container {
  background-color: rgba(255, 255, 255, 0.2);
}

#navbar nav > .menu-item:hover .title-container + .mega-container {
  display: block;
  -webkit-animation: anime 0.3s;
          animation: anime 0.3s;
}

#navbar nav > .menu-item .title-container {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#navbar nav > .menu-item .title-container a {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 1em;
}

#navbar nav > .menu-item .title-container .toggle-arrow {
  display: none;
  color: white;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 10%;
  max-width: 50px;
  background-color: rgba(200, 200, 200, 0.1);
}

#navbar nav > .menu-item .mega-container {
  width: 100%;
  position: absolute;
  top: 100%;
  background-color: #4f515c;
  left: 0;
  min-height: 10rem;
  padding: 4rem 4rem;
  font-size: 1.5rem;
  display: none;
  overflow: hidden;
}

#navbar nav > .menu-item .mega-container .list-wrapper {
  display: inline-block;
  vertical-align: top;
  font-size: 1em;
}

#navbar nav > .menu-item .mega-container .list-wrapper:hover h3::after {
  width: 3em;
}

#navbar nav > .menu-item .mega-container .list-wrapper:hover .menu-image {
  opacity: 1;
  -webkit-transform: translate(20%, -50%);
          transform: translate(20%, -50%);
}

#navbar nav > .menu-item .mega-container .list-wrapper h3 {
  margin: 0;
  font-size: 0.9em;
  padding-bottom: 0.5em;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: bold;
  color: white;
}

#navbar nav > .menu-item .mega-container .list-wrapper h3.no-sub-categories::after {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  position: absolute;
  bottom: 0;
}

#navbar nav > .menu-item .mega-container .list-wrapper h3::after {
  border-bottom: 0.1em solid;
  content: '';
  width: 1em;
  padding-top: 0.5em;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

#navbar nav > .menu-item .mega-container .list-wrapper ul {
  padding: 1em 0;
  list-style: none;
  margin: 0;
}

#navbar nav > .menu-item .mega-container .list-wrapper ul li {
  cursor: pointer;
  font-size: 0.8em;
  padding: 0.3em;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#navbar nav > .menu-item .mega-container .list-wrapper ul li:hover {
  padding-left: 1em;
}

#navbar nav > .menu-item .mega-container.mega-list .mega-inner {
  padding-right: 12em;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
      grid-template-columns: repeat(5, 1fr);
  grid-gap: 1.5em;
}

#navbar nav > .menu-item .mega-container.mega-list .menu-image {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(20%, -55%);
          transform: translate(20%, -55%);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  pointer-events: none;
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, color-stop(25%, rgba(255, 255, 255, 0.1)), to(white));
  -webkit-mask-image: linear-gradient(to right, rgba(255, 255, 255, 0.1) 25%, white);
  mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(25%, transparent), color-stop(75%, black));
  mask-image: linear-gradient(to bottom, transparent 25%, black 75%);
  max-width: 50rem;
  opacity: 0;
}

#navbar nav > .menu-item .mega-container.mega-list .menu-image img {
  max-width: 100%;
}

#navbar nav > .menu-item .mega-container.mega-list-photos .mega-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#navbar nav > .menu-item .mega-container.mega-list-photos .list-wrapper {
  font-size: 1.9rem;
}

#navbar nav > .menu-item .mega-container.mega-list-photos .list-wrapper ul {
  padding: 0;
}

#navbar nav > .menu-item .mega-container.mega-list-photos .list-wrapper ul li {
  font-size: 0.8em;
  margin-bottom: 0.2em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 0.5em 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#navbar nav > .menu-item .mega-container.mega-list-photos .list-wrapper ul li .list-title {
  margin-right: 1em;
}

#navbar nav > .menu-item .mega-container.mega-list-photos .list-wrapper ul li .all {
  margin-left: auto;
  font-size: 0.6em;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 0.2em 0.5em;
  border-radius: 0.2em;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: gray;
}

#navbar nav > .menu-item .mega-container.mega-list-photos .list-wrapper ul li .all:hover {
  background-color: white;
}

#navbar nav > .menu-item .mega-container.mega-list-photos .list-wrapper ul li:hover, #navbar nav > .menu-item .mega-container.mega-list-photos .list-wrapper ul li.active {
  background-color: rgba(255, 255, 255, 0.3);
}

#navbar nav > .menu-item .mega-container.mega-list-photos .list-wrapper ul li:hover .all, #navbar nav > .menu-item .mega-container.mega-list-photos .list-wrapper ul li.active .all {
  opacity: 1;
}

#navbar nav > .menu-item .mega-container.mega-list-photos .list-photos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0 0 3em;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#navbar nav > .menu-item .mega-container.mega-list-photos .list-photos > div {
  width: 30%;
  cursor: pointer;
}

#navbar nav > .menu-item .mega-container.mega-list-photos .list-photos > div img {
  max-width: 100%;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#navbar nav > .menu-item .mega-container.mega-list-photos .list-photos .single-photo {
  position: relative;
  overflow: hidden;
}

#navbar nav > .menu-item .mega-container.mega-list-photos .list-photos .single-photo::before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  content: '';
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  pointer-events: 0;
  z-index: 1;
}

#navbar nav > .menu-item .mega-container.mega-list-photos .list-photos .single-photo .photo-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1em;
  font-size: 1.6em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  z-index: 2;
  font-weight: bold;
  text-shadow: 0 0 0.3rem rgba(255, 255, 255, 0.3);
}

#navbar nav > .menu-item .mega-container.mega-list-photos .list-photos .single-photo:hover::before {
  opacity: 1;
}

#navbar nav > .menu-item .mega-container.mega-list-photos .list-photos .single-photo:hover .photo-title {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

#navbar nav > .menu-item .mega-container.mega-list-photos .list-photos .single-photo:hover img {
  z-index: 0;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#navbar nav > .menu-item .mega-container.flyout-list {
  padding: 0;
  width: auto;
}

#navbar nav > .menu-item .mega-container.flyout-list .list-wrapper {
  padding: 0em;
  list-style: none;
  margin: 0;
}

#navbar nav > .menu-item .mega-container.flyout-list .list-wrapper li {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#navbar nav > .menu-item .mega-container.flyout-list .list-wrapper li:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

#navbar nav > .menu-item .mega-container.flyout-list .list-wrapper li a {
  padding: 1em;
  display: block;
  white-space: nowrap;
}

#navbar .header-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#navbar .header-icons .cart-count-min {
  display: none;
}

#navbar .header-icons > a:not(:first-child) {
  position: relative;
}

#navbar .header-icons > a:not(:first-child)::before {
  height: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  width: 1px;
  position: absolute;
  left: 0em;
  content: '';
  top: 25%;
}

#navbar .header-icons > a,
#navbar .header-icons > i {
  padding: 1em;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 1.5rem;
  display: block;
  color: white;
}

#navbar .header-icons > a:hover,
#navbar .header-icons > i:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* -------------------------------------------------------------------------- */
/*                              Site wide notice                              */
/* -------------------------------------------------------------------------- */
#site-wide-notice {
  width: 100%;
  background-color: #ffeca0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  font-size: 14px;
  padding: 1em;
}

#site-wide-notice[data-display='hidden'] {
  display: none;
}

#site-wide-notice > div {
  width: var(--site-width);
}

#site-wide-notice .close {
  font-size: 25px;
  cursor: pointer;
}

/* -------------------------------------------------------------------------- */
/*                                 GDPR NOTICE                                */
/* -------------------------------------------------------------------------- */
#gdpr-notice {
  width: 380px;
  border-radius: 10px;
  background-color: white;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(white));
  background-image: linear-gradient(to bottom, #fff, white);
  position: fixed;
  bottom: 2em;
  left: 1.2em;
  padding: 2em;
  -webkit-box-shadow: 0 10px 29px 0 rgba(126, 136, 172, 0.44);
          box-shadow: 0 10px 29px 0 rgba(126, 136, 172, 0.44);
  font-size: 1.1em;
  overflow: hidden;
  z-index: 20;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#gdpr-notice.hide {
  -webkit-transform: translateY(110%);
          transform: translateY(110%);
}

#gdpr-notice .cookie-icon {
  font-size: 10em;
  color: #8c8c8c;
  text-align: center;
  opacity: 0.1;
  -webkit-transform: translate(-20%, -20%);
          transform: translate(-20%, -20%);
  position: absolute;
  top: 0;
  left: 0;
}

#gdpr-notice .consent-text {
  padding: 1.5em;
}

#gdpr-notice .consent-text h2 {
  font-weight: 700;
  margin: 0 0 1em 0;
  text-align: center;
}

#gdpr-notice .consent-text p {
  font-size: 1.2em;
  line-height: 1.8;
}

#gdpr-notice .agree,
#gdpr-notice .privacy-policy-page {
  padding: 1em 0;
  border-radius: 3em;
  margin: 1em auto;
  display: block;
  text-align: center;
  width: 100%;
  background-color: #a6a6a6;
  color: #fff;
  font-weight: 700;
  font-size: 1.2em;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

#gdpr-notice .agree:hover,
#gdpr-notice .privacy-policy-page:hover {
  background-color: #bfbfbf;
}

#gdpr-notice .privacy-policy-page {
  background-color: #bfbfbf;
}

#gdpr-notice .privacy-policy-page:hover {
  background-color: #d9d9d9;
}

#show-gdpr {
  position: fixed;
  bottom: 0;
  left: 2em;
  line-height: 1.5;
  background-color: #d9d9d9;
  border-radius: 3px 3px 0 0;
  font-size: 1.1em;
  padding: 0.7em 2em;
  cursor: pointer;
  font-weight: bold;
  -webkit-transition: all 0.3s ease-in-out 0.3s;
  transition: all 0.3s ease-in-out 0.3s;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: 0 0 0.4em 0em #7d7d7d;
          box-shadow: 0 0 0.4em 0em #7d7d7d;
  z-index: 1;
}

#show-gdpr.hide {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#show-gdpr .show-gdpr-icon {
  display: none;
}

/* -------------------------------------------------------------------------- */
/*                                Virtual expo                                */
/* -------------------------------------------------------------------------- */
.virtual-expo-main-image {
  position: relative;
}

.virtual-expo-main-image .kt-btn-wrap {
  position: absolute;
  top: 17%;
}

.virtual-expo-main-image .kt-btn-wrap a {
  font-family: serif;
  height: 1.4em;
  width: 1.4em;
  line-height: 1;
  font-size: 1.6em !important;
}

.virtual-expo-main-image .kt-btn-wrap.kt-btn-wrap-0 {
  left: 21%;
}

.virtual-expo-main-image .kt-btn-wrap.kt-btn-wrap-1 {
  left: 37%;
}

.virtual-expo-main-image .kt-btn-wrap.kt-btn-wrap-2 {
  left: 63%;
}

.virtual-expo-main-image .kt-btn-wrap.kt-btn-wrap-3 {
  left: 78%;
}

/* -------------------------------------------------------------------------- */
/*                                Dealers page                                */
/* -------------------------------------------------------------------------- */
#dealers-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
}

#dealers-container section h3 {
  margin-bottom: 0;
}

#dealers-container section > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.2em;
}

#dealers-container section > div .icon {
  width: 4em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.3em;
}

#dealers-container section > div .text {
  font-size: 1.4em;
}

/* -------------------------------------------------------------------------- */
/*                             Forms general style                            */
/* -------------------------------------------------------------------------- */
.frontend-form input,
.frontend-form select,
.frontend-form textarea {
  font-size: 1em;
}

.frontend-form label.required::after {
  color: #d00;
  content: '∗';
  position: absolute;
  margin-left: 3px;
  font-size: 1.2em;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}

.frontend-form .form-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 1em;
}

.frontend-form .form-check .form-check-input {
  position: relative;
  margin: 0 1em 0 0;
}

.frontend-form [type='submit'] {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  background-color: #8c8c8c;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 1em;
  padding: 0.5em 2.5em;
  opacity: 0.8;
  color: white;
  border-radius: 2px;
  margin-top: 1em;
  border: 0px solid;
  cursor: pointer;
  padding: 0.5em 3em;
  font-size: 1.3em;
  letter-spacing: 0.1em;
}

.frontend-form [type='submit']:hover {
  opacity: 1;
}

.frontend-form [type='submit'][disabled] {
  -webkit-transition: all 0s;
  transition: all 0s;
  cursor: not-allowed;
  opacity: 0.5;
}

.frontend-form [type='submit'][disabled]:hover {
  opacity: 0.5;
}

main.new-dealer-form,
main.free-emu-form {
  font-size: 1.3em;
}

/* -------------------------------------------------------------------------- */
/*                                Careers page                                */
/* -------------------------------------------------------------------------- */
body.careers .careers-values-slider .kadence-blocks-gallery-item .kadence-blocks-gallery-item-inner .kadence-blocks-gallery-item__caption {
  opacity: 1;
  background: rgba(0, 0, 0, 0.5);
}

body.careers .careers-values-slider .kadence-blocks-gallery-item .kb-gallery-image-contain img {
  opacity: 0.7;
}

/* -------------------------------------------------------------------------- */
/*                                   Various                                  */
/* -------------------------------------------------------------------------- */
.gform_wrapper input[type='button'],
.gform_wrapper input[type='submit'] {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  background-color: #8c8c8c;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 1em;
  padding: 0.5em 2.5em;
  opacity: 0.8;
  color: white;
  border-radius: 2px;
  margin-top: 1em;
  border: 0px solid;
  cursor: pointer;
}

.gform_wrapper input[type='button']:hover,
.gform_wrapper input[type='submit']:hover {
  opacity: 1;
}

/* footer */
footer {
  margin-top: 15rem;
  -webkit-box-shadow: 0 0 10em 0 #d9d9d9;
          box-shadow: 0 0 10em 0 #d9d9d9;
}

footer .footer-separator {
  background-color: #d9d9d9;
  position: relative;
  height: 4em;
  width: 100%;
}

footer .footer-separator::after {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-50%, -40%) rotate(45deg);
          transform: translate(-50%, -40%) rotate(45deg);
  background-color: #d9d9d9;
  height: 1em;
  width: 1em;
  content: '';
  -webkit-box-shadow: 1em -1em 0 0 #d9d9d9, 2em -2em 0 0 #d9d9d9, 3em -3em 0 0 #d9d9d9, 4em -4em 0 0 #d9d9d9, 5em -5em 0 0 #d9d9d9, 6em -6em 0 0 #d9d9d9, 7em -7em 0 0 #d9d9d9, 8em -8em 0 0 #d9d9d9, 9em -9em 0 0 #d9d9d9, 10em -10em 0 0 #d9d9d9, 11em -11em 0 0 #d9d9d9, 12em -12em 0 0 #d9d9d9, 13em -13em 0 0 #d9d9d9, 14em -14em 0 0 #d9d9d9, 15em -15em 0 0 #d9d9d9, 16em -16em 0 0 #d9d9d9, 17em -17em 0 0 #d9d9d9, 18em -18em 0 0 #d9d9d9, 19em -19em 0 0 #d9d9d9, 20em -20em 0 0 #d9d9d9, 21em -21em 0 0 #d9d9d9, 22em -22em 0 0 #d9d9d9, 23em -23em 0 0 #d9d9d9, 24em -24em 0 0 #d9d9d9, 25em -25em 0 0 #d9d9d9, 26em -26em 0 0 #d9d9d9, 27em -27em 0 0 #d9d9d9, 28em -28em 0 0 #d9d9d9, 29em -29em 0 0 #d9d9d9, 30em -30em 0 0 #d9d9d9, 31em -31em 0 0 #d9d9d9, 32em -32em 0 0 #d9d9d9, 33em -33em 0 0 #d9d9d9, 34em -34em 0 0 #d9d9d9, 35em -35em 0 0 #d9d9d9, 36em -36em 0 0 #d9d9d9, 37em -37em 0 0 #d9d9d9, 38em -38em 0 0 #d9d9d9, 39em -39em 0 0 #d9d9d9, 40em -40em 0 0 #d9d9d9, 41em -41em 0 0 #d9d9d9, 42em -42em 0 0 #d9d9d9, 43em -43em 0 0 #d9d9d9, 44em -44em 0 0 #d9d9d9, 45em -45em 0 0 #d9d9d9, 46em -46em 0 0 #d9d9d9, 47em -47em 0 0 #d9d9d9, 48em -48em 0 0 #d9d9d9, 49em -49em 0 0 #d9d9d9, 50em -50em 0 0 #d9d9d9, 51em -51em 0 0 #d9d9d9, 52em -52em 0 0 #d9d9d9, 53em -53em 0 0 #d9d9d9, 54em -54em 0 0 #d9d9d9, 55em -55em 0 0 #d9d9d9, 56em -56em 0 0 #d9d9d9, 57em -57em 0 0 #d9d9d9, 58em -58em 0 0 #d9d9d9, 59em -59em 0 0 #d9d9d9, 60em -60em 0 0 #d9d9d9, 61em -61em 0 0 #d9d9d9, 62em -62em 0 0 #d9d9d9, 63em -63em 0 0 #d9d9d9, 64em -64em 0 0 #d9d9d9, 65em -65em 0 0 #d9d9d9, 66em -66em 0 0 #d9d9d9, 67em -67em 0 0 #d9d9d9, 68em -68em 0 0 #d9d9d9, 69em -69em 0 0 #d9d9d9, 70em -70em 0 0 #d9d9d9, 71em -71em 0 0 #d9d9d9, 72em -72em 0 0 #d9d9d9, 73em -73em 0 0 #d9d9d9, 74em -74em 0 0 #d9d9d9, 75em -75em 0 0 #d9d9d9, 76em -76em 0 0 #d9d9d9, 77em -77em 0 0 #d9d9d9, 78em -78em 0 0 #d9d9d9, 79em -79em 0 0 #d9d9d9, 80em -80em 0 0 #d9d9d9, 81em -81em 0 0 #d9d9d9, 82em -82em 0 0 #d9d9d9, 83em -83em 0 0 #d9d9d9, 84em -84em 0 0 #d9d9d9, 85em -85em 0 0 #d9d9d9, 86em -86em 0 0 #d9d9d9, 87em -87em 0 0 #d9d9d9, 88em -88em 0 0 #d9d9d9, 89em -89em 0 0 #d9d9d9, 90em -90em 0 0 #d9d9d9, 91em -91em 0 0 #d9d9d9, 92em -92em 0 0 #d9d9d9, 93em -93em 0 0 #d9d9d9, 94em -94em 0 0 #d9d9d9, 95em -95em 0 0 #d9d9d9, 96em -96em 0 0 #d9d9d9, 97em -97em 0 0 #d9d9d9, 98em -98em 0 0 #d9d9d9, 99em -99em 0 0 #d9d9d9;
          box-shadow: 1em -1em 0 0 #d9d9d9, 2em -2em 0 0 #d9d9d9, 3em -3em 0 0 #d9d9d9, 4em -4em 0 0 #d9d9d9, 5em -5em 0 0 #d9d9d9, 6em -6em 0 0 #d9d9d9, 7em -7em 0 0 #d9d9d9, 8em -8em 0 0 #d9d9d9, 9em -9em 0 0 #d9d9d9, 10em -10em 0 0 #d9d9d9, 11em -11em 0 0 #d9d9d9, 12em -12em 0 0 #d9d9d9, 13em -13em 0 0 #d9d9d9, 14em -14em 0 0 #d9d9d9, 15em -15em 0 0 #d9d9d9, 16em -16em 0 0 #d9d9d9, 17em -17em 0 0 #d9d9d9, 18em -18em 0 0 #d9d9d9, 19em -19em 0 0 #d9d9d9, 20em -20em 0 0 #d9d9d9, 21em -21em 0 0 #d9d9d9, 22em -22em 0 0 #d9d9d9, 23em -23em 0 0 #d9d9d9, 24em -24em 0 0 #d9d9d9, 25em -25em 0 0 #d9d9d9, 26em -26em 0 0 #d9d9d9, 27em -27em 0 0 #d9d9d9, 28em -28em 0 0 #d9d9d9, 29em -29em 0 0 #d9d9d9, 30em -30em 0 0 #d9d9d9, 31em -31em 0 0 #d9d9d9, 32em -32em 0 0 #d9d9d9, 33em -33em 0 0 #d9d9d9, 34em -34em 0 0 #d9d9d9, 35em -35em 0 0 #d9d9d9, 36em -36em 0 0 #d9d9d9, 37em -37em 0 0 #d9d9d9, 38em -38em 0 0 #d9d9d9, 39em -39em 0 0 #d9d9d9, 40em -40em 0 0 #d9d9d9, 41em -41em 0 0 #d9d9d9, 42em -42em 0 0 #d9d9d9, 43em -43em 0 0 #d9d9d9, 44em -44em 0 0 #d9d9d9, 45em -45em 0 0 #d9d9d9, 46em -46em 0 0 #d9d9d9, 47em -47em 0 0 #d9d9d9, 48em -48em 0 0 #d9d9d9, 49em -49em 0 0 #d9d9d9, 50em -50em 0 0 #d9d9d9, 51em -51em 0 0 #d9d9d9, 52em -52em 0 0 #d9d9d9, 53em -53em 0 0 #d9d9d9, 54em -54em 0 0 #d9d9d9, 55em -55em 0 0 #d9d9d9, 56em -56em 0 0 #d9d9d9, 57em -57em 0 0 #d9d9d9, 58em -58em 0 0 #d9d9d9, 59em -59em 0 0 #d9d9d9, 60em -60em 0 0 #d9d9d9, 61em -61em 0 0 #d9d9d9, 62em -62em 0 0 #d9d9d9, 63em -63em 0 0 #d9d9d9, 64em -64em 0 0 #d9d9d9, 65em -65em 0 0 #d9d9d9, 66em -66em 0 0 #d9d9d9, 67em -67em 0 0 #d9d9d9, 68em -68em 0 0 #d9d9d9, 69em -69em 0 0 #d9d9d9, 70em -70em 0 0 #d9d9d9, 71em -71em 0 0 #d9d9d9, 72em -72em 0 0 #d9d9d9, 73em -73em 0 0 #d9d9d9, 74em -74em 0 0 #d9d9d9, 75em -75em 0 0 #d9d9d9, 76em -76em 0 0 #d9d9d9, 77em -77em 0 0 #d9d9d9, 78em -78em 0 0 #d9d9d9, 79em -79em 0 0 #d9d9d9, 80em -80em 0 0 #d9d9d9, 81em -81em 0 0 #d9d9d9, 82em -82em 0 0 #d9d9d9, 83em -83em 0 0 #d9d9d9, 84em -84em 0 0 #d9d9d9, 85em -85em 0 0 #d9d9d9, 86em -86em 0 0 #d9d9d9, 87em -87em 0 0 #d9d9d9, 88em -88em 0 0 #d9d9d9, 89em -89em 0 0 #d9d9d9, 90em -90em 0 0 #d9d9d9, 91em -91em 0 0 #d9d9d9, 92em -92em 0 0 #d9d9d9, 93em -93em 0 0 #d9d9d9, 94em -94em 0 0 #d9d9d9, 95em -95em 0 0 #d9d9d9, 96em -96em 0 0 #d9d9d9, 97em -97em 0 0 #d9d9d9, 98em -98em 0 0 #d9d9d9, 99em -99em 0 0 #d9d9d9;
}

footer .footer-inner {
  background-color: #d9d9d9;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 20rem;
  padding: 4em 4em 1em 4em;
}

footer .logo {
  padding: 0;
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 0.2em;
}

footer .logo span {
  color: #15a6df;
}

footer a {
  padding: 0.5em 0;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-bottom: 1px dashed transparent;
  text-decoration: none;
  color: inherit;
}

footer a:hover {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
}

footer .top-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 4em;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer .top-footer section {
  font-size: 1rem;
}

footer .top-footer section h3 {
  font-size: 1.5em;
  margin: 0 0 0.5em 0;
  padding-bottom: 0.5em;
  font-weight: bold;
}

footer .top-footer section .list {
  margin: 0;
  padding: 0;
}

footer .top-footer section .list li {
  list-style: none;
}

footer .top-footer section .list a {
  display: block;
  font-size: 1.3em;
  border-bottom: 1px dashed transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

footer .top-footer section .list a:hover {
  border-bottom: 1px dashed white;
}

footer .top-footer section.contact div {
  font-size: 1.3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 1.2em 0;
}

footer .top-footer section.contact div .icon {
  width: 4em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.3em;
}

footer .bottom-footer {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1em 50px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1.2em;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

footer .bottom-footer .footer-links a {
  margin: 0 1em;
}

footer .bottom-footer .social-network a {
  padding: 0.5em;
  width: 2em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0.2em;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 0.2em;
}

footer .bottom-footer .social-network a:hover {
  border-bottom: 1px solid transparent;
  color: white;
}

footer .bottom-footer .social-network a:hover.facebook {
  background-color: #1877f2;
}

footer .bottom-footer .social-network a:hover.twitter {
  background-color: #1da1f2;
}

footer .bottom-footer .social-network a:hover.instagram {
  background-color: #c32aa3;
}

footer .bottom-footer .social-network a:hover.youtube {
  background-color: #ff0000;
}

footer .bottom-footer .social-network a:hover.pintrest {
  background-color: #bd081c;
}

footer .bottom-footer .social-network a:hover.linkedin {
  background-color: #0e76a8;
}

footer .bottom-footer .location-change {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .bottom-footer .location-change #change-location-form {
  margin-left: 15px;
}

footer .copyright-footer {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1em 0 0 0;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

#redirect-message {
  position: fixed;
  height: 100%;
  width: 100%;
  background-color: rgba(140, 140, 140, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 25;
  top: 0;
  left: 0;
}

#redirect-message.hide {
  display: none;
}

#redirect-message .message-wrapper {
  background-color: white;
  padding: 4em;
  border-radius: 3px;
  -webkit-box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12);
          box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12);
  max-width: 70rem;
}

#redirect-message .message-wrapper .message {
  font-size: 1.5em;
  padding-bottom: 2em;
  line-height: 2;
}

#redirect-message .message-wrapper .message-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1.3em;
}

#redirect-message .message-wrapper .message-options .stay-button,
#redirect-message .message-wrapper .message-options .redirect-button {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  background-color: #8c8c8c;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 1em;
  padding: 0.5em 2.5em;
  opacity: 0.8;
  color: white;
  border-radius: 2px;
  margin-top: 1em;
  border: 0px solid;
  cursor: pointer;
  display: inline-block;
  width: 48%;
  padding: 0.5em 1em;
  text-align: center;
}

#redirect-message .message-wrapper .message-options .stay-button:hover,
#redirect-message .message-wrapper .message-options .redirect-button:hover {
  opacity: 1;
}

#redirect-message .message-wrapper .message-options .redirect-button {
  background-color: #404040;
}

#search-form {
  background-color: #4f515c;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0.3em 1em;
  font-size: 1.5em;
  color: white;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: -webkit-transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

#search-form.show-search {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

#search-form input {
  width: 100%;
  height: 100%;
  border: 0px solid;
  background-color: transparent;
  color: inherit;
}

#search-form input::-webkit-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: inherit;
  opacity: 0.5;
  /* Firefox */
}

#search-form input:-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: inherit;
  opacity: 0.5;
  /* Firefox */
}

#search-form input::-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: inherit;
  opacity: 0.5;
  /* Firefox */
}

#search-form input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: inherit;
  opacity: 0.5;
  /* Firefox */
}

#search-form input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: inherit;
  opacity: 0.5;
}

#search-form input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: inherit;
  opacity: 0.5;
}

#search-form .close-search {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2em;
  padding: 0 0.4em;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.7;
}

#search-form .close-search:hover {
  opacity: 1;
}

/* -------------------------------------------------------------------------- */
/*                              Google translate                              */
/* -------------------------------------------------------------------------- */
#goog-gt-tt {
  display: none !important;
}

.goog-te-banner-frame {
  display: none !important;
}

.goog-te-menu-value:hover {
  text-decoration: none !important;
}

.goog-text-highlight {
  background-color: transparent !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

#google_translate_element {
  display: none !important;
}

/*------------------------------------*\
    MISC
\*------------------------------------*/
::-moz-selection {
  background: #04a4cc;
  color: #fff;
  text-shadow: none;
}
::selection {
  background: #04a4cc;
  color: #fff;
  text-shadow: none;
}

::-webkit-selection {
  background: #04a4cc;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #04a4cc;
  color: #fff;
  text-shadow: none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/
.alignnone {
  margin: 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
  text-align: center;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption .wp-caption-text,
.gallery-caption {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/*------------------------------------*\
    PRINT
\*------------------------------------*/
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^='javascript:']:after,
  a[href^='#']:after {
    content: '';
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}

/*------------------------------------*\
    Keyframes
\*------------------------------------*/
@-webkit-keyframes anime {
  from {
    opacity: 0;
    -webkit-transform: translateY(5%);
            transform: translateY(5%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@keyframes anime {
  from {
    opacity: 0;
    -webkit-transform: translateY(5%);
            transform: translateY(5%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

/* -------------------------------------------------------------------------- */
/*                                    Fonts                                   */
/* -------------------------------------------------------------------------- */
.ubuntu {
  font-family: Ubuntu;
}

/* -------------------------------------------------------------------------- */
/*                                 Responsive                                 */
/* -------------------------------------------------------------------------- */
@media only screen and (max-width: 768px) {
  html {
    font-size: 8px;
  }
  #gdpr-notice {
    max-height: 90vh;
    font-size: 0.8em;
    max-width: 90vw;
  }
  #go-to-top.show {
    bottom: 1rem;
    font-size: 1.2em;
    right: 2rem;
  }
  #fc_frame.fc-widget-small {
    bottom: 60px !important;
  }
  #show-gdpr {
    left: 2rem;
    right: initial;
    bottom: 1rem;
    -webkit-box-shadow: initial;
            box-shadow: initial;
    background-color: #a6a6a6;
    color: white;
    font-size: 1.2em;
    padding: 0.5em 1em;
  }
  #show-gdpr .show-gdpr-icon {
    display: block;
  }
  #show-gdpr .show-gdpr-text {
    display: none;
  }
  #wrapper header {
    margin-bottom: 5rem;
  }
  #wrapper header #navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    z-index: 5;
  }
  #wrapper header #navbar.show {
    height: 100%;
  }
  #wrapper header #navbar.show nav {
    height: 100%;
  }
  #wrapper header #navbar.show .resposnive-icon .fa-bars {
    display: none;
  }
  #wrapper header #navbar.show .resposnive-icon .fa-times {
    display: block;
  }
  #wrapper header #navbar .logo {
    padding: 1em;
    margin-right: auto;
    font-size: 1.9rem;
  }
  #wrapper header #navbar .resposnive-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #wrapper header #navbar .resposnive-icon .fa-bars {
    display: block;
  }
  #wrapper header #navbar nav {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    width: 100%;
    height: 0;
    overflow: auto;
    display: block;
  }
  #wrapper header #navbar nav > .menu-item.menu-item-has-children .title-container .toggle-arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #wrapper header #navbar nav > .menu-item.menu-item-has-children .title-container.show .toggle-arrow {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  #wrapper header #navbar nav > .menu-item.menu-item-has-children .title-container.show + .mega-container {
    height: initial;
  }
  #wrapper header #navbar nav > .menu-item.menu-item-has-children .mega-container {
    position: relative;
    display: block;
    height: 0;
    overflow: hidden;
    min-height: 0;
  }
  #wrapper header #navbar nav > .menu-item.menu-item-has-children .mega-container.flyout-list .list-wrapper {
    width: 100%;
  }
  #wrapper header #navbar nav > .menu-item.menu-item-has-children .mega-container.mega-list {
    padding: 0;
  }
  #wrapper header #navbar nav > .menu-item.menu-item-has-children .mega-container.mega-list .mega-inner {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    grid-gap: 0.5em;
    padding: 1em;
  }
  #wrapper header #navbar nav > .menu-item.menu-item-has-children:hover .title + .mega-container {
    -webkit-animation: initial;
            animation: initial;
  }
  #wrapper header #navbar form {
    height: 50px;
  }
  #wrapper header #navbar .header-icons .cart-count-min {
    display: block;
    position: absolute;
    top: 5px;
    right: 6px;
    border-radius: 50%;
    background-color: #8c8c8c;
    width: 1.5em;
    height: 1.5em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 0.8em;
  }
  #wrapper header #navbar .header-icons .cart-count-full,
  #wrapper header #navbar .header-icons .cart-total {
    display: none;
  }
  #wrapper header #navbar .header-icons > i,
  #wrapper header #navbar .header-icons > a {
    font-size: 1.8rem;
  }
  #wrapper header #navbar .header-icons > i.fa-search,
  #wrapper header #navbar .header-icons > a.fa-search {
    font-size: 2rem;
  }
  #wrapper header .header-inner-wrapper {
    -webkit-transform: initial;
            transform: initial;
    min-height: 21rem;
    position: relative;
  }
  #wrapper header .header-inner {
    margin-top: 50px;
    min-height: 100%;
    font-size: 0.7rem;
    -webkit-transform: initial;
            transform: initial;
  }
  #wrapper header .header-inner .header-price {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    position: initial;
  }
  #wrapper header .header-inner .woocommerce-breadcrumb {
    font-size: 2em;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  #wrapper header .header-inner .header-banner-image img {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    top: 50%;
  }
  footer .footer-inner {
    padding: 4em 2em 1em 2em;
  }
  footer .top-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .bottom-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .bottom-footer > div {
    margin-bottom: 1em;
  }
  body:not(.home) main {
    padding: 0rem 2rem;
  }
  body.single-product .product-details-top {
    display: block;
    margin-bottom: 3em;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
  }
  body.single-product .product-desc-container {
    padding-top: 0;
  }
  .products {
    display: block !important;
  }
  .woocommerce-page.archive ul.products li.product,
  .woocommerce-page.archive ul.wc-block-grid__products li.product,
  .search.search-results ul.products li.product,
  .search.search-results ul.wc-block-grid__products li.product {
    padding: 2em;
    margin-bottom: 1em;
  }
  .woocommerce-page.archive ul.products li.product h2,
  .woocommerce-page.archive ul.wc-block-grid__products li.product h2,
  .search.search-results ul.products li.product h2,
  .search.search-results ul.wc-block-grid__products li.product h2 {
    font-size: 1.5em;
  }
  .woocommerce-page.archive ul.products li.product .button,
  .woocommerce-page.archive ul.wc-block-grid__products li.product .button,
  .search.search-results ul.products li.product .button,
  .search.search-results ul.wc-block-grid__products li.product .button {
    font-size: 1.1em;
  }
  .woocommerce-page.archive ul.products li.product .product-image-desc .product-image-wrapper img,
  .woocommerce-page.archive ul.wc-block-grid__products li.product .product-image-desc .product-image-wrapper img,
  .search.search-results ul.products li.product .product-image-desc .product-image-wrapper img,
  .search.search-results ul.wc-block-grid__products li.product .product-image-desc .product-image-wrapper img {
    max-height: 150px;
  }
}

@media only screen and (max-width: 480px) {
  html {
    font-size: 10px;
  }
  body.home #wrapper header .header-inner {
    min-height: 18rem;
  }
  .header-inner-wrapper {
    -webkit-transform: initial;
            transform: initial;
    min-height: 16rem;
    position: relative;
  }
  .header-inner-wrapper .header-inner {
    min-height: 100%;
    height: 100%;
  }
}

.ent_subscr .sm-text {
  font-size: 0.8em;
}

.ent_subscr .btn-action {
  font-size: 1em;
  display: block;
  margin: 8px 0;
  padding: .5em 1em;
}

@media only screen and (min-width: 480px) {
  .ent_subscr .btn-action {
    display: inline-block;
    margin-right: 8px;
  }
}

.ent_subscr_license #license_code {
  padding-right: 20px;
}

@media only screen and (min-width: 480px) {
  .ent_subscr_license #license_code {
    font-size: 1.1em;
  }
}

.ent_subscr_license_offline_link {
  display: inline-block;
  color: #007bff;
  border-bottom: #007bff 1px dotted;
  margin-bottom: 16px;
}

.ent_subscr_license_offline_area {
  display: none;
  position: relative;
}

.ent_subscr_license_offline_area.show {
  display: block;
}

.ent_subscr_license_offline_area #offline_copy {
  position: absolute;
  right: 0;
}

.ent_subscr_license_offline_area textarea {
  border-radius: 3px;
  width: 100%;
  display: block;
  padding: 24px 8px 8px 8px;
  border: 1px solid rgba(0, 0, 0, 0.125);
  color: #444;
}

.ent_subscr_license_offline_area textarea:focus {
  outline: none;
}

.ent_subscr_license .btn-sm {
  font-size: 11px;
  position: relative;
}

.ent_subscr_license .btn-sm .tip {
  left: 0;
  top: 30px;
  border-radius: 3px;
  width: 78px;
  padding: 4px;
  color: white;
  position: absolute;
  z-index: 1000;
  background-color: #2c2d33;
  opacity: 0;
}

.ent_subscr_license .btn-sm .tip:before {
  content: '';
  display: block;
  position: absolute;
  top: -3px;
  left: 8px;
  height: 6px;
  width: 6px;
  background-color: #2c2d33;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.ent_subscr_license .btn-sm .tip.tip_show {
  opacity: 1;
}

.ent_subscr_license .callout {
  border-left: 5px solid #0e76a8;
  font-size: .85em;
}

.ent_subscr_license .callout ul {
  padding-left: 20px;
}

.ent_subscr_license_activation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.ent_subscr_license_activation_field {
  display: inline-block;
  width: 100%;
  max-width: 420px;
  margin-right: 8px;
}

.ent_subscr_license_activation_input {
  display: block;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.125);
  padding: .5em 1em;
  width: 100%;
  max-width: 420px;
}

.ent_subscr_license_activation_input.has_error {
  border: 1px solid red;
}

.ent_subscr_license_activation_input.has_error ~ div {
  display: block;
}

.ent_subscr_license_activation_error {
  display: none;
  color: red;
  font-size: .85em;
  margin-top: 4px;
}

.ent_subscr_license_activation .btn-action {
  margin: 8px 0 8px 0;
  display: block !important;
  width: 100%;
}

@media only screen and (min-width: 480px) {
  .ent_subscr_license_activation {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .ent_subscr_license_activation .btn-action {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    margin: 0 0 8px 0 !important;
    width: auto;
  }
}

.ent_subscr .action_links a {
  margin-right: 8px;
}

.ent_subscr .action_links a:last-child {
  margin-right: 0;
}
/*# sourceMappingURL=main-style.css.map */