@charset "UTF-8";
/* ==========================================================================
   Variables
   ========================================================================== */
/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes pulse-banner {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pulse-badge {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 #1E1E1E;
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 82, 82, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 82, 82, 0);
  }
}
@keyframes bg-fade {
  0% {
    background-color: #f8f9fa;
    color: #2E2F30;
    border-color: #2E2F30;
  }
  50% {
    background-color: #2E2F30;
    color: #f8f9fa;
    border-color: #f8f9fa;
  }
  100% {
    background-color: #f8f9fa;
    color: #2E2F30;
    border-color: #f8f9fa;
  }
}
/* ==========================================================================
   Typography
   ========================================================================== */
body {
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 1rem;
}

a {
  color: #ABC93C;
}
a:hover {
  color: rgb(139.156626506, 164.4578313253, 45.5421686747);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "aktiv-grotesk", sans-serif;
}

h1,
.h1 {
  font-size: 2.5rem;
}

h2,
.h2 {
  font-size: 2rem;
}

h3,
.h3 {
  font-size: 1.75rem;
}

h4,
.h4 {
  font-size: 1.5rem;
}

h5,
.h5 {
  font-size: 1.25rem;
}

h6,
.h6 {
  font-size: 1rem;
}

/* ==========================================================================
   Badges
   ========================================================================== */
.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out all ease-in-out;
  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out all ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out all ease-in-out;
}
a.badge:hover, a.badge:focus {
  text-decoration: none;
}

.badge:empty {
  display: none;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.single-product div.product .zapct-add-to-cart-wrapper .zapct-add-to-cart-button-wrapper .single_add_to_cart_button.button.alt,
.woocommerce ul.products.columns-3 li.product .inner-wrapper .product_type_zap_competition,
.zapct-newsletter-block .overlay .container .row > div [data-testid=form-row]:last-of-type > div button,
.btn,
.button {
  display: inline-block;
  font-family: "aktiv-grotesk", sans-serif;
  font-weight: 700;
  color: #212529;
  text-align: center;
  background: rgb(171, 201, 60);
  background: -o-linear-gradient(left, rgb(171, 201, 60) 0%, rgb(126, 187, 70) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgb(171, 201, 60)), to(rgb(126, 187, 70)));
  background: linear-gradient(90deg, rgb(171, 201, 60) 0%, rgb(126, 187, 70) 100%);
  border: 1px solid transparent;
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
  line-height: 1;
  border-radius: 30px;
  text-transform: uppercase;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.single-product div.product .zapct-add-to-cart-wrapper .zapct-add-to-cart-button-wrapper .single_add_to_cart_button.button.alt:hover,
.woocommerce ul.products.columns-3 li.product .inner-wrapper .product_type_zap_competition:hover,
.zapct-newsletter-block .overlay .container .row > div [data-testid=form-row]:last-of-type > div button:hover,
.btn:hover,
.button:hover {
  text-decoration: none;
  background: rgb(171, 201, 60);
  background: -o-linear-gradient(left, rgb(171, 201, 60) 0%, rgb(126, 187, 70) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgb(171, 201, 60)), to(rgb(126, 187, 70)));
  background: linear-gradient(90deg, rgb(171, 201, 60) 0%, rgb(126, 187, 70) 100%);
  color: #fff;
  border-color: transparent;
  -webkit-filter: brightness(110%);
  filter: brightness(110%);
}

.zapct-next-draw .btn {
  background: #000;
  color: #ABC93C;
}
.zapct-next-draw .btn:hover {
  background: #000;
  color: #fff;
}

/* ==========================================================================
   Cards
   ========================================================================== */
.woocommerce ul.products.columns-3 li.product .inner-wrapper,
.card {
  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;
  background-color: #1E1E1E;
  border: 1px solid #515357;
  border-radius: 20px;
  color: #fff;
}
.woocommerce ul.products.columns-3 li.product .inner-wrapper img,
.card img {
  border-radius: 20px 20px 0px 0px;
}

.card-body {
  padding: 1.25rem;
  color: #fff;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer {
  padding: 0.75rem 1.25rem;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

/* ==========================================================================
   Containers
   ========================================================================== */
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1200px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1360px;
  }
}
/* ==========================================================================
   Tables
   ========================================================================== */
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}
.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}
.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #dee2e6;
}
.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}
.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  color: #212529;
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: rgb(231.48, 239.88, 200.4);
}
.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: rgb(211.32, 226.92, 153.6);
}

.table-hover .table-primary:hover {
  background-color: rgb(222.8775903614, 234.3498795181, 180.4301204819);
}
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: rgb(222.8775903614, 234.3498795181, 180.4301204819);
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: silver;
}
.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: #8a8a8a;
}

.table-hover .table-secondary:hover {
  background-color: rgb(179.25, 179.25, 179.25);
}
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: rgb(179.25, 179.25, 179.25);
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: rgb(202.08, 222.8, 186.96);
}
.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: rgb(156.72, 195.2, 128.64);
}

.table-hover .table-success:hover {
  background-color: rgb(188.6177094972, 214.6086592179, 169.6513407821);
}
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: rgb(188.6177094972, 214.6086592179, 169.6513407821);
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: rgb(190.04, 228.96, 235.12);
}
.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: rgb(134.36, 206.64, 218.08);
}

.table-hover .table-info:hover {
  background-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}
.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: rgb(255, 237.64, 185.56);
}
.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: rgb(255, 222.76, 126.04);
}

.table-hover .table-warning:hover {
  background-color: rgb(255, 231.265, 160.06);
}
.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: rgb(255, 231.265, 160.06);
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: rgb(242.12, 190.88, 190.88);
}
.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: rgb(231.08, 135.92, 135.92);
}

.table-hover .table-danger:hover {
  background-color: rgb(237.8545454545, 169.6454545455, 169.6454545455);
}
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: rgb(237.8545454545, 169.6454545455, 169.6454545455);
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: rgb(253.04, 253.32, 253.6);
}
.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: rgb(251.36, 251.88, 252.4);
}

.table-hover .table-light:hover {
  background-color: rgb(238.165, 240.57, 242.975);
}
.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: rgb(238.165, 240.57, 242.975);
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: rgb(196.48, 196.76, 197.04);
}
.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: rgb(146.32, 146.84, 147.36);
}

.table-hover .table-dark:hover {
  background-color: rgb(183.6687019231, 184.01, 184.3512980769);
}
.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: rgb(183.6687019231, 184.01, 184.3512980769);
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}
.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: rgb(69.1465517241, 77.125, 85.1034482759);
}
.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table-dark {
  color: #fff;
  background-color: #343a40;
}
.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: rgb(69.1465517241, 77.125, 85.1034482759);
}
.table-dark.table-bordered {
  border: 0;
}
.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}
.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.zapct-footer {
  background-image: url("../images/bg-tile.png");
  background-repeat: repeat;
  border-top: 2px solid #ABC93C;
  padding-top: 3rem;
}
@media (max-width: 767.98px) {
  .zapct-footer .zapct-footer-nav > .row > div {
    margin-bottom: 2rem;
  }
}
.zapct-footer .zapct-footer-nav .zapct-footer-logo img {
  max-width: 180px;
  height: auto;
}
@media (max-width: 767.98px) {
  .zapct-footer .zapct-footer-nav .zapct-footer-logo {
    text-align: center;
  }
}
.zapct-footer .zapct-footer-nav .zapct-footer-navbar {
  padding: 0px;
  margin: 0px;
}
.zapct-footer .zapct-footer-nav .zapct-footer-navbar .menu-item {
  margin: 0px;
}
.zapct-footer .zapct-footer-nav .zapct-footer-navbar .menu-item a {
  font-weight: 700;
  text-transform: uppercase;
  color: #6c757d;
  text-decoration: none;
}
.zapct-footer .zapct-footer-nav .zapct-footer-navbar .menu-item a:hover {
  color: #ABC93C;
}
.zapct-footer .zapct-socials-trsutpilot {
  border-top: 1px solid #515357;
  position: relative;
  padding-top: 2rem;
  margin-top: 4rem;
}
.zapct-footer .zapct-socials-trsutpilot::after {
  content: "";
  position: absolute;
  background-color: #000;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 1px;
}
@media (max-width: 767.98px) {
  .zapct-footer .zapct-socials-trsutpilot > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .zapct-footer .zapct-socials-trsutpilot > div > div {
    margin: 1rem 0rem;
  }
}
.zapct-footer .zapct-socials-trsutpilot .zapct-footer-trustpilot img {
  max-width: 100%;
}
.zapct-footer .zapct-socials-trsutpilot .zapct-footer-social-icons a {
  margin: 0px 0.75rem 0px 0px !important;
}
.zapct-footer .zapct-socials-trsutpilot .zapct-footer-social-icons a i {
  width: 32px;
  height: 36px;
  position: relative;
  display: block;
}
.zapct-footer .zapct-socials-trsutpilot .zapct-footer-social-icons a i::before, .zapct-footer .zapct-socials-trsutpilot .zapct-footer-social-icons a i::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(171, 201, 60);
  background: -o-linear-gradient(left, rgb(171, 201, 60) 0%, rgb(126, 187, 70) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgb(171, 201, 60)), to(rgb(126, 187, 70)));
  background: linear-gradient(90deg, rgb(171, 201, 60) 0%, rgb(126, 187, 70) 100%);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M400 32H48A48 48 0 0 0 0 80v352a48 48 0 0 0 48 48h137.25V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.27c-30.81 0-40.42 19.12-40.42 38.73V256h68.78l-11 71.69h-57.78V480H400a48 48 0 0 0 48-48V80a48 48 0 0 0-48-48z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M400 32H48A48 48 0 0 0 0 80v352a48 48 0 0 0 48 48h137.25V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.27c-30.81 0-40.42 19.12-40.42 38.73V256h68.78l-11 71.69h-57.78V480H400a48 48 0 0 0 48-48V80a48 48 0 0 0-48-48z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.zapct-footer .zapct-socials-trsutpilot .zapct-footer-social-icons a i::after {
  opacity: 0;
  background: #428C0C;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.zapct-footer .zapct-socials-trsutpilot .zapct-footer-social-icons a i.fa-instagram-square::before, .zapct-footer .zapct-socials-trsutpilot .zapct-footer-social-icons a i.fa-instagram-square::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M224 202.66A53.34 53.34 0 1 0 277.36 256 53.38 53.38 0 0 0 224 202.66Zm124.71-41a54 54 0 0 0-30.41-30.41c-21-8.29-71-6.43-94.3-6.43s-73.25-1.93-94.31 6.43a54 54 0 0 0-30.41 30.41c-8.28 21-6.43 71.05-6.43 94.33s-1.85 73.27 6.47 94.34a54 54 0 0 0 30.41 30.41c21 8.29 71 6.43 94.31 6.43s73.24 1.93 94.3-6.43a54 54 0 0 0 30.41-30.41c8.35-21 6.43-71.05 6.43-94.33s1.92-73.26-6.43-94.33ZM224 338a82 82 0 1 1 82-82 81.9 81.9 0 0 1-82 82Zm85.38-148.3a19.14 19.14 0 1 1 19.13-19.14 19.1 19.1 0 0 1-19.09 19.18ZM400 32H48A48 48 0 0 0 0 80v352a48 48 0 0 0 48 48h352a48 48 0 0 0 48-48V80a48 48 0 0 0-48-48Zm-17.12 290c-1.29 25.63-7.14 48.34-25.85 67s-41.4 24.63-67 25.85c-26.41 1.49-105.59 1.49-132 0-25.63-1.29-48.26-7.15-67-25.85s-24.63-41.42-25.85-67c-1.49-26.42-1.49-105.61 0-132 1.29-25.63 7.07-48.34 25.85-67s41.47-24.56 67-25.78c26.41-1.49 105.59-1.49 132 0 25.63 1.29 48.33 7.15 67 25.85s24.63 41.42 25.85 67.05c1.49 26.32 1.49 105.44 0 131.88Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M224 202.66A53.34 53.34 0 1 0 277.36 256 53.38 53.38 0 0 0 224 202.66Zm124.71-41a54 54 0 0 0-30.41-30.41c-21-8.29-71-6.43-94.3-6.43s-73.25-1.93-94.31 6.43a54 54 0 0 0-30.41 30.41c-8.28 21-6.43 71.05-6.43 94.33s-1.85 73.27 6.47 94.34a54 54 0 0 0 30.41 30.41c21 8.29 71 6.43 94.31 6.43s73.24 1.93 94.3-6.43a54 54 0 0 0 30.41-30.41c8.35-21 6.43-71.05 6.43-94.33s1.92-73.26-6.43-94.33ZM224 338a82 82 0 1 1 82-82 81.9 81.9 0 0 1-82 82Zm85.38-148.3a19.14 19.14 0 1 1 19.13-19.14 19.1 19.1 0 0 1-19.09 19.18ZM400 32H48A48 48 0 0 0 0 80v352a48 48 0 0 0 48 48h352a48 48 0 0 0 48-48V80a48 48 0 0 0-48-48Zm-17.12 290c-1.29 25.63-7.14 48.34-25.85 67s-41.4 24.63-67 25.85c-26.41 1.49-105.59 1.49-132 0-25.63-1.29-48.26-7.15-67-25.85s-24.63-41.42-25.85-67c-1.49-26.42-1.49-105.61 0-132 1.29-25.63 7.07-48.34 25.85-67s41.47-24.56 67-25.78c26.41-1.49 105.59-1.49 132 0 25.63 1.29 48.33 7.15 67 25.85s24.63 41.42 25.85 67.05c1.49 26.32 1.49 105.44 0 131.88Z'/%3E%3C/svg%3E");
}
.zapct-footer .zapct-socials-trsutpilot .zapct-footer-social-icons a i.fa-tiktok::before, .zapct-footer .zapct-socials-trsutpilot .zapct-footer-social-icons a i.fa-tiktok::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M448 209.91a210.06 210.06 0 0 1-122.77-39.25v178.72A162.55 162.55 0 1 1 185 188.31v89.89a74.62 74.62 0 1 0 52.23 71.18V0h88a121.18 121.18 0 0 0 1.86 22.17A122.18 122.18 0 0 0 381 102.39a121.43 121.43 0 0 0 67 20.14Z'/%3E%3C/svg%3E%0A");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M448 209.91a210.06 210.06 0 0 1-122.77-39.25v178.72A162.55 162.55 0 1 1 185 188.31v89.89a74.62 74.62 0 1 0 52.23 71.18V0h88a121.18 121.18 0 0 0 1.86 22.17A122.18 122.18 0 0 0 381 102.39a121.43 121.43 0 0 0 67 20.14Z'/%3E%3C/svg%3E%0A");
}
.zapct-footer .zapct-socials-trsutpilot .zapct-footer-social-icons a:hover i::after {
  opacity: 1;
}
.zapct-footer .zapct-legal {
  border-top: 1px solid #515357;
  position: relative;
  color: #6c757d;
}
.zapct-footer .zapct-legal::after {
  content: "";
  position: absolute;
  background-color: #000;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 1px;
}
@media (max-width: 767.98px) {
  .zapct-footer .zapct-legal > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .zapct-footer .zapct-legal > div > div {
    margin: 1rem 0rem;
  }
}
.zapct-footer .zapct-legal .footer-legal .pipe {
  padding: 0rem 0.5rem;
}
@media (max-width: 767.98px) {
  .zapct-footer .zapct-legal .footer-legal > span {
    display: block;
    text-align: center;
    margin: 0.25rem 0rem;
  }
  .zapct-footer .zapct-legal .footer-legal .pipe {
    display: none;
  }
}
.zapct-footer .zapct-legal .zapct-card-icons {
  width: 160px;
  height: 30px;
  background-image: url(../images/payment-types.png);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 767.98px) {
  .zapct-footer .zapct-legal .zapct-card-icons {
    margin-top: 0px;
  }
}
.zapct-footer .zapct-legal .zapct-card-icons i {
  display: none;
}

