/*
Theme Name: Base Example Theme
Theme URI: https://techsdiv.nl
Author: WebTechs
Author URI: https://www.webtechs.nl/
Description: Theme is made by Webtechs.
Version: 1.0
Text Domain: webtechs
*/
/* TODO: Fill in the correct information above */
/* TODO: Vervang de screenshot.png */
@font-face {
  font-family: Prata;
  src: url("./webfonts/Prata-Regular.ttf");
}
/* This file is made for all your variables, think of colors you will use, basic spacing etc. */
/* EXAMPLE:
$text_color: #333;
$red: #FF0000;

$text_font: "Open Sans", serif;
$title_font: "Meriweather", sans-serif;
*/
.border-gold {
  border-color: #dbbe67 !important;
}

#nav-bar-overlap {
  position: relative;
  height: 6vh;
}

.navbar .navbar-brand {
  transition: width linear 0.4s;
}
.navbar .navbar-brand .no-transition-image {
  height: 10vh;
}
.navbar .navbar-brand .transition-image {
  height: 7vh;
}
@media screen and (max-width: 768px) {
  .navbar .navbar-brand .transition-image {
    height: 10vh;
  }
}
.navbar .nav-link {
  color: white;
}
.navbar .nav-link:hover {
  text-decoration: underline 2px #dbbe67;
}
.navbar .nav-link.active {
  color: #dbbe67;
  text-decoration: none;
}
@media (max-width: 992px) {
  .navbar .cart-contents {
    position: absolute;
    top: 38px;
    right: 75px;
    display: unset !important;
  }
}

a, a:hover, .overlay, img, .form-control, .form-control:hover, button {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

body {
  font-size: 16px;
  color: #fff;
  font-family: "Prata", "sans-serif";
}

p {
  font-size: 16px;
}

h1 {
  font-size: 50px;
  line-height: 59px;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 33px;
    line-height: 45px;
  }
}

h2 {
  font-size: 36px;
  line-height: 46px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 28px;
    line-height: 35px;
  }
}

h3 {
  font-size: 27px;
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 23px;
  }
}

h3, h4 {
  margin: 0 0 10px;
  font-weight: 400;
  line-height: 1.4;
  color: #303133;
  letter-spacing: -0.01em;
}

h4 {
  font-size: 23px;
}
@media screen and (max-width: 768px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  h5 {
    font-size: 18px;
  }
}

.text-gold {
  color: #dbbe67;
}

.bg-gold {
  background-color: #dbbe67;
}

.bg-gradient {
  background: #343a40 !important;
  background: linear-gradient(130deg, #343a40 65%, #dbbe67 130%) !important;
}

.bg-gradient-reverted {
  background: #dbbe67;
  background: linear-gradient(160deg, #dbbe67 -30%, #343a40 35%);
}

.bg-gradient-test {
  background: #dbbe67;
  background: linear-gradient(160deg, #dbbe67 -70%, #343a40 40%, #343a40 60%, #dbbe67 170%);
}

.btn, .woocommerce .button, #searchsubmit, #nf-field-4_1 {
  font-family: "work sans", sans-serif !important;
  letter-spacing: 0 !important;
  font-size: 12px !important;
  padding: 0 25px !important;
  border-radius: 0 !important;
  line-height: 45px !important;
  display: inline-block !important;
  text-transform: uppercase !important;
  outline: 0 !important;
  border: 0 !important;
}
.btn:focus, .woocommerce .button:focus, #searchsubmit:focus, #nf-field-4_1:focus {
  outline: 0 !important;
  border: 0 !important;
}

.btn-primary, .woocommerce .button {
  color: #343a40 !important;
  font-weight: 600 !important;
  position: relative !important;
  z-index: 1 !important;
  background: #dbbe67 !important;
  background: linear-gradient(to left, #dbbe67 50%, #343a40 50%) right !important;
  background-size: 200% !important;
  transition: all 0.3s ease-out !important;
}
.btn-primary:hover, .woocommerce .button:hover {
  background-position: left !important;
  color: #dbbe67 !important;
}

.btn-secondary, #searchsubmit, #nf-field-4_1 {
  color: #fff !important;
  font-weight: 600 !important;
  position: relative !important;
  z-index: 1 !important;
  background: #343a40 !important;
  background: linear-gradient(to left, #343a40 50%, #dbbe67 50%) right !important;
  background-size: 200% !important;
  transition: all 0.3s ease-out !important;
  border: 2px solid #dbbe67 !important;
}
.btn-secondary:hover, #searchsubmit:hover, #nf-field-4_1:hover {
  background-position: left !important;
  color: #343a40 !important;
  border: 2px solid #343a40 !important;
}

#searchsubmit, #nf-field-4_1 {
  border: 2px solid #343a40 !important;
}

