main.page {
  min-height: initial;
}
/* STRUTURE */
.dvore-product-view-simple-1,
.dvore-product-view-multiple-1,
.dvore-product-view-subscription-1,
.dvore-product-view-downloadable-1 {
  display: grid;
  grid-column-gap: 50px;
  grid-template-columns: 25% auto;
  grid-auto-rows: 1fr;
  padding: 50px 1.0715rem;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  font-size: 14px;
}
.dvore-product-view-simple-1 {
  grid-template-areas:
    "images titles"
    "images collections"
    "images sku"
    "images login"
    "images price"
    "images validity"
    "images stock"
    "images shipping-delay"
    "images cta"
    "images description"
    "images table"
    "images file"
    "images tags"
    "images addthis"
    "specifications specifications";
  grid-template-rows: repeat(16, min-content);
}
.dvore-product-view-multiple-1,
.dvore-product-view-subscription-1,
.dvore-product-view-downloadable-1 {
  grid-template-areas:
    "images titles"
    "images collections"
    "images sku"
    "images login"
    "images price"
    "images validity"
    "images stock"
    "images shipping-delay"
    "images variants"
    "images cta"
    "images description"
    "images table"
    "images file"
    "images button"
    "images tags"
    "images addthis"
    "specifications specifications";
  grid-template-rows: repeat(17, min-content);
}
.dvore-product-view-breadcrumbs {
  grid-area: breadcrumb;
  margin-bottom: 10px;
}
.carousel-item {
  flex-direction: column;
}
.dvore-product-view-images {
  grid-area: images;
  position: relative;
}
.dvore-carousel-product-view-image-zoom {
  position: absolute;
  font-size: 26px;
  right: 10px;
  top: 10px;
  z-index: 1;
  cursor: pointer;
}
.dvore-product-view-images-showcase .dvore-product-view-main-image {
  cursor: pointer;
}
.btn.dvore-carousel-product-view-image-3d {
  position: relative;
  margin-right: auto;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn.btn-primary.dvore-carousel-product-view-image-3d svg path {
  transition: ease-in-out all 0.2s;
}
.btn.btn-primary.dvore-carousel-product-view-image-3d:hover svg path,
.btn.btn-primary.dvore-carousel-product-view-image-3d:active svg path,
.btn.btn-primary.dvore-carousel-product-view-image-3d:focus svg path {
  fill: var(--color-white)
}
.dvore-product-view-titles-container,
.dvore-product-view-title {
  grid-area: titles;
}
.dvore-product-view-description {
  grid-area: description;
  line-height: 1.5;
}
.dvore-product-view-variants {
  grid-area: variants;
}
.dvore-product-view-cta {
  grid-area: cta;
}
.dvore-product-view-price {
  grid-area: price;
}
.dvore-product-view-file-attributes {
  grid-area: file;
}
.dvore-front-product-ticket-parknet-extra-data-container {
  grid-area: ticket-parknet-extra;
  margin-top: 10px;
}
.dvore-product-view-button {
  grid-area: button;
  margin-top: 20px;
}
.dvore-product-view-add-this {
  grid-area: addthis;
}
.dvore-product-view-button .dvore-product-view-button-status {
  margin-bottom: 10px;
}
.dvore-product-view-attributes-table {
    grid-area: table;
}
.dvore-product-view-attributes-table table td {
    line-height: 1.5;
    border-top: none;
    border-bottom: 1px solid var(--color-pale-grey);
}
/* END STRUTURE */

/* CUSTOMIZATION */
.dvore-product-view-title {
  font-size: 20px;
  font-family: var(--font-title);
  margin-bottom: 10px;
  color: var(--color-dark);
}
.dvore-product-view-price {
  font-size: 30px;
  font-family: var(--font-title);
  font-weight: bold;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  color: var(--color-primary);
}
.dvore-product-view-product-sku {
  font-weight: bold;
  grid-area: sku;
  font-size: 16px;
  margin: 10px 0;
  font-family: var(--font-title);
}

.dvore-product-view-variants {
  padding: 20px 0 0 0;
  margin: 20px 0 0 0;
  border-top: 2px solid var(--color-pale-grey);
}
.dvore-product-variant-color-name,
.dvore-product-variant-size-name {
    text-transform: uppercase;
}
.dvore-product-variants-color-title,
.dvore-product-variants-size-title,
.dvore-product-variants-material-title {
  font-size: 14px;
  font-weight: 800;
  font-family: var(--font-title);
  margin-bottom: 5px;
}
.dvore-product-variants-color-option,
.dvore-product-variants-size-option,
.dvore-product-variants-material-option {
  display: flex;
  flex-wrap: wrap;
}
.dvore-product-variants-color,
.dvore-product-variants-material {
  margin-bottom: 1.5rem;
}
.dvore-product-variants-color-option .dvore-product-variants-color-container {
  width: 40px;
  height: 40px;
  position: relative;
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  border: 3px solid var(--color-white);
  outline: 1px solid var(--color-pale-grey);
}
.dvore-product-variants-color-option
  .dvore-product-variants-color-container.active {
  outline: 1px solid var(--color-dark);
}
.dvore-product-variants-color-option
  .dvore-product-variants-color-container:hover {
  outline-color: var(--color-dark);
}
.dvore-product-variants-size-option .dvore-product-variants-size-container,
.dvore-product-variants-material-option
  .dvore-product-variants-material-container {
  position: relative;
  border: 1px solid var(--color-dark);
  color: var(--color-dark);
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.dvore-product-variants-size-option .dvore-product-variants-size-container,
  .dvore-product-variants-material-option .dvore-product-variants-material-container,
  .dvore-product-variants-color-option .dvore-product-variants-color-container {
    margin-bottom: 10px;
  }
.dvore-product-variants-size-option
  .dvore-product-variants-size-container.active,
.dvore-product-variants-material-option
  .dvore-product-variants-material-container.active {
  background-color: var(--color-dark);
  color: var(--color-white);
}
.dvore-product-variants-size-option
  .dvore-product-variants-size-container:hover,
.dvore-product-variants-material-option
  .dvore-product-variants-material-container:hover {
  background-color: var(--color-dark);
  color: var(--color-white);
}
.dvore-product-variants-color-option
  .dvore-product-variants-color-container
  input,
.dvore-product-variants-size-option
  .dvore-product-variants-size-container
  input,
.dvore-product-variants-material-option
  .dvore-product-variants-material-container
  input {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  visibility: hidden;
}
.dvore-product-variants-color-option .dvore-product-variants-color-btn,
.dvore-product-variants-size-option .dvore-product-variants-size-btn,
.dvore-product-variants-material-option .dvore-product-variants-material-btn {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 10px;
  cursor: pointer;
}
.dvore-product-variants-size-option .dvore-product-variants-size-btn,
.dvore-product-variants-material-option .dvore-product-variants-material-btn {
  min-width: 40px;
  text-align: center;
}
.dvore-product-view-simple-1 .dvore-product-view-cta,
.dvore-product-view-multiple-1 .dvore-product-view-cta {
  display: grid;
  grid-gap: 15px;
  width: 100%;
  align-items: center;
  padding: 20px 0 20px 0;
  grid-template-columns: min-content 1fr;
}
.dvore-product-view-simple-1 .dvore-product-view-cta,
.dvore-product-view-multiple-1 .dvore-product-view-cta,
.dvore-product-view-quantity {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.dvore-product-view-subscription-1 .dvore-product-view-cta,
.dvore-product-view-downloadable-1 .dvore-product-view-cta {
  border-bottom: 2px solid var(--color-pale-grey);
  border-top: 2px solid var(--color-pale-grey);
  padding: 20px 0 20px 0;
  margin: 20px 0 20px 0;
}
.dvore-product-view-subscription-1 .dvore-product-view-cta .dvore-product-view-cart,
.dvore-product-view-downloadable-1 .dvore-product-view-cta .dvore-product-view-cart {
  margin-top: 20px;
}
.dvore-product-view-cta .dvore-product-view-cart {
  text-transform: uppercase;
}
.dvore-product-view-cta .dvore-product-view-oos {
  font-weight: 800;
  font-size: 1.2rem;
  grid-column: 1/3;
}
.dvore-product-view-file-attributes > .btn {
  position: relative;
  padding-left: 40px;
}
.dvore-product-view-file-attributes > .btn:before {
  position: absolute;
  content: "\f15b";
  font-family: "Font Awesome 5 Pro";
  font-size: 16px;
  left: 15px;
  line-height: 22px;
}
.dvore-product-view-simple-1 .dvore-product-view-cta,
.dvore-product-view-multiple-1 .dvore-product-view-cta,
.dvore-product-view-downloadable-1 .dvore-product-view-cta {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}
.dvore-product-view-simple-1 .dvore-product-view-cta .asSpinner,
.dvore-product-view-multiple-1 .dvore-product-view-cta .asSpinner, 
.dvore-product-view-downloadable-1 .dvore-product-view-cta .asSpinner {
    height: 100%;
}
.dvore-product-view-validity-status,
.dvore-product-view-button-status {
    grid-area: validity;
    margin: 10px 0 10px 0;
}
.dvore-product-view-product-stock {
    grid-area: stock;
}
.dvore-product-view-product-invite-to-login {
  grid-area: login;
}
.dvore-product-view-product-shipping-delay {
  grid-area: shipping-delay;
  line-height: 1.5;
}
.dvore-product-view-product-specifications {
  grid-area: specifications;
}
.dvore-product-view-product-invite-to-login .btn-link-primary {
  color: var(--color-primary);
  padding-left: 0;
  padding-right: 0;
  font-size: 16px;
  white-space: normal;
  text-align: left !important;
}
.dvore-product-view-product-invite-to-login .btn-link-primary:hover {
  color: var(--color-dark);
}
.dvore-product-view-cta-compare .btn.btn-secondary:hover,
.dvore-product-view-cta-compare .btn.btn-secondary:active,
.dvore-product-view-cta-compare .btn.btn-secondary:focus {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
/* END CUSTOMIZATION */

/* TAGS */
.dvore-product-view-tags {
  grid-area: tags;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 20px 0 0 0;
  padding: 20px 0 0 0;
  border-top: 2px solid var(--color-pale-grey);
  height: fit-content;
}
.dvore-product-view-tags .dvore-product-tag > a:hover {
  color: var(--color-dark);
  border-color: var(--color-dark);
}
.dvore-product-view-tags .dvore-product-tag > a {
  display: block;
  padding: 5px;
  border: 1px solid var(--color-pale-grey-darken);
  color: var(--color-pale-grey-darken);
  font-size: 0.8em;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
}
.dvore-product-view-tags .dvore-product-tag {
  margin: 5px 0;
}
.dvore-product-view-tags .dvore-product-tag:not(:last-child) {
  margin-right: 10px;
}
/* END TAGS */

/* ADDTHIS */
.dvore-product-view-add-this {
  margin-top: 20px;
  padding-top: 20px;
  /*border-top: 2px solid var(--color-pale-grey);*/
}
/* END ADDTHIS */

/* COLLECTIONS */
.dvore-product-view-collections {
  grid-area: collections;
  display: flex;
  flex-wrap: wrap;
  margin: 5px 0 15px 0;
}
.dvore-product-view-collections .dvore-product-collection {
  padding: 0 0 5px 0;
  border-bottom: 1px solid var(--color-dark);
  font-size: 0.8em;
}
.dvore-product-view-collections .dvore-product-collection > a {
  color: var(--color-dark);
}
.dvore-product-view-collections .dvore-product-collection:not(:last-child) {
  margin-right: 10px;
}
.dvore-product-view-collections .dvore-product-collection {
  margin-bottom: 10px;
}
/* END COLLECTIONS */

/* BRANDS */
.dvore-product-view-brands {
  grid-area: brands;
  display: flex;
  flex-wrap: wrap;
  justify-self: flex-end;
  align-self: center;
  max-width: 100px;
}
.dvore-product-view-brands img {
  width: 100%;
}
.dvore-product-view-brands img:not(:first-child) {
  margin-left: 10px;
}
/* END BRANDS */

/* PRODUCT STATE */
.dvore-product-state {
  position: absolute;
  top: 20px;
  left: -10px;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc(100% + 20px);
}
.dvore-product-state > div:not(:last-child) {
  margin-bottom: 5px;
}
.dvore-product-state a {
  color: var(--color-white);
}
.dvore-product-state a:hover {
  color: var(--color-white);
}
.dvore-product-state .dvore-product-state-new-product,
.dvore-product-state .dvore-product-state-featured-product,
.dvore-product-state .dvore-product-state-on-sale-product {
  margin-right: auto;
}
.dvore-product-state .dvore-product-state-new-product,
.dvore-product-state .dvore-product-state-featured-product,
.dvore-product-state .dvore-product-state-on-sale-product {
  padding: 10px;
  font-size: 1.2em;
  background-color: var(--color-error);
  color: var(--color-white);
}
.dvore-product-state.dvore-product-state-2 {
  left: -30px;
  top: 10px;
}
.dvore-product-state-2 .dvore-product-state-promotion {
  margin-left: auto;
  background-color: var(--color-error);
  padding: 5px;
  border-radius: 50%;
  width: 75px;
  height: 75px;
  font-size: 12px;
  -webkit-box-align: center !important;
  -webkit-align-items: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -webkit-box-pack: center !important;
  -webkit-justify-content: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  flex-direction: column !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -webkit-flex-direction: column !important;
  -ms-flex-direction: column !important;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.dvore-product-state-2
  .dvore-product-state-promotion
  .dvore-product-state-promotion-name,
.dvore-product-state-2
  .dvore-product-state-promotion
  .dvore-product-state-promotion-amount {
  color: var(--color-white);
}
.dvore-product-state-2
  .dvore-product-state-promotion
  .dvore-product-state-promotion-name {
  margin-bottom: 0.125rem;
}
.dvore-product-state-2
  .dvore-product-state-promotion
  .dvore-product-state-promotion-amount {
  font-size: 1.25rem;
}
.dvore-product-view-price .dvore-product-price-regular-price {
  text-decoration: line-through;
  font-size: 80%;
  font-weight: 300;
}
.dvore-product-view-price .dvore-product-price-promo-price {
  margin-left: 10px;
  color: var(--color-error);
}
/* END PRODUCT STATE */

/* RELATED PRODUCTS */
.dvore-product-view-related-products {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 1.0715rem;
}
.dvore-product-view-related-product-container-title {
  font-size: 30px;
  color: var(--color-dark);
}
/*.dvore-product-view-related-product-container {
  padding: 50px 50px;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  border-top: 1px solid var(--color-pale-grey);
}
.dvore-product-view-related-product-container-title {
  display: block;
  font-size: 30px;
  font-family: var(--font-title);
  color: var(--color-dark);
  margin-bottom: 1rem;
}
.dvore-product-list-container {
  padding-bottom: 0 !important;
}*/
/* END RELATED PRODUCTS */

/* PROMOTION */
.dvore-product-view-price .dvore-product-list-price-regular-price {
  text-decoration: line-through;
  font-size: 80%;
  font-weight: 300;
}
.dvore-product-view-price .dvore-product-list-price-promo-price {
  color: var(--color-error);
  margin: 10px 0;
}
/* END PROMOTION */


/* TABULATIONS */
.dvore-product-view-informations{
  display: none !important;
}
/* MORE INFO */
.dvore-product-view-product-specifications table {
  color: var(--color-dark);
}
.dvore-product-view-product-specifications table tr td:first-child {
  font-family: var(--font-title);
  font-weight: bold;
  width: 300px;
}
.nav-tabs {
  border: none;
}
.dvore-product-view-product-specifications .tab-content {
  padding: 30px 10px;
  border: 2px solid var(--color-pale-grey);
  border-radius: 10px;
  border-top-left-radius: 0;
}
.dvore-product-view-product-specifications .tab-content ul,
.dvore-product-view-product-specifications .tab-content ol {
  padding-left: 20px;
}
.nav-tabs .nav-item .nav-link {
  border: none;
  background: transparent;
  cursor: pointer;
  font-weight: bold;
  font-family: var(--font-title);
  color: var(--color-dark);
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-item .nav-link.active {
  color: var(--color-primary);
  position: relative;
}
.nav-tabs .nav-item .nav-link:after,
.nav-tabs .nav-item .nav-link:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--color-grey);
  opacity: 0.2;
}
.nav-tabs .nav-item.show .nav-link:after,
.nav-tabs .nav-item .nav-link.active:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--color-primary);
  opacity: 0.1;
}
.nav-tabs .nav-link {
  color: var(--color-dark-grey);
}
.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
  color: var(--color-primary);
}
.nav-tabs .nav-item {
  margin: 0 10px 0 0;
}
.dvore-product-label {
  font-weight: bold;
  font-family: var(--font-title);
}
.dvore-product-view-product-stock,
.dvore-product-view-product-shipping-delay {
  margin-bottom: 10px;
}
/* END TABULATIONS */
/* RELATED PRODUCTS */
.dvore-product-view-related-product-container {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 1.0715rem;
}
/* RESPONSIVE */
.dvore-front-shop-product-media-img-container,
.dvore-front-shop-product-media-x3d-container {
  position: relative;
}
.dvore-front-shop-product-media-controllers {
  position: absolute;
  top: 0;
  left: 0;
}
.dvore-front-shop-product-media-controllers .btn {
  min-width: 45px;
  height: 45px;
}
.dvore-carousel-product-view-image-3d i[class^="fa-"] {
  font-size: 1.5rem;
}
@media (min-width: 992px) {
  .dvore-product-view-product-specifications {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .dvore-product-view-breadcrumbs .dvore-breadcrumbs {
    padding: 8px 0;
  }
  .dvore-product-view-simple-1,
  .dvore-product-view-multiple-1,
  .dvore-product-view-downloadable-1 {
    padding: 25px;
    grid-column-gap: 15px;
  }
  .dvore-product-view-info-container {
    padding: 0 0 0 25px;
  }
  .dvore-product-view-related-product-container {
    padding: 0 25px;
  }
  .dvore-product-view-product-specifications {
    padding: 30px 0;
  }
}
@media (max-width: 768px) {
  .dvore-front-shop-product-media-controllers {
    left: 15px;
  }
  .dvore-product-view-file-attributes {
    margin: 0px 15px 0 15px;
    padding: 0;
    border-top: none;
  }
  .dvore-product-view-breadcrumbs {
    margin: 0 15px 10px 15px;
  }
  .dvore-product-state {
    width: 100%;
    left: 0;
  }
  .dvore-product-view-simple-1,
  .dvore-product-view-multiple-1,
  .dvore-product-view-downloadable-1 {
    grid-template-columns: 33% auto;
    padding: 25px 0;
  }
  .dvore-product-view-simple-1 {
    grid-template-areas:
      "titles titles"
      "images collections"
      "images sku"
      "images login"
      "images price"
      "images validity"
      "images stock"
      "images shipping-delay"
      "cta cta"
      "description description"
      "table table"
      "file file"
      "tags tags"
      "addthis addthis"
      "specifications specifications";
    grid-template-rows: repeat(15, min-content);
  }
  .dvore-product-view-multiple-1,
  .dvore-product-view-subscription-1,
  .dvore-product-view-downloadable-1 {
    grid-template-areas:
      "titles titles"
      "images collections"
      "images sku"
      "images login"
      "images price"
      "images validity"
      "images stock"
      "images shipping-delay"
      "variants variants"
      "cta cta"
      "description description"
      "table table"
      "file file"
      "button button"
      "tags tags"
      "addthis addthis"
      "specifications specifications";
    grid-template-rows: repeat(17, min-content);
  }
  .dvore-product-view-images {
    width: 100%;
  }
  .dvore-product-view-info-container {
    width: 100%;
    padding: 0;
  }
  .dvore-product-view-description {
    margin-bottom: 20px;
  }
  .dvore-product-view-title,
  .dvore-product-view-description,
  .dvore-product-view-collections,
  .dvore-product-view-brands,
  .dvore-product-view-variants,
  .dvore-product-view-validity-status,
  .dvore-product-view-button-status,
  .dvore-product-view-attributes-table,
  .dvore-product-view-product-specifications {
    margin-left: 15px;
    margin-right: 15px;
  }
  .dvore-product-view-images-container {
    margin-left: 15px;
    width: calc(100% - 15px) !important;
  }
  .dvore-product-view-product-sku,
  .dvore-product-view-product-invite-to-login,
  .dvore-product-view-price,
  .dvore-product-view-product-stock,
  .dvore-product-view-product-shipping-delay {
    margin-right: 15px;
  }
  .dvore-product-view-variants {
    border-bottom: 2px solid var(--color-pale-grey);
    border-top: none;
    padding: 0px 0 20px 0;
    margin: 0px 15px 20px 15px;
  }
  .dvore-product-view-cta {
    border-top: none !important;
    padding: 20px 15px 20px 15px !important;
    width: 100% !important;
    display: flex !important;
    flex-wrap: wrap;
  }
  .dvore-product-view-tags {
    padding: 0;
    margin: 0 25px;
    border: none;
  }
  .dvore-product-view-add-this {
    margin: 10px 20px 0 20px;
  }
  .dvore-product-view-title {
    font-size: 18px;
  }
}

@media (max-width: 680px) {
  .dvore-product-view-images-container {
    margin-right: 15px;
    width: calc(100% - 30px) !important;
  }
  .dvore-product-view-related-product-container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .dvore-product-view-product-sku,
  .dvore-product-view-product-invite-to-login,
  .dvore-product-view-price,
  .dvore-product-view-product-stock,
  .dvore-product-view-product-shipping-delay {
    margin-left: 15px;
  }
  .dvore-product-view-file-attributes {
    margin-left: 10px;
    margin-right: 10px;
  }
  .dvore-product-view-brands {
    align-self: center;
    justify-self: flex-start;
    margin-bottom: 20px;
  }
  .dvore-product-view-brands img {
    max-height: 70px;
  }
  .dvore-product-view-simple-1 {
    grid-template-areas:
      "titles"
      "images"
      "collections"
      "sku"
      "login"
      "price"
      "validity"
      "stock"
      "shipping-delay"
      "cta"
      "description"
      "table"
      "file"
      "tags"
      "addthis"
      "specifications";
      grid-template-columns: auto;
    grid-template-rows: repeat(16, min-content);
  }
  .dvore-product-view-multiple-1,
  .dvore-product-view-subscription-1,
  .dvore-product-view-downloadable-1 {
    grid-template-areas:
      "titles"
      "images"
      "collections"
      "sku"
      "login"
      "price"
      "validity"
      "stock"
      "shipping-delay"
      "variants"
      "cta"
      "description"
      "table"
      "file"
      "button"
      "tags"
      "addthis"
      "specifications";
      grid-template-columns: auto;
    grid-template-rows: repeat(18, min-content);
  }
}

@media (max-width: 480px) {
  .dvore-product-view-breadcrumbs,
  .dvore-product-view-title,
  .dvore-product-view-description,
  .dvore-product-view-collections,
  .dvore-product-view-brands,
  .dvore-product-view-variants,
  .dvore-product-view-validity-status,
  .dvore-product-view-button-status,
  .dvore-product-view-attributes-table,
  .dvore-product-view-tags {
    margin-left: 10px;
    margin-right: 10px;
  }
  .dvore-product-view-related-product-container {
    padding: 0 10px;
  }
  .dvore-front-shop-product-media-controllers {
    left: 10px;
  }
}

@media (max-width: 320px) {
  .dvore-product-view-cart {
    margin-top: 10px;
  }
  .dvore-product-view-cta {
    flex-direction: column;
  }
}
/* PRODUCT VIEW SIZE WITH QUANTITY */
.dvore-product-view-variants-with-inventory .asSpinner {
  height: 45px;
}
.dvore-product-view-variants-with-inventory .asSpinner > input[type="text"] {
  width: 40px;
  padding: 5px;
  text-align: center;
  font-size: 14px;
}
.dvore-product-view-variants-with-inventory .asSpinner .asSpinner-down,
.dvore-product-view-variants-with-inventory .asSpinner .asSpinner-up {
  font-family: "Font Awesome 5 Pro";
}
.dvore-product-view-variants-with-inventory .asSpinner .asSpinner-up:before {
  content: "\f077" !important;
  position: relative;
  top: -1px;
}
.dvore-product-view-variants-with-inventory .asSpinner .asSpinner-down:before {
  content: "\f078" !important;
  bottom: 3px;
  position: relative;
}
.dvore-product-view-variants-with-inventory .asSpinner .asSpinner-up:before,
.dvore-product-view-variants-with-inventory .asSpinner .asSpinner-down:before {
  font-size: 12px !important;
}
.dvore-product-view-variants-with-inventory .asSpinner .asSpinner-control {
  width: 25px;
}
.dvore-product-view-variants-with-inventory .dvore-product-variants-size-quantity {
  border: 1px solid var(--color-pale-grey);
}
.dvore-product-view-variants-with-inventory .dvore-product-variants-size-option .dvore-product-variants-size-container {
  margin-right: 0;
}
.dvore-product-view-variants-with-inventory .dvore-product-variants-size-with-inventory {
  margin-right: 10px;
  margin-bottom: 5px;
}
.dvore-product-view-variants-with-inventory .asSpinner .asSpinner-down:hover,
.dvore-product-view-variants-with-inventory .asSpinner .asSpinner-up:hover {
  background-color: var(--color-dark);
  color: var(--color-white);
  cursor: pointer;
}
.dvore-product-view-variants-with-inventory .asSpinner.asSpinner_disabled .asSpinner-up:hover,
.dvore-product-view-variants-with-inventory .asSpinner.asSpinner_disabled .asSpinner-down:hover {
  cursor: not-allowed;
  color: #a3afb7;
}
.dvore-product-view-variants-with-inventory .dvore-product-variants-color-option,
.dvore-product-view-variants-with-inventory .dvore-product-variants-size-option,
.dvore-product-view-variants-with-inventory .dvore-product-variants-material-option {
  flex-wrap: nowrap;
}
.dvore-product-view-variants.dvore-product-view-variants-with-inventory  {
    overflow-x: auto;
    padding-left: 5px;
}
.dvore-product-view-variants-with-inventory .dvore-product-variants-size-option .dvore-product-variants-size-container:hover {
  background-color: var(--color-white);
  color: var(--color-dark);
}
.dvore-product-view-variants-with-inventory .dvore-product-variants-size-option .dvore-product-variants-size-container label.dvore-product-variants-size-btn,
.dvore-product-view-variants-with-inventory .dvore-product-variants-size-option .dvore-product-variants-size-quantity label.dvore-product-variants-size-btn {
    cursor: default;
}
.dvore-product-variants-size-container.disable {
  background-color: var(--color-pale-grey) !important;
  border-color: var(--color-pale-grey);
  color: var(--color-pale-grey-darken) !important;
}
.dvore-product-variants-size-container.disable:hover, .dvore-product-variants-size-container.disable:hover label {
  cursor: not-allowed;
}
/* perso */
.dvore-product-variants-size-with-inventory .dvore-product-variants-size-quantity,
.dvore-product-variants-size-with-inventory .dvore-product-variants-size-choose-quantity {
  margin-top: 45px;
  position: relative;
}
.dvore-product-variants-size-option .dvore-product-variants-size-with-inventory:first-child .dvore-product-variants-size-quantity:before {
  content: "Quantité disponible";
  position: absolute;
  top: -25px;
  left: 0;
  width: 100%;
  min-width: 200px;
  font-size: 14px;
  font-weight: 800;
  font-family: var(--font-title);
}
.dvore-product-variants-size-option .dvore-product-variants-size-with-inventory:first-child .dvore-product-variants-size-choose-quantity:before {
  content: "Votre commande";
  position: absolute;
  top: -25px;
  left: 0;
  width: 100%;
  min-width: 200px;
  font-size: 14px;
  font-weight: 800;
  font-family: var(--font-title);
}
html[lang="fr"] .dvore-product-variants-size-option .dvore-product-variants-size-with-inventory:first-child .dvore-product-variants-size-quantity:before {
  content: "Quantité disponible";
}
html[lang="fr"] .dvore-product-variants-size-option .dvore-product-variants-size-with-inventory:first-child .dvore-product-variants-size-choose-quantity:before {
  content: "Votre commande";
}
html[lang="en"] .dvore-product-variants-size-option .dvore-product-variants-size-with-inventory:first-child .dvore-product-variants-size-quantity:before {
  content: "Available quantity";
}
html[lang="en"] .dvore-product-variants-size-option .dvore-product-variants-size-with-inventory:first-child .dvore-product-variants-size-choose-quantity:before {
  content: "Your order";
}