/* ==========================================================================
   Header
   ========================================================================== */
.zapct-navbar {
  background-image: url("../images/bg-tile.png");
  background-repeat: repeat;
  z-index: 1000;
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  left: 0px;
  border-bottom: 2px solid #ABC93C;
}
.zapct-navbar .header-trustpilot {
  background-color: #000;
  padding: 0.5rem 1rem;
}
.zapct-navbar .header-trustpilot img {
  max-width: 100%;
}
.zapct-navbar .zapct-navbar-primary {
  padding: 0px 0vw;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.zapct-navbar .zapct-navbar-primary .navbar-brand {
  width: 200px;
}
@media (max-width: 767.98px) {
  .zapct-navbar .zapct-navbar-primary .navbar-brand {
    width: auto;
  }
}
.zapct-navbar .zapct-navbar-primary .navbar-brand img {
  height: 80px;
  width: auto;
  margin: 0px;
  -webkit-transform: scale(2.25) translate(25px, 8px);
  -ms-transform: scale(2.25) translate(25px, 8px);
  transform: scale(2.25) translate(25px, 8px);
}
@media (max-width: 991.98px) {
  .zapct-navbar .zapct-navbar-primary .navbar-brand img {
    -webkit-transform: scale(1.8) translate(25px, 4px);
    -ms-transform: scale(1.8) translate(25px, 4px);
    transform: scale(1.8) translate(25px, 4px);
  }
}
@media (max-width: 767.98px) {
  .zapct-navbar .zapct-navbar-primary .navbar-brand img {
    -webkit-transform: scale(1.6) translate(7px, 2px);
    -ms-transform: scale(1.6) translate(7px, 2px);
    transform: scale(1.6) translate(7px, 2px);
    height: 50px;
  }
}
@media (max-width: 1199.98px) {
  .zapct-navbar .zapct-navbar-primary .navbar-toggler {
    display: block !important;
    opacity: 0.75;
    margin-left: auto;
  }
  .zapct-navbar .zapct-navbar-primary .navbar-toggler:hover {
    opacity: 1;
  }
  .zapct-navbar .zapct-navbar-primary .navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28256,256, 256, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    -webkit-box-shadow: 0 0.5rem 1rem rgba(23, 23, 23, 0.15);
    box-shadow: 0 0.5rem 1rem rgba(23, 23, 23, 0.15);
    width: 2em;
    height: 2em;
  }
}
@media (max-width: 767.98px) {
  .zapct-navbar .zapct-navbar-primary .navbar-toggler {
    opacity: 1;
    font-size: 1rem;
  }
}
.zapct-navbar .zapct-navbar-primary .offcanvas-collapse {
  width: auto;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media (max-width: 1199.98px) {
  .zapct-navbar .zapct-navbar-primary .offcanvas-collapse {
    width: 100%;
    max-width: 350px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: auto;
    right: 0px;
    padding-right: 1rem;
    padding-left: 1rem;
    overflow-y: auto;
    background-color: #1E1E1E;
    border-left: 2px solid #ABC93C;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    -webkit-transform: translateX(110%);
    -ms-transform: translateX(110%);
    transform: translateX(110%);
    z-index: 9999;
    -webkit-box-shadow: 0 0.5rem 1rem rgba(23, 23, 23, 0.15);
    box-shadow: 0 0.5rem 1rem rgba(23, 23, 23, 0.15);
  }
  .zapct-navbar .zapct-navbar-primary .offcanvas-collapse.open {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
  .zapct-navbar .zapct-navbar-primary .offcanvas-collapse .offcanvas-close {
    display: block;
    padding: 0.5rem;
    color: #fff;
    font-size: 4rem;
    background: transparent;
    border: none;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.75;
    -webkit-box-shadow: 0 0.5rem 1rem rgba(23, 23, 23, 0.15);
    box-shadow: 0 0.5rem 1rem rgba(23, 23, 23, 0.15);
  }
  .zapct-navbar .zapct-navbar-primary .offcanvas-collapse .offcanvas-close:hover {
    opacity: 1;
  }
}
@media (max-width: 767.98px) {
  .zapct-navbar .zapct-navbar-primary .offcanvas-collapse {
    max-width: 100%;
  }
}
.zapct-navbar .zapct-navbar-primary .offcanvas-collapse #zapct-primary-navbar {
  padding: 0rem 1rem;
}
.zapct-navbar .zapct-navbar-primary .offcanvas-collapse #zapct-primary-navbar #menu-primary-menu {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0px auto !important;
}
@media (max-width: 1199.98px) {
  .zapct-navbar .zapct-navbar-primary .offcanvas-collapse #zapct-primary-navbar #menu-primary-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.zapct-navbar .zapct-navbar-primary .offcanvas-collapse #zapct-primary-navbar .menu-item .nav-link {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
  padding-right: 0.5vw;
  padding-left: 0.5vw;
}
@media (max-width: 1199.98px) {
  .zapct-navbar .zapct-navbar-primary .offcanvas-collapse #zapct-primary-navbar .menu-item .nav-link {
    text-align: center;
    padding: 1rem 0rem;
    line-height: 1;
  }
}
.zapct-navbar .zapct-navbar-primary .offcanvas-collapse #zapct-primary-navbar .menu-item .nav-link:hover {
  color: #ABC93C;
}
.zapct-navbar .zapct-navbar-primary .cart-account {
  height: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin-left: 1rem;
}
@media (max-width: 767.98px) {
  .zapct-navbar .zapct-navbar-primary .cart-account {
    margin-left: 0rem;
  }
}
.zapct-navbar .zapct-navbar-primary .cart-account .nav-item {
  border-left: 1px solid #515357;
  position: relative;
  padding: 0px;
}
.zapct-navbar .zapct-navbar-primary .cart-account .nav-item::after {
  content: "";
  position: absolute;
  background-color: #000;
  left: 0px;
  top: 0px;
  width: 1px;
  height: 100%;
}
.zapct-navbar .zapct-navbar-primary .cart-account .nav-item .nav-link {
  background-image: url("../images/icon-user.png");
  background-repeat: no-repeat;
  background-size: 35px 35px;
  background-position: center;
  height: 100px;
  width: 100px;
  padding: 0px 2vw;
  opacity: 0.75;
  margin: 0px;
  position: relative;
}
@media (max-width: 767.98px) {
  .zapct-navbar .zapct-navbar-primary .cart-account .nav-item .nav-link {
    height: 50px;
    width: 60px;
    background-size: 25px 25px;
    opacity: 1;
  }
}
.zapct-navbar .zapct-navbar-primary .cart-account .nav-item .nav-link:hover {
  color: #ABC93C;
  opacity: 1;
}
.zapct-navbar .zapct-navbar-primary .cart-account .nav-item .nav-link i {
  position: inherit;
}
.zapct-navbar .zapct-navbar-primary .cart-account .nav-item .nav-link i::before {
  content: "";
}
.zapct-navbar .zapct-navbar-primary .cart-account .nav-item .nav-link i #basket-count {
  position: relative;
  background-color: #ABC93C;
  border: 2px solid #1E1E1E;
  color: #000;
  border-radius: 50%;
  top: 85%;
  left: 60%;
  width: 24px;
  height: 24px;
  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: 12px;
  font-family: "aktiv-grotesk", sans-serif;
}
@media (max-width: 767.98px) {
  .zapct-navbar .zapct-navbar-primary .cart-account .nav-item .nav-link i #basket-count {
    top: 5%;
    left: 55%;
  }
}
.zapct-navbar .zapct-navbar-primary .cart-account .nav-item .nav-link.nav-basket {
  background-image: url("../images/icon-cart.svg");
  background-repeat: no-repeat;
  background-size: 45px 35px;
}

/* ==========================================================================
   Newsletter
   ========================================================================== */
