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

a {
  color: #d1b86b;
}
a:hover {
  color: rgb(196.9072164948, 165.3350515464, 68.0927835052);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Josefin Sans", 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;
}

/* ==========================================================================
   Titles
   ========================================================================== */
.section-title {
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .section-title {
    font-size: 1.125rem;
  }
}

.zapct-page-title {
  background-color: #1a1a1a !important;
  margin-bottom: 2rem;
}
.zapct-page-title .container {
  text-align: center;
  background-color: #070707;
  padding: 35px 15px 30px;
  background-image: url(../images/TCC_Icon_TitleEnd.svg), url(../images/TCC_Icon_TitleEnd.svg);
  background-position: left -40px center, right -40px center;
  background-repeat: no-repeat;
  background-size: auto 75px;
}
.zapct-page-title .container h1 {
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
@media (max-width: 767.98px) {
  .zapct-page-title .container h1 {
    font-size: 1.125rem;
  }
}

/* ==========================================================================
   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: 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;
}
@media (prefers-reduced-motion: reduce) {
  .badge {
    transition: none;
  }
}
a.badge:hover, a.badge:focus {
  text-decoration: none;
}

.badge:empty {
  display: none;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn, body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row:last-of-type button,
.button {
  display: inline-block;
  font-family: "Josefin Sans", sans-serif;
  font-weight: bold;
  color: #212529;
  text-align: center;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 10px 35px;
  font-size: 0.75rem;
  line-height: 1;
  border-radius: 0px;
  letter-spacing: 0.1rem;
  padding: 10px 35px 8px;
}
.btn:hover, body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row:last-of-type button:hover,
.button:hover {
  color: #212529;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-primary {
  color: #212529;
  background-color: #d1b86b;
  border-color: #d1b86b;
}
.btn-primary:hover {
  color: #212529;
  background-color: rgb(199.9304123711, 170.0012886598, 77.8195876289);
  border-color: rgb(196.9072164948, 165.3350515464, 68.0927835052);
}
.btn-primary:focus, .btn-primary.focus {
  color: #212529;
  background-color: rgb(199.9304123711, 170.0012886598, 77.8195876289);
  border-color: rgb(196.9072164948, 165.3350515464, 68.0927835052);
  box-shadow: 0 0 0 0.2rem rgba(182.6, 161.95, 97.1, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
  color: #212529;
  background-color: #d1b86b;
  border-color: #d1b86b;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #212529;
  background-color: rgb(196.9072164948, 165.3350515464, 68.0927835052);
  border-color: rgb(192.4381443299, 159.9317010309, 59.8118556701);
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(182.6, 161.95, 97.1, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #1a1a1a;
  border-color: #1a1a1a;
}
.btn-secondary:hover {
  color: #fff;
  background-color: rgb(6.875, 6.875, 6.875);
  border-color: rgb(0.5, 0.5, 0.5);
}
.btn-secondary:focus, .btn-secondary.focus {
  color: #fff;
  background-color: rgb(6.875, 6.875, 6.875);
  border-color: rgb(0.5, 0.5, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(60.35, 60.35, 60.35, 0.5);
}
.btn-secondary.disabled, .btn-secondary:disabled {
  color: #fff;
  background-color: #1a1a1a;
  border-color: #1a1a1a;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: rgb(0.5, 0.5, 0.5);
  border-color: black;
}
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(60.35, 60.35, 60.35, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #459c65;
  border-color: #459c65;
}
.btn-success:hover {
  color: #fff;
  background-color: rgb(57.27, 129.48, 83.83);
  border-color: rgb(53.36, 120.64, 78.1066666667);
}
.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: rgb(57.27, 129.48, 83.83);
  border-color: rgb(53.36, 120.64, 78.1066666667);
  box-shadow: 0 0 0 0.2rem rgba(96.9, 170.85, 124.1, 0.5);
}
.btn-success.disabled, .btn-success:disabled {
  color: #fff;
  background-color: #459c65;
  border-color: #459c65;
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: rgb(53.36, 120.64, 78.1066666667);
  border-color: rgb(49.45, 111.8, 72.3833333333);
}
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(96.9, 170.85, 124.1, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:hover {
  color: #fff;
  background-color: rgb(18.75, 132.0652173913, 150);
  border-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
}
.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: rgb(18.75, 132.0652173913, 150);
  border-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
  box-shadow: 0 0 0 0.2rem rgba(57.8, 175.95, 194.65, 0.5);
}
.btn-info.disabled, .btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
  border-color: rgb(15.9166666667, 112.1086956522, 127.3333333333);
}
.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(57.8, 175.95, 194.65, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #212529;
  background-color: rgb(223.75, 167.8125, 0);
  border-color: rgb(211, 158.25, 0);
}
.btn-warning:focus, .btn-warning.focus {
  color: #212529;
  background-color: rgb(223.75, 167.8125, 0);
  border-color: rgb(211, 158.25, 0);
  box-shadow: 0 0 0 0.2rem rgba(221.7, 169.6, 12.1, 0.5);
}
.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: rgb(211, 158.25, 0);
  border-color: rgb(198.25, 148.6875, 0);
}
.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(221.7, 169.6, 12.1, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  color: #fff;
  background-color: rgb(200.082278481, 34.667721519, 50.5158227848);
  border-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
}
.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: rgb(200.082278481, 34.667721519, 50.5158227848);
  border-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
  box-shadow: 0 0 0 0.2rem rgba(225.25, 83.3, 96.9, 0.5);
}
.btn-danger.disabled, .btn-danger:disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
  border-color: rgb(178.3481012658, 30.9018987342, 45.0284810127);
}
.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(225.25, 83.3, 96.9, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #212529;
  background-color: rgb(225.6875, 229.875, 234.0625);
  border-color: rgb(218.25, 223.5, 228.75);
}
.btn-light:focus, .btn-light.focus {
  color: #212529;
  background-color: rgb(225.6875, 229.875, 234.0625);
  border-color: rgb(218.25, 223.5, 228.75);
  box-shadow: 0 0 0 0.2rem rgba(215.75, 217.2, 218.65, 0.5);
}
.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: rgb(218.25, 223.5, 228.75);
  border-color: rgb(210.8125, 217.125, 223.4375);
}
.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(215.75, 217.2, 218.65, 0.5);
}

.btn-dark, body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row:last-of-type button, .woocommerce-notices-wrapper .alert.alert-success .btn {
  color: #fff;
  background-color: #070707;
  border-color: #070707;
}
.btn-dark:hover, body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row:last-of-type button:hover, .woocommerce-notices-wrapper .alert.alert-success .btn:hover {
  color: #fff;
  background-color: black;
  border-color: black;
}
.btn-dark:focus, body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row:last-of-type button:focus, .woocommerce-notices-wrapper .alert.alert-success .btn:focus, .btn-dark.focus, body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row:last-of-type button.focus, .woocommerce-notices-wrapper .alert.alert-success .focus.btn {
  color: #fff;
  background-color: black;
  border-color: black;
  box-shadow: 0 0 0 0.2rem rgba(44.2, 44.2, 44.2, 0.5);
}
.btn-dark.disabled, body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row:last-of-type button.disabled, .woocommerce-notices-wrapper .alert.alert-success .disabled.btn, .btn-dark:disabled, body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row:last-of-type button:disabled, .woocommerce-notices-wrapper .alert.alert-success .btn:disabled {
  color: #fff;
  background-color: #070707;
  border-color: #070707;
}
.btn-dark:not(:disabled):not(.disabled):active, body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row:last-of-type button:not(:disabled):not(.disabled):active, .woocommerce-notices-wrapper .alert.alert-success .btn:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row:last-of-type button:not(:disabled):not(.disabled).active, .woocommerce-notices-wrapper .alert.alert-success .btn:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle, body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row:last-of-type .show > button.dropdown-toggle, .woocommerce-notices-wrapper .alert.alert-success .show > .dropdown-toggle.btn {
  color: #fff;
  background-color: black;
  border-color: black;
}
.btn-dark:not(:disabled):not(.disabled):active:focus, body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row:last-of-type button:not(:disabled):not(.disabled):active:focus, .woocommerce-notices-wrapper .alert.alert-success .btn:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row:last-of-type button:not(:disabled):not(.disabled).active:focus, .woocommerce-notices-wrapper .alert.alert-success .btn:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus, body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row:last-of-type .show > button.dropdown-toggle:focus, .woocommerce-notices-wrapper .alert.alert-success .show > .dropdown-toggle.btn:focus {
  box-shadow: 0 0 0 0.2rem rgba(44.2, 44.2, 44.2, 0.5);
}

.btn-outline-primary {
  color: #d1b86b;
  border-color: #d1b86b;
}
.btn-outline-primary:hover {
  color: #212529;
  background-color: #d1b86b;
  border-color: #d1b86b;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(209, 184, 107, 0.5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #d1b86b;
  background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
  color: #212529;
  background-color: #d1b86b;
  border-color: #d1b86b;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(209, 184, 107, 0.5);
}

.btn-outline-secondary {
  color: #1a1a1a;
  border-color: #1a1a1a;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #1a1a1a;
  border-color: #1a1a1a;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(26, 26, 26, 0.5);
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #1a1a1a;
  background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #1a1a1a;
  border-color: #1a1a1a;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(26, 26, 26, 0.5);
}

.btn-outline-success {
  color: #459c65;
  border-color: #459c65;
}
.btn-outline-success:hover {
  color: #fff;
  background-color: #459c65;
  border-color: #459c65;
}
.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(69, 156, 101, 0.5);
}
.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #459c65;
  background-color: transparent;
}
.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #459c65;
  border-color: #459c65;
}
.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(69, 156, 101, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:focus, .btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}
.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:focus, .btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}
.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:focus, .btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}
.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:focus, .btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #070707;
  border-color: #070707;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #070707;
  border-color: #070707;
}
.btn-outline-dark:focus, .btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(7, 7, 7, 0.5);
}
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #070707;
  background-color: transparent;
}
.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #070707;
  border-color: #070707;
}
.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(7, 7, 7, 0.5);
}

.btn-primary {
  background-color: transparent;
  color: #d1b86b;
}

/* ==========================================================================
   Cards
   ========================================================================== */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.card-body {
  padding: 1.25rem;
}

.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);
}

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

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

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

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

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

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

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

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: rgb(242.12, 235.12, 213.56);
}
.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: rgb(231.08, 218.08, 178.04);
}

