/*
Theme Name: DMN WP STARTER
Description: DMN WP STARTER Child theme for customizations.
Author: DMN Creative
Author URI: mailto:dev@dmncreative.com
Template: oceanwp
Text Domain:  dmnwpstarter
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */

/* Importing fonts */

/* @import "assets/fonts/fonts.css"; */

@font-face {
  font-family: 'adelia';
  src: url('assets/fonts/adelia.eot');
  src: url('assets/fonts/adeliad41d.eot?#iefix') format('embedded-opentype'),
    url('assets/fonts/adelia.woff') format('woff'),
    url('assets/fonts/adelia.ttf') format('truetype'),
    url('assets/fonts/adelia.svg#adelia') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Importing fonts end */

/* Helpers and Init Styles */
:root {
  --site-headings-font: "futura-pt";
  --site-body-font: "futura-pt";
  --site-special-font: "adelia";
  --site-main-gold: #B99974;
  --site-main-white: #ffffff;
  --site-main-black: #000000;
}

a:focus {
  outline: none !important;
}

.adelia a, .adelia p, .adelia span, .adelia h1, .adelia h2, .adelia h3, .adelia h4 {
  font-family: var(--site-special-font) !important;
}

/* Helpers End */

/* Instagram Plugin Hiding of Alert */

.instagram-gallery-feed .instagram-gallery__alert {
  display: none !important;
}

/* Instagram Plugin Hiding of Alert End */

/* Home page */

.my-custom-font p {
  font-family: 'adelia';
}

/* Home page end */

/* Footer */

#menu-footer li {
  display: block;
  padding: 5px 0;
}

/* Footer end */

/* Swiper */

.swiper-button-next, .swiper-button-prev {
  width: 15px;
  height: 25px;
  color: var(--site-main-black);
  background-image: none;
}

.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 30px;
  font-weight: 900;
}

/* Swiper end */

/* Custom buttons */

.my-custom-button a {
  position: relative;
  overflow: hidden;
  text-transform: unset;
}

.my-custom-button-white a {
  border-color: var(--site-main-white);
}

.my-custom-button-black a {
  border-color: var(--site-main-black);
}

