/* 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: 30px;
  grid-template-columns: 50% auto;
  grid-auto-rows: 1fr;
  padding: 50px 50px;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  font-size: 14px;
}
.dvore-product-view-simple-1 {
  grid-template-areas:
    "breadcrumb breadcrumb breadcrumb"
    "images titles brands"
    "images collections brands"
    "images price price"
    "images attr10 attr10"
    "images attr11 attr11"
    "images validity validity"
    "images file file"
    "images btn-extra btn-extra"
    "images cta cta"
    "images description description"
    "images table table"
    "images tags tags"
    "images addthis addthis";
  grid-template-rows: repeat(13, min-content);
}
.dvore-product-view-multiple-1 {
  grid-template-areas:
    "breadcrumb breadcrumb breadcrumb"
    "images titles brands"
    "images collections brands"
    "images price price"
    "images attr10 attr10"
    "images attr11 attr11"
    "images validity validity"
    "images variants variants"
    "images file file"
    "images btn-extra btn-extra"
    "images cta cta"
    "images description description"
    "images table table"
    "images button button"
    "images tags tags"
    "images addthis addthis";
  grid-template-rows: repeat(15, min-content);
}
.dvore-product-view-subscription-1,
.dvore-product-view-downloadable-1 {
  grid-template-areas:
    "breadcrumb breadcrumb breadcrumb"
    "images titles brands"
    "images collections brands"
    "images price price"
    "images attr10 attr10"
    "images attr11 attr11"
    "images validity validity"
    "images variants variants"
    "images file file"
    "images btn-extra btn-extra"
    "images cta cta"
    "images description description"
    "images table table"
    "images button button"
    "images tags tags"
    "images addthis addthis";
  grid-template-rows: repeat(15, min-content);
}
.dvore-product-view-breadcrumbs {
  grid-area: breadcrumb;
  margin-bottom: 10px;
}
.dvore-product-view-images {
  grid-area: images;
  position: relative;
}
.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-product-view-attr-10 {
  grid-area: attr10;
}
.dvore-product-view-attr-11 {
  grid-area: attr11;
  margin-bottom: 0;
}
.dvore-product-view-button {
  grid-area: button;
  margin-top: 20px;
}

.dvore-product-view-attr-10, 
.dvore-product-view-attr-11 {
  font-size: 1rem;
  font-weight: 800;
  font-family: var(--font-title);
}
/*.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: 30px;
  font-family: var(--font-title);
  margin-bottom: 10px;
}
.dvore-product-view-price {
  font-size: 24px;
  font-family: var(--font-title);
  font-weight: 800;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.dvore-product-view-product-sku {
  font-weight: normal;
  font-size: 18px;
}

.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: 50px;
  height: 50px;
  position: relative;
  margin-right: 5px;
  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);
  border-radius: 50%;
  cursor: pointer;
}
.dvore-product-variants-color-option .dvore-product-variants-color-container:before {
  position: absolute;
  content: "";
  top: -3px;
  bottom: -3px;
  right: -3px;
  left: -3px;
  width: 100%;
  height: 100%;
  padding: 2px;
  box-sizing: content-box;
  border: 1px solid var(--color-pale-grey);
  border-radius: 50%;
}
.dvore-product-variants-color-option .dvore-product-variants-color-container.active:before {
  border-color: var(--color-dark);
}
.dvore-product-variants-color-option .dvore-product-variants-color-container:hover:before {
  border-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.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;
  position: relative;
  z-index: 1;
}
.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;
  margin: 20px 0 20px 0;
  border-bottom: 2px solid var(--color-pale-grey);
  border-top: 2px solid var(--color-pale-grey);
  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-quantity {
    margin-right: 10px;
}
.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 {
  padding: 10px 0 0 0;
}
.dvore-product-view-file-attributes > .btn {
  position: relative;
  padding-left: 40px;
}
.dvore-product-view-file-attributes > .btn:before {
  position: absolute;
  content: "\f0ed";
  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;
    font-size: 1.25rem;
}
.dvore-product-view-btn-extra {
  grid-area: btn-extra;
  margin-top: 20px;
  display: flex;
  align-items: start;
}
.dvore-product-view-btn-extra .at-style-responsive .at-share-btn {
  font-family: var(--font-title);
  line-height: 1.571429;
  padding: 0.5rem 1rem 0.5rem 0.7rem;
  border-radius: 5px !important;
}
.dvore-product-view-add-this .at-share-btn-elements > a:first-child {
  margin-left: 5px;
}
.dvore-product-view-add-this .at-resp-share-element .at-share-btn .at-label {
  font-size: 14px !important;
  text-transform: uppercase;
  font-family: var(--font-title) !important;
  padding-right: 0;
}
.dvore-product-view-btn-extra .btn.btn-primary {
  transition: all .2s ease-in-out;
  margin-bottom: 5px !important;
}
.dvore-product-view-btn-extra .btn.btn-primary:hover,
.dvore-product-view-btn-extra .btn.btn-primary:focus {
  transform: translateY(-4px);
}
.dvore-product-view-price p {
  font-size: 1rem;
  margin-bottom: 10px;
  margin-top: 15px;
  text-transform: initial;
}
/* END CUSTOMIZATION */

