@charset "UTF-8";
/*
	e.g. @include bp(0, 'lg') {
		Will only style betweem 0 and 1260px;
	}
	@include bp('md') {
		will only style above md 1024px
	}
*/
/* ==========================================================================
   Mixins
   ========================================================================== */
/* ==========================================================================
   Variables
   ========================================================================== */
:root {
  --header-height: 70px;
  --color-body: #002532;
  --color-body-highlight: #0090AB;
  --color-theme-primary: #0090AB;
  --font-family-sans: "Montserrat", sans-serif;
  --font-family-serif: "Montserrat", serif;
  --font-family-body: var(--font-family-sans, Arial);
}

@media all and (min-width: 0) and (max-width: 575px) {
  :root {
    --header-height: 55px;
  }
}
/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    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 #00081E;
  }
  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: #DBDEE6;
    color: #000B08;
    border-color: #000B08;
  }
  50% {
    background-color: #000B08;
    color: #DBDEE6;
    border-color: #DBDEE6;
  }
  100% {
    background-color: #DBDEE6;
    color: #000B08;
    border-color: #DBDEE6;
  }
}
/* ==========================================================================
   Typography
   ========================================================================== */
body {
  font-family: var(--font-sans-serif);
  font-size: 1rem;
}

a {
  color: #0e1647;
}
a:hover {
  color: rgb(5.6, 8.8, 28.4);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--font-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;
  transition: 0.3s 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 ease-in-out;
}
a.badge:hover, a.badge:focus {
  text-decoration: none;
}

.badge:empty {
  display: none;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
/* ==========================================================================
    Buttons
    ========================================================================== */
.btn,
.button {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 0px;
  outline: none !important;
  box-shadow: none !important;
  padding: 0px 1.5rem;
  height: 40px;
  min-width: 120px;
  z-index: 0;
  background-color: #E77926;
  border: 0px solid #FFF;
  color: #FFF;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 3px;
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media all and (min-width: 0) and (max-width: 575px) {
  .btn,
  .button {
    font-size: 14px;
    height: 30px;
    padding: 0px 1rem;
    border-radius: 4px;
  }
}
.btn strong,
.button strong {
  font-weight: 700;
}
.btn .badge,
.button .badge {
  margin-right: 0.5rem;
}
.btn:not(:disabled):hover, .btn:not(:disabled):focus, .btn:not(:disabled):active,
.button:not(:disabled):hover,
.button:not(:disabled):focus,
.button:not(:disabled):active {
  color: #fff;
  background-color: #E77926;
  filter: brightness(110%);
}
.btn:not(:disabled):hover:after, .btn:not(:disabled):focus:after, .btn:not(:disabled):active:after,
.button:not(:disabled):hover:after,
.button:not(:disabled):focus:after,
.button:not(:disabled):active:after {
  left: 0;
}
.btn:not(:disabled):hover:before, .btn:not(:disabled):focus:before, .btn:not(:disabled):active:before,
.button:not(:disabled):hover:before,
.button:not(:disabled):focus:before,
.button:not(:disabled):active:before {
  width: calc(100% - 27px);
}

.btn-primary {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 0px;
  outline: none !important;
  box-shadow: none !important;
  padding: 0px 1.5rem;
  height: 40px;
  min-width: 120px;
  z-index: 0;
  background-color: #E77926;
  border: 0px solid #FFF;
  color: #FFF;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 3px;
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: 700;
  border: 0;
}
@media all and (min-width: 0) and (max-width: 575px) {
  .btn-primary {
    font-size: 14px;
    height: 30px;
    padding: 0px 1rem;
    border-radius: 4px;
  }
}
.btn-primary strong {
  font-weight: 700;
}
.btn-primary .badge {
  margin-right: 0.5rem;
}
.btn-primary:not(:disabled):hover, .btn-primary:not(:disabled):focus, .btn-primary:not(:disabled):active {
  color: #fff;
  background-color: #E77926;
  filter: brightness(110%);
}
.btn-primary:not(:disabled):hover:after, .btn-primary:not(:disabled):focus:after, .btn-primary:not(:disabled):active:after {
  left: 0;
}
.btn-primary:not(:disabled):hover:before, .btn-primary:not(:disabled):focus:before, .btn-primary:not(:disabled):active:before {
  width: calc(100% - 27px);
}
.btn-primary:hover {
  opacity: 1;
  border: 0;
}
.btn-success {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 0px;
  outline: none !important;
  box-shadow: none !important;
  padding: 0px 1.5rem;
  height: 40px;
  min-width: 120px;
  z-index: 0;
  background-color: #E77926;
  border: 0px solid #FFF;
  color: #FFF;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 3px;
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media all and (min-width: 0) and (max-width: 575px) {
  .btn-success {
    font-size: 14px;
    height: 30px;
    padding: 0px 1rem;
    border-radius: 4px;
  }
}
.btn-success strong {
  font-weight: 700;
}
.btn-success .badge {
  margin-right: 0.5rem;
}
.btn-success:not(:disabled):hover, .btn-success:not(:disabled):focus, .btn-success:not(:disabled):active {
  color: #fff;
  background-color: #E77926;
  filter: brightness(110%);
}
.btn-success:not(:disabled):hover:after, .btn-success:not(:disabled):focus:after, .btn-success:not(:disabled):active:after {
  left: 0;
}
.btn-success:not(:disabled):hover:before, .btn-success:not(:disabled):focus:before, .btn-success:not(:disabled):active:before {
  width: calc(100% - 27px);
}

.btn-secondary,
.btn-light {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 0px;
  outline: none !important;
  box-shadow: none !important;
  padding: 0px 1.5rem;
  height: 40px;
  min-width: 120px;
  z-index: 0;
  background-color: #E77926;
  border: 0px solid #FFF;
  color: #FFF;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 3px;
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: 700;
  background-color: #136C7D;
  color: #fff;
  border: 1px solid #136C7D;
}
@media all and (min-width: 0) and (max-width: 575px) {
  .btn-secondary,
  .btn-light {
    font-size: 14px;
    height: 30px;
    padding: 0px 1rem;
    border-radius: 4px;
  }
}
.btn-secondary strong,
.btn-light strong {
  font-weight: 700;
}
.btn-secondary .badge,
.btn-light .badge {
  margin-right: 0.5rem;
}
.btn-secondary:not(:disabled):hover, .btn-secondary:not(:disabled):focus, .btn-secondary:not(:disabled):active,
.btn-light:not(:disabled):hover,
.btn-light:not(:disabled):focus,
.btn-light:not(:disabled):active {
  color: #fff;
  background-color: #E77926;
  filter: brightness(110%);
}
.btn-secondary:not(:disabled):hover:after, .btn-secondary:not(:disabled):focus:after, .btn-secondary:not(:disabled):active:after,
.btn-light:not(:disabled):hover:after,
.btn-light:not(:disabled):focus:after,
.btn-light:not(:disabled):active:after {
  left: 0;
}
.btn-secondary:not(:disabled):hover:before, .btn-secondary:not(:disabled):focus:before, .btn-secondary:not(:disabled):active:before,
.btn-light:not(:disabled):hover:before,
.btn-light:not(:disabled):focus:before,
.btn-light:not(:disabled):active:before {
  width: calc(100% - 27px);
}
.btn-secondary:focus, .btn-secondary:not(:disabled):not(.disabled):active,
.btn-light:focus,
.btn-light:not(:disabled):not(.disabled):active {
  background-color: transparent;
}
.btn-secondary:hover,
.btn-light:hover {
  border: 1px solid #136C7D;
  background-color: #25899d;
  color: #fff !important;
}
.btn-secondary:hover,
.btn-light:hover {
  color: #FFF;
}
.btn-secondary:disabled,
.btn-light:disabled {
  background-color: #000;
  border-color: #000;
  color: #FFF;
}
.btn-secondary:disabled:hover,
.btn-light:disabled:hover {
  cursor: not-allowed;
  border-color: transparent;
}

.alert .btn-light {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 0px;
  outline: none !important;
  box-shadow: none !important;
  padding: 0px 1.5rem;
  height: 40px;
  min-width: 120px;
  z-index: 0;
  background-color: #E77926;
  border: 0px solid #FFF;
  color: #FFF;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 3px;
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: 700;
  border: 0;
  color: #FFF;
}
@media all and (min-width: 0) and (max-width: 575px) {
  .alert .btn-light {
    font-size: 14px;
    height: 30px;
    padding: 0px 1rem;
    border-radius: 4px;
  }
}
.alert .btn-light strong {
  font-weight: 700;
}
.alert .btn-light .badge {
  margin-right: 0.5rem;
}
.alert .btn-light:not(:disabled):hover, .alert .btn-light:not(:disabled):focus, .alert .btn-light:not(:disabled):active {
  color: #fff;
  background-color: #E77926;
  filter: brightness(110%);
}
.alert .btn-light:not(:disabled):hover:after, .alert .btn-light:not(:disabled):focus:after, .alert .btn-light:not(:disabled):active:after {
  left: 0;
}
.alert .btn-light:not(:disabled):hover:before, .alert .btn-light:not(:disabled):focus:before, .alert .btn-light:not(:disabled):active:before {
  width: calc(100% - 27px);
}
.alert .btn-light:hover {
  opacity: 1;
  border: 0;
}
.btn-danger {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 0px;
  outline: none !important;
  box-shadow: none !important;
  padding: 0px 1.5rem;
  height: 40px;
  min-width: 120px;
  z-index: 0;
  background-color: #E77926;
  border: 0px solid #FFF;
  color: #FFF;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 3px;
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: 700;
  background-color: red;
  color: #FFF;
}
@media all and (min-width: 0) and (max-width: 575px) {
  .btn-danger {
    font-size: 14px;
    height: 30px;
    padding: 0px 1rem;
    border-radius: 4px;
  }
}
.btn-danger strong {
  font-weight: 700;
}
.btn-danger .badge {
  margin-right: 0.5rem;
}
.btn-danger:not(:disabled):hover, .btn-danger:not(:disabled):focus, .btn-danger:not(:disabled):active {
  color: #fff;
  background-color: #E77926;
  filter: brightness(110%);
}
.btn-danger:not(:disabled):hover:after, .btn-danger:not(:disabled):focus:after, .btn-danger:not(:disabled):active:after {
  left: 0;
}
.btn-danger:not(:disabled):hover:before, .btn-danger:not(:disabled):focus:before, .btn-danger:not(:disabled):active:before {
  width: calc(100% - 27px);
}
.btn-danger:after {
  background-image: url('data:image/svg+xml,<svg width="34" height="7" viewBox="0 0 34 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.5 2.9C1.16863 2.9 0.9 3.16863 0.9 3.5C0.9 3.83137 1.16863 4.1 1.5 4.1V2.9ZM33.5 3.5L27.5 0.0358982V6.9641L33.5 3.5ZM1.5 3.5V4.1H28.1V3.5V2.9H1.5V3.5Z" fill="%23080808"/></svg>');
}
.btn-danger:hover {
  border-color: #fff;
}

/* ==========================================================================
   Cards
   ========================================================================== */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  background-color: #FFF;
  padding: 1rem;
  border: none;
  box-shadow: 0px 0.979px 0.979px 0px rgba(0, 0, 0, 0.1);
}

.card-body {
  padding: 1.25rem;
  color: var(--color-body);
}

.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;
  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;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

form .form-group input,
form .form-group textarea {
  background-color: #FFF;
  padding: 12px 16px;
  color: #0e1647;
  border: none;
  border-radius: 5px;
  font-family: var(--font-sans-serif);
  font-size: 1rem;
  font-weight: 300;
  border: 1px solid #ced2d3;
}
form .form-group input:focus,
form .form-group textarea:focus {
  background-color: #f5f5f5;
  color: #0e1647;
  box-shadow: none;
  border-color: var(--color-primary-1);
}
form .form-group input::-moz-placeholder,
form .form-group textarea::-moz-placeholder {
  color: #999 !important;
}
form .form-group input::-moz-placeholder, form .form-group textarea::-moz-placeholder {
  color: #999 !important;
}
form .form-group input::placeholder,
form .form-group textarea::placeholder {
  color: #999 !important;
}
form .form-group input:not([type=checkbox], [type=radio]) {
  height: 40px;
}
form .form-group label {
  color: var(--color-body);
  font-family: var(--font-sans-serif);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
@media all and (min-width: 0) and (max-width: 575px) {
  form .form-group label {
    font-size: 14px;
  }
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  background-color: #136C7D;
  border-color: #136C7D;
}

.nav-pills .nav-link {
  border: 1px solid #136C7D;
  color: #136C7D;
}

/* ==========================================================================
   Containers
   ========================================================================== */
.container, .zapct-products div.woocommerce, .container.main-container, .zapc-related-products section.related,
.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, .zapct-products div.woocommerce, .container.main-container, .zapc-related-products section.related {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container, .zapct-products div.woocommerce, .container.main-container, .zapc-related-products section.related {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container, .zapct-products div.woocommerce, .container.main-container, .zapc-related-products section.related {
    max-width: 96%;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container, .zapct-products div.woocommerce, .container.main-container, .zapc-related-products section.related {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container, .zapct-products div.woocommerce, .container.main-container, .zapc-related-products section.related {
    max-width: 1360px;
  }
}
/* ==========================================================================
   Tables
   ========================================================================== */
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #0e1647;
  background-color: #fff !important;
}
.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #ced2d3;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #ced2d3;
}
.table tbody + tbody {
  border-top: 2px solid #ced2d3;
}

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

.table-bordered {
  border: 1px solid #ced2d3;
}
.table-bordered th,
.table-bordered td {
  border: 1px solid #ced2d3;
}
.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: transparent !important;
}

.table-hover tbody tr:hover {
  color: unset;
  background-color: unset;
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: rgb(187.52, 189.76, 203.48);
}
.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: rgb(129.68, 133.84, 159.32);
}

.table-hover .table-primary:hover {
  background-color: rgb(173.06, 175.78, 192.44);
}
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: rgb(173.06, 175.78, 192.44);
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: rgb(183.6, 185.84, 192);
}
.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: rgb(122.4, 126.56, 138);
}

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