.my-custom-button a:before, .my-custom-button a:after {
  position: absolute;
  top: 50%;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.my-custom-button-white a:before, .my-custom-button-white a:after {
  background-color: var(--site-main-white);
}

.my-custom-button-black a:before, .my-custom-button-black a:after {
  background-color: var(--site-main-black);
}

.my-custom-button a:before {
  left: -20px;
  transform: translate(-50%, -50%);
}

.my-custom-button a:after {
  right: -20px;
  transform: translate(50%, -50%);
}

.my-custom-button a:hover:before {
  -webkit-animation: criss-cross-left 0.8s both;
  animation: criss-cross-left 0.8s both;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

.my-custom-button a:hover:after {
  -webkit-animation: criss-cross-right 0.8s both;
  animation: criss-cross-right 0.8s both;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

.my-custom-button a:not(:hover):before {
  -webkit-animation: criss-cross-left-reverse 0.8s both;
  animation: criss-cross-left-reverse 0.8s both;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

.my-custom-button a:not(:hover):after {
  -webkit-animation: criss-cross-right-reverse 0.8s both;
  animation: criss-cross-right-reverse 0.8s both;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

.my-custom-button .elementor-button span {
  text-decoration: inherit;
  z-index: 1;
  position: relative;
}

.my-custom-button-white a .elementor-button-text {
  color: var(--site-main-white) !important;
}

.my-custom-button-black a .elementor-button-text {
  color: var(--site-main-black) !important;
}

.my-custom-button a:hover .elementor-button-text {
  color: var(--site-main-gold) !important;
  transition-delay: .5s;
}

.my-custom-button a:not(:hover) .elementor-button-text {
  transition-delay: .5s;
}

@-webkit-keyframes criss-cross-left {
  0% {
    left: -20px;
  }

  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }

  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}

@-webkit-keyframes criss-cross-left-reverse {
  0% {
    left: 50%;
    width: 375px;
    height: 375px;
  }

  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    left: -20px;
  }
}

@keyframes criss-cross-left-reverse {
  0% {
    left: 50%;
    width: 375px;
    height: 375px;
  }

  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    left: -20px;
  }
}

@-webkit-keyframes criss-cross-right {
  0% {
    right: -20px;
  }

  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes criss-cross-right {
  0% {
    right: -20px;
  }

  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}

@-webkit-keyframes criss-cross-right-reverse {
  0% {
    right: 50%;
    width: 375px;
    height: 375px;
  }

  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    right: -20px;
  }
}

@keyframes criss-cross-right-reverse {
  0% {
    right: 50%;
    width: 375px;
    height: 375px;
  }

  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    right: -20px;
  }
}

/* Custom buttons end */

/* Bullion animation (ALSO USED FOR THE KRUGERRANDS COIN + PRECIOUS METAL CHAIN) */

.my-bullion::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(240deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shine 4s ease-in-out infinite;
  -webkit-animation: shine 4s ease-in-out infinite;
}

@-webkit-keyframes shine {
  0% {
    left: -100%;
    transition-property: left;
  }

  11.5044247788%, 100% {
    left: 100%;
    transition-property: left;
  }
}

@keyframes shine {
  0% {
    left: -100%;
    transition-property: left;
  }

  11.5044247788%, 100% {
    left: 100%;
    transition-property: left;
  }
}

/* Bullion animation end */

/* Ring animation */

.my-ring {
  position: relative;
  width: 100%;
  height: 100%;
}

.ring-star {
  width: 10px;
  height: 10px;
  background-color: var(--site-main-white);
  border-radius: 50%;
  box-shadow: 0 0 10px 4px var(--site-main-white);
  position: absolute;
  animation: ringstar;
  -webkit-animation: ringstar;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  transform: rotate(15deg);
  -webkit-transform: rotate(15deg);
  -moz-transform: rotate(15deg);
  -ms-transform: rotate(15deg);
  -o-transform: rotate(15deg);
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.ring-star:after,
.ring-star:before {
  content: "";
  display: block;
  position: absolute;
  background-image: linear-gradient(to left, transparent, var(--site-main-white), transparent);
  left: -34px;
  top: calc(50% - 1px);
  width: 80px;
  height: 2px;
}

.ring-star:before {
  width: 2px;
  height: 80px;
  left: calc(50% - 1px);
  top: -34px;
  background-image: linear-gradient(to bottom, transparent, var(--site-main-white), transparent);
}

@keyframes ringstar {
  0% {
    transform: scale(0.1) rotate(-200deg);
  }

  55% {
    transform: scale(1.2) rotate(180deg);
  }

  100% {
    transform: scale(0.1) rotate(-200deg);
  }
}

/* Ring animation end */

/* FORMS */

/* Global Changes */

.wpcf7-form .wpcf7-response-output {
  margin: 0px !important;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--site-main-gold) !important;
}

#my-form input[type="text"], #my-form input[type="email"], #my-form input[type="tel"], #my-form select, #my-form textarea {
  max-width: 100%;
  font-size: 14px;
  line-height: 1.8;
  padding: 10px 12px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required {
  height: 55px;
}

#my-form .col-md-6, #my-form .col-md-12 {
  margin-bottom: 15px;
}

#my-form  input[type="text"]:focus, #my-form  input[type="password"]:focus, #my-form  input[type="email"]:focus, #my-form  input[type="url"]:focus, #my-form  input[type="date"]:focus, #my-form  input[type="month"]:focus, #my-form  input[type="time"]:focus, #my-form  input[type="datetime"]:focus, #my-form  input[type="datetime-local"]:focus, #my-form  input[type="week"]:focus, #my-form  input[type="number"]:focus, #my-form  input[type="search"]:focus, #my-form  input[type="tel"]:focus, #my-form  input[type="color"]:focus, #my-form  select:focus, #my-form  textarea:focus {
  border-color: var(--site-main-gold);
}

.wpcf7-form-control.wpcf7-submit.has-spinner {
  padding: 17px 30px;
  letter-spacing: 0;
  text-transform: capitalize;
  font-size: 14px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  font-weight: 400;
  border: none;
}

.wpcf7-form-control.wpcf7-submit.has-spinner:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

/* Global Changes End */

/* Black form */

#my-form input[type="text"], #my-form input[type="email"], #my-form input[type="number"], #my-form input[type="tel"], #my-form select, #my-form textarea {
  color: var(--site-main-black);
  border: 1px solid var(--site-main-black);
}

#my-form ::-webkit-input-placeholder {
  /* WebKit browsers */
  color: var(--site-main-black) !important;
  opacity: 1;
}

#my-form :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: var(--site-main-black) !important;
  opacity: 1;
}

#my-form ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: var(--site-main-black) !important;
  opacity: 1;
}

#my-form :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: var(--site-main-black) !important;
  opacity: 1;
}

#my-form .wpcf7-form-control.wpcf7-submit.has-spinner {
  background-color: var(--site-main-gold);
  color: var(--site-main-black);
}

#my-form.newsletter-form .wpcf7-form-control.wpcf7-submit.has-spinner {
  padding: 13px 30px;
}

