/*
Theme Name: luxurywatches23
Text Domain: luxurywatches23
*/

@import url("https://fonts.googleapis.com/css2?family=Jost:wght@200;300;400;500;700;800&family=Judson:wght@400;700&family=Karla:wght@200;300;400;500;600&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: 1320px !important;
}

body {
  font-family: "Karla", sans-serif !important;
  min-height: 100vh;
  font-size: 16px;
}

p,
.container {
  font-size: 18px;
}

/* *{outline: 1px solid red;} */
@media only screen and (max-width: 680px) {
  p,
  .container {
    font-size: 16px;
  }
}

.to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  border-radius: 100%;
  background: #dce0cd;
  width: 35px;
  height: 35px;
  text-align: center;
  padding-top: 2px;
  box-shadow: 1px 2px 6px 1px #9a9a9a;
  cursor: pointer;
  transition: ease 0.3s all;
  -moz-transition: ease 0.3s all;
  -webkit-transition: ease 0.3s all;
}

.to-top:hover {
  background: #e5e8db;
}

.to-top span.icon {
  color: #333;
  font-size: 32px;
}

main {
  min-height: 100vh;
}

h1,
h3,
h3 {
  font-family: "Judson", serif !important;
}

a {
  text-decoration: none !important;
  color: #777;
}

a:hover,
.container a:hover {
  text-decoration: underline;
}

.container a {
  color: #777;
}

.container a:hover {
  color: #444;
}

a.theme-button {
  font-family: "Karla", sans-serif;
  display: inline-block;
  line-height: 1;
  background-color: #2b2b2b !important;
  font-size: 15px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 3px;
  color: #fff !important;
  fill: #fff;
  text-align: center;
  transition: all 0.3s;
}

.hide-for-mobile {
  display: block;
}

/*article list*/

.articleslist {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Adjust spacing between posts */
  margin: 20px 0;
}

.articleslist .elementor-column {
  background: #ffffff; /* White background for each post card */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  overflow: hidden; /* Ensure content stays within rounded corners */
  flex: 1 1 calc(33.333% - 20px); /* Three columns layout */
  max-width: calc(33.333% - 20px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.articleslist .elementor-column img {
  width: 100%; /* Full width image */
  height: auto;
  display: block;
}

.articleslist .elementor-column h3 {
  font-size: 20px; /* Adjust heading size */
  font-weight: 600;
  margin: 10px;
  color: #333; /* Darker text color */
}

.articleslist .elementor-column h3 a {
  text-decoration: none;
  color: inherit; /* Inherit color from heading */
  transition: color 0.3s;
}

.articleslist .elementor-column h3 a:hover {
  color: #0073aa; /* Add hover effect for title links */
}

.articleslist .elementor-post-info {
  font-size: 18px; /* Adjust font size for category */
  color: #999; /* Grey color for category text */
  margin: 10px;
}

.articleslist .pagination {
  margin-top: 20px;
  text-align: center;
}

.articleslist .pagination a {
  padding: 5px 10px;
  margin: 0 5px;
  background: #0073aa;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.articleslist .pagination a:hover {
  background: #005580;
}

.articleslist .pagination .current {
  padding: 5px 10px;
  background: #444;
  color: #fff;
  border-radius: 5px;
}

/*16-12-2024*/
/* Grid Layout Styling */
.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.posts-grid .post-item {
  width: calc(33.333% - 20px); /* 3 columns with some gap */
  margin-bottom: 20px;
  box-sizing: border-box;
  border: 1px solid #e0e0e0;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 5px;
}

.posts-grid .post-item .post-thumbnail {
  margin-bottom: 10px;
  max-width: 100%;
  height: auto;
}

.posts-grid .post-item .post-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 10px;
}

.posts-grid .post-item .post-author,
.posts-grid .post-item .post-date,
.posts-grid .post-item .post-reading-time {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 5px;
}

/* Pagination Styling */
.pagination {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.pagination .pagination__item {
  display: inline-block;
}

.pagination .pagination__item .pagination__link {
  text-decoration: none;
  color: #000;
  display: flex;
  align-items: center;
  padding: 5px 10px;
  background-color: #f5f5f5;
  border-radius: 5px;
}

.pagination .pagination__item .pagination__link:hover {
  background-color: #e0e0e0;
}

.pagination .pagination__item .pagination__label {
  display: none;
}

.pagination .pagination__item .icon {
  margin-right: 5px;
}

/* Clear float for the rows */
.clear {
  clear: both;
}

/*16-12-2024*/
@media screen and (max-width: 680px) {
  .hide-for-mobile {
    display: none !important;
  }
}

.show-for-mobile {
  display: none !important;
}

@media screen and (max-width: 680px) {
  .show-for-mobile {
    display: block !important;
  }
}

.show-for-tablet {
  display: none;
}

@media screen and (max-width: 900px) {
  .show-for-tablet {
    display: block;
  }
}

.hide-for-tablet {
  display: block;
}

@media screen and (max-width: 900px) {
  .hide-for-tablet {
    display: none !important;
  }
}

@media screen and (max-width: 680px) {
  .container #main {
    padding: 20px 0;
  }
}

.icon {
  font-size: 16px;
}

/* WOO */

header {
  transition: ease 0.8s all;
  -moz-transition: ease 0.8s all;
  -webkit-transition: ease 0.8s all;
}

/* { top: 0;
  transition: ease 0.8s all;
  -moz-transition: ease 0.8s all;
  -webkit-transition: ease 0.8s all;
}   */

header.main {
  /*  position:fixed;*/
  position: sticky;
  width: 100%;
  z-index: 1000;
  background: #fff;
  transition: all 0.9s ease;
  -moz-transition: all 0.9s ease;
  -webkit-transition: all 0.9s ease;
  top: 28px;
}

header.main.scrolled {
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3 {
  padding: 0;
  margin: 0;
  font-size: 1em;
  color: #333;
  font-family: "Judson", serif;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 500;
}

.woocommerce ul.products li.product .price {
  color: #777;
  font-size: 18px;
}

.woocommerce ul.products li.product a img {
  transition: ease 0.5s all;
  -moz-transition: ease 0.5s all;
  -webkit-transition: ease 0.5s all;
}

.woocommerce div.product .product_title {
  font-size: 4rem;
}

.woocommerce .main-product .product_title {
  margin-bottom: 20px;
}

.woocommerce .product .entry-summary .woocommerce-Price-amount.amount {
  font-family: "Karla", sans-serif;
  font-size: 25px;
  color: #555;
}

.woocommerce div.product form.cart .button {
  vertical-align: middle;
  float: left;
  font-size: 18px;
  background: #222;
  color: #fff;
  padding: 15px;
  width: 90%;
}

.woocommerce div.product form.cart .button:hover {
  background: #444;
}

.woocommerce div.product .quantity,
.sku_wrapper {
  display: none;
}

.product-usps {
  font-size: 15px;
  padding: 20px 0;
}

.product-usps ul {
  list-style: none;
  padding-left: 0;
}

.product-usps li {
  width: 20%;
  float: left;
  text-align: center;
  color: #333;
}

.product-usps .icon {
  margin-bottom: 10px;
  font-size: 1.3em !important;
  color: #4b4b4b;
  text-align: center;
  background-color: #eeefea;
  border-radius: 100px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-weight: 300;
  display: inline-block;
  padding-top: 0px;
}

.product-usps .icon:before {
  font-size: 25px;
}

.product-usps .usp {
  display: block;
  text-align: center;
}

.posted_in {
  font-size: 15px;
}

.product_meta {
  display: none;
}

.product-finance {
  padding: 10px 0;
  border-top: 1px solid #ddd;
  margin-top: 10px;
}

.product-finance p {
  font-size: 14px;
  color: #777;
}

.woocommerce
  div.product
  div.images
  .woocommerce-product-gallery__image:nth-child(n + 2) {
  width: 100%;
}

.woo-thumbs {
  padding: 0;
}

.woo-thumbs.hide-for-mobile {
  max-height: 523px;
  overflow: scroll;
}

.woocommerce-product-gallery__image {
  margin-bottom: 10px;
}

.breadcrumb-wrapper {
  padding: 5px 0;
  font-size: 13px;
  background: #f8f9f7;
  margin-bottom: 40px;
}

.woocommerce-cart .breadcrumb-wrapper,
.woocommerce-checkout .breadcrumb-wrapper {
  margin-bottom: 0;
}

.woocommerce-breadcrumb {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 13px !important;
}

.woocommerce #content div.product div.images,
.woocommerce div.product div.images,
.woocommerce-page #content div.product div.images,
.woocommerce-page div.product div.images {
  width: 55%;
}

.woocommerce #content div.product div.summary,
.woocommerce div.product div.summary,
.woocommerce-page #content div.product div.summary,
.woocommerce-page div.product div.summary {
  /*  width:  43%;*/
  width: 42%;
}

.related .add_to_cart_button {
  display: none !important;
}

.related h2,
.single-product-headline {
  font-size: 37px;
  font-family: "Judson", serif;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  margin: 0 0 40px 0;
  border-top: 1px solid #e9e9e9;
  padding-top: 40px;
}

@media only screen and (max-width: 680px) {
  .related h2 {
    font-size: 25px;
  }
}

.woocommerce-message {
  font-size: 18px !important;
}

.cart-icon {
  position: relative;
}

.cart-count {
  background: #dce0cd;
  color: #333;
  font-size: 13px;
  border-radius: 10px;
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  top: -8px;
  right: -8px;
  text-align: center;
}

.woocommerce table.shop_attributes td p {
  margin: 0;
  padding: 6px 0;
  font-size: 14px;
  font-style: normal;
}

.woocommerce table.shop_attributes {
  font-size: 13px;
  margin-top: 30px;
}

.fader {
  background-image: url(../images/fader.png);
  background-repeat: repeat-x;
  height: 59px;
  max-width: 570px;
  position: absolute;
  width: 100%;
  margin-top: -60px;
  position: absolute;
}

@media only screen and (max-width: 680px) {
  .fader {
    max-width: 360px;
  }
}

#show-attributes {
  text-align: center;
  margin: 0 auto;
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-top: -10px;
  text-decoration: underline !important;
  cursor: pointer;
}

.woocommerce-tabs {
  display: none;
}

ul.products {
  text-align: center;
}

.nordea {
  height: 60px !important;
  margin-left: 10px;
  margin-top: -1px;
  line-height: normal;
}

a.calculate {
  background: #e8e8e8 !important;
  color: #222 !important;
}

@media only screen and (max-width: 680px) {
  .woocommerce #content div.product div.images,
  .woocommerce div.product div.images,
  .woocommerce-page #content div.product div.images,
  .woocommerce-page div.product div.images {
    width: 100%;
  }

  .woocommerce #content div.product div.summary,
  .woocommerce div.product div.summary,
  .woocommerce-page #content div.product div.summary,
  .woocommerce-page div.product div.summary {
    width: 100%;
  }

  .woo-thumbs.show-for-mobile .woocommerce-product-gallery__image {
    width: 80px !important;
    float: left;
    margin-right: 6px;
  }

  .woo-thumbs.show-for-mobile .woocommerce-product-gallery__image:last-child {
    margin-right: 0px;
  }

  .main-image {
    padding: 0;
  }
}

.filters li {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
  text-align: left !important;
}

.filters li h2 {
  font-family: "Karla", sans-serif !important;
  text-transform: none !important;
  padding: 0 !important;
  margin: 0 0 10px 0 !important;
}

.woocommerce-shop .page-title {
  display: none;
}

.woocommerce-pagination ul {
  border: 0 !important;
  margin-bottom: 210px;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  color: #555 !important;
}

nav.woocommerce-pagination {
  margin-bottom: 20px;
}

.woocommerce-pagination li {
  border: 0 !important;
  margin-right: 10px !important;
}

.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: #dce0cd !important;
  color: #333 !important;
  border-radius: 100%;
  width: 35px;
}