.table-success,
.table-success > th,
.table-success > td {
  background-color: rgb(209.64, 252.48, 216.36);
}
.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: rgb(170.76, 250.32, 183.24);
}

.table-hover .table-success:hover {
  background-color: rgb(185.4821052632, 251.1378947368, 195.7810526316);
}
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: rgb(185.4821052632, 251.1378947368, 195.7810526316);
}

.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(254.72, 240.16, 190.6);
}
.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: rgb(254.48, 227.44, 135.4);
}

.table-hover .table-warning:hover {
  background-color: rgb(254.6096103896, 234.3093506494, 165.2103896104);
}
.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: rgb(254.6096103896, 234.3093506494, 165.2103896104);
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: rgb(249.4, 192.84, 188.92);
}
.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: rgb(244.6, 139.56, 132.28);
}

.table-hover .table-danger:hover {
  background-color: rgb(247.4078125, 170.72671875, 165.4121875);
}
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: rgb(247.4078125, 170.72671875, 165.4121875);
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: rgb(244.92, 245.76, 248);
}
.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: rgb(236.28, 237.84, 242);
}

.table-hover .table-light:hover {
  background-color: rgb(229.8708196721, 231.9649180328, 237.5491803279);
}
.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: rgb(229.8708196721, 231.9649180328, 237.5491803279);
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: rgb(183.6, 186.68, 185.84);
}
.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: rgb(122.4, 128.12, 126.56);
}

.table-hover .table-dark:hover {
  background-color: rgb(170.5689378758, 174.2110621242, 173.217755511);
}
.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: rgb(170.5689378758, 174.2110621242, 173.217755511);
}

.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: #0e1647;
  background-color: #ced2d3;
  border-color: #ced2d3;
}

.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-trust-pilot .container, .zapct-trust-pilot .zapct-products div.woocommerce, .zapct-products .zapct-trust-pilot div.woocommerce, .zapct-trust-pilot .zapc-related-products section.related, .zapc-related-products .zapct-trust-pilot section.related {
  color: #fff;
}
.zapct-trust-pilot__content {
  background-color: var(--color-theme-primary);
  border-bottom: 2px solid rgba(0, 0, 0, 0.125);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 1rem;
  gap: 0.5rem;
  flex-wrap: wrap;
  text-align: center;
  border-radius: 5px 5px 0 0;
}
@media all and (min-width: 576px) {
  .zapct-trust-pilot__content {
    text-align: left;
    padding: 2rem;
  }
}
.zapct-trust-pilot__content > * {
  display: inline-flex;
}
.zapct-trust-pilot svg {
  max-width: 100%;
  max-height: 25px;
  width: auto;
  margin-top: -5px;
}

.zapct-footer {
  padding-bottom: 0;
  color: #fff;
}
@media all and (min-width: 0) and (max-width: 575px) {
  .zapct-footer {
    font-size: 14px;
  }
}
.zapct-footer .zapct-card-icons {
  text-align: left;
}
.zapct-footer .zapct-card-icons .ml-1 {
  margin-left: 0 !important;
}
.zapct-footer .zapct-footer-navbar.horizontal {
  display: grid;
  margin: 0;
  grid-gap: 0.75rem 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}
.zapct-footer .zapct-footer-navbar.horizontal li {
  margin: 0;
}
.zapct-footer .zapct-footer-navbar.horizontal a {
  padding: 0;
  font-weight: 600;
  text-align: left;
  color: #fff;
}
.zapct-footer .zapct-footer-social-icons {
  text-align: left;
}
.zapct-footer .zapct-footer-social-icons a {
  margin-left: 0 !important;
}
.zapct-footer a {
  color: #fff;
}
.zapct-footer h5 {
  font-weight: 700;
  font-size: 1.25rem;
}

.zapct-footer-secondary {
  background: #151e28;
  color: #fff;
  font-size: 14px;
  padding: 2rem 0;
  margin-top: 2rem;
  font-weight: 600;
}
.zapct-footer-secondary .zapct-footer-credit a {
  color: #f7a800;
}
.zapct-footer-secondary__content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.zapct-subfooter-navbar {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  align-self: center;
  flex-wrap: wrap;
}
.zapct-subfooter-navbar li a {
  color: #fff;
}
.zapct-subfooter-navbar li + li:before {
  margin-left: 5px;
  content: "• ";
}

/* ==========================================================================
   Header
   ========================================================================== */
.zapct-navbar {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 5px solid #E77926;
  background-color: var(--color-body-highlight);
  padding: 10px 0;
}
@media all and (min-width: 576px) {
  .zapct-navbar {
    border-width: 8px;
  }
}
.zapct-navbar .dropdown-item {
  font-weight: 600;
}
.zapct-navbar .navbar {
  height: var(--header-height);
  padding: 0 1rem;
  flex-wrap: nowrap;
}
@media all and (min-width: 768px) {
  .zapct-navbar .navbar {
    padding: 0 2.5rem;
  }
}
@media all and (min-width: 992px) {
  .zapct-navbar .navbar .offcanvas-collapse {
    width: auto;
    flex: 1;
  }
}
.zapct-navbar .navbar-brand {
  border-radius: 5px;
  text-align: center;
  padding: 0;
}
@media all and (min-width: 768px) {
  .zapct-navbar .navbar-brand {
    width: 90px;
  }
}
.zapct-navbar .navbar-brand img {
  margin: 0;
  height: var(--header-height) !important;
  width: auto;
}
@media all and (min-width: 576px) {
  .zapct-navbar .navbar-brand img {
    height: 100px !important;
    margin-top: 2rem;
  }
}
.zapct-navbar #zapct-primary-navbar .navbar-nav {
  gap: 1.5rem;
}
.zapct-navbar #zapct-primary-navbar .navbar-nav .nav-link {
  color: #FFF;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  padding: 0;
}
.zapct-navbar #zapct-primary-navbar .navbar-nav .nav-link:before {
  content: "";
  height: 1px;
  background-color: #fff;
  width: 100%;
  top: calc(100% + 2px);
  opacity: 0;
  transition: 0.2s;
  position: absolute;
  left: 0;
}
.zapct-navbar #zapct-primary-navbar .navbar-nav .nav-link.active {
  color: #FFF;
}
.zapct-navbar #zapct-primary-navbar .navbar-nav .nav-link:hover {
  color: #FFF;
}
@media all and (min-width: 1200px) {
  .zapct-navbar #zapct-primary-navbar .navbar-nav .nav-link:hover:before {
    opacity: 1;
    top: 100%;
  }
}
.zapct-navbar .cart-account .nav-item {
  padding: 0;
  border: 0;
}
.zapct-navbar .cart-account .nav-item i {
  color: #FFF;
}
@media all and (min-width: 0) and (max-width: 575px) {
  .zapct-navbar .cart-account .nav-item i {
    font-size: 18px;
  }
}
.zapct-navbar #basket-count {
  background-color: #FFF;
  border-color: #E77926;
  border-width: 2px;
  color: var(--color-body);
  font-family: var(--font-family-body);
  font-weight: 700;
  font-size: 11px;
}
.zapct-navbar .cart-account {
  align-items: center;
}
.zapct-navbar .cart-account .nav-label {
  display: none;
}
.zapct-navbar .navbar-toggler {
  border: 0;
}
.zapct-navbar .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='%23FFFFFF' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.zapct-navbar .offcanvas-collapse {
  background-color: var(--color-body-highlight);
}
.zapct-navbar .offcanvas-collapse .offcanvas-close {
  color: #fff;
}

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

/* ==========================================================================
   General CSS
   ========================================================================== */
body {
  background-color: #fcf8f2;
  color: var(--color-body);
  font-family: var(--font-family-body);
}

.zapc-related-products {
  position: relative;
}
.zapc-related-products section.related {
  background-color: transparent;
}
.zapc-related-products section.related h2 {
  color: var(--color-body-highlight);
}