#my-form .wpcf7-form-control.wpcf7-submit.has-spinner:hover {
  background-color: var(--site-main-black) !important;
  color: var(--site-main-gold);
}

#my-form.newsletter-form .wpcf7-form-control.wpcf7-submit.has-spinner:hover {
  border-color: var(--site-main-gold);
  background-color: var(--site-main-gold) !important;
  color: var(--site-main-black) !important;
}

/* Black form End */

/* White form */

#footer #my-form input[type="text"], #footer #my-form input[type="email"], #footer #my-form input[type="number"], #footer #my-form textarea {
  color: var(--site-main-white);
  border: 1px solid var(--site-main-white);
}

#footer #my-form ::-webkit-input-placeholder {
  /* WebKit browsers */
  color: var(--site-main-white) !important;
  opacity: 1;
}

#footer #my-form :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: var(--site-main-white) !important;
  opacity: 1;
}

#footer #my-form ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: var(--site-main-white) !important;
  opacity: 1;
}

#footer #my-form :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: var(--site-main-white) !important;
  opacity: 1;
}

#footer #my-form .wpcf7-form-control.wpcf7-submit.has-spinner {
  background-color: var(--site-main-gold);
  color: var(--site-main-black);
  width: 100%;
}

#footer #my-form .wpcf7-form-control.wpcf7-submit.has-spinner:hover {
  background-color: var(--site-main-white);
  color: var(--site-main-gold);
}

/* White form end */

/* Get In Touch (Eat Gold) Form */

.cust-get-in-touch-form-container .row {
  margin-bottom: 20px;
}

.cust-get-in-touch-form-container .row:not(:last-child) input, .cust-get-in-touch-form-container .row:not(:last-child) textarea {
  padding: 10px;
  border: 1px solid var(--site-main-black);
  border-radius: 4px 4px 4px 4px;
  caret-color: transparent;
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
  color: var(--site-main-black);
  background-color: #02010100;
  padding: 14px 30px 14px 30px;
}

.cust-get-in-touch-form-container .row:not(:last-child) input::placeholder {
  opacity: 1;
}

.cust-get-in-touch-form-container .row:not(:last-child) textarea {
  max-height: 160px;
}

.cust-get-in-touch-form-container .row:not(:last-child) textarea::placeholder {
  opacity: 1;
}

.cust-get-in-touch-form-container .row:not(:last-child) .wpcf7-acceptance {
  display: block;
  width: 100%;
  text-align: center;
}

.cust-get-in-touch-form-container .row:not(:last-child) .wpcf7-acceptance label {
  font-size: 16px;
  line-height: 21px;
}

.cust-get-in-touch-form-container .row:not(:last-child) .wpcf7-acceptance input {
  padding: 10px;
  border: 1px solid var(--site-main-black);
  caret-color: transparent;
}

.cust-get-in-touch-form-container .row:not(:last-child) .wpcf7-acceptance input::before {
  margin: -6px -8px;
  color: var(--site-main-black);
}

.cust-get-in-touch-form-container .row:not(:last-child) .wpcf7-acceptance label a {
  text-decoration: underline;
}

.cust-get-in-touch-form-container .row:last-child .col-md-12 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cust-get-in-touch-form-container .row:last-child .col-md-12 .cust-get-in-touch-form-submit {
  border: 1px solid var(--site-main-gold);
  background-color: var(--site-main-gold);
  color: #fff;
  text-transform: none;
  padding: 14px 64px;
}

.cust-get-in-touch-form-container .row:last-child .col-md-12 .wpcf7-spinner {
  position: absolute;
}

#wpcf7-f1984-p1995-o1 .wpcf7-form.sent .cust-get-in-touch-form-container, #wpcf7-f2017-p2035-o1 .wpcf7-form.sent .cust-get-in-touch-form-container, #wpcf7-f2018-p2050-o1 .wpcf7-form.sent .cust-get-in-touch-form-container, #wpcf7-f2019-p2058-o1 .wpcf7-form.sent .cust-get-in-touch-form-container, #wpcf7-f2021-p2072-o1 .wpcf7-form.sent .cust-get-in-touch-form-container, #wpcf7-f2022-p2079-o1 .wpcf7-form.sent .cust-get-in-touch-form-container, #wpcf7-f2023-p2086-o1 .wpcf7-form.sent .cust-get-in-touch-form-container, #wpcf7-f2024-p2093-o1 .wpcf7-form.sent .cust-get-in-touch-form-container {
  display: none;
}