.zapct-newsletter-block {
  padding: 0rem 0rem 0rem !important;
  background-image: url("../images/newsletter-cut-long.png") !important;
  background-position: left center !important;
  background-repeat: no-repeat !important;
  background-size: auto 100% !important;
}
@media (max-width: 1199.98px) {
  .zapct-newsletter-block {
    background-position: -100px center !important;
  }
}
@media (max-width: 1199.98px) {
  .zapct-newsletter-block {
    background-position: -150px center !important;
  }
}
@media (max-width: 991.98px) {
  .zapct-newsletter-block {
    background-image: none !important;
    background-color: #1E1E1E;
    border-top: 2px solid #ABC93C;
  }
}
.zapct-newsletter-block .overlay {
  padding: 10vw 0rem 0rem;
}
@media (max-width: 991.98px) {
  .zapct-newsletter-block .overlay {
    padding: 2rem 0rem 0rem;
  }
}
.zapct-newsletter-block .overlay .container {
  padding-bottom: 1rem;
  padding-top: 1rem;
  -webkit-transform: translateY(-3vw);
  -ms-transform: translateY(-3vw);
  transform: translateY(-3vw);
}
@media (max-width: 1199.98px) {
  .zapct-newsletter-block .overlay .container {
    padding-bottom: 0rem;
    padding-top: 1rem;
  }
}
.zapct-newsletter-block .overlay .container .row > div * {
  font-family: "aktiv-grotesk", sans-serif !important;
}
.zapct-newsletter-block .overlay .container .row > div form {
  -webkit-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  transform: translateX(-10px);
}
@media (max-width: 767.98px) {
  .zapct-newsletter-block .overlay .container .row > div form {
    padding-left: 0px !important;
    padding-right: 0px !important;
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
  }
}
.zapct-newsletter-block .overlay .container .row > div [data-testid=form-row]:first-of-type > div {
  padding-bottom: 2rem !important;
}
.zapct-newsletter-block .overlay .container .row > div [data-testid=form-row]:first-of-type > div h3 {
  margin: 0px 0px 0.25rem !important;
}
.zapct-newsletter-block .overlay .container .row > div [data-testid=form-row]:first-of-type > div h3 span {
  font-weight: 600 !important;
  text-transform: uppercase !important;
}
.zapct-newsletter-block .overlay .container .row > div [data-testid=form-row]:first-of-type > div h2 {
  margin: 0px 0px 0.5rem !important;
}
.zapct-newsletter-block .overlay .container .row > div [data-testid=form-row]:first-of-type > div h2:first-of-type {
  margin: 0px !important;
}
.zapct-newsletter-block .overlay .container .row > div [data-testid=form-row]:first-of-type > div h2 span {
  font-weight: 900 !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  color: #fff !important;
}
.zapct-newsletter-block .overlay .container .row > div [data-testid=form-row]:first-of-type > div p span {
  color: #fff !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
}
.zapct-newsletter-block .overlay .container .row > div [data-testid=form-row] > div {
  -webkit-box-flex: 1 !important;
  -ms-flex: 1 !important;
  flex: 1 !important;
}
@media (max-width: 767.98px) {
  .zapct-newsletter-block .overlay .container .row > div [data-testid=form-row] > div {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
}
.zapct-newsletter-block .overlay .container .row > div [data-testid=form-row] > div input {
  width: 100% !important;
  border-radius: 30px !important;
  background-color: #2E2F30 !important;
  color: #fff !important;
  border: 1px solid #515357 !important;
}
.zapct-newsletter-block .overlay .container .row > div [data-testid=form-row] > div input::-webkit-input-placeholder {
  font-family: "aktiv-grotesk", sans-serif !important;
  color: #fff !important;
}
.zapct-newsletter-block .overlay .container .row > div [data-testid=form-row] > div input::-moz-placeholder {
  font-family: "aktiv-grotesk", sans-serif !important;
  color: #fff !important;
}
.zapct-newsletter-block .overlay .container .row > div [data-testid=form-row] > div input:-ms-input-placeholder {
  font-family: "aktiv-grotesk", sans-serif !important;
  color: #fff !important;
}
.zapct-newsletter-block .overlay .container .row > div [data-testid=form-row] > div input::-ms-input-placeholder {
  font-family: "aktiv-grotesk", sans-serif !important;
  color: #fff !important;
}
.zapct-newsletter-block .overlay .container .row > div [data-testid=form-row] > div input::placeholder {
  font-family: "aktiv-grotesk", sans-serif !important;
  color: #fff !important;
}
.zapct-newsletter-block .overlay .container .row > div [data-testid=form-row] > div button {
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  width: 100% !important;
  font-weight: 600 !important;
  color: #212529 !important;
  text-align: center !important;
  background: -o-linear-gradient(left, rgb(171, 201, 60) 0%, rgb(126, 187, 70) 100%) !important;
  background: -webkit-gradient(linear, left top, right top, from(rgb(171, 201, 60)), to(rgb(126, 187, 70))) !important;
  background: linear-gradient(90deg, rgb(171, 201, 60) 0%, rgb(126, 187, 70) 100%) !important;
  border: 1px solid transparent !important;
  font-size: 0.875rem !important;
  line-height: 1 !important;
  border-radius: 30px !important;
  text-transform: uppercase !important;
}
.zapct-newsletter-block .overlay .container .row > div [data-testid=form-row] > div button:hover {
  text-decoration: none !important;
  background: -o-linear-gradient(left, rgb(171, 201, 60) 0%, rgb(126, 187, 70) 100%) !important;
  background: -webkit-gradient(linear, left top, right top, from(rgb(171, 201, 60)), to(rgb(126, 187, 70))) !important;
  background: linear-gradient(90deg, rgb(171, 201, 60) 0%, rgb(126, 187, 70) 100%) !important;
  color: #fff !important;
  border-color: transparent !important;
}

/* ==========================================================================
   Dark Theme
   ========================================================================== */
body.dark-theme {
  background-color: #2E2F30;
  color: #f8f9fa;
}
body.dark-theme .section-title {
  color: #f8f9fa;
}
body.dark-theme .zapct-navbar {
  background-color: #2E2F30;
}
body.dark-theme .zapct-navbar #menu-primary-menu a {
  color: #f8f9fa;
}
body.dark-theme .zapct-navbar .cart-account .nav-link i {
  color: #f8f9fa;
}
body.dark-theme .zapct-page-title {
  background-color: #1E1E1E;
}
body.dark-theme .zapct-page-title h1 {
  color: #f8f9fa;
}
body.dark-theme ul.products li.product .inner-wrapper {
  background-color: #f8f9fa;
}
body.dark-theme div.product .entry-summary .price {
  color: #f8f9fa;
}
body.dark-theme div.product .entry-summary .zap-competition-question-wrap .zap-competition-question-text {
  color: #f8f9fa;
}
body.dark-theme div.product .entry-summary .zap-competition-question-wrap .zap-lottery-question-answers label {
  color: #f8f9fa;
}
body.dark-theme div.product .entry-summary .zap-competition-question-wrap .zap-lottery-question-answers input:checked ~ label {
  color: #2E2F30;
}
body.dark-theme div.product .entry-summary #competition-countdown {
  background-color: transparent;
}
body.dark-theme .zapct-footer {
  background-color: #1E1E1E;
}
body.dark-theme .zapct-footer .zapct-footer-nav ul li a {
  color: #fff;
}
body.dark-theme .zapct-footer .zapct-legal {
  color: #f8f9fa;
}
body.dark-theme .zapct-footer .zapct-legal a {
  color: #fff;
}

/* ==========================================================================
   General CSS
   ========================================================================== */
body {
  background-image: url("../images/bg-tile.png");
  background-repeat: repeat;
  background-color: #1E1E1E;
  color: #fff;
}

.zapct-homepage-section {
  padding: 3rem 0;
  border-bottom: none;
  position: relative;
}
.zapct-homepage-section .anchor {
  position: absolute;
  top: -100px;
}

.zapct-page-title {
  background-color: #1E1E1E;
}
@media (max-width: 767.98px) {
  .zapct-page-title {
    margin-bottom: 2rem;
  }
}
.zapct-page-title h1 {
  text-align: center;
}

.section-title,
.zapct-page-title h1 {
  font-size: 34px;
  font-weight: 900;
  color: #fff !important;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .section-title,
  .zapct-page-title h1 {
    font-size: 25px;
  }
}