@media all and (min-width: 576px) {
  .woocommerce ul.products.columns-4 li.product {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media all and (min-width: 768px) {
  .woocommerce ul.products.columns-4 li.product {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}

.zapct-page-title {
  background-color: transparent;
  margin: 0;
  text-align: center;
}
.zapct-page-title h1 {
  color: #022632;
  font-size: 42px;
  letter-spacing: -0.03em;
}
@media all and (min-width: 0) and (max-width: 575px) {
  .zapct-page-title h1 {
    font-size: 32px;
  }
}

.zapct-homepage-button-wrap {
  text-align: center;
}
.zapct-homepage-button-wrap > * {
  display: inline-flex;
}

.container-xl, .container-lg, .container-md, .container-sm, .container, .zapct-products div.woocommerce, .container.main-container, .zapc-related-products section.related, div.woocommerce {
  position: relative;
  max-width: 1140px;
  padding: 0 1rem;
}
@media all and (min-width: 576px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container, .zapct-products div.woocommerce, .container.main-container, .zapc-related-products section.related, div.woocommerce {
    padding: 0 2rem;
  }
}
@media all and (min-width: 0) and (max-width: 575px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container, .zapct-products div.woocommerce, .container.main-container, .zapc-related-products section.related, div.woocommerce {
    padding: 0 20px;
  }
}

div.woocommerce {
  padding: 0;
}

.container.main-container, .zapct-products div.main-container.woocommerce, .zapc-related-products section.main-container.related {
  position: relative;
  padding-bottom: 2rem !important;
}

.zapct-homepage-section {
  border: 0;
}
@media all and (min-width: 0) and (max-width: 575px) {
  .zapct-homepage-section {
    padding: 2rem 0;
  }
}

.section-title {
  color: #022632;
}
@media all and (min-width: 0) and (max-width: 575px) {
  .section-title {
    margin-bottom: 1rem;
    font-size: 22px;
  }
}
.section-title + .section-body {
  text-align: center;
  margin-bottom: 2rem;
}

.card-text i {
  margin-right: 5px;
}

/* ==========================================================================
   WooCommerce - Cart
   ========================================================================== */
/* ==========================================================================
   WooCommerce - Checkout
   ========================================================================== */
/* ==========================================================================
   WooCommerce - General
   ========================================================================== */
.woocommerce-pagination ul.page-numbers li .page-numbers {
  color: var(--color-theme-primary);
  border-radius: 1px;
  border-color: var(--color-theme-primary);
  background-color: transparent;
  border-radius: 3px;
}
.woocommerce-pagination ul.page-numbers li .page-numbers:hover:not(.current) {
  background-color: var(--color-theme-primary);
  color: #fff;
}
.woocommerce-pagination ul.page-numbers li .page-numbers.current {
  border-color: var(--color-theme-primary);
  background-color: var(--color-theme-primary);
  color: #fff;
}

.woocommerce-MyAccount-navigation .nav-pills .nav-link {
  font-size: 14px;
  font-weight: 700;
  border-color: transparent !important;
}

.pagination {
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.pagination .page-item .page-link {
  color: var(--color-theme-primary);
  border-radius: 5px;
  border-color: var(--color-theme-primary);
  background-color: #FFF;
}
.pagination .page-item .page-link:hover:not(.current) {
  background-color: #FFF;
}
.pagination .page-item.active .page-link {
  border-color: var(--color-theme-primary);
  background-color: var(--color-theme-primary);
}

.woocommerce-privacy-policy-link {
  background: var(--color-primary-1);
  background: linear-gradient(to right, var(--color-primary-1) 0%, var(--color-primary-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.woocommerce-pagination--without-numbers,
.zap-cashier-account-pagination {
  text-align: center;
}
.woocommerce-pagination--without-numbers .woocommerce-button,
.zap-cashier-account-pagination .woocommerce-button {
  display: inline-flex;
}
.woocommerce-pagination--without-numbers .woocommerce-button:hover,
.zap-cashier-account-pagination .woocommerce-button:hover {
  text-decoration: none;
}

.woocommerce-Button--previous:after {
  left: 1rem;
  right: auto;
  transform: rotate(180deg) translateY(50%);
}
.woocommerce-Button--previous:hover {
  text-decoration: none;
}
.woocommerce-Button--previous:hover:after {
  transform: rotate(180deg) translateY(50%) translateX(3px);
}

.dnapayments-footer {
  margin-top: 1rem;
}

.alert-info a:not(.btn) {
  color: inherit;
}

.woocommerce-pagination {
  margin: 2rem 0 2rem;
}

/* ==========================================================================
   WooCommerce - Product Loop
   ========================================================================== */
@media all and (min-width: 576px) and (max-width: 991px) {
  .woocommerce ul.products.columns-3 li.product {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media all and (min-width: 0) and (max-width: 575px) {
  .woocommerce ul.products.columns-mobile-1 {
    margin-left: -5px;
    margin-right: -5px;
  }
}
@media all and (min-width: 0) and (max-width: 575px) {
  .woocommerce ul.products.columns-mobile-1 li.product {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 5px;
    padding-right: 5px;
  }
}

.woocommerce ul.products li.product {
  position: relative;
}
@media all and (min-width: 768px) {
  .woocommerce ul.products li.product {
    margin-bottom: 3rem;
  }
}
.woocommerce ul.products li.product .inner-wrapper {
  background-color: #FFF;
  border-radius: 3px;
  padding: 7px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 0px;
  transition: 0.1s;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0.979px 0.979px 0px rgba(0, 0, 0, 0.1);
  --product-spacing: 20px;
}
@media all and (min-width: 0) and (max-width: 575px) {
  .woocommerce ul.products li.product .inner-wrapper {
    padding: 3px;
    border-radius: 7px;
  }
}
.woocommerce ul.products li.product .inner-wrapper:hover {
  border-color: #E77926;
}
.woocommerce ul.products li.product .inner-wrapper .zapc-date-banner {
  position: absolute;
  top: 10px;
  margin: 0px auto 0 !important;
  z-index: 10;
  padding: 7px 1rem 6px;
  border-radius: 2px;
  background: var(--date-bubble-bg, #f7a800) !important;
  color: var(--date-bubble-color, #000) !important;
  height: 28px;
  left: 9px;
  pointer-events: none;
  width: -moz-max-content;
  width: max-content;
  cursor: pointer;
  display: flex;
  align-items: center;
  letter-spacing: 0em;
  font-weight: 700;
  font-size: 12px;
}
@media all and (min-width: 0) and (max-width: 575px) {
  .woocommerce ul.products li.product .inner-wrapper .zapc-date-banner {
    font-size: 8px;
    padding: 5px;
    height: 20px;
    left: 5px;
  }
}
.woocommerce ul.products li.product .inner-wrapper .zapc-date-banner.sold-out {
  --date-bubble-bg: #666;
  --date-bubble-border-color: #8C0808;
  --date-bubble-color: #FFF;
}
.woocommerce ul.products li.product .inner-wrapper .zapc-date-banner.zap-draw-days-1 {
  --date-bubble-bg: #FF5001;
}
.woocommerce ul.products li.product .inner-wrapper .zapc-date-banner.zap-draw-days-0 {
  --date-bubble-bg: #FF1700;
}
.woocommerce ul.products li.product .inner-wrapper .zapc-date-banner .inner {
  min-width: auto;
}
.woocommerce ul.products li.product .inner-wrapper h2 {
  color: var(--color-body);
  order: 4;
  text-align: center;
  padding: 0 var(--product-spacing, 20px);
  margin: 0 0 5px;
  text-transform: none;
  font-weight: 600;
  font-size: 20px;
}
@media all and (min-width: 0) and (max-width: 575px) {
  .woocommerce ul.products li.product .inner-wrapper h2 {
    font-size: 10px;
  }
}
.woocommerce ul.products li.product .inner-wrapper .thumbnail-wrap {
  border-radius: inherit;
}
.woocommerce ul.products li.product .inner-wrapper img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2px;
  max-width: 100%;
}
@media all and (min-width: 0) and (max-width: 575px) {
  .woocommerce ul.products li.product .inner-wrapper img {
    border-radius: 1px;
  }
}
.woocommerce ul.products li.product .inner-wrapper .price small,
.woocommerce ul.products li.product .inner-wrapper .price_suffix {
  color: #888;
  display: inline-flex;
  margin-left: 5px;
  margin-bottom: 5px;
  font-weight: 400;
  letter-spacing: 0em;
  text-transform: uppercase;
}
@media all and (min-width: 0) and (max-width: 575px) {
  .woocommerce ul.products li.product .inner-wrapper .price small,
  .woocommerce ul.products li.product .inner-wrapper .price_suffix {
    font-size: 10px;
    margin-bottom: 3px;
    font-size: 6px;
    margin-left: 2px;
  }
}
.woocommerce ul.products li.product .inner-wrapper .progress-track {
  background-color: transparent;
  border-radius: 2px !important;
  border-color: #E77926 !important;
  border-width: 2px !important;
  height: 15px;
  margin-top: 1.75rem;
  margin-bottom: 1rem;
  border-radius: 5px !important;
}
@media all and (min-width: 0) and (max-width: 575px) {
  .woocommerce ul.products li.product .inner-wrapper .progress-track {
    height: 3px;
    margin-top: 16px;
    margin-bottom: 12px;
  }
}
.woocommerce ul.products li.product .inner-wrapper .progress-track .progress-bar {
  height: 100%;
  position: relative;
  overflow: visible;
  background-color: #E77926 !important;
  border-radius: 3px;
}
.woocommerce ul.products li.product .inner-wrapper .progress-track .percentage-label,
.woocommerce ul.products li.product .inner-wrapper .progress-track .mini-label,
.woocommerce ul.products li.product .inner-wrapper .progress-track .mini-label-percentage,
.woocommerce ul.products li.product .inner-wrapper .progress-track .tickets-sold-label {
  line-height: 1;
  position: absolute;
  bottom: calc(100% + 1rem);
  left: 0px !important;
  top: auto;
  color: #000;
  font-size: 12px;
  text-transform: uppercase;
  transform: none;
  font-weight: 400;
}
@media all and (min-width: 0) and (max-width: 575px) {
  .woocommerce ul.products li.product .inner-wrapper .progress-track .percentage-label,
  .woocommerce ul.products li.product .inner-wrapper .progress-track .mini-label,
  .woocommerce ul.products li.product .inner-wrapper .progress-track .mini-label-percentage,
  .woocommerce ul.products li.product .inner-wrapper .progress-track .tickets-sold-label {
    font-size: 6px;
    bottom: calc(100% + 0.5rem);
  }
}
.woocommerce ul.products li.product .inner-wrapper .progress-track .mini-label {
  left: auto !important;
  right: 0;
}
.woocommerce ul.products li.product .inner-wrapper .progress-track .mini-label-percentage:after,
.woocommerce ul.products li.product .inner-wrapper .progress-track .percentage-label:after {
  content: " Sold";
}
.woocommerce ul.products li.product .inner-wrapper .progress-track .mini-label,
.woocommerce ul.products li.product .inner-wrapper .progress-track .tickets-sold-label {
  left: auto;
  right: 0px;
  text-align: right;
}
.woocommerce ul.products li.product .inner-wrapper .progress-track .mini-label {
  z-index: 10;
}
.woocommerce ul.products li.product .inner-wrapper .price {
  order: 3;
  margin: 10px 0;
  text-align: center;
  padding: 0 var(--product-spacing, 20px);
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: center;
  gap: 0px 2px;
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
}
@media all and (min-width: 0) and (max-width: 575px) {
  .woocommerce ul.products li.product .inner-wrapper .price {
    font-size: 18px;
    padding: 0 10px;
    margin: 0 0 6px;
  }
}
.woocommerce ul.products li.product .inner-wrapper .price ins, .woocommerce ul.products li.product .inner-wrapper .price > .amount > bdi {
  color: var(--color-body-highlight);
  text-decoration: none;
}
.woocommerce ul.products li.product .inner-wrapper .price del {
  font-size: 16px;
}
.woocommerce ul.products li.product .inner-wrapper .price del bdi {
  color: red;
}
@media all and (min-width: 0) and (max-width: 575px) {
  .woocommerce ul.products li.product .inner-wrapper {
    --product-spacing: 10px;
  }
}
.woocommerce ul.products li.product .inner-wrapper .zap-competitions-progress {
  order: 2;
  margin: 10px 20px 0;
}
@media all and (min-width: 0) and (max-width: 575px) {
  .woocommerce ul.products li.product .inner-wrapper .zap-competitions-progress {
    margin: 8px 10px 0;
  }
}
.woocommerce ul.products li.product .inner-wrapper .zapc-countdown {
  position: relative;
  order: 1;
  padding: 0 4px;
  max-width: 100%;
  width: 100%;
  margin: 10px auto;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  width: 100%;
  font-family: var(--font-family-countdown);
  background-color: transparent;
  justify-content: center;
  border-radius: 10px;
  padding: 0 15px;
  overflow: hidden;
}
@media all and (min-width: 0) and (max-width: 575px) {
  .woocommerce ul.products li.product .inner-wrapper .zapc-countdown {
    margin-bottom: 0px;
  }
}
@media all and (min-width: 0) and (max-width: 767px) {
  .woocommerce ul.products li.product .inner-wrapper .zapc-countdown {
    padding: 0;
    height: 40px;
    border-radius: 4px;
  }
}
.woocommerce ul.products li.product .inner-wrapper .zapc-countdown > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0px;
  height: 62px;
  width: 25%;
  letter-spacing: 0em;
  line-height: 1;
  color: #fff;
  font-weight: 600;
  background-color: var(--color-theme-primary);
  border: 2px solid #012632;
  border-width: 2px 0;
}
.woocommerce ul.products li.product .inner-wrapper .zapc-countdown > div:first-child {
  border-radius: 5px 0 0 5px;
  border-width: 2px 0 2px 2px;
}
.woocommerce ul.products li.product .inner-wrapper .zapc-countdown > div:last-child {
  border-radius: 0 5px 5px 0;
  border-width: 2px 2px 2px 0px;
}
@media all and (min-width: 0) and (max-width: 767px) {
  .woocommerce ul.products li.product .inner-wrapper .zapc-countdown > div {
    height: 36px;
    font-size: 4px;
  }
}
.woocommerce ul.products li.product .inner-wrapper .zapc-countdown > div + div {
  position: relative;
}
.woocommerce ul.products li.product .inner-wrapper .zapc-countdown > div + div:before {
  content: "";
  height: 30%;
  width: 1px;
  position: absolute;
  left: 0;
  background-color: rgba(255, 255, 255, 0.15);
}
.woocommerce ul.products li.product .inner-wrapper .zapc-countdown > div span {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 4px;
  letter-spacing: 0em;
  display: block;
}
@media all and (min-width: 0) and (max-width: 767px) {
  .woocommerce ul.products li.product .inner-wrapper .zapc-countdown > div span {
    font-size: 12px !important;
  }
}
.woocommerce ul.products li.product .inner-wrapper .zapc-cash-alt {
  order: 5;
  padding: 5px 1rem;
  border: 1px solid var(--color-primary-1);
  margin: 0.5rem var(--product-spacing, 20px) 0;
  border-radius: 5px;
  animation: cash-alt 1.5s infinite ease-in-out;
}
@media all and (min-width: 0) and (max-width: 575px) {
  .woocommerce ul.products li.product .inner-wrapper .zapc-cash-alt {
    font-size: 10px;
    padding: 5px;
    margin: 5px 5px;
    border-radius: 3px;
  }
}
.woocommerce ul.products li.product .inner-wrapper .button {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 0px;
  outline: none !important;
  box-shadow: none !important;
  padding: 0px 1.5rem;
  height: 40px;
  min-width: 120px;
  z-index: 0;
  background-color: #E77926;
  border: 0px solid #FFF;
  color: #FFF;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 3px;
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin: 1rem var(--product-spacing) 1.5rem;
}
@media all and (min-width: 0) and (max-width: 575px) {
  .woocommerce ul.products li.product .inner-wrapper .button {
    font-size: 14px;
    height: 30px;
    padding: 0px 1rem;
    border-radius: 4px;
  }
}
.woocommerce ul.products li.product .inner-wrapper .button strong {
  font-weight: 700;
}
.woocommerce ul.products li.product .inner-wrapper .button .badge {
  margin-right: 0.5rem;
}
.woocommerce ul.products li.product .inner-wrapper .button:not(:disabled):hover, .woocommerce ul.products li.product .inner-wrapper .button:not(:disabled):focus, .woocommerce ul.products li.product .inner-wrapper .button:not(:disabled):active {
  color: #fff;
  background-color: #E77926;
  filter: brightness(110%);
}
.woocommerce ul.products li.product .inner-wrapper .button:not(:disabled):hover:after, .woocommerce ul.products li.product .inner-wrapper .button:not(:disabled):focus:after, .woocommerce ul.products li.product .inner-wrapper .button:not(:disabled):active:after {
  left: 0;
}
.woocommerce ul.products li.product .inner-wrapper .button:not(:disabled):hover:before, .woocommerce ul.products li.product .inner-wrapper .button:not(:disabled):focus:before, .woocommerce ul.products li.product .inner-wrapper .button:not(:disabled):active:before {
  width: calc(100% - 27px);
}
@media all and (min-width: 0) and (max-width: 575px) {
  .woocommerce ul.products li.product .inner-wrapper .button {
    height: 18px;
    font-size: 8px;
    margin: 5px 5px 7px;
    line-height: 16px;
  }
}
.woocommerce ul.products li.product.competition-closed {
  opacity: 1;
}
.woocommerce ul.products li.product.competition-closed img {
  filter: grayscale(1);
}
.woocommerce ul.products li.product.competition-closed .inner-wrapper:hover {
  border-color: #eee;
}
.woocommerce ul.products li.product .woocommerce-loop-product__link {
  display: flex;
  flex-direction: column;
  flex: 1;
}

@keyframes cash-alt {
  0% {
    color: #fff;
  }
  50% {
    color: var(--color-primary-1);
    box-shadow: 0px 0px 5px 1px rgb(250, 208, 0);
    text-shadow: 0px 0px 10px var(--color-primary-1);
  }
  100% {
    color: #fff;
  }
}
/* ==========================================================================
   WooCommerce - Single Product
   ========================================================================== */
@media all and (min-width: 0) and (max-width: 575px) {
  .single-product div.product {
    margin: 0;
  }
}
@media all and (min-width: 0) and (max-width: 575px) {
  .single-product div.product .woocommerce-product-gallery {
    padding: 0;
  }
}
.single-product div.product .summary {
  background-color: #fff;
  padding: 1rem;
  border-radius: 5px;
}
@media all and (min-width: 576px) {
  .single-product div.product .summary {
    padding: 1.5rem;
  }
}
.single-product div.product .price {
  color: var(--color-body-highlight);
  font-size: 38px;
}
.single-product div.product .zapc-countdown {
  background-color: transparent;
}
@media all and (min-width: 0) and (max-width: 575px) {
  .single-product div.product .zap-competition-tabs-wrapper .container, .single-product div.product .zap-competition-tabs-wrapper .zapc-related-products section.related, .zapc-related-products .single-product div.product .zap-competition-tabs-wrapper section.related, .single-product div.product .zap-competition-tabs-wrapper .zapct-products div.woocommerce, .zapct-products .single-product div.product .zap-competition-tabs-wrapper div.woocommerce {
    padding: 0;
  }
}
.single-product div.product .zap-competition-tabs-wrapper #zap-competition-tabs {
  background-color: #fff;
  border-radius: 5px;
}
.single-product div.product .zap-competition-tabs-wrapper #zap-competition-tabs h3 {
  font-size: 1.5em;
  font-weight: 700;
}
.single-product div.product .zap-competition-tabs-wrapper #zap-competition-tabs .tab-content {
  border: 0;
}
.single-product div.product .zapct-add-to-cart-wrapper .zapct-add-to-cart-button-wrapper .single_add_to_cart_button.button.alt {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 0px;
  outline: none !important;
  box-shadow: none !important;
  padding: 0px 1.5rem;
  height: 40px;
  min-width: 120px;
  z-index: 0;
  background-color: #E77926;
  border: 0px solid #FFF;
  color: #FFF;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 3px;
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: 700;
  border: 0;
}
@media all and (min-width: 0) and (max-width: 575px) {
  .single-product div.product .zapct-add-to-cart-wrapper .zapct-add-to-cart-button-wrapper .single_add_to_cart_button.button.alt {
    font-size: 14px;
    height: 30px;
    padding: 0px 1rem;
    border-radius: 4px;
  }
}
.single-product div.product .zapct-add-to-cart-wrapper .zapct-add-to-cart-button-wrapper .single_add_to_cart_button.button.alt strong {
  font-weight: 700;
}
.single-product div.product .zapct-add-to-cart-wrapper .zapct-add-to-cart-button-wrapper .single_add_to_cart_button.button.alt .badge {
  margin-right: 0.5rem;
}
.single-product div.product .zapct-add-to-cart-wrapper .zapct-add-to-cart-button-wrapper .single_add_to_cart_button.button.alt:not(:disabled):hover, .single-product div.product .zapct-add-to-cart-wrapper .zapct-add-to-cart-button-wrapper .single_add_to_cart_button.button.alt:not(:disabled):focus, .single-product div.product .zapct-add-to-cart-wrapper .zapct-add-to-cart-button-wrapper .single_add_to_cart_button.button.alt:not(:disabled):active {
  color: #fff;
  background-color: #E77926;
  filter: brightness(110%);
}
.single-product div.product .zapct-add-to-cart-wrapper .zapct-add-to-cart-button-wrapper .single_add_to_cart_button.button.alt:not(:disabled):hover:after, .single-product div.product .zapct-add-to-cart-wrapper .zapct-add-to-cart-button-wrapper .single_add_to_cart_button.button.alt:not(:disabled):focus:after, .single-product div.product .zapct-add-to-cart-wrapper .zapct-add-to-cart-button-wrapper .single_add_to_cart_button.button.alt:not(:disabled):active:after {
  left: 0;
}
.single-product div.product .zapct-add-to-cart-wrapper .zapct-add-to-cart-button-wrapper .single_add_to_cart_button.button.alt:not(:disabled):hover:before, .single-product div.product .zapct-add-to-cart-wrapper .zapct-add-to-cart-button-wrapper .single_add_to_cart_button.button.alt:not(:disabled):focus:before, .single-product div.product .zapct-add-to-cart-wrapper .zapct-add-to-cart-button-wrapper .single_add_to_cart_button.button.alt:not(:disabled):active:before {
  width: calc(100% - 27px);
}
.single-product div.product .zapct-add-to-cart-wrapper .zapct-add-to-cart-button-wrapper .single_add_to_cart_button.button.alt:hover {
  opacity: 1;
  border: 0;
}
.single-product div.product .progress-track {
  background-color: transparent;
  border-radius: 2px !important;
  border-color: #E77926 !important;
  border-width: 2px !important;
  height: 15px;
  margin-top: 1.75rem;
  margin-bottom: 1rem;
  border-radius: 5px !important;
}
@media all and (min-width: 0) and (max-width: 575px) {
  .single-product div.product .progress-track {
    height: 3px;
    margin-top: 16px;
    margin-bottom: 12px;
  }
}
.single-product div.product .progress-track .progress-bar {
  height: 100%;
  position: relative;
  overflow: visible;
  background-color: #E77926 !important;
  border-radius: 3px;
}
.single-product div.product .progress-track .percentage-label,
.single-product div.product .progress-track .mini-label,
.single-product div.product .progress-track .mini-label-percentage,
.single-product div.product .progress-track .tickets-sold-label {
  line-height: 1;
  position: absolute;
  bottom: calc(100% + 1rem);
  left: 0px !important;
  top: auto;
  color: #000;
  font-size: 12px;
  text-transform: uppercase;
  transform: none;
  font-weight: 400;
}
@media all and (min-width: 0) and (max-width: 575px) {
  .single-product div.product .progress-track .percentage-label,
  .single-product div.product .progress-track .mini-label,
  .single-product div.product .progress-track .mini-label-percentage,
  .single-product div.product .progress-track .tickets-sold-label {
    font-size: 6px;
    bottom: calc(100% + 0.5rem);
  }
}
.single-product div.product .progress-track .mini-label {
  left: auto !important;
  right: 0;
}
.single-product div.product .progress-track .mini-label-percentage:after,
.single-product div.product .progress-track .percentage-label:after {
  content: " Sold";
}
.single-product div.product .progress-track .mini-label,
.single-product div.product .progress-track .tickets-sold-label {
  left: auto;
  right: 0px;
  text-align: right;
}
.single-product div.product .progress-track .mini-label {
  z-index: 10;
}
.single-product div.product .zap-competitions-progress {
  margin: 0;
  padding-bottom: 0 !important;
}
.single-product div.product .zap-competitions-progress .label.left,
.single-product div.product .zap-competitions-progress .label.right {
  display: none;
}
.single-product div.product .zap-competitions-progress .tickets-sold {
  font-size: 14px;
}
@media all and (min-width: 0) and (max-width: 575px) {
  .single-product div.product .zap-competitions-progress .tickets-sold {
    font-size: 12px !important;
  }
}
.single-product div.product .zap-competitions-progress .progress-track {
  margin-top: 1.5rem !important;
  margin-bottom: 1rem;
}
@media all and (min-width: 0) and (max-width: 575px) {
  .single-product div.product .zap-competitions-progress .progress-track {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
}
@media all and (min-width: 0) and (max-width: 575px) {
  .single-product div.product .zap-competitions-progress .percentage-label,
  .single-product div.product .zap-competitions-progress .tickets-sold-label {
    font-size: 12px !important;
  }
}
@media all and (min-width: 0) and (max-width: 575px) {
  .single-product div.product .zapct-add-to-cart-wrapper div.zap-competition-qty {
    margin-bottom: 1rem;
  }
}
.single-product div.product .zapct-add-to-cart-button-wrapper .single_add_to_cart_button.button.alt {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 0px;
  outline: none !important;
  box-shadow: none !important;
  padding: 0px 1.5rem;
  height: 40px;
  min-width: 120px;
  z-index: 0;
  background-color: #E77926;
  border: 0px solid #FFF;
  color: #FFF;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 3px;
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: 700;
  width: 100% !important;
}
@media all and (min-width: 0) and (max-width: 575px) {
  .single-product div.product .zapct-add-to-cart-button-wrapper .single_add_to_cart_button.button.alt {
    font-size: 14px;
    height: 30px;
    padding: 0px 1rem;
    border-radius: 4px;
  }
}
.single-product div.product .zapct-add-to-cart-button-wrapper .single_add_to_cart_button.button.alt strong {
  font-weight: 700;
}
.single-product div.product .zapct-add-to-cart-button-wrapper .single_add_to_cart_button.button.alt .badge {
  margin-right: 0.5rem;
}
.single-product div.product .zapct-add-to-cart-button-wrapper .single_add_to_cart_button.button.alt:not(:disabled):hover, .single-product div.product .zapct-add-to-cart-button-wrapper .single_add_to_cart_button.button.alt:not(:disabled):focus, .single-product div.product .zapct-add-to-cart-button-wrapper .single_add_to_cart_button.button.alt:not(:disabled):active {
  color: #fff;
  background-color: #E77926;
  filter: brightness(110%);
}
.single-product div.product .zapct-add-to-cart-button-wrapper .single_add_to_cart_button.button.alt:not(:disabled):hover:after, .single-product div.product .zapct-add-to-cart-button-wrapper .single_add_to_cart_button.button.alt:not(:disabled):focus:after, .single-product div.product .zapct-add-to-cart-button-wrapper .single_add_to_cart_button.button.alt:not(:disabled):active:after {
  left: 0;
}
.single-product div.product .zapct-add-to-cart-button-wrapper .single_add_to_cart_button.button.alt:not(:disabled):hover:before, .single-product div.product .zapct-add-to-cart-button-wrapper .single_add_to_cart_button.button.alt:not(:disabled):focus:before, .single-product div.product .zapct-add-to-cart-button-wrapper .single_add_to_cart_button.button.alt:not(:disabled):active:before {
  width: calc(100% - 27px);
}
.single-product div.product .zapc-countdown {
  margin: 0;
  padding: 0;
}
.single-product div.product .zapc-postal-buttons {
  max-width: 100%;
}
.single-product div.product .zapc-postal-buttons button {
  border-color: var(--color-body-highlight);
  background-color: #fff;
  color: var(--color-body-highlight);
}
.single-product div.product .zapc-postal-buttons button.active {
  background-color: var(--color-body-highlight);
}
.single-product div.product .zapc-postal-buttons button:hover {
  background-color: var(--color-body-highlight);
}
.single-product div.product .zapc-countdown {
  font-size: 12px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  width: 100%;
  font-family: var(--font-family-countdown);
  background-color: transparent;
  justify-content: center;
  border-radius: 10px;
  padding: 0 15px;
  overflow: hidden;
}
@media all and (min-width: 0) and (max-width: 767px) {
  .single-product div.product .zapc-countdown {
    padding: 0;
    height: 40px;
    border-radius: 4px;
  }
}
.single-product div.product .zapc-countdown > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0px;
  height: 62px;
  width: 25%;
  letter-spacing: 0em;
  line-height: 1;
  color: #fff;
  font-weight: 600;
  background-color: var(--color-theme-primary);
  border: 2px solid #012632;
  border-width: 2px 0;
}
.single-product div.product .zapc-countdown > div:first-child {
  border-radius: 5px 0 0 5px;
  border-width: 2px 0 2px 2px;
}
.single-product div.product .zapc-countdown > div:last-child {
  border-radius: 0 5px 5px 0;
  border-width: 2px 2px 2px 0px;
}
@media all and (min-width: 0) and (max-width: 767px) {
  .single-product div.product .zapc-countdown > div {
    height: 36px;
    font-size: 4px;
  }
}
.single-product div.product .zapc-countdown > div + div {
  position: relative;
}
.single-product div.product .zapc-countdown > div + div:before {
  content: "";
  height: 30%;
  width: 1px;
  position: absolute;
  left: 0;
  background-color: rgba(255, 255, 255, 0.15);
}
.single-product div.product .zapc-countdown > div span {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 4px;
  letter-spacing: 0em;
  display: block;
}
@media all and (min-width: 0) and (max-width: 767px) {
  .single-product div.product .zapc-countdown > div span {
    font-size: 12px !important;
  }
}
@media all and (min-width: 0) and (max-width: 575px) {
  .single-product div.product .zapc-countdown > div {
    font-size: 10px !important;
  }
  .single-product div.product .zapc-countdown > div span {
    font-size: 22px !important;
  }
}
.single-product #zap-competition-tabs .nav-tabs {
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  gap: 3px;
  border: none;
  position: relative;
  padding-top: 4px;
}
.single-product #zap-competition-tabs .nav-tabs:after {
  background: rgba(84, 88, 90, 0.3);
  bottom: 0px;
  content: "";
  height: 1px;
  position: absolute;
  width: 100%;
  z-index: 0;
}
.single-product #zap-competition-tabs .nav-tabs li {
  padding: 0;
  flex-basis: fit-content;
  flex-grow: 0;
}
.single-product #zap-competition-tabs .nav-tabs .nav-link {
  color: #0e1647;
  font-weight: 700;
  text-transform: uppercase;
  border-color: transparent !important;
  border-width: 0 0 3px 0 !important;
  background-color: transparent !important;
  font-size: 14px;
  padding: 15px 20px;
}
.single-product #zap-competition-tabs .nav-tabs .nav-link.active {
  background-color: #FFF !important;
  border-color: #0e1647 !important;
}
.single-product .rangeslider__handle__value {
  background-color: #E77926;
  border-top: #E77926;
  color: #FFF;
  font-weight: 700;
  box-shadow: none;
}
.single-product .rangeslider__handle__value:before {
  border-top-color: #E77926;
}
.single-product .rangeslider {
  background-color: #eee;
}
.single-product .rangeslider__handle,
.single-product .rangeslider__fill {
  background-color: #E77926;
}
.single-product .rangeslider--active .rangeslider__handle {
  background-color: #E77926;
}
.single-product .rangeslider--active .rangeslider__handle__value {
  box-shadow: none;
  background-color: #E77926;
  border-top: #E77926;
  color: #FFF;
}
.single-product .rangeslider--active .rangeslider__handle__value:before {
  border-top-color: #E77926;
}

.single-product div.product .zap-competitions-progress {
  padding-top: 0.5rem;
  padding-bottom: 2rem;
}
.single-product div.product .zap-competitions-progress .progress-track {
  background-color: transparent;
  border-radius: 2px !important;
  border-color: #E77926 !important;
  border-width: 2px !important;
  height: 15px;
  margin-top: 1.75rem;
  margin-bottom: 1rem;
  border-radius: 5px !important;
}
@media all and (min-width: 0) and (max-width: 575px) {
  .single-product div.product .zap-competitions-progress .progress-track {
    height: 3px;
    margin-top: 16px;
    margin-bottom: 12px;
  }
}
.single-product div.product .zap-competitions-progress .progress-track .progress-bar {
  height: 100%;
  position: relative;
  overflow: visible;
  background-color: #E77926 !important;
  border-radius: 3px;
}
.single-product div.product .zap-competitions-progress .progress-track .percentage-label,
.single-product div.product .zap-competitions-progress .progress-track .mini-label,
.single-product div.product .zap-competitions-progress .progress-track .mini-label-percentage,
.single-product div.product .zap-competitions-progress .progress-track .tickets-sold-label {
  line-height: 1;
  position: absolute;
  bottom: calc(100% + 1rem);
  left: 0px !important;
  top: auto;
  color: #000;
  font-size: 12px;
  text-transform: uppercase;
  transform: none;
  font-weight: 400;
}
@media all and (min-width: 0) and (max-width: 575px) {
  .single-product div.product .zap-competitions-progress .progress-track .percentage-label,
  .single-product div.product .zap-competitions-progress .progress-track .mini-label,
  .single-product div.product .zap-competitions-progress .progress-track .mini-label-percentage,
  .single-product div.product .zap-competitions-progress .progress-track .tickets-sold-label {
    font-size: 6px;
    bottom: calc(100% + 0.5rem);
  }
}
.single-product div.product .zap-competitions-progress .progress-track .mini-label {
  left: auto !important;
  right: 0;
}
.single-product div.product .zap-competitions-progress .progress-track .mini-label-percentage:after,
.single-product div.product .zap-competitions-progress .progress-track .percentage-label:after {
  content: " Sold";
}
.single-product div.product .zap-competitions-progress .progress-track .mini-label,
.single-product div.product .zap-competitions-progress .progress-track .tickets-sold-label {
  left: auto;
  right: 0px;
  text-align: right;
}
.single-product div.product .zap-competitions-progress .progress-track .mini-label {
  z-index: 10;
}
.single-product div.product .zap-competitions-progress .progress-track {
  height: 15px;
  margin: 2rem 0;
}
.single-product div.product .zap-competitions-progress .progress-track .progress-bar {
  background: #fff;
}

.single-product div.product .zapc-postal-rules-text {
  text-align: left;
  padding: 1rem;
  color: var(--color-body);
}
.single-product div.product .zapc-postal-rules-text ul, .single-product div.product .zapc-postal-rules-text ol {
  padding-left: 1.5rem;
}

.single_add_to_cart_button.button.alt {
  margin-left: 0;
}

div.product .zapct-add-to-cart-wrapper .zapct-add-to-cart-button-wrapper {
  flex: 0 0 100% !important;
  max-width: 100% !important;
}

/* ==========================================================================
   Page Template - Contact
   ========================================================================== */
/* ==========================================================================
   Page Template - Legal
   ========================================================================== */
.page-template-legal .container > .card, .page-template-legal .zapc-related-products section.related > .card, .zapc-related-products .page-template-legal section.related > .card, .page-template-legal .zapct-products div.woocommerce > .card, .zapct-products .page-template-legal div.woocommerce > .card {
  padding: 0;
  background-color: transparent !important;
  border: 0 !important;
  box-shadow: none;
}
.page-template-legal .main-container .nav {
  gap: 0.5rem;
}
.page-template-legal .main-container .nav-link {
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid #262626;
  border-radius: 2px;
}
@media all and (min-width: 576px) {
  .page-template-legal .main-container .nav-link {
    border-radius: 2px;
  }
}
.page-template-legal .main-container .nav-pills .nav-link.active,
.page-template-legal .main-container .nav-pills .show > .nav-link {
  opacity: 1;
}

/* ==========================================================================
   Page Template - Legal
   ========================================================================== */
.page-template-legal .container.main-container, .page-template-legal .zapc-related-products section.main-container.related, .zapc-related-products .page-template-legal section.main-container.related, .page-template-legal .zapct-products div.main-container.woocommerce, .zapct-products .page-template-legal div.main-container.woocommerce {
  margin: 0 auto;
}
.page-template-legal .container.main-container > p, .page-template-legal .zapc-related-products section.main-container.related > p, .zapc-related-products .page-template-legal section.main-container.related > p, .page-template-legal .zapct-products div.main-container.woocommerce > p, .zapct-products .page-template-legal div.main-container.woocommerce > p {
  padding: 0 0px;
}
.page-template-legal .container.main-container > .wp-block-list, .page-template-legal .zapc-related-products section.main-container.related > .wp-block-list, .zapc-related-products .page-template-legal section.main-container.related > .wp-block-list, .page-template-legal .zapct-products div.main-container.woocommerce > .wp-block-list, .zapct-products .page-template-legal div.main-container.woocommerce > .wp-block-list {
  padding: 0 45px;
}
.page-template-legal .container.main-container > ol > li > ol, .page-template-legal .zapc-related-products section.main-container.related > ol > li > ol, .zapc-related-products .page-template-legal section.main-container.related > ol > li > ol, .page-template-legal .zapct-products div.main-container.woocommerce > ol > li > ol, .zapct-products .page-template-legal div.main-container.woocommerce > ol > li > ol,
.page-template-legal .container.main-container > ol > li > ol ol,
.page-template-legal .zapc-related-products section.main-container.related > ol > li > ol ol,
.zapc-related-products .page-template-legal section.main-container.related > ol > li > ol ol,
.page-template-legal .zapct-products div.main-container.woocommerce > ol > li > ol ol,
.zapct-products .page-template-legal div.main-container.woocommerce > ol > li > ol ol {
  margin-bottom: 2rem;
  margin-top: 2rem;
  margin-left: 4rem;
}
.page-template-legal .container.main-container .card:has(#zapct-legal-navbar), .page-template-legal .zapc-related-products section.main-container.related .card:has(#zapct-legal-navbar), .zapc-related-products .page-template-legal section.main-container.related .card:has(#zapct-legal-navbar), .page-template-legal .zapct-products div.main-container.woocommerce .card:has(#zapct-legal-navbar), .zapct-products .page-template-legal div.main-container.woocommerce .card:has(#zapct-legal-navbar) {
  border-radius: 3px;
}
.page-template-legal .container.main-container #iubenda_policy h1, .page-template-legal .zapc-related-products section.main-container.related #iubenda_policy h1, .zapc-related-products .page-template-legal section.main-container.related #iubenda_policy h1, .page-template-legal .zapct-products div.main-container.woocommerce #iubenda_policy h1, .zapct-products .page-template-legal div.main-container.woocommerce #iubenda_policy h1,
.page-template-legal .container.main-container #iubenda_policy h2,
.page-template-legal .zapc-related-products section.main-container.related #iubenda_policy h2,
.zapc-related-products .page-template-legal section.main-container.related #iubenda_policy h2,
.page-template-legal .zapct-products div.main-container.woocommerce #iubenda_policy h2,
.zapct-products .page-template-legal div.main-container.woocommerce #iubenda_policy h2,
.page-template-legal .container.main-container #iubenda_policy h3,
.page-template-legal .zapc-related-products section.main-container.related #iubenda_policy h3,
.zapc-related-products .page-template-legal section.main-container.related #iubenda_policy h3,
.page-template-legal .zapct-products div.main-container.woocommerce #iubenda_policy h3,
.zapct-products .page-template-legal div.main-container.woocommerce #iubenda_policy h3,
.page-template-legal .container.main-container #iubenda_policy h4,
.page-template-legal .zapc-related-products section.main-container.related #iubenda_policy h4,
.zapc-related-products .page-template-legal section.main-container.related #iubenda_policy h4,
.page-template-legal .zapct-products div.main-container.woocommerce #iubenda_policy h4,
.zapct-products .page-template-legal div.main-container.woocommerce #iubenda_policy h4,
.page-template-legal .container.main-container #iubenda_policy h5,
.page-template-legal .zapc-related-products section.main-container.related #iubenda_policy h5,
.zapc-related-products .page-template-legal section.main-container.related #iubenda_policy h5,
.page-template-legal .zapct-products div.main-container.woocommerce #iubenda_policy h5,
.zapct-products .page-template-legal div.main-container.woocommerce #iubenda_policy h5,
.page-template-legal .container.main-container #iubenda_policy h6,
.page-template-legal .zapc-related-products section.main-container.related #iubenda_policy h6,
.zapc-related-products .page-template-legal section.main-container.related #iubenda_policy h6,
.page-template-legal .zapct-products div.main-container.woocommerce #iubenda_policy h6,
.zapct-products .page-template-legal div.main-container.woocommerce #iubenda_policy h6 {
  font-family: var(--font-family-body), sans-serif !important;
  font-size: 2rem !important;
  line-height: 3rem !important;
}
.page-template-legal .container.main-container li, .page-template-legal .zapc-related-products section.main-container.related li, .zapc-related-products .page-template-legal section.main-container.related li, .page-template-legal .zapct-products div.main-container.woocommerce li, .zapct-products .page-template-legal div.main-container.woocommerce li,
.page-template-legal .container.main-container p,
.page-template-legal .zapc-related-products section.main-container.related p,
.zapc-related-products .page-template-legal section.main-container.related p,
.page-template-legal .zapct-products div.main-container.woocommerce p,
.zapct-products .page-template-legal div.main-container.woocommerce p,
.page-template-legal .container.main-container #iubenda_policy p,
.page-template-legal .container.main-container #iubenda_policy a,
.page-template-legal .zapc-related-products section.main-container.related #iubenda_policy a,
.zapc-related-products .page-template-legal section.main-container.related #iubenda_policy a,
.page-template-legal .zapct-products div.main-container.woocommerce #iubenda_policy a,
.zapct-products .page-template-legal div.main-container.woocommerce #iubenda_policy a,
.page-template-legal .container.main-container #iubenda_policy ul.styled li,
.page-template-legal .container.main-container #iubenda_policy ul li {
  font-size: 1rem !important;
  font-family: var(--font-family-body), sans-serif !important;
  font-style: normal !important;
}
/* ==========================================================================
   Page Template - Draw Results
   ========================================================================== */
