/*
 Theme Name:     Interly Theme
 Theme URI:      https://www.elegantthemes.com/gallery/divi/
 Description:    Interly Streetwise Theme
 Author:         Elegant Themes
 Author URI:     https://www.elegantthemes.com
 Template:       Divi
 Version:        1.0.0
*/

/* =Theme customization starts here
------------------------------------------------------- */
/*----- CHEATSHEET -----*/
/* Media Queries */
/*
@media only screen and (max-width: 980px) { -- Tabled
@media only screen and (max-width: 480px) { -- Mobile
*/

/* Row + Column systeem */
/*
.rij-block:after {
  content: "";
  display: table;
  clear: both;
}

.block-1 {
  float: left !important;    
  width: 50%!important;
}

.block-2 {
  float: left !important;
  width: 50%!important;
}
*/

@font-face {
  font-family: "Anton-Regular";
  src: url("fonts/Anton-Regular.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DMSans-Regular";
  src: url("fonts/DMSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

h1,
h2,
h3,
h4,
.sd-content-wrapper h5 {
  font-family: "Anton-Regular";
  text-transform: uppercase;
}

@media(max-width:980px) {
  h1 {
    font-size: 50px !important;
  }
}

@media(max-width:768px) {
  h1 {
    font-size: 40px !important;
  }
}


body {
  font-family: "DMSans-Regular";
  overflow-x: hidden;
}

p {
  line-height: 22px;
}

.et_pb_button {
  text-transform: uppercase;
  font-family: "Anton-Regular";
  font-size: 15px;
}

.white {
  color: #ffffff;
}

.blue {
  color: #152e88;
}

.red {
  color: #ffb8b3;
}

.sd-title-has-after h2::after,
.sd-recensie-slide h2::after {
  content: url("/wp-content/uploads/2024/06/Golf-icon.svg");
  position: absolute;
  margin-left: -40px;
  z-index: -1;
}

.entry-title,
.main_title {
  color: #152e88;
}

.et_pb_section_0.et_pb_section,
.et_pb_section_0_tb_body.et_pb_section {
  overflow: visible;
}

.sd-row-overflow-visible {
  overflow: visible !important;
}


/*----- TOPBAR -----*/
.usp-container {
  display: flex;
  justify-content: space-between;
  height: 60px;
  max-height: 60px;
  overflow: hidden;
}

.usp-container .single-usp {
  padding: 0 20px;
  display: flex;
  align-items: center;
  line-height: 15px;
  position: relative;
  overflow: hidden;
  font-weight: 400;
  font-size: 14px;
  color: #383838;
  white-space: nowrap;
  /* Keep text on one line */
  flex-shrink: 1;
  /* Allow items to shrink */
  min-width: 0;
  /* Allow flex items to shrink below content size */
}

.single-usp.zwart {
  color: #000;
}

.single-usp::before {
  content: "";
  background-image: url(/wp-content/uploads/2024/06/Check-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  width: 17px;
  height: 16px;
  min-width: 17px;
  /* Prevent icon from shrinking */
  flex-shrink: 0;
  /* Prevent icon from shrinking */
  margin-right: 10px;
  filter: invert(24%) sepia(68%) saturate(3764%) hue-rotate(228deg) brightness(75%) contrast(112%);
}

.usp-container .single-usp:nth-of-type(1) {
  padding-left: 0;
}

.usp-container .single-usp:nth-last-of-type(1) {
  padding-right: 0;
}

/* Adjust for screens below 1530px */
@media (max-width: 1530px) {
  .usp-container .single-usp {
    font-size: 13px;
    /* Slightly smaller text */
    padding: 0 15px;
    /* Reduce padding */
  }
}

/* Further adjustments for smaller screens */
@media (max-width: 1200px) {
  .usp-container .single-usp {
    font-size: 12px;
    padding: 0 10px;
  }

  .single-usp::before {
    margin-right: 8px;
  }
}

@media (max-width: 980px) {
  .usp-container {
    max-height: 40px;
    overflow: hidden;
    flex-wrap: wrap;
    margin: 0;
  }

  .usp-container .single-usp {
    margin: 10px;
    height: 20px;
    animation: uspbar2row 6s infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    /* Reset font size */
    padding: 0 20px;
    /* Reset padding */
  }

  .usp-container .single-usp:nth-of-type(2) {
    padding-right: 0;
  }

  .usp-container .single-usp:nth-of-type(3) {
    padding-left: 0;
  }
}

@media (max-width: 725px) {
  .usp-container .single-usp {
    width: 100%;
    animation: uspbar1row 12s infinite !important;
    padding: 0;
  }
}

@keyframes uspbar2row {
  0% {
    transform: translateY(0px);
  }

  40% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-40px);
  }

  90% {
    transform: translateY(-40px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes uspbar1row {
  0% {
    transform: translateY(0px);
  }

  20% {
    transform: translateY(0px);
  }

  25% {
    transform: translateY(-40px);
  }

  45% {
    transform: translateY(-40px);
  }

  50% {
    transform: translateY(-80px);
  }

  70% {
    transform: translateY(-80px);
  }

  75% {
    transform: translateY(-120px);
  }

  95% {
    transform: translateY(-120px);
  }

  100% {
    transform: translateY(0px);
  }
}

/*----- HEADER -----*/

div#et-main-area {
  padding-top: 160px;
  /* overflow: hidden; */
  /*Turned this of so position sticky works on the cart-container*/
}

body.admin-bar header.et-l.et-l--header {
  top: 32px;
}

header.et-l.et-l--header.has-scrolled {
  top: -58px;
}

header.et-l.et-l--header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  transition: all 0.4s;
}

header.et-l.et-l--header.has-scrolled .et_pb_row {
  padding-top: 0px !important;
}

.et_pb_menu .et_pb_menu__menu,
.et_pb_menu .et_pb_menu__menu>nav,
.et_pb_menu .et_pb_menu__menu>nav>ul {
  width: 100% !important;
}

ul#menu-main-menu {
  justify-content: space-between;
  align-items: center;
}

/* #sd-header .et_pb_menu__menu {
  width: 100%;
}

.et_pb_menu.et_pb_menu--style-inline_centered_logo .et_pb_menu__menu nav ul li{
  justify-content: space-between !important;
}  */

.et_pb_menu .et_pb_menu__menu>nav>ul {
  display: flex;
}

.et-db #et-boc .et-l #sd-header li:first-of-type {
  order: 1;
}

.et-db #et-boc .et-l #sd-header .sd-nomnom-btn {
  order: 2;
}

.et-db #et-boc .et-l #sd-header .sd-vegan-btn {
  order: 3;
}

.et-db #et-boc .et-l #sd-header .sd-megamenu {
  order: 4;
}

.et-db #et-boc .et-l #sd-header li:nth-last-of-type(7) {
  order: 5;
}

.et-db #et-boc .et-l #sd-header li:nth-last-of-type(5) {
  order: 6;
}

.et-db #et-boc .et-l #sd-header li:nth-last-of-type(6) {
  order: 7;
}

.et-db #et-boc .et-l #sd-header li:nth-last-of-type(4) {
  order: 8;
}

.et-db #et-boc .et-l #sd-header li:nth-last-of-type(3) {
  order: 9;
}

.et-db #et-boc .et-l #sd-header li:nth-last-of-type(2) {
  order: 10;
}

/* .et-db #et-boc .et-l #sd-header .sd-cart-btn { order: 11; } */
li.menu-item.wpmenucart {
  order: 11;
}

li.menu-item.wpmenucart {
  background-color: #FF4A4A;
  border-radius: 50px;
}

li.menu-item.wpmenucart a.wpmenucart-contents {
  color: #ffffff !important;
  height: 50px;
}

.et_pb_menu .et-menu>li {
  padding-left: 8px;
  padding-right: 8px;
}


li.wpmenucartli a.wpmenucart-contents span {
  color: #ffffff;
}

.wpmenucart-custom-icon {
  filter: invert(100%) sepia(99%) saturate(20%) hue-rotate(0deg) brightness(105%) contrast(100%);
  margin-right: 10px;
}

ul.sub-menu.wpmenucart::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 49px;
  background-image: url(/wp-content/uploads/2024/07/wave.webp);
  left: 0px;
  bottom: -30px;
  zoom: 83.5%;
}



/* .fkcart-shortcode-icon-wrap::after {
  content: "Winkelwagen";
} */

.sd-nomnom-btn,
.sd-vegan-btn {
  position: relative;
  list-style: none;
  padding-left: 0;
}

.et_pb_menu--with-logo .et_pb_menu__menu>nav>ul>li>a:after {
  top: 33% !important;
}

.sd-nomnom-btn a::before {
  content: "Nom Nom";
  display: block;
  background-color: #ff4a4a;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  position: absolute;
  font-family: "Anton-Regular";
  font-size: 12px;
  padding: 2px;
  width: 100%;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
  border-radius: 0px;
  white-space: nowrap;
}

.sd-nomnom-btn a::after {
  content: "";
  border-top: 5px solid #ff4a4a;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  position: absolute;
  left: 40%;
  top: 33% !important;
  transform: translateX(-50%);
  transform: translateY(-50%);
}

.sd-vegan-btn a::before {
  content: "Vegan";
  display: block;
  background-color: #6fd344;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  position: absolute;
  font-family: "Anton-Regular";
  font-size: 12px;
  padding: 2px;
  width: 100%;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
  border-radius: 0px;
  white-space: nowrap;
}

.sd-vegan-btn a::after {
  content: "";
  border-top: 5px solid #6fd344;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  position: absolute;
  left: 40%;
  top: 33% !important;
  transform: translateX(-50%);
  transform: translateY(-50%);
}

.et-menu .menu-item-has-children>a:first-child {
  padding-right: 0;
}

.et-menu-nav li.mega-menu>ul>li>a:first-child {
  border-bottom: 0px;
  font-family: "Anton-Regular";
  text-transform: uppercase;
  font-size: 22px;
}

.et-menu .menu-item-has-children>a:first-child:after {
  display: none;
}

.sd-megamenu ul.sub-menu {
  border-radius: 8px;
}

.fkcart-shortcode-icon-wrap::after {
  content: "Winkelwagen";
}

