:root {
  --bckg-color-red: #a42627;
  --bckg-color-pink: #f5e3dc;
  --font-color-red: #a32729;
  --box-color-lightgrey: lightgrey;
}

* {
    font-family: "Montserrat", sans-serif;
}

a:hover,
a:visited,
a:link:not(.cairon-link),
a:active {
  text-decoration: none;
  color: black;
}

*:focus {
  box-shadow: none !important;
}

.form-select,
.form-control,
.accordion-item:first-of-type .accordion-button,
.modal-content,
.page-link,
.toast,
.nav-item {
  border-radius: 0px !important;
}

/* header */

.header {
  /*min-height: 100px;*/
  width: 100%;
}

.header-cairon {
  background-color: var(--bckg-color-red);
  height: 38px;
  padding: 6px;
  color: white !important;
  font-size: 13px;
  white-space: nowrap;
}

@media (min-width: 990px) {
  .header-middle > div {
    padding: 8px;
    background-color: var(--bckg-color-pink);
  }
}

.header-menu {
  background-color: white;
  border-top: 2px solid var(--bckg-color-red);
  border-bottom: 2px solid var(--bckg-color-red);
  padding: 10px 0 10px 0;
  font-size: 20px;
}

.header-hamburger-area {
  grid-area: hamburger;
}

.header-contact-area {
  grid-area: contact;
  display: flex;
}

.header-contact-area .header-contact {
  display: inline-flex;
  margin-left: 1rem;
  color: var(--font-color-red) !important;
  text-decoration: none !important;
  align-items: center;
  font-size: 13px;
}

.header-contact-area .header-contact > * {
  display: inline-block;
}

.header-contact-area .header-contact .header-contact-icon img {
  width: 20px;
  height: 20px;
  display: inline-block;
  object-fit: unset;
}

.header-contact-area .header-contact .header-contact-text {
  margin-left: 0.25rem;
}

.header-contact-area .header-contact .header-contact-text * {
  color: var(--font-color-red) !important;
  text-decoration: none !important;
}

/* @media (max-width: 1200px) {
    .header-contact-area :nth-child(1) {
        order: 2;
    }
    .header-contact-area :nth-child(2) {
        order: 3;
    }
    .header-contact-area :nth-child(3) {
        order: 1;
    }

    .header-contact-area .header-contact .header-contact-text {
        white-space: nowrap;
        overflow: hidden;
    }

    .header-contact-area .header-contact {
        position: relative;
        overflow: hidden;
    }

    .header-contact-area .header-contact:not(:nth-child(3)) .header-contact-text * {
        transition: transform 0.5s;
        display: block;
        transform: translateX(-120%);
    }

    .header-contact-area .header-contact:not(:nth-child(3)):hover .header-contact-text *{
        transform: translateX(0);
    }
} */

.header-logo-area {
  grid-area: logo;
  text-align: center;
}

@media (max-width: 360px) {
  .header-logo-area {
    margin-left: 5px;
    width: max-content;
  }

  .header-icons-area {
    width: unset !important;
  }
}

.header-logo-area > a {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.header-logo-area > a > img {
  width: 125px;
}

.header-search-area {
  grid-area: search;
  position: relative;
  display: grid;
  align-items: center;
  width: 50%;
}

.header-icons-area {
  grid-area: icons;
  width: 175px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.grid-container {
  display: grid;
  grid-template-columns: 0% 45% auto 45%;
  grid-template-rows: auto;
  grid-template-areas: "hamburger contact logo search-icon";
}

.header-search-icon-area {
  grid-area: search-icon;
  display: flex;
  justify-content: flex-end;
}
.header-search-area-input {
  display: flex;
  align-items: center;
}

.menu-icon {
  margin-top: 25px;
}

.icon-size {
  width: 30px;
  height: 30px;
  display: inline-block;
  color: var(--font-color-red);
  margin-top: unset;
}

.kajron-link {
  font-size: 12px;
  vertical-align: middle;
  display: table-cell;
  color: white;
}

.kajron-text-wrapper {
  display: table;
  width: 100%;
  height: 40px;
}

#carouselCairon .carousel-item a {
  transition: left 1s linear;
  position: relative;
  left: 0;
}

.form-search {
  border-right-style: none;
}

.form-search:hover {
  outline: none !important;
  -webkit-appearance: none;
}

.form-search:focus {
  outline: none !important;
  -webkit-appearance: none;
}

.search-icon .form-control-search {
  position: absolute;
  z-index: 2;
  display: block;
  width: 2.375rem;
  height: 2.375rem;
  line-height: 2.375rem;
  pointer-events: none;
  color: #aaa;
  margin-left: 260px;
  margin-top: 5px;
}

.search-icon .form-control-search-input {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 5px;
  top: 7px;
}

@media (max-width: 787px) {
  .search-icon .form-control-search-input {
    top: 0;
  }
}

.icon-mobile {
  display: none;
}

.show-meny-entry {
  display: none;
}

@media (max-width: 992px) {
  .grid-container {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto;
    grid-template-areas: "hamburger logo search-icon";
  }

  .header-icons-area {
    padding-right: 5px;
    justify-content: flex-end;
    gap: unset;
  }

  .header-logo {
    width: 80%;
    height: auto;
  }

  .header-search-area {
    grid-area: search;
    display: none;
  }

  .header-middle {
    margin: 15px 0 15px 0;
  }

  .header-contact-area {
    display: none;
  }

  .icon-size {
    width: 34px;
    height: 34px;
    margin-left: 5px;
  }

  .icon-visible {
    display: none;
  }

  .icon-mobile {
    display: inline-block;
  }

  .show-meny-entry {
    display: flex;
  }
}

/* content */
.carousel-indicator {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50%;
}

.content {
  background-color: white;
  min-height: 200px;
  margin-top: 140px;
}

.content-home {
  background-color: white;
  min-height: 200px;
  margin-top: 130px;
  position: relative;
}

.content-full {
  height: 75vh;
  position: relative;
  text-align: center;
  width: 100%;
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 85vh;
}

.centered-half {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-100%, -50%);
  width: 50%;
  height: 100%;
}

.centered-within-half {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translate(-50%, -0%);
  width: 80%;
  height: 100%;
}

.btn-image {
  width: 150px;
  padding: 10px;
  font-size: 16px;
}

.content-title-image {
  font-size: 50px;
  font-weight: bold;
  color: white;
  padding-bottom: 20px;
}
.content-subtitle-image {
  font-size: 16px;
  color: white;
  padding-bottom: 20px;
}

.content-title-image-half {
  font-size: 24px;
  color: white;
  padding-bottom: 20px;
}
.content-subtitle-image-half {
  font-size: 16px;
  color: white;
  padding-bottom: 20px;
}

.content-btn-half {
  font-size: 14px !important;
}

.content-title {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--font-color-red);
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 24px;
  font-weight: bold;
}