.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .card-header .card-header-tabs,
.zapc-competition-results-wrapper .nav-tabs,
.nav-pills {
  list-style: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: none;
}
@media (max-width: 767.98px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .card-header .card-header-tabs,
  .zapc-competition-results-wrapper .nav-tabs,
  .nav-pills {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .card-header .card-header-tabs .nav-item,
.zapc-competition-results-wrapper .nav-tabs .nav-item,
.nav-pills .nav-item {
  padding: 0px;
  margin: 0px 0.75rem;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .card-header .card-header-tabs .nav-item .nav-link,
.zapc-competition-results-wrapper .nav-tabs .nav-item .nav-link,
.nav-pills .nav-item .nav-link {
  padding: 0.5rem 0rem 1.5rem;
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  background-color: transparent !important;
  border-radius: 0px !important;
  position: relative;
  border: none;
  border-bottom: 2px solid transparent;
}
@media (max-width: 767.98px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .card-header .card-header-tabs .nav-item .nav-link,
  .zapc-competition-results-wrapper .nav-tabs .nav-item .nav-link,
  .nav-pills .nav-item .nav-link {
    padding: 0.5rem 0rem 1rem;
    margin-bottom: 1rem;
  }
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .card-header .card-header-tabs .nav-item .nav-link::after,
.zapc-competition-results-wrapper .nav-tabs .nav-item .nav-link::after,
.nav-pills .nav-item .nav-link::after {
  content: "";
  position: absolute;
  display: none;
  left: calc(50% - 6px);
  bottom: 0px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 6px 6px;
  border-color: transparent transparent #ABC93C transparent;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .card-header .card-header-tabs .nav-item .nav-link:hover,
.zapc-competition-results-wrapper .nav-tabs .nav-item .nav-link:hover,
.nav-pills .nav-item .nav-link:hover {
  color: #ABC93C;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .card-header .card-header-tabs .nav-item .nav-link.active,
.zapc-competition-results-wrapper .nav-tabs .nav-item .nav-link.active,
.nav-pills .nav-item .nav-link.active {
  color: #ABC93C;
  border-bottom: 2px solid #ABC93C;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .card-header .card-header-tabs .nav-item .nav-link.active::after,
.zapc-competition-results-wrapper .nav-tabs .nav-item .nav-link.active::after,
.nav-pills .nav-item .nav-link.active::after {
  display: block;
}

/* ==========================================================================
   WooCommerce - Cart
   ========================================================================== */
.zap-competition-qty-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.zap-competition-qty-cart .quantity {
  background-color: transparent;
  border: none !important;
}
.zap-competition-qty-cart .quantity .qty {
  background-color: transparent;
  color: #fff;
  border: none;
  -moz-appearance: textfield;
}
.zap-competition-qty-cart .quantity .qty::-webkit-outer-spin-button, .zap-competition-qty-cart .quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.zap-competition-qty-cart > input[type=button] {
  background-color: #fff;
  border: none !important;
  color: #000;
  font-family: "aktiv-grotesk", sans-serif;
  font-weight: 600;
  width: 45px !important;
  height: 45px !important;
  font-size: 40px;
  line-height: 45px;
  border-radius: 10px;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  -webkit-filter: none;
  filter: none;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.zap-competition-qty-cart > input[type=button]:hover {
  background-color: #ABC93C !important;
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
}

/* ==========================================================================
   WooCommerce - Checkout
   ========================================================================== */
.woocommerce-form-coupon .card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.woocommerce-form-coupon .card-body > * {
  margin-top: 0px !important;
  width: calc(50% - 15px);
}
@media (max-width: 767.98px) {
  .woocommerce-form-coupon .card-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .woocommerce-form-coupon .card-body > * {
    width: 100%;
  }
  .woocommerce-form-coupon .card-body > *.input-text {
    margin: 0px 0px 1rem 0px !important;
  }
}

@media (max-width: 767.98px) {
  .woocommerce-cart .main-container > .woocommerce,
  .woocommerce-checkout .main-container > .woocommerce {
    padding: 0px;
  }
}
/* ==========================================================================
   WooCommerce - General
   ========================================================================== */
.zap-lottery-user-ticket-count,
.woocommerce-info,
.alert {
  border-radius: 20px;
}

.alert-info {
  background-color: #515357;
  color: #fff;
  border-color: #515357;
}

ul.pagination {
  margin: 2rem auto 2rem;
}
ul.pagination .page-item .page-link {
  background-color: #1E1E1E;
  color: #fff;
  border-color: #515357;
}
ul.pagination .page-item .page-link.current, ul.pagination .page-item .page-link:hover {
  background-color: #ABC93C;
  color: #fff;
  border-color: #ABC93C;
}

.table {
  color: #fff;
  background-color: #2E2F30;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #515357 !important;
}
.table tr {
  color: #fff !important;
}
.table thead th {
  background-color: #1E1E1E !important;
  border-color: #515357 !important;
  color: #fff !important;
  font-weight: 900;
}
.table tfoot th {
  border-color: #515357 !important;
}
.table tfoot td,
.table tbody td {
  border-color: #515357 !important;
  background-color: transparent !important;
}

/* ==========================================================================
   WooCommerce - My Account
   ========================================================================== */
.woocommerce-account.logged-out .woocommerce {
  padding: 0rem !important;
  border: none;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.woocommerce-account .woocommerce {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #515357;
  background-color: #1E1E1E;
  border-radius: 20px;
  padding: 0px;
}
@media (max-width: 767.98px) {
  .woocommerce-account .woocommerce {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation {
  width: 100%;
  max-width: 30%;
  padding: 1.5rem;
  background-color: #1E1E1E !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  margin: 0px !important;
  border-radius: 20px 0px 0px 20px;
}
@media (max-width: 991.98px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-navigation {
    max-width: 100%;
    padding: 1rem;
  }
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .nav-pills {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .nav-pills .nav-item {
  margin: 0px 0px 0.5rem 0px !important;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .nav-pills .nav-item .nav-link {
  background-color: transparent;
  border: 2px solid #ABC93C;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 20px !important;
  text-align: left;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .nav-pills .nav-item .nav-link:before {
  content: "";
  position: relative;
  top: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 0px;
  top: -3px;
  width: 16px;
  height: 16px;
  margin-right: 0.75rem;
  background-color: transparent;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .nav-pills .nav-item .nav-link::after {
  content: none !important;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .nav-pills .nav-item .nav-link.active, .woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .nav-pills .nav-item .nav-link:hover {
  background-color: #ABC93C !important;
  color: #000;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .nav-pills .nav-item.woocommerce-MyAccount-navigation-link--dashboard a:before {
  content: "\f145";
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .nav-pills .nav-item.woocommerce-MyAccount-navigation-link--orders a:before {
  content: "\f1da";
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .nav-pills .nav-item.woocommerce-MyAccount-navigation-link--points-and-rewards a:before {
  content: "\f005";
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .nav-pills .nav-item.woocommerce-MyAccount-navigation-link--woo-wallet a:before {
  content: "\f555";
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .nav-pills .nav-item.woocommerce-MyAccount-navigation-link--coupons a:before {
  content: "\f646";
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .nav-pills .nav-item.woocommerce-MyAccount-navigation-link--edit-address a:before {
  content: "\f2bb";
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .nav-pills .nav-item.woocommerce-MyAccount-navigation-link--payment-methods a:before {
  content: "\f38a";
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .nav-pills .nav-item.woocommerce-MyAccount-navigation-link--edit-account a:before {
  content: "\f007";
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .nav-pills .nav-item.woocommerce-MyAccount-navigation-link--customer-logout a:before {
  content: "\f00d";
  border-radius: 0 0 0 5px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
  max-width: 70%;
  width: 100%;
  padding: 1.5rem;
  background-color: transparent;
  border-radius: 0px 20px 20px 0px;
}
@media (max-width: 767.98px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-content {
    max-width: 100%;
    padding: 1.5rem 1rem 1rem;
  }
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card {
  background-color: transparent;
  border: none;
  border-radius: 0px;
  padding: 0rem 0rem 0rem;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0px !important;
  color: #fff;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0px;
  padding: 0px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .card-header .card-header-tabs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0px 0px 1rem;
}
@media (max-width: 767.98px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .card-header .card-header-tabs {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .card-header .card-header-tabs .nav-item {
  width: auto;
  max-width: 50%;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .card-header .card-header-tabs .nav-item .nav-link {
  text-align: center;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .tab-content {
  padding: 0rem;
  color: #6c757d;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .tab-content .row {
  margin: 0px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .tab-content#zapc-recent-tickets {
  border: none;
  border-radius: 4px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .tab-content#zapc-recent-tickets .zapc-single-ticket-wrap {
  padding: 1.5rem 0rem !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 2px solid #515357;
  color: #fff;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .tab-content#zapc-recent-tickets .zapc-single-ticket-wrap:last-child {
  border-bottom: none;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .tab-content#zapc-recent-tickets .zapc-single-ticket-wrap strong:last-of-type {
  margin-left: auto;
}
@media (max-width: 991.98px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .tab-content#zapc-recent-tickets .zapc-single-ticket-wrap strong:last-of-type {
    width: 100%;
    margin: 1rem 0px 0px;
  }
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .tab-content#zapc-recent-tickets .zapc-single-ticket-wrap strong:last-of-type .zapc-tickets-btn-toggle,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .tab-content#zapc-recent-tickets .zapc-single-ticket-wrap strong:last-of-type .zapc-tickets-btn {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1.4px;
  color: #ABC93C;
  text-transform: uppercase;
  text-decoration: none !important;
}
@media (max-width: 991.98px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .tab-content#zapc-recent-tickets .zapc-single-ticket-wrap strong:last-of-type .zapc-tickets-btn-toggle,
  .woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .tab-content#zapc-recent-tickets .zapc-single-ticket-wrap strong:last-of-type .zapc-tickets-btn {
    width: 100%;
  }
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .tab-content#zapc-recent-tickets .zapc-single-ticket-wrap strong:last-of-type .zapc-tickets-btn-toggle:hover,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .tab-content#zapc-recent-tickets .zapc-single-ticket-wrap strong:last-of-type .zapc-tickets-btn:hover {
  color: #fff;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .tab-content#zapc-recent-tickets .zapc-single-ticket-wrap .zapc-my-account-ticket-wrapper {
  width: 100%;
  margin: 1rem 0px 0.5rem !important;
  padding: 1rem !important;
  background-color: #2E2F30 !important;
  color: #fff !important;
  border-radius: 20px !important;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card #my-account-order-table tbody tr {
  padding-top: 1rem;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .woocommerce-orders-table__cell-order-actions a {
  width: 100%;
  min-width: auto;
  margin: 0.25rem 0rem;
  padding: 5px 10px;
  font-size: 0.75rem;
  text-decoration: none;
  color: #fff !important;
  text-transform: uppercase;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .woocommerce-orders-table__cell-order-actions a::after {
  content: none !important;
}
@media (max-width: 767.98px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .woocommerce-orders-table__cell-order-actions a {
    margin: 0.5rem 0rem;
  }
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .woocommerce-customer-details .woocommerce-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .woocommerce-customer-details .woocommerce-columns .woocommerce-column {
  width: 50%;
  max-width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}
@media (max-width: 767.98px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .woocommerce-customer-details .woocommerce-columns .woocommerce-column {
    width: 100%;
    padding: 0px;
  }
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .woocommerce-customer-details .woocommerce-columns .woocommerce-column h2 {
  font-size: 1.5rem;
  text-transform: capitalize;
}

/* ==========================================================================
   WooCommerce - Product Archive
   ========================================================================== */
.post-type-archive-product .zap-competition-accordion-wrapper {
  display: none;
}

/* ==========================================================================
   WooCommerce - Product Loop
   ========================================================================== */
.woocommerce ul.products.columns-3 li.product {
  margin-top: 20px;
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .woocommerce ul.products.columns-3 li.product {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.woocommerce ul.products.columns-3 li.product .inner-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-bottom: 0px;
}
.woocommerce ul.products.columns-3 li.product .inner-wrapper .woocommerce-LoopProduct-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
}
.woocommerce ul.products.columns-3 li.product .inner-wrapper .woocommerce-LoopProduct-link .zapc-date-banner {
  background-color: #515357;
  border: none;
  margin: 0px;
  position: absolute;
  left: 50%;
  width: auto;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 90%;
  padding: 0.35rem 1rem;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  border-radius: 20px;
}
.woocommerce ul.products.columns-3 li.product .inner-wrapper .woocommerce-LoopProduct-link .zapc-date-banner .inner {
  background-color: transparent;
}
.woocommerce ul.products.columns-3 li.product .inner-wrapper .woocommerce-LoopProduct-link .zapc-date-banner.zap-draw-days-1 {
  background-color: #428C0C;
}
.woocommerce ul.products.columns-3 li.product .inner-wrapper .woocommerce-LoopProduct-link .zapc-date-banner.zap-draw-days-0 {
  background-color: #D11A1A;
}
.woocommerce ul.products.columns-3 li.product .inner-wrapper .woocommerce-LoopProduct-link .zapct-thumbnail-wrap {
  border-bottom: 2px solid #ABC93C;
}
.woocommerce ul.products.columns-3 li.product .inner-wrapper .woocommerce-LoopProduct-link .zapct-thumbnail-wrap img {
  border-radius: 20px 20px 0px 0px;
}
.woocommerce ul.products.columns-3 li.product .inner-wrapper .woocommerce-LoopProduct-link .zapc-countdown {
  padding: 0px;
  margin: 1.5rem 1rem 0rem;
}
.woocommerce ul.products.columns-3 li.product .inner-wrapper .woocommerce-LoopProduct-link .zap-competitions-progress-loop {
  margin: 1.5rem 1rem 1.5rem;
}
.woocommerce ul.products.columns-3 li.product .inner-wrapper .woocommerce-LoopProduct-link .price {
  padding-top: 0rem;
  margin: 0px 1rem 0.25rem;
}
.woocommerce ul.products.columns-3 li.product .inner-wrapper .woocommerce-LoopProduct-link .woocommerce-loop-product__title {
  margin: 0px 1rem 0.75rem;
  padding: 0px;
  font-size: 26px;
  font-weight: 600;
  color: #fff;
}
.woocommerce ul.products.columns-3 li.product .inner-wrapper .woocommerce-LoopProduct-link .zapc-cash-alt {
  font-size: 18px;
  font-weight: 600;
  color: #515357;
  padding: 0.25rem 1rem;
  border: 2px solid #515357;
  border-radius: 20px;
  margin: 0px 1rem 2rem;
  text-transform: uppercase;
  text-align: center;
}
.woocommerce ul.products.columns-3 li.product .inner-wrapper .product_type_zap_competition {
  margin: auto 1rem 1rem;
  position: relative;
}

.woocommerce ul.products.columns-3 li.product .inner-wrapper .woocommerce-LoopProduct-link .price,
.single-product div.product .price {
  font-size: 36px;
  color: #ABC93C;
  font-weight: 900;
  line-height: 1;
}
.woocommerce ul.products.columns-3 li.product .inner-wrapper .woocommerce-LoopProduct-link .price del,
.single-product div.product .price del {
  color: #fff;
  font-weight: 600;
  font-size: 30px;
}
.woocommerce ul.products.columns-3 li.product .inner-wrapper .woocommerce-LoopProduct-link .price ins,
.single-product div.product .price ins {
  text-decoration: none;
}
.woocommerce ul.products.columns-3 li.product .inner-wrapper .woocommerce-LoopProduct-link .price .price_suffix,
.single-product div.product .price .price_suffix {
  display: none;
  font-size: 18px;
  font-weight: 600;
  color: #515357;
}

.woocommerce ul.products li.product .inner-wrapper .zap-competitions-progress-loop .progress-track,
.single-product div.product .summary .zap-competitions-progress .progress-track {
  border: none;
  border-radius: 10px;
  background-color: #515357;
  margin-top: 0rem;
  height: 20px;
  overflow: hidden;
}
.woocommerce ul.products li.product .inner-wrapper .zap-competitions-progress-loop .progress-track .mini-label,
.woocommerce ul.products li.product .inner-wrapper .zap-competitions-progress-loop .progress-track .percentage-label,
.single-product div.product .summary .zap-competitions-progress .progress-track .mini-label,
.single-product div.product .summary .zap-competitions-progress .progress-track .percentage-label {
  right: auto;
  font-size: 12px;
  color: #000;
  z-index: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: absolute;
  top: 2px;
  left: 5px;
  padding: 0rem 0.5rem;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  width: 100%;
  text-transform: uppercase;
}
.woocommerce ul.products li.product .inner-wrapper .zap-competitions-progress-loop .progress-track .progress-bar,
.single-product div.product .summary .zap-competitions-progress .progress-track .progress-bar {
  background: rgb(171, 201, 60);
  background: -o-linear-gradient(left, rgb(171, 201, 60) 0%, rgb(126, 187, 70) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgb(171, 201, 60)), to(rgb(126, 187, 70)));
  background: linear-gradient(90deg, rgb(171, 201, 60) 0%, rgb(126, 187, 70) 100%);
  height: 100%;
  border-radius: 10px;
  border: 2px solid #515357;
  position: relative;
  overflow: visible;
  z-index: 0;
  position: relative;
}
.woocommerce ul.products li.product .inner-wrapper .zap-competitions-progress-loop .progress-track .progress-bar .marker,
.woocommerce ul.products li.product .inner-wrapper .zap-competitions-progress-loop .progress-track .progress-bar .percentage-marker,
.single-product div.product .summary .zap-competitions-progress .progress-track .progress-bar .marker,
.single-product div.product .summary .zap-competitions-progress .progress-track .progress-bar .percentage-marker {
  position: absolute;
  right: -15px;
  width: 30px;
  height: 32px;
}

/* ==========================================================================
   WooCommerce - Single Product
   ========================================================================== */
.single-product .zapct-page-title {
  display: none;
}
.single-product .zap-competition-accordion-wrapper,
.single-product .single-product-container-wrapper,
.single-product .zapc-related-products {
  background-color: #1E1E1E;
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-bottom: 2px solid #ABC93C;
}
.single-product .single-product-container-wrapper {
  padding-bottom: 0rem;
}
@media (max-width: 767.98px) {
  .single-product .single-product-container-wrapper {
    padding-top: 1rem;
  }
}
.single-product .single-product-container-wrapper .woocommerce-product-gallery img {
  border-radius: 10px;
}
.single-product .single-product-container-wrapper .entry-summary .product_title {
  font-size: 36px;
  font-weight: 700;
}
.single-product .single-product-container-wrapper .entry-summary .price .price_suffix {
  display: inline;
}
.single-product .single-product-container-wrapper .entry-summary .cart .zapc-cash-alt {
  font-size: 18px;
  font-weight: 600;
  color: #515357;
  text-transform: uppercase;
}
.single-product .single-product-container-wrapper .entry-summary .cart .zap-competitions-progress {
  position: relative;
  margin: 1.5rem 0rem 0rem;
}
.single-product .single-product-container-wrapper .entry-summary .cart .zap-competitions-progress .tickets-sold-left {
  position: absolute;
  right: 10px;
  top: 1px;
  z-index: 1;
  font-size: 0px;
  color: #000;
  font-weight: 600;
}
.single-product .single-product-container-wrapper .entry-summary .cart .zap-competitions-progress .tickets-sold-left span {
  font-size: 12px;
}
.single-product .single-product-container-wrapper .entry-summary .cart .zap-competitions-progress .tickets-sold-left span:first-of-type::after {
  content: " / ";
}
.single-product .single-product-container-wrapper .entry-summary .cart .zap-competitions-progress .progress-track .percentage-label {
  display: block;
  width: auto;
}
.single-product .single-product-container-wrapper .entry-summary .cart .zap-competition-question-wrap {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #515357;
}
.single-product .single-product-container-wrapper .entry-summary .cart .zap-competition-question-wrap .zap-competition-question-text {
  color: #fff;
  font-size: 19px;
  border-bottom: none;
  margin-bottom: 1rem;
  padding-bottom: 0px;
}
.single-product .single-product-container-wrapper .entry-summary .cart .zap-competition-question-wrap .zap-lottery-question-answers .zap-lottery-question-answer .zap-lottery-question-label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 20px;
  border: 2px solid #ABC93C;
  padding: 0px;
  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;
  height: 90px;
}
.single-product .single-product-container-wrapper .entry-summary .cart .zap-competition-question-wrap .zap-lottery-question-answers .zap-lottery-question-answer .zap-lottery-question-label::before {
  content: none;
}
.single-product .single-product-container-wrapper .entry-summary .cart .zap-competition-question-wrap .zap-lottery-question-answers .zap-lottery-question-answer .zap-lottery-question-label::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(171, 201, 60);
  background: -o-linear-gradient(left, rgb(171, 201, 60) 0%, rgb(126, 187, 70) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgb(171, 201, 60)), to(rgb(126, 187, 70)));
  background: linear-gradient(90deg, rgb(171, 201, 60) 0%, rgb(126, 187, 70) 100%);
  left: 0px;
  top: 0px;
  z-index: -1;
  opacity: 0;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.single-product .single-product-container-wrapper .entry-summary .cart .zap-competition-question-wrap .zap-lottery-question-answers .zap-lottery-question-answer .zap-lottery-question-label:hover::after {
  opacity: 0.75;
}
.single-product .single-product-container-wrapper .entry-summary .cart .zap-competition-question-wrap .zap-lottery-question-answers .zap-lottery-question-answer input:checked ~ label {
  background-color: transparent;
  color: #000;
}
.single-product .single-product-container-wrapper .entry-summary .cart .zap-competition-question-wrap .zap-lottery-question-answers .zap-lottery-question-answer input:checked ~ label::after {
  opacity: 1 !important;
}
.single-product .single-product-container-wrapper .entry-summary .cart .zapc-postal-buttons {
  max-width: 450px;
  margin: 0px auto;
  background-color: #515357;
  border: 2px solid #515357;
  border-radius: 10px;
}
.single-product .single-product-container-wrapper .entry-summary .cart .zapc-postal-buttons button {
  padding: 0.5rem 1rem;
  background: transparent;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: #000;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.single-product .single-product-container-wrapper .entry-summary .cart .zapc-postal-buttons button::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(171, 201, 60);
  background: -o-linear-gradient(left, rgb(171, 201, 60) 0%, rgb(126, 187, 70) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgb(171, 201, 60)), to(rgb(126, 187, 70)));
  background: linear-gradient(90deg, rgb(171, 201, 60) 0%, rgb(126, 187, 70) 100%);
  left: 0px;
  top: 0px;
  z-index: -1;
  opacity: 0;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.single-product .single-product-container-wrapper .entry-summary .cart .zapc-postal-buttons button:hover::after {
  opacity: 0.5;
}
.single-product .single-product-container-wrapper .entry-summary .cart .zapc-postal-buttons button.active::after {
  opacity: 1;
}
.single-product .single-product-container-wrapper .entry-summary .cart .zapc-postal-rules-text {
  text-align: left;
  margin-top: 2rem;
  color: #fff;
}
.single-product .single-product-container-wrapper .entry-summary .cart .zapc-postal-rules-text ul, .single-product .single-product-container-wrapper .entry-summary .cart .zapc-postal-rules-text ol {
  list-style-position: inside;
}
.single-product .single-product-container-wrapper .entry-summary .cart .zapct-add-to-cart-wrapper .zap-competition-qty {
  margin-top: 2rem !important;
}
.single-product .single-product-container-wrapper .entry-summary .cart .zapct-add-to-cart-wrapper .zap-competition-qty > input[type=button] {
  background-color: #515357;
  border: none !important;
  color: #000;
  font-family: "aktiv-grotesk", sans-serif;
  font-weight: 600;
  width: 45px !important;
  height: 45px !important;
  font-size: 40px;
  line-height: 45px;
  border-radius: 10px;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  -webkit-filter: none;
  filter: none;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.single-product .single-product-container-wrapper .entry-summary .cart .zapct-add-to-cart-wrapper .zap-competition-qty > input[type=button]:hover {
  background-color: #ABC93C;
}
.single-product .single-product-container-wrapper .entry-summary .cart .zapct-add-to-cart-wrapper .zap-competition-qty .zap-competition-range-wrap-outer {
  width: calc(100% - 90px);
  padding: 2rem 1rem 3rem 1rem;
}
.single-product .single-product-container-wrapper .entry-summary .cart .zapct-add-to-cart-wrapper .zap-competition-qty .zap-competition-range-wrap-outer .rangeslider {
  border-radius: 10px;
  background-color: #515357;
  border: 2px solid #515357;
  margin-top: 0rem;
  height: 20px;
}
.single-product .single-product-container-wrapper .entry-summary .cart .zapct-add-to-cart-wrapper .zap-competition-qty .zap-competition-range-wrap-outer .rangeslider .rangeslider__fill {
  background: rgb(171, 201, 60);
  background: -o-linear-gradient(left, rgb(171, 201, 60) 0%, rgb(126, 187, 70) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgb(171, 201, 60)), to(rgb(126, 187, 70)));
  background: linear-gradient(90deg, rgb(171, 201, 60) 0%, rgb(126, 187, 70) 100%);
  border-radius: 10px;
}
.single-product .single-product-container-wrapper .entry-summary .cart .zapct-add-to-cart-wrapper .zap-competition-qty .zap-competition-range-wrap-outer .rangeslider .rangeslider__handle {
  background: rgb(171, 201, 60);
  background: -o-linear-gradient(left, rgb(171, 201, 60) 0%, rgb(126, 187, 70) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgb(171, 201, 60)), to(rgb(126, 187, 70)));
  background: linear-gradient(90deg, rgb(171, 201, 60) 0%, rgb(126, 187, 70) 100%);
  border: none;
  width: 30px;
  height: 30px;
  -webkit-box-shadow: none;
  box-shadow: none;
  top: -7px;
}
.single-product .single-product-container-wrapper .entry-summary .cart .zapct-add-to-cart-wrapper .zap-competition-qty .zap-competition-range-wrap-outer .rangeslider .rangeslider__handle .rangeslider__handle__value {
  background-color: #dee2e6;
  padding: 2px 5px;
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
  left: -35px;
  top: -37px;
  border-radius: 3px;
}
.single-product .single-product-container-wrapper .entry-summary .cart .zapct-add-to-cart-wrapper .zap-competition-qty .zap-competition-range-wrap-outer .rangeslider .rangeslider__handle .rangeslider__handle__value::before {
  border-top-color: #dee2e6;
}
.single-product .single-product-container-wrapper .entry-summary .cart .zapct-add-to-cart-wrapper .zap-competition-qty .zap-competition-range-wrap-outer .rangeslider .rangeslider__labels {
  display: none;
}
.single-product .single-product-container-wrapper .entry-summary .cart .zapct-add-to-cart-wrapper .zapct-add-to-cart-button-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  -webkit-box-flex: 100% !important;
  -ms-flex: 100% !important;
  flex: 100% !important;
}
.single-product .single-product-container-wrapper .entry-summary .cart .zapct-add-to-cart-wrapper .zapct-add-to-cart-button-wrapper .button {
  margin: 0px;
  width: 100% !important;
}
.single-product .single-product-container-wrapper .entry-summary .cart .competition-countdown-wrapper .zapc-countdown > div {
  color: #ABC93C;
}
.single-product .single-product-container-wrapper .entry-summary .cart .competition-countdown-wrapper .zapc-countdown > div:not(:last-child) {
  border-right: 1px solid #515357;
}
.single-product .single-product-container-wrapper .entry-summary .cart .competition-countdown-wrapper .zapc-countdown > div span {
  color: #fff;
}
.single-product .zap-competition-accordion-wrapper {
  padding-top: 1rem;
}
.single-product .zap-competition-accordion-wrapper .zap-competition-accordion-single {
  border: none;
  border-radius: 0px;
  border-bottom: 1px solid #515357;
  position: relative;
}
.single-product .zap-competition-accordion-wrapper .zap-competition-accordion-single::after {
  content: "";
  position: absolute;
  background-color: #000;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 1px;
  top: auto;
  bottom: 0px;
}
.single-product .zap-competition-accordion-wrapper .zap-competition-accordion-single .card-header {
  padding: 0rem;
}
.single-product .zap-competition-accordion-wrapper .zap-competition-accordion-single .card-header h2 button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding: 2rem 0.5rem 2rem 0rem;
  background-color: transparent;
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  border: none;
}
@media (max-width: 767.98px) {
  .single-product .zap-competition-accordion-wrapper .zap-competition-accordion-single .card-header h2 button {
    font-size: 25px;
  }
}
.single-product .zap-competition-accordion-wrapper .zap-competition-accordion-single .card-header h2 button::after {
  content: "";
  display: block;
  width: 21px;
  height: 36px;
  background-color: #ABC93C !important;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 22 37'%3E%3Cpath d='M15.672.888 1.016 15.544a3.147 3.147 0 0 0 0 4.449l15.385 15.384a3.147 3.147 0 0 0 4.449-4.449L7.69 17.768 20.122 5.337a3.149 3.149 0 0 0 0-4.449 3.148 3.148 0 0 0-4.45 0Z' style='fill:%23d2d2d2' transform='translate(-.095 .034)'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 22 37'%3E%3Cpath d='M15.672.888 1.016 15.544a3.147 3.147 0 0 0 0 4.449l15.385 15.384a3.147 3.147 0 0 0 4.449-4.449L7.69 17.768 20.122 5.337a3.149 3.149 0 0 0 0-4.449 3.148 3.148 0 0 0-4.45 0Z' style='fill:%23d2d2d2' transform='translate(-.095 .034)'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}
@media (max-width: 767.98px) {
  .single-product .zap-competition-accordion-wrapper .zap-competition-accordion-single .card-header h2 button::after {
    width: 15px;
    height: 30px;
  }
}
.single-product .zap-competition-accordion-wrapper .zap-competition-accordion-single .card-header h2 button[aria-expanded=true]::after {
  -webkit-transform: rotate(-270deg);
  -ms-transform: rotate(-270deg);
  transform: rotate(-270deg);
}
.single-product .zap-competition-accordion-wrapper .zap-competition-accordion-single .card-body {
  border-top: 1px solid #515357;
  position: relative;
  padding: 2rem;
}
.single-product .zap-competition-accordion-wrapper .zap-competition-accordion-single .card-body::after {
  content: "";
  position: absolute;
  background-color: #000;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 1px;
}
.single-product .zap-competition-accordion-wrapper .zap-competition-accordion-single .card-body h3 {
  font-size: 1.25rem;
  font-weight: 600;
}
.single-product .zap-competition-accordion-wrapper .zap-competition-accordion-single .card-body ul {
  margin: 0px 0px 1.5rem 0px;
  list-style: none;
  padding-left: 1.5rem;
}
.single-product .zap-competition-accordion-wrapper .zap-competition-accordion-single .card-body ul li::before {
  content: "•";
  color: #ABC93C;
  display: inline-block;
  margin-left: -1em;
  width: 1em;
}
.single-product #zapciw-instant-wins .zapciw-inner .zapciw-prize-group .zapciw-prize-group-header .zapciw-trigger-table-button i::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--!Font Awesome Free v7.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--%3E%3Cpath d='M201.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 338.7 54.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--!Font Awesome Free v7.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--%3E%3Cpath d='M201.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 338.7 54.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z'/%3E%3C/svg%3E") center/contain no-repeat;
  background-color: #fff;
}
.single-product .zapc-related-products {
  background-color: transparent;
}
.single-product .zapc-related-products .related {
  background-color: transparent;
  margin: 0rem 0 0 0;
  padding: 0rem 0 0rem 0;
}
.single-product .zapc-related-products .zapct-homepage-button-wrap {
  text-align: center;
}

/* ==========================================================================
   Page Template - Contact
   ========================================================================== */
form input:not([type=submit]),
form textarea {
  background-color: #2E2F30 !important;
  border: 1px solid #515357 !important;
  color: #fff !important;
}

/* ==========================================================================
   Page Template - Legal
   ========================================================================== */
.page-template-legal .main-container > .card {
  background-color: transparent !important;
  border: none !important;
  padding: 0px;
}

/* ==========================================================================
   Page Template - Draw Results
   ========================================================================== */
.page-id-571 .zapct-page-title {
  margin-bottom: 2rem;
}

.zapc-competition-results-wrapper .nav-tabs {
  margin-bottom: 3rem;
}
@media (max-width: 767.98px) {
  .zapc-competition-results-wrapper .nav-tabs {
    margin-bottom: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.zapc-competition-results-wrapper .result-wrap {
  max-width: 1000px;
  margin: 0px auto;
}
.zapc-competition-results-wrapper .result-wrap .zapct-winner-card {
  padding: 0rem 0px 2rem 10%;
  position: relative;
  margin: 0px !important;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
}
@media (max-width: 767.98px) {
  .zapc-competition-results-wrapper .result-wrap .zapct-winner-card {
    padding-left: 20%;
  }
}
.zapc-competition-results-wrapper .result-wrap .zapct-winner-card::before, .zapc-competition-results-wrapper .result-wrap .zapct-winner-card::after {
  content: "";
  display: block;
  position: absolute;
  left: 4%;
  top: 0px;
  width: 1px;
  height: 100%;
  background-color: #515357;
}
@media (max-width: 767.98px) {
  .zapc-competition-results-wrapper .result-wrap .zapct-winner-card::before, .zapc-competition-results-wrapper .result-wrap .zapct-winner-card::after {
    left: 7%;
  }
}
.zapc-competition-results-wrapper .result-wrap .zapct-winner-card::after {
  top: 0px;
  background-color: #1E1E1E;
  background-image: url("../images/icon-results.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 60px;
  height: 60px;
  margin-left: -30px;
  border-radius: 50%;
  border: 2px solid #ABC93C;
}
@media (max-width: 767.98px) {
  .zapc-competition-results-wrapper .result-wrap .zapct-winner-card::after {
    width: 50px;
    height: 50px;
    background-size: 40px;
    margin-left: -25px;
  }
}
.zapc-competition-results-wrapper .result-wrap .zapct-winner-card .card-body {
  background-color: #1E1E1E;
  border: 1px solid #515357;
  border-radius: 30px;
  padding: 2rem;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(23, 23, 23, 0.1);
  box-shadow: 0 0.5rem 1rem rgba(23, 23, 23, 0.1);
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.zapc-competition-results-wrapper .result-wrap .zapct-winner-card .card-body:hover {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(23, 23, 23, 0.3);
  box-shadow: 0 0.5rem 1rem rgba(23, 23, 23, 0.3);
}
.zapc-competition-results-wrapper .result-wrap .zapct-winner-card .card-body .card-title i,
.zapc-competition-results-wrapper .result-wrap .zapct-winner-card .card-body .zapct-single-result i {
  display: none;
}
.zapc-competition-results-wrapper .result-wrap .zapct-winner-card .card-body h4 {
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 900;
  color: #ABC93C;
}
.zapc-competition-results-wrapper .result-wrap .zapct-winner-card .card-body .zapct-single-result {
  list-style: none;
  color: #fff;
}
.zapc-competition-results-wrapper .result-wrap .zapct-winner-card .card-body .zapct-single-result strong {
  font-weight: 600;
}
.zapc-competition-results-wrapper .result-wrap .zapct-winner-card .card-body .zapct-single-result span {
  color: #ABC93C;
}
.zapc-competition-results-wrapper .result-wrap .zapct-winner-card .card-body .zapct-single-result:not(:last-child) {
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #515357;
}
@media (max-width: 767.98px) {
  .zapc-competition-results-wrapper .result-wrap .zapct-winner-card .card-body {
    padding: 1.5rem;
  }
  .zapc-competition-results-wrapper .result-wrap .zapct-winner-card .card-body .card-title {
    font-size: 1rem;
  }
}
.zapc-competition-results-wrapper .result-wrap .zapct-winner-card:nth-last-child(2) {
  padding-bottom: 0px;
}

/* ==========================================================================
   Page Template - Entry Lists
   ========================================================================== */
.zapct-entry-list {
  max-width: 800px;
  margin: 0px auto;
}
.zapct-entry-list .row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.zapct-entry-list .row > div {
  max-width: 100%;
  width: 100%;
}
.zapct-entry-list .row > div .card img {
  display: none;
}
.zapct-entry-list .row > div .card .card-body {
  padding: 1rem;
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}
.zapct-entry-list .row > div .card .card-body > *:not(:last-child) {
  margin: 0px !important;
  text-align: left;
}
.zapct-entry-list .row > div .card .card-body .card-title {
  text-transform: initial;
  font-size: 20px;
  font-weight: 900;
  color: #ABC93C;
  text-transform: uppercase;
}
.zapct-entry-list .row > div .card .card-body .card-text {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
}
.zapct-entry-list .row > div .card .card-body > *:last-child {
  grid-column-start: 2;
  grid-row-start: 1;
  grid-row-end: 3;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.zapct-entry-list .row > div .card .card-body > *:last-child .btn {
  width: auto;
  padding: 1rem 2rem;
}
.zapct-entry-list .row > div .card .card-body > *:last-child .btn i,
.zapct-entry-list .row > div .card .card-body > *:last-child .btn strong {
  display: none;
}
.zapct-entry-list .row > div .card .card-body > *:last-child .btn::before {
  content: "Download";
}
.zapct-entry-list .row > div .card .card-body > *:last-child .btn::after {
  content: none !important;
}
@media (max-width: 767.98px) {
  .zapct-entry-list .row > div .card .card-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .zapct-entry-list .row > div .card .card-body > *:not(:last-child) {
    text-align: center;
  }
  .zapct-entry-list .row > div .card .card-body > *:last-child {
    margin-top: 1rem;
  }
  .zapct-entry-list .row > div .card .card-body > *:last-child .btn {
    width: 100%;
  }
}

/* ==========================================================================
   Page Template - FAQs
   ========================================================================== */
.faqs-description-wrapper {
  padding: 1rem 0rem 2rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid #e83e8c;
}
@media (min-width: 992px) {
  .faqs-description-wrapper .container {
    max-width: 960px;
  }
}
.faqs-description-wrapper .section-title {
  text-transform: none;
  background-image: url("../images/icon-title-light-grey.svg");
  letter-spacing: 0px;
}
.faqs-description-wrapper .faqs-description-wrapper {
  color: #2E2F30;
}

@media (min-width: 992px) {
  .container.zapct-faq {
    max-width: 960px;
  }
}
.container.zapct-faq .card {
  margin-bottom: 1rem;
  overflow: hidden;
}
.container.zapct-faq .card .card-header {
  padding: 0rem;
  background-color: transparent;
  border: none;
}
.container.zapct-faq .card .card-header h5 button {
  color: #1E1E1E;
  text-decoration: none !important;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  text-transform: none;
  padding: 1.25rem 2.5rem;
  width: 100%;
  outline: none;
  border: none !important;
  text-align: left;
  background: transparent !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  letter-spacing: 0px;
  border-radius: 0px;
  color: #ABC93C;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none !important;
}
@media (max-width: 767.98px) {
  .container.zapct-faq .card .card-header h5 button {
    padding: 0.5rem 1rem;
  }
}
.container.zapct-faq .card .card-header h5 button::after {
  content: "+";
  color: #fff;
  font-weight: 400;
  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;
  width: 45px;
  height: 45px;
  min-width: 45px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid #ABC93C;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  font-size: 40px;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}
@media (max-width: 767.98px) {
  .container.zapct-faq .card .card-header h5 button::after {
    width: 35px;
    height: 35px;
    min-width: 35px;
    font-size: 25px;
  }
}
.container.zapct-faq .card .card-header h5 button:hover::after {
  background-color: #ABC93C;
  color: #fff;
}
.container.zapct-faq .card .card-header h5 button[aria-expanded=true]::after {
  background-color: #ABC93C;
  color: #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.container.zapct-faq .card .card-body {
  padding: 0.5rem 2.5rem 1.25rem;
  border-top: none;
}
@media (max-width: 767.98px) {
  .container.zapct-faq .card .card-body {
    padding: 1.25rem 1rem 1.25rem;
  }
}
.container.zapct-faq .card .card-body h3 {
  font-size: 1.25rem;
}
.container.zapct-faq .card .card-body p:last-of-type {
  margin-bottom: 0rem;
}

/* ==========================================================================
   WooCommerce - Instant Wins
   ========================================================================== */
/* ==========================================================================
   Page Template - Reveal the Winner
   ========================================================================== */
/* ==========================================================================
   Home Block - App Block
   ========================================================================== */
/* ==========================================================================
   Home Block - Carousel
   ========================================================================== */
@media (max-width: 767.98px) {
  #zapct-carousel .carousel-inner .carousel-item {
    height: 500px;
  }
}
#zapct-carousel .carousel-inner .carousel-item .overlay {
  background: rgb(0, 0, 0);
  background: -o-linear-gradient(bottom, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(0, 0, 0)), color-stop(50%, rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%);
}
@media (max-width: 767.98px) {
  #zapct-carousel .carousel-inner .carousel-item .overlay {
    background: -o-linear-gradient(bottom, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 75%);
    background: -webkit-gradient(linear, left bottom, left top, from(rgb(0, 0, 0)), color-stop(75%, rgba(0, 0, 0, 0)));
    background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 75%);
  }
}
#zapct-carousel .carousel-inner .carousel-item .carousel-caption {
  left: 3rem;
  right: 3rem;
  bottom: 3rem;
  top: auto;
  padding: 0px;
}
@media (max-width: 767.98px) {
  #zapct-carousel .carousel-inner .carousel-item .carousel-caption {
    left: 2rem;
    right: 2rem;
  }
}
#zapct-carousel .carousel-inner .carousel-item .carousel-caption .category {
  font-size: 24px;
  font-weight: 600;
  background-color: transparent;
  padding: 0px;
  color: #ABC93C;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  #zapct-carousel .carousel-inner .carousel-item .carousel-caption .category {
    float: none;
    display: block;
    text-align: center;
  }
}
#zapct-carousel .carousel-inner .carousel-item .carousel-caption .title {
  font-weight: 900;
  background-color: transparent;
  padding: 0px;
  max-width: 550px;
  margin: 0px;
}
@media (max-width: 1199.98px) {
  #zapct-carousel .carousel-inner .carousel-item .carousel-caption .title {
    max-width: 70%;
  }
}
@media (max-width: 1199.98px) {
  #zapct-carousel .carousel-inner .carousel-item .carousel-caption .title {
    max-width: 65%;
  }
}
@media (max-width: 991.98px) {
  #zapct-carousel .carousel-inner .carousel-item .carousel-caption .title {
    max-width: 60%;
  }
}
@media (max-width: 767.98px) {
  #zapct-carousel .carousel-inner .carousel-item .carousel-caption .title {
    float: none;
    max-width: 100%;
    display: block;
    text-align: center;
  }
}
#zapct-carousel .carousel-inner .carousel-item .carousel-caption .title h2 {
  margin: 0px;
  font-size: clamp(25px, 5vw, 48px);
}
#zapct-carousel .carousel-inner .carousel-item .carousel-caption .link {
  position: absolute;
  right: 0px;
  bottom: 0px;
}
@media (max-width: 767.98px) {
  #zapct-carousel .carousel-inner .carousel-item .carousel-caption .link {
    position: relative;
    float: none;
    margin-top: 1rem;
  }
  #zapct-carousel .carousel-inner .carousel-item .carousel-caption .link .btn {
    width: 100%;
  }
}
#zapct-carousel .carousel-control-prev,
#zapct-carousel .carousel-control-next {
  top: 40%;
  bottom: 40%;
  opacity: 1;
}
@media (max-width: 991.98px) {
  #zapct-carousel .carousel-control-prev,
  #zapct-carousel .carousel-control-next {
    left: 10px;
  }
}
#zapct-carousel .carousel-control-prev span,
#zapct-carousel .carousel-control-next span {
  width: 30px;
  height: 30px;
  background-image: none !important;
  background: #dee2e6 !important;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 22 37'%3E%3Cpath d='M15.672.888 1.016 15.544a3.147 3.147 0 0 0 0 4.449l15.385 15.384a3.147 3.147 0 0 0 4.449-4.449L7.69 17.768 20.122 5.337a3.149 3.149 0 0 0 0-4.449 3.148 3.148 0 0 0-4.45 0Z' style='fill:%23d2d2d2' transform='translate(-.095 .034)'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 22 37'%3E%3Cpath d='M15.672.888 1.016 15.544a3.147 3.147 0 0 0 0 4.449l15.385 15.384a3.147 3.147 0 0 0 4.449-4.449L7.69 17.768 20.122 5.337a3.149 3.149 0 0 0 0-4.449 3.148 3.148 0 0 0-4.45 0Z' style='fill:%23d2d2d2' transform='translate(-.095 .034)'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
#zapct-carousel .carousel-control-prev:hover span,
#zapct-carousel .carousel-control-next:hover span {
  background: #ABC93C !important;
}
@media (max-width: 991.98px) {
  #zapct-carousel .carousel-control-next {
    left: auto;
    right: 10px;
  }
}
#zapct-carousel .carousel-control-next span {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
#zapct-carousel .carousel-indicators {
  display: none;
}

/* ==========================================================================
   Home Block - Custom Blocks
   ========================================================================== */
/* ==========================================================================
   Home Block - Image Block
   ========================================================================== */
/* ==========================================================================
   Home Block - Next Draw
   ========================================================================== */
.zapct-next-draw {
  background: rgb(171, 201, 60);
  background: -o-linear-gradient(left, rgb(171, 201, 60) 0%, rgb(126, 187, 70) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgb(171, 201, 60)), to(rgb(126, 187, 70)));
  background: linear-gradient(90deg, rgb(171, 201, 60) 0%, rgb(126, 187, 70) 100%);
  padding: 0.75rem 0rem;
}
.zapct-next-draw .timer-inner {
  -webkit-box-pack: space-evenly !important;
  -ms-flex-pack: space-evenly !important;
  justify-content: space-evenly !important;
}
@media (max-width: 991.98px) {
  .zapct-next-draw .timer-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .zapct-next-draw .timer-inner > * {
    margin: 1rem 0rem;
  }
}
.zapct-next-draw .timer-inner #draw-countdown {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.zapct-next-draw .timer-inner #draw-countdown > div {
  min-width: 120px;
  padding: 1.25rem 0rem;
  font-size: 16px;
  color: #000;
}
.zapct-next-draw .timer-inner #draw-countdown > div span {
  font-size: 48px;
  color: #000;
}
@media (max-width: 767.98px) {
  .zapct-next-draw .timer-inner #draw-countdown > div {
    min-width: 80px;
  }
  .zapct-next-draw .timer-inner #draw-countdown > div span {
    font-size: 40px;
    color: #000;
  }
}
.zapct-next-draw .timer-inner .until-next {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  color: #000;
}
.zapct-next-draw .timer-inner .link {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.single-product div.product .zapc-countdown,
.woocommerce ul.products li.product .inner-wrapper .zapc-countdown,
#draw-countdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
}
.single-product div.product .zapc-countdown > div,
.woocommerce ul.products li.product .inner-wrapper .zapc-countdown > div,
#draw-countdown > div {
  font-weight: 600;
  text-align: center;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #515357;
  min-width: 50px;
  padding: 0rem 0rem;
  font-size: 12px;
  color: #fff;
}
.single-product div.product .zapc-countdown > div:not(:last-child),
.woocommerce ul.products li.product .inner-wrapper .zapc-countdown > div:not(:last-child),
#draw-countdown > div:not(:last-child) {
  border-right: 1px solid #679B37;
}
.single-product div.product .zapc-countdown > div span,
.woocommerce ul.products li.product .inner-wrapper .zapc-countdown > div span,
#draw-countdown > div span {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  color: #ABC93C;
}

/* ==========================================================================
   Home Block - Products
   ========================================================================== */
.zapct-products .product-filter {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 0px;
}
.zapct-products .section-title {
  padding-top: 3rem;
  border-top: 1px solid #515357;
  position: relative;
}
.zapct-products .section-title::after {
  content: "";
  position: absolute;
  background-color: #000;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 1px;
}

/* ==========================================================================
   Home Block - Reviews
   ========================================================================== */
/* ==========================================================================
   Home Block - Stats
   ========================================================================== */
#zapct-homepage-stats {
  border-top: 2px solid #ABC93C;
  padding: 0px;
}
#zapct-homepage-stats .container > .row > div .zapct-homepage-stats-item {
  padding: 2rem 1rem;
  margin: 0px;
}
#zapct-homepage-stats .container > .row > div .zapct-homepage-stats-item > .row {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#zapct-homepage-stats .container > .row > div .zapct-homepage-stats-item > .row > div {
  -webkit-box-flex: initial;
  -ms-flex: initial;
  flex: initial;
  max-width: 100%;
  width: auto;
}
#zapct-homepage-stats .container > .row > div .zapct-homepage-stats-item .icon img {
  width: 85px;
}
#zapct-homepage-stats .container > .row > div .zapct-homepage-stats-item .col-md-9 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 1rem;
}
#zapct-homepage-stats .container > .row > div .zapct-homepage-stats-item .col-md-9 .title h3 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  margin: 0px;
}
#zapct-homepage-stats .container > .row > div .zapct-homepage-stats-item .col-md-9 .desc p {
  font-size: 18px;
  font-weight: 600;
  color: #ABC93C;
  text-transform: uppercase;
  line-height: 1;
  margin: 0px;
}
#zapct-homepage-stats .container > .row > div:not(:first-child) .zapct-homepage-stats-item {
  border-left: 1px solid #515357;
  position: relative;
}
#zapct-homepage-stats .container > .row > div:not(:first-child) .zapct-homepage-stats-item::after {
  content: "";
  position: absolute;
  background-color: #000;
  left: 0px;
  top: 0px;
  width: 1px;
  height: 100%;
}
@media (max-width: 767.98px) {
  #zapct-homepage-stats .container > .row > div:not(:first-child) .zapct-homepage-stats-item {
    border-left: 0px;
    border-top: 1px solid #515357;
    position: relative;
  }
  #zapct-homepage-stats .container > .row > div:not(:first-child) .zapct-homepage-stats-item::after {
    content: "";
    position: absolute;
    background-color: #000;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 1px;
  }
}