#wpcf7-f1984-p1995-o1 .wpcf7-response-output, #wpcf7-f2017-p2035-o1 .wpcf7-response-output, #wpcf7-f2018-p2050-o1 .wpcf7-response-output, #wpcf7-f2019-p2058-o1 .wpcf7-response-output, #wpcf7-f2021-p2072-o1 .wpcf7-response-output, #wpcf7-f2022-p2079-o1 .wpcf7-response-output, #wpcf7-f2023-p2086-o1 .wpcf7-response-output, #wpcf7-f2024-p2093-o1 .wpcf7-response-output {
  text-align: center;
}

/* Get In Touch (Eat Gold) Form End */

/* FORMS END */

/* About page */

.services-container::after {
  content: "";
  position: absolute;
  display: block;
  right: 0;
  width: 144px;
  height: 100%;
  top: 0;
  background: linear-gradient(to left, var(--site-main-white) 0%, transparent 100%);
  z-index: 1;
}

.service-wrapper {
  margin: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  text-align: center;
}

.service-wrapper h3 {
  padding: 30px 10px 10px;
}

.service-wrapper .elementor-button-wrapper {
  text-align: center;
  padding-bottom: 30px;
}

/* About page end */

/* News/Blog */

/* Archive */

.blog #main #content-wrap {
  padding: 50px 0 0;
}

body #blog-entries .col {
  padding: 5px 10px;
}

#blog-entries .blog-entry-inner.clr {
  border-radius: 10px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.thumbnail-link .background-image-container {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 250px;
}

#blog-entries .thumbnail .overlay {
  border-radius: 10px 10px 0 0;
  -webkit-border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  -ms-border-radius: 10px 10px 0 0;
  -o-border-radius: 10px 10px 0 0;
}

#blog-entries .blog-entry.post .thumbnail img {
  border-radius: 10px 10px 0 0;
  -webkit-border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  -ms-border-radius: 10px 10px 0 0;
  -o-border-radius: 10px 10px 0 0;
}

.blog-entry.grid-entry .blog-entry-header {
  margin: 0;
  padding: 20px 5px 0;
}

.blog-entry.grid-entry .blog-entry-header .entry-title {
  text-transform: unset;
}

.blog-entry.grid-entry .blog-entry-summary {
  margin: 0;
  padding: 10px 5px 10px;
}

.blog-entry.grid-entry .blog-entry-readmore {
  margin: 0;
  padding: 0 10px 10px;
}

.blog-entry.grid-entry .blog-entry-readmore a {
  font-size: 16px;
  font-weight: 600;
  text-transform: unset;
}

.blog-entry-readmore.clr .fa.fa-angle-right {
  display: none;
}

/* Single */

.single-header-ocean-3 {
  padding: 0;
  margin-bottom: 0;
  height: 320px;
  display: flex;
  align-items: center;
}

.blog-post-author {
  display: none;
}

.single-header-ocean-3 .row-center {
  width: 100%;
}

.single-header-ocean-3 .single-post-title {
  margin: 30px 0;
}

/* Home shortcode */

.row.latest-blog-articles {
  justify-content: space-between;
}

.col-md-4.latest-blog-article {
  width: 31%;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
  padding: 0;
}

.featured-image {
  width: 100%;
  min-height: 198px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 8px 8px 0px 0px;
}

.article-content {
  padding: 20px;
}

.article-content .elementor-button-wrapper {
  text-align: center;
}

.article-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}

.article-excerpt {
  text-align: center;
}

/* News/Blog end */

/* Pagination */

.oceanwp-pagination .page-numbers, .oceanwp-pagination .page-numbers.current {
  min-width: 15px;
}

.oceanwp-pagination .page-numbers.current {
  font-weight: 600;
}

/* Pagination end */

/* Tabs */

body.page-id-704 #main .elementor-tabs .elementor-tab-title {
  width: 150px;
  text-align: center;
  background-color: transparent;
  border: 1px solid var(--site-main-black);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  margin: 0 10px;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}

body.page-id-704 #main .elementor-tabs .elementor-tab-title:hover, body.page-id-704 #main .elementor-tabs .elementor-tab-title.elementor-active {
  background-color: var(--site-main-gold);
  border: 1px solid var(--site-main-gold);
}

body.page-id-704 #main .elementor-tabs .elementor-tab-title::before, body.page-id-704 #main .elementor-tabs .elementor-tab-title::after, body.page-id-704 #main .elementor-tabs .elementor-tab-content {
  border: none;
}

/* Tabs end */

/* Krugerrands page */

.page-id-457 .woocommerce ul.products .product {
  border-radius: 8px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.25);
  padding: 0 10px 20px;
  margin: 0 10px 30px;
  width: 25%;
  max-width: 22.5%;
}