header.et-l.et-l--header .fkcart-shortcode-container .fkcart-shortcode-icon-wrap {
  display: flex;
  align-items: center;
  background: #ff4a4a;
  color: #fff !important;
  font-weight: 600;
  /* height: fit-content; */
  /* display: inline-block; */
  border-radius: 50px;
  padding: 15px 25px;
  transition: all 300ms ease 0ms;
}

header.et-l.et-l--header .sd-cart-btn a:hover {
  background-color: rgba(255, 74, 74, 0.8);
}

header.et-l.et-l--header .sd-cart-btn a::before {
  content: url("/wp-content/uploads/2024/06/Cart-icon.svg");
  filter: invert(99%) sepia(1%) saturate(7483%) hue-rotate(183deg) brightness(124%) contrast(100%);
  margin-right: 8px;
}

/* Sticky mobile menu */
@media screen and (max-width: 980px) {
  .et_fixed_nav #main-header.et-fixed-header {
    position: fixed;
    height: 80px;
    margin-top: -55px;
  }
}

.sd-menu-click {
  overflow: hidden !important;
}

#et_mobile_nav_menu .mobile_nav.opened .mobile_menu_bar::before,
.et_pb_module.et_pb_menu .et_mobile_nav_menu .mobile_nav.opened .mobile_menu_bar::before {
  content: "\4d";
}

ul.et_mobile_menu li.menu-item-has-children .mobile-toggle,
ul.et_mobile_menu li.page_item_has_children .mobile-toggle,
.et-db #et-boc .et-l ul.et_mobile_menu li.menu-item-has-children .mobile-toggle,
.et-db #et-boc .et-l ul.et_mobile_menu li.page_item_has_children .mobile-toggle {
  width: 44px;
  height: 100%;
  padding: 0px !important;
  max-height: 44px;
  border: none;
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 999;
  background-color: transparent;
}

ul.et_mobile_menu>li.menu-item-has-children,
ul.et_mobile_menu>li.page_item_has_children,
ul.et_mobile_menu>li.menu-item-has-children .sub-menu li.menu-item-has-children,
.et-db #et-boc .et-l ul.et_mobile_menu>li.menu-item-has-children,
.et-db #et-boc .et-l ul.et_mobile_menu>li.page_item_has_children,
.et-db #et-boc .et-l ul.et_mobile_menu>li.menu-item-has-children .sub-menu li.menu-item-has-children {
  position: relative;
}

.et_mobile_menu .menu-item-has-children>a,
.et-db #et-boc .et-l .et_mobile_menu .menu-item-has-children>a {
  background-color: transparent;
}

ul.et_mobile_menu .menu-item-has-children .sub-menu,
#main-header ul.et_mobile_menu .menu-item-has-children .sub-menu,
.et-db #et-boc .et-l ul.et_mobile_menu .menu-item-has-children .sub-menu,
.et-db #main-header ul.et_mobile_menu .menu-item-has-children .sub-menu {
  display: none !important;
  visibility: hidden !important;
}

ul.et_mobile_menu .menu-item-has-children .sub-menu.visible,
#main-header ul.et_mobile_menu .menu-item-has-children .sub-menu.visible,
.et-db #et-boc .et-l ul.et_mobile_menu .menu-item-has-children .sub-menu.visible,
.et-db #main-header ul.et_mobile_menu .menu-item-has-children .sub-menu.visible {
  display: block !important;
  visibility: visible !important;
}

ul.et_mobile_menu li.menu-item-has-children .mobile-toggle,
.et-db #et-boc .et-l ul.et_mobile_menu li.menu-item-has-children .mobile-toggle {
  text-align: center;
  opacity: 1;
}

ul.et_mobile_menu li.menu-item-has-children .mobile-toggle::after,
.et-db #et-boc .et-l ul.et_mobile_menu li.menu-item-has-children .mobile-toggle::after {
  top: 10px;
  position: relative;
  font-family: "ETModules";
  content: "\33";
  color: #FF4A4A;
  background: transparent;
  border-radius: 50%;
  padding: 3px;
}

ul.et_mobile_menu li.menu-item-has-children.dt-open>.mobile-toggle::after,
.et-db #et-boc .et-l ul.et_mobile_menu li.menu-item-has-children.dt-open>.mobile-toggle::after {
  content: "\32";
}

.et_pb_menu_0.et_pb_menu .et_mobile_menu:after {
  position: absolute;
  right: 5%;
  margin-left: -20px;
  top: -14px;
  width: 0;
  height: 0;
  content: "";
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #ffffff;
}

.mobile_menu_bar {
  position: relative;
  display: block;
  bottom: 10px;
  line-height: 0;
}

.et_pb_menu_0.et_pb_menu .et_mobile_menu,
.et_pb_menu_0.et_pb_menu .et_mobile_menu ul {
  background-color: #ffffff !important;
  border-radius: 10px;
}

ul.et_mobile_menu .menu-item-has-children .sub-menu.visible {
  background-color: transparent !important;
}

ul.et_mobile_menu .menu-item-has-children .sub-menu.visible li>a {
  text-transform: none !important;
  font-size: 20px !important;
  font-weight: 400 !important;

}

/*----- ALGEMEEN -----*/

.sd-row-align-center {
  display: flex;
  align-items: center;
}

/* Divi extra's */

.sd-ul-check ul {
  list-style: none;
  padding-left: 30px;
}

.sd-ul-check li {
  position: relative;
  padding-bottom: 10px;
}

.sd-ul-check li::before {
  content: "";
  background-image: url(/wp-content/uploads/2024/06/Check-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  left: -30px;
  top: 2px;
  filter: invert(45%) sepia(79%) saturate(512%) hue-rotate(192deg) brightness(103%) contrast(101%);
}

@media (min-width: 981px) {
  .sd-row-align-center {
    display: flex;
    align-items: center;
  }
}

@media (max-width: 980px) {
  .sd-row-col {
    flex-direction: column;
  }

  .sd-row-reverse {
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: wrap;
  }

  .sd-row-reverse .et_pb_column:last-of-type {
    margin-bottom: 30px;
  }
}

.sd-inline-btn .et_pb_button_module_wrapper {
  display: inline-block;
}

/* Section BEFORE + AFTER */

.sd-section-before::before {
  content: url("/wp-content/uploads/2024/06/Objects-horizontal-icons.svg");
  position: absolute;
  top: -30px;
  left: 60px;
}

.sd-section-after::after {
  content: url("/wp-content/uploads/2024/06/Objects-horizontal-icons.svg");
  position: absolute;
  display: inline-block;
  transform: rotate(270deg);
  right: 0;
  bottom: 0;
  z-index: 999;
}

/* Column BEFORE + AFTER */

.sd-col-has-after::after {
  content: url("/wp-content/uploads/2024/06/Objects-horizontal-icons.svg");
  position: absolute;
  display: inline-block;
  transform: rotate(180deg);
  right: 0;
  bottom: -30px;
}

/* IMG Module */

.sd-img-cover img {
  object-fit: cover;
}

.sd-img-circle img {
  height: 510px;
  width: 510px;
  object-fit: cover;
}

@media (max-width: 980px) {
  .sd-img-circle img {
    height: 320px;
    width: 320px !important;
  }
}

/*---- PRODUCT SHORTCODE HARDLOPERS -----*/

.sd-section-hardlopers::after {
  content: url("/wp-content/uploads/2024/06/Objects-horizontal-icons.svg");
  position: absolute;
  left: -30px;
  transform: rotate(90deg);
  bottom: 0px;
  z-index: 999;
}

.et-db #et-boc .sd-hardloper-product .sd-product-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /* Allow items to wrap to the next line */
}

.et-db #et-boc .sd-hardloper-product .sd-product-list .product-item {
  width: calc(33.33% - 20px);
  /* Adjust width to fit three items per row with spacing */
  margin-bottom: 30px;
  /* Space between each product item */
  text-align: center;
  /* Center align items */
}

.sd-hardloper-product .sd-product-list .product-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.sd-hardloper-product .sd-product-list .product-item a .product-img {
  background-color: #ffb8b3;
  border-radius: 50%;
  width: 195px;
  height: 195px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  transition: all 300ms ease;
}

.sd-hardloper-product .sd-product-list .product-item a:hover .product-img {
  box-shadow: 0 0 15px 5px rgba(255, 184, 179, 0.7);
}

.sd-hardloper-product .sd-product-list .product-item h3 {
  font-size: 24px;
  color: #152e88;
  margin-bottom: 10px;
}

.sd-hardloper-product .sd-product-list .product-item .price {
  font-family: "Anton-Regular";
  color: #1730d0;
  font-size: 15px;
  margin-bottom: 10px;
}

.sd-hardloper-product .sd-product-list .product-item .product-btn button {
  color: #ffffff;
  background-color: #ff4a4a;
  border: none;
  font-family: "Anton-Regular";
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 300ms ease;
}

.sd-hardloper-product .sd-product-list .product-item .product-btn button:hover {
  background-color: rgba(255, 74, 74, 0.8);
}

.sd-hardloper-product .sd-product-list .product-item a .product-img>img:first-of-type {
  height: 175px;
  width: 175px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .sd-hardloper-product .sd-product-list .product-item {
    width: calc(50% - 20px);
    /* Adjust width for two items per row on smaller screens */
  }
}

@media (max-width: 600px) {
  .sd-hardloper-product .sd-product-list .product-item {
    width: 100%;
    /* Full width for one item per row on very small screens */
  }
}

/* ONZE SMAKEN */

.sd-smaken-product .sd-smaak-list {
  display: flex;
  flex-wrap: wrap;
}