/* ==========================================================================
   Home Block - Steps
   ========================================================================== */
#zapct-homepage-steps {
  border-top: 2px solid #ABC93C;
  border-bottom: 2px solid #ABC93C;
  background-color: #1E1E1E;
}
#zapct-homepage-steps .homepage-steps-inner .row > div .item {
  margin: 0rem;
  padding: 0rem 1rem;
}
#zapct-homepage-steps .homepage-steps-inner .row > div .item .title::before {
  content: "Step One";
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ABC93C;
}
#zapct-homepage-steps .homepage-steps-inner .row > div .item .title h3 {
  font-size: 24px;
  font-weight: 900;
}
#zapct-homepage-steps .homepage-steps-inner .row > div .item .icon {
  width: 78px;
  height: 68px;
}
@media (max-width: 767.98px) {
  #zapct-homepage-steps .homepage-steps-inner .row > div .item .icon {
    margin: 1rem auto;
  }
}
#zapct-homepage-steps .homepage-steps-inner .row > div .item .icon img {
  display: block;
  margin: 0px auto;
  max-height: 100%;
}
#zapct-homepage-steps .homepage-steps-inner .row > div:nth-child(2) .item .title::before {
  content: "Step Two";
}
#zapct-homepage-steps .homepage-steps-inner .row > div:nth-child(3) .item .title::before {
  content: "Step Three";
}