.content-title::after,
.content-title::before {
  content: "";
  border: 1px solid var(--bckg-color-red);
  flex: 1;
}

.content-title:not(:empty)::before {
  margin-right: 40px;
}

.content-title:not(:empty)::after {
  margin-left: 40px;
}

.content-box {
  border: 1px solid var(--box-color-lightgrey);
  height: 410px;
  position: relative;
}

.content-box-2 {
  border: 1px solid var(--box-color-lightgrey);
  height: 520px;
  position: relative;
}

.content-imagetext {
  height: 350px;
  position: relative;
}

.content-image-text-wrapper {
  height: 100%;
  position: relative;
  text-align: center;
  width: 50%;
  background: lightgray;
}

#expand-description {
  display: none;
}

.content-box-image {
  height: 250px;
  margin: auto;
}

.content-box-image-carousel {
  height: 250px;
  margin: auto;
  padding: 5px;
}

.content-box-2-image {
  height: 350px;
}

.content-box-text-wrapper {
  height: 150px;
}

.content-box-text-wrapper-three {
  height: 100px;
}

.content-box-text-wrapper-blog {
  height: 100px;
}

.content-box-2-text-wrapper {
  padding: 10px;
  height: 100px;
}

.content-box-text-title {
  font-weight: bold;
  font-size: 18px;
  padding: 4px;
}

.content-box-text {
  font-size: 16px;
}

.content-box-button-container {
  height: 50px;
  bottom: 0;
  padding: 5px;
}

.content-box-button-text {
  font-size: 16px !important;
}

.content-button-wrapper {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 10px;
}

.content-search-text {
  text-align: center;
  font-size: 18px;
}

.content-product {
  height: 350px;
}

.content-product-text-wrapper {
  padding: 10px;
}

.content-product-text-title {
  font-weight: bold;
  font-size: 18px;
}

.content-product-text-subtitle {
  font-size: 14px;
}

.content-product-text {
  font-size: 16px;
}

.content-product-price {
  font-size: 16px;
}

.content-filter-wrapper {
  position: relative;
}

.content-filter {
  margin: 0 auto;
}

.carousel-control-next,
.carousel-control-prev {
  width: 40px !important;
}

.carousel-item-white {
  background-color: white;
}
/*
@media (max-width: 767px) {
    .carousel-inner .carousel-item > div {
        display: none;
    }
    .carousel-inner .carousel-item > div:first-child {
        display: block;
    }
}

@media (max-width: 992px) {
    .content{    
        margin-top: 150px;
    }
}


.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    display: flex;
}

/* medium and up screens */
/*
@media (min-width: 768px) {
    
    .carousel-inner .carousel-item-end.active,
    .carousel-inner .carousel-item-next {
      transform: translateX(50%);
    }
    
    .carousel-inner .carousel-item-start.active, 
    .carousel-inner .carousel-item-prev {
      transform: translateX(-50%);
    }
}
/*
.carousel-inner .carousel-item-end,
.carousel-inner .carousel-item-start { 
  transform: translateX(0);
}
*/

.content-half-wrapper {
  width: 50%;
  position: relative;
}

@media (max-width: 767px) {
  .carousel-inner-per .carousel-item > div {
    display: none;
  }
  .carousel-inner-per .carousel-item > div:first-child {
    display: block;
  }

  .content-title-image {
    color: black !important;
    padding-bottom: 20px;
  }
  .content-subtitle-image {
    font-size: 16px !important;
    color: black !important;
    padding-bottom: 20px;
  }

  .centered {
    position: relative;
    display: block;
    top: auto;
    transform: none;
    left: auto;
    width: 100%;
    height: auto;
    margin-top: 25px;
    /*
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        height:85vh;
        */
  }

  .content-half-wrapper {
    position: relative;
    display: block;
    width: 100%;
  }
}

@media (max-width: 992px) {
  .content {
    margin-top: 140px;
  }
}

.car-inner-position {
  margin-left: 30px;
  padding-right: 60px;
}

.carousel-inner-per .carousel-item.active,
.carousel-inner-per .carousel-item-next,
.carousel-inner-per .carousel-item-prev {
  display: flex;
}

/* medium and up screens */
@media (min-width: 768px) {
  .carousel-inner-per .carousel-item-end.active,
  .carousel-inner-per .carousel-item-next {
    transform: translateX(50%);
  }

  .carousel-inner-per .carousel-item-start.active,
  .carousel-inner-per .carousel-item-prev {
    transform: translateX(-50%);
  }
}

.carousel-inner-per .carousel-item-end,
.carousel-inner-per .carousel-item-start {
  transform: translateX(0);
}

.carousel-control-next,
.carousel-control-prev {
  opacity: 1;
}

@media only screen and (max-width: 700px) {
  .content-title::after,
  .content-title::before {
    content: "";
    border: 0;
    flex: 1;
  }

  .content-title-image {
    font-size: 30px;
    color: white;
  }
  .content-subtitle-image {
    font-size: 20px;
    color: white;
    padding-right: 15px;
  }

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

  .content-box {
    border: 0;
  }

  .container.container-home {
    padding: 0 !important;
  }

  .order-success > div:nth-child(1) > div:nth-child(1) {
    width: unset !important;
  }

  .order-success > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) {
    width: unset !important;
  }
}

/* footer */

.footer {
  background-color: var(--bckg-color-red);
  color: white;
  min-height: 150px;
  padding: 15px;
}

.footer-logo {
  max-width: 500px;
}

.footer-left-link {
  color: white !important;
}

.footer-left {
  margin-bottom: 0;
}

.footer-right-text-title {
  font-size: 20px;
}

.newsletter-input {
  width: 60%;
}

.newsletter-button {
  width: 35%;
  font-size: 14px;
}

.network-icons {
  color: white !important;
  font-size: 20px;
  padding-right: 10px;
  padding-top: 10px;
}

.network-icon-padding {
  padding-top: 15px;
}

.newsleter-input {
  outline: 0;
  border-width: 0 0 1px;
  border-color: white;
  background-color: var(--bckg-color-red);
  width: 50%;
  padding-bottom: 10px;
  color: white;
}

.payment-cards {
  height: 30px;
  display: inline;
}

::placeholder {
  color: white;
  font-size: 12px;
  opacity: 1;
}

.footer-link {
  color: white;
  font-size: 16px;
}