.sd-smaken-product .sd-smaak-list .smaak-item {
  width: 20%;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.sd-smaken-product .sd-smaak-list .smaak-item a {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.sd-smaken-product .sd-smaak-list .smaak-item .smaak-img {
  background-color: #5677f0;
  border-radius: 50%;
  width: 145px;
  height: 145px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  transition: all 300ms ease;
}

.sd-smaken-product .sd-smaak-list .smaak-item .smaak-img img:first-of-type {
  transform: scale(1.2);
  max-width: fit-content;
}



.sd-smaken-product .sd-smaak-list .smaak-item a:hover .smaak-img {
  box-shadow: 0 0 15px 5px rgba(86, 119, 240, 0.7);
}

.sd-smaken-product .sd-smaak-list .smaak-item h3 {
  font-size: 29px;
  color: #ffffff;
  text-align: center;
  margin: 0;
  max-width: 200px;
  line-height: 1.4;
  word-break: break-word;
  white-space: normal;
}

.sd-smaken-product .sd-smaak-list .smaak-item:nth-of-type(3) h3,
.sd-smaken-product .sd-smaak-list .smaak-item:nth-of-type(8) h3,
.sd-smaken-product .sd-smaak-list .smaak-item:nth-of-type(9) h3 {
  max-width: 150px;
}


.sd-product-list .product-item {
  position: relative;
}

.sd-product-list .product-img {
  position: relative;
}

.sd-product-list .product-img img.vegan-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px !important;
  height: auto;
  z-index: 10;
}

.sd-smaken-product .sd-smaak-list .smaak-item a:hover {
  cursor: url("/wp-content/uploads/2024/06/Custom-cursor.svg"), auto;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .sd-smaken-product .sd-smaak-list .smaak-item {
    width: 25%;
  }
}

@media (max-width: 992px) {
  .sd-smaken-product .sd-smaak-list .smaak-item {
    width: 33.33%;
  }
}

@media (max-width: 768px) {
  .sd-smaken-product .sd-smaak-list .smaak-item {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .sd-smaken-product .sd-smaak-list .smaak-item {
    width: 100%;
  }

  .sd-smaken-product .sd-smaak-list .smaak-item .smaak-img {
    width: 150px;
    height: 150px;
  }

  .sd-smaken-product .sd-smaak-list .smaak-item h3 {
    font-size: 24px;
  }
}

/* VEGAN */

.sd-vegan-cat .sd-product-list .product-item .product-btn button {
  background-color: #6fd344;
}

.sd-vegan-cat .sd-product-list .product-item .product-btn button:hover {
  background: rgba(111, 211, 68, 0.8);
}

/* VEGAN ICON */

.vegan-icon {
  display: inline-block;
  margin-left: 5px;
  width: 16px;
  /* Adjust the size as needed */
  height: 16px;
  /* Adjust the size as needed */
  vertical-align: middle;
}

.et-menu-nav li.mega-menu li>a {
  width: 240px !important;
}

.sd-smaken-product .sd-smaak-list .smaak-item a .smaak-img {
  position: relative;
}

.sd-smaken-product .sd-smaak-list .smaak-item a .smaak-img .vegan-icon {
  position: absolute;
  top: 10px;
  right: 15px;
  width: 30px;
  height: 30px;
}

/* Accordeon module  */

.sd-accordeon-module .et_pb_accordion_item.et_pb_toggle_open .et_pb_toggle_title:before {
  display: block;
  content: "\e04f";
}

.sd-accordeon-module .et_pb_toggle_open,
.sd-accordeon-module .et_pb_toggle_close {
  padding: 0;
}

.faq-accordeon-meer-info .et_pb_toggle_content p:last-of-type {
  padding-bottom: 1rem;
}

.sd-accordeon-module h5 {
  font-family: "Anton-Regular";
  color: #152e88 !important;
  font-size: 17px;
}

.sd-accordeon-module .et_pb_toggle_content {
  padding-top: 0px !important;
  /*   padding-bottom: 0px !important; */
}

/* .sd-accordeon-module .et_pb_toggle_close .et_pb_toggle_title,
.sd-accordeon-module .et_pb_toggle_close h5.et_pb_toggle_title {
  padding: 30px 0px;
} */

.sd-accordeon-module .et_pb_toggle_title {
  padding: 20px 0px !important;
}

.sd-accordeon-module .et_pb_toggle {
  margin-bottom: 0px !important;
}

.sd-accordeon-module .et_pb_toggle_title:before {
  border: 1px solid #162e87;
  border-radius: 50%;
  color: #162e87;
  /* width: 35px;
    height: 35px; */
  padding: 12px;
  margin-top: -20px;
  transition: all 300ms ease 0ms;
}

.sd-accordeon-module .et_pb_accordion_item.et_pb_toggle_open .et_pb_toggle_title:before {
  transform: rotate(-90deg);
  border: 1px solid #ff4a4a;
  background-color: #ff4a4a;
  color: #ffffff;
  transition: all 300ms ease 0ms;
}

.sd-accordeon-btn {
  color: #ffffff;
  background-color: #ff4a4a;
  border: 0px;
  font-family: "Anton-Regular";
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 14px;
  cursor: pointer;
  transition: all 300ms ease 0ms;
}

.sd-accordeon-btn:hover {
  background: rgba(255, 74, 74, 0.8);
}

.sd-accordeon-img::before {
  content: "";
  display: block;
  position: absolute;
  top: -80px;
  left: -80px;
  width: 200px;
  height: 200px;
  background-image: url("/wp-content/uploads/2024/06/Red-Form.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.sd-accordeon-img::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -110px;
  left: -110px;
  width: 110px;
  height: 110px;
  background-image: url("/wp-content/uploads/2024/06/Pink-form.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

/* SOCIAL MEDIA */

.sd-social-title {
  margin-bottom: 56px;
  transform: rotate(-1deg);
}

.sd-social-media-content {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  transform: rotate(-1deg);
  padding: 20px 10px;
  background: #ffb8b3;
  flex-wrap: wrap;
}

.sd-social-media-content:first-of-type {
  border-top: 1px solid #707070;
}

.sd-social-media-content:last-of-type {
  border-bottom: 1px solid #707070;
}

.sd-social-media-title {
  font-family: "Anton-Regular";
  color: rgba(21, 46, 136, 0.25);
  font-size: 29px;
  text-transform: uppercase;
  transition: all 300ms ease 0ms;
  margin: 10px;
  flex: 1 1 100%;
  text-align: center;
}

.sd-social-media-row.instagram:hover .sd-social-media-content,
.sd-social-media-row.facebook:hover .sd-social-media-content,
.sd-social-media-row.pinterest:hover .sd-social-media-content {
  background-color: #ffc1bc;
}

.sd-social-media-row.instagram:hover .sd-social-media-title,
.sd-social-media-row.facebook:hover .sd-social-media-title,
.sd-social-media-row.pinterest:hover .sd-social-media-title {
  color: #152e88;
}

.sd-social-media-image img {
  width: 150px;
  height: 85px;
  object-fit: cover;
  border-radius: 50px;
  margin: 10px;
}

@media (max-width: 1103px) {
  .sd-social-media-content .sd-social-media-title:first-of-type {
    display: none;
  }
}

@media (max-width: 790px) {
  .sd-social-media-content .sd-social-media-title:nth-of-type(3) {
    display: none;
  }
}

@media (max-width: 476px) {
  .sd-social-media-content .sd-social-media-title:nth-of-type(7) {
    display: none;
  }
}

@media (max-width: 980px) {
  .sd-social-media-content .sd-social-media-image:nth-child(2) img {
    display: none !important;
  }
}

@media (max-width: 648px) {
  .sd-social-media-content .sd-social-media-image:nth-child(4) img {
    display: none !important;
  }
}

@media (min-width: 300px) {
  .sd-social-media-content {
    flex-direction: row;
  }

  .sd-social-media-title {
    flex: 1;
    text-align: center;
  }

  /* .sd-social-media-image {
    flex: 1;
  } */
}

/* Transparent title module */

.sd-transparent-title {
  color: transparent;
  -webkit-text-stroke: 1px #1733d0;
}

.sd-recensie-section .sd-title-has-img-before::before {
  content: "";
  position: absolute;
  left: 40%;
  top: -37%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 140px;
  background-image: url("/wp-content/uploads/2024/06/Happy-person-eating-brownie.webp");
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  z-index: 0;
  transform: rotate(-5deg);
}

.sd-recensie-section .sd-transparent-title::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 60px;
  background-image: url("/wp-content/uploads/2024/06/Meneer-die-een-brownie-voert-aan-een-vrouw.webp");
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  z-index: 1;
  left: 350px;
  top: 140px;
  transform: rotate(-5deg);
}

.sd-recensie-section .sd-transparent-title::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 80px;
  background-image: url("/wp-content/uploads/2024/06/Open-brownie-box.webp");
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  z-index: 1;
  right: 290px;
  top: 194px;
  transform: rotate(5deg);
}

.sd-recensie-section .sd-transparent-title .et_pb_text_inner {
  position: relative;
  z-index: 2;
}


/* Recensie slider */

.sd-recensie-slider-container .sd-recensie-slide {
  margin: 0 100px;
}

.sd-recensie-slider-container .sd-recensie-slide h4 {
  font-size: 21px;
  padding-bottom: 25px;
}

.sd-recensie-slider-container .sd-recensie-slide h2 {
  font-size: 44px;
  padding-bottom: 25px;
}

.sd-recensie-slider-container .sd-recensie-slide p {
  padding-bottom: 15px !important;
}

.sd-recensie-slider-container .sd-recensie-slide .sd-recensie-rating {
  display: flex;
}

.sd-recensie-slider-container .sd-recensie-slide .sd-recensie-rating img:not(:last-of-type) {
  margin-right: 5px;
}

.sd-recensie-slider-container button.slick-prev.slick-arrow {
  position: absolute;
  bottom: 0px;
  left: 100px;
  border: 1px solid #162e87;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background: transparent;
  cursor: pointer;
  z-index: 99999;
}

.sd-recensie-slider-container button.slick-next.slick-arrow {
  position: absolute;
  bottom: 0px;
  right: 100px;
  border: 1px solid #162e87;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background: transparent;
  cursor: pointer;
  z-index: 99999;
}

.sd-recensie-slider-container .slick-dots {
  display: flex;
  justify-content: center;
  margin-top: 70px;
  padding: 1rem 0;
  list-style-type: none;
}

.sd-recensie-slider-container ul.slick-dots {
  list-style-type: none;
}

.sd-recensie-slider-container .slick-dots li {
  margin: 0 0.25rem;
}

.sd-recensie-slider-container .slick-dots li button {
  border-radius: 50%;
  border: 0px;
  width: 10px;
  height: 10px;
  background-color: rgba(255, 74, 74, 0.14);
  color: transparent;
}

.sd-recensie-slider-container li.slick-active button {
  background-color: #ff4a4a;
}

.sd-recensie-has-before::before {
  content: "";
  position: absolute;
  top: 200px;
  left: -150px;
  width: 300px;
  height: 300px;
  background: url("/wp-content/uploads/2024/06/Vorm-groep-recensies.svg") no-repeat;
  background-size: contain;
  transform: rotate(-90deg);
}

.sd-recensie-has-after::after {
  content: "";
  position: absolute;
  top: 120px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: url("/wp-content/uploads/2024/06/Vorm-groep-recensies.svg") no-repeat;
  background-size: contain;
}

/* BLOG module */

/* ----- BLOG ----- */

.sd-blog {
  margin: -5px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px;
  transition: all 0.3s;
}

.sd-blog::before,
.sd-blog::after {
  content: "";
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  width: 50px;
  height: 50px;
  border-radius: 50px;
  border: 4px dashed black;
  animation: tt-loading 2s infinite linear;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: all 0.1s;
}

.sd-blog::after {
  top: auto;
  left: calc(50% - 15px);
  bottom: -60px;
  width: 30px;
  height: 30px;
  border-width: 3px;
}

.sd-blog.loading-more::after {
  opacity: 1;
}

.sd-blog.no-more::before,
.sd-blog.no-more::after {
  top: auto;
  left: calc(50% - 0px);
  bottom: -45px;
  width: 2px;
  height: 20px;
  border: none;
  transform-origin: left bottom;
  transform: rotate(45deg);
  opacity: 1;
  background-color: black;
  animation: sd-nomore 3s forwards;
  transition: none;
}

.sd-blog.no-more::after {
  width: 20px;
  height: 2px;
  bottom: -32px;
}

.sd-blog .sd-blogitem {
  background: #ffffff;
  border-radius: 8px;
}

.sd-blog.related .sd-blogitem {
  grid-column: span 3;
}

.sd-blog .sd-blogitem .sd-blogitem-imgcontainer {
  width: 100%;
  height: 260px;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px 8px 0px 0px;
  overflow: hidden;
  background-color: #f4f4f4;
  transition: all 0.3s;
}

.sd-blog.related .sd-blogitem .sd-blogitem-imgcontainer {
  height: 200px;
}

.sd-blog .sd-blogitem .sd-blogitem-imgcontainer:hover {
  opacity: 0.7;
}

.sd-blog .sd-blogitem .sd-blogitem-imgcontainer img {
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 10000%;
  max-height: 10000%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
}

.sd-blog .sd-blogitem h3 {
  color: #152e88;
}

.sd-blog .sd-blogitem .sd-blog-textcontainer {
  padding: 0px 30px 30px 30px;
  text-align: center;
  color: #000d3c;
}

a.sd-blog-button {
  background-color: transparent;
  color: #395ad4;
  padding: 10px 30px;
  display: inline-block;
  margin-top: 20px;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s;
  min-width: 100% !important;
  cursor: pointer;
}

@media (max-width: 980px) {
  .sd-blog {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 550px) {
  .sd-blog {
    grid-template-columns: 1fr;
  }

  .sd-blog button.slick-next.slick-arrow {
    right: 0 !important;
  }
}

.sd-blog button.slick-next.slick-arrow {
  left: auto;
  right: -30px;
}

/* KLANTENSERVICE */



#faq div.sd-faq-filter button {
  font-family: Helvetica, sans-serif;
}

.sd-col-img-after::after {
  content: "";
  display: block;
  width: 700px;
  height: 400px;
  border-radius: 4px;
  background-image: url(https://sweetdeliver.interly.dev/wp-content/uploads/2024/06/Open-brownie-box.webp);
  background-size: cover;
  background-position: center;
  margin-top: 20px;
  z-index: -1;
  position: absolute;
  top: -70px;
  margin-left: -60px;
}

@media(max-width:980px) {
  .sd-col-img-after::after {
    width: 106%;
    top: -10px;
    margin-left: -3%;
  }
}

.sd-klantenservice-opties .sd-klantenservice-optie {
  border-bottom: 1px solid #162e87;
  cursor: pointer;
}

.sd-klantenservice-opties .sd-klantenservice-optie:not(:last-of-type) {
  margin-bottom: 30px;
}

.sd-klantenservice-opties .sd-klantenservice-optie::after {
  content: url("/wp-content/uploads/2024/06/arrow-rechts-icon.svg");
  background: #ffffff;
  border: 1px solid #162e87;
  border-radius: 50%;
  padding: 15px;
  position: absolute;
  right: 0;
  margin-top: -80px;
  transition: all 300ms ease 0ms;
}

.sd-klantenservice-opties .sd-klantenservice-optie:hover::after {
  content: url("/wp-content/uploads/2024/06/Arrow-rechts-icon-white.svg");
  background: #ff4a4a;
  border: 1px solid #ff4a4a;
}

.sd-klantenservice-opties .sd-klantenservice-optie h3 {
  font-size: 24px;
  color: #395ad4;
}

.sd-klantenservice-opties .sd-klantenservice-optie h4 {
  font-size: 20px;
}

@media (max-width: 465px) {
  .sd-klantenservice-opties .sd-klantenservice-optie h4 {
    font-size: 18px;
  }

  .sd-klantenservice-opties .sd-klantenservice-optie h3 {
    font-size: 22px;
  }

  .sd-klantenservice-opties .sd-klantenservice-optie::after {
    padding: 10px;
  }
}

@media (max-width: 390px) {
  .sd-klantenservice-opties .sd-klantenservice-optie h4 {
    font-size: 14px;
  }

  .sd-klantenservice-opties .sd-klantenservice-optie h3 {
    font-size: 18px;
  }

  .sd-klantenservice-opties .sd-klantenservice-optie::after {
    padding: 6px;
    margin-top: -70px;
  }
}





/*----- FOOTER -----*/

.sd-footer-cta .et_pb_column {
  transition: all 300ms ease 0ms;
  cursor: pointer;
}

a.sd-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 2px 2px 2px 40px;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  transition: all 300ms ease 0ms;
  font-size: 14px;
}

a.sd-cta-btn:hover {
  background-color: #ff4a4a;
}

a.sd-cta-btn img {
  background-color: #ff4a4a;
  border-radius: 50%;
  padding: 20px;
  margin-left: 20px;
}

.sd-footer-section h4 {
  font-size: 18px;
}

.sd-footer-section a {
  color: #383838;
  transition: all 300ms ease 0ms;
  cursor: pointer;
}

.sd-footer-section .et_pb_row .et_pb_column .et_pb_module .et_pb_text_inner a {
  margin-bottom: 10px;
  text-decoration: none;
}

.sd-footer-section a:hover {
  color: #152e88;
}

.sd-copyright-bar p {
  font-size: 12px;
  color: #383838;
}

.sd-footer-has-before::before {
  content: url(/wp-content/uploads/2024/06/Objects-horizontal-icons.svg);
  position: absolute;
  top: 60px;
  left: 0px;
  transform: rotate(90deg);
}

.sd-copyright-has-after::after {
  content: url(/wp-content/uploads/2024/06/Objects-horizontal-icons.svg);
  position: absolute;
  top: -30px;
  right: 30px;
  /* transform: rotate(90deg); */
}

/* Divi footer */
#main-footer {
  display: none !important;
}

/*----- FORMS -----*/

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

.sd-ninja-form .nf-error-msg,
.ninja-forms-req-symbol {
  color: #395ad4 !important;
}

.sd-ninja-form h3 {
  color: #152e88;
  z-index: 1;
  position: relative;
}

.sd-ninja-form h3::after {
  content: url("/wp-content/uploads/2024/06/Golf-icon.svg");
  position: relative;
  margin-left: -50px;
  z-index: -1;
  top: -2px;
}

.sd-ninja-form .nf-form-content label {
  color: #152e88;
  text-transform: uppercase;
  font-size: 20px;
  font-family: "Anton-Regular";
}

.sd-ninja-form .nf-form-content textarea.ninja-forms-field {
  height: 150px;
}

.sd-ninja-form .nf-form-content .list-select-wrap .nf-field-element>div,
.sd-ninja-form .nf-form-content input:not([type="button"]),
.sd-ninja-form .nf-form-content textarea {
  background: #fcfafa;
  border-radius: 8px;
  border: 1px solid #162e8733;
}

.sd-ninja-form .checkbox-wrap .nf-field-label label:after {
  border-radius: 4px;
}

.sd-ninja-form .nf-form-cont .nf-form-content input[type="submit"] {
  background-color: #ff4a4a;
  border-radius: 50px;
  border: 0px;
  width: 100%;
  cursor: pointer;
}

/* WOOCOMMERCE TEMPLATES */

.et_password_protected_form p input {
  background: #fcfafa;
  border-radius: 8px;
  border: 1px solid #162e8733;
}

.woocommerce form.register .form-row label {
  color: #ffffff;
}

.woocommerce form.register p {
  color: #ffffff !important;
}

.woocommerce .woocommerce-orders-table .woocommerce-orders-table__cell-order-actions a {
  border: none;
  color: #152e88;
}

#post-79 div.woocommerce-pagination.woocommerce-pagination--without-numbers.woocommerce-Pagination a.woocommerce-button.woocommerce-button--previous.woocommerce-Button.woocommerce-Button--previous.button,
a.woocommerce-button.woocommerce-button--next.woocommerce-Button.woocommerce-Button--next.button {
  border: none;
  color: #152e88;
}

.woocommerce .woocommerce-error,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message {
  background: #FF4A4A;
}

div#order-notes {
  display: none;
}

a.button.wc-forward {
  color: #ffffff !important;
  border: none;
}

a.button.wc-forward:hover {
  background: transparent;
}

.sd-main-product-img.slick-initialized.slick-slider {
  overflow: visible;
  margin-bottom: 40px;
}

.sd-main-product-img img,
.sd-gallery-images-nav img {
  border-radius: 8px;
}

.sd-main-product-img .sd-main-product-thumbnail img {
  height: 450px;
  object-fit: cover;
}

.sd-main-product-img {
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 10000%;
  max-height: 10000%;
  width: 100%;
  height: 450px;
  min-width: 100%;
  min-height: 100%;
  margin-bottom: 0px;
  overflow: hidden;
  border-radius: 8px;
}

.sd-main-product-img .slick-prev {
  position: absolute;
  width: 65px;
  height: 65px;
  top: 50%;
  left: -33px;
  transform: translateY(-50%);
  z-index: 1000;
  background: #fff;
  border: 1px solid #162e87;
  border-radius: 8px;
  cursor: pointer;
}

.sd-main-product-img .slick-next {
  position: absolute;
  width: 65px;
  height: 65px;
  top: 50%;
  right: -33px;
  transform: translateY(-50%);
  z-index: 1000;
  background: #fff;
  border: 1px solid #162e87;
  border-radius: 8px;
  cursor: pointer;
}

.sd-gallery-images-nav .slick-slide {
  margin-right: 10px;
  /* Adjust the margin as per your preference */
}

.sd-product-price h2 .woocommerce div.product p.price,
.woocommerce-page div.product p.price {
  color: #395ad4;
}

.woocommerce div.product form.cart .variations td select {
  background-color: #ffffff;
  border: 1px solid #162e87;
  border-radius: 8px;
  width: 200px;
  color: #162e87 !important;
  font-size: 18px;
}

.woocommerce div.product form.cart .variations select {
  min-width: 0;
}

.woocommerce div.product form.cart .variations label {
  color: #152e88;
  text-transform: uppercase;
  font-size: 24px;
  font-family: "Anton-Regular";
}

.et_pb_wc_add_to_cart form.cart .variations td.value span:after {
  display: inline-block;
  transform: translateY(15%);
  position: relative;
  right: 40px;
  border-top-color: #172e87 !important;
}

.sd-add-to-cart-module .button.single_add_to_cart_button {
  width: 90%;
}

.et_pb_module.et_pb_tabs.et_pb_tabs_0_tb_body.sd-woo-product-tabs {
  background-color: #f7e9dc;
}

.et_pb_tabs_controls li a:first-of-type {
  padding: 4px 30px 4px 0px;
}

.sd-woo-product-tabs ul.et_pb_tabs_controls {
  background-color: #f7e9dc;
  display: flex;
  width: 1220px;
  margin: 0 auto;
  padding-left: 0;
  box-sizing: border-box;
}

.sd-woo-product-tabs .et_pb_all_tabs .et_pb_tab {
  max-width: 1240px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 0px;
}

.sd-woo-product-tabs .et_pb_tabs_controls li {
  border-right: 0px;
}

.sd-product-omschrijving {
  display: flex;
  justify-content: space-between;
}

@media(max-width:980px) {
  .sd-product-omschrijving {
    flex-direction: column;
  }

  .sd-col {
    width: 100% !important;
  }
}

.sd-col {
  width: 45%;
}

.sd-product-omschrijving h3 {
  margin-top: 0;
  color: #152e88;
}

.sd-woo-product-tabs .woocommerce.et-dynamic-content-woo.et-dynamic-content-woo--product_additional_information h2 {
  color: #152e88 !important;
  font-size: 40px;
  font-family: "Anton";
  margin-bottom: 30px;
}

.sd-woo-product-tabs p,
.sd-woo-product-tabs ol,
.sd-woo-product-tabs ul,
.sd-woo-product-tabs th,
.sd-woo-product-tabs tr {
  color: #000d3c;
}

.woocommerce-account .container {
  padding-top: 80px;
  padding-bottom: 80px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style-type: none !important;
  background-color: #142e88;
  border-radius: 8px;
  padding: 40px !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
  margin-bottom: 10px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  color: #ffffff;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul .is-active a {
  background-color: #ff4a4a;
  border-radius: 50px;
  padding: 10px 20px;
  margin-bottom: 10px;
}

.woocommerce-account .addresses .title h3 {
  color: #152e88;
}

.woocommerce form.login {
  background-color: #152e88;
  border-radius: 8px;
  padding: 40px;
  height: clamp(350px, 400px, calc(400px + 5%));
}

.woocommerce form.register .form-row label {
  color: #333333;
  font-family: Helvetica, sans-serif;
}

.woocommerce form.login p {
  color: white;
  font-family: Helvetica, sans-serif;
}

.woocommerce form.login p.woocommerce-LostPassword.lost_password a {
  color: white;
  display: flex;
  align-content: center;
  justify-content: center;
  margin-top: 20px;
}

.woocommerce form.login p label span.required {
  color: #f5b9b4;
}

.woocommerce form.register p:nth-child(2),
.woocommerce form.register div p {
  color: #333333 !important;
}

.woocommerce form.register p label span.required {
  color: #213186;
}

.woocommerce form.register p.form-row label,
.woocommerce form.login p label {
  padding-bottom: 5px;
  font-size: 16px;
}

.woocommerce form.login p.form-row {
  display: flex;
  flex-direction: column;
}

.woocommerce form.register {
  background-color: #ffb8b3;
  border-radius: 8px;
  padding: 40px;
  height: clamp(350px, 400px, calc(400px + 5%));
}

#customer_login>div.u-column2.col-2>form>div>p {
  padding-bottom: 10px;
}