.single-product .single_add_to_cart_button {
  margin-top: 10px !important;
  text-transform: uppercase;
  width: 100%;
}

/*.single-product .main-wrapper {
  background:  #f2f2f2;
}*/

.single-product .breadcrumb-wrapper {
  margin-bottom: 0;
}

.buy-extras {
  margin: -15px 0 20px 0;
}

.buy-extras .reserve-watch,
.buy-extras .suggestion-watch {
  border: 1px solid #ddd;
  padding: 7px 10px;
  font-size: 15px;
  border-radius: 3px;
  color: #333;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48%;
  text-align: center;
  cursor: pointer;
}

.buy-extras .reserve-watch:hover,
.buy-extras .suggestion-watch:hover {
  background-color: #fafafa;
}

@media only screen and (max-width: 680px) {
  .buy-extras .reserve-watch,
  .buy-extras .suggestion-watch {
    width: 100%;
    margin-bottom: 5px;
  }
}

.buy-extras span {
  margin-right: 5px;
}

.buy-extras .suggestion-watch {
  margin-left: 10px;
}

@media only screen and (max-width: 680px) {
  .buy-extras .suggestion-watch {
    margin-left: 0px;
  }
}

.product-usps {
  font-size: 14px;
  color: #777;
}

.product-usps svg {
  width: 9px !important;
  margin: 0 2px;
  color: #dce0cd;
}

.small-desc {
  font-size: 16px;
}

.main-product {
  margin-top: 40px !important;
}

.main-product p.price {
  padding: 0;
  margin: -10px 0 20px 0;
  font-family: "Judson", sans-serif;
}

.main-product p.price .woocommerce-Price-amount.amount {
  color: #333;
}

/*.product-extras {
  margin-bottom: 40px;
}*/

.product-extras p {
  line-height: 36px;
}

.product-extras h3 {
  color: black;
  font-size: 30px;
  text-transform: uppercase;
  margin-top: 20px;
}

.product-video {
  text-align: center;
}

.product-video iframe {
  width: 92%;
  height: 370px;
}

/* Mobil cart */
@media only screen and (max-width: 680px) {
  .single-product .product.main-product,
  .product-extras .row {
    padding: 0px 15px;
  }

  .product-extras .row {
    margin-top: 20px;
  }

  .main-product {
    margin-top: 0px !important;
  }

  .main-product .product_title {
    text-align: center !important;
    margin-bottom: 10px !important;
  }

  .main-product .price {
    text-align: center !important;
  }

  .main-product p.price {
    margin-bottom: 0px;
  }

  #wooswipe {
    padding-bottom: 0px !important;
  }

  .product-usps {
    padding: 0px !important;
  }

  .woocommerce div.product div.summary {
    margin-bottom: 5px !important;
  }

  .buy-extras .suggestion-watch {
    margin-top: 5px !important;
  }

  .related h2,
  .single-product-headline {
    padding-top: 20px !important;
    margin: 0 0 20px 0 !important;
  }
  .woocommerce
    .related.products
    ul.products
    li.product
    .woocommerce-loop-product__title {
    padding-top: 0px !important;
    margin: 0 0 0px 0 !important;
  }

  /* Jornalen*/
  .single-hero-content {
    padding-top: 0px !important;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 100%;
  }
}

.single-product .woocommerce-message {
  font-size: 18px !important;
  margin-top: 40px;
  margin-bottom: 10px;
}

.woocommerce-cart .woocommerce-cart-form {
  width: 62%;
  float: left;
}

.woocommerce-cart .cart-collaterals {
  width: 35%;
  float: right;
}

.woocommerce-cart .cart-collaterals .cart_totals {
  width: 100%;
}

@media only screen and (max-width: 680px) {
  .woocommerce-cart .woocommerce-cart-form {
    width: 100%;
    float: none;
  }

  .woocommerce-cart .cart-collaterals {
    width: 100%;
    float: none;
  }
}

#add_payment_method .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button {
  background: #222;
}

select,
input,
textarea {
  border: 1px solid #ddd;
  padding: 7px 10px;
  font-size: 15px !important;
}

/* Filters WOOF */

.filter-heading .woof_container_inner h4 {
  display: block;
  font-family: "Judson", serif;
  font-size: 18px;
  text-transform: uppercase;
  /*   border-bottom: 1px solid #dddc; */
  /*  padding-bottom: 10px; */
}

.woof label {
  font-size: 14px;
  font-weight: normal;
}

.woof_block_html_items ul {
  padding: 0px !important;
  margin-bottom: 10px;
}

label.woof_checkbox_label {
  padding: 0;
  margin: 0 0 0 10px;
}

ul.woof_list.woof_list_checkbox li {
  padding: 0px !important;
  line-height: 1.3;
}

.woof_products_top_panel {
  display: none;
}

button.woof_reset_search_form {
}

.filter-heading.show-for-mobile {
  display: none;
}

.woof_container {
  margin-bottom: 0px;
}

ul.woof_list {
  margin-bottom: 20px !important;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-range,
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
  background-color: #eeefea !important;
}

.woof .widget_price_filter .ui-slider .ui-slider-handle {
  border-color: #a39e98;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-range,
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
  background-color: #eeefea !important;
}

.woof .woof_container_inner {
  border-bottom: 1px solid #e7e7e7;
  padding: 3px 0 10px 0;
}

.woof_products_top_panel li {
  display: none;
}

.woof_container_inner {
  /*max-height: 200px;
    overflow-y: auto;*/
  margin-bottom: 8px;
}

.woof_block_html_items.woof_closed_block.woof_closed_block {
  max-height: 200px;
  overflow-y: auto;
}

.woof_container_inner.woof_container_inner_varumrke
  .woof_block_html_items.woof_closed_block.woof_closed_block,
.woof_container_inner.woof_container_inner_brands
  .woof_block_html_items.woof_closed_block.woof_closed_block {
  max-height: unset;
  overflow-y: unset;
}

.woof_container_inner .woof_front_toggle {
  font-size: 0px;
}

.woof_container_inner .woof_front_toggle::after {
  content: "+";
  color: #777;
  font-size: 18px;
}

.woof_container_inner .woof_front_toggle.woof_front_toggle_opened::after {
  content: "-";
}

.top-bar .language ul .sek-flag a,
.top-bar .language ul .eng-flag a,
.nav-menu .desktop-menu ul li.menu-item.sek-flag,
.nav-menu .desktop-menu ul li.menu-item.eng-flag,
header
  .main-menu
  .hamburger-container
  .hamburger-menu-wrapper
  .menu-huvudmeny-container
  ul
  .sek-flag
  a,
header
  .main-menu
  .hamburger-container
  .hamburger-menu-wrapper
  .menu-huvudmeny-container
  ul
  .eng-flag
  a {
  font-size: 0px !important;
  width: 24px;
  height: 24px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  opacity: 1 !important;
  padding: 0px !important;
}

header
  .main-menu
  .hamburger-container
  .hamburger-menu-wrapper
  .menu-huvudmeny-container
  ul
  .sek-flag
  a,
header
  .main-menu
  .hamburger-container
  .hamburger-menu-wrapper
  .menu-huvudmeny-container
  ul
  .eng-flag
  a {
  margin: 24px 24px 24px 0px;
}

.top-bar .language ul .sek-flag a,
.nav-menu .desktop-menu ul li.menu-item.sek-flag,
header
  .main-menu
  .hamburger-container
  .hamburger-menu-wrapper
  .menu-huvudmeny-container
  ul
  .sek-flag
  a {
  background-image: url("../images/world.png");
}

.top-bar .language ul .eng-flag a,
.nav-menu .desktop-menu ul li.menu-item.eng-flag,
header
  .main-menu
  .hamburger-container
  .hamburger-menu-wrapper
  .menu-huvudmeny-container
  ul
  .eng-flag
  a {
  background-image: url("../images/United-States-1.png");
}

.top-bar .language ul.sub-menu .sek-flag a,
.nav-menu .desktop-menu ul li.menu-item .sub-menu .sek-flag a,
header
  .main-menu
  .hamburger-container
  .hamburger-menu-wrapper
  .menu-huvudmeny-container
  ul
  li.menu-item
  .sub-menu
  .sek-flag
  a {
  background-image: url("../images/world.png");
}

.top-bar .language ul.sub-menu .eng-flag a,
.nav-menu .desktop-menu ul li.menu-item .sub-menu .eng-flag a,
header
  .main-menu
  .hamburger-container
  .hamburger-menu-wrapper
  .menu-huvudmeny-container
  ul
  li.menu-item
  .sub-menu
  .eng-flag
  a {
  background-image: url("../images/United-States-1.png");
}

.top-bar .language ul.sub-menu {
  margin-top: 5px;
}

.nav-menu .desktop-menu ul li.menu-item.eng-flag,
.nav-menu .desktop-menu ul li.menu-item.sek-flag,
.nav-menu .desktop-menu ul li.menu-item .sub-menu .eng-flag,
.nav-menu .desktop-menu ul li.menu-item .sub-menu .sek-flag {
  display: none;
}

