.product_detail__geral_infos{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product_detail__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding-top: 20px;
  padding-bottom: 30px;
  width: 100%;
  height: fit-content;
}

.product_detail__breadcrumb.centralized {
  width: 1030px;
}

.product_detail__container.centralized {
  max-width: 1030px;
}

.product_detail__no_image {
  width: 100%;
  height: 500px;
  background: var(--concrete-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product_detail__no_image svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.product_detail__breadcrumb_container {
  width: 100%;
  padding: 9px 0;
  display: flex;
  justify-content: center;
  background-color: var(--concrete-grey);
}

/* ------ TÍTULO DO PRODUTO ------ */

.product_detail__extends {
  margin-bottom: 15px;
}

.product_detail__title {
  font-size: var(--fs-title-medium);
  font-weight: bold;
  margin-bottom: 10px;
}

.product_detail__header__extends {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.product_detail__code {
  display: flex;
  align-items: center;
  width: fit-content;
  font-size: 12px;
  margin-right: 20px;
}

.product_detail__header__extends .product_detail__evaluations {
  width: fit-content;
}
.product_detail__header__extends
  .product_detail__evaluations
  .product_detail__evaluations_stars
  .evaluations_stars__number {
  content-visibility: hidden;
}
.product_detail__header__extends
  .product_detail__evaluations
  .product_detail__evaluations_stars
  .evaluations_stars__star
  svg {
  width: 13px;
  height: 12px;
}
.product_detail__extends__mobile {
  display: none;
}

/* ------ AVALIAÇÕES ------ */

.product_detail__evaluations {
  display: flex;
  align-items: center;
}

.product_detail__evaluations__stars {
  display: flex;
  align-items: center;
  margin-right: 5px;
  padding-bottom: 2px;
}

.product_detail__evaluations__stars svg {
  height: 16px;
  margin-right: 5px;
}

.product_detail__evaluations__text {
  font-size: var(--fs-small);
  border-left: 1px solid;
  padding-left: 8px;
}

.product_detail__evaluations__text a {
  color: black;
  text-decoration: underline;
}

.product_detail__evaluations__mobile {
  display: none;
}

/* ------ DESCRIÇÃO DO PRODUTO ------ */

.product_detail__description {
  color: #919191;
  font-size: var(--fs-medium);
  margin-bottom: 25px;
  list-style: initial;
  text-decoration: initial;
}

.product_detail__description ol {
  font-size: var(--fs-regular);
  margin-top: 30px;
  font-weight: normal;
  list-style: auto;
  text-decoration: auto;
}

.product_detail__description ul {
  font-size: var(--fs-regular);
  list-style: unset;
  text-decoration: unset;
}

.product_detail__description ol li {
  list-style: auto !important;
  text-decoration: auto !important;
}

.product_detail__description ul li {
  list-style: unset !important;
  text-decoration: unset !important;
}

.product_detail__description__mobile {
  display: none;
}

/* ------ OFERTA RELÂMPAGO ------ */

.product_detail__offer {
  background-color: black;
  color: white;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-weight: bold;
  margin-bottom: 25px;
}

.product_detail__offer__text {
  display: flex;
  width: fit-content;
  font-size: var(--fs-medium);
}

.product_detail__offer__timer {
  display: flex;
  width: fit-content;
  font-size: var(--fs-large);
}

.product_detail__offer__mobile {
  display: none;
}

/* ------ CONTADOR DE ESTOQUE ------ */

.product_detail__stock_counter {
  height: 31px;
  margin-bottom: 10px;
}

.product_detail__stock_counter.pulse {
  max-width: 250px;
}

.product_detail__stock_counter_info {
  display: inline-flex;
  align-items: center;
  background-color: #EFEFEF;
  border: 1px solid #707070;
  font-size: var(--fs-regular);
  padding: 6px 7px;
}

.product_detail__stock_counter svg {
  margin-right: 10px;
}

/* ------ CONTAINER INDISPONÍVEL (AVISE-ME) ------ */

.product_detail__product_unavailable {
  background-color: #efefef;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px;
  margin-bottom: 25px;
}

.product_detail__product_unavailable p:nth-of-type(1) {
  color: #8b8b8b;
  font-size: var(--fs-subtitle);
  margin-bottom: 10px;
}

.product_detail__product_unavailable p:nth-of-type(2) {
  color: #8b8b8b;
  font-size: var(--fs-regular);
  margin-bottom: 20px;
}

.product_unavailable__button {
  position: relative;
  width: 100%;
}

.product_detail__product_unavailable input[type='text'],
.product_detail__product_unavailable input[type='email'] {
  font-size: var(--fs-regular);
  border: 1px solid #dadada;
  padding: 13px 15px;
  margin-bottom: 10px;
}

.product_detail__product_unavailable input[type='button'] {
  background-color: black;
  color: white;
  font-size: var(--fs-large);
  font-weight: bold;
  text-transform: uppercase;
  padding: 16px 0;
  margin-top: 2px;
  width: 100%;
}

.product_detail__product_unavailable input[type='button']:hover {
  cursor: pointer;
}

.product_detail__buy_button {
  display: flex;
  margin: 20px 0 25px 0;
  user-select: none;
}

.buy_button__counter {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #707070;
  margin-right: 10px;
}

.buy_button__counter.inactive {
  background-color: var(--light-grey);
  pointer-events: none;
}

.buy_button__counter__input {
  position: absolute;
  padding: 12px;
}

.buy_button__counter__input:hover {
  cursor: pointer;
}

.buy_button__counter__input svg {
  width: 11px;
  height: 11px;
}

.buy_button__counter__input--less {
  left: 0;
}

.buy_button__counter__input--more {
  right: 0;
}

.buy_button__counter__number {
  width: 95px;
  text-align: center;
  font-size: var(--fs-regular);
  padding: 17px 0;
}

.buy_button__button {
  position: relative;
  background-color: black;
  color: white;
  padding: 17px 0;
  text-align: center;
  width: 100%;
  transition: 0.12s ease-in;
}

.buy_button__button:hover {
  background: rgba(0, 0, 0, 0.85);
  transition: 0.12s ease-in;
  cursor: pointer;
}

.text_alert {
  font-size: var(--fs-regular);
  color: red;
  position: absolute;
  width: 100%;
  bottom: 0;
  transform: translateY(100%);
  text-align: right;
  padding: 3px 0;
}

/* ------ CALCULADORA DE FRETE ------ */

.product_detail__quotation {
  position: relative;
  margin-bottom: 25px;
}

.product_detail__quotation__container {
  display: flex;
  align-items: center;
}

.product_detail__quotation__text {
  font-size: var(--fs-regular);
  margin-right: 10px;
}

.product_detail__quotation__input input {
  width: 100%;
  padding: 11px 15px;
  font-size: var(--fs-medium);
  border-bottom: 1px solid black;
}

.product_detail__quotation__consult {
  background-color: #949494;
  color: white;
  width: 85px;
  margin-left: 10px;
  padding: 11px 0;
  font-size: var(--fs-medium);
  text-align: center;
}

.product_detail__quotation__consult:hover {
  filter: brightness(1.2);
  transition: 0.12s ease-in;
  cursor: pointer;
}

.product_detail__quotation__result {
  background-color: #f1f1f1;
  width: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
  padding: 20px;
}

.loader__product_detail__quotation {
  width: 100%;
  height: 77px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.quotation__result__item {
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
}

div.quotation__result__item:last-of-type {
  margin-bottom: 0;
}

.quotation__result__item__title {
  color: #00000080;
  font-size: 14px;
  margin-bottom: 4px;
}

.quotation__result__item__price {
  color: #00000080;
  font-size: var(--fs-medium);
}

.quotation__result__item__description {
  color: #00000080;
  font-size: var(--fs-medium);
}

.quotation__result__fade {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

/* ------ COMPARTILHAR PRODUTO ------ */

.product_detail__share {
  font-size: var(--fs-regular);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.product_detail__share .product_detail__share__icons {
  width: fit-content;
  margin-left: 20px;
}

.product_detail__share .product_detail__share__icons a {
  display: inline-block;
  margin-right: 10px;
}

.pinterest__share__icon {
  cursor: pointer;
}

.product_detail__share .product_detail__share__icons svg {
  width: 19px;
  height: 19px;
}

.product_detail__share__mobile {
  display: none;
}

body.loading:before {
  content: '';
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  user-select: none;
}

body.loading:after {
  content: '';
  position: absolute;
  top: 15%;
  left: 50%;
  z-index: 101;
  width : 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  z-index: 1000;
  color: #5b5b58;
  animation: imageLoader 2s linear infinite;
}

/* ------ DESCRIÇÃO ------ */

.product_detail__info {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.product_detail__infos {
  padding: 30px 0;
  width: 100%;
}

.product_detail__infos.centralized {
  width: 1030px;
  margin: 0 auto;
}

.product_detail__infos.full {
  width: 100%;
  padding: 0 30px;
  display: flex;
  flex-wrap: wrap;
  place-content: center;
}

.product_detail__information__title {
  font-size: var(--fs-title);
  font-weight: bold;
  margin-bottom: 30px;
  width: 100%;
  list-style: initial;
  text-decoration: initial;
}

.product_detail__information {
  font-size: var(--fs-regular);
  line-height: 20px;
  margin-bottom: 45px;
  font-weight: normal;
  list-style: auto;
  text-decoration: auto;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.product_detail__information  p {
  width: 100%;
  min-height: 20px;
}
.product_detail__information_title {
  font-size: var(--fs-title);
  font-weight: bold;
  margin-bottom: 45px;
  width: 100%;
  list-style: initial;
  text-decoration: initial;
}

.product_detail__information ol {
  font-size: var(--fs-regular);
  margin-top: 30px;
  font-weight: normal;
  list-style: auto;
  text-decoration: auto !important;
  padding: revert;
  
}

.product_detail__information ol li {
  list-style: inherit !important;
  text-decoration: auto !important;
}

.product_detail__information ul {
  font-size: var(--fs-regular);
  margin-top: 30px;
  font-weight: normal;
  list-style: disc;
  text-decoration: unset;
  padding: revert;
}

.product_detail__information ul li {
  list-style: inherit !important;
  text-decoration: unset !important;
}

/* ------ FICHA TÉCNICA ------ */

.product_detail__datasheet {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.product_detail__datasheet_container {
  font-size: var(--fs-title);
  font-weight: bold;
  margin-bottom: 60px;
  width: 100%;
}
.product_detail__datasheet_container_title{
  font-size: var(--fs-title);
  font-weight: bold;
  margin-bottom: 60px;
  width: 100%;
}

.product_detail__datasheet_list {
  width: 100%;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
}

.product_detail__datasheet_list__item {
  font-size: var(--fs-regular);
  font-weight: normal;
  display: flex;
}

.product_detail__datasheet_list__item.product_detail__datasheet_list__item--type_bottom .product_detail__datasheet_list__item--content {
  width: 100%;
  font-weight: 400;
}

.product_detail__datasheet_list__item--title img {
  padding-right: 15px;
}
.product_detail__datasheet_list__item.coloumn_1{
  width: 100%;
}

.product_detail__datasheet_list__item.coloumn_2{
  width: 50%;
}

.product_detail__datasheet_list__item.coloumn_3{
  width: 33%;
}
.product_detail__datasheet_list__item.coloumn_4{
  width: 25%;
}

.product_detail__datasheet_list__item--img {
  min-width: 45px;
  width: 45px;
  margin: 15px 0 15px 10px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.product_detail__datasheet_list__item--icon{
  max-width: 100%;
}

.product_detail__datasheet_list__item--type_bottom .product_detail__datasheet_list__item--title{
  display: flex;
  flex-wrap: wrap;
}

.product_detail__datasheet_list__item--type_bottom .product_detail__datasheet_list__item--content{
  width: 100%;
  padding: 15px 15px 15px 0px;
}


.product_detail__datasheet_list__item:nth-child(2n) {
  background-color: #f2f2f2;
}

.product_detail__datasheet_list__item:nth-child(2n+1) {
  background-color: #ffffff;
}

.product_detail__datasheet_list__item.even:nth-child(2n+1) {
  background-color: #f2f2f2;
}

.product_detail__datasheet_list__item.even:nth-child(2n) {
  background-color: #ffffff;
}

.product_detail__datasheet_list__item .product_detail__datasheet_list__item--title {
  font-weight: 600;
  padding: 20px 15px;
  display: flex;
  height: fit-content;
}

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

.product_detail__datasheet_list__item--type_side .product_detail__datasheet_list__item--title{
  display: flex;
  flex-wrap: nowrap;
}

.product_detail__datasheet_list__item--type_side .product_detail__datasheet_list__item--title .product_detail__datasheet_list__item--content{
  padding-left: 15px;
  font-weight: 400;
}

.product_detail__datasheet_list__item--content {
  padding-right: 15px;
}
@media (max-width: 770px) {
  .product_detail__datasheet_list .product_detail__datasheet_list__item{
    width: 100%;
  }
  .product_detail__datasheet_list .product_detail__datasheet_list__item .product_detail__datasheet_list__item--title{
    flex-wrap: wrap;
  }
  .product_detail__datasheet_list .product_detail__datasheet_list__item .product_detail__datasheet_list__item--title .product_detail__datasheet_list__item--content{
    width: 100%;
    padding-left: 0px;
    padding-top:15px;
  }
  .product_detail__datasheet_list__item.even:nth-child(2n) {
    background-color: #f2f2f2;
  }
  
  .product_detail__datasheet_list__item.even:nth-child(2n+1) {
    background-color: #ffffff;
  }

 }

/* ------ AVALIAÇÃO ------ */

.product_detail__evaluations {
  display: flex;
  width: fit-content;
}

.product_detail__evaluations_container {
  width: 100%;
}

.evaluations_container__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 30px;
}

.evaluations_container__header p {
  font-size: var(--fs-title);
  font-weight: bold;
  margin-bottom: 10px;
  width: 100%;
  text-align: center;
}

.product_detail__evaluations_stars {
  display: flex;
  align-items: center;
  width: fit-content;
}

.evaluations_stars__stars {
  display: flex;
  align-items: center;
  margin-bottom: 1px;
}

.evaluations_stars__stars .evaluations_stars__star {
  padding: 0 2px;
  display: flex;
  align-items: center;
}

.evaluations_stars__number,
.evaluations_stars__stars {
  margin-right: 8px;
}

.evaluations_stars__number {
  font-size: var(--fs-medium);
  color: #707070;
  font-weight: bold;
}

.evaluations_stars__rate_counter {
  font-size: var(--fs-medium);
  color: #707070;
  margin-right: 8px;
}

.evaluations_stars__date {
  margin-left: 20px;
  color: #707070;
  font-size: var(--fs-regular);
}

.product_detail__evaluations_card {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 25px 0;
  margin-bottom: 25px;
  border-bottom: 1px solid rgb(184, 184, 184);
}

.evaluations_card__name {
  color: #707070;
  font-size: var(--fs-large);
  margin-bottom: 10px;
  font-weight: bold;
}

.evaluations_card__rate_stars {
  margin-bottom: 20px;
}

.evaluations_card__comment {
  color: #707070;
  font-size: var(--fs-regular);
  font-weight: normal;
}

.product_detail__info.full {
  width: 100%;
  padding: 0 30px;
}

.product_detail__info.centralized {
  width: 1030px;
  margin: auto;
}

.product_detail__datasheet.full {
  width: 100%;
  padding: 0 30px;
}

.product_detail__datasheet.centralized {
  width: 1030px;
  padding-top: 30px;
  margin: auto;
}

@media (max-width: 1030px) {
  .product_detail__info.centralized {
    width: 100%;
    padding: 0 15px;
  }

  .product_detail__info.full {
    width: 100%;
    padding: 0 15px;
  }

  .product_detail__datasheet.centralized {
    width: 100%;
    padding: 0 15px;
  }

  .product_detail__datasheet.full {
    width: 100%;
    padding: 0 15px;
  }

  .product_detail__measurement_guide__area.centralized {
    width: 100%!important;
    padding: 0 15px;
  }

  .product_detail__measurement_guide__area.full {
    width: 100%;
    padding: 0 15px;
  }
}

.product_detail__info.centralized {
  width: 1030px;
  padding-top: 30px;
}

.product_detail__infos.full {
  width: 100%;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  place-content: center;
}

.product_detail__evaluations.centralized {
  width: 1030px;
  margin: auto;
}

.product_detail__evaluations_card:first-child{
  border-top: 1px solid rgb(184, 184, 184);
}

/* ------ TABELA DE MEDIDAS ------ */

.product_detail__measurement_guide__area {
  margin-bottom: 60px;
}

.product_detail__measurement_guide__area.centralized {
  width: 1030px;
  margin-left: auto;
  margin-right: auto;
}

.product_detail__measurement_guide__area.full {
  width: 100%;
  padding: 0 30px;
  display: flex;
  flex-wrap: wrap;
  place-content: center;
}

.product_detail__measurement_guide__title {
  font-size: var(--fs-title);
  font-weight: bold;
  margin-bottom: 30px;
  width: 100%;
  list-style: initial;
  text-decoration: initial;
}

@media (max-width: 1030px) {
  .product_detail__info.centralized,
  .product_detail__evaluations.centralized,
  .product_detail__measurement_guide.centralized {
    width: 100%;
  }
}

/* ------ SHOWCASE ------ */

.product_detail__showcase__container {
  position: relative;
}

.product_detail__showcase__title,
.product_detail__evaluations__title {
  font-size: var(--fs-title);
  font-weight: bold;
  margin-bottom: 60px;
  width: 100%;
  text-align: center;
}

#similar_products {
  margin-bottom: 60px;
}

/* ------------ */

.style_layout_1 .product_detail__header .product_detail__header__extends {
  flex-direction: column;
}

.style_layout_1
  .product_detail__container
  .product_detail__container__center
  .product_detail__image__main {
  height: 400px;
}

@media screen and (max-width: 1660px) {
  .style_layout_1
    .product_detail__container.fullt.thumbnails_position_1
    .product_detail__container__center
    .product_detail__image__main {
    height: 380px;
  }
}

@media screen and (max-width: 1400px) {
  .style_layout_1
    .product_detail__container.full.thumbnails_position_1
    .product_detail__container__center
    .product_detail__image__main {
    height: 420px;
  }
}

@media screen and (max-width: 1300px) {
  .style_layout_1
    .product_detail__container.full.thumbnails_position_1
    .product_detail__container__center
    .product_detail__image__main {
    height: 380px;
  }
}

@media screen and (max-width: 1030px) {
  .style_layout_1
    .product_detail__container
    .product_detail__container__center
    .product_detail__image__main {
    height: 100% !important;
  }
}

.style_layout_2 .product_detail__header .product_detail__header__extends {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.style_layout_2
  .product_detail__container
  .product_detail__container__left
  .product_detail__image__main {
  height: 500px;
}

@media screen and (max-width: 1660px) {
  .style_layout_2
    .product_detail__container.full.thumbnails_position_1
    .product_detail__container__left
    .product_detail__image__main {
    height: 450px;
  }
}

@media screen and (max-width: 1400px) {
  .style_layout_2
    .product_detail__container.full.thumbnails_position_1
    .product_detail__container__left
    .product_detail__image__main {
    height: 420px;
  }
}

@media screen and (max-width: 1300px) {
  .style_layout_2
    .product_detail__container.full.thumbnails_position_1
    .product_detail__container__left
    .product_detail__image__main {
    height: 380px;
  }
}

@media screen and (max-width: 1030px) {
  .style_layout_2
    .product_detail__container
    .product_detail__container__left
    .product_detail__image__main {
    height: 100% !important;
  }
  .style_layout_2
    .product_detail__container
    .product_detail__container__left
    .product_detail__image__main {
    height: 100% !important;
  }
}

.style_layout_3 .product_detail__header .product_detail__header__extends {
  flex-direction: row;
  flex-wrap: wrap;
}

.style_layout_3
  .product_detail__container
  .product_detail__container__left
  .product_detail__image__main {
  height: 500px;
}

.product_detail__image__main {
  position: relative;
}

.product_detail__image__main.zoom {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 0;
  width: 100%;
  overflow: hidden;
  cursor: zoom-in;
}

.product_detail__image__main.zoom:hover {
  background-size: auto;
}

.product_detail__image__main.zoom img {
  display: block;
  max-width: 100%;
  height: 100%;
}

.product_detail__image__main.zoom img:hover {
  opacity: 0;
}

.product_detail__video__main {
  display: none;
  position: relative;
}

.product_detail__video__main.replay:after,
.product_detail__video__main__grid.replay:after,
.product_detail__video__main__zoom.replay:after,
.product_detail__video__main__mobile.replay:after {
  content:"";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  cursor: pointer;
  background-color: black;
  background-repeat: no-repeat;
  background-position: center; 
  background-size: 64px 64px;
  background-image: url(data:image/svg+xml;utf8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjgiIGhlaWdodD0iMTI4IiB2aWV3Qm94PSIwIDAgNTEwIDUxMCI+PHBhdGggZD0iTTI1NSAxMDJWMEwxMjcuNSAxMjcuNSAyNTUgMjU1VjE1M2M4NC4xNSAwIDE1MyA2OC44NSAxNTMgMTUzcy02OC44NSAxNTMtMTUzIDE1My0xNTMtNjguODUtMTUzLTE1M0g1MWMwIDExMi4yIDkxLjggMjA0IDIwNCAyMDRzMjA0LTkxLjggMjA0LTIwNC05MS44LTIwNC0yMDQtMjA0eiIgZmlsbD0iI0ZGRiIvPjwvc3ZnPg==);
}

.main_video {
  width: 100%;
  max-height: 500px;
}
 
.product_detail__video__main__zoom .main_video {
  width: 100%;
  max-height: 1100px;
}

.style_layout_4:not(.centralized) .product_detail__video__main__grid .main_video {
  height: 32.3vw;
}

@media screen and (max-width: 1660px) {
  .style_layout_3
    .product_detail__container.full.thumbnails_position_1
    .product_detail__container__left
    .product_detail__image__main {
    height: 450px;
  }
}

@media screen and (max-width: 1400px) {
  .style_layout_3
    .product_detail__container.full.thumbnails_position_1
    .product_detail__container__left
    .product_detail__image__main {
    height: 420px;
  }
}

@media screen and (max-width: 1300px) {
  .style_layout_3
    .product_detail__container.full.thumbnails_position_1
    .product_detail__container__left
    .product_detail__image__main {
    height: 380px;
  }
}

@media screen and (max-width: 1030px) {
  .style_layout_3
    .product_detail__container
    .product_detail__container__left
    .product_detail__image__main {
    height: 100% !important;
  }
}

.style_layout_1 .product_detail__offer {
  flex-direction: column;
  align-items: center;
  padding: 12px 0;
}

.style_layout_1 .product_detail__offer .product_detail__offer__timer {
  margin-top: 13px;
}

.style_layout_1 .product_detail__quotation .product_detail__quotation__text {
  width: 85px;
}

.style_layout_1 .product_detail__quotation .product_detail__quotation__input {
  width: calc(100% - 190px);
}

.style_layout_2 .product_detail__quotation .product_detail__quotation__text,
.style_layout_3 .product_detail__quotation .product_detail__quotation__text {
  width: 95px;
}

.style_layout_2 .product_detail__quotation .product_detail__quotation__input,
.style_layout_3 .product_detail__quotation .product_detail__quotation__input {
  width: calc(100% - 200px);
}

@media screen and (max-width: 1030px) {
  .product_detail .product_detail__container .product_detail__container__left,
  .product_detail .product_detail__container .product_detail__container__center,
  .product_detail .product_detail__container .product_detail__container__right {
    width: 100%;
    height: fit-content;
    margin-bottom: 15px;
  }
  .style_layout_2.centralized .product_detail__container__left {
    width: 100%;
  }

  .product_detail .product_detail__container.style_layout_1 .product_detail__container__left {
    margin-bottom: 0;
  }

  .style_layout_1 .product_detail__info_container__desktop {
    display: none;
  }

  .style_layout_1 .product_detail__offer__mobile {
    display: block;
  }

  .style_layout_1 .product_detail__offer__desktop {
    display: none;
  }

  .style_layout_1 .product_detail__offer__mobile .product_detail__offer {
    margin-bottom: 0;
    padding: 12px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .style_layout_1
    .product_detail__offer__mobile
    .product_detail__offer
    .product_detail__offer__timer {
    margin-top: 0;
  }

  .style_layout_1 .product_detail__description__mobile {
    display: block;
  }

  .style_layout_1 .product_detail__share__mobile {
    display: block;
  }

  .style_layout_2 .product_detail__offer__mobile .product_detail__offer {
    margin-bottom: 0;
  }

  .style_layout_3 .product_detail__offer__mobile {
    display: block;
  }

  .style_layout_3 .product_detail__offer__desktop {
    display: none;
  }

  .style_layout_3 .product_detail__offer__mobile .product_detail__offer {
    margin-bottom: 0;
  }

  .product_detail__infos.full,
  .product_detail__infos.centralized {
    width: 100% !important;
  }
}

@media screen and (max-width: 768px) {
  .product_detail__container.full,
  .product_detail__container.centralized {
    padding: 20px 15px !important;
    display: flex;
    flex-wrap: wrap;
  }

  .style_layout_1 .product_detail__title {
    margin-bottom: 15px;
  }

  .style_layout_1 .product_detail__evaluations__mobile {
    display: block;
  }

  .style_layout_1 .product_detail__evaluations__desktop {
    display: none;
  }

  .style_layout_2 .product_detail__offer__mobile {
    display: block;
  }

  .style_layout_2 .product_detail__offer__desktop {
    display: none;
  }

  .style_layout_3 .product_detail__extends__mobile {
    display: block;
  }

  .style_layout_3 .product_detail__extends__desktop {
    display: none;
  }
  
  .product_detail__information iframe {
    width: 100%;
    max-height: 300px;
  }
}

@media screen and (max-width: 420px) {
  .product_detail__quotation__input input {
    padding: 11px 5px;
  }

  .style_layout_1 .product_detail__offer__mobile .product_detail__offer {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .style_layout_1
    .product_detail__offer__mobile
    .product_detail__offer
    .product_detail__offer__text {
    margin-bottom: 6.5px;
  }

  .style_layout_2 .product_detail__offer__mobile .product_detail__offer {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .style_layout_2
    .product_detail__offer__mobile
    .product_detail__offer
    .product_detail__offer__text {
    margin-bottom: 6.5px;
  }

  .style_layout_3 .product_detail__offer__mobile .product_detail__offer {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .style_layout_3
    .product_detail__offer__mobile
    .product_detail__offer
    .product_detail__offer__text {
    margin-bottom: 6.5px;
  }
}

.product_detail__main_image {
  position: relative;
  width: 100%;
}

.product_detail__mobile_main_image {
  display: none;
}

.product_detail__image__slider_container {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
}

.product_detail__image__slider {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.product_detail__image__wrap {
  height: 100%;
  width: 100%;
  display: flex;
}

.product_detail__image__arrows {
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  padding: 5px;
  user-select: none;
}

.product_detail__image__arrows:hover {
  cursor: pointer;
}

.product_detail__image__arrows svg {
  width: 16px;
  height: 30px;
}

.product_detail__image__arrows--left {
  left: 0;
}

.product_detail__image__arrows--right {
  right: 0;
}

.product_detail__image {
  height: 100%;
  width: 100%;
}

.product_detail__video__thumbnail__item {
  border: 1px solid #DFDFDF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.product_detail__video__thumbnail__item svg {
  fill: #3c3c3c;
}

.thumbnails_position_1 .product_detail__image__container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.thumbnails_position_1 .product_detail__image__main {
  width: 100%;
}

.thumbnails_position_1 .product_detail__image__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.thumbnails_position_1 .product_detail__image__thumbnail {
  width: 100%;
  height: 80px;
  margin-top: 10px;
  padding: 0px;
  display: flex;
}

.thumbnails_position_1 .product_detail__image__thumbnail__container {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
}

.thumbnails_position_1 .product_detail__image__thumbnail__items {
  position: absolute;
  display: flex;
  transition: 0.2s;
  justify-content: center;
}

.thumbnails_position_1 .product_detail__image__thumbnail__item,
.thumbnails_position_1 .product_detail__video__thumbnail__item {
  height: 80px;
  width: 80px;
  margin-right: 10px;
}

.thumbnails_position_1 .product_detail__image__thumbnail__item:hover,
.thumbnails_position_1 .product_detail__video__thumbnail__item:hover {
  cursor: pointer;
}

.thumbnails_position_1 .product_detail__image__thumbnail__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.thumbnails_position_1 .product_detail__image__thumbnail__arrows,
.thumbnails_position_3 .product_detail__image__thumbnail__arrows {
  display: flex;
  align-items: center;
  padding: 10px 0;
  user-select: none;
}

.thumbnails_position_1 .product_detail__image__thumbnail__arrows--left {
  padding-right: 10px;
}

.thumbnails_position_1 .product_detail__image__thumbnail__arrows--right {
  padding-left: 10px;
}

.thumbnails_position_1 .product_detail__image__thumbnail__arrows svg {
  width: 8.5px;
}

.thumbnails_position_1 .product_detail__image__thumbnail__arrows svg:hover {
  cursor: pointer;
}

@media (max-width: 1130px) {
  .thumbnails_position_2 .product_detail__image__thumbnail {
    display: none !important;
  }

  .thumbnails_position_1 .product_detail__image__slider_container {
    display: block !important;
  }

  .thumbnails_position_1 .product_detail__image__thumbnail__arrows--left {
    padding-right: 0;
  }

  .thumbnails_position_1 .product_detail__image__thumbnail__arrows--right {
    padding-left: 0;
  }
}

.thumbnails_position_2 .product_detail__container__center {
  display: flex;
}

.thumbnails_position_2 .product_detail__image__container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
}

.thumbnails_position_2 .product_detail__image__main,
.thumbnails_position_2 .product_detail__video__main {
  width: 100%;
  margin-bottom: 10px;
}
@media (max-width: 1103px) {
  .thumbnails_position_2 .product_detail__image__main {
    padding-bottom: 0px;
  }
}

.thumbnails_position_2 .product_detail__image__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 1103px) {
  .thumbnails_position_2 .product_detail__image__main img {
    height: 100%;
  }
}

.thumbnails_position_2 .product_detail__container__left .product_detail__image__thumbnail {
  max-height: 498px;
}

.thumbnails_position_2 .product_detail__container__center .product_detail__image__thumbnail {
  max-height: 400px;
}

.thumbnails_position_2 .product_detail__image__thumbnail {
  width: 100px;
  margin-right: 10px;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  max-height: 650px;
}

.thumbnails_position_2 .product_detail__image__thumbnail__container {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
}

.thumbnails_position_2 .product_detail__image__thumbnail__items {
  display: flex;
  flex-direction: column;
  transition: 0.2s;
}

.thumbnails_position_2 .product_detail__image__thumbnail__item,
.thumbnails_position_2 .product_detail__video__thumbnail__item {
  height: 80px;
  width: 80px;
  margin-bottom: 10px;
}

.thumbnails_position_2 .product_detail__image__thumbnail__item:hover,
.thumbnails_position_2 .product_detail__video__thumbnail__item:hover {
  cursor: pointer;
}

.thumbnails_position_2 .product_detail__image__thumbnail__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.thumbnails_position_2 .product_detail__image__thumbnail__arrows {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px 10px;
  user-select: none;
}

.thumbnails_position_2 .product_detail__image__thumbnail__arrows svg {
  width: 8.5px;
}

.thumbnails_position_2 .product_detail__image__thumbnail__arrows svg:hover {
  cursor: pointer;
}

.thumbnails_position_2 .product_detail__image__thumbnail__arrows--up svg,
.thumbnails_position_2 .product_detail__image__thumbnail__arrows--bottom svg {
  transform: rotate(90deg);
}

.thumbnails_position_3 .product_detail__image__container .product_detail__image__main.zoom {
  display: flex;
  justify-content: center;
}

.thumbnails_position_3 .product_detail__image__slider_container {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
}

.thumbnails_position_3 .product_detail__image__slider {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.thumbnails_position_3 .product_detail__image {
  height: 100%;
  width: 100%;
}

.thumbnails_position_3 .product_detail__image:hover {
  cursor: pointer;
}

.thumbnails_position_3 .product_detail__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.thumbnails_position_3 .product_detail__main_image__slider__container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.thumbnails_position_3 .product_detail__main_image__slider {
  display: flex;
  position: absolute;
}

.thumbnails_position_3 .product_detail__main_image__slide {
  width: 515px;
  height: 515px;
}

@media (max-width: 1130px) {
  .thumbnails_position_3 .product_detail__image__container {
    height: 100% !important;
    margin-bottom: 0 !important;
  }
}

.product_detail__image__container__mobile {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.product_detail__video__main__zoom,
.product_detail__video__main__grid,
.product_detail__video__main__mobile {
  position: relative;
}

.product_detail__image__main__mobile img {
  display: block;
  max-width: 100%;
  height: 100%;
}

.product_detail__video__main__mobile .main_video {
  height: 100%;
}

.product_detail__zoom_icon__mobile {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1;
}

.product_detail__modal_zoom__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.product_detail__modal_zoom__mobile_wrap {
  height: 100%;
  padding-top: 40px;
}

.product_detail__modal_zoom__mobile_close {
  position: absolute;
  top: 130px;
  right: 0;
  margin: 15px;
  z-index: 1;
}

.product_detail__modal_zoom__mobile_image_area {
  position: absolute;
}

.product_detail__modal_zoom__mobile_pinch_icon {
  position: absolute;
  top: -28px;
  right: 34px;
  pointer-events: none;
}

.product_detail__modal_zoom__mobile_pinch_icon svg {
  width: 50px;
  height: 50px;
}

.product_detail__image__thumbnail__mobile {
  width: 100%;
  height: 80px;
  padding: 0px;
  display: flex;
}
@media (max-width: 620px) {
  .product_detail__image__thumbnail__mobile-hidden {
    display: none;
  }
}
.product_detail__image__thumbnail__container__mobile {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
}

.product_detail__image__thumbnail__items__mobile {
  position: absolute;
  display: flex;
  transition: 0.2s;
  justify-content: center;
}

.product_detail__image__thumbnail__item__mobile,
.product_detail__video__thumbnail__item__mobile {
  height: 80px;
  width: 80px;
  margin-right: 12px;
}

.product_detail__video__thumbnail__item__mobile {
  border: 1px solid #DFDFDF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product_detail__video__thumbnail__item__mobile svg {
  fill: #3c3c3c;
}

@media (max-width: 1030px) {
  .product_detail__container.full {
    padding: 0 15px;
  }

  .product_detail__container.centralized {
    padding: 0 15px;
  }
}

@media (max-width: 620px) {
  .product_detail__title {
    font-size: 18px;
  }

  .thumbnails_position_1 .product_detail__image__main img {
    width: 100%;
    height: inherit;
    object-fit: contain;
  }

  .thumbnails_position_2 .product_detail__container__center {
    display: block;
  }
}

@media (max-width: 380px) {
  .product_detail__main_image {
    margin: 10px 0;
  }
}

.product_detail__container__left,
.product_detail__container__center,
.product_detail__container__right {
  margin-bottom: 0px;
}

.style_layout_1 .product_detail__container__left {
  padding-right: 20px;
}

.style_layout_1 .product_detail__container__center {
  padding: 0 10px;
}

.style_layout_1 .product_detail__container__right {
  padding-left: 20px;
}

.style_layout_1.centralized .product_detail__container__left {
  width: 28%;
}

.style_layout_1.centralized .product_detail__container__center {
  width: 40%;
}

.style_layout_1.centralized .product_detail__container__right {
  width: 32%;
}

.style_layout_1.full .product_detail__container__left {
  width: 25%;
}

.style_layout_1.full .product_detail__container__center {
  width: 40%;
}

.style_layout_1.full .product_detail__container__right {
  width: 35%;
}

.style_layout_2 .product_detail__container__right {
  padding-left: 30px;
}

.style_layout_2.centralized .product_detail__container__left {
  width: 50%;
}

.style_layout_2.centralized .product_detail__container__right {
  width: 50%;
}

.style_layout_2.full .product_detail__container__left {
  width: 55%;
}

.style_layout_2.full .product_detail__container__right {
  width: 45%;
}

.style_layout_3 .product_detail__container__top {
  width: 100%;
}

.style_layout_3 .product_detail__container__right {
  padding-left: 30px;
}

.style_layout_3.centralized .product_detail__container__left {
  width: 50%;
}

.style_layout_3.centralized .product_detail__container__right {
  width: 50%;
}

.style_layout_3.full .product_detail__container__left {
  width: 55%;
}

.style_layout_3.full .product_detail__container__right {
  width: 45%;
}

.style_layout_4 {
  display: grid;
  grid-template-columns: 1fr 1fr minmax(auto, 33%);
  grid-template-areas:
      "gallery gallery info"
      "gallery gallery info";
}

.style_layout_4 .product_detail__container__left {
  grid-area: gallery / gallery / gallery / gallery;
}

.style_layout_4 .product_detail__main_image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 20px;
}

.style_layout_4 .product_detail__image img {
  width: 100%;
  height: 100%;
}

.style_layout_4 .product_detail__container__right {
  padding-left: 5%;
  position: sticky;
  top: 50px;
  grid-area: info / info / info / info;
  height: max-content;
}

.style_layout_4 .product_detail__image__main {
  margin-bottom: 0;
}

@media screen and (max-width: 1030px) {
  .style_layout_2.centralized .product_detail__container__left,
  .style_layout_2.centralized .product_detail__container__right,
  .style_layout_2.full .product_detail__container__left,
  .style_layout_2.full .product_detail__container__right,
  .style_layout_3 .product_detail__container__top,
  .style_layout_3 .product_detail__container__right,
  .style_layout_3.centralized .product_detail__container__left,
  .style_layout_3.centralized .product_detail__container__right,
  .style_layout_3.full .product_detail__container__left,
  .style_layout_3.full .product_detail__container__right,
  .style_layout_1.full .product_detail__container__center,
  .style_layout_1.centralized .product_detail__container__left,
  .style_layout_1.centralized .product_detail__container__center,
  .style_layout_1.centralized .product_detail__container__right,
  .style_layout_1.full .product_detail__container__left,
  .style_layout_1.full .product_detail__container__center,
  .style_layout_1.full .product_detail__container__right,
  .style_layout_4 .product_detail__container__right {
    width: 100%;
    padding: 0px;
  }
}
.product_detail__main_image {
  position: relative;
  width: 100%;
}

.product_detail__image__slider_container {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
}

.product_detail__image__slider {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.product_detail__image__arrows {
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  padding: 5px;
  user-select: none;
}

.product_detail__image__arrows:hover {
  cursor: pointer;
}

.product_detail__image__arrows svg {
  width: 16px;
  height: 30px;
}

.product_detail__image__arrows--left {
  left: 0;
}

.product_detail__image__arrows--right {
  right: 0;
}

.product_detail__image {
  height: 100%;
  width: 100%;
}

.product_detail__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product_detail__breadcrumb__list {
  display: flex;
  align-items: center;
}

.product_detail__breadcrumb__list__separator {
  margin: 0 10px;
}

.product_detail__breadcrumb__list__item {
  color: var(--black);
  font-size: var(--fs-small);
}

.product_detail__breadcrumb__list__item:last-child {
  font-weight: bold;
}

@media (max-width: 1029px) {
  .product_detail__breadcrumb_container {
    display: none;
  }
}

.product_detail .variations a,
.product_detail .variations a:active,
.product_detail .variations a:visited,
.product_detail .variations a:hover {
  color: inherit;
}

.product_detail__variation_size {
  margin-bottom: 15px;
}

.variation_size__text {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: var(--fs-regular);
  margin-bottom: 5px;
}

.variation_a_img{
  position: relative;
  display: flex;
  margin: 0px 7px 7px 0;
}
.variation_img{
  max-width: 100%;
  max-height: 100%;
  margin: 5px;
}
.variation_size_with_img.variation_size__variation.variation {
  height: 40px;
  width: 40px;
  padding: 0px;
  z-index: 15;
  margin: 0px;
  min-width: 40px;
}
.variation_div_img{
  height: 35px;
  width: 35px;
  position: absolute;
  place-content: center;
  display: flex;
  align-items: center;
  z-index: 1;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background-position-y: center;
  z-index: 11;
}

.variation_size__title {
  font-weight: bold;
  margin-right: 5px;
  padding-bottom: 5px;
}

.variation_size__specification {
  color: #8c8c8c;
  margin-right: auto;
  padding-bottom: 5px;
}

.variation_size__container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.variation_size__variation {
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #707070;
  padding: 10px;
  font-size: var(--fs-small);

}

.variation_size__container a{
  margin: 0px 10px 10px 0;
}

.variation_size__variation.variation.unavailable {
  background: linear-gradient(
    to top right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) calc(50% - 1px),
    rgba(112, 112, 112, 1) 50%,
    rgba(0, 0, 0, 0) calc(50% + 1px),
    rgba(0, 0, 0, 0) 100%
  );
  background-color: rgba(244, 244, 244, 0.5);
}
.variation_dropdown__variation_selected__text.unavailable{
  text-decoration: line-through;
  color: #707070;
}

.variation_size__variation:hover {
  cursor: pointer;
}

.variation_size__container.variations .variation_size__variation.selected {
  border: 2px solid black;
}

.variation_size__container.variations .variation_size__variation.unavailable {
  color: #707070 !important;
  border: 1px solid #707070 !important;
  z-index: 20;
}

.variation_size__container.variations .variation_size__variation.selected.unavailable {
  border: 2px solid #707070 !important;
}

.product_detail__variation_dropdown {
  margin-bottom: 25px;
}

.variation_dropdown__text {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: var(--fs-regular);
  margin-bottom: 5px;
}

.variation_dropdown__title {
  font-weight: bold;
  margin-right: 5px;
  padding-bottom: 5px;
}

.variation_dropdown__specification {
  color: #8c8c8c;
  margin-right: auto;
  padding-right: 5px;
  padding-bottom: 5px;
}

.variation_dropdown {
  width: fit-content;
}

.variation_dropdown__variation_selected {
  min-width: 260px;
  width: fit-content;
  display: flex;
  border: 1px solid #bdbdbd;
  border-radius: 3px;
  user-select: none;
}

.variation_dropdown__variation_selected:hover {
  cursor: pointer;
}

.variation_dropdown__variation_selected__text {
  width: 100%;
  font-size: var(--fs-regular);
  padding: 10px 15px;
}

.variation_dropdown__icon {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.variation_dropdown__icon svg {
  stroke: black;
  stroke-width: 0.5px;
  transform: rotate(90deg);
  pointer-events: none;
  transition: 0.12s ease-in-out;
}

.variation_dropdown__icon.rotate svg {
  transform: rotate(270deg);
}

.variation_dropdown__variation_container {
  background-color: rgb(245, 245, 245);
  display: flex;
  flex-direction: column;
  border-radius: 3px;
  border: 1px solid #bdbdbd;
  position: absolute;
  width: 260px;
  z-index: 2;
  max-height: 197px;
  overflow-x: hidden;  
}

.variation_dropdown__variation_container::-webkit-scrollbar {
  width: 5px;
}

.variation_dropdown__variation_container::-webkit-scrollbar-thumb {
  border-radius: 50px;
  background: #A9A9A9;
  width: 12px;
}

.variation_dropdown__variation_container::-webkit-scrollbar-track {
  background: #ededed;
  width: 12px;
}

.variation_dropdown__variation {
  background-color: rgb(245, 245, 245);
  width: 100%;
  font-size: var(--fs-regular);
  padding: 10px 15px;
  transition: 0.2s;
  border-radius: 3px;
}

.variation_dropdown__variation.variation.unavailable {
  text-decoration: line-through;
  color: #707070;
}

.variation_dropdown__variation:hover {
  background-color: rgb(212, 212, 212);
  cursor: pointer;
}

.product_detail__measurement_table {
  margin: 15px 0 25px;
}

.product_detail__measurement_table .product_detail__measurement_table__link {
  display: inline-block;
  font-weight: 600;
  font-size: var(--fs-medium);
  text-decoration: underline;
  cursor: pointer;
}

.product_detail__measurement_table__modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.product_detail__measurement_table__modal__close svg {
  width: 15px;
  height: 15px;
}

.product_detail__measurement_table__modal__image picture img {
  margin: auto;
  width: -webkit-fill-available;
}

.price__highlight__product .product__price__price b,
.price__highlight__bankslip .product__price__billet b,
.price__highlight__pix .product__price__pix b,
.price__highlight__installments .product__price__installments b,
.product_card__price__current_price_multiple_price b {
  font-size: var(--fs-subtitle);
  font-weight: bold;
  color: var(--black);
  margin-right: 15px;
}

.product__price__text_multiple_price {
  font-size: 13px;
  margin-bottom: 10px;
}

.product_detail__price {
  margin-bottom: 25px;
}

.product_detail__price .product__price {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.product_detail__price .product__price .product__price__discount {
  color: #b2b2b2;
  font-size: var(--fs-medium);
  text-decoration: line-through;
  margin-right: 10px;
}

.product_detail__price .product__price .product__price__price {
  font-size: var(--fs-medium);
  font-weight: bold;
  margin-bottom: 0;
  margin-right: 15px;
}

.product_detail__price .product__price .product__price__discount_percentage {
  color: white;
  background-color: black;
  font-size: var(--fs-regular);
  border: 2px solid #9a9a9a;
  padding: 6px;
  font-size: 12px;
}

.product_detail__price .product__price__price,
.product_detail__price .product__price__billet,
.product_detail__price .product__price__pix {
  font-size: var(--fs-regular);
  margin-bottom: 7px;
}

.product_detail__price .product__price__billet discount,
.product_detail__price .product__price__pix discount {
  color: #00c40e;
  font-size: var(--fs-medium);
}

.product_detail__price .product__price__installments {
  font-size: var(--fs-regular);
  margin-bottom: 10px;
}

.product_detail__price .product__price__payment_methods__link {
  display: inline-block;
  font-size: var(--fs-regular);
  text-decoration: underline;
}

.product_detail__price .product__price__payment_methods__link:hover {
  cursor: pointer;
}

.product__price__payment_methods__sidebar__backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 21;
  background-color: #000;
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
}

.product__price__payment_methods__sidebar__backdrop.active {
  pointer-events: all;
  opacity: 0.5;
  transition: opacity .5s;
}

.product__price__payment_methods__sidebar__backdrop.active + .product__price__payment_methods__sidebar {
  right: 0;
  transition: right .5s;
}

.product__price__payment_methods__sidebar {
  position: fixed;
  top: 0;
  right: -520px;
  
  transition: right .5s;
  background-color: white;
  width: 520px;
  height: 100%;
  overflow: auto;
  z-index: 100;
}

.product__price__payment_methods__sidebar__close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.product__price__payment_methods__sidebar__title {
  font-size: var(--fs-title);
  font-weight: 500;
  padding: 30px;
}

.loader__product__price__payment_methods {
  width: 100%;
  height: 50px;
}

#product__price__payment_methods .accordion.hide,
#product__price__payment_methods .accordion-panel {
  display: none;
}

#product__price__payment_methods .accordion.open .accordion-panel {
  display: block;
}

#product__price__payment_methods .accordion.open .accordion-title .icon-arrow {
  transform: rotate(180deg);
  transition: .5s all;
  margin-bottom: 3px;
}

#product__price__payment_methods .accordion-title {
  display: flex;
  align-items: center;
  border-top: 1px solid #DADADA;
  border-bottom: 1px solid #DADADA;
  padding: 20px 30px;
  cursor: pointer;
}

#product__price__payment_methods .accordion-title .icon-arrow {
  margin-right: 20px;
  transition: .5s all;
}

#product__price__payment_methods .accordion-title .payment-icon {
  display: flex;
  align-items: center;
  margin-right: 10px;
  width: 40px;
  height: 24px;
}

#product__price__payment_methods .accordion-title .payment-icon svg {
  width: fit-content;
}

#product__price__payment_methods .payment-info {
  font-size: var(--fs-large);
  line-height: 19px;
}

#product__price__payment_methods .payment-discount {
  color: #00C40E;
  font-size: var(--fs-regular);
}

#product__price__payment_methods .installments-row {
  padding: 14px 57px;
  color: rgba(0, 0, 0, 0.5);
  font-size: var(--fs-regular);
}

#product__price__payment_methods .installments-row .value {
  color: #000;
}

#product__price__payment_methods .installments-row:nth-child(odd) {
  background-color: #F1F1F1;
}

@media screen and (max-width: 768px) {
  .product__price__payment_methods__sidebar {
    width: 100%;
  }
  .product__price__payment_methods__sidebar__title {
    font-size: var(--fs-subtitle);
    padding: 30px 15px;
  }
  #product__price__payment_methods .payment-discount {
    display: block;
    margin-top: 3px;
  }
}

.loader__product_detail_action {
  margin-bottom: 25px;
  height: 50px;
  width: 300px;
}

.loader__product_detail__price {
  margin-bottom: 25px;
  width: 300px;
}

.loader__product_detail__price--top {
  margin-bottom: 10px;
  height: 20px;
  max-width: 250px;
}

.loader__product_detail__price--middle {
  margin-bottom: 10px;
  height: 20px;
  max-width: 150px;
}

.loader__product_detail__price--bottom {
  height: 15px;
  max-width: 220px;
}

@media screen and (max-width: 300px) {
  .loader__product_detail__price {
    width: 100%;
  }
  .loader__product_detail__price--top {
    max-width: 88%;
  }
  .loader__product_detail__price--bottom {
    max-width: 80%;
  }
}

/* ------ MODAL ------ */

.product_detail__modal__overlay {
  background-color: rgba(0, 0, 0, .5);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: all .2s;
}

.product_detail__modal__overlay.set_visible,
.product_detail__modal__overlay.set_visible + .product_detail__modal__container,
.product_detail__modal__container_zoom.set_visible,
.product_detail__modal__container_zoom.set_visible .product_detail__modal__container{
  visibility: visible;
  opacity: 1;
  transition: all .2s;
}
.product_detail__modal__container_zoom.set_visible .product_detail__modal__container{
  max-height: 90%;
  height: 1200px;
  width: 90%;
  max-width: 1200px;
}

.product_detail__modal_zoom__container{
  height: 100%;

}



.product_detail__modal__container {
  position: fixed !important;
  max-width: 90%;
  padding: 15px;
  box-sizing: border-box;
  position: absolute;
  z-index: 1001;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 4px;
  background: #fff;
  visibility: hidden;
  opacity: 0;
  transition: all .2s;
}

.product_detail__modal__close {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 1;
  cursor: pointer;
  background-color: #000;
  border-radius: 100%;
  width: 25px;
  height: 25px;
}

.product_detail__modal__close svg {
  width: 11px;
  height: 11px;
  margin: 7px;
  fill: #fff;
}

.product_detail__modal_zoom + .product_detail__modal__container {
  max-height: 90%;
  height: 1200px;
  width: 90%;
  max-width: 1200px;
}

@media screen and (min-width: 1680px) {
  .product_detail__container.full .product_detail__image__main.zoom {
    background-image: none !important;
  }
  .product_detail__container.full .product_detail__image__main.zoom img:hover {
    opacity: 1;
  }
}

@media screen and (max-width: 1200px) {
  .product_detail__modal_zoom + .product_detail__modal__container {
    max-width: 90%;
  }
}

@media screen and (max-width: 620px) {
  .product_detail__modal_zoom + .product_detail__modal__container {
    max-width: 100%;
    max-height: 414px;
    padding: 0;
    position: fixed;
  }
  .product_detail__modal__close {
    top: 0;
    right: 0;
  }
  .product_detail__image__main.zoom {
    background-image: none !important;
  }
  .product_detail__image__main.zoom img:hover {
    opacity: 1;
  }
  .mobile__buy_button_fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 21;
    width: 100%;
    background: #fff;
    padding: 10px 15px;
    margin: 0;
    border-top: 1px solid #EEEEEE;
  }
  .product_detail__main_image,
  .style_layout_4 .product_detail__main_image:not(.product_detail__mobile_main_image) {
    display: none;
  }
  .product_detail__mobile_main_image {
    display: block !important;
  }
}