/* .woocommerce form .form-row label, .woocommerce form.register {
  color: #fff !important; 
} */

.woocommerce form .form-row input.input-text {
  background: #fcfafa;
  border-radius: 8px;
  border: 1px solid #162e8733;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit,
.woocommerce button.button,
.woocommerce-page button.button {
  background: #ff4a4a;
  color: #fff !important;
  font-weight: 600;
  font-size: 15px;
  font-family: 'DMSans-Regular';
  /* height: fit-content; */
  /* display: inline-block; */
  border-radius: 50px;
  padding: 15px 25px !important;
  border: 0px;
  transition: all 300ms ease 0ms;
}

button.woocommerce-Button.woocommerce-button.button.woocommerce-form-register__submit {
  background: #ff4a4a;
  color: #fff !important;
  font-weight: 600;
  font-size: 15px;
  font-family: "Anton";
  /* height: fit-content; */
  /* display: inline-block; */
  border-radius: 50px;
  padding: 15px 25px;
  border: 0px;
  transition: all 300ms ease 0ms;
}

/* WINKELWAGEN JUSTIN */

.wc-block-components-sidebar.wc-block-cart__sidebar.wp-block-woocommerce-cart-totals-block {
  padding: 2.2rem;
  /* border: 1px solid #152e88; */
  background-color: white;
  border-radius: 16px;
  height: fit-content;
}


/* RECHTER BLOK */
/* WINKELWAGEN */

.wp-block-woocommerce-proceed-to-checkout-block>div.wc-block-cart__submit-container>a,
.wp-block-woocommerce-cart-order-summary-subtotal-block.wc-block-components-totals-wrapper>div,
.wc-block-cart__submit.wp-block-woocommerce-proceed-to-checkout-block>div.wc-block-cart__submit-container>a,
#wc-block-components-totals-coupon__form>button span {
  font-family: Helvetica, sans-serif;
  font-size: 15px;
}