@media only screen and (min-width: 681px) and (max-width: 991px) {
  .fibosearch-container .fibosearch.desktop {
    display: none !important;
  }

  .mobile-version .controls a.fibosearch-icon {
    display: block;
  }

  header .fibosearch.mobile {
    max-width: 540px;
    width: 100%;
    margin: 0px auto;
  }

  .nav-menu ul {
    gap: 24px !important;
  }

  header
    .main-menu
    .hamburger-container
    .hamburger-menu-wrapper
    .menu-huvudmeny-container
    ul
    .sek-flag,
  header
    .main-menu
    .hamburger-container
    .hamburger-menu-wrapper
    .menu-huvudmeny-container
    ul
    .eng-flag,
  header
    .main-menu
    .hamburger-container
    .hamburger-menu-wrapper
    .menu-huvudmeny-container
    ul
    li.menu-item
    .sub-menu
    .sek-flag,
  header
    .main-menu
    .hamburger-container
    .hamburger-menu-wrapper
    .menu-huvudmeny-container
    ul
    li.menu-item
    .sub-menu
    .eng-flag {
    display: none !important;
  }
}

@media only screen and (max-width: 680px) {
  header
    .main-menu
    .hamburger-container
    .hamburger-menu-wrapper
    .menu-huvudmeny-container
    ul
    .sek-flag,
  header
    .main-menu
    .hamburger-container
    .hamburger-menu-wrapper
    .menu-huvudmeny-container
    ul
    .eng-flag {
    width: 25px;
    height: auto;
    display: inline-block;
    vertical-align: top;
    border: 0px;
  }

  header
    .main-menu
    .hamburger-container
    .hamburger-menu-wrapper
    .menu-huvudmeny-container
    ul
    .sek-flag
    + .eng-flag {
    margin-left: 15px;
  }

  header
    .main-menu
    .hamburger-container
    .hamburger-menu-wrapper
    .menu-huvudmeny-container
    ul
    .eng-flag
    + .sek-flag {
    margin-left: 15px;
  }

  header
    .main-menu
    .hamburger-container
    .hamburger-menu-wrapper
    .menu-huvudmeny-container
    ul
    .sek-flag
    a,
  header
    .main-menu
    .hamburger-container
    .hamburger-menu-wrapper
    .menu-huvudmeny-container
    ul
    .eng-flag
    a {
    margin: 24px 0px 24px 0px;
  }

  header
    .main-menu
    .hamburger-container
    .hamburger-menu-wrapper
    .menu-huvudmeny-container
    ul.menu {
    border-bottom: 1px solid rgb(112 112 112 / 20%);
  }
}

.woof .widget_price_filter .price_slider {
  margin-top: 1em;
}

.woof_submit_search_form_container button.button.woof_reset_search_form {
  background-color: #eeefea !important;
  color: #333;
  text-transform: uppercase;
  font-weight: normal;
  font-size: 15px;
}

.woof input[type="checkbox"] {
  margin: 0px;
}

@media only screen and (max-width: 680px) {
  .filter-heading.show-for-mobile {
    display: block;
    padding: 0;
    max-width: 90%;
    margin: 0 auto;
  }

  .filter-wrapper {
    display: none;
  }

  .filter-wrapper {
    background: #fff;
  }

  .woof .woof_container_inner {
    background-color: transparent;
  }

  .woof_block_html_items ul li:not(:last-child) {
    margin-bottom: 2px !important;
  }

  .woof_block_html_items ul li:not(:last-child) ul li {
    margin-bottom: 2px !important;
  }

  .woof_block_html_items ul li label {
    margin-left: 22px;
  }

  .woof input[type="checkbox"] {
    appearance: none;
    position: relative;
  }

  .woof input[type="checkbox"]::before,
  .woof input[type="checkbox"]::after {
    box-sizing: border-box;
    content: "";
    position: absolute;
  }

  .woof input[type="checkbox"]::before {
    background-color: #fff;
    border: 1px solid #adadad;
    height: 20px;
    width: 20px;
    left: 0;
    top: -10px;
    font-size: 12.62363px;
    font-weight: 400;
    color: #000;
  }

  .woof input[type="checkbox"]:hover:before {
    border: 1px solid #adadad;
  }

  .woof input[type="checkbox"]::after {
    background: none;
    border-bottom: 1px solid #000;
    border-left: 1px solid #000;
    height: 5px;
    left: 5px;
    margin-top: -0.32rem;
    top: 50%;
    transform: scale(0) rotate(-45deg);
    width: 10px;
  }

  .woof input[type="checkbox"]:checked::after {
    opacity: 1;
    transform: scale(1) rotate(-45deg);
  }

  .woof .woof_container_inner {
    padding: 0 !important;
    background-color: transparent !important;
    border-bottom: 1px solid #000;
    margin-block-end: 1.5rem;
    padding-block-end: 1.5rem;
  }

  .woof .woof_price_filter .woof_container_inner {
    padding-bottom: 20px !important;
  }

  .filter-heading .woof_container_inner h4 {
    font-size: 16px;
  }
}

/* Filters */
.filter-heading span.title {
  display: block;
  font-family: "Judson", serif;
  font-size: 18px;
  text-transform: uppercase;
  float: left;
}

.filter-heading span.icon {
  float: right;
  margin-top: 6px;
  font-size: 22px;
  color: #999;
}

.filters img,
.filters .count {
  display: none !important;
}

.filters {
  width: 80%;
}

.filter-border {
  border-bottom: 1px solid #dddc;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.filter-choices {
  margin: 15px 0;
  border-bottom: 1px solid #dddc;
  padding-bottom: 20px;
}

.filter-choices.hidden {
  display: none;
}

.filter-choice {
  font-size: 14px;
}

.filter-choice input {
  margin-right: 10px;
  color: #ddd;
}

.products span.product-category {
  font-size: 12px;
  display: block;
  z-index: 999;
  background-color: rgba(238, 239, 234, 0.5);
  padding: 4px 15px;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 8px;
}

.products span.product-category:hover {
  color: #333 !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  float: left;
  margin-bottom: 25px !important;
}

.woocommerce .woocommerce-result-count {
  margin: 4px 0 1em;
  font-size: 15px;
}

a.open-filters {
  /* border: 1px solid #ddd; */
  padding: 5px 10px;
  font-size: 15px !important;
  color: #fff;
  background: #222;
  text-align: center;
  margin-bottom: 15px;
  text-transform: uppercase;
}

a.open-filters span {
  display: inline-block;
  vertical-align: middle;
}

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