.zapc-competition-results-wrapper {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}
.zapc-competition-results-wrapper .result-wrap {
  padding-top: 3rem;
}
.zapc-competition-results-wrapper .nav-tabs {
  justify-content: center;
  gap: 0.5rem;
  margin: 0 auto;
  background-color: #fff;
  width: auto;
  display: inline-flex;
  border-radius: 40px;
  padding: 10px;
  gap: 10px;
  margin: 0 auto;
}
.zapc-competition-results-wrapper .nav-tabs .nav-item {
  margin: 0px;
  padding: 0px;
  border: none;
}
.zapc-competition-results-wrapper .nav-tabs .nav-item .nav-link,
.zapc-competition-results-wrapper .nav-tabs > .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: none;
  width: auto !important;
  min-width: -moz-min-content;
  min-width: min-content;
  clip-path: none;
  font-size: 16px;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  border: none;
  background: transparent;
  color: var(--color-body);
  position: relative;
  z-index: 0;
  letter-spacing: 0.1em;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  border: 0;
  opacity: 1;
  transition: 0.2s;
}
.zapc-competition-results-wrapper .nav-tabs .nav-item .nav-link:hover,
.zapc-competition-results-wrapper .nav-tabs > .btn:hover {
  background-color: #f6f6f6;
}
.zapc-competition-results-wrapper .nav-tabs .nav-item .nav-link:hover::before,
.zapc-competition-results-wrapper .nav-tabs > .btn:hover::before {
  opacity: 1;
}
.zapc-competition-results-wrapper .nav-tabs .nav-item .nav-link.active {
  color: #FFF;
  background-color: #E77926;
}
.zapc-competition-results-wrapper .nav-tabs .nav-item {
  border: 0;
}
.zapc-competition-results-wrapper .nav-tabs .nav-item .nav-link {
  border: 0;
  border-radius: 40px;
}