/* Krugerrands page end */

/* Online Shop */

/* Archive */

.products.oceanwp-row.clr.grid {
  display: inline-block;
  width: 100%;
}

.post-type-archive-product .products>li {
  border-radius: 8px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.25);
  padding: 0 10px;
  margin: 0 10px 30px;
  width: 30%;
  max-width: 30%;
}

.entry .title h2 {
  margin: 0;
}

.my-read-more {
  display: inline-block;
  background-color: transparent;
  color: var(--site-main-black);
  border: 1px solid var(--site-main-black);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}

.my-read-more:hover {
  display: inline-block;
  background-color: var(--site-main-black);
  color: var(--site-main-gold);
  border: 1px solid var(--site-main-black);
}

.my-read-more, .button.product_type_simple.add_to_cart_button.ajax_add_to_cart {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  padding: 12px 20px !important;
  margin: 5px;
}

.woocommerce .products .product .button.added {
  display: inline-block !important;
}

.products .entry .product-inner .woo-entry-inner .btn-wrap .cart {
	display: flex;
  justify-content: space-between;
	align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.products .entry .product-inner .woo-entry-inner .btn-wrap .cart .add_to_cart_button {
  margin: 0px;
}

.products .entry .product-inner .woo-entry-inner .btn-wrap .cart .added_to_cart {
  margin: 0px auto;
}

.products .entry .product-inner .woo-entry-inner .btn-wrap .cart .add_to_cart_button:hover {
  background-color: transparent !important;
  border: 1px solid var(--site-main-gold);
  color: var(--site-main-gold);
}

/* Archive sidebar */

.content-left-sidebar .widget-area {
  background: #b9997429;
  padding: 30px !important;
}

#right-sidebar #block-2 .wp-block-heading {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

#right-sidebar #block-2, #right-sidebar #block-4, #right-sidebar #block-6, #right-sidebar #block-8 {
  margin-bottom: 20px;
}

#right-sidebar #block-3 .wp-block-heading, #right-sidebar #block-7 .wp-block-heading, #right-sidebar #block-9 .wp-block-heading {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
}

#right-sidebar #block-3, #right-sidebar #block-7, #right-sidebar #block-9 {
  margin-bottom: 10px;
}

#right-sidebar #block-4 hr, #right-sidebar #block-6 hr, #right-sidebar #block-8 hr {
  width: 16px;
  margin: 0;
  color: var(--site-main-gold);
}

#right-sidebar #bapf_1 label {
  color: var(--site-main-black);
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}

#right-sidebar #bapf_1 label:hover {
  font-weight: 700;
}

#right-sidebar #bapf_1 .checked label {
  font-weight: 700;
}

.bapf_slidr_main.ui-widget-content, .berocket_filter_price_slider.ui-widget-content {
  background: var(--site-main-black);
}

.bapf_slidr_main.ui-widget-content .ui-slider-range {
  background: var(--site-main-gold);
}

.bapf_slidr_main.ui-widget-content .ui-slider-handle, .berocket_filter_price_slider.ui-widget-content .ui-slider-handle, .slide.default .bapf_slidr_main .ui-state-default, .slide.default .bapf_slidr_main .ui-widget-header .ui-state-default, .slide.default .bapf_slidr_main.ui-widget-content .ui-state-default, .slide.default .berocket_filter_price_slider .ui-state-default, .slide.default .berocket_filter_price_slider .ui-widget-header .ui-state-default, .slide.default .berocket_filter_price_slider.ui-widget-content .ui-state-default {
  background: var(--site-main-black);
}

#block-5 {
  margin: 0;
}

#block-5 label {
  display: none;
}

#block-5 #wp-block-search__input-1 {
  border-color: var(--site-main-black);
  color: var(--site-main-black);
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  margin-right: 10px;
}

#block-5 .wp-block-search__button.has-text-color.has-black-color.wp-element-button {
  color: var(--site-main-black);
  background: var(--site-main-gold);
  border: var(--site-main-gold);
  letter-spacing: 0;
  text-transform: capitalize;
  font-size: 14px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  font-weight: 400;
}

#block-5 .wp-block-search__button.has-text-color.has-black-color.wp-element-button:hover {
  background-color: var(--site-main-white) !important;
  color: var(--site-main-gold) !important;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.bapf_sfilter.bapf_button_berocket .bapf_button {
  font-size: 14px;
  padding: 20px;
  margin-top: 20px;
  line-height: 14px;
  font-weight: 300;
  color: var(--site-main-black);
  text-transform: capitalize;
  text-align: left;
  background-color: transparent;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}