.wp-block-woocommerce-proceed-to-checkout-block>div.wc-block-cart__submit-container>a:active,
.wp-block-woocommerce-cart-order-summary-subtotal-block.wc-block-components-totals-wrapper>div:active,
.wc-block-cart__submit.wp-block-woocommerce-proceed-to-checkout-block>div.wc-block-cart__submit-container>a:active,
#wc-block-components-totals-coupon__form>button span:active {
  background-color: #152e88;
}

.wc-block-cart__sidebar.wp-block-woocommerce-cart-totals-block>div.wp-block-woocommerce-cart-order-summary-block>span {
  color: #152e88;
  font-family: "Anton-Regular";
  font-size: 26px;
  margin-bottom: 1rem;
}

@media (max-width: 1049px) {
  .wc-block-cart__sidebar.wp-block-woocommerce-cart-totals-block>div.wp-block-woocommerce-cart-order-summary-block>span {
    line-height: 1.2;
  }
}

@media (max-width: 875px) {}

.wc-block-cart__submit.wp-block-woocommerce-proceed-to-checkout-block {
  margin: 1rem 0px 0px 0px;
}

.wc-block-components-totals-wrapper {
  font-family: Helvetica, sans-serif;
  font-size: 15px;
}

.wp-block-woocommerce-cart-order-summary-block>div:nth-child(4) {
  color: black;
  font-family: Helvetica, sans-serif;
}


.wc-block-components-title.wc-block-components-title {
  color: #152e88;
}


body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link) {
  background-color: #ff4a4a;
  color: #ffffff;
  border-width: 0px;
  border-radius: 50px;
  font-family: "Anton";
}

/* LINKER BLOK */
/* WINKELWAGEN */
.wc-block-components-main.wc-block-cart__main.wp-block-woocommerce-cart-items-block>table {
  padding-inline: 2.2rem;
  padding-block: 1rem;
}

#post-77>div>div>div>div,
#et-main-area:has(#post-77) {
  background-color: #fff0e1;
}

.wp-block-woocommerce-cart-items-block>table>tbody .wc-block-cart-items__row .wc-block-cart-item__image {
  padding-left: 0;
  padding-right: 1rem;
}

.coupon #coupon_code {
  background-color: white;
}

.woocommerce-cart-form__cart-item .product-thumbnail {
  width: 50px;
}



#post-77>div>div>div>div>div.et_pb_row.et_pb_row_0>div>div.et_pb_module.et_pb_wc_cart_products.et_pb_wc_cart_products_0.woocommerce-cart.woocommerce.et_pb_woo_custom_button_icon.et_pb_row_layout_default>div>form>table>tbody>tr:nth-child(3)>td>div>button:hover {
  background: #bb2f2f;
  color: #fff !important;
  font-weight: 600;
  font-size: 15px;
  font-family: 'DMSans-Regular';
  border-radius: 50px;
  padding: 15px 25px !important;
  border: 0px;
  transition: all 300ms ease 0ms;
}

#post-77>div>div>div>div>div.et_pb_row.et_pb_row_0>div>div.et_pb_module.et_pb_wc_cart_products.et_pb_wc_cart_products_0.woocommerce-cart.woocommerce.et_pb_woo_custom_button_icon.et_pb_row_layout_default>div>form>table>tbody>tr:nth-child(3)>td>button {
  background: #ff4a4a;
  color: #fff !important;
  font-weight: 600;
  font-size: 15px;
  font-family: 'DMSans-Regular';
  border-radius: 50px;
  padding: 15px 25px !important;
  border: 0px;
  transition: all 300ms ease 0ms;
}