.table-hover .table-primary:hover {
  background-color: rgb(236.0736082474, 225.7875257732, 194.1063917526);
}
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: rgb(236.0736082474, 225.7875257732, 194.1063917526);
}

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

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

.table-success,
.table-success > th,
.table-success > td {
  background-color: rgb(202.92, 227.28, 211.88);
}
.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: rgb(158.28, 203.52, 174.92);
}

.table-hover .table-success:hover {
  background-color: rgb(186.2778947368, 218.4221052632, 198.1010526316);
}
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: rgb(186.2778947368, 218.4221052632, 198.1010526316);
}

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

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

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

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

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: rgb(245.2, 198.44, 202.92);
}
.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: rgb(236.8, 149.96, 158.28);
}

.table-hover .table-danger:hover {
  background-color: rgb(241.4341772152, 176.7058227848, 182.9073417722);
}
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: rgb(241.4341772152, 176.7058227848, 182.9073417722);
}

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

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

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

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

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

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

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

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

/* ==========================================================================
   Footer
   ========================================================================== */
.zapct-email-footer {
  padding: 50px 0;
  position: relative;
}
.zapct-email-footer:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-image: url(../images/AdobeStock_475322290.jpeg);
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}
.zapct-email-footer form.klaviyo-form {
  border: none !important;
  background-color: transparent !important;
  position: relative !important;
  z-index: 100 !important;
}
.zapct-email-footer form.klaviyo-form p {
  color: #fff !important;
  font-family: "Josefin Sans", sans-serif !important;
}
.zapct-email-footer form.klaviyo-form p span {
  color: #fff !important;
  font-family: "Josefin Sans", sans-serif !important;
  text-transform: uppercase !important;
  font-size: 1.5rem !important;
  letter-spacing: 0.1rem !important;
  font-weight: 500 !important;
}
@media (max-width: 767.98px) {
  .zapct-email-footer form.klaviyo-form [data-testid=form-row] {
    display: block !important;
  }
}
@media (max-width: 767.98px) {
  .zapct-email-footer form.klaviyo-form [data-testid=form-component] {
    padding: 5px 0 !important;
  }
}
.zapct-email-footer form.klaviyo-form input[type=text],
.zapct-email-footer form.klaviyo-form input[type=email] {
  font-family: "Josefin Sans", sans-serif !important;
  border-radius: 0px !important;
  font-size: 0.75rem !important;
  height: auto !important;
  padding: 14px 15px 12px !important;
  border: none !important;
}
.zapct-email-footer form.klaviyo-form button.go4120624078 {
  display: inline-block !important;
  font-family: "Josefin Sans", sans-serif !important;
  font-weight: 700 !important;
  text-align: center !important;
  border: 1px solid transparent !important;
  font-size: 0.75rem !important;
  line-height: 1 !important;
  border-radius: 0 !important;
  letter-spacing: 0.1rem !important;
  padding: 14px 35px 12px !important;
  border-color: #d1b86b !important;
  background-color: transparent !important;
  color: #d1b86b !important;
  text-transform: uppercase !important;
  height: auto !important;
}
.zapct-email-footer form.klaviyo-form button.go4120624078:hover {
  background-color: #d1b86b !important;
  color: #fff !important;
}

.zapct-footer {
  padding: 0 0 30px;
}
.zapct-footer .top-footer {
  background-color: #070707;
  border-top: 2px solid #1a1a1a;
  padding: 32px 0;
  position: relative;
}
.zapct-footer .top-footer .custom-logo-link {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767.98px) {
  .zapct-footer .top-footer .custom-logo-link {
    display: none;
  }
}
.zapct-footer .top-footer .custom-logo-link img {
  height: 50px;
  width: auto;
}
.zapct-footer .top-footer .payment-icons {
  height: 20px;
  width: auto;
}
.zapct-footer .zapct-footer-nav .container {
  border-top: 1px solid #393939;
  position: relative;
  padding-top: 35px;
}
.zapct-footer .zapct-footer-nav .container:before {
  content: "";
  height: 5px;
  width: 5px;
  background-color: #393939;
  position: absolute;
  left: 0;
  top: -3px;
  border-radius: 50%;
}
.zapct-footer .zapct-footer-nav .container:after {
  content: "";
  height: 5px;
  width: 5px;
  background-color: #393939;
  position: absolute;
  right: 0;
  top: -3px;
  border-radius: 50%;
}
@media (max-width: 767.98px) {
  .zapct-footer .zapct-footer-nav .container .footer-menu {
    margin-bottom: 20px;
  }
}
.zapct-footer .zapct-footer-nav .container .footer-menu ul li {
  flex: 0 0 50%;
  max-width: 50%;
  margin: 0;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
@media (max-width: 767.98px) {
  .zapct-footer .zapct-footer-nav .container .footer-menu ul li {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.zapct-footer .zapct-footer-nav .container .footer-contact {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
@media (max-width: 767.98px) {
  .zapct-footer .zapct-footer-nav .container .footer-contact {
    text-align: center;
    font-size: 0.5625rem;
  }
}
.zapct-footer .zapct-footer-nav .container .footer-contact .zapct-footer-copyright {
  margin-top: 30px;
}
.zapct-footer .zapct-footer-nav .container .footer-social .zapct-footer-social-icons a {
  height: 40px;
  width: 40px;
  border: 1px solid #d1b86b;
  display: inline-block;
  color: #fff;
  font-size: 1.5rem;
  position: relative;
}
.zapct-footer .zapct-footer-nav .container .footer-social .zapct-footer-social-icons a i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.zapct-footer .zapct-footer-nav .container .footer-social .zapct-footer-social-icons a:hover {
  background-color: #d1b86b;
}
.zapct-footer .zapct-footer-nav .container .footer-social .drinkaware-logo {
  height: 16px;
  width: auto;
}
.zapct-footer .zapct-legal {
  border-top: none;
}
.zapct-footer .zapct-legal .zapct-footer-credit {
  margin: 0 -15px;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
.zapct-footer .zapct-legal .zapct-footer-credit a {
  color: #d1b86b !important;
}

/* ==========================================================================
   Header
   ========================================================================== */
.zapct-navbar {
  padding: 25px 15px;
}
@media (max-width: 767.98px) {
  .zapct-navbar {
    padding: 10px 15px;
  }
}
@media (max-width: 767.98px) {
  .zapct-navbar .navbar .container {
    max-width: 100%;
  }
}
.zapct-navbar .tp-header {
  width: 250px;
}
@media (max-width: 767.98px) {
  .zapct-navbar .tp-header {
    display: none;
  }
}
.zapct-navbar .navbar-brand {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 991.98px) {
  .zapct-navbar .navbar-brand {
    left: 0;
    transform: translate(0, -50%);
  }
}
@media (max-width: 767.98px) {
  .zapct-navbar .navbar-brand {
    position: relative;
    left: auto;
    top: auto;
    transform: translate(0);
  }
}
.zapct-navbar .navbar-brand a {
  display: block;
}
.zapct-navbar .navbar-brand a img {
  margin: 0;
  padding: 0;
  height: 57px;
}
@media (max-width: 991.98px) {
  .zapct-navbar .navbar-brand a img {
    height: 45px;
  }
}
@media (max-width: 767.98px) {
  .zapct-navbar .navbar-brand a img {
    height: 35px;
  }
}
@media (max-width: 575.98px) {
  .zapct-navbar .cart-account .nav-item {
    padding: 1rem 0.25rem;
  }
}
.zapct-navbar .cart-account .nav-item .nav-link {
  color: #fff;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  display: flex;
  align-items: center !important;
  padding: 0px;
}
.zapct-navbar .cart-account .nav-item .nav-link img {
  display: inline-block;
  height: 18px;
  width: auto;
  margin-right: 7px;
}
@media (max-width: 767.98px) {
  .zapct-navbar .cart-account .nav-item .nav-link span {
    display: none;
  }
}
.zapct-navbar .cart-account .nav-item #basket-count {
  background-color: #d1b86b;
  color: #070707;
}
.zapct-navbar .cart-account .nav-item-toggler {
  display: none;
}
@media (max-width: 991.98px) {
  .zapct-navbar .cart-account .nav-item-toggler {
    display: inline-block;
  }
}
.zapct-navbar .offcanvas-collapse {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  background-color: #070707;
  border-left: 4px solid #1a1a1a;
  border-radius: 5px;
  padding: 0px;
  padding-top: 15px;
  overflow-y: auto;
  transform: translateX(100%);
  z-index: 9999;
}
.zapct-navbar .offcanvas-collapse li a {
  color: #fff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  line-height: 1;
  padding: 5px 5px;
}
.zapct-navbar .offcanvas-collapse.open {
  width: 300px !important;
  left: auto;
  right: 0px;
  transform: translateX(0);
}
.zapct-navbar .offcanvas-collapse .offcanvas-close {
  background-color: #d1b86b;
  border: 1px solid #d1b86b;
  color: #fff;
  padding: 5px 15px;
  border-radius: 0 !important;
  margin: 0px 15px 15px auto;
  border-radius: 0px;
  position: relative;
  font-size: 1.25rem;
  display: block;
}
.zapct-navbar .offcanvas-collapse .offcanvas-close i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin-top: 3px;
}

.nav-outer {
  background-color: #070707;
}
@media (max-width: 991.98px) {
  .nav-outer {
    display: none;
  }
}
.nav-outer .container {
  border-top: 1px solid #393939;
  position: relative;
}
.nav-outer .container:before {
  content: "";
  height: 5px;
  width: 5px;
  background-color: #393939;
  position: absolute;
  left: 0;
  top: -3px;
  border-radius: 50%;
}
.nav-outer .container:after {
  content: "";
  height: 5px;
  width: 5px;
  background-color: #393939;
  position: absolute;
  right: 0;
  top: -3px;
  border-radius: 50%;
}
.nav-outer .nav {
  justify-content: center !important;
  flex-direction: row;
}
.nav-outer .nav li {
  margin: 0 10px;
}
.nav-outer .nav li a {
  color: #fff;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  line-height: 1;
  padding: 16px 5px 14px;
}
.nav-outer .nav li a:hover, .nav-outer .nav li a:focus {
  color: #d1b86b;
}
.nav-outer .nav li:active a {
  color: #d1b86b;
}

/* ==========================================================================
   Header Marquee
   ========================================================================== */
.store-notice {
  text-align: center;
  background-color: #d1b86b;
  color: #000;
  padding: 0 5px;
  position: relative;
}
.store-notice a {
  font-weight: bold;
}

@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  height: 100%;
  padding-left: 0px;
  box-sizing: content-box;
}
.ticker-wrap .ticker {
  display: inline-block;
  height: 100%;
  line-height: 1;
  white-space: nowrap;
  padding-right: 0px;
  box-sizing: content-box;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-name: ticker;
  animation-name: ticker;
  -webkit-animation-duration: 1800s;
  animation-duration: 1800s;
}
.ticker-wrap .ticker__item {
  display: inline-block;
  padding: 0;
  color: #000;
  text-transform: uppercase;
  font-family: "sizmo", sans-serif;
  letter-spacing: 0.075rem;
  font-size: 11px;
  font-weight: 600;
}
.ticker-wrap .ticker__item span {
  border-right: 1px solid #000000;
  padding: 10px 30px;
  background-repeat: no-repeat;
  background-position: left center;
  margin-right: 30px;
  display: inline-block;
  background-size: auto 22px;
}
.ticker-wrap .ticker__item span a {
  color: #fff;
  text-decoration: underline;
}
.ticker-wrap .ticker__item span.store-notice-message {
  background-image: url(/wp-content/themes/capital-carp-theme/assets/images/header/exclamation.svg);
  background-size: auto 18px;
}
.ticker-wrap .ticker__item span.trustpilot {
  background-image: url(/wp-content/themes/capital-carp-theme/assets/images/header/icon-star.svg);
}
.ticker-wrap .ticker__item span.facebook {
  background-image: url(/wp-content/themes/capital-carp-theme/assets/images/header/icon-live-draw.svg);
}
.ticker-wrap .ticker__item span.secure {
  background-image: url(/wp-content/themes/capital-carp-theme/assets/images/header/icon-secure-payments.svg);
}

/* ==========================================================================
   Newsletter
   ========================================================================== */
/* ==========================================================================
   Dark Theme
   ========================================================================== */
body.dark-theme {
  background-color: #1a1a1a;
  color: #f8f9fa;
}
body.dark-theme .section-title {
  color: #f8f9fa;
}
body.dark-theme .zapct-navbar {
  background-color: #070707;
}
body.dark-theme .zapct-navbar #menu-primary-menu a {
  color: #f8f9fa;
}
body.dark-theme .zapct-navbar .cart-account .nav-link i {
  color: #f8f9fa;
}
body.dark-theme .zapct-page-title {
  background-color: #070707;
}
body.dark-theme .zapct-page-title h1 {
  color: #f8f9fa;
}
body.dark-theme ul.products li.product .inner-wrapper {
  background-color: #f8f9fa;
}
body.dark-theme div.product .entry-summary .price {
  color: #f8f9fa;
}
body.dark-theme div.product .entry-summary .zap-competition-question-wrap .zap-competition-question-text {
  color: #f8f9fa;
}
body.dark-theme div.product .entry-summary .zap-competition-question-wrap .zap-lottery-question-answers label {
  color: #f8f9fa;
}
body.dark-theme div.product .entry-summary .zap-competition-question-wrap .zap-lottery-question-answers input:checked ~ label {
  color: #070707;
}
body.dark-theme div.product .entry-summary #competition-countdown {
  background-color: transparent;
}
body.dark-theme .woocommerce-address-fields .card label {
  color: #fff;
}
body.dark-theme .woocommerce-EditAccountForm .form-group label {
  color: #fff;
}
body.dark-theme .woocommerce-EditAccountForm fieldset legend {
  color: #fff;
}
body.dark-theme .zapct-footer {
  background-color: #070707;
}
body.dark-theme .zapct-footer .zapct-footer-nav ul li a {
  color: #fff;
}
body.dark-theme .zapct-footer .zapct-legal {
  color: #f8f9fa;
}
body.dark-theme .zapct-footer .zapct-legal a {
  color: #fff;
}