/* TAGS */
.dvore-product-view-tags {
  grid-area: tags;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 20px 0 0 0;
  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-start;
  align-self: flex-start;
}
.dvore-product-view-brands img {
  max-height: 100px;
  width: auto;
}
.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 {
  margin-left: auto;
}
.dvore-product-state .dvore-product-state-new-product,
.dvore-product-state .dvore-product-state-featured-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: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 50px;
}
/*.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 {
  font-size: 1.5rem;
  font-family: var(--font-title);
  font-weight: 800;
  margin: 0;
}
.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: 0 0 10px 0;
}
/* END PROMOTION */

/* TABULATIONS */
.dvore-product-view-informations {
    grid-area: description;
}
.dvore-product-view-attributes-table,
.dvore-product-view-informations {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 2px solid var(--color-pale-grey);
}
.dvore-product-view-attributes-table > div:not(:last-child) .dvore-product-view-tab,
.dvore-product-view-informations .dvore-product-view-tab:not(:last-child) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--color-pale-grey);
}

.dvore-product-view-attributes-table .dvore-product-view-tab .dvore-product-view-tab-title .dvore-product-view-tab-title-link,
.dvore-product-view-informations .dvore-product-view-tab .dvore-product-view-tab-title .dvore-product-view-tab-title-link {
  color: var(--color-dark);
  font-weight: 800;
  font-size: 1.5rem;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.dvore-product-view-attributes-table .dvore-product-view-tab .dvore-product-view-tab-title .dvore-product-view-tab-title-link:after,
.dvore-product-view-informations .dvore-product-view-tab .dvore-product-view-tab-title .dvore-product-view-tab-title-link:after {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  content: "\f067";
  opacity: 1;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.dvore-product-view-attributes-table .dvore-product-view-tab .dvore-product-view-tab-title .dvore-product-view-tab-title-link:before,
.dvore-product-view-informations .dvore-product-view-tab .dvore-product-view-tab-title .dvore-product-view-tab-title-link:before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  content: "\f068";
  opacity: 0;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  position: absolute;
  right: 0;
}
.dvore-product-view-attributes-table .dvore-product-view-tab .dvore-product-view-tab-content,
.dvore-product-view-informations .dvore-product-view-tab .dvore-product-view-tab-content {
  margin-bottom: 20px;
  margin-top: 20px;
  line-height: 1.4;
}
.dvore-product-view-attributes-table .dvore-product-view-tab .dvore-product-view-tab-title .dvore-product-view-tab-title-link[aria-expanded="true"]:after,
.dvore-product-view-informations .dvore-product-view-tab .dvore-product-view-tab-title .dvore-product-view-tab-title-link[aria-expanded="true"]:after {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  opacity: 0;
}
.dvore-product-view-attributes-table .dvore-product-view-tab .dvore-product-view-tab-title .dvore-product-view-tab-title-link[aria-expanded="true"]:before,
.dvore-product-view-informations .dvore-product-view-tab .dvore-product-view-tab-title .dvore-product-view-tab-title-link[aria-expanded="true"]:before {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  opacity: 1;
}
.dvore-product-view-attributes-table ul {
  padding-left: 20px;
}
/* END TABULATIONS */
/* RELATED PRODUCTS */
.dvore-product-view-related-product-container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 50px;
}
/* RESPONSIVE */
@media (max-width: 1200px) {
  .dvore-product-view-btn-extra .at-style-responsive .at-share-btn {
    padding: 0.5rem 0.7rem;
  }
}
@media (max-width: 991px) {
  .dvore-product-variants-color, .dvore-product-variants-material {
    margin-bottom: 0.5rem;
  }
  .dvore-product-view-simple-1,
  .dvore-product-view-multiple-1,
  .dvore-product-view-downloadable-1 {
    padding: 25px;
    grid-column-gap: 25px;
  }
  .dvore-product-view-images {
    margin: 20px 0;
  }
  .dvore-product-view-info-container {
    padding: 0 0 0 25px;
  }
  .dvore-product-view-related-product-container {
    padding: 0 25px;
  }
}
@media (max-width: 768px) {
  .dvore-product-view-file-attributes > .btn {
    margin-left: 0;
    margin-right: 0;
  }
  .dvore-product-view-file-attributes {
    padding: 0;
    border-top: none;
  }
  .dvore-product-view-breadcrumbs {
    margin: 0 25px 10px 25px;
  }
  .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: auto;
    grid-auto-rows: inherit;
    padding: 25px 0;
  }
  .dvore-product-view-simple-1,
  .dvore-product-view-downloadable-1,
  .dvore-product-view-subscription-1 {
    grid-template-areas:
      "breadcrumb breadcrumb"
      "titles brands"
      "collections brands"
      "price price"
      "attr10 attr10"
      "attr11 attr11"
      "validity validity"
      "images images"
      "file file"
      "btn-extra btn-extra"
      "cta cta"
      "description description"
      "table table"
      "button button"
      "tags tags"
      "addthis addthis"
      ". .";
  }
  .dvore-product-view-multiple-1 {
    grid-template-areas:
      "breadcrumb breadcrumb"
      "titles brands"
      "collections brands"
      "price price"
      "attr10 attr10"
      "attr11 attr11"
      "validity validity"
      "button button"
      "variants variants"
      "images images"
      "file file"
      "btn-extra btn-extra"
      "description description"
      "table table"
      "cta cta"
      "tags tags"
      "addthis addthis";
  }
  .dvore-product-view-images {
    width: 100%;
  }
  .dvore-product-view-info-container {
    width: 100%;
    padding: 0;
  }
  .dvore-product-view-description {
    border-bottom: 2px solid var(--color-pale-grey);
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .dvore-product-view-title,
  .dvore-product-view-price,
  .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-informations,
  .dvore-product-view-btn-extra,
  .dvore-product-view-attr-10,
  .dvore-product-view-attr-11,
  .dvore-product-view-file-attributes {
    margin-left: 25px;
    margin-right: 25px;
  }
  .dvore-product-view-variants {
    border-bottom: none;
    border-top: none;
    padding: 0px 0 20px 0;
    margin: 40px 25px 20px 25px;
  }
  .dvore-product-view-cta {
    border-top: none !important;
    margin: 0 25px 20px 25px !important;
    padding: 0 0 20px 0 !important;
    width: calc(100% - 45px) !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;
  }*/
}