.product_detail__image__main .image_loader {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.product_detail__image__main .image_loader span {
  width : 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  color: #5b5b58;
  animation: imageLoader 2s linear infinite;
}

@keyframes imageLoader {
  0% { box-shadow:   14px 0 0 -2px,  38px 0 0 -2px, -14px 0 0 -2px,  -38px 0 0 -2px }
  25% { box-shadow:   14px 0 0 -2px,  38px 0 0 -2px, -14px 0 0 -2px,  -38px 0 0 2px }
  50% { box-shadow:   14px 0 0 -2px,  38px 0 0 -2px, -14px 0 0 2px,  -38px 0 0 -2px }
  75% { box-shadow:   14px 0 0 2px,  38px 0 0 -2px, -14px 0 0 -2px,  -38px 0 0 -2px }
  100% { box-shadow:   14px 0 0 -2px,  38px 0 0 2px, -14px 0 0 -2px,  -38px 0 0 -2px }
}

.product_detail__image__slider_container_zoom {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
  font-size: 0;
  
}

.product_detail__image__slider_container_zoom .product_detail__image__slider .product_detail__image__wrap .glide__slide img {
  height: 100%;
  object-fit: contain;
}
.product_detail__modal_zoom__container .product_detail__modal_zoom__image__container .product_detail__image{
  display: flow;
  align-content: center;
  text-align: center;
}
.product_detail__modal_zoom__container .product_detail__modal_zoom__image__container .product_detail__image img{
  max-width: max-content;
  max-height: -webkit-fill-available;
  max-width: -moz-available;;
}

.product_detail__modal__container .product_detail__modal_zoom__container .product_detail__modal_zoom__image__container .product_detail__image__slider_container_zoom .product_detail__image__slider .product_detail__image__wrap .glide__slide {
max-width: 100%;
}


.product_detail__modal_zoom__image__container {
  width: 100%;
  height: 100%;
}

.product_detail__modal_zoom__image__container .product_detail__image__slider_container_zoom .product_detail__image__slider .product_detail__image__wrap 

.product_detail__modal_zoom__image__container img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

.product_detail__modal_zoom__image__container .main_video {
  height: 100%;
}

.product_detail__variations_pop_up_fade{
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 31%;
  background: #313030;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .15s linear;
}

.product_detail__variations_pop_up{
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .15s linear;
}

.product_detail__variations_pop_up_container{
  padding: 25px;
  background: #fff;
  position: relative;
  border-radius: 5px;
}
.product_detail__variations_pop_up_ctitle_and_close {
  display: flex;
  justify-content: space-between;
}
.product_detail__variations_pop_up_container p {
  margin-bottom: 40px;
}
.product_detail__variations_pop_up_ctitle_and_close h2{
  font-size:20px;
}
.product_detail__variations_pop_up_ctitle_and_close p{
  font-size:18px;
  margin-bottom: 0px;
}
.close_pop_up{
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.spinner_in_button{
  background-color: #000000C2;
  display: flex;
  justify-content: center;
}

.spinner_in_button:hover{
  background-color: #000000C2;
  display: flex;
  justify-content: center;
}

.spinner_buy {
  border :4px solid #ffffffC2;
  border-left-color : rgba(0,0,0, 0);
  height:18px;
  width: 18px;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display:none;
}

.spinner_in_button .spinner_buy{
  display: flex;
}

.spinner_in_button .buy_button__p{
  display: none;
}

.background_product_detail{
  width: 100%;
  display: flex;
  place-content: center;
  z-index: 2;
}

.product_detail__evaluations__stars_total{
  display: flex;
  justify-content: center;
  padding-top:10px;
}


.product_detail__evaluations.full{
  width: 100%;
}

.product_detail_information__item-container-img svg{
  width: 20px;
  height: auto;
  align-items: start;
  fill:#636363;
}

.product_detail_information__item-container-img div svg g path{
  stroke: #636363;
}

.product_detail_information__item-container-img{
  margin-right: 10px;
}

.product_detail_store_information__item-container-text{
  align-self: center;
}


.product_detail_information_itens_link,
.product_detail_information__item{
  display: flex;
    flex-wrap: nowrap;
    margin-bottom: 10px;
}
.product_detail_store_information__item-container-text h3,
.product_detail_store_information__item-container-text p{
  font-size: 14px;
  text-decoration: none;
  color: #000;
}
.product_detail_store_information__item-container-text p{
color: #00000080;
}

.product_detail__product_estimate-req{
  font-size: 20px;
}
.product_detail__product_estimate-inf{
  font-size: 14px;
  color: #4D4D4D;
  padding-bottom: 20px;
}
.product_detail__product_estimate input[type='text'],
.product_detail__product_estimate input[type='email'],
.product_detail__product_estimate input[type='number'] {
  font-size: var(--fs-regular);
  border: 1px solid #dadada;
  padding: 13px 15px;
  margin-bottom: 10px;
  width: 100%;
}
.product_detail__product_estimate {
  background-color: #efefef;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px ;
  margin-bottom: 25px;
}
.product_detail__product-button-est {
  background-color: black;
  color: white;
  font-size: var(--fs-large);
  font-weight: bold;
  cursor: pointer;
  padding: 16px 0;
  width: 100%;
}
.product_detail__product-button-est + a .product_detail__product-wpp {
  margin-top: 15px;
}
.product_detail__product-wpp{
  background-color: #25D366;
  color: white;
  font-size: var(--fs-large);
  font-weight: bold;
 
  padding: 16px 0;
  margin-top: 2px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.product_detail__product-wpp svg{
  fill:white;
}
.product_detail__product_estimate input[type='text'].no-valid,
.product_detail__product_estimate input[type='email'].no-valid,
.product_detail__product_estimate input[type='number'].no-valid{
  margin: 0px;
}
.product_detail__product_estimate-input_no-valid{
 display: none;
 font-size: 12px;
 color: #C70000;
 margin-bottom: 10px;
}
.product_detail__product_estimate-input-text.no-valid + .product_detail__product_estimate-input_no-valid,
.product_detail__product_estimate-input-email.no-valid + .product_detail__product_estimate-input_no-valid,
.product_detail__product_estimate-input-numb.no-valid + .product_detail__product_estimate-input_no-valid{
  display: block;
}

.product_detail__kits_area {
  margin-bottom: 25px;
}

.product_detail__kits_area .loading {
  width: 100%;
  height: 50px;
  margin-bottom: 10px;
}

.product_detail__kits_item,
.product_detail__kits_item__area {
  display: flex;
  align-items: flex-start;
}

.product_detail__kits_item {
  padding: 10px 0;
}

.product_detail__kits_item.pulse {
  pointer-events: none;
}

.product_detail__kits_item.pulse .product_detail__kits_item__area {
  opacity: .5;
}

.product_detail__kits_item__checkbox {
  margin-right: 15px;
  cursor: pointer;
}

.product_detail__kits_item__checkbox input {
  display: none;
}

.product_detail__kits_item__checkbox input:disabled + .product_detail__kits_item__checkbox__icon {
  background-color: #CDCDCD !important;
  border-color: #CDCDCD !important;
  pointer-events: none;
}

.product_detail__kits_item__checkbox__icon {
  background-color: #fff;
  border: 2px solid #A9A9A9;
  border-radius: 2px;
  box-sizing: border-box;
  width: 18px;
  height: 18px;
}

.product_detail__kits_item__checkbox svg {
  width: 13px;
  height: 13px;
  margin: 1px;
  fill: #fff;
  display: none;
}

.product_detail__kits_item__checkbox input:checked + .product_detail__kits_item__checkbox__icon {
  background-color: #0CAC6E;
  border-color: #0CAC6E;
}

.product_detail__kits_item__checkbox input:checked + .product_detail__kits_item__checkbox__icon svg {
  display: inline-block;
}

.product_detail__kits_item__image__area {
  width: 110px;
  min-width: 110px;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.product_detail__kits_item__image__area img {
  max-width: 100%;
}

.product_detail__kits_item__title {
  font-size: var(--fs-regular);
  margin-bottom: 15px;
  display: block;
  color: #000;
}

.product_detail__kits_item__title:hover {
  text-decoration: underline;
}

.product_detail__kits_item__tag {
  background-color: #ECECEC;
  border-radius: 6px;
  padding: 5px;
  color: #939393;
  font-size: var(--fs-regular);
  position: relative;
}

.product_detail__kits_item__tag .tooltiptext {
  visibility: hidden;
  background-color: #3C3C3C;
  color: #fff;
  font-size: var(--fs-regular);
  white-space: nowrap;
  padding: 5px;
  border-radius: 3px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  transform: translate(-50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.product_detail__kits_item__tag:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.product_detail__kits_item__variations_list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.product_detail__kits_item__variation {
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #DADADA;
  margin: 0 10px 10px 0;
  padding: 7px;
  box-sizing: border-box;
  font-size: var(--fs-small);
  cursor: pointer;
}

.product_detail__kits_item__variation.variation_image {
  padding: 3px;
}

.product_detail__kits_item__variation__image {
  width: 37px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: -1;
  border: 1px solid rgba(0, 0, 0, .1);
}

.product_detail__kits_item__variation__image img {
  max-width: 100%;
  height: 100%;
}

.product_detail__kits_item__variation.unavailable {
  background: linear-gradient(
    to top right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) calc(50% - 1px),
    rgba(112, 112, 112, 1) 50%,
    rgba(0, 0, 0, 0) calc(50% + 1px),
    rgba(0, 0, 0, 0) 100%
  );
  background-color: rgba(244, 244, 244, 0.5);
  pointer-events: none;
}

.product_detail__kits_item__variation.unavailable .product_detail__kits_item__variation__size {
  opacity: .5;
}

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

.product_detail__kits_item__variation_dropdown {
  position: relative;
  max-width: 260px;
}

.product_detail__kits_item__variation_dropdown + .product_detail__kits_item__variation_dropdown {
  margin-top: 15px;
}

.product_detail__kits_item__variation_dropdown__variation_selected {
  width: 100%;
  display: flex;
  border: 1px solid #bdbdbd;
  border-radius: 3px;
  user-select: none;
}

.product_detail__kits_item__variation_dropdown__variation_selected:hover {
  cursor: pointer;
}

.product_detail__kits_item__variation_dropdown__variation_selected__text {
  width: 100%;
  font-size: var(--fs-regular);
  padding: 10px 15px;
}

.product_detail__kits_item__variation_dropdown__icon {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product_detail__kits_item__variation_dropdown__icon svg {
  stroke: black;
  stroke-width: 0.5px;
  transform: rotate(90deg);
  pointer-events: none;
  transition: 0.12s ease-in-out;
}

.product_detail__kits_item__variation_dropdown__icon.rotate svg {
  transform: rotate(270deg);
}

.product_detail__kits_item__variation_dropdown__variation_container {
  background-color: rgb(245, 245, 245);
  display: flex;
  flex-direction: column;
  border-radius: 3px;
  border: 1px solid #bdbdbd;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.product_detail__kits_item__variation_dropdown__variation {
  background-color: rgb(245, 245, 245);
  width: 100%;
  font-size: var(--fs-regular);
  padding: 10px 15px;
  transition: 0.2s;
  border-radius: 3px;
}

.product_detail__kits_item__variation_dropdown__variation.unavailable {
  text-decoration: line-through;
  color: #707070;
  pointer-events: none;
}

.product_detail__kits_item__variation_dropdown__variation:hover {
  background-color: rgb(212, 212, 212);
  cursor: pointer;
}

.personalize_product_detail{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  width: 100%;
  column-gap: 20px;
  border: 1px solid #DBDFE1;
  cursor: pointer;
  user-select: none;
  cursor: default;
}
.personalize_product_detail div{
  display: flex;
}

.personalize-product_detail-text{
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
  height: 46px;
}

.text-personalize-product_detail{
  font-size: 14px;
}

.price-personalize {
  font-size: 14px;
  margin-left: 5px;
}

.content_label_personalize{
  margin-top: 30px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  width: 100%;
}

.clear-select{
  display: block;
  width: 19px;
  height: 19px; 
  fill: black;
}

.clear-select svg {
  width: 22px;
  height: 20px;
  fill: black;
}

.clear-select svg g path{
  fill: black;
}

.personalize-container .container {
  display: flex;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  column-gap: 10px;
  align-items: center;
  font-size: 14px;
}

.personalize-container .container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  left: 0;
  height: 14px;
  width: 14px;
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid #BCBCBC;
}

.container:hover input ~ .checkmark {
  background-color: #ccc;
}

.container input:checked ~ .checkmark {
  background-color: #eee;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.container input:checked ~ .checkmark:after {
  display: block;
}

.container .checkmark:after {
  top: 1.25px;
  left: 1.5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #000000;
}

.button-personalize-product_detail{
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgb(223, 223, 223);
  border-radius: 6px;
  padding: 5px 10px;
  cursor: pointer;
  height: 40px;
  width: 40px;
}

.container-button-personalize-product_detail{
  display: flex;
  column-gap: 10px;
  row-gap: 10px;
  flex-wrap: wrap;
}

.button-personalize-product_detail-img,
.img_radio_button-personalize-product_detail-img{
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgb(223, 223, 223);
  border-radius: 6px;
  cursor: pointer;
  background-color: rgb(210, 107, 107);
  height: 90px;
  width: 90px;
}

.button-personalize-product_detail-label{
  padding: 5px 10px;
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgb(223, 223, 223);
  border-radius: 6px;
  padding: 5px 10px;
  cursor: pointer;
  height: fit-content;
}

.text_help-personalize-product_detail{
  width:100%;
  color: #989898;
  font-size: 12px;
}

.text_help-personalize-product_detail.above{
  margin-bottom: 10px;
}

.text_help-personalize-product_detail.below{
  margin-top: 10px;
}

.color_radio_button-personalize-product_detail-img{
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgb(223, 223, 223);
  border-radius: 6px;
  width: 30px;
  height: 30px;
}

.chevron-up{
  transform: rotate(270deg);
  width: fit-content;
  display: none;
  flex-basis: max-content;
  width: 10px;
}

.chevron-down{
  transform: rotate(90deg);
  width: fit-content;
  flex-basis: max-content;
  width: 10px;
  margin-right: 7px;
}

.chevrons{
  display: flex;
  column-gap: 10px;
}

.category-select label{
  font-size: 0.75rem;
  letter-spacing: 0.0225rem;
}

.container_personalize-product_detail .select-button {
  font-size: 0.75rem;
  display: flex;
  padding: 0.75rem;
  align-items: center;
  justify-content: space-between;
  border-radius: .375rem;
  border: 1px solid #252529;
}

.select-value{
  font-size: 0.85rem;
}

.options-view-button_check:focus + .select-button,
.options-view-button_check:checked + .select-button{
  outline: 1px solid #25D366;
}

.category-select:has(.options-view-button_check:checked) label,
.options-view-button_check:checked + .select-button .chevrons {
  color: #25D366;
}

.category-select{
  position: relative;
}

.options-view-button_check{
  all: unset;
  inset: 0;
  cursor: pointer;
  z-index: 3;
}

.options{
  margin-top: .25rem;
  border-radius: .375rem;
  border: 1px solid #DFDFDF;
  display: none;
}

.option{
  display: flex;
  align-items: center;
  gap: .5rem;
  padding:.75rem;
  position: relative;
}

.option .label{
  color: #242424;
}

.img_radio_button_select-personalize-product_detail-img{
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgb(223, 223, 223);
  border-radius: 6px;
  cursor: pointer;
  height: 30px;
  width: 30px;
}

.option:has(input:checked),
.option:hover{
  background-color: #f7f7f7;
}

.option:has(input:focus){
  outline: 1px solid #0CAC6E;
}

.option input[type="radio"]{
  all:unset;
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.select:has(.option input:checked) .category-select label {
  color: #25D366;
}

.select:has(.option input:checked) .category-select {
  color: #242424;
}

.personalize_product_detail.personalize-open + .container_personalize-product_detail{
  height: auto;
  transform: scaleY(1);
  transition: all 0.26s ease;
  overflow: visible;
}

.container_personalize-product_detail{
  padding-bottom: 15px;
  transform: scaleY(0);    
  transform-origin: top;
  transition: all 0.26s ease;
  height: 0;
  overflow: hidden;
}

.personalize-container .message-error{
  display: none;
  color: #FF496A;
  font-size: 10px;
}

.personalize-check .container{
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: #424242;
  font-weight: 400;
  flex-wrap: nowrap;
}

.personalize-check .container input{
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}

.personalize-check-button{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.checkmark-check{
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 1px;
  height: 12px;
  width: 12px;
  background-color: white;
  border: 1px solid gray;
  border-radius: 2px;
}
.personalize-check .container input:checked ~ .checkmark-check{
  background-color: #3C3C3C;
  border: none;
}

.checkmark-check::after{
  display: none;
  content: '';
  position: absolute;
}

.personalize-check .container .checkmark-check::after{
  content: '';
  left: 3.5px;
  top: 1px;
  width: 3px;
  height: 6px;
  transform: rotate(45deg);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.personalize-check .container input:checked ~ .checkmark-check::after{
  display: block;
}

.personalize-check .container input:checked{
  outline: #00c40e;
}
.button-personalize-product_detail-label:has input:checked {
  outline: #00c40e;
}

.personalize-check-button .container{
  position: relative;
  width: fit-content;
  font-size: 14px;
  color: #424242;
  font-weight: 400;
  flex-wrap: nowrap;
  padding-left: 0px;
  align-items: unset;
  column-gap: 10px;
  margin-bottom: 0px;
}

.container.button-personalize-product_detail-label{
  padding-left:10px;
}
.button-personalize-product_detail-label:has(.per-inp-button:checked){
  color: #25D366;
  border: 1px solid #25D366;
}

.container:has(.per-inp-button:checked) .img_radio_button-personalize-product_detail-img,
.container:has(.per-inp-button:checked) .color_radio_button-personalize-product_detail-img{
  outline: #00c40e;
  border: 2px solid #25D366;
}

.clear-select svg{
  pointer-events: none; 
}

.arrow-personalize-down{
  transform: rotate(90deg);
  transition: all 0.5s ease-in-out;
}

.personalize-open,
.personalize_product_detail {
  background-color: #F0F0F0;
  border: 1px solid #DBDFE1;
}
.personalize-open .arrow-personalize-down{
  transform: rotate(270deg);
  transition: all 0.5s ease-in-out;
}

.personalize-container .tooltip {
  position: relative;
  display: flex;
  margin-left: 5px;
}

.personalize-container .tooltip .tooltiptext {
  visibility: hidden;
  width: 213px;
  background-color: #fff;
  border: 1px solid #DFDFDF;
  color: #3C3C3C;
  max-width: 213px;
  border-radius: 6px;
  padding: 10px;
  margin-left: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.product_detail__minum {
  display: none;
}
.product_detail__plus{
  display: none;
}

.product_detail__information__title,
.product_detail__measurement_guide__title,
.product_detail__datasheet_container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.personalize-container .tooltip:hover .tooltiptext {
  visibility: visible;
}

@media screen and (max-width: 620px){


  .product_detail__plus{
    display: none;
  }

  .product_detail_mobile_closed{
    display: block;
  }
  .product_detail__info.mobile_closed .product_detail__title_text {
    margin-right: 10px;
  }
  .mobile_drag{
    overflow: hidden;
    transition: 1s;
  }
  .drag-down{
    height: auto;
    transition: 0.3s;
  }
  .drag-up{
    height: 0px;
    transition: 0.3s;
  }
  
  .drag_product_detail-block{
    display: block;
  }

  .product_detail__datasheet .product_detail__datasheet_container .product_detail__datasheet__title,
  .product_detail__information__title,
  .product_detail__measurement_guide__title{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .product_detail__information,
  .product_detail__information__title,
  .product_detail__measurement_guide__title,
  .product_detail__measurement_guide__area  {
    margin-bottom: 0px; 
  }

  .product_detail__information:not(.drag-up),
  .product_detail__measurement_guide.drag-down,
  .product_detail__information.drag-down,
  .product_detail__datasheet_list.drag-down  {
    margin-top: 30px;
  }
  .product_detail__infos{
    padding: 15px 0px !important;
  }
  .product_detail__measurement_guide__area.centralized,
  .product_detail__measurement_guide__area.full,
  .product_detail__datasheet.centralized,
  .product_detail__datasheet.full {
    padding: 15px 15px ;
  }
  .product_detail__title_text,
  .product_detail__showcase__title {
    padding: 15px 0px;
  }
  
  .footer_new_mobile-button-fixed{
    padding-bottom: 74px;
  }
  .product_detail__image{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
  }
  .background_product_detail{
    z-index: auto;
  }

}
.modal__alert__message .perso_variation{
  height:250px;
  width: auto;
}

.withIMG{
  padding: 25px;
  max-width: auto;
}
.withIMG .modal__alert__title{
  margin-bottom:0;
}
.withIMG .modal__alert__message{
  margin-bottom:0;
}

.product_detail__kits_item__variation_dropdown{
  margin: 15px 0;
}

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

.product_detail__kits_item__variations_area{
  width: 150px;
}

.contdown_content{
  background-color: #000000;
  color: #fff;
  padding: 11px 20px; 
  width: max-content;
  border-radius: 6px;
  margin-bottom: 21px;
}

.contdown_content svg {
  margin-right: 5px; 
  margin-left: 10px;
  fill: #fff;
}

.countdown_content.countdown_showcase {
  background-color: #000000;
  color: #fff;
  padding: 11px 20px; 
  width: max-content;
  border-radius: 6px;
  margin-bottom: 21px;
  display: flex;
  margin-top: 5px;
}

.countdown_content.countdown_showcase svg {
  margin-right: 5px; 
  margin-left: 0px;
  fill: #fff;
}

.no_price_none{
  display: none !important;
}