/* ==========================================================================
   General CSS
   ========================================================================== */
.container.main-container {
  min-height: 40vh;
}

div.pagination {
  justify-content: center !important;
}
div.pagination a.page-link {
  color: #070707 !important;
}
div.pagination .page-item.active .page-link.current {
  background-color: #d1b86b;
  border-color: #d1b86b;
  color: #fff;
}

.page-numbers .page-numbers.current {
  background-color: #d1b86b !important;
  border-color: #d1b86b !important;
  color: #fff;
}

body.error404 .main-container {
  text-align: center;
  color: #fff !important;
}
body.error404 .main-container h1 {
  color: #fff !important;
  text-transform: uppercase !important;
}
body.error404 .section-title {
  color: #fff;
}

#zapc-age-modal .modal-content {
  background-color: #070707;
}
#zapc-age-modal .modal-content .modal-header,
#zapc-age-modal .modal-content .modal-footer {
  border-color: #393939;
}
#zapc-age-modal .modal-content input[type=date] {
  width: 100%;
  padding: 5px 5px;
}

/* ==========================================================================
   WooCommerce - Cart
   ========================================================================== */
/* ==========================================================================
   WooCommerce - Checkout
   ========================================================================== */
/* ==========================================================================
   WooCommerce - General
   ========================================================================== */
.zap-lottery-user-ticket-count {
  background-color: #d1b86b !important;
  margin-top: 0px !important;
  border-radius: 0.25rem;
}

.woocommerce-notices-wrapper div {
  text-align: center;
}
.woocommerce-notices-wrapper .alert {
  display: flex;
  align-items: center !important;
  justify-content: space-between !important;
}
.woocommerce-notices-wrapper .alert.alert-success {
  text-align: left;
}
.woocommerce-notices-wrapper .alert.alert-success .btn, .woocommerce-notices-wrapper .alert.alert-success body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row:last-of-type button, body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row:last-of-type .woocommerce-notices-wrapper .alert.alert-success button {
  order: 2;
  margin-left: 10px;
}
.woocommerce-notices-wrapper .alert.alert-danger {
  display: block;
}

p.woocommerce-info {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  overflow: auto;
  text-align: center;
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}

.woocommerce-store-notice.demo_store {
  display: none !important;
}

.zapct-products {
  background-color: #111111 !important;
  padding-top: 50px !important;
  padding-bottom: 10px !important;
  border-bottom: none !important;
}
@media (max-width: 575.98px) {
  .zapct-products {
    padding-top: 50px !important;
  }
}
.zapct-products .section-title {
  color: #fff;
}

.zapct-homepage-button-wrap {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1140px;
  text-align: center;
}

.zapc-popup-modal .modal-content {
  background-color: #111111;
  color: #fff;
}
.zapc-popup-modal .modal-content h1,
.zapc-popup-modal .modal-content h2,
.zapc-popup-modal .modal-content h3,
.zapc-popup-modal .modal-content h4,
.zapc-popup-modal .modal-content h5,
.zapc-popup-modal .modal-content h6 {
  color: #fff;
  text-transform: uppercase;
  font-size: 1.5rem;
}
.zapc-popup-modal .modal-content p {
  color: #fff;
}
.zapc-popup-modal .modal-content img {
  margin-bottom: 20px;
}
.zapc-popup-modal .modal-content .modal-footer {
  border-top: 1px solid #29292c;
}
.zapc-popup-modal .modal-content .modal-footer .btn, .zapc-popup-modal .modal-content .modal-footer body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row:last-of-type button, body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row:last-of-type .zapc-popup-modal .modal-content .modal-footer button {
  flex: 0 0 48%;
  margin-top: 0px !important;
}
.zapc-popup-modal .modal-content .modal-footer .btn:after, .zapc-popup-modal .modal-content .modal-footer body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row:last-of-type button:after, body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row:last-of-type .zapc-popup-modal .modal-content .modal-footer button:after, .zapc-popup-modal .modal-content .modal-footer .btn:before, .zapc-popup-modal .modal-content .modal-footer body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row:last-of-type button:before, body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row:last-of-type .zapc-popup-modal .modal-content .modal-footer button:before {
  display: none !important;
}

/* ==========================================================================
   WooCommerce - My Account
   ========================================================================== */