.zapct-winner-card {
  background-color: #FFF;
  border-radius: 1px;
  margin-bottom: 3rem !important;
}
@media all and (min-width: 0) and (max-width: 767px) {
  .zapct-winner-card {
    padding: 0;
  }
}
.zapct-winner-card .zapct-single-result {
  text-align: left;
}
.zapct-winner-card .card-title {
  color: #0e1647;
  margin-bottom: 2rem;
  font-weight: 800;
  text-align: left;
}
.zapct-winner-card .card-title i {
  display: none;
}

.zapct-single-result {
  background-color: #fcf8f2;
  border-radius: 1px;
  padding: 1rem;
  align-items: center;
  gap: 0.5rem;
}
@media all and (min-width: 768px) {
  .zapct-single-result {
    display: flex;
  }
}
.zapct-single-result i {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  display: inline-block;
  margin-right: 0.5rem;
  flex: 0 0 10px;
  color: #E77926;
}
.zapct-single-result + .zapct-single-result {
  margin-top: 0.5rem;
}
.zapct-single-result .zapct-winner-name,
.zapct-single-result .zapct-winner-ticket {
  color: #666a6c;
}

/* ==========================================================================
   Page Template - Entry Lists
   ========================================================================== */
/* ==========================================================================
   Page Template - FAQs
   ========================================================================== */