input {
  padding: 10px 0 10px 5px;
}

/* SECTIONS */
section:not(section:first-of-type), section.padding {
  overflow: hidden;
  padding: 4rem 0;
}
section:not(section:first-of-type).section-sm, section.padding.section-sm {
  padding: 2rem 0;
}
section:not(section:first-of-type).section-dark, section.padding.section-dark {
  color: #fff;
  background-color: #333;
}
section:not(section:first-of-type).section-grey, section.padding.section-grey {
  background-color: #f9f9f9;
}

.slider_section {
  padding: 0;
  transition: padding-top linear 0.1s;
}
.slider_section .main-slider .owl-dots {
  width: 100%;
  display: block;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 25px;
}
.slider_section ul {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
}
.slider_section .main_slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 95vh;
  position: relative;
}
@media screen and (max-width: 768px) {
  .slider_section .main_slide {
    height: 100vh;
  }
}
.slider_section .main_slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.slider_section .owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.slider_section .slider_content p:first-of-type {
  font-size: 17px;
  margin-bottom: 20px;
  font-weight: 400;
}
.slider_section .slider_content p {
  margin-bottom: 20px;
  color: #ddd;
}
.slider_section .main_slider .owl-nav button {
  color: #fff;
  width: 60px;
  height: 100px;
  font-size: 30px;
  text-align: center;
  line-height: 100px;
  position: absolute;
  top: calc(50% - 60px);
  opacity: 0.55;
  transition: all 0.5s ease-in-out;
}
.slider_section .main_slider .owl-nav button:hover {
  opacity: 1;
}
.slider_section .main_slider .owl-nav button.owl-next {
  right: 0;
}
.slider_section .main_slider .owl-nav button.owl-prev {
  left: 0;
}
.slider_section .main-slider .owl-nav .owl-next {
  right: 1px;
}
.slider_section .main-slider .owl-nav .owl-prev {
  left: 1px;
}
@media screen and (max-width: 667px) {
  .slider_section .main-slider .owl-nav {
    display: none !important;
  }
}
.slider_section .main_slider .owl-dots {
  width: 100%;
  display: block;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 25px;
}
.slider_section .main_slider .owl-dots .owl-dot {
  background-color: rgba(255, 255, 255, 0.4);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  display: inline-block;
  margin: 0 3px;
  transition: all 0.5s ease-in-out;
}
.slider_section .main_slider .owl-dots .owl-dot.active {
  background-color: white;
  -webkit-transform: scale(1.6);
  transform: scale(1.6);
  transition: all 0.5s ease-in-out;
}

.slider_section.low .main_slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 50vh;
  position: relative;
}
@media screen and (max-width: 768px) {
  .slider_section.low .main_slide {
    height: 100vh;
  }
}
@media screen and (max-width: 768px) {
  .slider_section.low .winkel {
    height: 35vh;
  }
}

.intro_section .intro-icon {
  width: 25%;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .intro_section .intro-icon {
    width: 50%;
  }
}
.intro_section .intro_images img {
  width: 60%;
  border-radius: 5px;
  box-shadow: 0px 16px 28px 0px rgba(0, 0, 0, 0.2);
}
.intro_section .model_1 {
  margin: 0 0 0 245px;
}
.intro_section .model_2 {
  margin: -35% 0 0 15px;
}