.woocommerce-account .woocommerce {
  display: flex;
  flex-wrap: wrap;
  padding: 5px;
}
@media (max-width: 767.98px) {
  .woocommerce-account .woocommerce {
    max-width: 100%;
  }
}
.woocommerce-account .woocommerce .woocommerce-notices-wrapper {
  flex: 0 0 100%;
  max-width: 100%;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation {
  flex: 0 0 25%;
  max-width: 25%;
  margin-bottom: 0 !important;
  border: none !important;
  border-radius: 0px !important;
  background-color: #070707 !important;
}
@media (max-width: 991.98px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-navigation {
    flex: 0 0 40%;
    max-width: 40%;
  }
}
@media (max-width: 575.98px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-navigation {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px !important;
  }
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .nav-pills {
  display: block;
}
@media (max-width: 991.98px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .nav-pills {
    position: sticky;
    top: 130px;
  }
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .nav-pills a {
  background-color: #1a1a1a;
  border: 1px solid #393939;
  color: #fff;
  margin-bottom: 10px;
  text-align: left;
  padding: 5px;
  position: relative;
  font-weight: bold;
  border-radius: 0px !important;
  font-size: 15px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .nav-pills a:before {
  content: "\f245";
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Pro";
  font-weight: 500;
  margin-right: 10px;
  padding: 6px;
  background: #1a1a1a;
  border: 2px solid #171717;
  border-radius: 0px;
  font-size: 16px;
  width: 40px;
  height: 40px;
  text-align: center;
  color: #fff;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .nav-pills a.active, .woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .nav-pills a:hover {
  background: #d1b86b;
  color: #070707;
  border: 1px solid #d1b86b;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .nav-pills .woocommerce-MyAccount-navigation-link--dashboard a:before {
  content: "\f145";
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .nav-pills .woocommerce-MyAccount-navigation-link--orders a:before {
  content: "\f1da";
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .nav-pills .woocommerce-MyAccount-navigation-link--points-and-rewards a:before {
  content: "\f005";
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .nav-pills .woocommerce-MyAccount-navigation-link--coupons a:before {
  content: "\f646";
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .nav-pills .woocommerce-MyAccount-navigation-link--edit-address a:before {
  content: "\f2bb";
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .nav-pills .woocommerce-MyAccount-navigation-link--payment-methods a:before {
  content: "\f38a";
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .nav-pills .woocommerce-MyAccount-navigation-link--edit-account a:before {
  content: "\f007";
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .nav-pills .woocommerce-MyAccount-navigation-link--customer-logout a:before {
  content: "\f00d";
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
  flex: 0 0 75%;
  max-width: 75%;
  padding: 0 0 1rem 1rem !important;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
@media (max-width: 991.98px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-content {
    flex: 0 0 60%;
    max-width: 60%;
  }
}
@media (max-width: 575.98px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-content {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 0 1rem 0rem !important;
  }
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address {
  display: block;
  max-width: 100%;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses h3,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address h3 {
  display: none;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-Message.woocommerce-Message--info {
  background-color: #d1b86b;
  border: 1px solid #d1b86b;
  color: #070707;
  text-align: center;
  padding: 10px 10px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content #payment {
  color: #f8f9fa;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content #payment ul {
  list-style: none;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .button {
  background-color: #d1b86b;
  border-color: #d1b86b;
  font-weight: 300;
  color: #fff;
  text-transform: uppercase;
  display: inline-block;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .button:hover {
  background-color: #d1b86b;
  border-color: #d1b86b;
  text-decoration: none;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content p em {
  color: #f8f9fa;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content #my-account-order-table thead th {
  padding-top: 15px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content table {
  color: #fff;
}
@media (max-width: 767.98px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-content table {
    padding: 20px 10px;
  }
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content table tr {
  margin-bottom: 0;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content table tr:hover {
  color: #fff !important;
}
@media (max-width: 991.98px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-content .col-md-4 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card {
  background-color: #242424;
  padding: 15px 15px;
  border: none;
  border-radius: 0 !important;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .card-header {
  padding-left: 10px;
  background: none;
  border: none;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .card-header-tabs {
  border-bottom: 2px solid #d1b86b;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .card-header-tabs a {
  color: #fff;
  background: none;
  border-radius: 0 !important;
  position: relative;
  margin-right: 3px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .card-header-tabs a.active {
  background: #d1b86b;
  border-color: transparent !important;
  color: #070707 !important;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .card-header-tabs a:hover:not(.active) {
  background-color: #6c757d;
  border-color: #6c757d !important;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .tab-content .col-md-4 {
  margin-bottom: 15px !important;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .tab-content .zapc-single-ticket-wrap {
  color: #fff;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .tab-content .zapc-single-ticket-wrap .zapc-my-account-ticket-wrapper {
  color: #070707;
  background-color: #fff !important;
  border-radius: 5px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .tab-content .card {
  background-color: #f8f9fa;
  border-color: #0f1923;
  padding: 0px;
  margin-bottom: 0px !important;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .tab-content .card .card-body {
  padding: 15px 10px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .tab-content .card .card-body h5 {
  color: #070707;
  font-size: 16px;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .tab-content .card .card-body h6 {
  color: #d1b86b;
  font-size: 14px;
  text-transform: none;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .tab-content .card .card-body .btn, .woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .tab-content .card .card-body body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row:last-of-type button, body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row:last-of-type .woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .tab-content .card .card-body button {
  font-size: 8px;
  padding: 10px 5px !important;
  text-transform: uppercase !important;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .tab-content .card .card-body .btn:after, .woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .tab-content .card .card-body body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row:last-of-type button:after, body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row:last-of-type .woocommerce-account .woocommerce .woocommerce-MyAccount-content .card .tab-content .card .card-body button:after {
  display: none;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content #zapc-recent-tickets {
  padding-top: 0;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content #zapc-recent-tickets .zapc-single-ticket-wrap {
  width: 100%;
  display: block;
  border-bottom: 2px solid #d1b86b;
  margin-bottom: 1rem;
}
@media (max-width: 991.98px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-content #zapc-recent-tickets .zapc-single-ticket-wrap .draw-date {
    white-space: nowrap;
  }
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content #zapc-recent-tickets .zapc-single-ticket-wrap .ticket-collapse {
  background: #f4f8ee;
  color: #d1b86b;
  margin: 10px 0;
  padding: 20px;
}

#customer_login {
  margin: 0 !important;
  width: 100%;
}
#customer_login .col-md-6 {
  margin-bottom: 0px !important;
}
#customer_login .card-body {
  background-color: #070707 !important;
  border: 1px solid #393939;
  border-radius: 0;
}
#customer_login .card-body .card-title {
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 0.1rem;
}
#customer_login .card-body .form-group label {
  color: #fff;
}
#customer_login .card-body .woocommerce-form-login__rememberme span {
  color: #d1b86b;
}
#customer_login .card-body .woocommerce-password-strength,
#customer_login .card-body .woocommerce-password-hint {
  color: #fff;
}
#customer_login .btn-primary {
  background-color: #070707;
  border-color: #d1b86b !important;
  font-weight: bold !important;
  color: #fff;
}

body.woocommerce-lost-password .woocommerce-ResetPassword {
  max-width: 480px;
  margin: 0 auto;
  border: 2px solid #f8f9fa;
  padding: 30px 30px;
  background-color: #fff;
}
body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row {
  display: block !important;
}
body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row label {
  display: block;
}
body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row input.woocommerce-Input {
  width: 100%;
  border: 1px solid #adb5bd;
  border-radius: 3px;
  padding: 10px 15px;
}
body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row:last-of-type {
  text-align: right;
}
#billing_country_field {
  display: none;
}

div#zapc-account-withdrawal .modal-dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
div#zapc-account-withdrawal .modal-dialog .modal-content {
  background-color: #1a1a1a;
  color: #f8f9fa;
  border: 1px solid #393939;
}
div#zapc-account-withdrawal .modal-dialog .modal-content .close {
  color: #ffffff;
  text-shadow: none;
  font-size: 35px;
  opacity: 1;
  font-weight: normal;
}
div#zapc-account-withdrawal .modal-dialog .modal-body {
  padding: 1rem 1rem 2rem;
}
div#zapc-account-withdrawal .modal-dialog .modal-body .floating-currency {
  border-bottom: none;
}
div#zapc-account-withdrawal .modal-dialog .modal-body .floating-currency input {
  font-size: 40px;
  background: #070707;
  color: #ffffff;
  margin-left: 10px;
  border: 1px solid #393939;
}
div#zapc-account-withdrawal .modal-dialog .modal-footer {
  color: #ffffff;
}

/* ==========================================================================
   WooCommerce - Product Loop
   ========================================================================== */
@media (max-width: 575.98px) {
  .woocommerce ul.products {
    margin-left: -5px !important;
    margin-right: -5px !important;
  }
}
@media (max-width: 575.98px) {
  .woocommerce ul.products li.product.type-product {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.woocommerce ul.products li.product.type-product .inner-wrapper {
  background-color: #070707;
  text-align: center;
  border-radius: 0;
  border: 1px solid #070707;
  padding: 0px 15px 75px;
  transition: 0.3s;
}
@media (max-width: 575.98px) {
  .woocommerce ul.products li.product.type-product .inner-wrapper {
    padding: 5px 5px 50px;
    border-radius: 7.5px;
  }
}
.woocommerce ul.products li.product.type-product .inner-wrapper .zapct-thumbnail-wrap {
  z-index: 25;
}
.woocommerce ul.products li.product.type-product .inner-wrapper .zapc-date-banner {
  margin: -14px 15px 15px;
  position: relative;
  font-size: 0.625rem;
  text-transform: uppercase;
  background-color: #070707;
  font-weight: 900;
  color: #fff;
  width: auto;
  border-radius: 0;
  line-height: 1;
  padding: 9px 15px 6px;
  z-index: 50;
  letter-spacing: 0.1rem;
  border: 1px solid #fff;
}
@media (max-width: 991.98px) {
  .woocommerce ul.products li.product.type-product .inner-wrapper .zapc-date-banner {
    margin: -14px 5px 15px;
  }
}
@media (max-width: 575.98px) {
  .woocommerce ul.products li.product.type-product .inner-wrapper .zapc-date-banner {
    font-size: 0.5625rem;
    margin: -14px 2px 15px;
    letter-spacing: 0.05rem;
  }
}
.woocommerce ul.products li.product.type-product .inner-wrapper .zapc-date-banner.zap-draw-days-0 {
  background-color: #459c65;
  color: #fff;
}
.woocommerce ul.products li.product.type-product .inner-wrapper .zapc-date-banner.zap-draw-days-1 {
  border-color: #d1b86b;
}
.woocommerce ul.products li.product.type-product .inner-wrapper .zapc-date-banner.sold-out {
  background-color: #dc3545;
  color: #fff;
}
.woocommerce ul.products li.product.type-product .inner-wrapper .zapc-countdown {
  background-color: transparent;
  padding: 10px 0 0;
  margin-top: 20px;
  border-top: 1px solid #393939;
  position: relative;
}
.woocommerce ul.products li.product.type-product .inner-wrapper .zapc-countdown:before {
  content: "";
  height: 5px;
  width: 5px;
  background-color: #393939;
  position: absolute;
  left: 0;
  top: -3px;
  border-radius: 50%;
}
.woocommerce ul.products li.product.type-product .inner-wrapper .zapc-countdown:after {
  content: "";
  height: 5px;
  width: 5px;
  background-color: #393939;
  position: absolute;
  right: 0;
  top: -3px;
  border-radius: 50%;
}
.woocommerce ul.products li.product.type-product .inner-wrapper .zapc-countdown div {
  color: #d1b86b;
  font-size: 0.625rem;
  letter-spacing: 0.1rem;
  font-weight: 500;
  border-radius: 5px;
  padding: 10px 0;
  width: 22%;
  margin: 0 1.5%;
  position: relative;
}
.woocommerce ul.products li.product.type-product .inner-wrapper .zapc-countdown div:after {
  content: "";
  width: 1px;
  height: 22px;
  background-color: #393939;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 575.98px) {
  .woocommerce ul.products li.product.type-product .inner-wrapper .zapc-countdown div {
    min-height: 20px;
  }
}
.woocommerce ul.products li.product.type-product .inner-wrapper .zapc-countdown div span {
  color: #fff;
  font-size: 1.625rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 500;
}
@media (max-width: 991.98px) {
  .woocommerce ul.products li.product.type-product .inner-wrapper .zapc-countdown div span {
    font-size: 1.375rem;
  }
}
@media (max-width: 575.98px) {
  .woocommerce ul.products li.product.type-product .inner-wrapper .zapc-countdown div span {
    font-size: 1.125rem;
  }
}
.woocommerce ul.products li.product.type-product .inner-wrapper .zapc-countdown div:last-of-type:after {
  display: none;
}
.woocommerce ul.products li.product.type-product .inner-wrapper .zap-competitions-progress {
  margin: 10px 0 0;
}
@media (max-width: 575.98px) {
  .woocommerce ul.products li.product.type-product .inner-wrapper .zap-competitions-progress {
    margin: 0;
    padding-top: 0;
    border-top: none;
  }
}
.woocommerce ul.products li.product.type-product .inner-wrapper .zap-competitions-progress .progress-track {
  border: none;
  background-color: #393939;
  border-radius: 0;
  overflow: hidden;
  color: #fff;
}
.woocommerce ul.products li.product.type-product .inner-wrapper .zap-competitions-progress .progress-track .progress-bar {
  background-color: #1a1a1a;
  overflow: visible;
  position: relative;
  border-radius: 0;
}
.woocommerce ul.products li.product.type-product .inner-wrapper .zap-competitions-progress .progress-track .mini-label {
  color: #fff;
  font-size: 0.6875rem;
  right: 50%;
  transform: translate(50%, -50%);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.82);
  letter-spacing: 0.05rem;
  font-weight: 900;
  margin-top: 1px;
}
.woocommerce ul.products li.product.type-product .inner-wrapper .price {
  text-align: center;
  margin: 0 15px;
}
@media (max-width: 575.98px) {
  .woocommerce ul.products li.product.type-product .inner-wrapper .price {
    padding-top: 5px;
    margin: 0 5px;
  }
}
.woocommerce ul.products li.product.type-product .inner-wrapper .price .woocommerce-Price-amount {
  color: #d1b86b;
  font-size: 1.5rem;
}
@media (max-width: 991.98px) {
  .woocommerce ul.products li.product.type-product .inner-wrapper .price .woocommerce-Price-amount {
    font-size: 1.125rem;
  }
}
@media (max-width: 575.98px) {
  .woocommerce ul.products li.product.type-product .inner-wrapper .price .woocommerce-Price-amount {
    font-size: 0.875rem;
  }
}
.woocommerce ul.products li.product.type-product .inner-wrapper .price del {
  text-decoration: none;
  position: relative;
}
.woocommerce ul.products li.product.type-product .inner-wrapper .price del:before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 28%;
  transform: translateY(-28%);
  background-color: #fff;
  z-index: 1;
  left: 0;
}
@media screen and (max-width: 990px) {
  .woocommerce ul.products li.product.type-product .inner-wrapper .price del:before {
    top: 45%;
    transform: translateY(-45%);
    height: 1px;
  }
}
.woocommerce ul.products li.product.type-product .inner-wrapper .price ins {
  color: #d1b86b;
}
.woocommerce ul.products li.product.type-product .inner-wrapper .price ins .woocommerce-Price-amount.amount {
  color: #d1b86b;
}
.woocommerce ul.products li.product.type-product .inner-wrapper .price .price_suffix {
  font-weight: 500;
  font-size: 0.625rem;
  color: #fff;
}
@media (max-width: 575.98px) {
  .woocommerce ul.products li.product.type-product .inner-wrapper .price .price_suffix {
    font-size: 0.5625rem;
  }
}
.woocommerce ul.products li.product.type-product .inner-wrapper .woocommerce-loop-product__title {
  padding: 0;
  margin: 10px 0 0;
  font-weight: 500;
  color: #fff;
  font-size: 1rem;
  text-align: center;
}
@media (max-width: 575.98px) {
  .woocommerce ul.products li.product.type-product .inner-wrapper .woocommerce-loop-product__title {
    font-size: 0.8125rem;
    margin: 0 5px;
  }
}
.woocommerce ul.products li.product.type-product .inner-wrapper .zapc-cash-alt {
  text-align: center;
  color: #d1b86b;
  font-weight: 600;
  font-size: 0.8125rem;
  background-color: transparent;
  border: 1px solid #242424;
  padding: 3px 5px;
  border-radius: 5px;
  margin: 10px 15px;
  animation-name: bg-fade;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}
@keyframes bg-fade {
  0% {
    background-color: #242424;
    color: #fff;
    border-color: #242424;
  }
  50% {
    background-color: #242424;
    color: #d1b86b;
    border-color: #d1b86b;
  }
  100% {
    background-color: #242424;
    color: #fff;
    border-color: #242424;
  }
}
@media (max-width: 575.98px) {
  .woocommerce ul.products li.product.type-product .inner-wrapper .zapc-cash-alt {
    font-size: 0.5625rem;
    letter-spacing: 0;
    margin: 10px 5px 0;
  }
}
@media only screen and (max-width: 340px) {
  .woocommerce ul.products li.product.type-product .inner-wrapper .zapc-cash-alt {
    font-size: 0.5rem;
  }
}
.woocommerce ul.products li.product.type-product .inner-wrapper .onsale {
  z-index: 50;
  font-size: 0.625rem;
  text-transform: uppercase;
  background-color: #df3c10;
  letter-spacing: 0.075rem;
  padding: 2.5px 15px;
  right: 20px;
  top: 20px;
  display: none;
}
@media (max-width: 575.98px) {
  .woocommerce ul.products li.product.type-product .inner-wrapper .onsale {
    right: 10px;
    top: 10px;
  }
}
.woocommerce ul.products li.product.type-product .inner-wrapper .button {
  text-align: center;
  background-color: transparent;
  border: 1px solid #d1b86b;
  padding: 12px 5px 10px;
  margin: 0px 15px 15px;
  border-radius: 0;
  font-size: 0.75rem;
}
@media (max-width: 575.98px) {
  .woocommerce ul.products li.product.type-product .inner-wrapper .button {
    margin: 0 7.5px 7.5px;
    padding: 8px 5px 6px;
  }
}
.woocommerce ul.products li.product.type-product .inner-wrapper .button:hover:before {
  opacity: 1;
}
.woocommerce ul.products li.product.type-product .inner-wrapper:hover {
  border-color: #393939;
  transition: 0.3s;
}
.woocommerce ul.products li.product.type-product .inner-wrapper:hover .button {
  border-color: #d1b86b;
  background-color: #d1b86b;
  color: #070707;
}

/* ==========================================================================
   WooCommerce - Single Product
   ========================================================================== */
body.single-product .zapct-page-title {
  margin-bottom: 0;
}
body.single-product .woocommerce-product-gallery__wrapper img {
  height: auto;
}
body.single-product .zap-competition-requirements-wrapper {
  max-width: 1400px;
  color: #070707;
  padding: 0;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}
body.single-product .zap-competition-requirements-wrapper .row {
  display: block;
  text-align: center;
}
body.single-product .zap-competition-requirements-wrapper .row .col-md {
  display: inline-block;
  max-width: none;
  width: auto;
  text-align: center;
  padding: 0;
}
@media (max-width: 575.98px) {
  body.single-product .zap-competition-requirements-wrapper .row .col-md {
    display: block;
  }
}
body.single-product .zap-competition-requirements-wrapper .row .col-md div {
  display: block;
  text-align: center;
  padding: 0px;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  position: relative;
  color: #fff;
}
@media (max-width: 575.98px) {
  body.single-product .zap-competition-requirements-wrapper .row .col-md div {
    font-size: 0.75rem;
  }
}
body.single-product .zap-competition-requirements-wrapper .row .col-md div:after {
  content: " | ";
  color: #d1b86b;
  margin: 0 3px;
}
@media (max-width: 575.98px) {
  body.single-product .zap-competition-requirements-wrapper .row .col-md div:after {
    display: none;
  }
}
body.single-product .zap-competition-requirements-wrapper .row .col-md:last-of-type div:after {
  display: none;
}
body.single-product .summary.entry-summary .zapc-sale-countdown-wrapper {
  margin-bottom: 20px;
  color: #fff;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
body.single-product .summary.entry-summary .zapc-sale-countdown-wrapper .sale-countdown-prefix {
  display: inline-block;
  color: #459c65;
}
body.single-product .summary.entry-summary .zapc-sale-countdown-wrapper #sale-countdown {
  display: inline-block;
}
body.single-product .summary.entry-summary .zapc-sale-countdown-wrapper #sale-countdown div {
  display: inline-block;
}
body.single-product .summary.entry-summary .price {
  margin-bottom: 2px;
}
body.single-product .summary.entry-summary .price ins {
  color: #d1b86b;
}
body.single-product .summary.entry-summary .price .woocommerce-Price-amount {
  color: #d1b86b;
  font-size: 2.625rem;
}
body.single-product .summary.entry-summary .price del {
  text-decoration: none;
  position: relative;
}
body.single-product .summary.entry-summary .price del:before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 20%;
  transform: translateY(-20%);
  background-color: #fff;
  z-index: 1;
}
body.single-product .summary.entry-summary .zap-competition-question-text {
  border-bottom: none;
  font-weight: 500;
  margin-bottom: 0;
  color: #fff;
}
body.single-product .summary.entry-summary .zap-lottery-question-answers {
  padding-bottom: 0;
}
body.single-product .summary.entry-summary .zap-lottery-question-answers .zap-lottery-question-answer {
  margin-bottom: 5px;
  flex: 0 0 100%;
  max-width: 100%;
}
body.single-product .summary.entry-summary .zap-lottery-question-answers .zap-lottery-question-answer label {
  padding: 11px 5px 3px;
  background-color: #1a1a1a;
  border: 1px solid #393939;
  font-weight: 400;
  color: #fff;
  border-radius: 0;
  text-align: left;
  padding-left: 50px;
}
body.single-product .summary.entry-summary .zap-lottery-question-answers .zap-lottery-question-answer label:before {
  border: 5px solid #000;
  background-color: #000;
  width: 22px;
  height: 22px;
  left: 25px;
  border-radius: 50%;
}
body.single-product .summary.entry-summary .zap-lottery-question-answers .zap-lottery-question-answer input:checked ~ label {
  background-color: #d1b86b;
  border-color: #d1b86b;
  color: #070707;
}
body.single-product .summary.entry-summary .zap-lottery-question-answers .zap-lottery-question-answer input:checked ~ label:before {
  border-color: #1a1a1a;
  background-color: #fff;
}
body.single-product .summary.entry-summary .zapc-postal-buttons {
  max-width: 320px;
  margin: 10px auto 0;
}
body.single-product .summary.entry-summary .zapc-postal-buttons .btn, body.single-product .summary.entry-summary .zapc-postal-buttons body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row:last-of-type button, body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row:last-of-type body.single-product .summary.entry-summary .zapc-postal-buttons button {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  padding: 6px 5px 4px;
  border-color: #d1b86b;
}
body.single-product .summary.entry-summary .zapc-postal-buttons .btn.active, body.single-product .summary.entry-summary .zapc-postal-buttons body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row:last-of-type button.active, body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row:last-of-type body.single-product .summary.entry-summary .zapc-postal-buttons button.active {
  background-color: #d1b86b;
  color: #070707;
}
body.single-product .summary.entry-summary div.zap-competition-qty {
  margin-top: 13px;
  flex: 0 0 100%;
  max-width: 100%;
}
@media (max-width: 991.98px) {
  body.single-product .summary.entry-summary div.zap-competition-qty {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
body.single-product .summary.entry-summary div.zap-competition-qty .zap-competition-range-wrap-outer {
  padding: 2rem 15px;
  width: calc(100% - 84px);
}
body.single-product .summary.entry-summary div.zap-competition-qty .rangeslider {
  background-color: #29292c;
  border-radius: 5px;
}
body.single-product .summary.entry-summary div.zap-competition-qty .rangeslider__fill {
  background-color: #d1b86b;
  border-radius: 5px;
}
body.single-product .summary.entry-summary div.zap-competition-qty .rangeslider__handle {
  background-color: #adadb6;
  border: 1px solid #070707;
  border-radius: 5px;
}
body.single-product .summary.entry-summary div.zap-competition-qty .rangeslider__handle__value {
  background-color: #29292c;
  border-top: 1px solid #29292c;
  padding: 3px 10px 5px;
  border-radius: 5px;
  top: -40px;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
body.single-product .summary.entry-summary div.zap-competition-qty .rangeslider__handle__value:before {
  border-top-color: #29292c;
}
body.single-product .summary.entry-summary div.zap-competition-qty .rangeslider.rangeslider--active .rangeslider__handle,
body.single-product .summary.entry-summary div.zap-competition-qty .rangeslider.rangeslider--active .rangeslider__handle * {
  background-color: #070707;
  border-top: 1px solid #070707;
}
body.single-product .summary.entry-summary div.zap-competition-qty .rangeslider.rangeslider--active .rangeslider__handle:before,
body.single-product .summary.entry-summary div.zap-competition-qty .rangeslider.rangeslider--active .rangeslider__handle *:before {
  border-top-color: #070707;
}
body.single-product .summary.entry-summary div.zap-competition-qty .zap-competition-qty-minus,
body.single-product .summary.entry-summary div.zap-competition-qty .zap-competition-qty-plus {
  border-radius: 5px;
  background-color: #070707;
  border: 1px solid #070707 !important;
  color: #fff;
  font-weight: bold;
  transition: 0.3s;
  width: 42px !important;
}
body.single-product .summary.entry-summary div.zap-competition-qty .zap-competition-qty-minus:hover,
body.single-product .summary.entry-summary div.zap-competition-qty .zap-competition-qty-plus:hover {
  background-color: #d1b86b;
  border-color: #d1b86b;
  color: #fff;
  transition: 0.3s;
}
body.single-product .summary.entry-summary .zapct-add-to-cart-button-wrapper {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 10px;
  margin-top: 26px;
}
body.single-product .summary.entry-summary .zapct-add-to-cart-button-wrapper button.single_add_to_cart_button {
  margin: 0;
  width: 100% !important;
  background-color: #459c65 !important;
  text-transform: uppercase;
  transition: 0.3s;
}
body.single-product .summary.entry-summary .zapct-add-to-cart-button-wrapper button.single_add_to_cart_button:hover {
  background-color: rgb(45.54, 102.96, 66.66) !important;
  transition: 0.3s;
}
body.single-product .summary.entry-summary .zapc-countdown {
  background-color: transparent;
  padding: 0;
  max-width: 445px;
  margin: 0 auto;
}
body.single-product .summary.entry-summary .zapc-countdown div {
  color: #d1b86b;
  font-size: 0.625rem;
  font-weight: 500;
  border-radius: 5px;
  padding: 10px 0;
  width: 22%;
  margin: 0 1.5%;
  text-transform: uppercase;
}
@media (max-width: 575.98px) {
  body.single-product .summary.entry-summary .zapc-countdown div {
    min-height: 20px;
  }
}
body.single-product .summary.entry-summary .zapc-countdown div span {
  color: #fff;
  font-size: 1.625rem;
  line-height: 1;
  font-weight: 500;
}
body.single-product .summary.entry-summary .zap-competitions-progress {
  padding-top: 0;
  margin: 25px 0 0;
}
@media (max-width: 767.98px) {
  body.single-product .summary.entry-summary .zap-competitions-progress {
    margin-bottom: 30px;
  }
}
body.single-product .summary.entry-summary .zap-competitions-progress .tickets-sold-left {
  font-size: 12px;
  margin-bottom: 3px;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.625rem;
  letter-spacing: 0.1rem;
  font-weight: 300;
}
body.single-product .summary.entry-summary .zap-competitions-progress .progress-track {
  border: none;
  background-color: #393939;
  border-radius: 0;
  max-width: 100%;
  margin: 0 auto;
}
body.single-product .summary.entry-summary .zap-competitions-progress .progress-track .progress-bar {
  background-color: #070707;
  overflow: visible;
  position: relative;
  border-radius: 0;
}
body.single-product .summary.entry-summary .zap-competitions-progress .progress-track .percentage-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  z-index: 25;
}
body.single-product .summary.entry-summary .zap-competitions-progress .percentage-marker {
  background-color: #d1b86b;
  position: absolute;
  right: 0;
  top: 0px;
  bottom: 0px;
  width: 2px;
}

#zap-competition-tabs {
  background-color: #29292c;
  border-radius: 0;
  position: relative;
}
#zap-competition-tabs .nav {
  border-color: transparent;
  width: 100%;
  display: block;
  text-align: center;
  position: relative;
  padding: 25px 0;
}
#zap-competition-tabs .nav .nav-item {
  display: inline-block;
  margin: 0 30px;
}
@media (max-width: 767.98px) {
  #zap-competition-tabs .nav .nav-item {
    display: block;
    margin-bottom: 10px;
    max-width: 100%;
    width: 100%;
  }
}
#zap-competition-tabs .nav .nav-item .nav-link {
  border-color: transparent !important;
  background-color: transparent !important;
  color: #fff;
  border-bottom: 3px solid transparent;
  font-weight: bold;
  font-style: normal;
  text-transform: uppercase;
  font-size: 1.125rem;
  padding: 5px 0;
}
#zap-competition-tabs .nav .nav-item .nav-link.active {
  color: #d1b86b;
  border-bottom: 3px solid #d1b86b;
}
#zap-competition-tabs .tab-content {
  border: none !important;
  color: #fff;
}
@media (max-width: 767.98px) {
  #zap-competition-tabs .tab-content {
    border-radius: 15px;
  }
}
@media (max-width: 575.98px) {
  #zap-competition-tabs .tab-content {
    padding: 2rem 1rem;
  }
}
#zap-competition-tabs .tab-content h3 {
  color: #fff;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.zap-competition-accordion-wrapper {
  flex: 0 0 100%;
}
.zap-competition-accordion-wrapper .container {
  max-width: 840px;
}
.zap-competition-accordion-wrapper #accordionTabs .card,
.zap-competition-accordion-wrapper #zapc-accordion .card {
  border-radius: 0;
  border-color: transparent;
  background-color: transparent;
}
.zap-competition-accordion-wrapper #accordionTabs .card .card-header,
.zap-competition-accordion-wrapper #zapc-accordion .card .card-header {
  padding: 0;
  border-radius: 0;
  background-color: transparent;
  border-bottom-color: #d1b86b;
}
.zap-competition-accordion-wrapper #accordionTabs .card .card-header button,
.zap-competition-accordion-wrapper #zapc-accordion .card .card-header button {
  display: block;
  width: 100%;
  text-align: left;
  margin: 0;
  font-weight: 500;
  padding: 15px 15px;
  border-color: transparent;
  font-size: 0.875rem;
  position: relative;
  color: #fff;
  background-color: transparent;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
.zap-competition-accordion-wrapper #accordionTabs .card .card-header button:hover,
.zap-competition-accordion-wrapper #zapc-accordion .card .card-header button:hover {
  cursor: pointer;
}
.zap-competition-accordion-wrapper #accordionTabs .card .card-header button:before,
.zap-competition-accordion-wrapper #zapc-accordion .card .card-header button:before {
  content: "";
  width: 2px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -10px;
  transition: 0.3s;
}
.zap-competition-accordion-wrapper #accordionTabs .card .card-header button:after,
.zap-competition-accordion-wrapper #zapc-accordion .card .card-header button:after {
  content: "";
  height: 2px;
  width: 20px;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  right: 21px;
  top: 50%;
  margin-top: -1px;
}
.zap-competition-accordion-wrapper #accordionTabs .card .card-body,
.zap-competition-accordion-wrapper #zapc-accordion .card .card-body {
  padding: 25px 30px;
  color: #fff;
}
.zap-competition-accordion-wrapper #accordionTabs .card .card-body h2,
.zap-competition-accordion-wrapper #zapc-accordion .card .card-body h2 {
  display: none;
}
.zap-competition-accordion-wrapper #accordionTabs .card .card-body h3,
.zap-competition-accordion-wrapper #zapc-accordion .card .card-body h3 {
  text-transform: uppercase;
  font-size: 1.125rem;
  letter-spacing: 0.1rem;
}
.zap-competition-accordion-wrapper #accordionTabs .card .card-body ul,
.zap-competition-accordion-wrapper #accordionTabs .card .card-body ol,
.zap-competition-accordion-wrapper #accordionTabs .card .card-body p,
.zap-competition-accordion-wrapper #zapc-accordion .card .card-body ul,
.zap-competition-accordion-wrapper #zapc-accordion .card .card-body ol,
.zap-competition-accordion-wrapper #zapc-accordion .card .card-body p {
  opacity: 0.7;
}
.zap-competition-accordion-wrapper #accordionTabs .card .card-header button[aria-expanded=true],
.zap-competition-accordion-wrapper #zapc-accordion .card .card-header button[aria-expanded=true] {
  color: #d1b86b;
}
.zap-competition-accordion-wrapper #accordionTabs .card .card-header button[aria-expanded=true]:before,
.zap-competition-accordion-wrapper #zapc-accordion .card .card-header button[aria-expanded=true]:before {
  content: "";
  height: 2px;
  width: 20px;
  background-color: rgba(0, 0, 0, 0.125);
  position: absolute;
  right: 21px;
  top: 50%;
  margin-top: -1px;
  transition: 0.3s;
}