.bapf_sfilter.bapf_button_berocket .bapf_button:hover {
  background-color: var(--site-main-white) !important;
  color: var(--site-main-gold) !important;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

/* Single */

.site-breadcrumbs ol li {
  font-style: italic;
}

.site-breadcrumbs ol li .breadcrumb-sep {
  color: var(--site-main-black);
}

.single .products.oceanwp-row.clr.grid {
  display: inherit;
}

.single .products.oceanwp-row.clr.grid .entry {
  border-radius: 8px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.25);
  margin: 10px;
  width: 23%;
  padding: 10px;
}

.quantity .qty, .quantity .minus, .quantity .plus {
  border-color: var(--site-main-black);
  width: 42px;
  min-height: 42px;
  line-height: 40px;
}

.woocommerce form input[type="number"] {
  min-height: 42px;
  line-height: 40px;
}

.single_add_to_cart_button.button.alt {
  letter-spacing: 0;
  padding: 12px 20px;
  text-transform: unset !important;
}

.added_to_cart.wc-forward {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  padding: 12px 20px !important;
  margin: 5px;
}

.single .entry-title {
  padding: 0 0 20px;
  margin: 0 !important;
  border-bottom: none;
  letter-spacing: 0;
}

.woocommerce div.product p.price {
  margin: 0;
}

.woocommerce div.product form.cart {
  border: none;
  margin-top: 0;
}

.product_meta {
  border-top: none;
  padding: 10px 0 30px;
  color: var(--site-main-black);
  margin-top: 0;
  border-color: var(--site-main-gold);
  font-style: oblique;
}

.woocommerce div.product div.woocommerce-product-details__short-description {
  margin-top: 30px;
}

.woocommerce-product-details__short-description td {
  border: none;
  padding: 10px 0;
}

.related.products h2:first-child {
  display: none;
}

.related.products h2 {
  text-align: center;
  color: var(--site-main-gold);
  font-size: 30px;
  font-weight: 700;
}

.woocommerce div.product .summary .added_to_cart {
  font-weight: 400;
  background-color: transparent;
  border-color: var(--site-main-black);
  color: var(--site-main-black);
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  letter-spacing: 0;
  margin-top: 10px;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  display: inline-block;
  padding: 12px 20px !important;
  font-size: 15px;
  text-transform: capitalize;
}

.woocommerce div.product .summary .added_to_cart:hover {
  background-color: var(--site-main-black);
  border-color: var(--site-main-black);
  color: var(--site-main-gold);
}

/* Cart menu hover */

.widget_shopping_cart ul.cart_list li .owp-grid-wrap .owp-grid.thumbnail {
  border-color: var(--site-main-black);
}

.widget_shopping_cart .total {
  background: var(--site-main-white);
  border-color: var(--site-main-black);
}

.widget_shopping_cart .total strong {
  color: var(--site-main-black) !important;
}

.woocommerce-mini-cart__buttons.buttons .button.wc-forward {
  font-weight: 400;
  background-color: transparent;
  border-color: var(--site-main-black);
  color: var(--site-main-black);
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  letter-spacing: 0;
}

.woocommerce-mini-cart__buttons.buttons .button.wc-forward:hover {
  background-color: var(--site-main-black);
  border-color: var(--site-main-black) !important;
  color: var(--site-main-gold);
}

.woocommerce-mini-cart__buttons.buttons .button.checkout.wc-forward {
  background-color: var(--site-main-gold);
  border-color: var(--site-main-gold);
  color: var(--site-main-white);
}

.woocommerce-mini-cart__buttons.buttons .button.checkout.wc-forward:hover {
  background-color: var(--site-main-black);
  border-color: var(--site-main-black) !important;
  color: var(--site-main-gold);
}

/* Cart */

.woocommerce-cart #main {
  max-width: 1200px;
  margin: 50px auto;
  padding: 10px;
}

/* .wc-block-cart-items__header span, .wp-block-woocommerce-cart-order-summary-heading-block.wc-block-cart__totals-title {
  font-size: 20px !important;
}

.is-large.wc-block-cart .wc-block-cart-items td {
  border-top: 1px solid var(--site-main-black) !important;
  padding: 15px 0 !important;
}

.is-large.wc-block-cart .wc-block-cart-items {
  border-bottom: 1px solid var(--site-main-black) !important;
}

.wc-block-components-sidebar.wc-block-cart__sidebar.wp-block-woocommerce-cart-totals-block .wc-block-components-totals-wrapper {
  border-top: 1px solid var(--site-main-black);
  padding: 8px 0;
}

.wc-block-components-sidebar.wc-block-cart__sidebar.wp-block-woocommerce-cart-totals-block .wc-block-components-totals-wrapper:empty {
  border: none !important;
}

.components-button.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained {
  font-weight: 400;
  background-color: transparent;
  border-color: var(--site-main-black);
  color: var(--site-main-black);
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  letter-spacing: 0;
  margin-top: 10px;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}

.components-button.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained:hover {
  background-color: var(--site-main-black);
  border-color: var(--site-main-black);
  color: var(--site-main-gold);
} */