#post-77>div>div>div>div>div.et_pb_row.et_pb_row_1>div.et_pb_column.et_pb_column_1_2.et_pb_column_2.et_pb_css_mix_blend_mode_passthrough.et-last-child>div>div>div>div>a:hover {
  background: #bb2f2f;
}

.cart_totals h2 {
  color: #142e88;
}


/* .wc-block-cart__main.wp-block-woocommerce-cart-items-block>table>thead>tr>th.wc-block-cart-items__header-image {
  padding-left: 16px;
} */

/* .sd_afrekenen table tbody tr td.product-name, */
.wc-block-cart__main.wp-block-woocommerce-cart-items-block>table>tbody>tr>td.wc-block-cart-item__product>div>a {
  font-family: "Anton-Regular";
  font-size: 20px;
}

.sd_afrekenen table tbody tr td.product-name .variation {
  font-family: Helvetica, sans-serif;
  font-size: 14px;
}


.wc-block-cart-items span {
  font-family: Helvetica, sans-serif;
  font-size: 15px;
}

.sd_afrekenen section.woocommerce-order-details table ul li strong,
.sd_afrekenen table tbody tr td.product-name .variation dt,
.wc-block-components-product-details span:first-of-type {
  color: #152e88;
}

.sd_afrekenen section.woocommerce-order-details table thead tr th.woocommerce-table__product-name.product-name,
#order_review>table>thead>tr>th,
.wc-block-components-main.wc-block-cart__main.wp-block-woocommerce-cart-items-block>table>thead>tr>th span {
  color: #152e88;
  font-weight: 700;
}



.wc-block-components-main.wc-block-cart__main.wp-block-woocommerce-cart-items-block>table {
  border-collapse: separate;
  border-radius: 8px;
  border: none;
  background-color: white !important;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, .075);
}

@media (max-width: 875px) {

  div.wc-block-components-sidebar.wc-block-cart__sidebar.wp-block-woocommerce-cart-totals-block {
    padding: 32px;
  }

  .wc-block-components-main.wc-block-cart__main.wp-block-woocommerce-cart-items-block>table {
    padding-inline: 1rem;
  }

  .wc-block-components-main.wc-block-cart__main.wp-block-woocommerce-cart-items-block>table>tbody>tr {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 100px auto;
    row-gap: 1rem;
  }

  .wc-block-components-main.wc-block-cart__main.wp-block-woocommerce-cart-items-block>table>tbody>tr td:first-of-type {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .wc-block-components-main.wc-block-cart__main.wp-block-woocommerce-cart-items-block>table>tbody>tr td:nth-of-type(2) {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
  }

  .wc-block-components-main.wc-block-cart__main.wp-block-woocommerce-cart-items-block>table>tbody>tr td:nth-of-type(3) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
  }

  #post-77>div>div>div>div>div>div>div>div>div>div:nth-child(4)>div>div>div.wc-block-components-main.wc-block-cart__main.wp-block-woocommerce-cart-items-block>table>tbody>tr>td.wc-block-cart-item__image>a>img {
    min-width: 6rem;
    max-width: 6rem;
  }

  .wc-block-components-main.wc-block-cart__main.wp-block-woocommerce-cart-items-block>table>tbody>tr {
    padding-inline: 1.5rem;
  }


}

/* AFREKENEN */
.woocommerce .quantity input.qty {
  background-color: white !important;
}

.sd_afrekenen>div form.checkout.woocommerce-checkout div.woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout div ul.woocommerce-error li a {
  color: white;
}

.sd_afrekenen #customer_details {
  padding-left: .8rem;
}

.sd_afrekenen #order_review table tbody tr td.product-name {
  color: black;
}

.sd_afrekenen section.woocommerce-order-details table tfoot tr th,
.sd_afrekenen #order_review table tbody tr td.product-name .variation {
  color: #666;
}

.entry-content table:not(.variations) {
  border: none !important;
}

.sd_afrekenen #order_review {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sd_afrekenen #payment {
  width: calc(100% + 2rem);
  padding-inline: 1rem;
}

.sd_afrekenen div section.woocommerce-order-details,
.sd_afrekenen>div>div>form.checkout.woocommerce-checkout {
  padding-inline: 1rem;
}

.sd_afrekenen .woocommerce-info {
  margin-bottom: 1rem;
  border-radius: 6px 6px 0px 0px;
}

.sd_afrekenen #customer_details {
  margin-bottom: 2rem;
}

.sd_afrekenen section.woocommerce-order-details table tbody tr td.woocommerce-table__product-name.product-name ul,
.sd_afrekenen #order_review table tbody tr td.product-name dl {
  margin-top: 5px;
  font-weight: 400;
}

.sd_afrekenen #order_review table tbody tr td {
  font-weight: 700;
}

.sd_afrekenen section.woocommerce-order-details table tfoot tr td,
.sd_afrekenen section.woocommerce-order-details table tbody tr td.woocommerce-table__product-total,
.sd_afrekenen #order_review tr.order-total td,
.sd_afrekenen #order_review tr.cart-subtotal td,
.sd_afrekenen #order_review td.product-total,
.sd_afrekenen #order_review th.product-total {
  text-align: end;
  font-weight: 400;
}

.sd_afrekenen #order_review th.product-total {
  font-weight: 700;
}

.sd_afrekenen #order_review table tbody tr td.product-name dl {
  display: flex;
  flex-direction: column;
}


#post-77 div ul li div.wp-block-button.wc-block-grid__product-add-to-cart a,
.sd_afrekenen section.woocommerce-order-details p a,
.sd_afrekenen #place_order {
  background-color: #ff4a4a;
  padding: 15px 35px;
  color: #ffffff;
  border-width: 0px;
  border-radius: 50px;
  font-family: Helvetica, sans-serif;
  font-size: 15px;
  margin-top: 1rem;
  border: none;
}

#post-77 div ul li div.wp-block-button.wc-block-grid__product-add-to-cart a:hover,
.sd_afrekenen section.woocommerce-order-details p a:hover,
.sd_afrekenen #place_order:hover {
  background-color: #ff7070;
  padding: 15px 35px !important;
  color: white;
  border: none;
}

.sd_afrekenen #order_review_heading {
  padding-left: .8rem;
}

.sd_afrekenen #billing_email_field label abbr {
  color: #FF4A4A;
}

/* AFREKENEN ORDER RECEIVED */

.sd_afrekenen div.woocommerce-order>p,
.sd_afrekenen div.woocommerce p.woocommerce-notice {
  padding-left: 25px;
  padding-top: 1rem;
}

.sd_afrekenen div.woocommerce-order ul.woocommerce-order-overview {
  margin-bottom: 0;
  padding-left: 25px;
  font-family: Helvetica, sans-serif;
}

.sd_afrekenen section.woocommerce-order-details table {
  font-family: Helvetica, sans-serif;
  margin-bottom: 0px !important;
}

.sd_afrekenen section.woocommerce-customer-details address {
  padding-left: 25px;
  font-family: Helvetica, sans-serif;
  padding-block: 1rem;
}


.sd_afrekenen section.woocommerce-customer-details table tbody tr td.woocommerce-table__product-name.product-name strong,
.sd_afrekenen section.woocommerce-customer-details table tbody tr td.woocommerce-table__product-name.product-name a {
  font-weight: 700;
  color: black;
}

/* Afrekenen Order cancelled */
.sd_afrekenen div.woocommerce p.woocommerce-notice {
  padding-bottom: 1rem;
  font-family: Helvetica, sans-serif;
}

.sd_afrekenen div section.woocommerce-order-details h2 {
  padding-left: 10px;
}

.sd_afrekenen div section.woocommerce-customer-details h2 {
  padding-left: 20px;
}

.sd_afrekenen section.woocommerce-order-details table th.woocommerce-table__product-table.product-total {
  text-align: end;
}

.sd_afrekenen section.woocommerce-order-details table th {
  font-family: Helvetica, sans-serif;
  color: #152e88;
  font-weight: 700;
}



/* LOGIN / REGISTREREN */

#customer_login>div.u-column2.col-2>form>p:nth-child(5)>button,
#customer_login>div.u-column1.col-1>form>p:nth-child(3)>button {
  font-family: 'DMSans-Regular';
  margin-right: 0px;
}

#customer_login>div.u-column2.col-2>form>p:nth-child(5)>button {
  width: 100%;
  margin-top: 10px;
}

#customer_login>div.u-column2.col-2>form>p:nth-child(5)>button:hover,
#customer_login>div.u-column1.col-1>form>p:nth-child(3)>button:hover {
  background: #ff7070;
  color: #fff !important;
  font-weight: 600;
  font-size: 15px;
  font-family: "DMSans-Regular";
  border-radius: 50px;
  padding: 15px 25px !important;
  border: 0px;
  transition: all 300ms ease 0ms;
}


.wc-block-components-product-metadata>ul li span {
  font-size: 14px;
}

.wc-block-cart-item__image>a>img {
  border-radius: 6px;
}

/*** REMOVE ICONS FROM WOOCOMMERCE BUTTONS ON HOVER ***/
.woocommerce #content input.button.alt:after,
.woocommerce #content input.button:after,
.woocommerce #respond input#submit.alt:after,
.woocommerce #respond input#submit:after,
.woocommerce a.button.alt:after,
.woocommerce a.button:after,
.woocommerce button.button.alt:after,
.woocommerce button.button:after,
.woocommerce input.button.alt:after,
.woocommerce input.button:after,
.woocommerce-page #content input.button.alt:after,
.woocommerce-page #content input.button:after,
.woocommerce-page #respond input#submit.alt:after,
.woocommerce-page #respond input#submit:after,
.woocommerce-page a.button.alt:after,
.woocommerce-page a.button:after,
.woocommerce-page button.button.alt:after,
.woocommerce-page button.button:after,
.woocommerce-page input.button.alt:after,
.woocommerce-page input.button:after {
  content: none !important;
}