.zapc-related-products {
  background-color: #111111;
}
.zapc-related-products section.related {
  background-color: #111111;
}
.zapc-related-products section.related .section-title {
  color: #fff;
}

.wc-points-rewards-product-message {
  text-align: center;
  text-transform: uppercase;
  color: #070707;
  font-weight: 400;
  font-size: 0.625rem;
  letter-spacing: 0.075rem;
  background-color: #f4f8ee;
  border: 1px solid #e6ecdc;
  padding: 3px 5px;
  border-radius: 5px;
  margin-bottom: 5px;
  display: inline-block;
}
@media (max-width: 575.98px) {
  .wc-points-rewards-product-message {
    font-size: 0.5625rem;
    letter-spacing: 0;
    left: 5px;
    right: 5px;
    bottom: 48px;
  }
}
@media only screen and (max-width: 340px) {
  .wc-points-rewards-product-message {
    font-size: 0.5rem;
  }
}

div.type-product.product-type-simple .zapct-add-to-cart-wrapper {
  margin: 0;
}
div.type-product.product-type-simple .zapct-add-to-cart-wrapper .quantity {
  flex: 0 0 60px;
  max-width: 60px;
}
div.type-product.product-type-simple .zapct-add-to-cart-wrapper .quantity input {
  width: 100%;
  height: 50px;
  padding: 5px 10px;
}
div.type-product.product-type-simple .zapct-add-to-cart-wrapper .zapct-add-to-cart-button-wrapper {
  margin: 0;
  flex: 0 0 calc(100% - 60px);
  max-width: calc(100% - 60px);
}