@media (max-width: 680px) {
  .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-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,
  .dvore-product-view-downloadable-1,
  .dvore-product-view-subscription-1 {
    grid-template-areas:
      "breadcrumb"
      "brands"
      "titles"
      "collections"
      "price"
      "attr10"
      "attr11"
      "validity"
      "images"
      "file"
      "btn-extra"
      "cta"
      "description"
      "table"
      "button"
      "tags"
      "addthis"
      ".";
  }
  .dvore-product-view-multiple-1 {
    grid-template-areas:
      "breadcrumb"
      "brands"
      "titles"
      "collections"
      "price"
      "attr10"
      "attr11"
      "validity"
      "variants"
      "images"
      "cta"
      "file"
      "btn-extra"
      "description"
      "table"
      "button"
      "tags"
      "addthis";
  }
}

@media (max-width: 480px) {
  .dvore-product-view-images {
    margin-top: 0;
  }
  .dvore-product-view-price {
    display: block;
  }
  span.dvore-product-view-price-special, span.dvore-product-list-price-promo-price {
    display: inline;
  }
  span.dvore-product-view-price-special {
    margin-right: 15px;
  }
  .dvore-product-view-title {
    font-size: 22px;
  }
  .dvore-product-view-collections {
    margin-bottom: 0;
  }
  .dvore-front-product-breadcrumbs, .dvore-breadcrumbs {
    padding: 0 0 1.0175rem 0 !important;
    font-size: 10px;
  }
  .breadcrumb-item+.breadcrumb-item:before {
    padding: 0 2px;
  }
  .dvore-product-view-breadcrumbs,
  .dvore-product-view-title,
  .dvore-product-view-price,
  .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,
  .dvore-product-view-informations,
  .dvore-product-view-btn-extra,
  .dvore-product-view-attr-10,
  .dvore-product-view-attr-11,
  .dvore-product-view-file-attributes {
    margin-left: 10px;
    margin-right: 10px;
  }
  .dvore-product-view-cta {
    margin-left: 10px !important;
    margin-right: 10px !important;
    width: calc(100% - 20px) !important;
  }
  .dvore-product-view-related-product-container {
    padding: 0 10px;
  }
  .dvore-product-view-variants {
    margin-top: 15px;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

@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;
}
/* 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";
}