.theme-button, input[type="submit"], button[type="submit"], button, body div.wpforms-container-full .wpforms-form input[type="submit"], body div.wpforms-container-full .wpforms-form button[type="submit"], body div.wpforms-container-full .wpforms-form .wpforms-page-button {
  background-color: var(--site-main-gold) !important;
}

/* Checkout */

.woocommerce-checkout #main {
  max-width: 1200px;
  margin: 50px auto;
  padding: 10px;
}

.woocommerce-checkout .woocommerce .checkout > #customer_details, .woocommerce-checkout .woocommerce .checkout > #order_review_heading, .woocommerce-checkout .woocommerce .checkout > #order_review {
  width: 100%;
}



/* .wc-block-components-checkout-step--with-step-number .wc-block-components-checkout-step__container::after {
  border-left: 1px solid var(--site-main-black) !important;
}

.components-button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained {
  font-weight: 400;
  background-color: transparent;
  border-color: var(--site-main-black);
  color: var(--site-main-black);
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  letter-spacing: 0;
  margin-top: 10px;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}

.components-button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained:hover {
  background-color: var(--site-main-black);
  border-color: var(--site-main-black);
  color: var(--site-main-gold);
}

.wc-block-components-product-metadata {
  display: none;
}

.is-large .wc-block-checkout__actions {
  border-top: 1px solid var(--site-main-black) !important;
}

.wc-block-components-totals-wrapper {
  border-top: 1px solid var(--site-main-black) !important;
}

.wc-block-components-panel__button[aria-expanded="true"] {
  padding: 15px 24px 15px 24px !important;
}

.wc-block-components-order-summary .wc-block-components-panel__button {
  padding: 15px 24px 15px 24px !important;
}

.wc-block-components-title.wc-block-components-checkout-step__title {
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
}

.wc-block-components-checkout-step__description {
  font-size: 16px !important;
} */

.woocommerce .woocommerce-checkout .select2-container--default .select2-selection--single, .page-id-746 form textarea {
  border: 1px solid #000;
}

.page-id-746 form input {
  padding: 0 10px !important;
  border: 1px solid var(--site-main-black);
}

.page-id-746 #ship-to-different-address-checkbox {
  padding: 0 !important;
}

.form-row.place-order {
  padding: 5px 1.4em !important;
}

.woocommerce-checkout #place_order {
  background-color: var(--site-main-black);
  font-size: 16px !important;
  font-weight: 400;
  letter-spacing: 0;
}

.woocommerce-checkout #place_order:hover {
  background-color: var(--site-main-gold);
}

/* Account */

.woocommerce-account #main {
  max-width: 1200px;
  margin: 50px auto;
  padding: 10px;
}

/* Online Shop end */

/* Pricelist */

.page-id-84 .my-last-update .wpDataTables, .page-id-84 .my-last-update .wpDataTable {
  margin: 0;
}

.page-id-84 .my-last-update .wpdt-c .wpDataTables th, .page-id-84 tfoot {
  display: none;
}

.powered_by_link.d-block.m-l-10.m-t-10.m-b-10 {
  display: none !important;
}

.page-id-84 .my-last-update .wpdt-c .wpDataTables td {
  border: none !important;
  text-align: center;
  padding: 0 !important;
}

.wdtheader {
  border: 0 !important;
  border-top: 1px solid #fff !important;
}

.page-id-84 .wpdt-c .wpDataTables th {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}

body.page .wpdt-c .wpDataTables td, body.page .wpdt-c .wpDataTables th, body.page .wpdt-c .wpDataTablesWrapper table.wpDataTable tr.odd td, body.single .wpdt-c .wpDataTables td, body.single .wpdt-c .wpDataTables th, body.single .wpdt-c .wpDataTablesWrapper table.wpDataTable tr.odd td {
  background: transparent !important;
  color: var(--site-main-white);
  border-left: none !important;
  border-right: none !important;
  padding: 20px 0;
  text-transform: uppercase;
}

.page-id-84 .wpdt-c .wpDataTables th, .numdata.float.column-buying-price, .numdata.float.column-selling-price, .numdata.float.column-price {
  padding: 20px 20px !important;
}