.archive-description {
  max-width: 800px;
  margin: 0 auto;
}

.container.zapct-faq .zapct-single-result, .zapc-related-products section.zapct-faq.related .zapct-single-result, .zapct-products div.zapct-faq.woocommerce .zapct-single-result {
  text-align: left;
}
.container.zapct-faq ol, .zapc-related-products section.zapct-faq.related ol, .zapct-products div.zapct-faq.woocommerce ol,
.container.zapct-faq ul,
.zapc-related-products section.zapct-faq.related ul,
.zapct-products div.zapct-faq.woocommerce ul {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
}
.container.zapct-faq #zapct-faq-accordion, .zapc-related-products section.zapct-faq.related #zapct-faq-accordion, .zapct-products div.zapct-faq.woocommerce #zapct-faq-accordion {
  padding: 0;
  background-color: transparent !important;
}
.container.zapct-faq .card, .zapc-related-products section.zapct-faq.related .card, .zapct-products div.zapct-faq.woocommerce .card {
  width: 100%;
  max-width: 850px;
  margin: 0rem auto 0;
  padding: 0px;
  overflow: hidden;
  background-color: #FFF;
  border-radius: 5px;
}
.container.zapct-faq .card:first-child, .zapc-related-products section.zapct-faq.related .card:first-child, .zapct-products div.zapct-faq.woocommerce .card:first-child {
  margin-top: 0;
}
.container.zapct-faq .card + .card, .zapc-related-products section.zapct-faq.related .card + .card, .zapct-products div.zapct-faq.woocommerce .card + .card {
  margin-top: 1rem;
}
@media all and (min-width: 576px) {
  .container.zapct-faq .card, .zapc-related-products section.zapct-faq.related .card, .zapct-products div.zapct-faq.woocommerce .card {
    margin-top: 2rem;
  }
}
.container.zapct-faq .card .card-header, .zapc-related-products section.zapct-faq.related .card .card-header, .zapct-products div.zapct-faq.woocommerce .card .card-header {
  padding: 0px;
  margin: 0px;
  border: none;
  border-radius: 8px;
  background-color: transparent;
}
.container.zapct-faq .card .card-header h5, .zapc-related-products section.zapct-faq.related .card .card-header h5, .zapct-products div.zapct-faq.woocommerce .card .card-header h5 {
  position: relative;
}
.container.zapct-faq .card .card-header h5 button, .zapc-related-products section.zapct-faq.related .card .card-header h5 button, .zapct-products div.zapct-faq.woocommerce .card .card-header h5 button {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 18px 24px 24px;
  background-color: transparent;
  color: var(--color-body);
  border: none;
  background: transparent;
  text-decoration: none;
  height: auto;
  text-align: left;
  font-size: 22px;
  text-transform: none;
  letter-spacing: 0em;
}
@media (max-width: 767.98px) {
  .container.zapct-faq .card .card-header h5 button, .zapc-related-products section.zapct-faq.related .card .card-header h5 button, .zapct-products div.zapct-faq.woocommerce .card .card-header h5 button {
    padding: 1rem;
    text-align: left;
    font-size: 20px;
  }
}
.container.zapct-faq .card .card-header h5 button::before, .zapc-related-products section.zapct-faq.related .card .card-header h5 button::before, .zapct-products div.zapct-faq.woocommerce .card .card-header h5 button::before {
  content: none;
  border: 1px solid var(--border-color);
}
.container.zapct-faq .card .card-header h5 button::after, .zapc-related-products section.zapct-faq.related .card .card-header h5 button::after, .zapct-products div.zapct-faq.woocommerce .card .card-header h5 button::after {
  content: "";
  background: url('data:image/svg+xml,<svg width="23" height="23" viewBox="0 0 23 23" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.4189 1V21.501" stroke="black" stroke-width="3" stroke-linecap="round"/><path d="M21.501 11.0825L0.999999 11.0825" stroke="black" stroke-width="3" stroke-linecap="round"/></svg>') center right no-repeat;
  background-size: 20px;
  height: 20px;
  width: 20px;
  background-position: center;
  background-repeat: no-repeat;
  top: 1.5rem;
  right: 1.5rem;
  transition: 0.1s;
  border-radius: 5px;
  margin-left: 2rem;
  flex: 0 0 20px;
  transition: 0s;
}
@media all and (min-width: 0) and (max-width: 575px) {
  .container.zapct-faq .card .card-header h5 button::after, .zapc-related-products section.zapct-faq.related .card .card-header h5 button::after, .zapct-products div.zapct-faq.woocommerce .card .card-header h5 button::after {
    height: 30px;
    width: 30px;
    top: 1.2rem;
  }
}
.container.zapct-faq .card .card-header h5 button:hover:after, .zapc-related-products section.zapct-faq.related .card .card-header h5 button:hover:after, .zapct-products div.zapct-faq.woocommerce .card .card-header h5 button:hover:after {
  background-color: #FFF;
}
.container.zapct-faq .card .card-header h5 button[aria-expanded=true]::after, .zapc-related-products section.zapct-faq.related .card .card-header h5 button[aria-expanded=true]::after, .zapct-products div.zapct-faq.woocommerce .card .card-header h5 button[aria-expanded=true]::after {
  transform: rotate(45deg);
}
.container.zapct-faq .card .card-body, .zapc-related-products section.zapct-faq.related .card .card-body, .zapct-products div.zapct-faq.woocommerce .card .card-body {
  padding-top: 0rem;
  border-top: 0px;
  padding: 0 1rem 1rem;
}
.container.zapct-faq .card .card-body > *:last-child, .zapc-related-products section.zapct-faq.related .card .card-body > *:last-child, .zapct-products div.zapct-faq.woocommerce .card .card-body > *:last-child {
  margin-bottom: 0;
}
@media all and (min-width: 768px) {
  .container.zapct-faq .card .card-body, .zapc-related-products section.zapct-faq.related .card .card-body, .zapct-products div.zapct-faq.woocommerce .card .card-body {
    padding: 24px;
    padding-top: 0rem;
  }
}
.container.zapct-faq .card .card-body h3, .zapc-related-products section.zapct-faq.related .card .card-body h3, .zapct-products div.zapct-faq.woocommerce .card .card-body h3 {
  font-size: 1.25rem;
}
.container.zapct-faq .card .card-body ul, .zapc-related-products section.zapct-faq.related .card .card-body ul, .zapct-products div.zapct-faq.woocommerce .card .card-body ul, .container.zapct-faq .card .card-body li, .zapc-related-products section.zapct-faq.related .card .card-body li, .zapct-products div.zapct-faq.woocommerce .card .card-body li {
  padding-left: 1em;
}