/* ==========================================================================
   Home Block - Winners
   ========================================================================== */
#zapct-homepage-winners {
  overflow: hidden;
}
#zapct-homepage-winners .section-title {
  text-align: left;
  margin-bottom: 1rem;
  max-width: 300px;
}
#zapct-homepage-winners .wnners-body {
  margin-bottom: 3rem;
}
@media (max-width: 767.98px) {
  #zapct-homepage-winners .wnners-body {
    margin-bottom: 1rem;
  }
}
@media (min-width: 576px) {
  #zapct-homepage-winners .container .row {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
@media (max-width: 767.98px) {
  #zapct-homepage-winners .container .row > .align-content-start {
    margin-bottom: 3rem;
  }
}
#zapct-homepage-winners .container .row #zapct-homepage-winners-slider .flex-direction-nav a {
  background-color: rgba(255, 255, 255, 0.75);
}
#zapct-homepage-winners .container .row #zapct-homepage-winners-slider .flex-direction-nav a::after {
  content: "";
  background-color: #515357;
  width: 16px;
  height: 16px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 22 37'%3E%3Cpath d='M15.672.888 1.016 15.544a3.147 3.147 0 0 0 0 4.449l15.385 15.384a3.147 3.147 0 0 0 4.449-4.449L7.69 17.768 20.122 5.337a3.149 3.149 0 0 0 0-4.449 3.148 3.148 0 0 0-4.45 0Z' style='fill:%23d2d2d2' transform='translate(-.095 .034)'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 22 37'%3E%3Cpath d='M15.672.888 1.016 15.544a3.147 3.147 0 0 0 0 4.449l15.385 15.384a3.147 3.147 0 0 0 4.449-4.449L7.69 17.768 20.122 5.337a3.149 3.149 0 0 0 0-4.449 3.148 3.148 0 0 0-4.45 0Z' style='fill:%23d2d2d2' transform='translate(-.095 .034)'/%3E%3C/svg%3E");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-60%, -50%);
  -ms-transform: translate(-60%, -50%);
  transform: translate(-60%, -50%);
}
#zapct-homepage-winners .container .row #zapct-homepage-winners-slider .flex-direction-nav a:hover {
  background-color: rgb(255, 255, 255);
}
#zapct-homepage-winners .container .row #zapct-homepage-winners-slider .flex-direction-nav .flex-prev {
  left: 0px !important;
  opacity: 1 !important;
}
#zapct-homepage-winners .container .row #zapct-homepage-winners-slider .flex-direction-nav .flex-next {
  right: 0%;
  opacity: 1;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  #zapct-homepage-winners .container .row #zapct-homepage-winners-slider .flex-direction-nav .flex-next {
    right: 33%;
  }
}
#zapct-homepage-winners .container .row .flex-control-nav {
  display: none;
}