#table_9 .numdata.float.column-price, #table_10 .numdata.float.column-price, #table_11 .numdata.float.column-price, #table_12 .numdata.float.column-price, #table_13 .numdata.float.column-price {
  padding: 0 0 0 2px !important;
}

.page-id-84 .wpdt-c .wpDataTables th:first-child {
  border-right: 1px solid var(--site-main-white) !important;
  padding: 20px 0 !important;
}

.numdata.float.column-buying-price, .numdata.float.column-purity, .column-price, .column-size {
  width: 50% !important;
}

.column-denomination, #table_2 .column-buying-price, .column-selling-price {
  width: 33.333333% !important;
}

.page-id-84 .wpdt-c .wpDataTables #table_2 th:last-child {
  border-left: 1px solid var(--site-main-white) !important;
}

.my-indicators thead, .my-indicators .dt-buttons {
  display: none;
}

.my-indicators td, .my-indicators wpDataTables {
  padding: 0 !important;
  border: none !important;
}

.my-indicators .wpdt-c {
  display: block;
  width: fit-content;
}

.powered_by_link {
  display: none !important;
}

/* Pricelist end */

/* Graph */

#wpDataChart_2 text {
  color: #fff !important;
  fill: #FFF !important;
}

#wpDataChart_2 .highcharts-tooltip text {
  color: #000 !important;
  fill: #000 !important;
}

/* Graph end */

/* Mobile Styles */

@media only screen and (min-width: 960px) {
  .content-left-sidebar .content-area {
    width: 72% !important;
  }
}

@media screen and (max-width: 767px) {

  /* Home */

  .col-md-4.latest-blog-article {
    width: 100%;
    margin-bottom: 30px;
  }

  /* Home end */

  /* Tabs */

  body.page-id-704 #main .elementor-tabs .elementor-tab-title {
    margin: 0 auto 10px;
  }

  .elementor-tabs .elementor-tabs-content-wrapper {
    border: none !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    -webkit-box-pack: center;
    list-style: none;
  }

  .elementor-tab-title.elementor-tab-mobile-title {
    order: 1;
  }
  
  .elementor-tab-content {
    order: 2;
  }

  /* Tabs end */

  /* Krugerrands */

  .woocommerce ul.products {
    margin: 0;
  }

  .page-id-457 .woocommerce ul.products .product {
    margin: 0 0 30px;
    max-width: 100%;
  }

  /* Krugerrands end */

  /* Shop */

  .post-type-archive-product .products>li {
    width: 100% !important;
    max-width: 100%;
  }

  .post-type-archive-product .products>li {
    margin: 30px auto 20px;
    width: 100%;
    max-width: 100%;
  }

  /* Shop end */

  /* Pricelist */

  .page-id-84 .wpdt-c .wpDataTables th {
    font-size: 14px;
  }

  /* Pricelist end */

  /* Shop */

  .woocommerce ul.product_list_widget li:first-child {
    border-color: var(--site-main-black) !important;
  }

  .single .products.oceanwp-row.clr.grid .entry {
    margin: 20px 0;
  }

  /* Shop end */

  /* FORMS */

  /* Get In Touch (Eat Gold) Form */

  .cust-get-in-touch-form-container .row .col-md-6:first-child {
    margin-bottom: 20px;
  }

  /* Get In Touch (Eat Gold) Form End */

  /* FORMS END */

  /* INSTAGRAM */

  #myIG .e-con-inner {
	  height: 100%;
	  display: block;
	}

  /* INSTAGRAM END */
}

/* iPad Styles */
@media screen and (max-width: 850px) and (min-width: 780px) {

  /* WOOCOMMERCE */

  /* Archive */

  .products .entry .product-inner .woo-entry-inner .btn-wrap .cart {
    justify-content: center;
    margin-top: 10px;
  }

  /* Archive End */

  /* WOOCOMMERCE END */

  /* INSTAGRAM */

  .instagram-gallery-feed .instagram-gallery-list .instagram-gallery-item {
    width: 25% !important;
    min-width: 25% !important;
  }

  /* INSTAGRAM END */
}

/* ANIMATIONS */

.cust-animated {
  animation-duration: 1s;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both
}

.cust-animation-animatedFadeInUp {
  opacity: 0
}

.cust-anim-fadeInUp {
  opacity: 0;
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp;
}

@keyframes fadeInUp {
  from {
    transform: translate3d(0, 40px, 0)
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
}

@-webkit-keyframes fadeInUp {
  from {
    transform: translate3d(0, 40px, 0)
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
}

/* ANIMATIONS END */