@media only screen and (max-width: 680px) {
  .woocommerce-ordering,
  .woocommerce-ordering select {
    width: 100%;
    margin-top: 5px;
  }

  .woocommerce-ordering {
    float: unset !important;
    max-width: 90%;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .woocommerce-ordering select {
    background-color: #fff;
    background: #fff;
  }
}

.product-attributes table {
  width: 100%;
  display: table;
}

th.woocommerce-product-attributes-item__label {
  width: 200px;
}

.woocommerce-product-attributes-item__value p {
  margin-top: 10px;
}

th.woocommerce-product-attributes-item__label,
.woocommerce-product-attributes-item__value {
  border-bottom: 1px solid #e9e9e9;
  padding-left: 15px;
}

tr.woocommerce-product-attributes-item:nth-child(even) {
  background-color: #fafafa;
}

.featherlight-previous img,
.featherlight-next img {
  width: 30px !important;
}

.elementor-products-grid
  ul.products.elementor-grid
  li.product
  a.woocommerce-loop-product__link {
  display: block;
  position: static !important;
}

.woocommerce-products-header__title {
  text-align: center;
  font-size: 37px !important;
  font-weight: 600;
  text-transform: uppercase;
}

@media only screen and (max-width: 680px) {
  .woocommerce-products-header__title {
    text-align: center;
    font-size: 32px !important;
    font-weight: 600;
    text-transform: uppercase;
  }
}

.woocommerce-product-attributes-item--6
  th.woocommerce-product-attributes-item__label,
.woocommerce-product-attributes-item--6
  .woocommerce-product-attributes-item__value {
  border-bottom: 0;
}

/* Gallery */

.yith_slider_arrow span {
  display: inline-block;
  text-align: left !important;
  vertical-align: middle !important;
  /* margin-top: -8px; */
  top: -3px !important;
  position: absolute !important;
  left: 2px !important;
  right: 0 !important;
  margin: 0 auto !important;
  transform: none !important;
}

.slider-next .yith_slider_arrow span {
  left: 3px !important;
}

.images .thumbnails.slider {
  width: 160px !important;
  float: left;
  height: 517px;
}

.images .yith_magnifier_gallery {
  width: 160px !important;
}

.woocommerce-product-gallery__image {
  /*  width: calc(100% - 180px) !important;*/
  float: right;
}

.yith_magnifier_gallery li {
  float: none;
  width: 100% !important;
}

.single-product.woocommerce .thumbnails {
  overflow: auto !important;
}

.woocommerce div.product div.images div.thumbnails {
  padding-top: 0 !important;
}

.yith_magnifier_gallery li a {
  margin-top: 0 !important;
}

.yith_magnifier_gallery .yith_magnifier_thumbnail.active-thumbnail img {
  border: 0 !important;
}

.product-certified .container .row {
  padding: 40px;
}

.certified-container {
  width: 75% !important;
  margin: 0 auto;
  border-left: 1px solid #ddd;
  padding-left: 40px !important;
}

@media only screen and (max-width: 767px) {
  .certified-container {
    width: 75% !important;
    margin: 0 auto;
    border-left: 1px solid #ddd;
    padding-left: 15px !important;
  }

  .related ul.products li:nth-child(5) {
    display: none;
  }
}

.certified-logo {
  text-align: center;
}

.certified-logo img {
  width: 80%;
  margin-top: 20px;
}

.certified-container ul {
  list-style: none;
  padding-left: 0;
}

.certified-container ul li {
  margin-bottom: 10px;
}

.woocommerce-loop-product__title {
  border-top: 0 !important;
}

/* Category */

.catdesc {
  text-align: center;
  width: 70%;
  margin: 0 auto;
}

.catdesc p {
  font-size: 16px;
  margin-bottom: 30px;
}

header.woocommerce-products-header {
  position: relative;
}

/* Wishlist */

.products .wishsuite-button {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 99;
}

.products .wishsuite-button a:hover {
  color: #dce0cd !important;
}

.wishsuite-button svg + span {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 5px 15px;
  font-size: 14px;
}

.archive .wishsuite-button .added svg {
  display: none !important;
}

.woocommerce div.product .wishsuite-button {
  float: right;
  background: #555;
  margin-top: 10px;
  height: 48px;
  width: 48px;
  border-radius: 3px;
  color: #fff;
}

.woocommerce div.product .wishsuite-button svg {
  transition: all 200ms ease-out;
  width: 16px;
  height: 16px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.archive .wishsuite-btn-text,
.single-product .wishsuite-btn-text {
  display: none;
}

.related.products .wishsuite-button {
  display: none !important;
}

.show-more {
  color: #777;
  width: auto;
  text-align: center;
  display: table;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 99 !important;
  position: absolute;
  bottom: 8px;
  font-size: 14px;
  text-transform: uppercase;
  color: #222 !important;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 5px 10px;
  border-radius: 3px;
  cursor: pointer;
}

/* Slick posts slider */
.postsslider .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 3rem;
  height: 3rem;
  transform: translateY(-50%);
  padding: 0;
  overflow: hidden;
  font-size: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
  transition: 0.25s;
}

.postsslider:hover,
.postsslider:focus {
  border-color: #f08a5d;
}

/*.slider:active {
  transform: translateY(-50%) scale(0.9);
}*/
.postsslider .slick-prev {
  left: 10vw;
}

.postsslider .slick-next {
  right: 10vw;
}

.slider__item {
  position: relative;
  height: 100vh;
}

.slider__item img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.slider__counter {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 1;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  mix-blend-mode: difference;
  pointer-events: none;
}

.sitem-wrapper a {
  display: flex;
  align-items: stretch;
  outline: none;
}

.sitem-content {
  max-width: 35%;
  width: 100%;
  padding: 4rem;
  /*display: flex;
    flex-wrap: wrap;*/
  position: relative;
}

.sitem-img {
  width: 100%;
  max-width: 65%;
  display: flex;
}

.sitem-img img {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: stretch;
}

h2.sitem-title {
  font-size: 48px;
  font-family: "Judson", serif !important;
  margin: 0 0 2.3rem;
  font-weight: 300;
  text-transform: uppercase;
  color: #000;
  word-break: normal;
}

h6.sitem-author {
  margin: 0 0 3.3rem;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #000;
  font-family: "Judson", serif !important;
  word-break: break-all;
}

.sitem-date {
  position: absolute;
  bottom: 48px;
  left: 32px;
  font-weight: 500;
  font-size: 12.62363px;
  text-transform: uppercase;
  color: #000;
}

@media only screen and (max-width: 1024px) {
  .images .thumbnails.slider,
  .images .yith_magnifier_gallery {
    width: 120px !important;
  }

  .woocommerce-product-gallery__image {
    width: calc(100% - 140px) !important;
  }
}

@media only screen and (max-width: 991px) {
  h2.sitem-title {
    font-size: 28.93737px;
    margin: 0 0 1.25rem;
  }

  .buy-extras .reserve-watch {
    width: 100%;
  }

  .buy-extras .suggestion-watch {
    margin-left: 0;
    width: 100%;
    margin-top: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .sitem-wrapper a {
    flex-direction: column-reverse;
  }

  .sitem-img,
  .sitem-content {
    max-width: 100%;
  }

  .sitem-content {
    padding: 1.75rem 1.1rem 1.7rem;
  }

  .sitem-date {
    position: relative;
    left: auto;
    bottom: auto;
  }

  h6.sitem-author {
    margin-bottom: 2.5rem;
    font-size: 14.18601px;
  }

  .slider__counter {
    position: absolute;
    bottom: auto;
    top: 55%;
    transform: translateY(-55%);
  }

  h2.sitem-title {
    font-size: 28.93737px;
    margin: 0 0 1.25rem;
  }

  .single-product .ui-dialog {
    width: 90% !important;
  }

  .single-product .ui-dialog .ui-dialog-content {
    height: 400px !important;
  }
}

.postsslider a:hover {
  color: #333;
}

.slick-dots {
  list-style: none;
  padding: 0;
  text-align: center;
  margin: 15px auto;
  width: 100%;
  display: flex;
  justify-content: center;
}

.slick-dots li {
  display: inline-block;
  float: left;
  margin: 10px;
}

.slick-dots li button {
  background: none;
  border: 0;
  width: 30px;
  height: 30px;
  border-radius: 100%;
}

.slick-dots li.slick-active button {
  background: #dce0cd;
  color: #fff;
}

@media only screen and (max-width: 680px) {
  .slider__counter {
    display: none;
  }

  .woocommerce div.product form.cart .button {
    width: 86%;
  }

  .certified-container {
    width: 100% !important;
  }

  .product-certified .container .row {
    padding: 20px;
  }

  .woocommerce-product-gallery__image {
    width: 100% !important;
    float: none;
  }
}

/* Single */

.center-div {
  margin: 0 auto;
}

.single-post .container#main {
  padding: 0;
}

.single-post h1 {
  font-size: 6rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
  width: 90%;
}

.single-post h3 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.single-post .breadcrumb-wrapper {
  margin-bottom: 0;
}

@media only screen and (max-width: 680px) {
  .single-post h1 {
    font-size: 28px;
  }

  .single-post .container#main .single-post h3 {
    font-size: 18px;
  }

  .single-post .container#main {
    padding: 15px;
  }
}

.single-hero {
  background-size: cover;
  background-repeat: no-repeat;
  height: 360px;
  margin-bottom: 40px;
}

.single-hero-content {
  color: #fff;
  text-align: center;
  padding-top: 120px;
}

.single-hero-content h1,
.single-hero-content span.single-meta {
  color: #fff;
}

span.single-meta {
  font-size: 16px;
}

.single-post-content {
  margin-bottom: 40px;
}

.single-post-content p {
  line-height: 28px;
}

.images .thumbnails.slider::-webkit-scrollbar {
  display: none;
}

input[type="checkbox"] {
  accent-color: #dce0cd !important;
}

select,
input:focus {
  outline: none !important;
}

/** Product details page Popup CSS start here **/
.single-product .ui-dialog {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
}

.single-product .ui-dialog .ui-dialog-titlebar {
  cursor: move;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 0px 0px 30px;
  height: 45px;
}

.single-product .ui-dialog .ui-dialog-title {
  width: calc(100% - 40px);
  font-size: 25px;
  line-height: 1;
  color: #202020;
  font-family: "Judson", Sans-serif;
  font-weight: 600;
}

.single-product .ui-dialog button.ui-dialog-titlebar-close {
  border: none;
  width: 40px;
  height: 100%;
  background: transparent;
}

.single-product .ui-dialog .ui-dialog-titlebar-close:before {
  font-size: 28px;
  line-height: 35px;
  width: 100%;
  height: 100%;
}

.single-product .ui-dialog .ui-dialog-content {
  padding: 30px;
  height: 500px !important;
}

.single-product .ui-dialog .ui-dialog-content::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

.single-product .ui-dialog .ui-dialog-content::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
}

.single-product .ui-dialog .ui-dialog-content::-webkit-scrollbar-thumb {
  background-color: #000000;
}

button.reserved-btn {
  background: #222 !important;
}

.single-product div.product .wishsuite-button {
  margin-top: 0 !important;
}

.reserve-watch-form input.wpcf7-submit {
  background-color: #2b2b2b;
  color: #fff;
  padding: 15px;
  line-height: 18px;
  text-align: center;
  text-transform: uppercase;
  border: none;
  box-shadow: none;
}

.reserve-watch-form input.wpcf7-submit:hover {
  background: #444;
}

.reserve-watch-form .wpcf7-spinner {
  margin: 0 24px -7px;
}

.reserve-watch-form label {
  display: block;
  width: 100%;
  font-family: "Karla", sans-serif;
  font-weight: 600;
  color: #212529;
  font-size: 18px;
  line-height: normal;
  margin-bottom: 10px;
}

.reserve-watch-form .wpcf7-form-control-wrap {
  width: 100% !important;
  display: block;
  margin-bottom: 20px;
}

.reserve-watch-form br {
  display: none;
}

.reserve-watch-form {
  margin-top: 30px;
}

.reserve-watch-form .wpcf7-form-control-wrap input,
.reserve-watch-form .wpcf7-form-control-wrap textarea {
  width: 100%;
  border: 1px solid #e9e9e9;
  border-radius: 0px;
  padding: 7px 10px;
  font-size: 15px !important;
}

.reserve-watch-form .wpcf7-form-control-wrap input:focus-visible,
.reserve-watch-form .wpcf7-form-control-wrap textarea:focus-visible {
  outline: none;
}

.single-product .wpcf7 form .wpcf7-response-output {
  font-size: 16px;
  line-height: normal;
  margin: 30px 0 0;
  padding: 10px 15px;
}

.single-product div.product form.cart .button {
  margin: 0px !important;
  margin-right: 10px !important;
  width: calc(100% - 58px);
}

/** Product details page Popup CSS end here **/

/* My account CSS */

.account-hero {
  margin-top: -40px;
  margin-bottom: 40px;
  padding: 80px 0px 80px 0px;
  background-color: #f4f3ed;
}

.woocommerce-account button.woocommerce-form-login__submit,
.woocommerce-account form.woocommerce-ResetPassword button,
.woocommerce-form-register button {
  color: #ffffff !important;
  background-color: #2b2b2b !important;
  text-transform: uppercase;
  font-weight: normal !important;
}

.woocommerce-account button {
  color: #ffffff !important;
  background-color: #2b2b2b !important;
  text-transform: uppercase;
  font-weight: normal !important;
}

.woocommerce-account h2 {
  margin-bottom: 20px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  padding: 0;
}

.woocommerce-account input {
  padding: 12px 10px !important;
}

.woocommerce-account #main {
  padding-bottom: 40px;
}

.footer-nav .footer-menu-contact h3 {
  font-size: 19px;
  font-family: "Judson", serif;
  color: #333;
  text-transform: uppercase;
}

.footer-nav .footer-menu-contact .social-media {
  margin-top: 10px;
  font-size: 16px;
  margin-bottom: 8px;
}

@media (max-width: 575.98px) {
  .footer-bar .hide-only-mobile {
    display: none !important;
  }
}