/*** ADJUST WOOCOMMERCE BUTTON PADDING ***/
.woocommerce #content input.button.alt:hover,
.woocommerce #content input.button:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button.alt:hover,
.woocommerce a.button:hover,
.woocommerce button.button.alt:hover,
.woocommerce button.button:hover,
.woocommerce input.button.alt:hover,
.woocommerce input.button:hover,
.woocommerce-page #content input.button.alt:hover,
.woocommerce-page #content input.button:hover,
.woocommerce-page #respond input#submit.alt:hover,
.woocommerce-page #respond input#submit:hover,
.woocommerce-page a.button.alt:hover,
.woocommerce-page a.button:hover,
.woocommerce-page button.button.alt:hover,
.woocommerce-page button.button:hover,
.woocommerce-page input.button.alt:hover,
.woocommerce-page input.button:hover,
.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled] {
  padding: 0.3em 1em !important;
  /* this is Divi default button padding */
}

/*----- RESPONSIVE -----*/

@media (max-width: 980px) {
  .sd-row-flex-reverse {
    flex-direction: column-reverse;
  }

  .sd-col-has-after::after {
    display: none;
  }

  .sd-section-before::before {
    left: 50%;
    transform: translateX(-50%);
    top: -38px;
  }

  .sd-section-after::after {
    display: none;
  }

  .et_pb_button {
    width: 100% !important;
  }

  header.et-l.et-l--header.has-scrolled {
    top: -40px;
  }
}

@media(max-width: 980px) {
  div#et-main-area {
    padding-top: 60px;
  }
}

@media(max-width: 768px) {
  div#et-main-area {
    padding-top: 40px;
  }
}

@media (max-width: 980px) {
  #sd-header .et_pb_menu_inner_container {
    display: flex;
  }

  #sd-header .et_pb_menu__logo-wrap {
    margin-bottom: 0px !important;
  }

  #sd-header .et_pb_menu__wrap {
    justify-content: flex-end;
  }

  ul.et_mobile_menu li.menu-item-has-children .mobile-toggle,
  .et-db #et-boc .et-l ul.et_mobile_menu li.menu-item-has-children .mobile-toggle {
    width: 100%;
    justify-content: flex-end;
  }

  #sd-header-section .et_pb_menu .et_mobile_nav_menu .mobile_nav ul.et_mobile_menu {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fff0e1 !important;
    z-index: 9999;
    border: none;
    box-shadow: none;
    padding: 150px 30px 150px 30px;
    overflow-y: scroll !important;
  }

  header.et-l.et-l--header.has-scrolled #sd-header-section .et_pb_menu .et_mobile_nav_menu .mobile_nav ul.et_mobile_menu {
    top: 0;
    padding: 60px 30px 20px 30px;
  }

  #sd-header-section .et_pb_menu .et_mobile_nav_menu .mobile_nav ul.et_mobile_menu li>a {
    color: #ffffff;
    font-family: "Anton-Regular";
    text-transform: uppercase;
    font-size: 40px;
    line-height: 36px;
    font-weight: 700;
    padding: 16px 0 0px 30px;
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: 0px;
  }

  .sd-nomnom-btn a::before,
  .sd-vegan-btn a::before {
    width: 50px;
    height: 20px;
    display: flex;
    align-items: center;
    top: auto;
    justify-content: center;
  }

  .sd-nomnom-btn a::after,
  .sd-vegan-btn a::after {
    transform: rotate(90deg);
    top: auto !important;
  }

  .sd-nomnom-btn a::before,
  .sd-vegan-btn a::before {
    left: 230px;
  }

  .sd-nomnom-btn a::after,
  .sd-vegan-btn a::after {
    left: 200px;
  }

  li.menu-item.wpmenucart a.wpmenucart-contents {
    height: 70px;
  }

  li.menu-item.wpmenucart {
    width: 100%;
    margin-top: 20px;
  }

  li.menu-item.wpmenucart a {
    justify-content: center;
    padding: 20px !important;
  }

  .et_pb_menu_0_tb_header .et_pb_menu_inner_container>.et_pb_menu__logo-wrap,
  .et_pb_menu__wrap .mobile_menu_bar {
    z-index: 9999999 !important;
  }
}


@media (max-width: 980px) {

  ul.sub-menu.visible,
  ul.sub-menu.visible li {
    padding: 0 !important;
  }

  .et_pb_module .mobile_menu_bar:before {
    top: 12px;
  }
}