.services_section .card {
  min-height: 450px;
  border-radius: 5px !important;
  box-shadow: 0px 16px 28px 0px rgba(0, 0, 0, 0.2) !important;
}
.services_section .card h4 {
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  .services_section .card h4 {
    font-size: 19px;
  }
}
.services_section .card .card_icon img {
  width: 75px;
  height: 75px;
}

.page_section {
  padding-bottom: 0;
  transition: padding-top linear 0.1s;
}
.page_section .main_slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 50vh;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page_section .main_slide {
    height: 35vh;
  }
}
.page_section .main_slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.page_section .owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.page_section .slider_content span {
  font-size: 17px;
  margin-bottom: 20px;
  font-weight: 400;
}
.page_section .slider_content p {
  margin-bottom: 20px;
  color: #ddd;
}
.page_section .main_slider .owl-nav button {
  color: #fff;
  width: 60px;
  height: 100px;
  font-size: 30px;
  text-align: center;
  line-height: 100px;
  position: absolute;
  top: calc(50% - 60px);
  opacity: 0.55;
  transition: all 0.5s ease-in-out;
}
.page_section .main_slider .owl-nav button:hover {
  opacity: 1;
}
.page_section .main_slider .owl-nav button.owl-next {
  right: 0;
}
.page_section .main_slider .owl-nav button.owl-prev {
  left: 0;
}
.page_section .main-slider .owl-nav .owl-next {
  right: 1px;
}
.page_section .main-slider .owl-nav .owl-prev {
  left: 1px;
}
@media screen and (max-width: 667px) {
  .page_section .main-slider .owl-nav {
    display: none !important;
  }
}
.page_section .main_slider .owl-dots {
  width: 100%;
  display: block;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 25px;
}
.page_section .main_slider .owl-dots .owl-dot {
  background-color: rgba(255, 255, 255, 0.4);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  display: inline-block;
  margin: 0 3px;
  transition: all 0.5s ease-in-out;
}
.page_section .main_slider .owl-dots .owl-dot.active {
  background-color: white;
  -webkit-transform: scale(1.6);
  transform: scale(1.6);
  transition: all 0.5s ease-in-out;
}

.card-img-top {
  object-position: center;
  object-fit: cover;
  height: 250px !important;
}

.checked {
  color: #dbbe67;
}

.text-section h3 {
  font-size: 22px;
}

.products-section .products-section-title {
  font-size: 22px;
}

/* Tarieven */
.pricing_section .price_row {
  margin-bottom: 40px;
  position: relative;
}
.pricing_section .price_row h3 {
  display: inline-block;
  padding: 10px 15px;
}
.pricing_section .price_row h4 {
  position: relative;
  font-size: 18px;
  letter-spacing: 0.5px;
  margin: 0 0 6px;
  overflow: hidden;
}
.pricing_section .price_row small {
  opacity: 0.7;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .pricing_section .price_row small {
    font-size: 12px;
  }
}
.pricing_section .price_row .price {
  font-size: 18px;
  color: #dbbe67;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .pricing_section .price_row .price {
    font-size: 18px;
  }
}

/* BLOCKS */
.block {
  padding: 2rem;
}
.block.block-grey {
  background-color: #ececec;
}

/* BLOG */
.blog {
  display: block;
  color: #333;
  background-color: #fff;
  height: 100%;
  text-decoration: none;
}
.blog .blog-photo {
  height: 13rem;
  overflow: hidden;
}
.blog .blog-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.5s ease;
}
.blog .blog-content {
  padding: 2rem;
}
.blog:hover {
  text-decoration: none;
  color: #333;
}
.blog:hover .blog-photo img {
  transform: scale(1.1);
}

/* CONTACT PAGE */
#map_canvas {
  height: 30rem;
}

/* FOOTER */
footer {
  padding: 4rem 0;
}
footer h5 {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  footer h5 {
    margin-bottom: 10px;
    margin-top: 10px;
  }
}
footer a {
  text-decoration: none;
  color: white;
}
footer a:hover {
  color: #dbbe67;
  text-decoration: underline;
}
footer a:active {
  color: #dbbe67;
  text-decoration: underline;
}
footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
footer hr {
  opacity: 1 !important;
  height: 2px;
}
footer .footer-image {
  width: 65%;
}