@media only screen and (max-width: 680px) {
  .controls .icon {
    font-size: 22px !important;
  }

  .btn-my-account {
    display: block !important;
  }

  .dropdown-menu-my-account {
    display: none;
    position: absolute;
    top: 60px;
    z-index: 9999;
  }

  .woocommerce-MyAccount-navigation ul li {
    width: 170px;
  }

  .dropdown-menu-my-account li a {
    display: block;
    padding: 5px;
  }

  .woocommerce-MyAccount-navigation ul li.is-active a {
    background-color: #ffffff !important;
    color: #2b2b2b !important;
  }

  .woocommerce-MyAccount-navigation ul li a {
    background-color: #f4f3ed;
    color: #2b2b2b;
  }

  .btn-my-account.hamburger {
    margin-top: 5px;
  }

  .text-MyAccount {
    display: block !important;
    text-transform: uppercase;
  }

  .woocommerce-MyAccount-navigation {
    margin-top: -85px !important;
    padding: 10px;
  }

  .btn-my-account.hamburger.myAccount-hamburger {
    display: flex !important;
    align-items: center;
    width: 170px;
    background: #dad8cb;
    padding: 20px;
  }

  .dropdown-menu-my-account {
    top: 45px !important;
  }

  .myAccount-hamburger::after {
    content: "Min profil" !important;
    position: absolute;
    margin-left: 44px;
    text-transform: uppercase;
  }

  .btn-my-account.hamburger span,
  .btn-my-account.hamburger span:before,
  .btn-my-account.hamburger span:after {
    width: 25px;
  }

  .btn-my-account.hamburger span:before {
    top: -7px;
  }

  .btn-my-account.hamburger span:after {
    bottom: -7px;
  }
}

.woocommerce-MyAccount-navigation {
  padding: 0;
  list-style: none;
  width: 80% !important;
  float: none !important;
  margin-top: -74px;
  z-index: 9;
  display: block;
  position: absolute;
}

.woocommerce-MyAccount-navigation ul {
  padding: 0;
  list-style: none;
}

.woocommerce-MyAccount-navigation ul li {
  float: left !important;
  margin-right: 5px;
  font-weight: 500;
  text-transform: uppercase;
}

.woocommerce-MyAccount-navigation ul li a {
  padding: 10px 20px;
  color: #212529;
  background-color: #dad8cb !important;
}

.woocommerce-MyAccount-navigation ul li.is-active a {
  background-color: #fff !important;
  color: #212529 !important;
}

.woocommerce-MyAccount-navigation ul li a:hover {
  text-decoration: underline !important;
}

.woocommerce-MyAccount-content {
  width: 100% !important;
  float: none !important;
  margin-bottom: 60px;
}

.btn-my-account {
  display: none;
}

.text-MyAccount {
  display: none;
}

#map {
  width: 100%;
  height: 500px;
}

/* Checkout */

body.woocommerce-checkout {
  background: #f1f1f1;
}

body.woocommerce-checkout .woocommerce:first-child {
  margin-top: 30px !important;
  width: 70%;
  margin: 0 auto;
}

@media screen and (max-width: 680px) {
  body.woocommerce-checkout .woocommerce:first-child {
    margin-top: 20px !important;
    width: 95%;
    margin: 0 auto;
  }

  #add_payment_method #payment ul.payment_methods,
  .woocommerce-cart #payment ul.payment_methods,
  .woocommerce-checkout #payment ul.payment_methods {
    padding: 0;
  }

  #add_payment_method #payment,
  .woocommerce-cart #payment,
  .woocommerce-checkout #payment {
    padding: 8px;
  }
}

.woocommerce-checkout .fibosearch.desktop,
.woocommerce-checkout .controls .float-end,
.woocommerce-checkout .nav-menu,
.woocommerce-checkout .footer-bar,
.woocommerce-checkout .breadcrumb-wrapper {
  display: none;
}

.woocommerce-checkout .col-1,
.woocommerce-checkout .col-2 {
  width: 100% !important;
  float: none !important;
}

.woocommerce-billing-fields,
.woocommerce-additional-fields,
.woocommerce-checkout-payment,
.woocommerce-checkout-review-order,
.woocommerce-checkout .shipping_address,
.woocommerce-checkout-review-order-table {
  padding: 30px;
  background: #fff;
}

@media screen and (max-width: 680px) {
  .woocommerce-billing-fields,
  .woocommerce-additional-fields,
  .woocommerce-checkout-payment,
  .woocommerce-checkout-review-order,
  .woocommerce-checkout .shipping_address,
  .woocommerce-checkout-review-order-table {
    padding: 15px;
  }

  .woocommerce-checkout .product-name {
    width: 80%;
  }

  .woocommerce-checkout .checkout-image {
    float: left;
  }

  .woocommerce-checkout .checkout-name {
    float: right;
  }

  .woocommerce-checkout .hamburger {
    display: none;
  }
}

.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #ship-to-different-address {
  margin: 20px 0;
  text-align: center;
  float: none !important;
}

/*.woocommerce-checkout form.checkout {
	width: 70%;
	margin: 0 auto;
}*/

.woocommerce-checkout-review-order-table th.product-total,
.woocommerce-checkout-review-order-table tr td:nth-child(2) {
  text-align: right;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  #respond
  input#submit.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  a.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  button.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  input.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles))
  .woocommerce
  #respond
  input#submit.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles))
  .woocommerce
  a.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles))
  .woocommerce
  button.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles))
  .woocommerce
  input.button.alt {
  background-color: #333;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  #respond
  input#submit.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  a.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  button.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  input.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles))
  .woocommerce
  #respond
  input#submit.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles))
  .woocommerce
  a.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles))
  .woocommerce
  button.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles))
  .woocommerce
  input.button.alt:hover {
  background-color: #555;
}

.woocommerce-checkout footer {
  margin-top: 60px;
}

/*6-9-2023 */

/* html, body {
  touch-action: auto;
}
body.single.single-product{
  overflow-y: scroll !important;
  -webkit-overflow-scrolling: touch ;
  height: 100% !important;
  min-height: unset !important;
  touch-action: pan-y;
  -ms-touch-action: pan-y;
} */

/* .single-product-main-image-wrap .thumbnails .slick-track {
  transform: none !important;
} */

.iwt-luxurywatches-post .elementor-posts-container article.elementor-post {
  background-color: #ffffff;
}

.iwt-luxurywatches-post
  .elementor-posts-container
  article.elementor-post
  .elementor-post__text {
  position: relative;
  padding: 1.5rem 3.5rem 5rem;
  min-height: 270px;
}

.iwt-luxurywatches-post
  .elementor-posts-container
  article.elementor-post
  .elementor-post__title {
  position: relative;
  margin-bottom: 10px;
}

.iwt-luxurywatches-post
  .elementor-posts-container
  article.elementor-post
  .elementor-post__title::before {
  position: absolute;
  background-color: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
  position: absolute;
  content: "";
  height: 14px;
  left: -25px;
  top: 4px;
  width: 14px;
}

.iwt-luxurywatches-post
  .elementor-posts-container
  article.elementor-post:hover
  .elementor-post__title::before {
  background: currentColor;
}

.iwt-luxurywatches-post
  .elementor-posts-container
  article.elementor-post
  .elementor-post__read-more,
.iwt-luxurywatches-post
  .elementor-posts-container
  article.elementor-post
  .elementor-post__meta-data {
  position: absolute;
  bottom: 10px;
}

.iwt-luxurywatches-post
  .elementor-posts-container
  article.elementor-post
  .elementor-post__meta-data {
  bottom: 20px;
}

@media only screen and (min-width: 768px) {
  .single-product-main-image-wrap .thumbnails .slick-track {
    transform: none !important;
  }

  .single-product-main-image-wrap {
    display: flex;
    flex-direction: column-reverse;
  }

  #wooswipe .thumbnails {
    width: 100%;
    min-width: 100%;
    max-width: 120px;
    height: auto;
    margin-right: 15px;
    max-height: 600px;
    margin-bottom: 10px;
    margin-top: 20px;
  }

  .single-product-main-image-wrap .thumbnails .slick-track {
    display: flex;
    flex-direction: row;
    width: 100% !important;
    max-width: 100%;
    margin-left: 0;
  }

  .single-product-main-image-wrap .thumbnails li {
    width: 100% !important;
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 1023px) {
  .iwt-luxurywatches-post .slick-list {
    padding-right: 32px !important;
    padding-left: 0px !important;
  }

  .iwt-luxurywatches-post .elementor-posts-container article.elementor-post {
    margin-right: 20px;
  }

  .iwt-luxurywatches-post .slick-prev:before,
  .iwt-luxurywatches-post .slick-next:before {
    font-size: 30px;
    color: #000;
    opacity: 1;
  }

  .iwt-luxurywatches-post .slick-next {
    right: 15px;
  }

  .iwt-luxurywatches-post
    .elementor-posts-container
    article.elementor-post
    .elementor-post__text {
    min-height: 220px;
  }
}

@media only screen and (max-width: 768px) {
  .single.single-product div.product div.summary,
  .single.single-product .main-product #wooswipe {
    width: 100%;
  }

  /* .slick-slider .slick-track,
  #wooswipe .woocommerce-main-image,
  .single-product-main-image-wrap .thumbnails .slick-track ,
  .single-product-main-image-wrap .slick-list ,
  .slick-slider {
    touch-action: auto;
    -ms-touch-action: auto;
    cursor:unset;
    -webkit-overflow-scrolling: touch ;
    -ms-overflow-style: none;
    -ms-scroll-chaining: none;
    -ms-scroll-snap-type: mandatory;
    -ms-scroll-snap-points-x: snapInterval(0%, 100%);
  } */
  .iwt-luxurywatches-post
    .elementor-posts-container
    article.elementor-post
    .elementor-post__title::before {
    content: unset;
  }
}

@media only screen and (max-width: 767px) {
  .iwt-luxurywatches-post .slick-list {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }

  .iwt-luxurywatches-post .elementor-posts-container article.elementor-post {
    margin-right: 0px;
  }

  .iwt-luxurywatches-post .slick-next {
    right: 8px;
  }

  .iwt-luxurywatches-post .slick-prev:before,
  .iwt-luxurywatches-post .slick-next:before {
    font-size: 25px;
  }

  .single.single-product
    .main-product
    #wooswipe
    .single-product-main-image-wrap {
    display: flex;
    flex-direction: column-reverse;
  }

  .single-product-main-image button.wooswipe-prev.slick-arrow {
    left: 0;
    z-index: 10;
  }

  .single-product-main-image button.wooswipe-next.slick-arrow {
    right: 0;
    z-index: 10;
  }

  #wooswipe .wooswipe-popup.wooswipe-mainimagepopup {
    top: 0;
    right: 0;
  }

  .single.single-product .main-product #wooswipe {
    margin-bottom: 10px;
  }

  .single-product-main-image-wrap .thumbnails {
    height: 100% !important;
  }

  .single-product.woocommerce .thumbnails {
    overflow: visible;
  }

  .iwt-luxurywatches-post
    .elementor-posts-container
    article.elementor-post
    .elementor-post__text {
    min-height: 260px;
  }
}