/* ==========================================================================
   Page Template - Contact
   ========================================================================== */
.page-template-contact .main-container .card.card-body {
  background-color: #070707;
}
.page-template-contact .main-container .card.card-body #contact-form .form-group label {
  color: #fff;
}

/* ==========================================================================
   Page Template - Legal
   ========================================================================== */
#menu-legal-menu li a {
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-size: 0.75rem;
}
#menu-legal-menu li.active a {
  background-color: #d1b86b;
  color: #070707;
}

.page-template-legal .main-container {
  color: #fff;
}
.page-template-legal .main-container .card.card-body.bg-light {
  background-color: #070707 !important;
  border-radius: 0;
}
.page-template-legal .main-container ul {
  list-style-position: inside;
}
.page-template-legal .main-container .iub_content {
  color: #fff !important;
}
.page-template-legal .main-container .iub_content h1,
.page-template-legal .main-container .iub_content h2,
.page-template-legal .main-container .iub_content h3,
.page-template-legal .main-container .iub_content h4,
.page-template-legal .main-container .iub_content h5,
.page-template-legal .main-container .iub_content h6,
.page-template-legal .main-container .iub_content p,
.page-template-legal .main-container .iub_content strong {
  color: #fff !important;
}
.page-template-legal .main-container .iub_content a {
  color: #d1b86b !important;
}
.page-template-legal .main-container #iubenda_policy .box_primary {
  background-color: transparent !important;
  border: none !important;
}
.page-template-legal .main-container #iubenda_policy .box_primary a {
  color: #d1b86b !important;
}