/* ==========================================================================
   WooCommerce - Instant Wins
   ========================================================================== */
/* ==========================================================================
   Page Template - Reveal the Winner
   ========================================================================== */
.zapct-homepage-winners-slider .card-body,
.zapct-winners .card-body {
  padding: 1.25rem 0;
}
@media all and (min-width: 0) and (max-width: 575px) {
  .zapct-homepage-winners-slider .card-body,
  .zapct-winners .card-body {
    font-size: 12px;
  }
}
@media all and (min-width: 0) and (max-width: 575px) {
  .zapct-homepage-winners-slider .card,
  .zapct-winners .card {
    margin: 0 !important;
  }
  .zapct-homepage-winners-slider .card-title,
  .zapct-winners .card-title {
    font-size: 14px;
  }
}
.zapct-homepage-winners-slider .card-img-top,
.zapct-winners .card-img-top {
  border-radius: 5px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.zapct-homepage-winners-slider .card-text i,
.zapct-winners .card-text i {
  color: #E77926;
}

.flex-control-nav li a {
  background-color: #E77926 !important;
  opacity: 0.4;
}
.flex-control-nav li a.flex-active {
  opacity: 1;
}

/* ==========================================================================
   Home Block - App Block
   ========================================================================== */
/* ==========================================================================
   Home Block - Carousel
   ========================================================================== */
@media all and (min-width: 1200px) {
  .zapct-carousel-wrapper {
    margin: 0 2.5rem;
    border-radius: 0 0 5px 5px;
    overflow: hidden;
  }
}

@media all and (min-width: 0) and (max-width: 575px) {
  .carousel .carousel-item {
    height: 100vw !important;
    position: relative;
    background-size: cover;
  }
  .carousel .carousel-item:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: attr(data-bg-image);
  }
}
@media all and (min-width: 992px) {
  .carousel .carousel-item {
    height: 70vh !important;
  }
}
.carousel .carousel-item .overlay {
  height: 77%;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), black);
  z-index: 1;
  opacity: 0.6;
}
.carousel .carousel-item .carousel-caption {
  top: auto !important;
  bottom: 4rem;
  left: 0;
  right: 0;
  text-align: center;
}
@media all and (min-width: 768px) {
  .carousel .carousel-item .carousel-caption {
    left: 4rem;
    right: 4rem;
    bottom: 8rem;
  }
}
.carousel .carousel-item .carousel-caption .category {
  text-align: center;
  display: block;
  background: none;
  max-width: 100%;
  font-weight: 600;
  font-size: 16px;
  line-height: 1em;
}
@media all and (min-width: 768px) {
  .carousel .carousel-item .carousel-caption .category {
    font-size: 20px;
  }
}
.carousel .carousel-item .carousel-caption > div {
  float: none;
}
.carousel .carousel-item .carousel-caption .title {
  max-width: 100%;
  background-color: transparent;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
  padding: 0;
  margin-bottom: 1rem;
}
.carousel .carousel-item .carousel-caption .title h2 {
  font-size: 38px;
  line-height: 1.1em;
}
@media all and (min-width: 768px) {
  .carousel .carousel-item .carousel-caption .title h2 {
    font-size: 70px;
  }
}
.carousel .carousel-item .carousel-caption .link {
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   Home Block - Custom Blocks
   ========================================================================== */
/* ==========================================================================
   Home Block - Image Block
   ========================================================================== */
/* ==========================================================================
   Home Block - Next Draw
   ========================================================================== */
.zapct-next-draw {
  margin-top: 2rem;
}
@media all and (min-width: 768px) {
  .zapct-next-draw {
    margin-top: 4.5rem;
  }
}
.zapct-next-draw .container .timer-inner, .zapct-next-draw .zapc-related-products section.related .timer-inner, .zapc-related-products .zapct-next-draw section.related .timer-inner, .zapct-next-draw .zapct-products div.woocommerce .timer-inner, .zapct-products .zapct-next-draw div.woocommerce .timer-inner {
  justify-content: center !important;
}
@media (max-width: 767.98px) {
  .zapct-next-draw .container .timer-inner, .zapct-next-draw .zapc-related-products section.related .timer-inner, .zapc-related-products .zapct-next-draw section.related .timer-inner, .zapct-next-draw .zapct-products div.woocommerce .timer-inner, .zapct-products .zapct-next-draw div.woocommerce .timer-inner {
    flex-direction: column;
  }
}
.zapct-next-draw .container .timer-inner #draw-countdown, .zapct-next-draw .zapc-related-products section.related .timer-inner #draw-countdown, .zapc-related-products .zapct-next-draw section.related .timer-inner #draw-countdown, .zapct-next-draw .zapct-products div.woocommerce .timer-inner #draw-countdown, .zapct-products .zapct-next-draw div.woocommerce .timer-inner #draw-countdown {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  width: 100%;
  font-family: var(--font-family-countdown);
  background-color: transparent;
  justify-content: center;
  border-radius: 10px;
  padding: 0 15px;
  overflow: hidden;
  max-width: 500px;
  margin: 0px 2vw;
}
@media all and (min-width: 0) and (max-width: 767px) {
  .zapct-next-draw .container .timer-inner #draw-countdown, .zapct-next-draw .zapc-related-products section.related .timer-inner #draw-countdown, .zapc-related-products .zapct-next-draw section.related .timer-inner #draw-countdown, .zapct-next-draw .zapct-products div.woocommerce .timer-inner #draw-countdown, .zapct-products .zapct-next-draw div.woocommerce .timer-inner #draw-countdown {
    padding: 0;
    height: 40px;
    border-radius: 4px;
  }
}
.zapct-next-draw .container .timer-inner #draw-countdown > div, .zapct-next-draw .zapc-related-products section.related .timer-inner #draw-countdown > div, .zapc-related-products .zapct-next-draw section.related .timer-inner #draw-countdown > div, .zapct-next-draw .zapct-products div.woocommerce .timer-inner #draw-countdown > div, .zapct-products .zapct-next-draw div.woocommerce .timer-inner #draw-countdown > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0px;
  height: 62px;
  width: 25%;
  letter-spacing: 0em;
  line-height: 1;
  color: #fff;
  font-weight: 600;
  background-color: var(--color-theme-primary);
  border: 2px solid #012632;
  border-width: 2px 0;
}
.zapct-next-draw .container .timer-inner #draw-countdown > div:first-child, .zapct-next-draw .zapc-related-products section.related .timer-inner #draw-countdown > div:first-child, .zapc-related-products .zapct-next-draw section.related .timer-inner #draw-countdown > div:first-child, .zapct-next-draw .zapct-products div.woocommerce .timer-inner #draw-countdown > div:first-child, .zapct-products .zapct-next-draw div.woocommerce .timer-inner #draw-countdown > div:first-child {
  border-radius: 5px 0 0 5px;
  border-width: 2px 0 2px 2px;
}
.zapct-next-draw .container .timer-inner #draw-countdown > div:last-child, .zapct-next-draw .zapc-related-products section.related .timer-inner #draw-countdown > div:last-child, .zapc-related-products .zapct-next-draw section.related .timer-inner #draw-countdown > div:last-child, .zapct-next-draw .zapct-products div.woocommerce .timer-inner #draw-countdown > div:last-child, .zapct-products .zapct-next-draw div.woocommerce .timer-inner #draw-countdown > div:last-child {
  border-radius: 0 5px 5px 0;
  border-width: 2px 2px 2px 0px;
}
@media all and (min-width: 0) and (max-width: 767px) {
  .zapct-next-draw .container .timer-inner #draw-countdown > div, .zapct-next-draw .zapc-related-products section.related .timer-inner #draw-countdown > div, .zapc-related-products .zapct-next-draw section.related .timer-inner #draw-countdown > div, .zapct-next-draw .zapct-products div.woocommerce .timer-inner #draw-countdown > div, .zapct-products .zapct-next-draw div.woocommerce .timer-inner #draw-countdown > div {
    height: 36px;
    font-size: 4px;
  }
}
.zapct-next-draw .container .timer-inner #draw-countdown > div + div, .zapct-next-draw .zapc-related-products section.related .timer-inner #draw-countdown > div + div, .zapc-related-products .zapct-next-draw section.related .timer-inner #draw-countdown > div + div, .zapct-next-draw .zapct-products div.woocommerce .timer-inner #draw-countdown > div + div, .zapct-products .zapct-next-draw div.woocommerce .timer-inner #draw-countdown > div + div {
  position: relative;
}
.zapct-next-draw .container .timer-inner #draw-countdown > div + div:before, .zapct-next-draw .zapc-related-products section.related .timer-inner #draw-countdown > div + div:before, .zapc-related-products .zapct-next-draw section.related .timer-inner #draw-countdown > div + div:before, .zapct-next-draw .zapct-products div.woocommerce .timer-inner #draw-countdown > div + div:before, .zapct-products .zapct-next-draw div.woocommerce .timer-inner #draw-countdown > div + div:before {
  content: "";
  height: 30%;
  width: 1px;
  position: absolute;
  left: 0;
  background-color: rgba(255, 255, 255, 0.15);
}
.zapct-next-draw .container .timer-inner #draw-countdown > div span, .zapct-next-draw .zapc-related-products section.related .timer-inner #draw-countdown > div span, .zapc-related-products .zapct-next-draw section.related .timer-inner #draw-countdown > div span, .zapct-next-draw .zapct-products div.woocommerce .timer-inner #draw-countdown > div span, .zapct-products .zapct-next-draw div.woocommerce .timer-inner #draw-countdown > div span {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 4px;
  letter-spacing: 0em;
  display: block;
}
@media all and (min-width: 0) and (max-width: 767px) {
  .zapct-next-draw .container .timer-inner #draw-countdown > div span, .zapct-next-draw .zapc-related-products section.related .timer-inner #draw-countdown > div span, .zapc-related-products .zapct-next-draw section.related .timer-inner #draw-countdown > div span, .zapct-next-draw .zapct-products div.woocommerce .timer-inner #draw-countdown > div span, .zapct-products .zapct-next-draw div.woocommerce .timer-inner #draw-countdown > div span {
    font-size: 12px !important;
  }
}
@media all and (min-width: 0) and (max-width: 767px) {
  .zapct-next-draw .container .timer-inner #draw-countdown, .zapct-next-draw .zapc-related-products section.related .timer-inner #draw-countdown, .zapc-related-products .zapct-next-draw section.related .timer-inner #draw-countdown, .zapct-next-draw .zapct-products div.woocommerce .timer-inner #draw-countdown, .zapct-products .zapct-next-draw div.woocommerce .timer-inner #draw-countdown {
    height: 60px !important;
    max-width: 300px;
  }
}
@media all and (min-width: 0) and (max-width: 767px) {
  .zapct-next-draw .container .timer-inner #draw-countdown > div, .zapct-next-draw .zapc-related-products section.related .timer-inner #draw-countdown > div, .zapc-related-products .zapct-next-draw section.related .timer-inner #draw-countdown > div, .zapct-next-draw .zapct-products div.woocommerce .timer-inner #draw-countdown > div, .zapct-products .zapct-next-draw div.woocommerce .timer-inner #draw-countdown > div {
    height: 50px;
    line-height: 10px;
    font-size: 8px !important;
  }
  .zapct-next-draw .container .timer-inner #draw-countdown > div span, .zapct-next-draw .zapc-related-products section.related .timer-inner #draw-countdown > div span, .zapc-related-products .zapct-next-draw section.related .timer-inner #draw-countdown > div span, .zapct-next-draw .zapct-products div.woocommerce .timer-inner #draw-countdown > div span, .zapct-products .zapct-next-draw div.woocommerce .timer-inner #draw-countdown > div span {
    font-size: 26px !important;
    margin-bottom: 0;
  }
}
.zapct-next-draw .container .timer-inner .until-next, .zapct-next-draw .zapc-related-products section.related .timer-inner .until-next, .zapc-related-products .zapct-next-draw section.related .timer-inner .until-next, .zapct-next-draw .zapct-products div.woocommerce .timer-inner .until-next, .zapct-products .zapct-next-draw div.woocommerce .timer-inner .until-next {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  order: -1;
  text-align: right;
  color: #011E48;
}
@media all and (min-width: 0) and (max-width: 575px) {
  .zapct-next-draw .container .timer-inner .until-next, .zapct-next-draw .zapc-related-products section.related .timer-inner .until-next, .zapc-related-products .zapct-next-draw section.related .timer-inner .until-next, .zapct-next-draw .zapct-products div.woocommerce .timer-inner .until-next, .zapct-products .zapct-next-draw div.woocommerce .timer-inner .until-next {
    font-size: 10px;
  }
}
@media (max-width: 991.98px) {
  .zapct-next-draw .container .timer-inner .until-next, .zapct-next-draw .zapc-related-products section.related .timer-inner .until-next, .zapc-related-products .zapct-next-draw section.related .timer-inner .until-next, .zapct-next-draw .zapct-products div.woocommerce .timer-inner .until-next, .zapct-products .zapct-next-draw div.woocommerce .timer-inner .until-next {
    flex: 1;
  }
}
@media (max-width: 767.98px) {
  .zapct-next-draw .container .timer-inner .until-next, .zapct-next-draw .zapc-related-products section.related .timer-inner .until-next, .zapc-related-products .zapct-next-draw section.related .timer-inner .until-next, .zapct-next-draw .zapct-products div.woocommerce .timer-inner .until-next, .zapct-products .zapct-next-draw div.woocommerce .timer-inner .until-next {
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 991.98px) {
  .zapct-next-draw .container .timer-inner .link, .zapct-next-draw .zapc-related-products section.related .timer-inner .link, .zapc-related-products .zapct-next-draw section.related .timer-inner .link, .zapct-next-draw .zapct-products div.woocommerce .timer-inner .link, .zapct-products .zapct-next-draw div.woocommerce .timer-inner .link {
    flex: 1;
  }
}
@media (max-width: 767.98px) {
  .zapct-next-draw .container .timer-inner .link, .zapct-next-draw .zapc-related-products section.related .timer-inner .link, .zapc-related-products .zapct-next-draw section.related .timer-inner .link, .zapct-next-draw .zapct-products div.woocommerce .timer-inner .link, .zapct-products .zapct-next-draw div.woocommerce .timer-inner .link {
    margin-top: 0.5rem;
  }
}
.zapct-next-draw .container .timer-inner .link .btn, .zapct-next-draw .zapc-related-products section.related .timer-inner .link .btn, .zapc-related-products .zapct-next-draw section.related .timer-inner .link .btn, .zapct-next-draw .zapct-products div.woocommerce .timer-inner .link .btn, .zapct-products .zapct-next-draw div.woocommerce .timer-inner .link .btn {
  background: none;
  color: #011E48;
  padding: 0;
  height: auto;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: inline-flex;
}
@media all and (min-width: 0) and (max-width: 575px) {
  .zapct-next-draw .container .timer-inner .link .btn, .zapct-next-draw .zapc-related-products section.related .timer-inner .link .btn, .zapc-related-products .zapct-next-draw section.related .timer-inner .link .btn, .zapct-next-draw .zapct-products div.woocommerce .timer-inner .link .btn, .zapct-products .zapct-next-draw div.woocommerce .timer-inner .link .btn {
    font-size: 10px;
  }
}

/* ==========================================================================
   Home Block - Products
   ========================================================================== */
/* ==========================================================================
   Home Block - Reviews
   ========================================================================== */
/* ==========================================================================
   Home Block - Stats
   ========================================================================== */
/* ==========================================================================
   Home Block - Steps
   ========================================================================== */
#zapct-homepage-steps {
  background-color: var(--color-body-highlight);
  border-top: 5px solid #E77926;
  border-bottom: 5px solid #E77926;
  color: #fff;
  margin: 4rem 0 0;
}
@media all and (min-width: 576px) {
  #zapct-homepage-steps {
    border-width: 8px;
  }
}
#zapct-homepage-steps .section-title {
  color: #fff;
}
#zapct-homepage-steps h3 {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0.5rem 0;
}
@media all and (min-width: 0) and (max-width: 575px) {
  #zapct-homepage-steps h3 {
    font-size: 18px;
  }
}
#zapct-homepage-steps .item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 1.5rem;
  margin: 0 0 1rem;
}
#zapct-homepage-steps .item .icon {
  margin: 0;
}
@media all and (min-width: 0) and (max-width: 575px) {
  #zapct-homepage-steps .item .icon {
    font-size: 28px;
  }
}
#zapct-homepage-steps .desc p {
  margin: 0;
}