/* Socials */
.socials a {
  width: 43px;
  height: 43px;
  font-size: 16px;
  color: white;
  border: 2px solid white;
  transition: 0.2s all ease;
}
.socials a:hover {
  color: #343a40 !important;
  background-color: white;
}

footer .socials a:hover {
  color: #dbbe67 !important;
  background-color: #343a40;
  border: 2px solid #dbbe67;
  text-decoration: none;
}

.contact-section {
  padding: 4rem 0;
}
.contact-section a {
  color: #343a40 !important;
  text-decoration: none;
}
.contact-section a:hover {
  text-decoration: underline;
}

.contact-section .socials a {
  color: #343a40 !important;
  background-color: white;
  border: 2px solid #343a40;
  text-decoration: none;
}
.contact-section .socials a:hover {
  color: #dbbe67 !important;
  background-color: #343a40;
  border: 2px solid #dbbe67;
  text-decoration: none;
}

/* Home product*/
.home-product-link {
  text-decoration: none;
}

.home-product {
  position: relative;
  transition: all ease-in-out 0.4s;
}
.home-product .product_image .price {
  position: absolute;
  top: 10px;
  left: 10px;
  font-weight: 600;
  color: #dbbe67;
  font-family: "work sans";
  z-index: 999;
}
.home-product .product_image .price ins {
  text-decoration: none !important;
}
.home-product .product_image .price:before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  height: calc(100% + 6px);
  width: calc(100% + 6px);
  background-color: #343a40;
  opacity: 0.8;
  z-index: -1;
}
.home-product:hover, .home-product:focus {
  box-shadow: 0px 16px 28px 0px rgba(0, 0, 0, 0.2) !important;
  transform: scale(1.02);
}
.home-product:hover::after, .home-product:focus::after {
  opacity: 1;
}
.home-product:hover {
  cursor: pointer;
}

.ribbon {
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: absolute;
}

.ribbon::before,
.ribbon::after {
  position: absolute;
  z-index: -1;
  content: "";
  display: block;
  border: 5px solid #dbbe67;
}

.ribbon span {
  position: absolute;
  display: block;
  width: 225px;
  padding: 15px 0;
  background-color: #dbbe67;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: #343a40;
  font: 400 17px/1 "Prata", sans-serif;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  text-align: center;
}

.ribbon-top-right {
  top: -10px;
  right: -10px;
}

.ribbon-top-right::before,
.ribbon-top-right::after {
  border-top-color: transparent;
  border-right-color: transparent;
}

.ribbon-top-right::before {
  top: 0;
  left: 0;
}

.ribbon-top-right::after {
  bottom: 0;
  right: 0;
}

.ribbon-top-right span {
  left: -25px;
  top: 30px;
  transform: rotate(45deg);
}

.ribbon-top-left {
  top: -10px;
  left: -10px;
  z-index: 1;
}

.ribbon-top-left::before,
.ribbon-top-left::after {
  border-top-color: transparent;
  border-left-color: transparent;
}

.ribbon-top-left::before {
  top: 0;
  right: 0;
}

.ribbon-top-left::after {
  bottom: 0;
  left: 0;
}

.ribbon-top-left span {
  right: -25px;
  top: 30px;
  transform: rotate(-45deg);
}

/*Single product*/
.onsale {
  background-color: #dbbe67;
}

/* SCREEN READER */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

@media screen and (min-width: 576px) {
  #shop-filter-dropdown {
    width: 200px;
  }
}
#shop-filter-dropdown .dropdown-header {
  color: #dbbe67 !important;
}

#shop-filter-dropdown li a {
  color: white;
}

#shop-filter-dropdown li a:hover {
  color: black;
  background-color: #dbbe67;
  border-radius: 15px;
}

.remove-filter-icon:hover {
  cursor: pointer;
}

.chosen-filter {
  border-radius: 15px !important;
}