.zapct-winners .card {
  background-color: #1F1F1F;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(23, 23, 23, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(23, 23, 23, 0.15);
}
.zapct-winners .card img {
  aspect-ratio: 1.2/1;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: cover;
  object-fit: cover;
}
.zapct-winners .card .card-body {
  text-align: center;
}
.zapct-winners .card .card-body .card-title {
  font-size: 24px;
  font-weight: 900;
  color: #ABC93C;
  text-transform: uppercase;
  margin-bottom: 0rem;
}
.zapct-winners .card .card-body .winning-number {
  font-size: 16px;
  font-weight: 600;
  color: #515357;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.zapct-winners .card .card-body .name-location {
  font-size: 14px;
}

/* ==========================================================================
   Side Cart
   ========================================================================== */
.xoo-wsc-clist-cont {
  display: none;
}

.xoo-wsc-pprice,
.xoo-wsc-pprice span.amount,
.xoo-wsc-smr-ptotal .woocommerce-Price-amount {
  font-weight: bold;
}

.xoo-wsc-ft-btn.button.btn.xoo-wsc-ft-btn-cart,
.xoo-wsc-ft-amt.xoo-wsc-ft-amt-shipping,
.xoo-wsc-basket {
  display: none !important;
}

.xoo-wsc-ft-buttons-cont {
  display: block !important;
}