/* ==========================================================================
   Page Template - Blog
   ========================================================================== */
body.blog .blog-header {
  border-bottom: 5px solid #d1b86b;
}
body.blog .zapct-blog-posts .zapct-blog-post .img-link {
  position: relative;
  display: block;
}
body.blog .zapct-blog-posts .zapct-blog-post .img-link:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 80%;
  background: rgb(7, 7, 7);
  background: linear-gradient(0deg, rgb(7, 7, 7) 0%, rgba(7, 7, 7, 0) 100%);
}
body.blog .zapct-blog-posts .zapct-blog-post .post-inner {
  background-color: #070707;
  text-align: center;
  padding: 15px 15px;
}
body.blog .zapct-blog-posts .zapct-blog-post .post-inner h3 {
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  margin-bottom: 0;
}
body.blog .zapct-blog-posts .zapct-blog-post .post-inner small {
  color: #d1b86b;
  font-size: 14px;
}
body.blog .zapct-blog-posts .zapct-blog-post .post-inner p {
  font-size: 12px;
  border-top: 1px solid #393939;
  position: relative;
  padding-top: 15px;
  margin-top: 15px;
}
body.blog .zapct-blog-posts .zapct-blog-post .post-inner p:before {
  content: "";
  height: 5px;
  width: 5px;
  background-color: #393939;
  position: absolute;
  left: 0;
  top: -3px;
  border-radius: 50%;
}
body.blog .zapct-blog-posts .zapct-blog-post .post-inner p:after {
  content: "";
  height: 5px;
  width: 5px;
  background-color: #393939;
  position: absolute;
  right: 0;
  top: -3px;
  border-radius: 50%;
}

/* ==========================================================================
   Page Template - Draw Results
   ========================================================================== */
.result-wrap {
  padding-left: 4rem;
  margin-left: 4rem;
  border-left: 1px solid #393939;
}
@media screen and (max-width: 600px) {
  .result-wrap {
    padding: 0;
    margin: 0;
    border: none;
  }
}

.result-wrap .card {
  background: #070707;
  border-color: #070707;
  border-radius: 0;
  color: #fff;
}
.result-wrap .card .card-title {
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.1rem;
}
.result-wrap .card .card-title i {
  color: #d1b86b;
  margin-right: 5px;
}
.result-wrap .card .card-title a {
  color: #fff;
  text-decoration: underline;
}
.result-wrap .card .zapct-single-result {
  color: #fff;
}
.result-wrap .card .zapct-single-result i:before {
  content: "•" !important;
  width: 20px;
  height: 14px;
  display: inline-block;
  color: #d1b86b;
}
.result-wrap .card .zapct-single-result .zapct-winner-ticket {
  color: #d1b86b;
}
.result-wrap .card:before {
  content: "";
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  left: -6.1rem;
  top: -0.1rem;
  background-color: #070707;
  color: #fff;
  padding: 1rem;
  width: 4rem;
  height: 4rem;
  border-radius: 0px;
  background-image: url(../images/DrawResults_Icon.svg);
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 600px) {
  .result-wrap .card:before {
    display: none;
  }
}

/* ==========================================================================
   Page Template - Entry Lists
   ========================================================================== */
.zapct-entry-list .btn, .zapct-entry-list body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row:last-of-type button, body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row:last-of-type .zapct-entry-list button {
  background-color: #ffc107 !important;
  border-color: #ffc107 !important;
  font-weight: bold;
}

/* ==========================================================================
   Page Template - FAQs
   ========================================================================== */
#zapct-faq-accordion {
  max-width: 850px;
  margin: 0 auto;
}
#zapct-faq-accordion .card {
  margin-bottom: 20px;
  border-radius: 0px;
  border-color: #393939;
  overflow: hidden;
}
#zapct-faq-accordion .card .card-header {
  padding: 0;
  border: none;
}
#zapct-faq-accordion .card .card-header h5 {
  border-radius: 0 !important;
}
#zapct-faq-accordion .card .card-header button {
  padding: 15px;
  padding-right: 60px;
  width: 100%;
  text-align: left;
  color: #fff;
  background-color: #070707;
  border-radius: 0px !important;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: 500;
  background-image: url(../images/arrow-ticket-sales.png);
  background-size: 12px 10px;
  background-repeat: no-repeat;
  background-position: right 20px center;
  white-space: normal;
}
#zapct-faq-accordion .card .card-header button:after, #zapct-faq-accordion .card .card-header button:before {
  display: none;
}
#zapct-faq-accordion .card .card-header button[aria-expanded=true] {
  background-image: url(../images/arrow-ticket-sales-down.png);
}
#zapct-faq-accordion .card .card-body {
  border-top: 1px solid #29292c;
  background-color: #070707;
}
#zapct-faq-accordion .card .card-body .zapct-message-block {
  border: none;
}
#zapct-faq-accordion .card .card-body p {
  color: #adb5bd;
}
#zapct-faq-accordion .card .card-body ul {
  padding-left: 30px;
}
#zapct-faq-accordion .card .card-body a {
  color: #d1b86b;
}

/* ==========================================================================
   WooCommerce - Instant Wins
   ========================================================================== */
.zapciw-wrapper table caption {
  caption-side: top;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 900;
  display: none;
}

.zapciw-wrapper table {
  text-align: center;
}

.zapciw-wrapper table thead tr {
  background: #d1b86b;
  border: none;
  color: #fff;
  text-transform: uppercase;
}
.zapciw-wrapper table thead tr th {
  border: 2px solid #171919;
}
.zapciw-wrapper table thead tr th:nth-of-type(2) {
  background-color: #1a1a1a;
  color: #070707;
}
@media (max-width: 575.98px) {
  .zapciw-wrapper table thead tr th {
    font-size: 12px;
    letter-spacing: 0;
    padding: 0.75rem 10px;
  }
}

.zapciw-wrapper table tbody td {
  background-color: #202323;
  border: 2px solid #171919;
  color: #fff;
}
@media (max-width: 575.98px) {
  .zapciw-wrapper table tbody td {
    font-size: 14px;
  }
}

.zapciw-wrapper table tbody tr.claimed td {
  text-decoration: line-through;
  opacity: 0.4;
}

.zapciw-wrapper table tbody tr.claimed td:last-child {
  text-decoration: none;
  opacity: 1;
}

.zapciw-wrapper i {
  color: #4acfb5;
  margin-right: 5px;
}

/* ==========================================================================
   Page Template - Reveal the Winner
   ========================================================================== */
/* ==========================================================================
   Home Block - App Block
   ========================================================================== */
/* ==========================================================================
   Home Block - Carousel
   ========================================================================== */
@media (max-width: 767.98px) {
  #zapct-carousel .carousel-indicators {
    display: none;
  }
}
#zapct-carousel .carousel-item .overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: rgb(7, 7, 7);
  background: linear-gradient(0deg, rgb(7, 7, 7) 0%, rgba(7, 7, 7, 0) 100%);
}
#zapct-carousel .carousel-item img {
  width: 100%;
  height: auto;
}
#zapct-carousel .carousel-item .carousel-caption {
  position: absolute;
  left: 50%;
  bottom: 80px;
  top: auto;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: 980px;
}
@media (max-width: 991.98px) {
  #zapct-carousel .carousel-item .carousel-caption {
    bottom: 40px;
  }
}
@media (max-width: 767.98px) {
  #zapct-carousel .carousel-item .carousel-caption {
    position: relative;
    left: auto;
    bottom: auto;
    transform: translate(0);
  }
}
#zapct-carousel .carousel-item .carousel-caption .category {
  display: block;
  max-width: none;
  width: 100%;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-size: 2.25rem;
  line-height: 1;
}
@media (max-width: 991.98px) {
  #zapct-carousel .carousel-item .carousel-caption .category {
    font-size: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  #zapct-carousel .carousel-item .carousel-caption .category {
    font-size: 1.25rem;
  }
}
#zapct-carousel .carousel-item .carousel-caption .link {
  display: block;
  width: 100%;
  text-align: center;
}