.chosen-filter:hover {
  border: 1px solid #dbbe67 !important;
}
.chosen-filter:hover .remove-filter-icon {
  color: #dbbe67 !important;
}

.shake {
  animation: shake 11s;
  animation-iteration-count: infinite;
}

@keyframes shake {
  0% {
    transform: translate(0, 0) rotate(-4deg);
  }
  50% {
    transform: translate(0, 0) rotate(5deg);
  }
  100% {
    transform: translate(0, 0) rotate(-4deg);
  }
}
.woocommerce ul#shipping_method li input {
  margin: 8px 0.4375em 0 0 !important;
}

.single_add_to_cart_button {
  width: 100%;
}

.free-shipping i {
  margin: 0 0.8rem 0 0;
}

.coupon {
  display: flex;
}

.woocommerce #respond input#submit.disabled, .woocommerce #respond input#submit:disabled, .woocommerce #respond input#submit:disabled[disabled], .woocommerce a.button.disabled, .woocommerce a.button:disabled, .woocommerce a.button:disabled[disabled], .woocommerce button.button.disabled, .woocommerce button.button:disabled, .woocommerce button.button:disabled[disabled], .woocommerce input.button.disabled, .woocommerce input.button:disabled, .woocommerce input.button:disabled[disabled] {
  border: 1px solid black;
  color: black !important;
  background-color: transparent !important;
}

#pwgc-redeem-gift-card-container {
  display: flex;
}
#pwgc-redeem-gift-card-container label {
  display: none;
}

#pwgc-redeem-gift-card-container {
  position: relative;
}
#pwgc-redeem-gift-card-container:before {
  content: "\f06b";
}
#pwgc-redeem-gift-card-container input[type=text] {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem 0.375rem 51px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
#pwgc-redeem-gift-card-container input[type=text]:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.kortingscode-box {
  margin-bottom: 25px;
}
.kortingscode-box:before {
  content: "\f02b";
}

.kortingscode-box:before, #pwgc-redeem-gift-card-container:before {
  top: 14px;
  left: 18px;
  position: absolute;
  font-weight: 300;
  font-family: "Font Awesome 5 Pro";
}
.kortingscode-box input[type=text], #pwgc-redeem-gift-card-container input[type=text] {
  padding-left: 51px;
}

.coupon-button, #pwgc-redeem-gift-card-container .button {
  padding: 1.1rem 1.5rem !important;
  color: black !important;
  font-weight: 400 !important;
  line-height: 1;
  border: 1px solid black;
  border-radius: 3px !important;
  margin-left: 15px;
  background-color: white !important;
}
.coupon-button:hover, #pwgc-redeem-gift-card-container .button:hover {
  color: white !important;
  background-color: black !important;
}

.woocommerce table.shop_table th, .woocommerce table.shop_table td {
  padding: 1.25rem 0.75rem !important;
}
.woocommerce table.shop_table .product-name a {
  color: black;
}
.woocommerce table.shop_table .woocommerce-Price-amount {
  float: unset;
  text-align: left;
  color: unset;
  font-size: 1rem;
  font-weight: 400;
}
.woocommerce table.shop_table .quantity .qty {
  height: 3.7rem;
  border: 1px solid black !important;
}

.woocommerce #respond input#submit.disabled, .woocommerce #respond input#submit:disabled, .woocommerce #respond input#submit:disabled[disabled], .woocommerce a.button.disabled, .woocommerce a.button:disabled, .woocommerce a.button:disabled[disabled], .woocommerce button.button.disabled, .woocommerce button.button:disabled, .woocommerce button.button:disabled[disabled], .woocommerce input.button.disabled, .woocommerce input.button:disabled, .woocommerce input.button:disabled[disabled] {
  border: 1px solid black;
  color: black !important;
  box-shadow: unset !important;
  background-color: transparent;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price, .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
  color: #343a40 !important;
  font-size: 1.25em;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price ins, .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price ins {
  text-decoration: none;
}

.woocommerce div.product form.cart div.quantity {
  margin-bottom: 15px;
}
.woocommerce div.product form.cart div.quantity input {
  padding: 3px;
}