/* ==========================================================================
   Home Block - Winners
   ========================================================================== */
/* ==========================================================================
   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: #000B08 !important;
}
.xoo-wsc-header a,
.xoo-wsc-body a,
.xoo-wsc-footer a {
  color: #000B08 !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: #5DF675 !important;
}

.xoo-wsc-slider {
  background-color: #fff;
  color: #777777;
}
.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: #000B08;
  border-color: #000B08;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
}
.xoo-wsc-slider .xoo-wsc-sl-apply-coupon button:hover {
  color: #fff;
  background-color: black;
  border-color: black;
}
.xoo-wsc-slider .xoo-wsc-sl-apply-coupon button:focus, .xoo-wsc-slider .xoo-wsc-sl-apply-coupon button.focus {
  color: #fff;
  background-color: black;
  border-color: black;
  box-shadow: 0 0 0 0.2rem rgba(38.25, 47.6, 45.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: #000B08;
  border-color: #000B08;
}
.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: black;
  border-color: black;
}
.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(38.25, 47.6, 45.05, 0.5);
}

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

.xoo-wsc-ft-buttons-cont a,
.xoo-wsc-empty-cart a {
  color: #fff;
  background-color: #000B08;
  border-color: #000B08;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  display: block !important;
  margin-top: 15px !important;
}
.xoo-wsc-ft-buttons-cont a:hover,
.xoo-wsc-empty-cart a:hover {
  color: #fff;
  background-color: black;
  border-color: black;
}
.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: black;
  border-color: black;
  box-shadow: 0 0 0 0.2rem rgba(38.25, 47.6, 45.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: #000B08;
  border-color: #000B08;
}
.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: black;
  border-color: black;
}
.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(38.25, 47.6, 45.05, 0.5);
}

.xoo-wsch-basket .xoo-wscb-icon {
  display: none;
}
.xoo-wsch-basket .xoo-wscb-count {
  background-color: #000B08;
  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 */