li.footer-links {
  display: inline;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.footer-links-container {
  display: table;
  margin: auto;
}

@media only screen and (max-width: 700px) {
  .content-home {
    background-color: white;
    min-height: 200px;
    margin-top: 102px;
  }

  .content-full {
    height: 85vh;
    position: relative;
    text-align: center;
    width: 100%;
  }

  li.footer-links {
    display: block;
    padding-left: 0;
    padding-right: 0;
    margin-left: -20px;
  }

  .footer-links-container {
    display: block;
  }

  .newsletter-input {
    width: 100%;
  }

  .newsletter-button {
    width: 100%;
  }

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

/* sub-footer */

.sub-footer {
  background-color: white;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* general */

.align-left {
  float: left;
}

.align-right {
  float: right;
}

.no-radius {
  border-radius: 0;
}

.button-red {
  background-color: var(--bckg-color-red) !important;
}

.button-red-outline {
  border: 2px solid var(--bckg-color-red);
  padding: 8px;
  border-radius: 5px;
  font-size: 18px;
  min-width: 200px;
}

.button-white {
  background-color: white;
}

.font-black a {
  color: black !important;
}

.font-white {
  color: white !important;
}

.font-bold {
  font-weight: bold;
}

.margin-bottom-10 {
  margin-bottom: 10px;
}
.margin-bottom-20 {
  margin-bottom: 20px;
}
.margin-bottom-30 {
  margin-bottom: 30px;
}
.margin-bottom-40 {
  margin-bottom: 40px;
}
.margin-bottom-50 {
  margin-bottom: 50px;
}

.margin-top-10 {
  margin-top: 10px;
}
.margin-top-20 {
  margin-top: 20px;
}
.margin-top-30 {
  margin-top: 30px;
}
.margin-top-40 {
  margin-top: 40px;
}
.margin-top-50 {
  margin-top: 50px;
}

.image-fit {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-fit-carousel {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .image-fit-carousel {
    height: 50%;
  }
}

.font-12 {
  font-size: 12px;
}
.font-14 {
  font-size: 14px;
}
.font-16 {
  font-size: 16px !important;
}
.font-18 {
  font-size: 18px !important;
}
.font-20 {
  font-size: 20px !important;
}

.font-24 {
  font-size: 24px !important;
}

.font-30 {
  font-size: 30px !important;
}

.font-35 {
  font-size: 35px !important;
}

.font-40 {
  font-size: 40px !important;
}

/* fix za 5 kolona*/
.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-xs-5ths {
  width: 20%;
  float: left;
}

@media (min-width: 768px) {
  .col-sm-5ths {
    width: 20%;
    float: left;
  }
}

@media (min-width: 992px) {
  .col-md-5ths {
    width: 20%;
    float: left;
  }
}

@media (min-width: 1200px) {
  .col-lg-5ths {
    width: 20%;
    float: left;
  }
}

a {
  color: black;
}

a.cairon-link {
  color: white !important;
}

a:hover {
  color: black;
}

.input-group-text {
  background-color: white !important;
  height: 50px;
}

body {
  outline-color: red;
}

/*
lartisan 
*/

.carousel-indicators [data-bs-target] {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50%;
}

.product-data {
  font-size: 30px;
  font-weight: 500;
}

@media (max-width: 700px) {
  .product-data {
    font-size: 20px;
  }
}

.product-price {
  font-size: 20px;
  font-weight: 600;
}

.product-data-discount {
  font-size: 16px;
  font-weight: 600;
  margin-top: -25px;
  color: rgb(168, 168, 168);
}

.product-description {
  font-size: 12px;
  letter-spacing: 1.5px;
}

.product-qty {
  font-size: 14px;
}

.product-size {
  font-size: 14px;
}

.button-add {
  font-size: 14px;
  /* height:50px; */
  padding-top: 9px;
}

.button-add:hover {
  color: white !important;
}

.border-black {
  border-color: black;
}

.product-input {
  font-size: 12px;
  height: 50px;
}

.title-and-price {
  width: 100%;
  padding: 5px;
  font-family: "Prompt", sans-serif;
}

.item-title {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.3px;
  margin-top: 4px;
  width: 90%;
  margin: 0 auto;
  height: 40px;
}

@media (min-width: 768px) {
  .title-and-price .item-title {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
    height: 50px;
  }

  .title-and-price:has(> .item-price-discount) .item-title {
    -webkit-line-clamp: 2;
    height: 40px;
  }
}

.item-price {
  text-align: center;
  font-size: 12px;
  margin-bottom: 12px;
}

.item-price-discount {
  text-align: center;
  font-size: 12px;
  color: lightgray;
  text-decoration: line-through;
}

.top-margin {
  margin-top: 18px;
}

.btn-red {
  color: #fff;
  background-color: var(--bckg-color-red) !important;
  border-color: var(--bckg-color-red) !important;
}

.product-container {
  padding-right: 5px !important;
  padding-left: 5px !important;
}

.accordion-button:focus {
  background-color: #fff;
  border-color: white;
}

.accordion-button:not(.collapsed) {
  color: black;
  background-color: white;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-item:first-of-type {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.product-wine-image-wrapper {
  height: 300px;
}

.product-wine-text-wrapper {
  min-height: 300px;
}

.product-wine-title {
  font-size: 20px;
}

.product-wine-text {
  font-size: 16px;
}

.product-img {
  height: 300px;
  object-fit: scale-down;
}

.product-page-img {
  max-height: 50vh;
  margin: 0 auto;
}

.product-price {
  font-size: 20px;
  font-weight: 600;
  color: var(--font-color-red);
}

.carousel-inner-per .carousel-item {
  transition: transform 0.1s ease-out !important;
}

/*
hr{
    width:92% !important;
}
*/

.checkout-details {
  background: rgb(233, 233, 233);
  border-left: 1px solid lightgray;
}

.checkout-small-image {
  height: 80px;
}

.checkout-image-product-count-wrapper {
  position: relative;
}

.checkout-image-product-count {
  background: gray;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: block;
  font-size: 14px;
  position: absolute;
  top: -5px;
  right: -10px;
}

.checkout-image-product {
  background: white;
  border: 1px solid lightgray;
  width: 80px;
  height: 80px;
}
.checkout-center-image {
  margin: auto;
  display: block;
  height: 80px;
  width: 80px;
  object-fit: scale-down;
}

.checkout-product-title {
  font-size: 16px;
  font-weight: bold;
}

.checkout-product-attribute {
  font-size: 14px;
}

.checkout-product-price {
  font-size: 14px;
  font-weight: bold;
}

.checkout-product-total-price {
  font-size: 16px;
  font-weight: bold;
}

.checkout-total-cost {
  font-size: 16px;
}

.payment-card {
  display: inline-block;
  height: 30px;
}

.btn-no-radius {
  border-radius: 0px !important;
}

.btn-dark:hover {
  color: white !important;
}

a.btn-dark {
  color: white !important;
}

.active-link {
  font-weight: bold;
}

.show-hide-basket {
  display: none;
}

#basket-container {
  display: block;
}

.checkout-navigation {
  font-size: 12px;
  margin-right: 0;
  margin-left: 0;
}

.checkout-navigation * {
  color: var(--font-color-red) !important;
}

.checkout-navigation.row > * {
  padding: 0px 5px !important;
}

@media screen and (max-width: 700px) {
  .checkout-navigation.row > * {
    padding: 0px 0px !important;
  }
}
@media only screen and (min-width: 700px) {
  #basket-container {
    display: block;
  }
}
.mobile-show {
  display: none;
}

.mobile-nav-bar {
  display: none !important;
}
@media only screen and (max-width: 700px) {
  #basket-container {
    display: none;
  }

  .show-hide-basket {
    display: block;
    padding: 10px;
  }

  .checkout-navigation {
    margin-top: 20px;
  }

  .carousel-indicators [data-bs-target] {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
    /* background-color: black !important */
  }

  .item-title {
    height: 50px;
  }

  .mobile-nav-bar {
    display: block !important;
  }

  .mobile-hidden {
    display: none !important;
  }

  .mobile-show {
    display: inherit;
  }

  .dots-after-three-lanes {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/*wishlist*/
.wishlist-product-wrapper {
  border: 1px solid lightgray;
  margin-top: 5px;
  margin-bottom: 5px;
}

.wishlist-product-total-wrapper {
  border: 1px solid lightgray;
  padding: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.wishlist-product-image {
  height: 150px;
  margin: auto;
}

.wishlist-product-name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

.wishlist-product-code {
  font-size: 14px;
  margin-bottom: 5px;
}

.wishlist-product-description {
  height: 50px;
  font-size: 14px;
}

.wishlist-product-discount {
  font-size: 12px;
  height: 40px;
}

.wishlist-product-price-display-wrapper {
  position: relative;
}

.wishlist-product-price-display {
  position: absolute;
  bottom: -110px;
  right: 5px;
}

.wishlist-product-price-display-position {
  position: relative;
}

.wishlist-product-price {
  font-weight: bold;
}

.wishlist-product-addtowishlist {
  background-color: black;
  color: white;
  padding: 5px;
}

.wishlist-product-label {
  position: absolute;
  top: 0;
  left: 10px;
  background-color: orange;
  height: 35px;
  width: 55px;
}

.wishlist-product-delete {
  position: relative;
}

.login-position {
  font-size: 14px;
  text-align: left;
  max-width: 500px;
  width: 100%;
  padding: 5px;
}

.login-height {
  /* height: 40VH; */
  display: flex;
  justify-content: center;
}

.cart-counter {
  font-size: 9px;
  border-radius: 50%;
}

.cart-counter-position {
  /* margin-left : -20px;
    margin-right : -10px;
    margin-top: 10px; */
  position: absolute;
  right: 0;
  bottom: 0;
}

.font-red {
  color: var(--font-color-red) !important;
}

.title-bold {
  font-weight: bold;
}

.basket-remove-button {
  text-decoration: underline !important;
  color: black;
}

.promocode-error {
  color: red;
  font-size: 12px;
}

.add-wishlist-icon {
  height: 25px;
  display: inline-block;
  margin-top: -10px;
}

.category-top-image {
  height: 250px;
}

.category-top-description {
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 5px;
  position: relative;
}

.category-top-description-full {
  display: block;
}

.category-top-description-short {
  display: none;
}

.category-top-title {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.mobile-filter-header {
  display: none;
}

.left-filter {
  display: block;
  background: #f5e3dc33;
}

.left-filter .filter-group {
  padding: 8px 16px;
}

.left-filter .filter-group:not(:last-child) {
  border-bottom: 1px solid #a42627ba;
}

.left-filter .radio-item {
  padding: unset;
}

.left-filter .radio-item label::before{
  border-color: var(--font-color-red);
}

.left-filter .radio-item input[type="radio"]:checked + label:after {
  background-color: var(--font-color-red);
  top: 8px;
  left: 5px;
  width: 6px;
  height: 6px;
}

.left-filter .filter-group .filter-title{
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  font-size: 15px;
}

.left-filter .filter-checkbox {
  padding: 0;
  position: relative;
}

.left-filter .filter-checkbox input {
  display: none;
}

.left-filter .filter-checkbox input + label::before {
  width: 14px;
  height: 14px;
  display: inline-block;
  border: 1px solid var(--font-color-red);
  content: "";
  margin-right: 4px;
  border-radius: 2px;
  margin-left: 1px;
}

.left-filter .filter-checkbox input + label i {
  color: var(--font-color-red);
  position: absolute;
  left: 4px;
  top: 4px;
  font-size: 8px;
  opacity: 0;
}

.left-filter .filter-checkbox input:checked + label i {
  opacity: 1;
}

.left-filter .filter-checkbox-label{
  margin-left: unset;
}

.left-filter .filter-content {
  overflow: hidden;
  transition: all 0.2s;
  max-height: 0px;
  scrollbar-color: var(--bckg-color-red) var(--bckg-color-pink) ;
  scrollbar-width: thin;
}

.left-filter .filter-content.filter-content-show {
  max-height: 500px;
}

.left-filter .filter-content > div:first-child {
  margin-top: 8px;
}

.right-filter {
  display: none;
}

#right-filter-content {
  padding: 15px;
}

.filter-title {
  font-size: 16px;
  color: var(--bckg-color-red);
  font-weight: 500;
}

.filter-checkbox {
  font-size: 14px;
  padding: 5px;
}

.filter-checkbox-label {
  margin-left: 5px;
}

.hide-box {
  display: block;
}

.show-right-filter {
  display: block !important;
}

.hide-right-filter {
  display: none !important;
}

.category-show-hide-wrapper {
  display: none;
}

@media only screen and (max-width: 700px) {
  .hide-box {
    display: none;
  }

  .category-top-description {
    height: 50px;
    overflow: hidden;
    margin-bottom: 15px;
  }

  .category-top-description-expand {
    height: auto !important;
    overflow: none !important;
    position: relative;
  }

  .category-show-hide-wrapper {
    /* position: absolute;
        bottom:0;
        right:5px; */
    text-align: center;
    background-color: white;
    padding: 4px;
    color: var(--bckg-color-red);
    display: block;
  }

  #expand-description {
    display: inline-block;
  }

  .cart-counter-position {
    position: absolute;
    right: -8px;
    bottom: 15px;
  }

  div:has(> .left-filter) {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    min-height: 100VH;
    /* background-color: rgba(0, 0, 0, 0); */
    z-index: 2000;
    transition: all 0.5s;
  }

  div.show:has(> .left-filter) {
    /* display: block; */
    /* background-color: rgba(0, 0, 0, 0.5); */
  }

  .left-filter { 
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 2000;
    background: #f5f1ef;
    width: 90VW;
    padding: 8px;
    height: calc(100VH - 50px);
    overflow: scroll;
    margin-top: 50px;
    transition: all 0.5s;
  }

  div.show:has( > .left-filter) .overlay {
    opacity: 1;
    visibility: unset !important;
  }

  div.show > .left-filter {
    left: 10px;
  }

  .mobile-filter-header {
    background-color: var(--bckg-color-red);
    color: var(--bckg-color-pink);
    position: fixed;
    height: 50px;
    z-index: 2000;
    width: 90vW;
    left: -100%;
    transition: all 0.5s;
    display: block;
  }

  div.show .mobile-filter-header {
    left: 0;
  }

  .mobile-filter-header > :first-child {
    display: inline-block;
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 500;
  }

  .mobile-filter-header > :first-child p {
    margin-bottom: unset;
    line-height: 50px;
  }

  .mobile-filter-header > :last-child {
    position: absolute;
    right: 0px;
    top: 0px;
  }

  .mobile-filter-header > :last-child button {
    font-size: 2.25rem;
    line-height: 3.125rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    color: #f2f2f2;
    text-align: center;
    background-image: url(../icons/close.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 75% 75%;
    border-left: 1px solid var(--bckg-color-pink);
  }

  .left-filter .radio-item {
    display: block;
  }

  .left-filter .filter-title {
    padding: 8px 0;
  }

  .left-filter .filter-title :last-child {
    display: none;
  }

  .left-filter .filter-content {
    height: auto;
    max-height: unset !important;
    margin-bottom: 8px;
  }

  .right-filter {
    display: block;
  }

  .centered-half {
    position: absolute;
    top: 0;
    left: unset;
    transform: none;
    width: 100%;
    height: 100%;
  }

  .content-full {
    height: unset;
  }

  .content-full .image-fit {
    height: 50vh;
  }

  .m-image-contain {
    object-fit: contain !important;
  }

  #carouselMain .carousel-indicators {
    bottom: unset;
    top: 45vh;
  }

  .category-top-description-full {
    display: none;
  }

  .category-top-description-short {
    display: block;
  }

  .product-img {
    height: 200px;
  }

  .footer-margin {
    margin-bottom: 20px;
  }

  .category-top-description {
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .category-top-description:not(.category-top-description-expand) {
    display: -webkit-box;
  }
}

.four-cards-blog-link {
  font-size: 16px;
  color: var(--bckg-color-red) !important;
  text-transform: uppercase;
}

.four-cards-blog-link-wrapper {
  margin-top: 15px;
  margin-bottom: 15px;
}

.search-overlay {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 1097;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.search-overlay > div {
  height: 100%;
  width: 100%;
  padding-top: 100px;
}
.search-overlay > div .overlay-content {
  width: 100%;
  padding: 16px 24px;
  background-color: var(--bckg-color-pink);
}
.search-overlay > div .overlay-content .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.search-overlay > div .overlay-content input {
  /* background-color: transparent;
  border: 0;
  border-bottom: 2px solid #777777;
  border-radius: 0;
  padding: 20px 0; */
}
.search-overlay > div .overlay-content input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  /* color: #777777;
  font-size: 18px; */
}
.search-overlay > div .overlay-content input::-moz-placeholder {
  /* Firefox 19+ */
  /* color: #777777;
  font-size: 18px; */
}
.search-overlay > div .overlay-content input:-ms-input-placeholder {
  /* IE 10+ */
  /* color: #777777;
  font-size: 18px; */
}
.search-overlay > div .overlay-content input:-moz-placeholder {
  /* Firefox 18- */
  /* color: #777777;
  font-size: 18px; */
}
.search-overlay > div .overlay-content button {
  position: absolute;
  top: -3px;
  background-color: transparent;
  border: 0;
  font-size: 24px;
  color: #777777;
  right: 15px;
}
.search-overlay > div .closebtn {
  position: fixed;
  top: 10px;
  right: 25px;
  color: #777777;
  font-size: 40px;
  cursor: pointer;
}

.no-border {
  border: 0;
}

.sale-comment {
  padding-left: 14px !important;
  margin-top: 1rem;
}

.sale-comment li {
  font-size: 16px;
  color: var(--bckg-color-red) !important;
  list-style-type: disc !important;
}

.product-package-title {
  /* font-weight: bold;     */
}

.product-package-value {
  margin-top: 5px;
  margin-bottom: 5px;
  color: black !important;
}

.product-tag-wrapper {
  position: absolute;
  height: 90px;
  z-index: 1;
}

.product-tag {
  /* position: absolute;
    top:30px;
    left:20px; */
  width: 90px;
  height: 90px;
  color: white;
  padding: 5px;
  font-weight: bold;
}

.center-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 35px;
}

s,
strike {
  text-decoration: none;
  position: relative;
}
s::before,
strike::before {
  top: 50%;
  background: gray;
  opacity: 0.7;
  content: "";
  width: 110%;
  position: absolute;
  height: 0.1em;
  border-radius: 1px;
  left: -5%;
  white-space: nowrap;
  display: block;
  transform: rotate(-15deg);
}
s.straight::before,
strike.straight::before {
  transform: rotate(0deg);
  left: -1%;
  width: 102%;
}

.product-title {
  font-size: 18px;
  font-weight: 500;
}

.product-discount-image {
  /*
    height:40px;
    width:40px;
    */
}

.discout-price-strikethrough {
  text-decoration: line-through;
}

.accordion-item {
  border: 0 !important;
}

.accordion-button-wine {
  font-size: 18px !important;
  color: var(--bckg-color-red) !important;
}

.accordion-button {
  padding: 1rem 0px 1rem 0px !important;
}

.accordion-button.collapsed::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23a11'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23a11'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.bg-white {
  background-color: transparent !important;
}

.carousel-control-next-icon {
  width: 1.5rem !important;
}

.carousel-control-prev-icon {
  width: 1.5rem !important;
}

.flex-align-end {
  display: flex;
}
.flex-align-end > * {
  align-self: flex-end;
}

.underline-text {
  text-decoration: underline !important;
}

.nodisplay {
  display: none !important;
}

/* BLOGS */

.blogs-date {
  font-size: 16px;
}

.blogs-title {
  font-size: 20px;
}

.blogs-text {
  font-size: 14px;
}

.blogs-img {
  height: 400px;
}

/* BLOG */

.blog-img {
  height: 600px;
}

.blogs-date {
  font-size: 16px;
}

.blog-text {
  font-size: 14px;
}

.container.blog p {
  font-size: 14px;
  margin-bottom: 3rem !important;
}

.container.blog img {
  margin-bottom: 3rem !important;
}

.category-label-wrapper {
  position: relative;
  overflow: hidden;
}

.category-label-wrapper > div {
  position: relative;
  overflow: hidden;
  padding: 0.5rem !important;
}

.category-label-wrapper:hover > div {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

@media only screen and (max-width: 700px) {
  .category-label-wrapper:hover > div {
    box-shadow: none !important;
  }

  .blogs-img {
    height: 300px;
  }

  .blog-img {
    height: 400px;
  }

  .product-tag {
    left: 0;
  }
}

.category-label {
  position: absolute;
  top: 4px;
  left: 4px;
  height: 60px;
  width: 60px;
}

.category-label + .category-label {
  margin-top: 65px;
}

.page-title {
  font-size: 20px;
}

.label-fix {
  display: block;
  overflow: hidden;
  padding: 0px 4px 0 15px;
  margin-top: -23px;
  margin-left: 5px;
}

label > input[type="radio"] + * {
  display: inline-block;
  padding: 0.5rem 1rem;
}

.radio-item {
  display: inline-block;
  position: relative;
  padding: 0 6px;
  margin: 0 0;
}

.radio-item input[type="radio"] {
  display: none;
}

.radio-item label {
  color: black;
  font-weight: normal;
}

.radio-item label:before {
  content: " ";
  display: inline-block;
  position: relative;
  top: 3px;
  margin: 0 5px 0 0;
  width: 16px;
  height: 16px;
  border-radius: 11px;
  border: 1px solid black;
  background-color: transparent;
}

.radio-item input[type="radio"]:checked + label:after {
  border-radius: 11px;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 7px;
  left: 10px;
  content: " ";
  display: block;
  background: black;
}

.checkout-fineprint {
  padding-bottom: 10px;
  font-size: 14px;
}

@media only screen and (max-width: 700px) {
  .checkout-fineprint {
    position: relative;
    bottom: unset;
    font-size: 13px;
  }
}

/* PAGES */
.page-content-wrapper {
  margin-top: 130px;
  margin-left: 0px;
  margin-right: 0px;
}

.category-image-wrap {
  position: relative;
  justify-content: center;
  align-items: center;
  font-family: "Prompt", sans-serif;
}

.category-image-wrap .form-control:focus {
  background-color: unset !important;
}

.carousel-img {
  height: 87vh;
  width: 100vw;
}

.content-text-wrapper {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  min-width: 350px;
}

.content-text-wrapper span {
  color: white;
}

.txt-background {
  /* background-color: #d4d4d4;     */
  padding-left: 50px;
  padding-right: 50px;
}

.txt-info {
  font-size: 16px;
  min-height: 100px;
  /* padding : 50px; */
}

.padding-0-cats-sm {
  padding-right: 4px;
  padding-left: 0;
}

.description-wrapper {
  height: 87vh;
}

.center-text {
  text-align: center;
  display: block;
}

.txt-description {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  text-align: left;
}

.txt-description-title {
  font-weight: bold;
  font-size: 18px;
  padding-bottom: 5px;
}

.txt-description-subtitle {
  font-size: 16px;
  padding-bottom: 25px;
}

@media only screen and (max-width: 700px) {
  .page-content-wrapper {
    margin-top: 100px;
  }

  .carousel-img {
    height: 85vh;
    width: 100%;
  }

  .padding-0-cats-sm {
    padding-left: 4px;
    padding-right: 0px;
  }

  .content-box-2-text-wrapper {
    height: unset;
  }
}

.no-right-padding {
  padding-right: unset;
}

.underline {
  text-decoration: underline !important;
}

.all-product-pictures > div {
  max-height: 100px;
}

.all-product-pictures > div > img {
  margin: auto;
  height: 100%;
  object-fit: contain;
}

.out-of-stock {
  width: 165px;
  height: 30px;
  transform: rotate(-30deg);
  margin-left: -30px;
  opacity: 0.7;
  background: rgba(164, 38, 39, 1);
  color: white;
  text-align: center;
  line-height: 30px;
  margin-top: 15px;
}

.footer .warning-notification {
  width: 60%;
  position: relative;
}

.footer .warning-notification div:nth-child(2) {
  font-size: 8px;
  position: absolute;
  left: 40px;
  line-height: 10.5px;
}

@media only screen and (max-width: 700px) {
  .footer .warning-notification {
    width: 80%;
  }
}

div[data-type$="cities-select"] {
  overflow: scroll;
  background-image: unset;
  padding: 0.375rem 0.75rem 0.375rem 0.75rem;
  max-height: 250px;
  position: absolute;
  display: none;
  z-index: 1;
}

div[data-type$="cities-select"] > span:hover {
  background-color: #ccc;
}

@media (max-width: 700px) {
  div[data-type$="cities-select"] {
    max-height: 100px;
  }
}

.social-icon {
  width: 24px;
  height: 24px;
}

.basket-preview {
  width: 380px;
  position: fixed;
  background-color: #ffffff;
  transform: translateX(-91%);
  /* padding: 20px; */
  z-index: 1000;
  display: none;
}

.basket-preview > .items {
  max-height: 50vh;
  overflow-y: auto;
  margin: 20px 0 0 20px;
  padding-right: 20px;
}

.basket-preview > :nth-child(2) {
  margin: 0px 8px 20px 8px;
}

.basket-preview > .items::-webkit-scrollbar {
  width: 5px;
}

.basket-preview > .items::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.basket-preview > .items::-webkit-scrollbar-thumb {
  background: #555;
}

.basket-preview > .items > div {
  height: 115px;
  margin: 0;
}

.basket-preview > .items > div:not(:last-child) {
  border-bottom: 1px solid #d1d1d1;
}

.basket-preview > .items > div > div:first-child > a:first-child > img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid #f2f2f2;
  display: inline-block;
  margin-right: 5px;
  padding: 10px;
}

.basket-preview .product-info {
  width: 185px;
  display: inline-block;
}

.basket-preview .basket-remove-button {
  width: 42px;
  height: 42px;
  /* padding: 10px; */
  display: inline-block;
  /* border: 1px solid var(--bckg-color-red); */
  /* border-radius: 50%; */
  color: var(--font-color-red);
  position: absolute;
  right: 0px;
  top: 15px;
}

.basket-preview .basket-remove-button > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.basket-preview .product-info p {
  margin-bottom: unset;
}

.basket-preview .product-info a:first-child {
  color: var(--font-color-red);
}

.basket-preview .product-info p {
  color: #707070;
  font-size: 12px;
}

.basket-preview .product-info p:last-child {
  color: #707070;
  font-size: 1rem !important;
}

.basket-preview .to-basket {
  color: #fff !important;
}

.header-basket:hover .basket-preview {
  display: block;
}

.basket-preview-price {
  color: #707070;
}

.basket-preview > .items > .row {
  transition: height 0.5s;
}

.basket-preview .basket-preview-price {
  transition: background-color 0.25s;
}

#removedToast button {
  color: #fff !important;
}

.basket-item {
  transition: height 0.5s;
  height: 80px;
}

@media (max-width: 767px) {
  .basket-preview {
    display: none !important;
  }
}

.login-form .form-label {
  color: #808080;
  font-size: 12px;
}

.login-form .required::after {
  content: " *";
  color: red;
}

.login-form input[type="text"].form-control,
.login-form input[type="password"].form-control {
  border-radius: 5px !important;
  font-size: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.login-form input[name="lpassword"].form-control {
  border-radius: 5px 0px 0px 5px !important;
  border-right: unset;
}

.login-form input[type="submit"].form-control {
  font-size: 14px;
  padding: 8px;
}

.login-form label[for="passwordVisible"] {
  display: inline-block;
  width: 25px;
  height: 25px;
}

.login-form #passwordVisible:checked + label[for="passwordVisible"] {
  background-image: url("../images/show-password.svg");
}

.login-form label[for="passwordVisible"] {
  background-image: url("../images/hide-password.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.login-form input[name="lpassword"]:focus + span {
  border-color: #86b7fe;
}

.login-form input[name="lpassword"].is-invalid + span {
  border-color: #dc3545 !important;
}

.login-form #passwordVisible {
  display: none;
}

.login-form .form-control.is-invalid {
  background-image: none !important;
}

.text-red {
  color: var(--font-color-red) !important;
}

.basket-view-product {
  /* width: 665px; */
  height: 80px;
  border-bottom: 1px solid #d1d1d1;
  font-size: 14px;
}

.basket-view-product > * {
  display: inline-block;
}

.basket-item-quantity-actions > * {
  width: 38px;
  height: 38px;
  border-color: #6c757da6 !important;
  opacity: 1 !important;
  transition: background-color 0.25s;
}

#product-view .basket-item-quantity-actions > button:first-child {
  margin-right: -1px;
}

.basket-item-quantity-actions > :nth-child(2) {
  width: 45px;
}

.basket-item-quantity-actions > :nth-child(2):hover {
  background-color: initial;
  color: #6c757d;
}

.basket-item-quantity-actions > :not(:nth-child(2)):hover {
  background-color: #ededed;
  color: #6c757d;
  /* color: white; */
}

.basket-view-product .product-name {
  width: 225px;
  display: inline-block;
}

.basket-product-price {
  width: 115px;
  text-align: right;
}

.basket-view-product > a > img {
  width: 55px;
}

@media screen and (max-width: 1200px) {
  .basket-view-product {
    width: 100%;
  }
}

.basket-view-product > :nth-child(3) > :nth-child(1),
.basket-view-product > :nth-child(3) > :nth-child(3) {
  display: none;
}

@media screen and (max-width: 767px) {
  .basket-view-product {
    height: 180px;
  }

  .basket-item {
    height: 180px;
  }

  .basket-view-product > :nth-child(2),
  .basket-view-product > :nth-child(4) {
    display: none;
  }

  .basket-view-product > :nth-child(3) > :nth-child(1),
  .basket-view-product > :nth-child(3) > :nth-child(3) {
    display: block;
  }

  .basket-view-product > :nth-child(3) {
    width: 235px;
    margin-left: 5px;
  }

  .basket-view-product > a > img {
    width: 110px;
  }
}

.add-to-cart {
  border: 1px solid var(--bckg-color-red);
  /* color: var(--font-color-red) !important; */
  background-color: var(--bckg-color-red);
  color: white !important;
  border-radius: 0;
  padding-left: 50px;
  padding-right: 50px;
  font-size: 13px;
  position: relative;
  border-radius: 2px;
  display: block !important;
  margin: 0 auto;
}

.add-to-cart.not-on-lager {
  /* background-color: unset;
    color: var(--font-color-red) !important; */
  padding-left: 79px;
  padding-right: 79px;
  margin-top: 42px;
  display: inline-block !important;
}

.add-to-cart > span {
  background-image: url("../images/basket2.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 20px;
  height: 20px;
  display: inline-block;
  position: absolute;
  bottom: 10px;
}

.add-to-cart.not-on-lager:hover {
  /* color: white !important;
    background-color: var(--bckg-color-red); */
}

.add-to-cart/*:not(.not-on-lager)*/:hover {
  color: white !important;
  filter: brightness(125%);
}

.add-to-cart:hover > span {
  background-image: url("../images/basket2-white.svg");
}

.category-label-wrapper .add-to-favorite {
  position: absolute;
  top: 10px;
  right: 5%;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.category-label-wrapper .add-to-favorite > span {
  background-image: url("../images/heart.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 20px;
  height: 20px;
  display: inline-block;
  position: absolute;
  bottom: 10px;
}

.add-to-favorite > span.fill {
  background-image: url("../images/heart-fill.svg") !important;
}

.add-to-favorite > span.fill.just-added {
  animation: beat 0.25s;
}

@keyframes beat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@media screen and (max-width: 1050px) {
  .category-label-wrapper .add-to-favorite {
    right: 1%;
  }
}

@media screen and (max-width: 767px) {
  .add-to-cart {
    padding-left: 5px;
    padding-right: 5px;
    width: 100%;
    display: flex;
    justify-content: center;
    justify-items: center;
  }

  .add-to-cart.not-on-lager {
    padding-left: unset;
    padding-right: unset;
  }

  .add-to-cart > span {
    position: unset;
    margin-left: 5px;
  }

  .category-label-wrapper .add-to-favorite {
    top: 10px;
    right: 10px;
  }

  .add-to-cart.not-on-lager {
    /* padding-left: 5px;
        padding-right: 5px;
        display: grid;
        place-items: center; */
  }
}

.product-favorite .add-to-favorite > span {
  background-image: url("../images/heart.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 20px;
  height: 20px;
  display: inline-block;
}

.register-page form .form-group {
  display: block !important;
}

.register-page form .form-group label {
  font-size: 12px;
  color: #707070;
}

.register-page form .section-title {
  font-size: 12px;
}

.form-group.password-group input[type="password"].form-control,
.form-group.password-group input[type="text"].form-control {
  border-radius: 5px 0px 0px 5px !important;
  border-right: unset;
}

.form-group.password-group .password-visibility label {
  display: inline-block;
  width: 25px;
  height: 25px;
}

.form-group.password-group
  .password-visibility
  input[type="checkbox"]:checked
  + label {
  background-image: url("../images/show-password.svg");
}

.form-group.password-group .password-visibility label {
  background-image: url("../images/hide-password.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.form-group.password-group input[type="password"]:focus + span {
  border-color: #86b7fe;
}

.form-group.password-group input[type="password"].invalid,
.form-group.password-group input[type="password"].invalid + span {
  border-color: #dc3545 !important;
}

.form-group.password-group input[type="checkbox"] {
  display: none;
}

.form-group.password-group .form-control.invalid {
  background-image: none !important;
}

.form-group.password-group .input-group-text {
  height: unset;
}

.form-group input:not([type="password"]).invalid {
  border-color: #dc3545 !important;
}

.form-group input.invalid ~ .invalid-feedback {
  display: block;
}

form.mark-required-fields input:required:placeholder-shown {
  border-color: #dc3545;
}

.email-server-message + .invalid-feedback {
  display: none !important;
}

.registration-not-finished.alert {
  max-width: 450px;
  margin: auto auto;
  z-index: 1000;
  opacity: 0.8;
  position: fixed;
  right: 10px;
  top: 10px;
}

.register-page.profile-page .form-group:has(input:invalid) label:first-child,
.register-page.profile-page .form-group:has(input:invalid) input {
  transition: all 0.25s;
  animation: blinker 0.5s linear 1;
}

.register-page.profile-page .form-group:has(input:invalid) input {
  border-color: #dc3545 !important;
}

@keyframes blinker {
  50% {
    background-color: #f8d7da;
  }
}

.search-text {
  background-color: transparent !important;
  border: 1px solid var(--bckg-color-red) !important;
  border-radius: 5px !important;
  color: var(--font-color-red) !important;
  font-size: 10px;
}

@media (max-width: 992px) {
  .search-text {
    font-size: 14px;
  }
}

.search-text::placeholder {
  color: var(--font-color-red);
  opacity: 1;
}

.carousel-control-next > div,
.carousel-control-prev > div {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 3px;
  height: 6rem;
}

.carousel-control-next > div:hover,
.carousel-control-prev > div:hover {
  background: rgba(255, 255, 255, 0.5);
}

.carousel-control-next {
  right: 10px;
}

.carousel-control-prev {
  left: 10px;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  width: 2.5rem !important;
  height: 4rem !important;
  margin-top: 1rem;
}

.carousel-control-next-icon {
  background-image: url("../icons/right.png");
}
.carousel-control-prev-icon {
  background-image: url("../icons/left.png");
}

@media screen and (max-width: 767px) {
  .carousel-control-next,
  .carousel-control-prev {
    height: 50vh;
  }

  .carousel-control-next > div,
  .carousel-control-prev > div {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    height: 5rem;
  }

  .carousel-control-next-icon,
  .carousel-control-prev-icon {
    width: 2rem !important;
    height: 3rem !important;
    margin-top: 1rem;
  }
}

#accordionProduct .accordion-body table tr td:first-child > div {
  display: flex;
  align-items: center;
  gap: 5px;
}

#accordionProduct .accordion-body table tr td:first-child img {
  display: inline-block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

#product-view {
  max-width: 100rem;
}

#product-view .product-action {
  order: 2;
}

#product-view .product-description {
  order: 1;
}

@media (max-width: 990px) {
  #product-view .product-action {
    order: 1;
  }

  #product-view .product-description {
    order: 2;
  }
}

[type="radio"] {
  accent-color: var(--bckg-color-red);
  width: 1rem;
  height: 1rem;
}

#login-modal .modal-content {
  border-radius: 0.3rem !important;
  border: 0;
}

#login-modal .content {
  margin-top: unset;
}