@media only screen and (max-width: 680px) {
  .single.single-product .main-wrapper {
    margin-top: 10px;
  }
}

.single-product-main-image-wrap .thumbnails .slick-arrow {
  display: none !important;
}

/*6-9-2023 */

form.woocommerce-form.woocommerce-form-login.login,
form.checkout_coupon.woocommerce-form-coupon {
  background: #fff;
}

.pswp__caption__center {
  display: none !important;
}

.lwt-login.woocommerce-checkout .container .row .woocommerce {
  width: 100%;
}

.lwt-login.woocommerce-checkout
  .container
  .row
  .woocommerce
  #customer_login
  form.register {
  background-color: #fff;
}

.lwt-login.woocommerce-checkout
  .container
  .row
  .woocommerce
  #customer_login
  .u-column1 {
  width: 48% !important;
  float: left !important;
}

.lwt-login.woocommerce-checkout
  .container
  .row
  .woocommerce
  #customer_login
  .u-column2 {
  width: 48% !important;
  float: right !important;
}

.lwt-login.woocommerce-checkout
  .container
  .row
  .woocommerce
  #customer_login
  button {
  background: #2b2b2b;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .lwt-login.woocommerce-checkout
    .container
    .row
    .woocommerce
    #customer_login
    .u-column1,
  .lwt-login.woocommerce-checkout
    .container
    .row
    .woocommerce
    #customer_login
    .u-column2 {
    width: 100% !important;
  }
}

@media only screen and (max-width: 767px) {
  #menu-footer-menu li {
    width: 100%;
    float: none;
    text-align: left;
  }

  footer .footer-menu-contact,
  footer .col {
    text-align: left;
    width: 100% !important;
  }

  #menu-footer-menu ul.sub-menu {
    margin-bottom: 15px;
  }
}

.stock.in-stock {
  display: none !important;
}

@media only screen and (max-width: 767px) {
  .single.single-product
    .product
    .thumbnail-nav
    .slick-active.slick-current
    .thumb {
    border: 1px solid #333;
    padding: 0;
  }

  .single.single-product
    .product
    .thumbnail-nav
    .slick-active.slick-current
    .thumb
    img {
    transform: scale(0.9);
  }

  .single.single-product .product .thumbnail-nav .slick-slide img {
    transform: scale(0.7);
    transition: 0.4s ease-in-out;
  }
}

.pris--usd,
.pris--eur,
.pris--sek {
  display: none;
}

@media only screen and (max-width: 767px) {
  .single-hero-content {
    /*padding-top: 50px;*/
  }

  .single-post h1 {
    font-size: 3rem !important;
  }
}

.woof_checkbox_count {
  display: none;
}

.close-newshop {
  text-align: right;
  float: right;
  margin-top: -15px;
  color: #000;
  border-bottom: 1px dashed #999;
  cursor: pointer;
}

.tintbg {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  z-index: 900;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.newshop {
  position: fixed;
  margin: 0 auto;
  width: 600px;
  left: 0;
  right: 0;
  top: 80px;
  background-color: #fff;
  padding: 30px;
  z-index: 999;
  box-shadow: 0 0 8px 0px #999;
  text-align: center;
}

.newshop h3 {
  font-size: 35px;
}

.newshop p {
  margin: 20px 0;
}

.newshop .button.shopnow {
  background: #000;
  color: #fff;
  font-family: "Judson";
  padding: 6px 15px;
  font-size: 16px;
  text-transform: uppercase;
  display: inline-block;
}

.newshop p.small {
  font-size: 13px;
  margin-top: 15px;
}

@media only screen and (max-width: 767px) {
  .newshop {
    width: 95%;
  }

  .newshop h3 {
    font-size: 24px;
  }

  .woocommerce-ordering {
    position: relative;
  }

  .woocommerce-ordering select {
    position: relative;
    background-image: unset;
    background: 0;
    background: #fff;
    appearance: none;
  }

  .woocommerce-ordering::after {
    border-color: #000 transparent transparent;
    border-style: solid;
    border-width: 5px 5px 0;
    display: inline-block;
    height: 7px;
    margin-block-start: 5px;
    margin-inline-start: 10px;
    position: absolute;
    content: " ";
    transform: translateY(-50%);
    transition: all 0.15s ease-in-out;
    vertical-align: middle;
    width: 7px;
    top: 50%;
    right: 10px;
  }
}

a.open-filters:hover {
  color: #ddd;
}

.filter-heading span.icon {
  display: none;
}

@font-face {
  font-family: "PortraitInline";
  src: url("../fonts/PortraitInline-Sans-Webwoff.eot");
  src: url("../fonts/PortraitInline-Sans-Webwoff.eot#iefix")
      format("embedded-opentype"),
    url("../fonts/PortraitInline-Sans-Webwoff.woff2") format("woff2"),
    url("../fonts/PortraitInline-Sans-Webwoff.woff") format("woff"),
    url("../fonts/PortraitInline-Sans-Webwoff.ttf") format("truetype"),
    url("../images/PortraitInline-Sans-Webwoff.svg#PortraitInline-Sans-Webwoff")
      format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PortraitInline";
  src: url("../fonts/PortraitInline-Sans-Webwoff_1.eot");
  src: url("../fonts/PortraitInline-Sans-Webwoff_1.eot#iefix")
      format("embedded-opentype"),
    url("../fonts/PortraitInline-Sans-Webwoff_1.woff2") format("woff2"),
    url("../fonts/PortraitInline-Sans-Webwoff_1.woff") format("woff"),
    url("../fonts/PortraitInline-Sans-Webwoff_1.ttf") format("truetype"),
    url("../images/PortraitInline-Sans-Webwoff_1.svg#PortraitInline-Sans-Webwoff")
      format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.elementor-section #mc_embed_signup {
  background: transparent !important;
  width: 604px;
}

.elementor-section #mc_embed_signup h2 {
  font-size: 2.8125em;
  font-family: "PortraitInline";
  font-style: normal;
  font-weight: 400;
  color: #fff;
  -webkit-font-smoothing: antialiased;
}

.elementor-section #mc_embed_signup form {
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  width: 100%;
  overflow: visible;
  border-radius: 0px;
  border-style: none;
  border-width: 0px;
  border-color: rgb(0, 0, 0);
  background-color: rgba(255, 255, 255, 0);
  background-repeat: no-repeat;
  background-position-y: 50%;
  padding: 0px;
}

.elementor-section #mc_embed_signup input {
  box-sizing: border-box;
  border-radius: 2px;
  padding: 0px 0px 0px 16px;
  height: 56px;
  text-align: left;
  color: rgb(0, 0, 0);
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0px;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(148, 149, 150);
}

#mc_embed_signup #mc-embedded-subscribe-form input.mce_inline_error {
}

.elementor-section #mc_embed_signup input:focus-visible {
  outline-width: 2px;
  outline-style: auto;
  outline-color: #000000;
  outline-offset: 0;
  outline: revert !important;
}

.elementor-section #mc_embed_signup form #mc_embed_signup_scroll,
.iwt-newsletter-form {
  position: relative;
  width: 100%;
}
.iwt-newsletter-form {
}
#mc_embed_signup .iwt-newsletter-form .indicates-required {
  text-align: left;
  margin-bottom: 3px;
  color: #fff;
}

#mc_embed_signup .iwt-newsletter-form .mc-field-group {
  width: 70%;
}

#mc_embed_signup .iwt-newsletter-form div#mce-responses {
  top: unset;
  right: unset;
  left: 0;
  margin-bottom: -50px;
  margin-left: 0;
}

#mc_embed_signup .iwt-newsletter-form .clear {
  position: absolute;
  top: 0;
  right: 0px;
  width: 25%;
}

#mc_embed_signup .iwt-newsletter-form .clear input {
  margin: 0;
  background: rgb(255, 255, 255);
  border-radius: 0px;
  border-style: none;
  border-color: rgb(0, 0, 0);
  border-width: 0px;
  color: rgb(34, 34, 34);
  font-size: 14px !important;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1;
  white-space: normal;
  padding: 11px 10px;
  text-align: center;
  word-break: break-word;
  align-self: flex-end;
  cursor: pointer;
  pointer-events: auto;
  height: 56px;
  width: 100%;
}

#mc_embed_signup .iwt-newsletter-form .clear input:focus {
  outline-style: dotted;
  outline-color: grey;
  outline-width: 1px;
}

#mc_embed_signup
  #mc-embedded-subscribe-form
  .iwt-newsletter-form
  div.mce_inline_error {
}

@media only screen and (max-width: 1023px) {
  #mc_embed_signup {
    margin: auto;
  }
}

@media only screen and (max-width: 767px) {
  #mc_embed_signup {
    width: 95% !important;
  }

  .elementor-section #mc_embed_signup form {
    margin: 0;
  }

  .elementor-section #mc_embed_signup h2 {
    text-align: center;
  }

  #mc_embed_signup .iwt-newsletter-form .mc-field-group {
    width: calc(100% - 30%);
    padding-bottom: 0;
    min-height: auto;
  }

  #mc_embed_signup .iwt-newsletter-form .clear {
    right: 0;
    bottom: 0;
  }

  #mc_embed_signup .iwt-newsletter-form .clear input {
  }

  .footer-nav {
    padding: 0px 20px !important;
  }

  .input-form button.submit-button {
    position: unset;
  }

  .elementor-products-grid.iwt-hidden-product
    ul.products
    li.product:nth-child(n + 7) {
    display: none;
  }
}

