/*	Variables
*****************************************/
/* Header
========================================*/
/* Colours
========================================*/
.c-primary {
  color: #0099DB; }

.primary-hover:hover {
  color: #0099DB; }

.bg-primary {
  background-color: #0099DB; }

.b-primary {
  border-color: #0099DB; }

.c-secondary {
  color: #0061af; }

.secondary-hover:hover {
  color: #0061af; }

.bg-secondary {
  background-color: #0061af; }

.b-secondary {
  border-color: #0061af; }

.c-third {
  color: #EF0C25; }

.third-hover:hover {
  color: #EF0C25; }

.bg-third {
  background-color: #EF0C25; }

.b-third {
  border-color: #EF0C25; }

.c-forth {
  color: #65008c; }

.forth-hover:hover {
  color: #65008c; }

.bg-forth {
  background-color: #65008c; }

.b-forth {
  border-color: #65008c; }

.c-pink {
  color: #F1007D; }

.pink-hover:hover {
  color: #F1007D; }

.bg-pink {
  background-color: #F1007D; }

.b-pink {
  border-color: #F1007D; }

.c-orange {
  color: #F87228; }

.orange-hover:hover {
  color: #F87228; }

.bg-orange {
  background-color: #F87228; }

.b-orange {
  border-color: #F87228; }

.c-green {
  color: #90C03A; }

.green-hover:hover {
  color: #90C03A; }

.bg-green {
  background-color: #90C03A; }

.b-green {
  border-color: #90C03A; }

.c-light-grey {
  color: #f8f8f8; }

.light-grey-hover:hover {
  color: #f8f8f8; }

.bg-light-grey {
  background-color: #f8f8f8; }

.b-light-grey {
  border-color: #f8f8f8; }

.c-grey {
  color: #D9D7D7; }

.grey-hover:hover {
  color: #D9D7D7; }

.bg-grey {
  background-color: #D9D7D7; }

.b-grey {
  border-color: #D9D7D7; }

.c-dark-grey {
  color: #494948; }

.dark-grey-hover:hover {
  color: #494948; }

.bg-dark-grey {
  background-color: #494948; }

.b-dark-grey {
  border-color: #494948; }

.c-black {
  color: #000000; }

.black-hover:hover {
  color: #000000; }

.bg-black {
  background-color: #000000; }

.b-black {
  border-color: #000000; }

.c-white {
  color: #ffffff; }

.white-hover:hover {
  color: #ffffff; }

.bg-white {
  background-color: #ffffff; }

.b-white {
  border-color: #ffffff; }

/*	Typography
*****************************************************/
/*  font weights   */
/* Letter spacing */
/* Line height */
/* Body font sizes */
/*  Heading sizes */
/*	Mixins
********************************/
/* Scroll visibility
************************************/
/**
 * ----------------------------------------
 * animation pulsate-fwd
 * ----------------------------------------
 */
@-webkit-keyframes pulsate-fwd {
  0% {
    -webkit-transform: translateX(100%) scale(1);
    transform: translateX(100%) scale(1); }
  50% {
    -webkit-transform: translateX(100%) scale(1.05);
    transform: translateX(100%) scale(1.05); }
  100% {
    -webkit-transform: translateX(100%) scale(1);
    transform: translateX(100%) scale(1); } }
@keyframes pulsate-fwd {
  0% {
    -webkit-transform: translateX(100%) scale(1);
    transform: translateX(100%) scale(1); }
  50% {
    -webkit-transform: translateX(100%) scale(1.05);
    transform: translateX(100%) scale(1.05); }
  100% {
    -webkit-transform: translateX(100%) scale(1);
    transform: translateX(100%) scale(1); } }
@-webkit-keyframes lift-up {
  0% {
    top: 0; }
  100% {
    top: -5px; } }
@-webkit-keyframes reverse-lift-up {
  0% {
    top: -5px; }
  100% {
    top: 0; } }
@-webkit-keyframes bounce {
  0% {
    top: 0; }
  25% {
    top: -6px; }
  50% {
    top: 0; }
  75% {
    top: -2px; }
  100% {
    top: 0; } }
@keyframes bounce {
  0% {
    top: 0; }
  25% {
    top: -6px; }
  50% {
    top: 0; }
  75% {
    top: -2px; }
  100% {
    top: 0; } }
@-webkit-keyframes wiggle {
  0% {
    transform: rotate(0deg); }
  25% {
    transform: rotate(10deg); }
  50% {
    transform: rotate(0deg); }
  75% {
    transform: rotate(-10deg); }
  100% {
    transform: rotate(0deg); } }
@keyframes wiggle {
  0% {
    transform: rotate(0deg); }
  25% {
    transform: rotate(10deg); }
  50% {
    transform: rotate(0deg); }
  75% {
    transform: rotate(-10deg); }
  100% {
    transform: rotate(0deg); } }
@media (min-width: 1024px) {
  .module {
    opacity: 0; }

  .grow-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 1s ease 0.5s, transform 1s ease 0.5s, color 0.3s ease, background 0.3s ease; }

  .in-view .grow-in,
  .come-in .grow-in,
  .already-visible .grow-in {
    opacity: 1;
    transform: scale(1); }

  @keyframes FadeIn {
    0% {
      opacity: 0; }
    100% {
      opacity: 1; } }
  .come-in {
    -webkit-animation: FadeIn 0.8s ease-in-out forwards;
    -moz-animation: FadeIn 0.8s ease-in-out forwards;
    animation: FadeIn 0.8s ease-in-out forwards;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: 0.3s;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    opacity: 1; }

  .already-visible {
    opacity: 1; } }
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .module {
    opacity: 1; } }
/* 	Accordions
******************************/
.accordion {
  display: block !important;
  position: relative;
  text-align: left;
  background-color: rgba(214, 227, 248, 0.3);
  padding: 1.2rem 1rem;
  margin-bottom: 1.4rem;
  border: 1px solid #0099DB;
  transition: 0.4s ease-in-out;
  width: 100%;
  font-family: "filson-soft", sans-serif !important;
  color: #0099DB;
  user-select: none;
  font-size: 1.5rem;
  font-weight: 300 !important;
  border-radius: 20px; }
  .accordion > * {
    margin-bottom: 0 !important;
    font-size: 1.3rem; }
  .accordion:before {
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    right: 10px; }

.accordion.active,
.accordion:hover,
.accordion:focus {
  border: 1px solid #0099DB;
  background-color: #0099DB;
  color: #ffffff; }
  .accordion.active:before,
  .accordion:hover:before,
  .accordion:focus:before {
    color: #ffffff; }

.accordion:hover {
  cursor: pointer; }

.accordion-content .panel {
  width: 100%;
  padding: 1.2rem 1rem;
  margin-bottom: 1rem;
  margin-top: -1.4rem; }
  .accordion-content .panel:last-of-type {
    margin-top: -1.2rem;
    margin-bottom: 0; }
  .accordion-content .panel ul {
    list-style: disc !important;
    margin-bottom: 20px; }
  .accordion-content .panel li {
    list-style-position: inside;
    list-style-type: disc !important; }
  .accordion-content .panel p {
    font-family: "filson-soft", sans-serif;
    color: #525151;
    font-size: 1.3rem; }

@media (min-width: 400px) {
  .accordion-content .accordion,
  .accordion-content .panel {
    padding: 1.3rem 2rem; } }
@media (min-width: 688px) {
  .accordion-content .accordion {
    padding: 1.8rem 2.5rem;
    font-size: 1.6rem; }
    .accordion-content .accordion:before {
      right: 20px; }

  .accordion-content .panel {
    width: 100%;
    padding: 2rem 2.5rem; }

  .accordion-content .panel p {
    font-size: 1.6rem; } }
/* Login Form
========================================*/
.woocommerce-form-login input {
  box-sizing: border-box;
  width: 59%;
  border: 1px solid #e6e7e7;
  padding: 5px; }

label.woocommerce-form-login__rememberme {
  width: 100%;
  display: block;
  margin-bottom: 20px;
  cursor: pointer; }

.woocommerce-form-login__rememberme input {
  width: auto;
  padding: 0;
  border: none; }

.woocommerce-form-login__submit {
  width: auto;
  padding: 8px 15px;
  background: #0061af;
  color: #ffffff;
  cursor: pointer; }

.woocommerce-form-login__submit:hover {
  background: #0061af; }

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  outline: 0;
  line-height: normal; }

/* Account Page
===================================================================================*/
/* Style WC Account Endpoint Links */
nav.woocommerce-MyAccount-navigation ul {
  list-style-type: none !important;
  padding-left: 0;
  max-width: 200px;
  font-size: 17px;
  line-height: 26px;
  box-sizing: border-box; }

nav.woocommerce-MyAccount-navigation ul li {
  list-style-type: none !important;
  width: 100%;
  display: block;
  margin-left: 0 !important;
  margin-bottom: 0 !important;
  box-sizing: border-box; }

nav.woocommerce-MyAccount-navigation ul li a {
  background-color: rgba(0, 0, 0, 0.05);
  padding: 8px 20px;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-sizing: border-box; }

nav.woocommerce-MyAccount-navigation ul li.is-active a {
  background-color: rgba(0, 0, 0, 0.1); }

nav.woocommerce-MyAccount-navigation ul li.is-active a {
  color: rgba(0, 0, 0, 0.8);
  cursor: default; }

nav.woocommerce-MyAccount-navigation ul li.is-active:after {
  content: "";
  height: 0;
  width: 0;
  border-top: 21px solid transparent;
  border-left: 14px solid rgba(0, 0, 0, 0.1);
  border-bottom: 21px solid transparent;
  float: right;
  margin-right: -14px;
  margin-top: 1px; }

nav.woocommerce-MyAccount-navigation ul li:not(.is-active) a:hover {
  background-color: rgba(0, 0, 0, 0.07); }

nav.woocommerce-MyAccount-navigation ul li:not(.is-active):hover:after {
  content: "";
  height: 0;
  width: 0;
  border-top: 21px solid transparent;
  border-left: 14px solid rgba(0, 0, 0, 0.07);
  border-bottom: 21px solid transparent;
  float: right;
  margin-right: -14px;
  margin-top: 1px; }

/* Change WC Acct Page Column Widths */
@media only screen and (min-width: 769px) {
  .woocommerce-account .woocommerce-MyAccount-navigation {
    width: 22%; }

  .woocommerce-account .woocommerce-MyAccount-content {
    width: 75%; } }
/* Coupon
============================================================================================*/
.woocommerce-cart .woocommerce #content table.cart td.actions .coupon,
.woocommerce-cart .woocommerce table.cart td.actions .coupon {
  width: 100% !important;
  margin-bottom: 20px; }

.woocommerce-cart .woocommerce table.cart td.actions .coupon .input-text {
  padding: 8px 6px 7px !important;
  width: 50% !important; }

.woocommerce-cart .woocommerce table.shop_table td.actions {
  border-bottom: none !important;
  padding-top: 40px !important; }

@media only screen and (min-width: 769px) {
  .woocommerce-cart .woocommerce #content table.cart td.actions .coupon,
  .woocommerce-cart .woocommerce table.cart td.actions .coupon {
    width: 50% !important;
    margin-bottom: 0; } }
@media only screen and (min-width: 980px) {
  #add_payment_method table.cart td.actions .coupon .input-text,
  .woocommerce-cart table.cart td.actions .coupon .input-text,
  .woocommerce-checkout table.cart td.actions .coupon .input-text {
    width: 48% !important; } }
/* Form fields
========================================*/
.woocommerce {
  font-size: 16px; }

.shop_table input:not([type=radio]),
.cart_totals input:not([type=radio]),
.woocommerce-MyAccount-content input:not([type=radio]),
form.woocommerce-checkout input:not([type=radio]),
.form-input {
  font-family: "filson-soft", sans-serif;
  font-weight: 400;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #FFF;
  background-image: none;
  border: .05rem solid #BCC3CE;
  border-radius: .1rem;
  color: #000000;
  font-size: 1.4rem;
  line-height: 1.2rem;
  max-width: 100%;
  outline: none;
  padding: .9rem .5rem !important;
  position: relative;
  transition: background .2s, border .2s, box-shadow .2s, color .2s;
  width: 100%; }
  .shop_table input:not([type=radio])::placeholder,
  .cart_totals input:not([type=radio])::placeholder,
  .woocommerce-MyAccount-content input:not([type=radio])::placeholder,
  form.woocommerce-checkout input:not([type=radio])::placeholder,
  .form-input::placeholder {
    color: #989898;
    font-weight: 300; }

.shop_table input:focus,
.cart_totals input:focus,
.woocommerce-MyAccount-content input:focus,
form.woocommerce-checkout input:focus,
.form-input:focus {
  border-color: #0061af;
  box-shadow: 0 0 0 0.1rem rgba(87, 85, 217, 0.2); }

input.shipping_method {
  width: auto !important;
  display: inline-block !important; }

form.woocommerce-checkout select {
  font-family: "filson-soft", sans-serif;
  font-weight: 400;
  background: #fff;
  border: 1px solid #e6e7e7;
  border-radius: 3px;
  color: #000000;
  font-size: 1.4rem;
  line-height: 1.4rem;
  max-width: 100%;
  outline: none;
  padding: 6px 10px;
  width: 100%;
  box-sizing: border-box; }

form.woocommerce-checkout .form-row .input-checkbox {
  width: 20px !important; }

form.woocommerce-checkout .form-row-first,
form.woocommerce-checkout .form-row-last {
  width: 49% !important; }

.woocommerce-MyAccount-content .form-row input.input-text,
.woocommerce-MyAccount-content .form-row textarea,
form.woocommerce-checkout .form-row input.input-text,
form.woocommerce-checkout .form-row textarea {
  max-width: 100% !important; }

.woocommerce .select2-container--default .select2-selection--single {
  border-radius: 0 !important;
  border: .05rem solid #bcc3ce !important; }

.woocommerce-form-login .form-row {
  float: none !important;
  width: 100% !important; }

.woocommerce form .form-row label,
.woocommerce-page form .form-row label {
  display: block; }

/* Cart icon with item count
========================================*/
.woocommerce-cart h1 {
  margin-bottom: 40px; }

.cart-contents.trolley::before {
  content: "\f07a"; }

.cart-contents.basket::before {
  content: "\f291"; }

.cart-contents:hover::before {
  color: #65008c !important;
  text-decoration: none; }

.cart-contents-count {
  color: #fff;
  position: absolute;
  display: inline-flex;
  background-color: #0061af;
  font-weight: bold;
  border-radius: 50%;
  line-height: 1;
  font-family: "filson-soft", sans-serif;
  justify-content: center;
  text-align: center;
  align-items: center;
  font-size: 8px;
  vertical-align: top;
  margin-left: -7px;
  padding: 0.5em 0.75em;
  aspect-ratio: 1 / 1; }

/* Cart Form / Shop Table
========================================*/
.woocommerce-cart .woocommerce table.shop_table {
  border-radius: 5px !important;
  background: #ffffff; }

.woocommerce-cart h1 {
  margin-bottom: 40px; }

.woocommerce-cart .woocommerce table.shop_table {
  margin-top: 60px;
  text-align: left !important;
  width: 100% !important;
  border-collapse: collapse !important;
  padding: 20px;
  background: #ffffff; }

.woocommerce button[name="update_cart"] {
  float: right !important; }

.woocommerce-cart .woocommerce table.shop_table th {
  border: none !important;
  border-top: none !important;
  border-bottom: 1px solid #e6e6e6 !important;
  padding: 20px 15px !important;
  text-align: left !important; }

.woocommerce-cart .woocommerce table.shop_table td {
  border: none !important;
  border-bottom: 1px solid #e6e6e6 !important;
  padding: 15px !important;
  text-align: right !important;
  margin-bottom: 0 !important; }

.woocommerce-cart .woocommerce table.shop_table .product-remove {
  padding-top: 40px !important;
  text-align: right !important; }

.woocommerce-cart .woocommerce table.shop_table tbody tr:first-child > .product-remove {
  padding-top: 15px !important; }

.woocommerce a.remove {
  display: inline-block !important; }

.woocommerce-cart .woocommerce td.product-name dl.variation dt {
  float: left !important;
  margin-right: 10px !important;
  margin-bottom: 0 !important; }

.woocommerce-cart .woocommerce td.product-name dd {
  margin-bottom: 0 !important; }

.woocommerce-cart .woocommerce a.remove {
  margin: 0 auto !important; }

.woocommerce-cart .woocommerce table.shop_table_responsive tr:nth-child(2n) td, .woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
  background-color: transparent !important; }

.woocommerce .cart-collaterals .cross-sells, .woocommerce-page .cart-collaterals .cross-sells {
  width: 100% !important;
  margin-top: 40px; }
  .woocommerce .cart-collaterals .cross-sells ul.columns-4 li.product, .woocommerce-page .cart-collaterals .cross-sells ul.columns-4 li.product {
    width: 22.05% !important; }
  .woocommerce .cart-collaterals .cross-sells ul.columns-3 li.product, .woocommerce-page .cart-collaterals .cross-sells ul.columns-3 li.product {
    width: 30.75% !important; }

/* Cart totals
========================================*/
.cart_totals tr th,
table.cart th,
table.shop_table th {
  background: none !important;
  color: #0061af !important;
  font-size: 14px !important;
  font-size: 1.4rem !important; }

.cart_totals tr td,
table.cart td,
table.shop_table td {
  color: #555 !important;
  font-size: 16px !important;
  font-size: 1.6rem !important; }

.cart_totals tr th,
table.shop_table th {
  text-align: right !important;
  padding: 10px 20px !important; }

/* Cart Collaterals (under woocommerce-cart-form)
========================================*/
.woocommerce-cart .woocommerce .cart-collaterals h2 {
  font-size: 3.4rem;
  padding-left: 10px;
  margin-bottom: 30px; }

.woocommerce-cart .woocommerce .cart-collaterals .cart_totals {
  width: 100%;
  margin-top: 40px;
  box-sizing: border-box !important; }

.woocommerce-cart .woocommerce .cart-collaterals table.shop_table {
  box-shadow: none !important;
  border-radius: none !important;
  padding: 0 !important; }

.woocommerce-cart .woocommerce .cart-collaterals table.shop_table th {
  border-top: none !important;
  border-bottom: 1px solid #e6e6e6 !important;
  text-align: left !important; }

.woocommerce-cart .woocommerce .cart-collaterals table.shop_table td {
  border-top: none !important;
  border-bottom: 1px solid #e6e6e6 !important;
  text-align: right !important; }

.woocommerce-cart .woocommerce .cart-collaterals table.shop_table .recurring-totals th {
  font-size: 2rem !important; }

@media (min-width: 769px) {
  .woocommerce-cart .woocommerce .cart-collaterals .cross-sells {
    width: 48% !important;
    float: left; }

  .woocommerce-cart .woocommerce .cart-collaterals .cart_totals {
    width: 47% !important;
    float: right; }

  .woocommerce-cart .woocommerce table.shop_table {
    padding: 20px 40px; }

  .woocommerce-cart .woocommerce table.shop_table th {
    text-align: left !important; }

  .woocommerce-cart .woocommerce table.shop_table td {
    vertical-align: top !important;
    text-align: left !important; }

  .woocommerce-cart .woocommerce table.shop_table .product-remove {
    padding-top: 15px !important;
    text-align: left !important; }

  .woocommerce a.remove {
    display: block !important; }

  .woocommerce-cart .woocommerce table.shop_table .product-name {
    min-width: 220px; }

  .woocommerce-cart .woocommerce .cart-collaterals table.shop_table {
    padding: 0 !important; } }
/* Checkout
========================================*/
.woocommerce-checkout h1 {
  margin-bottom: 40px; }

.woocommerce-checkout h3 {
  margin-bottom: 30px; }

.woocommerce .woocommerce-customer-details address {
  margin-top: 2rem; }

.woocommerce-checkout table.shop_table {
  margin-top: 4rem;
  border-right: 0 !important;
  border-bottom: 0 !important;
  border-radius: 0 !important;
  background: #ffffff; }

.woocommerce-checkout table.shop_table td, .woocommerce-checkout table.shop_table th {
  text-align: right;
  border-left: none !important;
  border-top: 0 !important; }

.woocommerce-checkout #add_payment_method #payment ul.payment_methods li,
.woocommerce-checkout #payment ul.payment_methods li {
  list-style: none !important; }

.woocommerce-checkout .woocommerce .col2-set {
  width: 47.8260869565% !important;
  float: left !important;
  margin-right: 4.347826087% !important; }

.woocommerce-checkout .woocommerce .col2-set .col-1,
.woocommerce-checkout .woocommerce .col2-set .col-2 {
  margin-bottom: 2.6em !important;
  width: 100% !important;
  float: none !important; }

.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
  background: none !important;
  width: 47.8260869565% !important;
  float: right !important;
  margin-right: 0 !important; }

.woocommerce-checkout #woocommerce-shipping-fields {
  margin-top: 20px; }

.woocommerce-checkout #ship-to-different-address-checkbox {
  width: auto !important;
  float: right !important;
  margin-left: 15px !important;
  margin-top: 10px !important;
  opacity: 1 !important;
  position: static !important; }

.woocommerce-checkout #ship-to-different-address label {
  font-size: 24px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  margin: 0 !important;
  margin-bottom: 1.5em !important;
  padding: 0 !important;
  color: #000 !important; }

.woocommerce-checkout #billing_country_field {
  margin-top: 40px; }

.woocommerce-checkout #billing_country_field strong {
  font-size: 13px !important;
  font-weight: 400 !important; }

.woocommerce-checkout .woocommerce form .form-row.create-account label {
  padding-top: 2px !important;
  font-weight: bold !important; }

.woocommerce-checkout .payment-fixed {
  position: fixed !important;
  z-index: 9 !important;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 6px 2em !important;
  left: 52% !important;
  margin-left: 0 !important;
  padding: 20px !important;
  top: 0 !important;
  width: 45.5% !important;
  -webkit-transition: padding .1s ease-in;
  -moz-transition: padding .1s ease-in;
  -o-transition: padding .1s ease-in;
  -ms-transition: padding .1s ease-in;
  transition: padding .1s ease-in; }

.product-shipping-message {
  font-size: 16px !important;
  text-align: center !important;
  text-transform: uppercase !important;
  padding: 10px 0px !important;
  border-top: 1px solid #139248 !important;
  border-bottom: 1px solid #139248 !important; }

.woocommerce-checkout .woocommerce input,
.woocommerce-checkout .form-row span textarea {
  border: 1px solid #f1f1f1 !important;
  background: #ffffff !important; }

/* Payment box */
.woocommerce-checkout #payment {
  background: #ffffff;
  border-radius: 0 !important; }

div#ppcp-hosted-fields {
  margin-top: 40px; }
  div#ppcp-hosted-fields button {
    width: 100% !important;
    padding: 1.5rem; }

span#ppcp-credit-card-gateway-card-cvc,
span#ppcp-credit-card-gateway-card-expiry,
span#ppcp-credit-card-gateway-card-number {
  width: 100% !important; }

@media only screen and (min-width: 1600px) {
  .woocommerce-checkout table.shop_table td.product-total {
    width: 250px; } }
@media only screen and (max-width: 980px) {
  .woocommerce-checkout .woocommerce .col2-set {
    width: 100% !important;
    float: none !important;
    margin-right: 0 !important; }

  .woocommerce-checkout #order_review_heading,
  .woocommerce-checkout #order_review {
    width: 100% !important;
    float: none !important; } }
/* Product Gallery
========================================*/
.woocommerce-product-gallery {
  box-sizing: border-box; }

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper img {
  border: 1px dotted #B8B9BC;
  padding: 0.5rem; }

.woocommerce div.product div.images .flex-viewport .woocommerce-product-gallery__wrapper {
  padding: 0 !important;
  border: none !important; }

.woocommerce div.product .stock {
  color: green;
  display: inline-block;
  margin-left: 20px;
  font-size: 1.4rem; }

.entry-summary .product_meta {
  margin-bottom: 2rem; }
  .entry-summary .product_meta span {
    font-weight: 400; }
    .entry-summary .product_meta span span {
      font-weight: 300; }

.single_variation_wrap {
  display: block;
  margin-top: -20px; }
  .single_variation_wrap::after {
    content: "";
    clear: both;
    display: table; }

.woocommerce div.product div.images {
  margin-bottom: 40px !important; }

.woocommerce-product-gallery li {
  border: 1px dotted #B8B9BC; }

.wc-pao-addon-heading {
  display: none !important; }

.single-product .price .from {
  font-weight: 600;
  margin-right: 5px; }

.single-product .woocommerce-Price-amount {
  margin-right: 5px; }

.single-product .woocommerce-Price-amount + .woocommerce-Price-amount {
  margin-right: 0;
  margin-left: 5px; }

.single-product.woocommerce div.product div.images img {
  width: auto;
  max-height: 398px !important; }

/* Single Product thumbnails
========================================*/
.flex-control-thumbs li {
  width: 22% !important;
  margin-right: 4% !important;
  margin-top: 4% !important; }

.flex-control-thumbs li:nth-child(4n) {
  margin-right: 0 !important; }

.single-product .entry-summary h1.product_title {
  margin-bottom: 30px;
  letter-spacing: 0;
  border-bottom: 2px dotted #EF0C25;
  padding-bottom: 0.5em;
  font-family: "filson-soft", sans-serif;
  text-transform: uppercase; }

.entry-summary .woocommerce-product-details__short-description {
  margin-bottom: 30px; }

.woocommerce button.single_add_to_cart_button {
  height: auto !important;
  background-color: #EF0C25 !important;
  border: 1px solid #EF0C25 !important;
  text-transform: uppercase;
  font-family: "filson-soft", sans-serif;
  font-weight: 700 !important;
  width: auto !important; }
  .woocommerce button.single_add_to_cart_button:hover {
    background-color: #f5394e !important;
    border: 1px solid #f5394e !important; }

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }

/* Firefox */
.single-product input[type=number],
.woocommerce.archive .product input[type=number] {
  -moz-appearance: textfield !important; }

/* Chrome, Safari, Edge, Opera */
.woocommerce.archive .product input::-webkit-outer-spin-button,
.woocommerce.archive .product input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }

.woocommerce .quantity input {
  width: 60px !important;
  height: 47.5px !important;
  border: 1px solid #e6e7e7;
  background: none;
  font-weight: 700;
  padding: 0 !important;
  box-sizing: border-box !important; }

.single-product .quantity {
  float: left;
  margin: 0 !important;
  display: inline-block; }

.woocommerce-variation-add-to-cart.variations_button {
  margin-bottom: 6rem; }

.single-product button.minus,
.single-product button.plus {
  width: 40px;
  border: 1px solid #e6e7e7;
  background-color: #D9D7D7;
  color: #494948;
  font-size: 1.8rem;
  font-weight: 500;
  transition: ease 0.25s;
  float: left;
  height: 47.5px;
  cursor: pointer; }
  .single-product button.minus:hover, .single-product button.minus:focus,
  .single-product button.plus:hover,
  .single-product button.plus:focus {
    background-color: #dfdfdf; }

.single-product form.cart button.minus {
  border-right: none; }

.single-product button.plus {
  border-left: none;
  margin-right: 20px; }

div.woocommerce-variation-price,
div.woocommerce-variation-availability,
div.hidden-variable-price {
  position: relative;
  line-height: 0px !important;
  margin-bottom: 30px; }

.woocommerce div.product p.price {
  display: inline-block;
  color: #525151;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1; }

.woocommerce div.product p.price del bdi {
  font-size: 13px; }

.woocommerce div.product p.price .woocommerce-price-suffix span {
  font-size: 13px; }

.woocommerce div.product p.price ins {
  text-decoration: none; }

.single-product .product_meta > span {
  display: block !important; }

.woocommerce #content div.product div.images,
.woocommerce div.product div.images,
.woocommerce-page #content div.product div.images,
.woocommerce-page div.product div.images {
  float: right; }

.entry-summary .woocommerce-Price-amount {
  font-size: 22px;
  font-weight: 700; }

.entry-summary .cart {
  margin-top: 10px; }

@media (min-width: 688px) {
  .entry-summary h1.product_title,
  .single-product .entry-summary h1.product_title {
    font-size: 3rem; }

  .entry-summary .cart {
    width: 100%; }

  .entry-summary .product_meta {
    width: 100%; }

  .woocommerce div.product div.images .woocommerce-product-gallery__wrapper img {
    padding: 1.5rem; }

  .woocommerce:not(.fpd-fullwidth-summary) .entry-summary {
    padding: 20px;
    margin-bottom: 0 !important; }
  .woocommerce:not(.fpd-fullwidth-summary) #content div.product div.summary,
  .woocommerce:not(.fpd-fullwidth-summary) div.product div.summary,
  .woocommerce:not(.fpd-fullwidth-summary) #content div.product div.summary,
  .woocommerce:not(.fpd-fullwidth-summary) div.product div.summary {
    width: 50% !important;
    float: right !important;
    box-sizing: border-box !important;
    padding: 0 !important; }
  .woocommerce:not(.fpd-fullwidth-summary) #content div.product > div.images,
  .woocommerce:not(.fpd-fullwidth-summary) div.product > div.images,
  .woocommerce:not(.fpd-fullwidth-summary) #content div.product > div.images,
  .woocommerce:not(.fpd-fullwidth-summary) div.product > div.images {
    width: 46% !important;
    float: left !important; }

  .single-product.woocommerce div.product div.images .flex-control-thumbs li img {
    margin-left: auto;
    margin-right: auto; } }
@media (min-width: 1024px) {
  .woocommerce:not(.fpd-fullwidth-summary) .entry-summary {
    padding: 40px; }

  .entry-summary h1.product_title,
  .single-product .entry-summary h1.product_title {
    font-size: 3.2rem; }

  .entry-summary .single_add_to_cart_button,
  a.add-request-quote-button {
    padding: 15px 20px !important;
    font-size: 15px !important; }

  .quantity input {
    height: 46px; }

  .single-product .price .from {
    font-size: 1.5rem; }

  .woocommerce div.product div.images .woocommerce-product-gallery__wrapper img {
    padding: 2rem; } }
/* Variations table
======================================== */
.woocommerce div.product form.cart .variations {
  margin-bottom: 3.6rem; }

.woocommerce div.product form.cart .variations td, .woocommerce div.product form.cart .variations th {
  vertical-align: middle; }

.woocommerce div.product form.cart .variations td {
  padding: 0 0 0 20px !important;
  text-align: left; }

.woocommerce div.product form.cart .variations td.label {
  width: 70px; }

.woocommerce div.product form.cart .variations label {
  color: #0099DB;
  font-weight: 400; }

.woocommerce div.product form.cart .variations td.value select {
  padding: 6px 10px;
  border: 1px solid #e6e7e7;
  max-width: 100%;
  min-width: 200px;
  width: 100%;
  background-color: #FFFFFF; }

.single-product table.variations td.label {
  display: none !important; }

.woocommerce-variation.single_variation {
  display: none !important; }

/* Single Product Misc
====================================*/
p.name-and-sku {
  color: #0061af;
  margin-bottom: 0;
  font-weight: 700;
  margin-bottom: 30px; }

.woocommerce div.product p.stock {
  font-size: 1.6rem; }

.woocommerce-message {
  font-size: 1.6rem;
  font-weight: 400; }

.single-product .shop_table {
  border: 1px solid #eee;
  display: inline-table;
  box-shadow: 0 0 5px #ddd;
  margin: 0 0 15px 0;
  width: 100%; }
  .single-product .shop_table thead tr th {
    font-weight: 300;
    font-size: 1.6rem;
    background: #009bdf !important;
    color: #ffffff !important;
    border: 1px solid #ffffff;
    text-align: left !important;
    padding: 5px 10px !important;
    border-bottom-width: 0;
    border-right-width: 0; }
    .single-product .shop_table thead tr th:nth-child(1) {
      width: 120px; }
  .single-product .shop_table tbody tr {
    background-color: #f8f8f8 !important; }
    .single-product .shop_table tbody tr td {
      font-weight: 300;
      border: 1px solid #ffffff;
      text-align: left;
      padding: 5px 10px !important;
      border-bottom-width: 0;
      border-right-width: 0; }
      .single-product .shop_table tbody tr td span {
        font-weight: inherit;
        font-size: inherit;
        color: inherit; }
  .single-product .shop_table tbody > tr:first-child {
    display: none; }

.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  max-width: 500px;
  width: 90%;
  padding: 40px;
  margin-top: 0;
  background: #ffffff;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5); }

.close-modal {
  cursor: pointer;
  font-size: 14px;
  color: #525151;
  padding: 5px;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1; }

.close-modal:hover {
  color: #0099DB; }

.modal-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 997;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); }

/*	Forms
****************************************/
/*	Reset
******************************/
input {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0; }

input[type=text],
input[type=textarea],
input[type=email],
input[type=tel] {
  -webkit-appearance: none; }

input[type=checkbox] {
  -webkit-appearance: checkbox !important;
  appearance: checkbox !important; }

input[type=radio] {
  -webkit-appearance: radio !important;
  appearance: radio !important; }

input[type="submit"] {
  -webkit-appearance: none; }

select:-moz-focusing {
  color: transparent;
  text-shadow: 0 0 0 #000; }

select {
  cursor: pointer; }

:focus {
  outline: none; }

::-moz-focus-inner {
  border: 0; }

button:focus {
  outline: 0; }

button {
  -webkit-appearance: none;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0; }

input::placeholder,
textarea::placeholder {
  color: #525151;
  opacity: 1;
  font-weight: 700; }

/* Contact Form 7
*********************************/
.wpcf7 {
  width: 100%;
  position: relative;
  margin: auto auto !important; }

.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  clear: both; }

/* Input, Textarea & Select */
input[type="password"],
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  font-family: "filson-soft", sans-serif;
  font-weight: 300;
  padding: 10px 15px;
  font-size: 14px;
  box-sizing: border-box;
  border: 1px solid #e0e0e0;
  margin-bottom: 10px; }

option {
  font-weight: 300; }

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  background-color: #fafafa; }

.wpcf7-form textarea {
  height: 115px;
  min-height: 115px;
  resize: vertical;
  width: 100%; }

.wpcf7-form p {
  margin-bottom: 0;
  font-size: 14px;
  display: block; }

.wpcf7-form a {
  font-size: 12px;
  color: #525151; }

span.wpcf7-list-item {
  display: block;
  margin: 0; }

span.wpcf7-list-item input {
  width: auto;
  cursor: pointer; }

.wpcf7-form label {
  font-size: 14px;
  font-weight: 400;
  padding-bottom: 7px;
  color: #525151;
  display: block;
  margin-left: 7px;
  cursor: pointer; }

.wpcf7-form label:after {
  content: "";
  clear: both;
  display: table; }

.wpcf7-submit {
  font-family: "filson-soft", sans-serif;
  font-size: 15px;
  line-height: 30px;
  font-weight: "normal";
  color: #ffffff;
  display: inline-block;
  width: auto;
  padding: 8px 45px 8px 45px;
  margin-top: 20px;
  box-sizing: border-box;
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.2s linear 0s;
  text-align: center;
  position: relative;
  z-index: 1; }

.wpcf7 input[type=submit],
.wpcf7 button[type=submit] {
  font-weight: 100;
  font-size: 1.5rem;
  max-width: 250px; }

.contact-consent,
.contact-consent span,
.contact-consent a {
  line-height: 1.3 !important;
  font-size: 12px !important;
  color: #525151;
  margin-bottom: 10px; }

.contact-consent input {
  margin-bottom: 0 !important; }

.cookie-link {
  color: #525151 !important; }

.wpcf7 .ajax-loader {
  border: none;
  margin-left: 0; }

.wpcf7-response-output {
  clear: both;
  background: #ffffff;
  line-height: 1.4;
  color: #414042;
  font-size: 13px;
  margin: 0 !important;
  padding: 7px !important; }

.wpcf7-validation-errors {
  background: #fff;
  line-height: 20px;
  padding: 10px !important;
  margin-top: 30px !important; }

.wpcf7-not-valid {
  border: 1px solid #FF0000 !important;
  box-sizing: border-box; }

span.wpcf7-not-valid-tip {
  position: relative;
  display: inline-block !important;
  font-size: 12px;
  line-height: 18px !important;
  box-sizing: border-box;
  padding: 4px 6px;
  width: auto;
  color: #ffffff;
  text-align: left;
  background: #434242;
  margin-bottom: 10px !important;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px; }

span.wpcf7-not-valid-tip:after {
  content: '';
  position: absolute;
  bottom: 99%;
  left: 50%;
  margin-left: -5px;
  width: 0;
  height: 0;
  border-bottom: solid 5px #434242;
  border-left: solid 5px transparent;
  border-right: solid 5px transparent; }

/*	Mailchimp
***********************************/
.mc4wp-wrapper {
  border-radius: 3px;
  background: 0 0;
  border: 1px solid #ffffff; }

.mc4wp-form {
  width: 100%;
  height: 100%; }

.mc4wp-form-fields {
  width: 100%; }
  .mc4wp-form-fields p {
    display: flex !important;
    flex-direction: column;
    margin-bottom: 0 !important; }
    .mc4wp-form-fields p input[type="email"] {
      width: auto;
      flex: 1;
      margin-right: 10px;
      margin-bottom: 0;
      border: none; }
    .mc4wp-form-fields p input[type="submit"] {
      margin-bottom: 0;
      cursor: pointer; }

input.mc4wp-input {
  font-family: "filson-soft", sans-serif;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.5;
  width: 84%;
  padding: 10px;
  background-color: transparent;
  color: #fff;
  font-size: 1.4rem;
  box-sizing: border-box;
  border: none;
  float: left; }

input.mc4wp-input::placeholder {
  color: #ffffff; }

.mc4wp-form-fields p {
  margin-bottom: 5px;
  font-size: 14px;
  display: block; }

input.mc4wp-submit {
  width: 15%;
  float: left;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  font-size: 16px;
  line-height: 18px;
  border: none;
  background: 0 0;
  color: #ffffff;
  padding: 11px 4px;
  box-sizing: border-box;
  transition: all .2s ease 0s;
  cursor: pointer;
  margin: 0; }

input.mc4wp-submit:hover {
  background: #0099DB; }

p.form-disclaimer, .form-disclaimer a {
  font-size: 12px !important;
  margin-top: 10px; }

@media (min-width: 700px) {
  .wpcf7-form .wpcf7-cols div {
    float: left;
    display: inline-block;
    margin-right: 4%; }

  .wpcf7-cols .two {
    width: 48%; }

  .wpcf7-cols .two:nth-child(2n) {
    width: 48%;
    margin-right: 0; }

  .wpcf7-cols .three {
    width: 30.66%; }

  .wpcf7-cols .three:nth-child(3n) {
    width: 30.66%;
    margin-right: 0; }

  .wpcf7-form input[type="text"],
  .wpcf7-form input[type="email"],
  .wpcf7-form input[type="tel"],
  .wpcf7-form textarea,
  .wpcf7-form select {
    padding: 15px 15px;
    font-size: 15px;
    margin-bottom: 20px; }

  .mc4wp-form-fields p {
    flex-direction: row; } }
/* END @Media */
table {
  margin: 0 0 15px 0;
  width: 100%; }

table th {
  padding: 5px;
  background: #f8f8f8;
  text-align: center;
  border: 1px solid #e6e7e7; }

table td {
  padding: 5px;
  border: 1px solid #e6e7e7;
  text-align: center; }

.responsive-table table {
  table-layout: fixed;
  width: 100%;
  margin: 0 0 15px 0;
  max-width: 100%; }

.responsive-table tbody {
  width: 100%;
  display: block;
  overflow-x: auto; }

.responsive-table table td {
  width: 100%;
  white-space: nowrap;
  text-align: left;
  padding: 5px 10px; }

.responsive-table table th {
  color: #0099DB;
  font-weight: 700;
  white-space: nowrap;
  background: none;
  text-align: left;
  padding: 5px 10px;
  width: 100%; }

.responsive-table table th {
  border-top: none; }

.responsive-table table tr td:first-child,
.responsive-table th:first-child {
  border-left: none; }

.responsive-table table tr td:last-child,
.responsive-table th:last-child {
  border-right: none; }

/* Social
*******************************/
.social a {
  vertical-align: middle;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease-out 0s;
  color: #0061af;
  width: 25px;
  height: 25px;
  position: relative;
  margin: 0 7px 7px 0; }
  .social a .fa,
  .social a .fas,
  .social a .fab {
    font-size: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2; }
  .social a:hover {
    color: #0099DB; }

footer .social {
  text-align: left; }
  footer .social a {
    color: #EF0C25;
    background: none; }
    footer .social a:hover {
      color: #0061af; }

.social-icons.f-row.justify-center div.social {
  padding-left: 40px; }
  .social-icons.f-row.justify-center div.social a {
    margin-bottom: 0; }

.social-icons.column div.social {
  margin-top: 30px; }

.main-header .social a {
  width: 30px;
  height: 30px; }

.top-header .social a {
  font-size: 20px;
  margin: 0;
  color: #FFFFFF; }
  .top-header .social a:hover {
    color: #0061af; }

.single-share .v-align-m {
  margin: auto;
  display: block; }

.single-social {
  clear: both;
  float: none;
  text-align: center;
  margin: auto; }

.single-social a {
  background: #0061af;
  color: #FFFFFF; }

.single-social a:hover {
  background: #0099DB;
  color: #FFFFFF; }

@media (min-width: 688px) {
  .social ul li {
    display: inline-block; }

  .single-share .v-align-m {
    display: table-cell; }

  .single-share {
    float: right; }

  .single-share .share-title,
  .single-share .social {
    width: auto;
    display: table;
    height: 50px;
    float: left;
    clear: none; }

  .single-share .share-title span,
  .single-share .share-title i {
    display: table-cell;
    vertical-align: middle; } }
@media (min-width: 1024px) {
  .single-share .share-title,
  .single-share .social {
    height: 70px; }

  .social {
    text-align: left; }

  .single-social {
    text-align: left; } }
.tabbed-content-widget .tabbed-content {
  display: none;
  opacity: 0;
  transition: opacity 0.5s 0.2s 0s; }

.fade-in {
  opacity: 1 !important;
  transition: opacity 0.5s 0.2s 0s; }

.tabbed-content-widget .tabbed-link {
  display: inline-block;
  margin-right: 20px;
  padding-bottom: 20px;
  cursor: pointer; }

.tabbed-content-widget .tabbed-link.active {
  border-bottom: 2px solid #eeeeee; }

/*	Lightbox
******************************************/
body:after {
  content: url(assets/images/close.png) url(assets/images/loading.gif) url(assets/images/prev.png) url(assets/images/next.png);
  display: none; }

body.lb-disable-scrolling {
  overflow: hidden; }

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none; }

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal; }

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;
  border: 4px solid white; }

.lightbox a img {
  border: none; }

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
  background-color: white; }

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both; }

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0; }

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(assets/images/loading.gif) no-repeat; }

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10; }

.lb-container > .nav {
  left: 0; }

.lb-nav a {
  outline: none;
  background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="); }

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block; }

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(assets/images/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s; }

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(assets/images/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s; }

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px; }

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both; }

.lb-data {
  padding: 0 4px;
  color: #ccc; }

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em; }

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em; }

.lb-data .lb-caption a {
  color: #4ae; }

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999; }

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(assets/images/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s; }

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

/*	YouTube lazy load
***************************************************/
.youtube {
  /* continer (responsive) */
  position: relative;
  cursor: pointer !important;
  background: #ccc no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0px;
  clear: both;
  background-size: cover; }

.youtube::before {
  /* play bubble */
  content: '';
  display: block;
  height: 60px;
  width: 60px;
  margin: -30px 0 0 -30px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all .1s ease;
  z-index: 1; }

.youtube:hover::before {
  /* play bubble hover */
  background: rgba(238, 238, 238, 0.4);
  width: 70px;
  height: 70px;
  margin: -35px 0 0 -35px; }

.youtube::after {
  /* Play Triangle */
  content: '';
  width: 0;
  height: 0;
  line-height: 0px;
  display: block;
  border-style: solid;
  border-width: 12px 0 12px 24px;
  margin: -12px 0 0 -8px;
  border-color: transparent transparent transparent #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2; }

.youtube iframe {
  /* youtube embed (responsive) */
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3; }

@media (min-width: 688px) {
  .youtube::before {
    /* play bubble */
    height: 80px;
    width: 80px;
    margin: -40px 0 0 -40px;
    border-radius: 50%; }

  .youtube:hover::before {
    /* play bubble hover */
    width: 90px;
    height: 90px;
    margin: -45px 0 0 -45px; }

  .youtube::after {
    /* Play Triangle */
    border-width: 15px 0 15px 30px;
    margin: -15px 0 0 -10px; } }
@media (min-width: 1024px) {
  .youtube::before {
    /* play bubble */
    height: 120px;
    width: 120px;
    margin: -60px 0 0 -60px;
    border-radius: 50%; }

  .youtube:hover::before {
    /* play bubble hover */
    width: 130px;
    height: 130px;
    margin: -65px 0 0 -65px; }

  .youtube::after {
    /* Play Triangle */
    border-width: 20px 0 20px 40px;
    margin: -20px 0 0 -14px; } }
/*!
 * Vimeo LazyLoad
 * v2.0.0
 * https://github.com/the-muda-organization/vimeo-lazyload
 * MIT License
 */
/* vimeo lazyload container */
.vi-lazyload {
  width: 100%;
  position: relative !important;
  overflow: hidden;
  cursor: pointer;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

/* vimeo lazyload container ::before --> to maintain 16/9 ratio & black bg before JS loaded */
.vi-lazyload::before {
  content: "";
  width: 100%;
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  /*16:9 ratio*/
  background-color: #000; }

/* vimeo lazyload wrap */
.vi-lazyload-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: inherit; }

/* vimeo lazyload content */
.vi-lazyload-content {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: #000;
  background-image: var(--vi-lazyload-img);
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat; }

/* play-btn */
.vi-lazyload-playbtn {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 8'%3E%3Crect fill='rgba(0,0,0,.65)' width='13' height='8' rx='1' ry='1'/%3E%3Cpolygon fill='%23fff' points='5 6 9 4 5 2'/%3E%3C/svg%3E");
  background-position: 50%;
  background-size: calc(35px + 10%) auto;
  background-repeat: no-repeat; }

/* play-btn:hover */
.vi-lazyload-playbtn:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 8'%3E%3Crect fill='%231AB7EA' width='13' height='8' rx='1' ry='1'/%3E%3Cpolygon fill='%23fff' points='5 6 9 4 5 2'/%3E%3C/svg%3E"); }

/* logo */
.vi-lazyload-logo {
  display: block;
  width: 30%;
  min-width: 95px;
  min-height: 27px;
  max-width: 215px;
  padding-top: 8.6%;
  /* 28.440367% (logo height/width in %) * 0.3 (equivalent to width:30%) = 8.5321101% rounded up */
  position: absolute;
  right: 4%;
  bottom: 4%;
  z-index: 2;
  background-position: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: .75;
  transition: opacity .3s; }

/* 0 = no logo! */
/* 1 = blue     */
.vi-lazyload[data-logo="1"] .vi-lazyload-logo {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 109 31' fill='%231ab7ea'%3E%3Cpath d='M88.24 23.443a11.978 11.978 0 0 1-.054-.678c-.184-3.124.947-5.995 3.394-8.61 2.627-2.905 5.929-4.358 9.908-4.358 2.553 0 4.487.855 5.801 2.561 1.242 1.563 1.807 3.578 1.698 6.047-.147 3.342-1.387 6.23-3.723 8.663-2.335 2.434-5.237 3.65-8.704 3.65-2.882 0-5.072-.926-6.568-2.78a7.757 7.757 0 0 1-.871-1.372 34.1 34.1 0 0 1-1.235.727c-3.868 2.217-7.792 3.323-11.769 3.323-2.956 0-5.074-.982-6.35-2.945a7.353 7.353 0 0 1-.266-.422 21.55 21.55 0 0 1-.117.103c-2.446 2.108-4.89 3.162-7.335 3.162-2.374 0-3.522-1.307-3.45-3.926.036-1.164.265-2.562.684-4.198.42-1.636.648-2.909.685-3.818.037-1.38-.384-2.073-1.264-2.073-.952 0-2.086 1.13-3.404 3.384-1.392 2.365-2.144 4.656-2.252 6.874-.074 1.566.08 2.767.46 3.603-2.546.073-4.33-.346-5.348-1.256-.911-.8-1.33-2.126-1.255-3.983a14.67 14.67 0 0 1 .537-3.492c.321-1.164.5-2.2.537-3.11.074-1.347-.42-2.02-1.48-2.02-.915 0-1.902 1.038-2.96 3.111-1.06 2.073-1.645 4.239-1.754 6.494-.073 2.037.058 3.455.392 4.256-2.505.073-4.284-.454-5.337-1.58-.48-.518-.817-1.185-1.01-2.002-.205.194-.415.386-.631.574-2.446 2.108-4.89 3.162-7.335 3.162-1.133 0-2-.363-2.601-1.09-.602-.728-.885-1.672-.848-2.836.035-1.199.41-3.053 1.121-5.562.712-2.508 1.069-3.854 1.069-4.036 0-.944-.33-1.417-.985-1.417-.207 0-.77.34-1.69 1.016-.693 2.067-2.205 4.595-4.535 7.584-3.315 4.295-6.119 6.443-8.413 6.443-1.42 0-2.624-1.307-3.606-3.924L5.41 19.497c-.73-2.615-1.512-3.924-2.349-3.924-.182 0-.82.383-1.913 1.145L0 15.244a309.082 309.082 0 0 0 3.558-3.163c1.604-1.383 2.809-2.11 3.612-2.183 1.897-.182 3.065 1.111 3.503 3.88.474 2.986.802 4.844.986 5.57.547 2.479 1.148 3.716 1.806 3.716.51 0 1.276-.803 2.298-2.41 1.021-1.608 1.568-2.831 1.642-3.672.146-1.387-.401-2.082-1.642-2.082-.583 0-1.185.134-1.804.399 1.198-3.914 3.487-5.814 6.866-5.706 2.256.066 3.438 1.387 3.546 3.961L26 12.081c1.57-1.383 2.738-2.11 3.506-2.183 1.203-.109 2.088.244 2.654 1.06.564.816.774 1.875.63 3.18-.475 2.212-.987 5.02-1.534 8.425-.037 1.56.53 2.338 1.697 2.338.51 0 1.422-.537 2.737-1.615l.049-.04c.083-.76.218-1.662.405-2.708.3-1.687.468-3 .504-3.945.072-.652-.093-.979-.493-.979-.22 0-.84.369-1.862 1.104l-1.314-1.473c.183-.144 1.331-1.2 3.45-3.164 1.532-1.418 2.572-2.145 3.119-2.182.949-.073 1.715.318 2.299 1.172.584.855.876 1.847.876 2.974 0 .364-.036.71-.108 1.037a10.044 10.044 0 0 1 1.916-2.183c1.678-1.455 3.558-2.274 5.638-2.456 1.788-.145 3.064.273 3.833 1.255.619.8.91 1.947.875 3.438a73.7 73.7 0 0 0 .822-.71c.838-.982 1.659-1.763 2.462-2.345 1.35-.982 2.756-1.528 4.215-1.638 1.752-.145 3.01.271 3.777 1.25.656.798.949 1.94.877 3.424-.037 1.015-.284 2.492-.74 4.431-.457 1.94-.684 3.052-.684 3.342-.037.763.037 1.287.22 1.577.181.29.618.434 1.313.434.311 0 .773-.2 1.385-.602a9.877 9.877 0 0 1-.072-1.43c.035-2.945 1.35-5.745 3.942-8.401 2.845-2.909 6.203-4.365 10.072-4.365 3.576 0 5.474 1.453 5.693 4.355.145 1.85-.877 3.755-3.065 5.715-2.337 2.142-5.276 3.502-8.815 4.082.656.908 1.641 1.36 2.956 1.36 2.627 0 5.492-.664 8.596-1.997.138-.058.274-.117.408-.175zm14.56-5.244c.038-.984-.1-1.886-.41-2.706-.31-.82-.758-1.23-1.341-1.23-1.862 0-3.395 1.002-4.597 3.007-1.024 1.64-1.571 3.39-1.643 5.247-.037.912.128 1.714.492 2.406.4.803.966 1.203 1.697 1.203 1.642 0 3.048-.965 4.216-2.898.985-1.604 1.513-3.28 1.587-5.029zm-21.1-1.834c.035-.976-.365-1.465-1.203-1.465-1.094 0-2.204.751-3.334 2.253-1.13 1.502-1.713 2.94-1.748 4.315-.021 0-.021.236 0 .706a12.322 12.322 0 0 0 4.645-2.985c1.056-1.157 1.603-2.1 1.64-2.824zM34.651 2.714c-.036.906-.492 1.775-1.369 2.607-.985.941-2.153 1.412-3.503 1.412-2.08 0-3.084-.905-3.011-2.715.035-.94.592-1.846 1.669-2.715C29.513.435 30.708 0 32.023 0c.766 0 1.405.3 1.917.896.51.598.747 1.204.711 1.818z'/%3E%3C/svg%3E"); }

/* 2 = dark     */
.vi-lazyload[data-logo="2"] .vi-lazyload-logo {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 109 31' fill='%23162221'%3E%3Cpath d='M88.24 23.443a11.978 11.978 0 0 1-.054-.678c-.184-3.124.947-5.995 3.394-8.61 2.627-2.905 5.929-4.358 9.908-4.358 2.553 0 4.487.855 5.801 2.561 1.242 1.563 1.807 3.578 1.698 6.047-.147 3.342-1.387 6.23-3.723 8.663-2.335 2.434-5.237 3.65-8.704 3.65-2.882 0-5.072-.926-6.568-2.78a7.757 7.757 0 0 1-.871-1.372 34.1 34.1 0 0 1-1.235.727c-3.868 2.217-7.792 3.323-11.769 3.323-2.956 0-5.074-.982-6.35-2.945a7.353 7.353 0 0 1-.266-.422 21.55 21.55 0 0 1-.117.103c-2.446 2.108-4.89 3.162-7.335 3.162-2.374 0-3.522-1.307-3.45-3.926.036-1.164.265-2.562.684-4.198.42-1.636.648-2.909.685-3.818.037-1.38-.384-2.073-1.264-2.073-.952 0-2.086 1.13-3.404 3.384-1.392 2.365-2.144 4.656-2.252 6.874-.074 1.566.08 2.767.46 3.603-2.546.073-4.33-.346-5.348-1.256-.911-.8-1.33-2.126-1.255-3.983a14.67 14.67 0 0 1 .537-3.492c.321-1.164.5-2.2.537-3.11.074-1.347-.42-2.02-1.48-2.02-.915 0-1.902 1.038-2.96 3.111-1.06 2.073-1.645 4.239-1.754 6.494-.073 2.037.058 3.455.392 4.256-2.505.073-4.284-.454-5.337-1.58-.48-.518-.817-1.185-1.01-2.002-.205.194-.415.386-.631.574-2.446 2.108-4.89 3.162-7.335 3.162-1.133 0-2-.363-2.601-1.09-.602-.728-.885-1.672-.848-2.836.035-1.199.41-3.053 1.121-5.562.712-2.508 1.069-3.854 1.069-4.036 0-.944-.33-1.417-.985-1.417-.207 0-.77.34-1.69 1.016-.693 2.067-2.205 4.595-4.535 7.584-3.315 4.295-6.119 6.443-8.413 6.443-1.42 0-2.624-1.307-3.606-3.924L5.41 19.497c-.73-2.615-1.512-3.924-2.349-3.924-.182 0-.82.383-1.913 1.145L0 15.244a309.082 309.082 0 0 0 3.558-3.163c1.604-1.383 2.809-2.11 3.612-2.183 1.897-.182 3.065 1.111 3.503 3.88.474 2.986.802 4.844.986 5.57.547 2.479 1.148 3.716 1.806 3.716.51 0 1.276-.803 2.298-2.41 1.021-1.608 1.568-2.831 1.642-3.672.146-1.387-.401-2.082-1.642-2.082-.583 0-1.185.134-1.804.399 1.198-3.914 3.487-5.814 6.866-5.706 2.256.066 3.438 1.387 3.546 3.961L26 12.081c1.57-1.383 2.738-2.11 3.506-2.183 1.203-.109 2.088.244 2.654 1.06.564.816.774 1.875.63 3.18-.475 2.212-.987 5.02-1.534 8.425-.037 1.56.53 2.338 1.697 2.338.51 0 1.422-.537 2.737-1.615l.049-.04c.083-.76.218-1.662.405-2.708.3-1.687.468-3 .504-3.945.072-.652-.093-.979-.493-.979-.22 0-.84.369-1.862 1.104l-1.314-1.473c.183-.144 1.331-1.2 3.45-3.164 1.532-1.418 2.572-2.145 3.119-2.182.949-.073 1.715.318 2.299 1.172.584.855.876 1.847.876 2.974 0 .364-.036.71-.108 1.037a10.044 10.044 0 0 1 1.916-2.183c1.678-1.455 3.558-2.274 5.638-2.456 1.788-.145 3.064.273 3.833 1.255.619.8.91 1.947.875 3.438a73.7 73.7 0 0 0 .822-.71c.838-.982 1.659-1.763 2.462-2.345 1.35-.982 2.756-1.528 4.215-1.638 1.752-.145 3.01.271 3.777 1.25.656.798.949 1.94.877 3.424-.037 1.015-.284 2.492-.74 4.431-.457 1.94-.684 3.052-.684 3.342-.037.763.037 1.287.22 1.577.181.29.618.434 1.313.434.311 0 .773-.2 1.385-.602a9.877 9.877 0 0 1-.072-1.43c.035-2.945 1.35-5.745 3.942-8.401 2.845-2.909 6.203-4.365 10.072-4.365 3.576 0 5.474 1.453 5.693 4.355.145 1.85-.877 3.755-3.065 5.715-2.337 2.142-5.276 3.502-8.815 4.082.656.908 1.641 1.36 2.956 1.36 2.627 0 5.492-.664 8.596-1.997.138-.058.274-.117.408-.175zm14.56-5.244c.038-.984-.1-1.886-.41-2.706-.31-.82-.758-1.23-1.341-1.23-1.862 0-3.395 1.002-4.597 3.007-1.024 1.64-1.571 3.39-1.643 5.247-.037.912.128 1.714.492 2.406.4.803.966 1.203 1.697 1.203 1.642 0 3.048-.965 4.216-2.898.985-1.604 1.513-3.28 1.587-5.029zm-21.1-1.834c.035-.976-.365-1.465-1.203-1.465-1.094 0-2.204.751-3.334 2.253-1.13 1.502-1.713 2.94-1.748 4.315-.021 0-.021.236 0 .706a12.322 12.322 0 0 0 4.645-2.985c1.056-1.157 1.603-2.1 1.64-2.824zM34.651 2.714c-.036.906-.492 1.775-1.369 2.607-.985.941-2.153 1.412-3.503 1.412-2.08 0-3.084-.905-3.011-2.715.035-.94.592-1.846 1.669-2.715C29.513.435 30.708 0 32.023 0c.766 0 1.405.3 1.917.896.51.598.747 1.204.711 1.818z'/%3E%3C/svg%3E"); }

/* 3 = white    */
.vi-lazyload[data-logo="3"] .vi-lazyload-logo {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 109 31' fill='%23fff'%3E%3Cpath d='M88.24 23.443a11.978 11.978 0 0 1-.054-.678c-.184-3.124.947-5.995 3.394-8.61 2.627-2.905 5.929-4.358 9.908-4.358 2.553 0 4.487.855 5.801 2.561 1.242 1.563 1.807 3.578 1.698 6.047-.147 3.342-1.387 6.23-3.723 8.663-2.335 2.434-5.237 3.65-8.704 3.65-2.882 0-5.072-.926-6.568-2.78a7.757 7.757 0 0 1-.871-1.372 34.1 34.1 0 0 1-1.235.727c-3.868 2.217-7.792 3.323-11.769 3.323-2.956 0-5.074-.982-6.35-2.945a7.353 7.353 0 0 1-.266-.422 21.55 21.55 0 0 1-.117.103c-2.446 2.108-4.89 3.162-7.335 3.162-2.374 0-3.522-1.307-3.45-3.926.036-1.164.265-2.562.684-4.198.42-1.636.648-2.909.685-3.818.037-1.38-.384-2.073-1.264-2.073-.952 0-2.086 1.13-3.404 3.384-1.392 2.365-2.144 4.656-2.252 6.874-.074 1.566.08 2.767.46 3.603-2.546.073-4.33-.346-5.348-1.256-.911-.8-1.33-2.126-1.255-3.983a14.67 14.67 0 0 1 .537-3.492c.321-1.164.5-2.2.537-3.11.074-1.347-.42-2.02-1.48-2.02-.915 0-1.902 1.038-2.96 3.111-1.06 2.073-1.645 4.239-1.754 6.494-.073 2.037.058 3.455.392 4.256-2.505.073-4.284-.454-5.337-1.58-.48-.518-.817-1.185-1.01-2.002-.205.194-.415.386-.631.574-2.446 2.108-4.89 3.162-7.335 3.162-1.133 0-2-.363-2.601-1.09-.602-.728-.885-1.672-.848-2.836.035-1.199.41-3.053 1.121-5.562.712-2.508 1.069-3.854 1.069-4.036 0-.944-.33-1.417-.985-1.417-.207 0-.77.34-1.69 1.016-.693 2.067-2.205 4.595-4.535 7.584-3.315 4.295-6.119 6.443-8.413 6.443-1.42 0-2.624-1.307-3.606-3.924L5.41 19.497c-.73-2.615-1.512-3.924-2.349-3.924-.182 0-.82.383-1.913 1.145L0 15.244a309.082 309.082 0 0 0 3.558-3.163c1.604-1.383 2.809-2.11 3.612-2.183 1.897-.182 3.065 1.111 3.503 3.88.474 2.986.802 4.844.986 5.57.547 2.479 1.148 3.716 1.806 3.716.51 0 1.276-.803 2.298-2.41 1.021-1.608 1.568-2.831 1.642-3.672.146-1.387-.401-2.082-1.642-2.082-.583 0-1.185.134-1.804.399 1.198-3.914 3.487-5.814 6.866-5.706 2.256.066 3.438 1.387 3.546 3.961L26 12.081c1.57-1.383 2.738-2.11 3.506-2.183 1.203-.109 2.088.244 2.654 1.06.564.816.774 1.875.63 3.18-.475 2.212-.987 5.02-1.534 8.425-.037 1.56.53 2.338 1.697 2.338.51 0 1.422-.537 2.737-1.615l.049-.04c.083-.76.218-1.662.405-2.708.3-1.687.468-3 .504-3.945.072-.652-.093-.979-.493-.979-.22 0-.84.369-1.862 1.104l-1.314-1.473c.183-.144 1.331-1.2 3.45-3.164 1.532-1.418 2.572-2.145 3.119-2.182.949-.073 1.715.318 2.299 1.172.584.855.876 1.847.876 2.974 0 .364-.036.71-.108 1.037a10.044 10.044 0 0 1 1.916-2.183c1.678-1.455 3.558-2.274 5.638-2.456 1.788-.145 3.064.273 3.833 1.255.619.8.91 1.947.875 3.438a73.7 73.7 0 0 0 .822-.71c.838-.982 1.659-1.763 2.462-2.345 1.35-.982 2.756-1.528 4.215-1.638 1.752-.145 3.01.271 3.777 1.25.656.798.949 1.94.877 3.424-.037 1.015-.284 2.492-.74 4.431-.457 1.94-.684 3.052-.684 3.342-.037.763.037 1.287.22 1.577.181.29.618.434 1.313.434.311 0 .773-.2 1.385-.602a9.877 9.877 0 0 1-.072-1.43c.035-2.945 1.35-5.745 3.942-8.401 2.845-2.909 6.203-4.365 10.072-4.365 3.576 0 5.474 1.453 5.693 4.355.145 1.85-.877 3.755-3.065 5.715-2.337 2.142-5.276 3.502-8.815 4.082.656.908 1.641 1.36 2.956 1.36 2.627 0 5.492-.664 8.596-1.997.138-.058.274-.117.408-.175zm14.56-5.244c.038-.984-.1-1.886-.41-2.706-.31-.82-.758-1.23-1.341-1.23-1.862 0-3.395 1.002-4.597 3.007-1.024 1.64-1.571 3.39-1.643 5.247-.037.912.128 1.714.492 2.406.4.803.966 1.203 1.697 1.203 1.642 0 3.048-.965 4.216-2.898.985-1.604 1.513-3.28 1.587-5.029zm-21.1-1.834c.035-.976-.365-1.465-1.203-1.465-1.094 0-2.204.751-3.334 2.253-1.13 1.502-1.713 2.94-1.748 4.315-.021 0-.021.236 0 .706a12.322 12.322 0 0 0 4.645-2.985c1.056-1.157 1.603-2.1 1.64-2.824zM34.651 2.714c-.036.906-.492 1.775-1.369 2.607-.985.941-2.153 1.412-3.503 1.412-2.08 0-3.084-.905-3.011-2.715.035-.94.592-1.846 1.669-2.715C29.513.435 30.708 0 32.023 0c.766 0 1.405.3 1.917.896.51.598.747 1.204.711 1.818z'/%3E%3C/svg%3E"); }

/* logo:hover */
.vi-lazyload-logo:hover {
  opacity: 1;
  transition: opacity .3s; }

/* iframe */
.vi-lazyload iframe {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  border: 0;
  background-color: #000; }

/*	Slick slider
*******************************/
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0; }

.slick-list:focus {
  outline: none; }

.slick-list.dragging {
  cursor: pointer;
  cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }

.slick-track:before,
.slick-track:after {
  display: table;
  content: ''; }

.slick-track:after {
  clear: both; }

.slick-loading .slick-track {
  visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px; }

[dir='rtl'] .slick-slide {
  float: right; }

.slick-slide img {
  display: block; }

.slick-slide.slick-loading img {
  display: none; }

.slick-slide.dragging img {
  pointer-events: none; }

.slick-loading .slick-slide {
  visibility: hidden; }

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

.slick-dots > li {
  display: inline-block; }
.slick-dots > li:only-child {
  display: none; }

/* Custom */
.logos-cntr.slick-initialized,
.logos-cntr.slick-initialized .slick-slide {
  display: flex;
  justify-content: center; }

.slick-list,
.slick-track {
  height: 100%; }

.slick-slide {
  position: relative;
  box-sizing: border-box;
  float: left;
  height: 100%;
  cursor: hand;
  cursor: grab;
  cursor: -webkit-grab; }

/* Slick slider dots and arrows
======================================== */
.slick-slider button {
  cursor: pointer;
  transition: all 0.3s; }

/* Slick slider dots
======================================== */
.slick-dots {
  width: 100%;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0;
  z-index: 20;
  margin-bottom: 0 !important;
  transition: .4s ease-out; }

.testimonials-slider .slick-dots {
  bottom: 5px !important; }

.slick-dots li {
  display: inline-block;
  font-size: 0;
  margin: 5px;
  width: 14px;
  height: 14px;
  line-height: 14px;
  box-sizing: border-box;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s; }

.slick-dots li button {
  cursor: pointer;
  font-size: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  display: block;
  box-sizing: border-box;
  background: none;
  border: 1px solid #FFFFFF;
  border-radius: 50%; }

.slick-dots li button:hover {
  background: #FFFFFF; }

.slick-dots .slick-active button {
  background: #FFFFFF; }

/* Slick slider arrows
======================================== */
.slick-slider .slick-prev::before {
  font-family: 'Font Awesome 5 Pro';
  content: "\f104";
  font-weight: 300; }

.slick-slider .slick-next::before {
  font-family: 'Font Awesome 5 Pro';
  content: "\f105";
  font-weight: 300; }

.slick-slider .slick-arrow {
  position: absolute;
  opacity: 0;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
  font-size: 40px;
  padding: 0;
  text-align: center;
  z-index: 3;
  background: none;
  width: 40px;
  display: block;
  color: #FFFFFF;
  transition: opacity .4s ease-in; }

.slick-slider .slick-arrow:hover {
  color: #0099DB; }

.slick-slider .slick-prev {
  left: 5px; }

.slick-slider .slick-next {
  right: 0; }

.slick-slider:hover > .slick-arrow {
  opacity: 1; }

@media (min-width: 688px) {
  .slick-slider .slick-dots {
    bottom: 20px; }

  .slick-dots li {
    margin: 5px;
    width: 12px;
    height: 12px;
    line-height: 12px; }

  .slick-slider .slick-arrow {
    display: block !important; }

  .slick-slider:hover > .slick-dots,
  .slick-slider:hover > .slick-arrow {
    opacity: 1 !important; } }
/* END Media */
@media (min-width: 1312px) {
  .slick-dots li {
    width: 15px;
    height: 15px;
    line-height: 15px; }

  .slick-slider .slick-arrow {
    background-color: unset;
    font-size: 5rem; } }
/* END Media */
/*	Slick slider
**********************************/
.main-slider-wrapper {
  width: 101%;
  max-width: 100%;
  height: 360px;
  position: relative; }

.main-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
  text-align: left;
  box-sizing: border-box;
  margin: auto; }

.main-slider .slick-slide {
  height: 100%;
  width: 100%;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important; }

.main-slider .slick-arrow {
  display: none; }

.main-slider:hover > .slick-arrow {
  opacity: 0; }

.main-slider .slider-content {
  position: absolute;
  max-width: 1440px;
  width: 90%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  z-index: 10;
  text-align: center; }

.main-slider .slider-heading {
  text-align: center;
  margin: auto; }

.main-slider .slider-heading h1,
.main-slider .slider-heading h2 {
  color: #ffffff;
  font-size: 40px;
  line-height: 1.2;
  font-family: "filson-pro", sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
  width: 100%; }

.main-slider .slider-caption {
  text-align: center;
  margin: auto;
  margin-bottom: 2rem; }

.main-slider .slider-caption p {
  font-family: "filson-soft", sans-serif;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.5;
  margin-top: 0px;
  width: 100%; }

@media (min-width: 688px) {
  .main-slider-wrapper {
    height: 600px; }

  .main-slider .slick-dots {
    bottom: 20px; }

  .main-slider .slider-heading {
    width: 70%; }

  .main-slider .slider-caption {
    width: 60%;
    display: block;
    margin-top: 10px;
    margin-bottom: 30px; }

  .main-slider .slider-heading h1,
  .main-slider .slider-heading h2 {
    font-size: 55px;
    line-height: 1.1;
    margin-bottom: 15px; }

  .main-slider.slider-caption p {
    font-size: 16px; } }
@media (min-width: 1024px) {
  .main-slider-wrapper {
    height: 800px; }

  .main-slider {
    height: 100%; }

  .slick-dots li {
    width: 12px;
    height: 12px;
    line-height: 12px; }

  .main-slider .slick-prev {
    left: 0; }

  .main-slider .slick-next {
    right: 0; }

  .main-slider .slider-heading {
    width: 60%; }

  .main-slider .slider-caption {
    width: 60%;
    margin-top: 10px;
    margin-bottom: 40px; }

  .main-slider .slider-heading h1,
  .main-slider .slider-heading h2 {
    font-size: 70px; }

  .main-slider .slider-caption p {
    font-size: 24px; }

  .main-slider .slick-slide .slick-slider-content {
    opacity: 0;
    transition: opacity 1s ease 0.4s; } }
@media (min-width: 1312px) {
  .main-slider .slider-heading {
    width: 60%; }

  .main-slider .slider-caption {
    width: 60%;
    margin-top: 20px;
    margin-bottom: 50px; }

  .main-slider .slick-slider-heading h1, .slick-slider-heading h2 {
    font-size: 90px; }

  .main-slider .slick-slider-caption p {
    font-size: 36px; } }
@media (min-width: 1400px) {
  .main-slider .slick-prev {
    left: 20px; }

  .main-slider .slick-next {
    right: 20px; }

  .main-slider .slider-heading {
    width: 53%; } }
@media (min-width: 1600px) {
  .main-slider .slider-heading {
    width: 40%; }

  .main-slider .slider-heading h1,
  .main-slider .slider-heading h2 {
    font-size: 100px; } }
/*	Row slider
***********************************/
.row-slider {
  height: auto !important;
  margin: 0 0 0 -10px; }
  .row-slider .slick-list {
    width: 100%; }
  .row-slider .slick-slide {
    background: none;
    margin: 0 0 0 10px; }
  .row-slider .slick-arrow {
    opacity: 1 !important;
    color: #D9D7D7; }
  .row-slider .slick-dots {
    position: absolute; }
  .row-slider .slick-dots li button {
    border: 1px solid #D9D7D7; }
  .row-slider .slick-dots li button:hover {
    background: #0099DB;
    border: 1px solid #0099DB; }
  .row-slider .slick-dots .slick-active button {
    background: #0099DB;
    border: 1px solid #0099DB; }

.featured-products .slick-dots {
  position: relative !important; }

@media (min-width: 688px) {
  .row-slider {
    margin: 0 0 0 -20px; }
    .row-slider .slick-slide {
      margin: 0px 0px 0px 20px; }
    .row-slider .slick-dots {
      display: block !important;
      opacity: 1 !important; }
    .row-slider .slick-arrow {
      opacity: 1; }
    .row-slider .slick-prev {
      left: 21px; }

  .row-slider:hover > .slick-arrow {
    opacity: 1; } }
@media (min-width: 1312px) {
  .row-slider .slick-prev {
    left: -45px; }

  .row-slider .slick-next {
    right: -55px; } }
/*	Logo slider
******************************/
.logos-slider .slick-dots {
  display: none !important; }

.logo-wrapper {
  display: table;
  height: 100px;
  width: 100%; }

.logo-inner-wrapper {
  display: table-cell;
  vertical-align: middle; }

.logos-slider .single-logo {
  display: flex !important;
  margin-bottom: 0 !important; }

.logos-slider img {
  max-width: 100%;
  max-height: 140px;
  width: auto;
  height: auto;
  margin: auto; }

@media (min-width: 688px) {
  .logos-slider .slick-arrow {
    opacity: 1 !important;
    display: block !important; }

  .logos-slider:hover > .slick-arrow {
    opacity: 1; }

  .logos-slider .slick-prev {
    left: -20px; }

  .logos-slider .slick-next {
    right: -35px; } }
/* END @MEDIA */
@media (min-width: 1024px) {
  .logos-slider .slick-prev {
    left: -40px; }

  .logos-slider .slick-next {
    right: -55px; }

  .logos-slider .slick-dots {
    bottom: -80px; } }
/* END @MEDIA */
@media (min-width: 1312px) {
  .logos-slider .slick-prev {
    left: -50px; }

  .logos-slider .slick-next {
    right: -65px; } }
/* END @MEDIA */
@media (min-width: 1600px) {
  .logos-slider .slick-prev {
    left: -70px; }

  .logos-slider .slick-next {
    right: -85px; } }
/* END @MEDIA */
/*	Pagination
***************************/
.woocommerce nav.woocommerce-pagination {
  text-align: left; }

.pagination,
.woocommerce nav.woocommerce-pagination .page-numbers {
  list-style: none;
  font-size: 12px;
  border: none; }
  .pagination li,
  .woocommerce nav.woocommerce-pagination .page-numbers li {
    display: inline-block;
    border-right: none; }
  .pagination li a,
  .pagination li span.current,
  .woocommerce nav.woocommerce-pagination .page-numbers li a,
  .woocommerce nav.woocommerce-pagination .page-numbers li span.current {
    font-size: 15px;
    display: block;
    float: left;
    padding: 6px 12px;
    margin-right: 7px;
    margin-bottom: 7px;
    line-height: 1.5;
    background: #f8f8f8;
    color: #0061af; }
  .pagination li span.current,
  .woocommerce nav.woocommerce-pagination .page-numbers li span.current {
    background-color: #0061af;
    color: #ffffff; }
  .pagination li span.dots,
  .woocommerce nav.woocommerce-pagination .page-numbers li span.dots {
    display: block;
    float: left;
    padding: 6px 12px;
    margin-right: 7px; }
  .pagination li a:hover,
  .woocommerce nav.woocommerce-pagination .page-numbers li a:hover {
    background: #eeeeee; }

.links-like-select .lls-btn {
  display: block;
  border: 1px solid #e6e7e7;
  padding: 5px 12px;
  box-sizing: border-box;
  background: #f8f8f8;
  position: relative; }

.links-like-select .lls-links {
  display: none;
  border: 1px solid #e6e7e7;
  border-top: none;
  box-sizing: border-box; }

.links-like-select .lls-links a {
  display: block;
  border-bottom: 1px solid #e6e7e7;
  padding: 5px 12px;
  box-sizing: border-box; }

.links-like-select .lls-links a:last-child {
  border-bottom: none; }

.links-like-select .lls-fa {
  color: #0099DB;
  position: absolute;
  right: 15px;
  top: 10px; }

/*	Footer
**************************/
footer p,
footer a,
footer ul,
footer ol,
footer li {
  font-family: "filson-soft", sans-serif;
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 2.5;
  margin-bottom: 0; }

footer small,
footer small a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 100;
  font-size: 1.3rem; }

p.footer-title,
footer h3 {
  font-size: 2.2rem;
  color: #ffffff;
  font-family: "filson-soft", sans-serif;
  font-weight: 700;
  margin-bottom: 0.75em; }

footer a:hover {
  color: #a6cf5e; }

footer hr {
  border: 0;
  height: 1px;
  background: white;
  margin: 0; }

.footer-logo {
  max-width: 200px !important; }

.footer-html-cntr,
.footer-text-editor-cntr {
  padding-right: 20px !important; }

/* Footer Menu
======================================== */
footer .menu li {
  font-size: 1.6rem;
  width: 100% !important;
  display: block !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
  border-bottom: 1px solid white; }
  footer .menu li a {
    font-size: 1.6rem;
    line-height: 1.5;
    display: inline-block; }

footer .menu .current-menu-item a {
  color: #a6cf5e; }

/* Footer Copyright
======================================== */
footer .copyright p,
footer .copyright a {
  font-weight: 300;
  font-size: 13px; }

footer .copyright p {
  margin-bottom: 0; }

footer .copyright a:hover {
  text-decoration: underline; }

@media (min-width: 688px) {
  footer {
    text-align: left; } }
/* END @Media */
/* Site specific custom styles
***************************************************/
.page-id-62215 .registration-form h2 {
  display: none; }

label[for="sms_purchase_order_no"] {
  display: block;
  margin-bottom: 5px; }

input[name="sms_purchase_order_no"] {
  display: block !important; }

.ur-frontend-form .ur-button-container .ur-submit-button {
  margin-left: unset; }

.btn.ur-submit-button:hover {
  border: 1px solid #0099DB !important; }

.smart-search-suggestions .autocomplete-suggestion > a {
  display: block !important; }

.woocommerce-checkout #payment div.payment_box {
  background-color: #f8f8f8; }

.woocommerce-checkout #payment div.payment_box::before {
  border: 1em solid #f8f8f8;
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
  top: -1em; }

.single-product .fpd-manage-layers-panel .fpd-list-row[data-title] {
  flex-direction: column;
  padding-left: 0 !important;
  padding-right: 0 !important; }
  .single-product .fpd-manage-layers-panel .fpd-list-row[data-title] > div {
    padding: 20px; }

.postid-62058 .fpd-secondary-module,
.postid-62058 [data-title^="HP"],
.postid-62058 [data-title="Postcard"] {
  opacity: 0;
  height: 0;
  pointer-events: none; }

.single-product .fpd-manage-layers-panel .fpd-list-row[data-title]::before {
  content: attr(data-title);
  background-color: #cdedfd;
  display: block;
  padding: 10px 20px;
  position: relative;
  font-weight: 600; }

.single-product.personalised-awards .stock.in-stock,
.single-product.fancy-product .stock.in-stock {
  display: none; }

.smart-search-post {
  padding: 6px !important; }

.smart-search-post-title,
.smart-search-post-excerpt {
  margin: 0 0 5px; }

.smart-search-post-price-holder * {
  font-size: 1.3rem; }

.svg-logo-wrapper {
  font-size: 0;
  position: relative; }
  .svg-logo-wrapper:hover {
    animation: wiggle 0.8s ease-in-out infinite; }

.rcc-panel p,
.rcc-panel a {
  font-weight: 300; }

.fpd-upload-zone-adds-panel {
  height: 92% !important; }

.product .product-meta > small {
  font-size: 1.2rem; }

.fpd-icon-close::before {
  content: '\f060';
  display: inline-block;
  padding-right: 5px;
  font-family: "Font Awesome 5 Pro"; }

.fpd-icon-close {
  max-width: 12ch !important;
  font-family: "filson-soft", sans-serif !important;
  display: inline-block !important;
  font-size: 1.4rem !important;
  font-weight: 400; }

.fpd-close-panel {
  -webkit-animation: pulsate-fwd 0.75s ease-in-out 1s 5 both;
  animation: pulsate-fwd 0.75s ease-in-out 1s 5 both; }

.fpd-container:not(.fpd-module-visible) .fpd-secondary-module.fpd-active {
  display: none; }

.fpd-container.fpd-module-visible .fpd-secondary-module.fpd-active > .fpd-close-panel {
  background: #fff;
  position: absolute;
  display: block;
  height: auto;
  right: 0;
  top: 50px;
  padding: 8px 15px;
  font-size: 16px;
  cursor: pointer;
  transform: translateX(100%);
  z-index: 10;
  border-radius: 0 4px 4px 0;
  box-shadow: 2px 0 3px rgba(0, 0, 0, 0.1); }

.fpd-ui-theme-doyle .fpd-mainbar .fpd-content {
  width: 100% !important;
  overflow: visible; }

.fpd-list-row {
  display: flex;
  font-size: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: background .3s ease-out;
  padding-left: 2rem !important;
  padding-right: 2rem !important; }
  .fpd-list-row:hover {
    background: rgba(10, 187, 255, 0.06); }

.fpd-cell-0, .fpd-cell-1, .fpd-cell-2 {
  pointer-events: none; }

.single-product .fpd-list-row > .fpd-cell-0,
.single-product .fpd-list-row > .fpd-cell-2 {
  display: none !important; }

.fpd-upload-zone-adds-panel > .fpd-bottom-nav {
  position: static !important; }

.list-row > .step {
  padding: 7px 20px !important; }

.added_to_cart.wc-forward {
  display: none !important; }

.woocommerce #respond input#submit.loading,
.woocommerce a.button.loading,
.woocommerce button.button.loading,
.woocommerce input.button.loading {
  opacity: .25;
  padding-right: 0.8em !important; }

.main-nav {
  border-radius: 5px; }
  .main-nav .mega-menu > li:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px; }
  .main-nav .mega-menu > li:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px; }

.fal {
  font-weight: 100 !important; }

.top-header {
  max-width: unset; }

.top-header.h-row {
  justify-content: flex-end; }

.top-header-right.col {
  border-bottom-left-radius: 100px; }

.single-product .variation_quantity_table tr td,
.single-product .variation_quantity_table tr th {
  font-weight: 300; }

.middle-header-cntr svg {
  transition: height 0.3s; }

.col.header-search-cntr .ysm-search-widget,
.col.header-search-cntr .aws-container {
  flex: 1; }

.flex-col-row {
  display: flex;
  flex-direction: column; }
  .flex-col-row .button {
    width: 100% !important; }

.h-row > .col {
  justify-content: center; }

.middle-header-center .col.header-search-cntr {
  flex: 1; }

.column-slider.four .slick-track {
  margin-left: -6px;
  margin-right: -6px; }

.featured-range {
  position: relative; }
  .featured-range .card-title {
    position: absolute;
    top: 10px;
    left: 15px;
    color: white;
    text-transform: uppercase;
    max-width: 17ch;
    font-size: 1.2rem; }

.page-wrapper .featured-range {
  transition: 0.2s ease-in-out;
  position: relative;
  top: 0;
  animation: reverse-lift-up 0.4s ease-out; }
  .page-wrapper .featured-range:hover {
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
    animation: lift-up 0.2s ease-in-out both; }

table.variation_quantity_table tbody tr {
  background-color: #f8f8f8 !important; }

.zoomImg {
  display: none !important; }

.swiper-slide {
  margin-right: 20px !important; }

.fpd-ui-theme-doyle .fpd-actions-container {
  z-index: 995; }

.single-product .product_meta span + span {
  margin-top: 1rem; }

.single-product .product_meta .posted_in {
  display: none !important; }

.contact-info a {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1; }

.no-slick {
  visibility: hidden; }

.no-slick.slick-initialized {
  visibility: visible; }

.dynamic-slides .slick-slide {
  height: auto !important; }
  .dynamic-slides .slick-slide img {
    width: 100%; }

.raise-content .media {
  max-width: 60%;
  margin-top: -50px; }

.raise-content .media {
  align-self: center; }

.raise-content .card-body .content * {
  color: #ffffff; }

.sign-up-form {
  background-color: white;
  display: flex;
  align-items: center; }

.fpd-close-panel {
  background-color: #cdedfd !important; }

.fpd-add-design.fpd-active,
.fpd-add-image.fpd-active {
  background-color: #009bdf !important;
  color: #ffffff !important;
  transition: ease 0.4s; }
  .fpd-add-design.fpd-active:hover,
  .fpd-add-image.fpd-active:hover {
    background-color: #007fb6 !important;
    color: #ffffff !important; }

.fpd-add-image:not(.fpd-active),
.fpd-add-design:not(.fpd-active) {
  background-color: #ffffff !important;
  color: #009bdf !important;
  transition: ease 0.4s; }
  .fpd-add-image:not(.fpd-active):hover,
  .fpd-add-design:not(.fpd-active):hover {
    background-color: #007fb6 !important;
    color: #ffffff !important; }

.aws-container .aws-search-field {
  font-size: 12px !important; }

@media (max-width: 350px) {
  .middle-header-right .h-row > .col {
    margin-right: 20px !important;
    margin-left: 0 !important; }
    .middle-header-right .h-row > .col:last-child {
      margin-right: 0 !important; } }
@media (min-width: 351px) and (max-width: 1024px) {
  .middle-header-right .h-row > .col {
    margin-right: 30px !important;
    margin-left: 0 !important; }
    .middle-header-right .h-row > .col:last-child {
      margin-right: 0 !important; } }
@media (min-width: 460px) {
  .featured-range .card-title {
    font-size: 1.4rem; } }
@media (min-width: 688px) {
  .flex-col-row {
    flex-direction: row;
    gap: 4%; }

  .featured-range .card-title {
    font-size: 1.8rem; }

  .aws-container .aws-search-field {
    font-size: 14px !important; } }
@media (min-width: 800px) {
  .raise-content .media {
    max-width: 100%;
    margin-top: 0; } }
@media (min-width: 1024px) and (max-width: 1312px) {
  .bottom-header-center .header-menu-cntr {
    margin: 0 !important; } }
@media (max-width: 1024px) {
  .middle-header-cntr .h-row {
    flex-wrap: wrap; }

  .contact-info p {
    max-width: 98%; } }
@media (min-width: 1024px) {
  .svg-logo-wrapper svg {
    height: 125px; }

  .raise-content .media {
    max-width: 95%;
    margin-top: -50px; }

  .bottom-header-center .header-menu-cntr {
    flex-grow: 1 !important;
    flex-basis: 100% !important;
    margin-left: 0 !important; }

  .main-nav {
    position: relative;
    margin-top: 40px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2); }

  .home .header-block {
    margin-top: 3rem; }

  .middle-header-center .col.header-search-cntr {
    flex-direction: column;
    align-items: flex-start; } }
@media (min-width: 1312px) {
  .main-nav {
    position: relative;
    margin-top: 40px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2); }

  .featured-range .card-title {
    font-size: 2rem; }

  .contact-info a {
    font-size: 1.8rem; }

  .col.header-search-cntr .ysm-search-widget,
  .col.header-search-cntr .aws-container {
    width: 550px; }

  .raise-content .media {
    max-width: 30%; }

  .svg-logo-wrapper svg {
    height: 160px;
    width: auto; } }