@media (max-width:910px) {
  .wwk-sidebar--top {
    height: 45px !important;
  }

  .et_pb_section_1_tb_header.et_pb_section {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
}

@media (max-width: 980px) {
  .sd-hardloper-product .sd-product-list {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 1280px) {
  .sd-smaken-product .sd-product-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .sd-smaken-product .sd-product-list .product-item {
    display: flex;
  }

  .sd-smaken-product .sd-product-list .product-item a {
    justify-content: flex-start;
  }

  .sd-smaken-product .sd-product-list .product-img img {
    max-width: 100%;
    height: auto;
  }

  .sd-smaken-product .sd-product-list .product-btn {
    margin-top: 10px;
  }
}

@media (max-width: 600px) {
  .sd-inline-btn .et_pb_button_module_wrapper {
    display: flex;
    justify-content: center;
  }

  .et_pb_button {
    width: 80%;
    text-align: center;
  }
}

@media (max-width: 1300px) {
  .sd-recensie-section .sd-transparent-title::after {
    right: 165px;
  }

  .sd-recensie-section .sd-transparent-title::before {
    left: 210px;
  }
}

@media (max-width: 1175px) {
  .sd-recensie-section .sd-transparent-title::after {
    right: 125px;
  }

  .sd-recensie-section .sd-transparent-title::before {
    left: 170px;
  }

  .sd-recensie-has-after::after {
    width: 230px;
  }
}

@media (max-width: 1050px) {
  .sd-recensie-section .sd-transparent-title::after {
    right: 65px;
  }

  .sd-recensie-section .sd-transparent-title::before {
    left: 110px;
  }
}

@media (max-width: 980px) {

  .sd-recensie-section .sd-transparent-title::before,
  .sd-recensie-section .sd-transparent-title::after,
  .sd-recensie-has-before::before,
  .sd-recensie-has-after::after,
  .sd-copyright-has-after::after,
  .sd-recensie-slider-container .slick-dots {
    display: none !important;
  }

  .sd-recensie-slider-container button.slick-next.slick-arrow,
  .sd-recensie-slider-container button.slick-prev.slick-arrow {
    bottom: -80px;
  }
}

@media (max-width: 480px) {
  .sd-recensie-slider-container ul.slick-dots {
    display: none !important;
  }

  .sd-recensie-section .sd-title-has-img-before::before {
    left: 18%;
    top: -70%;
    width: 180px;
    height: 100px;
  }

  h2.sd-transparent-title {
    font-size: 50px !important;
  }
}

/* Default settings */
.slick-slide {
  width: auto;
  /* Ensures normal behavior for larger screens */
}

/* Mobile settings */
.sd-recensie-slider-container {
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

@media (max-width: 768px) {

  .sd-recensie-slider-container .slick-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    margin-bottom: 80px;
  }

  .sd-recensie-slider-container .slick-list {
    overflow: hidden !important;
  }

  .sd-recensie-slider-container .sd-recensie-slide {
    margin: 0 20px;
  }


}

@media (max-width:980px) {

  button.single_add_to_cart_button.button.alt.disabled.wc-variation-selection-needed,
  button.single_add_to_cart_button.button.alt {
    width: 100%;
  }

  .sd-woo-product-tabs ul.et_pb_tabs_controls {
    width: 90% !important;
  }
}


@media (max-width: 650px) {
  .woocommerce div.product form.cart .variations tbody tr {
    display: flex;
    flex-direction: column;
  }

  .woocommerce div.product form.cart .variations td select {
    width: 100%;
    margin-right: 0;
  }

  .et_pb_wc_add_to_cart form.cart .variations td.value span:after {
    position: absolute;
    top: 9px;
  }
}

/* Functions */

/* VERTICAL TIMELINE */

.sd-vertical-timeline-post {
  display: flex;
  margin-bottom: 20px;
  position: relative;
  align-items: center;
}

.sd-vertical-timeline-post:nth-of-type(even) {
  flex-direction: row-reverse;
}

.sd-vertical-timeline-left {
  flex: 1;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sd-vertical-timeline-right {
  flex: 1;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sd-vertical-timeline-line {
  position: absolute;
  width: 22px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;

  background-image: radial-gradient(circle,
      #ff4a4a 0%,
      #ff4a4a 43%,
      transparent 0%);
  background-size: 20px 32px;
  background-repeat: repeat-y;
  background-position: center;
}

.sd-vertical-timeline .sd-vertical-timeline-post .sd-vertical-timeline-thumbnail img {
  border-radius: 8px;
  width: 260px;
  height: 150px;
  object-fit: cover;
}

.sd-vertical-timeline h2.sd-vertical-timeline-title.sd-transparent-title {
  font-size: 80px;
  text-align: center;
}

.sd-vertical-timeline .sd-vertical-timeline-text {
  width: 80%;
  color: #000d3c;
}

.sd-vertical-timeline .sd-vertical-timeline-post:first-of-type .sd-vertical-timeline-thumbnail img,
.sd-vertical-timeline .sd-vertical-timeline-post:nth-of-type(3) .sd-vertical-timeline-thumbnail img,
.sd-vertical-timeline .sd-vertical-timeline-post:last-of-type .sd-vertical-timeline-thumbnail img {
  transform: rotate(-5deg);
  margin-bottom: -30px;
}

.sd-vertical-timeline .sd-vertical-timeline-post:nth-of-type(2) .sd-vertical-timeline-thumbnail img,
.sd-vertical-timeline .sd-vertical-timeline-post:nth-of-type(4) .sd-vertical-timeline-thumbnail img {
  transform: rotate(5deg);
  margin-bottom: -30px;
}

.sd-vertical-timeline .sd-vertical-timeline-post:first-of-type .sd-vertical-timeline-line:before {
  content: url(/wp-content/uploads/2024/06/box-icon.svg);
  display: flex;
  justify-content: center;
}

.sd-vertical-timeline .sd-vertical-timeline-post:nth-of-type(2) .sd-vertical-timeline-line:before {
  content: url(/wp-content/uploads/2024/06/cart-icon-1.svg);
  display: flex;
  justify-content: center;
}

.sd-vertical-timeline .sd-vertical-timeline-post:nth-of-type(3) .sd-vertical-timeline-line:before {
  content: url(/wp-content/uploads/2024/06/calendar-icon-1.svg);
  display: flex;
  justify-content: center;
}

.sd-vertical-timeline .sd-vertical-timeline-post:nth-of-type(4) .sd-vertical-timeline-line:before {
  content: url(/wp-content/uploads/2024/06/Golf-icon-1.svg);
  display: flex;
  justify-content: center;
}

.sd-vertical-timeline .sd-vertical-timeline-post:last-of-type .sd-vertical-timeline-line:before {
  content: url(/wp-content/uploads/2024/06/Vegan-icon-1.svg);
  display: flex;
  justify-content: center;
}

@media (max-width: 980px) {
  .sd-vertical-timeline-line {
    display: none;
  }

  .sd-vertical-timeline-post {
    flex-direction: column;
    margin-top: 60px;
  }

  .sd-vertical-timeline-post:nth-of-type(even) {
    flex-direction: column;
    margin-top: 60px;
  }

  .sd-vertical-timeline .sd-vertical-timeline-text {
    text-align: center;
  }
}

/* FAQ */

/* ----- FAQ ----- */

.sd-faq-row {
  display: flex;
  flex-wrap: wrap;
}

.sd-faq-row .sd-faq-filter {
  /* background-color: #f8f8f8ec; */
  width: 350px;
  margin-right: 50px;
  padding: 50px;
  padding-top: 0;
  border-radius: 4px;
}

.sd-faq-row .sd-faq-filter h2 {
  margin-bottom: 25px;
}

.sd-faq-row .sd-faq-filter button {
  appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  border: none;
  box-shadow: none;
  font-size: 15px;
  color: #162e87;
  font-family: 'Anton';
  line-height: 18px;
  padding: 30px 50px 30px 20px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #162e87;
  width: 100%;
  text-align: left;
  font-weight: 600;
  /* margin: 10px 0; */
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}

.sd-faq-row .sd-faq-filter button::after {
  content: url(/wp-content/uploads/2024/06/arrow-rechts-icon.svg);
  background: #ffffff;
  border: 1px solid #162e87;
  border-radius: 50%;
  padding: 15px;
  position: absolute;
  right: 0;
  transition: all 300ms ease 0ms;
}

.sd-faq-row .sd-faq-filter button.active::after {
  /* transform: rotate(-90deg); */
  content: url(/wp-content/uploads/2024/06/Arrow-rechts-icon-white.svg);
  background: #ff4a4a;
  border: 1px solid #ff4a4a;
}

.sd-faq-row .sd-faq-filter button:hover::after {
  /* transform: rotate(-90deg); */
  content: url(/wp-content/uploads/2024/06/Arrow-rechts-icon-white.svg);
  background: #ff4a4a;
  border: 1px solid #ff4a4a;
}

.sd-faq-row .sd-faq-container {
  width: calc(100% - 400px);
}

.sd-faq-row .sd-faq-container .sd-faq {
  padding: 24px 30px;
  margin-bottom: 10px;
  border-bottom: 1px solid #162e87;
}

.sd-faq-row .sd-faq-container .sd-faq p.sd-faq-title {
  font-weight: 600;
  padding-bottom: 0px;
  padding-right: 30px;
  position: relative;
  cursor: pointer;
  color: #000d3c;
}

.sd-faq-row .sd-faq-container .sd-faq p.sd-faq-title::before,
.sd-faq-row .sd-faq-container .sd-faq p.sd-faq-title::after {
  content: "";
  height: 1px;
  width: 9px;
  background-color: #000d3c;
  position: absolute;
  right: 5px;
  top: 13px;
  left: auto;
  margin-top: 0;
  display: block;
  transition: all 0.3s;
}

.sd-faq-row .sd-faq-container .sd-faq p.sd-faq-title::before {
  transform: rotate(90deg);
}

.sd-faq-row .sd-faq-container .sd-faq.active p.sd-faq-title::before {
  transform: none;
  opacity: 0;
}

.sd-faq-row .sd-faq-container .sd-faq p.sd-faq-antwoord {
  padding-top: 10px;
}

@media (max-width: 980px) {
  .sd-faq-row .sd-faq-filter {
    width: 100%;
    margin-right: 0;
    margin-bottom: 50px;
  }

  .sd-faq-row .sd-faq-container {
    width: 100%;
  }
}



/*---- Over ons ------*/

.sd-teamleden {
  display: flex !important;
  flex-wrap: wrap;
  gap: 20px;
}

.sd-teamlid {
  flex: 1 1 calc(33.333% - 20px);
  box-sizing: border-box;
}

.sd-teamleden .sd-teamlid .sd-teamlid-imgcontainer img {
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 10000%;
  max-height: 10000%;
  width: 300px;
  height: 400px;
  min-width: 100%;
  min-height: 100%;
  border-radius: 50%;
}

.sd-teamleden .sd-teamlid h3,
.sd-teamleden .sd-teamlid h4,
.sd-teamleden .sd-teamlid p {
  text-align: center;
}

.sd-teamleden .sd-teamlid h3 {
  margin-top: 20px;
}

.sd-teamleden .sd-teamlid h4 {
  font-size: 20px;
}

.sd-teamleden .sd-teamlid p {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}



@media (max-width: 980px) {
  .sd-teamleden {
    flex-direction: column;
  }

  .sd-teamlid {
    flex: 1 1 calc(50% - 20px);
    display: flex;
    flex-direction: column;
  }

  .sd-teamlid-imgcontainer {
    margin-left: auto;
    margin-right: auto;
  }

  .sd-teamleden .sd-teamlid .sd-teamlid-imgcontainer img {
    min-width: auto;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .sd-teamlid {
    flex: 1 1 100%;
  }
}

/* BROWNIESHOP */

.sd-brownie-cat .sd-hardloper-product .sd-product-list h3 {
  text-align: center;
}

/* Date picker */

.dp__outer_menu_wrap .dp--tp-wrap,
.dp__menu .dp__arrow__bottom {
  display: none;
}

/* Account pagina */
/* Account Dashboard */

#post-79 div.et_pb_section_0,
#et-main-area:has(#post-79) {
  background-color: #fff0e1;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul .is-active a {
  background-color: #ff4a4a;
  border-radius: 50px;
  padding: 10px 20px;
  margin-bottom: 10px;
  margin-left: -20px;
  font-weight: 600;
}

.woocommerce-account p {
  font-family: Helvetica, sans-serif;
}

.woocommerce div.woocommerce-MyAccount-content {
  background-color: #fff;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, .075);
}

@media (max-width: 768px) {
  .woocommerce div.woocommerce-MyAccount-content {
    margin-top: 1rem;
  }
}

/* Account Bestellingen */

table.woocommerce-orders-table {
  font-family: Helvetica, sans-serif;
}

#post-79 div table tbody tr td.woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-actions a.woocommerce-button:hover,
#post-79 div table tbody tr td.woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-actions a.woocommerce-button {
  font-size: 15px;
  margin-left: -1rem;
  padding-inline: 1.5rem !important;
}

#post-79 div table thead tr th.woocommerce-orders-table__header.woocommerce-orders-table__header-order-actions {
  padding-left: 1rem;
}


/* Account downloads */

#post-79 div.woocommerce-info {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  background-color: transparent;
  color: black !important;
  line-height: 1.3;
}

#post-79 div.woocommerce-info a {
  color: #142E88 !important;
}

/* Account adress */

#post-79 div.u-columns.woocommerce-Addresses.col2-set.addresses div header a {
  float: initial;
}

#post-79 div.u-columns.woocommerce-Addresses.col2-set.addresses div header h2 {
  padding-bottom: 10px;
}

#post-79 .u-columns.woocommerce-Addresses div.woocommerce-Address address {
  padding-top: 5px;
}

#post-79 div nav ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Account accountgegevens */

#post-79 div form p button {
  margin-top: 10px;
  font-family: Helvetica, sans-serif;
}

#post-79 div form p button:hover {
  background: #f78367;
  padding: 15px 25px !important;
  margin-top: 10px;
  border: none;
}

#account_display_name {
  margin-bottom: 5px;
}

#post-79 div form fieldset {
  margin-top: 2rem;
}

/* Winkelwagen leeg */

#post-77 div.wc-block-grid.wp-block-product-new.wp-block-woocommerce-product-new.wc-block-product-new {
  font-family: Helvetica, sans-serif;
  font-size: 15px;
}

#post-77 div.wc-block-grid.wp-block-product-new.wp-block-woocommerce-product-new.wc-block-product-new ul li div.wc-block-grid__product-price.price,
#post-77 div.wc-block-grid.wp-block-product-new.wp-block-woocommerce-product-new.wc-block-product-new ul li a div.wc-block-grid__product-title {
  font-size: 15px;
}

/* CSS UIT CUSTOMIZER */

#box-picker-app {
  background-color: #fff0e1;
}

.delivery-date-wrapper label {
  margin-top: 15px !important;
  margin-bottom: 10px !important;
  font-size: 14px;
  color: #000;
}

#shipping-option {
  display: none;
}

.wc-block-components-product-details,
.wc-item-meta {
  list-style: none !important;
  padding: 0px !important;
}

.wc-block-components-order-summary-item__individual-prices.price.wc-block-components-product-price,
.wc-block-components-product-details__leverdatum,
.wc-block-components-product-metadata__description {
  display: none;
}

.wc-item-meta li {
  display: flex;
  align-items: center;
}

#contact-fields {
  margin-bottom: 10px !important;
}

.woocommerce-billing-fields h3 {
  display: none;
}

.sd-faq-antwoord {
  padding-top: 20px !important;
}

@media (max-width: 980px) {
  .sd-faq-row .sd-faq-filter {
    padding: 0px !important;
  }
}

.sd-faq-row .sd-faq-filter button::after {
  padding: 15px 15px 10px !important;
}

.nf-field-container .nf-field-element {
  margin-bottom: 20px;
}

/* .sd-accordeon-module .et_pb_toggle_open {
    padding: 30px 0px !important;
}

.sd-accordeon-module .et_pb_toggle {
    margin-bottom: 0px !important;
}
 */

.page-id-78 .woocommerce-form-coupon-toggle .woocommerce-info {
  background: #152e88;
}

#box-picker-app {
  min-height: 100vh;
}