.marketing-module {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

/* Content Section */
.marketing-module__content {
  flex: 1;
  padding: 20px;
  text-align: left;
}

.marketing-module__content h3 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.marketing-module__content p {
  font-size: 2rem;
  margin-bottom: 15px;
}

/* Content Section */
.marketing-module__content .btn-primary {
  padding: 10px 25px;
  font-size: 18px;
  background-color: black;
  /* Button background is black */
  color: white;
  /* Button text is white */
  text-decoration: none;
  border-radius: 5px;
  transition: box-shadow 0.3s ease;
  /* Smooth transition for shadow */
  border: none;
  /* Remove any borders */
}

/* Remove default hover background color */
.marketing-module__content .btn-primary:hover,
.marketing-module__content .btn-primary:focus {
  background-color: black;
  /* Keep background black on hover */
  color: white;
  /* Ensure text stays white */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  /* Show shadow on hover */
}

/* Optional: Remove outline on focus */
.marketing-module__content .btn-primary:focus {
  outline: none;
}

/* Instagram Teaser Image Section */
.marketing-module__ig-teaser-image {
  flex: 1;
  max-width: 50%;
  padding: 20px;
  text-align: center;
}

.marketing-module__image-link img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Artical listing 06-12-2024 CSS */

.iwt_articles_blocks_main .elementor-widget-loop-grid .elementor-grid {
  grid-column-gap: 16px;
  grid-row-gap: 32px;
}

.iwt_articles_block_img .elementor-widget-container a {
  position: relative;
  padding-bottom: 58%;
  display: block;
}

.iwt_articles_block_img .elementor-widget-container a img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 100%;
  min-width: 100%;
  max-height: 100%;
  min-height: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.iwt_articles_blocks_main .e-loop__load-more a {
  fill: #ffffff;
  color: #ffffff;
  background-color: #2b2b2b;
}

.iwt_articles_blocks_main .e-loop__load-more a:hover {
  transform: scale(1.1);
}

/* Artical listing 06-12-2024 CSS */

/* 16/12/2024 */
/* .lwt-login .posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.lwt-login .posts-grid .post-item {
  background-color: lightblue;
  padding: 10px;
  text-align: center;
}

.lwt-login .posts-grid .post-item:nth-child(4n + 4),
.lwt-login .posts-grid .post-item:nth-child(4n + 5) {
  background-color: coral; 
  color: white;
} */
.posts-grid {
  justify-content: space-between;
}
.posts-grid .post-item {
  position: relative;
}

.post-item.post-item-content {
  position: relative;
  width: calc(50% - 20px);
}
.posts-grid .post-item.post-item-content .post-thumbnail {
  padding-top: 100%;
  margin: 0;
}
.posts-grid .post-item.post-item-content .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.posts-grid .post-item .post-thumbnail {
  position: relative;
  overflow: hidden;
  padding-top: 65%;
  width: 100%;
}
.posts-grid .post-item .post-thumbnail img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.posts-grid .post-item.post-item-content .post-content-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 16/12/2024 */

/*17-12-2024*/
.latest-posts-slider.slick-initialized .slick-slide.slider-item {
  display: flex;
  margin-right: 5px;
}
.iwt-banner-post-slider .elementor-shortcode {
  position: relative;
}
.iwt-banner-post-slider .elementor-shortcode .slide-number {
  position: absolute;
  right: 20px;
  bottom: 40px;
  width: auto;
  height: 0;
  color: #fff;
}

.latest-posts-slider.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.latest-posts-slider .slider-item .slider-left {
  -ms-flex: 0 0 35%;
  flex: 0 0 35%;
  max-width: 35%;
  padding-right: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.latest-posts-slider .slider-item a:focus {
  outline: none;
}
.latest-posts-slider .slider-item .slider-left h3 {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 20px;
}
.latest-posts-slider .slider-item .slider-left .desc-content {
  display: flex;
  column-gap: 6px;
}
.latest-posts-slider .slider-item .slider-left .desc-content {
  text-transform: uppercase;
  margin-bottom: 30px;
}
.latest-posts-slider .slider-item .slider-left .desc-content .post-date {
  position: relative;
}
.latest-posts-slider .slider-item .slider-left .desc-content .post-date::after {
  content: "•";
  font-size: 18px;
  padding: 5px 5px 5px 10px;
  font-weight: bold;
  color: #000;
}
.latest-posts-slider .slider-item .slider-right {
  -ms-flex: 0 0 65%;
  flex: 0 0 65%;
  max-width: 65%;
  position: relative;
  padding-top: 45%;
}
.latest-posts-slider .slider-item .slider-right a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.latest-posts-slider .slider-item .slider-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.posts-grid .post-item .post-content-container {
  position: relative;
  padding: 1.5rem 3.5rem 2rem;
}
.posts-grid .post-item {
  padding: 0;
}
.posts-grid .post-item:hover {
  cursor: pointer;
}
.posts-grid .post-item .post-title {
  position: relative;
  font-size: 18px;
}
.posts-grid .post-item .post-title::before {
  position: absolute;
  background-color: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
  position: absolute;
  content: "";
  height: 14px;
  left: -25px;
  top: 4px;
  width: 14px;
}
.posts-grid .post-item:hover .post-title::before {
  background: currentColor;
}
.posts-grid .post-item.post-item-content {
  padding: 0;
}
.posts-grid .post-item.post-item-content .post-content-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5rem;
}
.posts-grid .post-item.post-item-content .post-top-content .post-title a,
.posts-grid .post-item.post-item-content .post-top-content .post-author,
.posts-grid .post-item.post-item-content .post-bottom-content .post-excerpt,
.posts-grid .post-item.post-item-content .post-bottom-content .post-date,
.posts-grid
  .post-item.post-item-content
  .post-bottom-content
  .post-reading-time {
  color: #fff;
}
.posts-grid .post-item .post-top-content .post-title::before {
  border-color: #fff;
}
.posts-grid .post-item:hover .post-top-content .post-title::before {
  background-color: #fff;
}
.posts-grid .post-item .post-desc-content {
  display: flex;
  text-transform: uppercase;
  column-gap: 6px;
  align-items: center;
}
.posts-grid .post-item .post-desc-content .post-date {
  position: relative;
}
.posts-grid .post-item .post-desc-content .post-date,
.posts-grid .post-item .post-desc-content .post-reading-time {
  font-size: 14px;
  font-weight: bold;
}
.posts-grid .post-item .post-desc-content .post-date::after {
  content: "•";
  font-size: 18px;
  padding: 5px 5px 5px 10px;
  font-weight: bold;
  color: #000;
  line-height: 1;
}
.posts-grid .post-item.post-item-content .post-desc-content .post-date::after {
  color: #fff;
}

.posts-grid .post-item.post-item-content .post-bottom-content .post-excerpt {
  opacity: 0;
  transform: translateY(10%);
  transition: transform 0.3s ease-in, opacity 0.3s ease-in,
    visibility 0.3s ease-in;
  visibility: hidden;
  min-height: auto;
}
.posts-grid
  .post-item.post-item-content:hover
  .post-bottom-content
  .post-excerpt {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.posts-grid .pagination {
  margin: 0 auto;
}

/*17-12-2024*/

/*18-12-2024*/
.iwt-articles-page {
}
.iwt-articles-page .elementor-widget-container img {
}
.iwt-articles-page .elementor-widget-container img {
  margin-bottom: 5px;
  max-height: 223px;
}
.iwt-articles-page h4.elementor-heading-title {
  margin-bottom: 10px;
}
.iwt-articles-page h4.elementor-heading-title {
}
/*18-12-2024*/

/* 06/03/2025 */
.woocommerce
  div.product
  div.images
  .woocommerce-product-gallery__wrapper
  > .container {
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
}

.woocommerce
  div.product
  div.images
  .woocommerce-product-gallery__wrapper
  > .container
  .woo-thumbs {
  display: flex;
  width: 100%;
  overflow: hidden;
}
.woocommerce
  div.product
  div.images
  .woocommerce-product-gallery__wrapper
  > .container
  .woo-thumbs
  .woocommerce-product-gallery__image {
  width: 100% !important;
}
.woocommerce
  div.product
  div.images
  .woocommerce-product-gallery__wrapper
  > .container
  .woo-thumbs.slick-slider.hide-for-mobile
  .slick-track {
  width: 100% !important;
}
.woocommerce
  div.product
  div.images
  .woocommerce-product-gallery__wrapper
  > .container
  .woo-thumbs.slick-slider
  .slick-track {
  display: flex;
  gap: 10px;
}

@media (max-width: 1199px) {
  .latest-posts-slider .slider-item .slider-left,
  .latest-posts-slider .slider-item .slider-right {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
  }
  .latest-posts-slider .slider-item .slider-right {
    padding-top: 45%;
  }
}
@media (max-width: 1023px) {
  .latest-posts-slider .slider-item .slider-left h3 {
    font-size: 32px;
  }
  .woocommerce div.product div.images.woocommerce-product-gallery {
    width: 100% !important;
  }
  .woocommerce
    div.product
    div.images
    .woocommerce-product-gallery__wrapper
    > .container {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .marketing-module {
    flex-direction: column;
    align-items: center;
  }

  .marketing-module__content,
  .marketing-module__ig-teaser-image {
    flex: none;
    max-width: 100%;
    padding: 15px;
  }

  .marketing-module__content h3 {
    font-size: 1.5rem;
  }

  .marketing-module__content p {
    font-size: 1rem;
  }

  .marketing-module__content .btn-primary {
    font-size: 1rem;
  }
}

/* Ensure responsive behavior for mobile */
@media (max-width: 768px) {
  .marketing-module {
    flex-direction: column;
    align-items: center;
  }

  .marketing-module__content,
  .marketing-module__ig-teaser-image {
    flex: none;
    max-width: 100%;
    padding: 15px;
  }

  .marketing-module__ig-teaser-image {
    text-align: left;
    /* Align image to the left */
  }

  .marketing-module__content h3 {
    font-size: 1.5rem;
  }

  .marketing-module__content p {
    font-size: 1rem;
  }

  .marketing-module__content .btn-primary {
    font-size: 0.9rem;
  }
}

.products span.product-category {
  text-align: left;
  font-size: 13px;
  background-color: transparent !important;
  padding: 0;
  text-transform: none;
  margin-bottom: 5px;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3 {
  font-family: "Karla", sans-serif !important;
  text-align: left;
  text-transform: none;
  font-size: 13px;
  font-weight: 300;
}

.woocommerce ul.products li.product .price {
  color: #222;
  font-size: 13px;
  text-align: left;
  margin-top: 5px;
}
/*26-12-2024*/
.entry-summary .product-extras .sidebar-click {
  font-size: 25px;
  text-align: left;
  padding-top: 20px;
  margin-top: 20px;
  display: none;
  margin-bottom: 10px;
}
.entry-summary .product-extras .sidebar-click .icon-class {
  margin: 0 0 0 auto;
}
.entry-summary .product-extras .sidebar-click .icon-class svg {
  width: 13px !important;
  height: 13px !important;
  margin-bottom: 7px;
}

.entry-summary .product-extras .sidebar {
  /* position: fixed; */
  width: 100%;
  height: 100%;
  /* top: 50px; */
  /* right: 0; */
  /* left: auto; */
  opacity: 1;
  overflow: hidden auto;
  /* transform: translate(102%);
  transition: transform .6s ease-in-out; */
  visibility: visible;
  background-color: #fff;
  /* border-left: 1px solid #efefef; */
  /* width: 600px;
	width: 680px; */
  /* padding: 10px 15px; */
  font-size: 15px !important;
}

.entry-summary .product-extras .sidebar td,
.entry-summary .product-extras .sidebar th,
.entry-summary .product-extras .sidebar p {
  font-size: 15px !important;
}
.entry-summary .product-extras .sidebar td,
.entry-summary .product-extras .sidebar th {
  font-size: 15px !important;
  padding-right: 15px;
}
.entry-summary .product-extras .sidebar.is-hidden {
  display: block;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  /* transform: none;
  transition: transform .6s ease-in-out; */
  z-index: 1000;
}

.entry-summary .product-extras .sidebar .close-attributes-btn {
  display: none;
  background: transparent;
  border: 0;
  width: 15px;
  text-align: center;
  color: #000;
  margin: 0 0 0 auto;
}

/* 13/01/2025 */
.elementor-posts-container.elementor-posts.elementor-posts--skin-classic.elementor-grid.elementor-has-item-ratio.slick-initialized.slick-slider
  button.slick-prev.slick-arrow {
  left: 0px !important;
  top: 63% !important;
}
.elementor-posts-container.elementor-posts.elementor-posts--skin-classic.elementor-grid.elementor-has-item-ratio.slick-initialized.slick-slider
  button.slick-next.slick-arrow {
  top: 63% !important;
}
.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  transform: none !important;
}

.pswp--zoom-allowed .pswp__img,
.pswp--open .pswp__img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
.pswp__ui--fit .pswp__caption {
  display: none;
}

@media (max-width: 767px) {
  .latest-posts-slider.slick-initialized .slick-slide.slider-item {
    flex-direction: column-reverse;
    margin-right: 0;
  }
  .latest-posts-slider .slider-item .slider-left,
  .latest-posts-slider .slider-item .slider-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .latest-posts-slider .slider-item .slider-right {
    margin-bottom: 20px;
  }
  .latest-posts-slider .slider-item .slider-left h3 {
    font-size: 22px;
  }
  .posts-grid .post-item.post-item-content {
    width: 100%;
  }
  .posts-grid .post-item.post-item-content .post-thumbnail {
    padding-top: 60%;
  }
  .posts-grid .post-item.post-item-content .post-bottom-content .post-excerpt {
    display: none;
  }
  .elementor-shortcode .posts-grid {
    flex-direction: column;
  }
  .elementor-shortcode .posts-grid .post-item {
    display: flex;
    width: 100%;
    margin-bottom: 0;
  }
  .posts-grid .post-item .post-thumbnail {
    padding: 0;
    margin: 0;
  }
  .posts-grid .post-item .post-title::before {
    opacity: 0;
  }
  .posts-grid .post-item .post-top-content .post-title::before {
    opacity: 1;
  }
  .posts-grid .post-item .post-thumbnail {
    max-width: 104px;
  }
  .posts-grid .post-item.post-item-content .post-thumbnail {
    max-width: 100%;
  }
  .posts-grid .post-item .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
  }
  .posts-grid .post-item .post-content-container {
    padding: 1.5rem 2rem 2rem;
  }
  .posts-grid .post-item.post-item-content .post-content-container {
    padding: 2rem 4rem;
  }
  .posts-grid .post-item .post-title {
    font-size: 14px;
  }
  .posts-grid .post-item .post-desc-content .post-date,
  .posts-grid .post-item .post-desc-content .post-reading-time {
    font-size: 12px;
  }
  .iwt-articles-page h2.elementor-heading-title {
    font-size: 18px;
  }
  .entry-summary .product-extras .sidebar {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 50px;
    right: 0;
    left: auto;
    opacity: 1;
    overflow: hidden auto;
    transform: translate(102%);
    transition: transform 0.6s ease-in-out;
    visibility: visible;
    background-color: #fff;
    /* border-left: 1px solid #efefef; */
    width: 600px;
    width: 680px;
    padding: 10px 15px;
    font-size: 15px !important;
  }
  .entry-summary .product-extras .sidebar.is-hidden {
    display: block;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: none;
    transition: transform 0.6s ease-in-out;
    z-index: 1000;
  }
  .entry-summary .product-extras .sidebar .close-attributes-btn {
    display: block;
  }
  .entry-summary .product-extras .sidebar-click {
    display: block;
    color: black;
  }
  .elementor-2
    .elementor-element.elementor-element-fcad004.elementor-wc-products
    ul.products {
    grid-row-gap: 10px !important;
  }
  .entry-summary .product-extras .sidebar {
    padding-bottom: 100px !important;
  }
  .col-xs-12.col-md-9.loop-products p.product-count {
    position: absolute;
    top: 12.5px;
    left: 33px;
    width: 40%;
  }
  .woocommerce
    div.product
    div.images
    .woocommerce-product-gallery__wrapper
    > .container
    .woo-thumbs.show-for-mobile {
    display: flex !important;
  }
  .woocommerce
    div.product
    div.images
    .woocommerce-product-gallery__wrapper
    > .container
    .woo-thumbs.show-for-mobile
    .slick-next:before,
  .woocommerce
    div.product
    div.images
    .woocommerce-product-gallery__wrapper
    > .container
    .woo-thumbs.show-for-mobile
    .slick-prev:before {
    color: #000;
  }
  .woocommerce
    div.product
    div.images
    .woocommerce-product-gallery__wrapper
    > .container
    .woo-thumbs.show-for-mobile
    .slick-next,
  .woocommerce
    div.product
    div.images
    .woocommerce-product-gallery__wrapper
    > .container
    .woo-thumbs.show-for-mobile
    .slick-prev {
    z-index: 1;
  }
  .woocommerce
    div.product
    div.images
    .woocommerce-product-gallery__wrapper
    > .container
    .woo-thumbs.show-for-mobile
    .slick-next {
    right: 0;
  }
  .woocommerce
    div.product
    div.images
    .woocommerce-product-gallery__wrapper
    > .container
    .woo-thumbs.show-for-mobile
    .slick-prev {
    left: 0;
  }
  .woocommerce
    div.product
    div.images
    .woocommerce-product-gallery__wrapper
    > .container {
    flex-direction: column;
  }
  .custom-mobile-view .elementor-widget-container > .elementor-posts-container {
    background-color: #fff;
  }
  .custom-mobile-view .elementor-posts-container > .elementor-post {
    padding: 0px;
    flex-direction: row;
    align-items: center;
  }
  .custom-mobile-view .elementor-posts-container > .elementor-post {
    padding-top: 15px;
    margin-top: 14px;
    padding-inline: 15px;
  }
  .custom-mobile-view
    .elementor-posts-container
    > .elementor-post:not(:first-child) {
    border-top: 1px solid #c5c5b5;
  }
  .elementor-section
    .custom-mobile-view
    .elementor-posts-container
    > .elementor-post
    .elementor-post__text {
    padding: 0 0 0 20px;
    margin: 0;
  }
  .custom-mobile-view
    .elementor-posts-container
    > .elementor-post
    .elementor-post__excerpt,
  .custom-mobile-view
    .elementor-posts-container
    > .elementor-post
    .elementor-post__read-more {
    display: none;
  }
  .custom-mobile-view
    .elementor-posts-container
    > .elementor-post
    .elementor-post__thumbnail__link {
    max-width: 104px;
    width: 100%;
    height: 100%;
  }
  .elementor-section
    .custom-mobile-view
    .elementor-posts-container
    > .elementor-post
    .elementor-post__thumbnail__link
    .elementor-post__thumbnail {
    padding: 0;
    height: 104px;
    max-height: 104px;
  }
  .custom-mobile-view
    .elementor-posts-container
    > .elementor-post
    .elementor-post__thumbnail__link
    .elementor-post__thumbnail
    img {
    height: auto;
    position: unset;
    left: calc(50% + 1px);
    top: calc(50% + 1px);
    transform: unset;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .elementor-section
    .custom-mobile-view
    .elementor-posts-container
    > .elementor-post
    .elementor-post__text
    .elementor-post__title
    a {
    font-size: 16px;
  }
  .elementor-section
    .custom-mobile-view
    .elementor-posts-container
    > .elementor-post
    .elementor-post__text
    .elementor-post__meta-data {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 680px) {
  .entry-summary .product-extras .sidebar {
    width: 330px;
  }
  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    float: left;
    margin-bottom: 10px !important;
  }
  .col-xs-12.col-md-9.loop-products form.woocommerce-ordering {
    display: flex;
    align-items: center;
    justify-content: end;
  }
  li#menu-item-15750 {
    margin-bottom: 50px;
  }
  .contact-links {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    flex-direction: column;
  }

  .archive .catdesc h1 {
    /*    display: none;*/
    text-align: center;
    margin-top: 20px;
  }
}


/* Hide WooSwipe zoom icon */
a.wooswipe-popup.wooswipe-mainimagepopup {
  display: none !important;
}

.accordion {
  width: 97%;
  max-width: 1000px;
  margin-left: 10px;
}

.accordion-item {
  background-color: #fff;
  color: #111;
  margin: 1rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px 0 rgba(0,0,0,0.25);
}

.accordion-item-header {
  padding: 0.5rem 3rem 0.5rem 1rem;
  min-height: 3.5rem;
  line-height: 1.25rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-size: 15px;
}

.accordion-item-header::after {
  content: "\002B";
  font-size: 2rem;
  position: absolute;
  right: 1rem;
}

.accordion-item-header.active::after {
  content: "\2212";
}

.accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.accordion-item-body-content {
  padding: 1rem;
  line-height: 1.5rem;
  border-top: 1px solid;
  border-image: linear-gradient(to right, transparent, #34495e, transparent) 1;
  font-size: 15px;
}