/* ==========================================================================
   Home Block - Custom Blocks
   ========================================================================== */
/* ==========================================================================
   Home Block - Image Block
   ========================================================================== */
.zapct-image-block {
  background-color: #070707;
  padding: 45px 0;
}
@media (max-width: 767.98px) {
  .zapct-image-block .image-block-inner {
    margin-right: 0px !important;
  }
}
.zapct-image-block .image-block-inner h2 {
  text-transform: uppercase;
  font-size: 1.5rem;
  margin-bottom: 20px;
  display: inline-flex;
  overflow: hidden;
  flex-grow: 2;
  width: 100%;
  white-space: nowrap;
}
.zapct-image-block .image-block-inner h2:after {
  content: "";
  height: 1px;
  display: inline-flex;
  margin-left: 20px;
  background: 0 0;
  width: 50%;
  vertical-align: middle;
  flex-grow: 1;
  margin-top: auto;
  margin-bottom: auto;
  background-color: #393939;
}
.zapct-image-block .image-block-inner p {
  font-size: 14px;
}
@media (max-width: 767.98px) {
  .zapct-image-block .image-block-img {
    aspect-ratio: 1/1;
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
  }
}
.zapct-image-block .image-block-img:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 60%;
  bottom: 0;
  background: rgb(7, 7, 7);
  background: linear-gradient(90deg, rgb(7, 7, 7) 0%, rgba(7, 7, 7, 0) 100%);
}

/* ==========================================================================
   Home Block - Next Draw
   ========================================================================== */
.zapct-next-draw {
  padding: 0 15px;
}
@media (max-width: 575.98px) {
  .zapct-next-draw {
    padding: 0;
  }
}
.zapct-next-draw .container {
  background: #070707;
  color: #fff;
  padding: 13.5px 30px;
  border: 1px solid #111111;
  position: relative;
  background-image: url(../images/TCC_Icon_TitleEnd.svg), url(../images/TCC_Icon_TitleEnd.svg);
  background-position: left -40px center, right -40px center;
  background-repeat: no-repeat;
  background-size: auto 75px;
  margin-top: 50px;
}
@media (max-width: 991.98px) {
  .zapct-next-draw .container {
    max-width: 100%;
  }
}
@media (max-width: 767.98px) {
  .zapct-next-draw .container {
    max-width: 650px;
    padding: 10px 5px;
    margin-top: 30px;
  }
}
.zapct-next-draw .container .timer-inner {
  justify-content: center !important;
}
@media (max-width: 767.98px) {
  .zapct-next-draw .container .timer-inner {
    flex-direction: column;
  }
}
.zapct-next-draw .container .until-next {
  order: 1;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1rem;
  font-width: bold;
}
.zapct-next-draw .container #draw-countdown {
  padding: 18px 40px 12px;
  position: relative;
  order: 2;
}
@media (max-width: 991.98px) {
  .zapct-next-draw .container #draw-countdown {
    padding: 18px 20px 12px;
  }
}
@media (max-width: 767.98px) {
  .zapct-next-draw .container #draw-countdown {
    padding-top: 5px;
  }
}
.zapct-next-draw .container #draw-countdown div {
  display: inline-block;
  text-align: center;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  padding: 0 10px;
  width: 67px;
  font-weight: 700;
  color: #d1b86b;
}
@media (max-width: 991.98px) {
  .zapct-next-draw .container #draw-countdown div {
    width: 60px;
  }
}
.zapct-next-draw .container #draw-countdown div span {
  display: block;
  font-size: 1.875rem;
  line-height: 1;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0rem;
}
@media (max-width: 991.98px) {
  .zapct-next-draw .container #draw-countdown div span {
    font-size: 1.625rem;
  }
}
.zapct-next-draw .container .link {
  order: 3;
  width: 189px;
  text-align: center;
}
.zapct-next-draw .container .link .btn, .zapct-next-draw .container .link body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row:last-of-type button, body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row:last-of-type .zapct-next-draw .container .link button {
  color: #fff;
  background-color: transparent;
  border-color: #fff;
  width: 100%;
}
.zapct-next-draw .container .link .btn:hover, .zapct-next-draw .container .link body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row:last-of-type button:hover, body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row:last-of-type .zapct-next-draw .container .link button:hover {
  background-color: #fff;
  color: #070707;
}

/* ==========================================================================
   Home Block - Products
   ========================================================================== */
.zapct-products {
  background-color: #1a1a1a !important;
  padding-bottom: 3.5rem !important;
}

/* ==========================================================================
   Home Block - Reviews
   ========================================================================== */
/* ==========================================================================
   Home Block - Stats
   ========================================================================== */
/* ==========================================================================
   Home Block - Steps
   ========================================================================== */
#zapct-homepage-steps {
  position: relative;
  border-bottom: none !important;
  background-color: #1a1a1a;
  padding-top: 80px 0;
}
#zapct-homepage-steps .section-title {
  color: #fff;
}
#zapct-homepage-steps .homepage-steps-inner {
  position: relative;
  z-index: 50;
}
#zapct-homepage-steps .homepage-steps-inner .item {
  margin: 0px !important;
  color: #fff !important;
  padding: 35px 20px 50px !important;
  background-color: #070707 !important;
  border: 1px solid #070707 !important;
  position: relative;
  text-align: center;
}
@media (max-width: 767.98px) {
  #zapct-homepage-steps .homepage-steps-inner .item {
    border-right: none;
    margin-bottom: 30px !important;
  }
}
#zapct-homepage-steps .homepage-steps-inner .item .icon {
  margin-top: 0px;
  margin-bottom: 30px;
  text-align: center;
}
#zapct-homepage-steps .homepage-steps-inner .item .icon img {
  height: 70px;
}
@media (max-width: 767.98px) {
  #zapct-homepage-steps .homepage-steps-inner .item .icon img {
    height: 80px;
    width: auto;
  }
}
#zapct-homepage-steps .homepage-steps-inner .item h3 {
  font-size: 0.875rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;
  text-align: center;
  border-top: 1px solid #393939;
  position: relative;
  padding-top: 20px;
}
#zapct-homepage-steps .homepage-steps-inner .item h3:before {
  content: "";
  height: 5px;
  width: 5px;
  background-color: #393939;
  position: absolute;
  left: 0;
  top: -3px;
  border-radius: 50%;
}
#zapct-homepage-steps .homepage-steps-inner .item h3:after {
  content: "";
  height: 5px;
  width: 5px;
  background-color: #393939;
  position: absolute;
  right: 0;
  top: -3px;
  border-radius: 50%;
}
#zapct-homepage-steps .homepage-steps-inner .item p {
  font-size: 12px;
  margin: 0;
  text-align: center;
}
#zapct-homepage-steps .homepage-steps-inner .item:after {
  content: "";
  width: 42px;
  border: 1px solid #d1b86b;
  background-color: #070707;
  font-size: 24px;
  position: absolute;
  left: 50%;
  bottom: -21px;
  transform: translateX(-50%);
  border-radius: 50%;
  padding: 2px 0;
  text-align: center;
}
#zapct-homepage-steps .homepage-steps-inner .col-step-0 .item:after {
  content: "1";
}
#zapct-homepage-steps .homepage-steps-inner .col-step-1 .item:after {
  content: "2";
}
#zapct-homepage-steps .homepage-steps-inner .col-step-2 .item:after {
  content: "3";
}
#zapct-homepage-steps .homepage-steps-inner .col-step-3 .item:after {
  content: "4";
}

/* ==========================================================================
   Home Block - Winners
   ========================================================================== */
#zapct-homepage-winners {
  padding: 70px 0 70px;
  background-color: #070707;
  background-image: url(../images/AdobeStock_263780743.jpeg);
  background-size: cover;
}
#zapct-homepage-winners .section-title {
  color: #fff;
}
#zapct-homepage-winners .card {
  margin: 0 !important;
}

.zapct-winners .card {
  background-color: #070707;
  padding: 10px;
  border-radius: 0;
  border: 1px solid #070707;
  box-shadow: 0 0.5rem 1rem rgba(23, 23, 23, 0.15);
  height: 100%;
  margin-bottom: 0;
}
.zapct-winners .card img {
  border-radius: 0 !important;
}
.zapct-winners .card .card-body {
  text-align: center;
  color: #fff;
}
@media (max-width: 991.98px) {
  .zapct-winners .card .card-body {
    padding: 15px 15px;
  }
}
@media (max-width: 575.98px) {
  .zapct-winners .card .card-body {
    padding: 15px 5px;
  }
}
.zapct-winners .card .card-body .card-title {
  color: #fff;
}
@media (max-width: 575.98px) {
  .zapct-winners .card .card-body .card-title {
    font-size: 0.8125rem;
    margin-bottom: 5px !important;
  }
}
.zapct-winners .card .card-body .card-text {
  color: #d1b86b;
  margin-bottom: 0;
}
@media (max-width: 575.98px) {
  .zapct-winners .card .card-body .card-text {
    font-size: 0.75rem;
  }
}
.zapct-winners .card .card-body .card-text strong,
.zapct-winners .card .card-body .card-text i {
  display: none;
}

/* ==========================================================================
   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, body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-form-row:last-of-type button.xoo-wsc-ft-btn.button.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: #070707 !important;
}
.xoo-wsc-header a,
.xoo-wsc-body a,
.xoo-wsc-footer a {
  color: #070707 !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: #459c65 !important;
}

.xoo-wsc-slider {
  background-color: #fff;
  color: #393939;
}
.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: #070707;
  border-color: #070707;
  padding: 10px 20px;
  font-size: 1rem;
  line-height: 1;
  border-radius: 5px;
}
.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(44.2, 44.2, 44.2, 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: #070707;
  border-color: #070707;
}
.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(44.2, 44.2, 44.2, 0.5);
}

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

.xoo-wsc-ft-buttons-cont a,
.xoo-wsc-empty-cart a {
  color: #fff;
  background-color: #070707;
  border-color: #070707;
  padding: 10px 20px;
  font-size: 1rem;
  line-height: 1;
  border-radius: 5px;
  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(44.2, 44.2, 44.2, 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: #070707;
  border-color: #070707;
}
.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(44.2, 44.2, 44.2, 0.5);
}

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