#login-modal .btn-close {
  background: url("../icons/close-red.svg") no-repeat;
  background-size: contain;
  opacity: 1;
}

.specification-file {
  max-width: 250px;
  border: 1px solid var(--font-color-red);
  color: var(--font-color-red) !important;
  border-radius: 2px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.25s;
}

.specification-file:hover {
  background-color: var(--bckg-color-pink);
  box-shadow: 0px 0px 2px 0px;
  border-color: #f5e3dc44;
}

.specification-file > i {
  content: url("../icons/download.svg");
  vertical-align: bottom;
}

@media (max-width: 767px) {
  .specification-file {
    display: block;
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
}

.page-menu-area > .page-menu {
  position: sticky;
  top: 150px;
}

.mobile-page-menu-trigger {
  display: none;
}

@media (max-width: 767px) {
  .page-menu-area {
    position: fixed;
    bottom: 0px;
    left: 0px;
    top: unset;
    margin-left: unset !important;
    padding-bottom: 5px;
    transform: translateY(calc(100% - 35px));
    transition: transform 0.25s;
    height: fit-content;
    background-color: var(--bckg-color-pink);
    width: 100%;
    box-shadow: 0 -3px 10px 0 rgba(0, 0, 0, 0.3);
    z-index: 1;
  }

  .page-menu-area.show {
    transform: translateY(0);
  }

  .txt-info {
    padding-right: 0;
  }

  .mobile-page-menu-trigger {
    display: block;
    width: 100%;
    height: 35px;
    background-color: var(--bckg-color-red);
    border: 1px solid var(--bckg-color-pink);
  }

  .mobile-page-menu-trigger i {
    transition: transform 0.5s;
  }

  .page-menu-area.show .mobile-page-menu-trigger i {
    transform: rotate(180deg);
  }
}

.page-content-wrapper .page-menu .page-menu-item {
  font-size: 14px;
  color: var(--font-color-red);
  font-weight: bold;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  transition: all 0.25s;
  display: block;
}

.page-content-wrapper .page-menu .page-menu-item:hover {
  background-color: var(--bckg-color-pink);
}

.page-content-wrapper .page-menu .page-menu-title {
  font-size: 14px;
  color: var(--font-color-red);
  font-weight: bold;
  text-transform: uppercase;
}

.blink {
  animation: blinker 1.5s linear 1;
}

.page-content-wrapper.static-page h1,
.page-content-wrapper.static-page h2,
.page-content-wrapper.static-page h3,
.page-content-wrapper.static-page h4,
.page-content-wrapper.static-page h5,
.page-content-wrapper.static-page h6 {
  display: inline-block;
}

.product-list-image-area {
  position: relative;
  height: 300px;
}

@media (max-width: 767px) {
  .product-list-image-area {
    height: 200px;
  }
}

.product-list-image-area img {
  position: absolute;
  transition: opacity 0.5s;
}

.product-list-image-area img:first-child {
  opacity: 1 !important;
}

.product-list-image-area img:last-child {
  opacity: 0;
}

.product-list-image-area:hover img:last-child {
  opacity: 1;
}

.custom-select {
  border: 1px solid var(--bckg-color-red);
  border-radius: 5px;
  padding: 0.375rem 0.75rem;
  font-size: 14px;
  background-color: transparent;
}

.custom-select:focus {
  border-color: var(--bckg-color-red);
}

.custom-select::after {
  content: url("../icons/down-arrow.svg");
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-overlay {
  position: absolute;
  max-width: 50%;
  padding: 16px;
  border-radius: 8px;
}

.carousel-overlay .content-title-image {
  line-height: 50px;
}

.carousel-overlay.top-left {
  top: 10%;
  left: 10%;
}

.carousel-overlay.top-middle {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.carousel-overlay.top-right {
  top: 10%;
  right: 10%;
}

.carousel-overlay.center-left {
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}

.carousel-overlay.center-middle {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.carousel-overlay.center-right {
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
}

.carousel-overlay.bottom-left {
  bottom: 10%;
  left: 10%;
}

.carousel-overlay.bottom-middle {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.carousel-overlay.bottom-right {
  bottom: 10%;
  right: 10%;
}

@media (max-width: 767px) {
  .carousel-overlay {
    position: relative !important;
    top: unset !important;
    right: unset !important;
    left: unset !important;
    bottom: unset !important;
    width: 100% !important;
    max-width: 100% !important;
    transform: unset !important;
    border-radius: unset !important;
    background-color: unset !important;
    padding: unset !important;
  }
}