.woocommerce button[name=add-to-cart] {
  background-color: #dbbe67 !important;
  color: #343a40 !important;
}

.cta-content p {
  margin-bottom: 0;
}

main {
  padding: 4rem 0 !important;
}
main section {
  padding: 4rem 0;
}

.woocommerce-notices-wrapper {
  color: white;
}
.woocommerce-notices-wrapper .woocommerce-message {
  color: white;
  background-color: #343a40;
  border-top-color: #dbbe67;
}
.woocommerce-notices-wrapper .woocommerce-message:before {
  color: #dbbe67 !important;
}
.woocommerce-notices-wrapper .woocommerce-message .restore-item {
  color: #dbbe67;
}
.woocommerce-notices-wrapper .woocommerce-message a.button {
  background-color: #dbbe67;
  border: 1px solid #dbbe67;
}
.woocommerce-notices-wrapper .woocommerce-message a.button:hover {
  background-color: #343a40;
  color: #dbbe67;
}

.woocommerce table.shop_table th, .woocommerce table.shop_table td {
  padding: 1.25rem 0.75rem !important;
}

.cart-contents {
  position: relative;
}

.cart-contents i {
  font-size: 18px;
  color: #ffffff;
}

.cart-contents:hover {
  text-decoration: underline;
  text-decoration-color: #dbbe67;
}

.cart-contents-count {
  position: absolute;
  top: 15px;
  right: -5px;
  transform: translateY(-105%) translateX(25%);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 12px;
  line-height: 22px;
  height: 22px;
  width: 21px;
  vertical-align: middle;
  text-align: center;
  color: #343a40;
  background: #dbbe67;
  opacity: 0.9;
  border-radius: 50%;
  padding: 1px;
}

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

.shop-product a {
  color: white;
}
.shop-product .button:before {
  content: "\f290";
  margin: 0 0.7rem 0 0;
  font-family: "Font Awesome 5 Pro";
  font-weight: 100;
}
.shop-product .price {
  font-weight: 700;
}
.shop-product .price del {
  opacity: 0.6;
}
.shop-product .price ins {
  text-decoration: none;
}

.related-product .price {
  color: white !important;
  font-weight: 700;
}
.related-product .price del {
  opacity: 0.6;
  text-decoration: none;
}
.related-product .price del span {
  text-decoration: line-through;
}
.related-product .price ins {
  text-decoration: none;
}

.woocommerce-result-count {
  display: none;
}

.woocommerce-ordering {
  display: none;
}

#nf-form-title-1_1 {
  display: none;
}

.nf-form-fields-required {
  display: none;
}

.woocommerce-error {
  background-color: #343a40;
  color: white;
}

.woocommerce-info {
  color: white;
  background-color: #343a40;
  border-top-color: #dbbe67;
}
.woocommerce-info a {
  color: #dbbe67;
  text-decoration: none;
}
.woocommerce-info a:hover {
  text-decoration: underline;
}
.woocommerce-info:before {
  color: #dbbe67 !important;
}

.woocommerce-product-gallery {
  float: none !important;
  width: auto !important;
  display: flex;
}
@media screen and (max-width: 992px) {
  .woocommerce-product-gallery {
    padding-left: 0;
    max-width: 380px;
  }
}
.woocommerce-product-gallery figure {
  width: 100%;
}
.woocommerce-product-gallery ol {
  width: 25% !important;
  display: flex;
  flex-direction: column;
  overflow: unset;
}
.woocommerce-product-gallery ol li {
  width: 100% !important;
}
.woocommerce-product-gallery ol li img {
  border-radius: 10px !important;
}
.woocommerce-product-gallery .flex-viewport {
  width: 100% !important;
  border-radius: 20px !important;
}
.woocommerce-product-gallery .flex-viewport figure {
  width: 1000% !important;
}
.woocommerce-product-gallery img {
  max-width: unset !important;
}
.home-product h4, .home-product h5{
	font-size:18px;
}

/*# sourceMappingURL=style.css.map */