.xoo-wsc-container {
  background-color: #fff;
}

.xoo-wsc-header,
.xoo-wsc-body,
.xoo-wsc-footer {
  background-color: #fff !important;
  color: #2E2F30 !important;
}
.xoo-wsc-header a,
.xoo-wsc-body a,
.xoo-wsc-footer a {
  color: #2E2F30 !important;
}
.xoo-wsc-header .xoo-wsc-pprice,
.xoo-wsc-header span.amount,
.xoo-wsc-body .xoo-wsc-pprice,
.xoo-wsc-body span.amount,
.xoo-wsc-footer .xoo-wsc-pprice,
.xoo-wsc-footer span.amount {
  color: #428C0C !important;
}

.xoo-wsc-slider {
  background-color: #fff;
  color: #515357;
}
.xoo-wsc-slider .xoo-wsc-sl-apply-coupon input {
  padding: 5px;
  border: 1px solid #fff;
}
.xoo-wsc-slider .xoo-wsc-sl-apply-coupon button {
  color: #fff;
  background-color: #2E2F30;
  border-color: #2E2F30;
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
  line-height: 1;
  border-radius: 30px;
}
.xoo-wsc-slider .xoo-wsc-sl-apply-coupon button:hover {
  color: #fff;
  background-color: rgb(27.2819148936, 27.875, 28.4680851064);
  border-color: rgb(21.0425531915, 21.5, 21.9574468085);
}
.xoo-wsc-slider .xoo-wsc-sl-apply-coupon button:focus, .xoo-wsc-slider .xoo-wsc-sl-apply-coupon button.focus {
  color: #fff;
  background-color: rgb(27.2819148936, 27.875, 28.4680851064);
  border-color: rgb(21.0425531915, 21.5, 21.9574468085);
  box-shadow: 0 0 0 0.2rem rgba(77.35, 78.2, 79.05, 0.5);
}
.xoo-wsc-slider .xoo-wsc-sl-apply-coupon button.disabled, .xoo-wsc-slider .xoo-wsc-sl-apply-coupon button:disabled {
  color: #fff;
  background-color: #2E2F30;
  border-color: #2E2F30;
}
.xoo-wsc-slider .xoo-wsc-sl-apply-coupon button:not(:disabled):not(.disabled):active, .xoo-wsc-slider .xoo-wsc-sl-apply-coupon button:not(:disabled):not(.disabled).active, .show > .xoo-wsc-slider .xoo-wsc-sl-apply-coupon button.dropdown-toggle {
  color: #fff;
  background-color: rgb(21.0425531915, 21.5, 21.9574468085);
  border-color: rgb(14.8031914894, 15.125, 15.4468085106);
}
.xoo-wsc-slider .xoo-wsc-sl-apply-coupon button:not(:disabled):not(.disabled):active:focus, .xoo-wsc-slider .xoo-wsc-sl-apply-coupon button:not(:disabled):not(.disabled).active:focus, .show > .xoo-wsc-slider .xoo-wsc-sl-apply-coupon button.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(77.35, 78.2, 79.05, 0.5);
}

.xoo-wsc-product {
  border-bottom: 1px solid #adb5bd;
}

.xoo-wsc-ft-buttons-cont a,
.xoo-wsc-empty-cart a {
  color: #fff;
  background-color: #2E2F30;
  border-color: #2E2F30;
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
  line-height: 1;
  border-radius: 30px;
  display: block !important;
  margin-top: 15px !important;
}
.xoo-wsc-ft-buttons-cont a:hover,
.xoo-wsc-empty-cart a:hover {
  color: #fff;
  background-color: rgb(27.2819148936, 27.875, 28.4680851064);
  border-color: rgb(21.0425531915, 21.5, 21.9574468085);
}
.xoo-wsc-ft-buttons-cont a:focus, .xoo-wsc-ft-buttons-cont a.focus,
.xoo-wsc-empty-cart a:focus,
.xoo-wsc-empty-cart a.focus {
  color: #fff;
  background-color: rgb(27.2819148936, 27.875, 28.4680851064);
  border-color: rgb(21.0425531915, 21.5, 21.9574468085);
  box-shadow: 0 0 0 0.2rem rgba(77.35, 78.2, 79.05, 0.5);
}
.xoo-wsc-ft-buttons-cont a.disabled, .xoo-wsc-ft-buttons-cont a:disabled,
.xoo-wsc-empty-cart a.disabled,
.xoo-wsc-empty-cart a:disabled {
  color: #fff;
  background-color: #2E2F30;
  border-color: #2E2F30;
}
.xoo-wsc-ft-buttons-cont a:not(:disabled):not(.disabled):active, .xoo-wsc-ft-buttons-cont a:not(:disabled):not(.disabled).active, .show > .xoo-wsc-ft-buttons-cont a.dropdown-toggle,
.xoo-wsc-empty-cart a:not(:disabled):not(.disabled):active,
.xoo-wsc-empty-cart a:not(:disabled):not(.disabled).active,
.show > .xoo-wsc-empty-cart a.dropdown-toggle {
  color: #fff;
  background-color: rgb(21.0425531915, 21.5, 21.9574468085);
  border-color: rgb(14.8031914894, 15.125, 15.4468085106);
}
.xoo-wsc-ft-buttons-cont a:not(:disabled):not(.disabled):active:focus, .xoo-wsc-ft-buttons-cont a:not(:disabled):not(.disabled).active:focus, .show > .xoo-wsc-ft-buttons-cont a.dropdown-toggle:focus,
.xoo-wsc-empty-cart a:not(:disabled):not(.disabled):active:focus,
.xoo-wsc-empty-cart a:not(:disabled):not(.disabled).active:focus,
.show > .xoo-wsc-empty-cart a.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(77.35, 78.2, 79.05, 0.5);
}

.xoo-wsch-basket .xoo-wscb-icon {
  display: none;
}
.xoo-wsch-basket .xoo-wscb-count {
  background-color: #2E2F30;
  color: #fff;
  position: relative;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  height: 20px;
  width: 20px;
  line-height: 20px;
}

.xoo-wsch-text {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

/* ==========================================================================
   Cardstream
   ========================================================================== */
/* ==========================================================================
   Cashflows
   ========================================================================== */
/* ==========================================================================
   Checkout.com
   ========================================================================== */
/* ==========================================================================
   Nochex
   ========================================================================== */
/* ==========================================================================
   Total Processing
   ========================================================================== */
/* ==========================================================================
   Trust Payments
   ========================================================================== *//*# sourceMappingURL=child-styles.css.map */