.type-product .overall-wrapper {
  width: 100%;
  overflow-x: hidden;
}
.basic-description,
.extended-description {
  flex: 100%;
  padding-right: 0;
  width: 100%;
}
.basic-description > h3 {
  display: none;
}
.basic-description section {
  padding: 50px 20px;
}
section *:last-child {
  margin-bottom: 0;
}
section img {border-radius: 10px;}
section h2 {
    font-size: 26px;
    font-weight: 600;
    color: #222;
    display: flex;
    flex-direction: column-reverse;
        text-align: left;
}
section h2 span {
    display: block;
    background: var(--color-primary);
    font-size: 0;
    display: block;
    width: 150px;
    height: 3px;
    margin-top: 20px;
}
section p {
  font-size: 18px;
  max-width: 90ch;
  margin-left: 0;
  margin-right: auto;
}
section li {
    font-size: 18px;
    max-width: 90ch;
    padding: 5px;
}
.halves_image_grid {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  --calculated-row-height: max(150px, min(100vw / 5, 290px));
}
.halves_image_grid div {
  overflow: hidden;
}
.halves_image_grid div img {
  transition: all 0.5s ease;
}
.halves_image_grid div:hover img {
  transition: all 0.5s ease;
  transform: scale(1.05);
}
.halves_image_grid div:nth-child(3):hover img {
  transform: scale(1.05) translate(-50%, -50%);
}
.halves_image_grid div:nth-child(1) {
  grid-area: 1 / 1 / 2 / 3;
}
.halves_image_grid div:nth-child(2) {
  grid-area: 2 / 1 / 3 / 3;
}
.halves_image_grid div:nth-child(3) {
  grid-area: 1 / 3 / 3 / 5;
  overflow: hidden;
  position: relative;
  border-radius:10px;
}

.halves_image_grid.four div:nth-child(1) {
  grid-area: 1 / 1 / 2 / 3;
}
.halves_image_grid.four div:nth-child(2) {
  grid-area: 1 / 3 / 2 / 5;
}
.halves_image_grid.four div:nth-child(3) {
  grid-area: 2 / 1 / 3 / 3;
}
.halves_image_grid.four div:nth-child(4) {
  grid-area: 2 / 3 / 3 / 5;
}
@media (min-width:768px) {
.halves_image_grid:not(.four) div:nth-child(3) img {
  height: auto;
  position: absolute;
  width: 150%;
  max-width: 150%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
}
.thirds_detail_grid > div {
  text-align: center;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.thirds_detail_grid > * {
  width: 100%;
}
.thirds_detail_grid > div > div:hover {
  transition: all 0.5s ease;
  background: #f6f6f6;
}
.thirds_detail_grid img {
  margin-bottom: 20px;
  mix-blend-mode: multiply;
}
.thirds_detail_grid h3 {
  margin-top: 0;
  font-size: 20px;
  font-weight: 600;
  color: #222;
  position: relative;
}
.thirds_detail_grid p {
}
.features_table div:not(.slick-list):not(.slick-track) {
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 0px 10px 0px #00000021;
    margin:10px;
    overflow: hidden;
}
.features_table h3,
.info_dots li:nth-child(even) h4,
.halves_detail h4 {
  margin-top: 0;
  font-size: 20px;
  font-weight: 600;
  color: #222;
  position: relative;
}
.features_table h3:after,
.info_dots li:nth-child(even) h4:after,
.halves_detail h4:after {
  content: "";
  background: var(--color-primary);
  width: 100px;
  height: 3px;
  display: block;
  margin: 20px auto 0 0;
}
.features_table p {
}
.features_table {
}
.table_wrapper th,
.table_wrapper td {
  padding: 10px;
}
.table_wrapper table {
  margin: 0 auto 0 0;
}
.table_wrapper {
}

.features_table.with-images h3 {
  margin-top: 15px;
}
.features_table.with-images .slick-slide img {
    display: block;
    width: calc(100% + 20px);
    max-width: calc(100% + 20px);
    margin: -10px -10px 20px;
    border-radius: 5px;
}

@media (max-width: 767px) {
  .halves_image_grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .halves_image_grid.as_bg div {
    aspect-ratio: 3 / 2;
  }
}
@media (min-width:992px) {
.thirds_detail_grid > div > div {
    flex: 1;
    transition: all 0.5s ease;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 0px 10px 0px #00000021;
    margin: 10px;
}
}
@media (max-width: 991px) {
  .thirds_detail_grid > div > div {
    flex: 100%;
  }
  .table_wrapper {
    text-align: center;
    overflow-x: scroll;
  }
  .slick-initialized .slick-slide {
    padding: 20px;
  }
  .basic-description section.thirds_detail_grid {
    padding: 50px 0px;
    margin: 0 -25px;
  }
  .thirds_detail_grid > div > div > div > div {
    flex: 1;
    transition: all 0.5s ease;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 0px 10px 0px #00000021;
    margin: 10px;
}
}
.slick-dots {
  width: 100%;
  padding: 20px 10px;
  margin: 0;
  list-style: none;
  display: flex !important;
  justify-content: center;
  gap: 10px;
}
.slick-dots button {
  background: #e3e3e3;
  border: none;
  width: 25px;
  height: 3px;
  font-size: 0;
  padding: 0;
}
.with_bg .slick-dots button {
    background: #fff;
}
.slick-dots .slick-active button {
  background: var(--color-primary);
}

@media (max-width: 767px) {
  .features_table.with-images div {
    padding: 0px;
    margin-bottom: 0;
  }
  .basic-description section.full_width_detail.features {
    padding: 50px 0px;
    margin: 0 -25px;
  }
  .features_table.with-images div img {
    margin: -20px -20px 20px;
    max-width: calc(100% + 40px);
  }
  .features_table div.slick-slide {
    padding: 20px;
    background: #f6f6f6;
    margin-bottom: 0;
    margin-right: 10px;
  }
}

@media (min-width: 768px) {
  .features_table .slick-slide {
    padding: 0px;
    background: #f6f6f6;
    margin-right: 5px;
  }
}

.full_width_detail.with_info_dots {
}
.info_dots {
  max-width: 767px;
  margin: auto;
  width: 100%;
  position: relative;
}
.info_dots ul {
  position: absolute;
  padding: 0;
  margin: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  list-style-type: none;
}
.info_dots li:nth-child(odd) {
    position: absolute;
    background: var(--color-primary);
    width: 42px;
    height: 42px;
    color: #fff;
    line-height: 42px;
    border-radius: 100%;
    box-shadow: 0 0 30px var(--color-primary);
    cursor: pointer;
    font-size: 32px;
    font-weight: 900;
    display: grid;
    place-content: center;
}
.info_dots li:nth-child(even) {
  padding: 20px;
  background: #f6f6f6;
  position: fixed;
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 20px;
  display: none;
  max-width: 479px;
  box-shadow: 0 0 20px #00000026;
  z-index: 9;
}
.info_dots li:nth-child(even) h4 {
}
.info_dots li:nth-child(even) p {
  font-size: 18px;
  margin-bottom: 0;
}
.info_dots li:nth-child(odd):hover + li {
  display: block;
}

.progress_container {
  margin: auto;
}

.table_detail.columns_table table,
.table_detail.columns_table tbody {
  border-color: #fff;
}
.table_detail.columns_table tbody {
}
.table_detail.columns_table tr {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
}
.table_detail.columns_table th {
  flex: 1;
  border: none;
  border-bottom: solid 2px var(--color-primary);
  padding-bottom: 25px;
}
.table_detail.columns_table th span {
  color: #fff;
  background: #222;
  padding: 7px 20px;
  border-radius: 15px;
}
.table_detail.columns_table td {
  flex: 1;
  border: none;
  border-bottom: solid 1px #dbdbdb;
  text-align:center;
}
.table_detail.columns_table td em {
  display: block;
  padding: 10px 20px 10px;
  font-style: normal;
}
.table_detail.columns_table td span {
  font-weight: 600;
  font-size: 16px;
}

.color_variants {
  display: flex;
  gap: 5px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 75px;
  margin: auto;
}
.color_variants > span {
  width: 15px;
  height: 15px;
  font-size: 0px !important;
  border-radius: 100%;
}
.color_00a7cf {
  background: #00a7cf;
}
.color_1d252d {
  background: #1d252d;
}
.color_8f1a95 {
  background: #8f1a95;
}
.color_572c5f {
  background: #572c5f;
}
.color_000000 {
  background: #000000;
}
.color_f2218a {
  background: #f2218a;
}
.color_7c868e {
  background: #7c868e;
}

.set_content_detail ul {
    max-width: 767px;
    margin: 30px auto 0 0;
}
.set_content_detail ul li::marker {
  color:var(--color-primary);
  background:var(--color-primary);
}
.set_content_detail ul li:last-child {
  padding-right: 0px;
  border-right: none;
}

.wide_video_detail #videoBG {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
}
.wide_video_detail .video-container {
  position: relative;
  padding-bottom: 56.25%;
}

.wide_video_detail .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wide_video_detail .video-container-wrapper {
  display: block;
  margin: 0 auto;
  max-width: 1200px;
}
.wide_wideo_wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    width: 100%;
    overflow: hidden;
    min-height: unset;
}
.basic-description section.wide_video_detail {
    padding: 0;
}
.wide_wideo_wrapper__VideoHolder {width:100%;}
.halves_detail > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.halves_detail h2 {
  width: 100%;
}

@media (min-width: 991px) {
  .halves_detail > div.reversed {
    flex-direction: row-reverse;
  }
  .halves_detail > div > div {
    flex: 1;
    padding: 30px 10px;
    align-self: center;
    text-align: left;
  }
  .halves_detail h4:after {
    margin: 20px auto 0 0;
  }
}
@media (max-width: 991px) {
  .halves_detail > div > div {
    flex: 100%;
    padding: 30px 20px;
  }
}

@media (max-width: 767px) {
  .basic-description section {
    padding: 30px 0px;
  }
  .info_dots li:nth-child(even) {
    width: calc(100% - 40px);
    left: 20px;
    transform: none;
  }
}

.halves_image_grid.as_bg:not(.four) > div {
  min-height: 350px;border-radius: 10px;
}
.halves_image_grid.as_bg.four > div {
    min-height: 350px;
    position: relative;
    border-radius: 10px;
}
.halves_image_grid.as_bg.four > div img {
      height: auto;
    position: absolute;
    width: 150%;
    max-width: 150%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.halves_image_grid.as_bg > div > div {
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.5s ease;
}
.halves_image_grid.as_bg > div:hover div {
  transform: scale(1.15);
  transition: all 0.5s ease;
}

.description-inner {
  display: flex;
  flex-direction: column-reverse;
}
.extended-description > h3 {display:none;}
.desktop .extended-description > h3 {
    font-size: 26px;
    font-weight: 600;
    color: #222;
    display: flex;
    flex-direction: column;
    text-align: left;
    text-transform: uppercase;
    font-family: var(--template-headings-font), sans-serif !important;
    padding: 20px 20px 0;
}
.extended-description > h3:after {content: '';
background: var(--color-primary);
    font-size: 0;
    display: block;
    width: 150px;
    height: 2px;
    margin-top: 20px;
}
.extended-description .detail-parameters {
  width: 100%;
}

/*
.extended-description tbody {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
@media (max-width:479px) {
.extended-description tr {
    flex: 1 0 100%;
}
}
@media (min-width:480px) and (max-width:991px) {
.extended-description tr {
    flex: 1 0 calc((100% - 10px) / 2);
}
}
@media (min-width:992px) {
.extended-description tr {
    flex: 1 0 calc((100% - 10px) / 3);
}
}

.extended-description tr {
    display: flex;
    background: #f6f6f6;
    align-items: center;
    gap: 15px;
}
.detail-parameters .row-header-label .show-tooltip.question-tooltip {
    margin-right: 5px;
    margin-left: 10px;
}
.shp-tabs-wrapper.p-detail-tabs-wrapper .row-header-label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    font-weight: 600;
    color: #222;
}
.extended-description .detail-parameters th {
  color: #b2b2b2;
  text-align: center;
  padding: 0 0 10px;
  white-space: nowrap;
  text-align: center;
}
.extended-description .detail-parameters td {
    font-weight: 600;
    letter-spacing: 2px;
    text-align: left;
    font-size: 12px;
  padding-bottom:0;
}
.extended-description .detail-parameters th > span {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 10px;
  align-items: flex-end;
}
#description table.detail-parameters tr:nth-child(even) {
    background: #fff !important;
}
.shp-tabs-wrapper.p-detail-tabs-wrapper span.row-header-label-colon {
    display: none;
}
.extended-description table.detail-parameters tr {
    border: solid 1px #dadada;    padding: 1px 3px;
}
*/
.pros_cons {
}
.pros_cons > div {
    text-align: center;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto 0 0;
}
.pros_cons > div > div {
    flex: 1;
    padding: 20px;
    background: #f6f6f6;
    align-self: flex-start;
}
@media (max-width: 767px) {
  .pros_cons > div > div {
    flex: 100%;
  }
}

.pros_cons .pro_list,
.pros_cons .con_list {
  list-style-type: none;
  margin: 0;
}
.pros_cons .pro_list li,
.pros_cons .con_list li {
}
.pros_cons .pro_list li:before, .pros_cons .con_list li:before {
    content: "+";
    font-size: 28px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -35px;
    color: #fff;
    background: #40cc8a;
    width: 30px;
    height: 30px;
    display: block;
    text-align: center;
    border-radius: 100%;
}
.pros_cons .pro_list li,
.pros_cons .con_list li {
  position: relative;
  text-align: left;
  font-size: 18px;
  margin-bottom: 12px;
}
.pros_cons .pro_list li:last-child,
.pros_cons .con_list li:last-child {
  margin-bottom: 0;
}
.pros_cons .con_list li:before {
    content: "-";
    color: #fff;
    background: var(--color-primary);
}
.with_bg {
    position: relative;
    isolation: isolate;
}
.with_bg:after {
    content: '';
    background: #f1f3f5;
    position: absolute;
    width: 300%;
    height: 100%;
    left: -100%;
    top: 0;
    z-index: -1;
}
.progress_container {
  width: 100%;
  max-width: 500px;
      margin: auto 0;
}
.progress-bar {
  height: 18px;
  background-color: #f5f5f5;
  transition: 0.4s linear;
  transition-property: width, background-color;
}
.progress {
  padding: 0px;
  border-radius: 0;
  background: #f5f5f5;
}
.progress-bar {
  height: 10px;
  background-image: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0.05)
  );
  transition: 0.4s linear;
  transition-property: width, background-color;
}
.progress-moved .progress-bar {
  background-color: #f77136;
}
.progress_container p {
  margin: 10px 0 5px !important;
  font-weight: 700;
  padding: 0 !important;
}
.halves_image_grid.gallery > div > a {width:100%;display:block;}
.halves_image_grid.gallery > div > a img {width:100%;}
.halves_image_grid.gallery div:hover img,
.halves_image_grid.gallery div:nth-child(3):hover img{
    transform: none !important;
}
@media (max-width:767px) {
.shp-tabs-wrapper.p-detail-tabs-wrapper {
    padding: 0;
}
    .content-wrapper.container .row>div {
        padding-left: 0px;
        padding-right: 0px;
    }
}

.halves_image_grid.gallery > div > a {width:100%;display:block;}
.halves_image_grid.gallery > div > a img {width:100%;}
.halves_image_grid.gallery div:hover img,
.halves_image_grid.gallery div:nth-child(3):hover img{
    transform: none !important;
}

.grid9x9 {
      display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px 20px;
}
.grid9x9 h4 {
      font-weight: 600;
    margin-bottom: 10px;
}
.grid9x9 p {}

@media (min-width:768px) and (max-width:991px) {
.grid9x9 {
    grid-template-columns: 1fr 1fr;
}
.grid9x9 > div:last-child {grid-column: span 2;}
}
@media (max-width:767px) {
.grid9x9 {
    grid-template-columns: 1fr;
}
}

.parameters_section {    display: flex;
    flex-direction: column;
    gap: 20px;}
.parameters_section > div {    padding: 20px;
    background: #f6f6f6;
  }
.param_bars {display: grid;
    gap:40px;
    grid-template-columns: 1fr 1fr;
    padding-bottom: 40px !important;}
.progress-bar-wrap h4 {    margin-top: 0;
    font-weight: 600;}
.progress-bar {
        width: 100%;
        background-color: #e0e0e0;
        padding: 3px;
        border-radius: 3px;
        box-shadow: inset 0 1px 3px rgba(0, 0, 0, .2);
      }     
.progress-bar-fill {
    display: block;
    height: 10px;
    margin-top: -3px;
    background-color: var(--color-primary);
    border-radius: 3px;
    transition: width 500msease-in-out;
}
.progress-axis {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 5px;
    gap: 10px;
}
.param_measurements {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.param_measurements div {
    flex: calc(25% - (60px / 4));
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 800;
    font-size: 16px;
}
.param_measurements img {
    max-width: 36px;
}


@media (min-width:767px) and (max-width:991px) {
.param_measurements div {flex: calc(50% - 10px);}
}
@media (max-width:767px) {
.param_bars {
    grid-template-columns: 1fr 1fr;
}
.param_measurements div {
  flex: calc(50% - 10px);
}
}

@media (max-width:991px) {
.wide_wideo_wrapper video {
    width: 100% !important;
    min-height: 250px !important;
}
}
@media (min-width:992px) and (max-width:1439) {
.wide_wideo_wrapper video {
    width: 100% !important;
    min-height: 350px !important;
}
}
@media (min-width:1440px) {
.wide_wideo_wrapper video {
    width: 100% !important;
    min-height: 450px !important;
}
}
.param_measurements > div > span:before {
    content: 'Výška';
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-primary);
    font-weight: 600;
}
.param_measurements > div:nth-child(3) > span:before {content:'Šířka';}
.param_measurements > div:nth-child(4) > span:before {content:'Tloušťka';}
.param_measurements > div:nth-child(5) > span:before {content:Váha';}

.basic-description section.full_width_detail.features,
.basic-description section.thirds_detail_grid {
        margin: 0;
    }
}

.set_content .features_table div:not(.slick-list):not(.slick-track) {
    padding: 20px;
    background: #fff;
    border-radius: 0;
    box-shadow: none;
}
.set_content .features_table p {
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 18px;
}
.features_table .slick-slide {
        cursor: pointer;
}
.set_content_with_images {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #222;
    position: relative;
}
.set_content_with_images > div {
    flex: 1;
    min-width: 20%;
    margin-bottom:20px;
}
.basic-description .set_content_with_images p {
    font-size: 18px;
    text-align: center !important;
}
@media (max-width:767px) {
.set_content_with_images > div {
    flex: 50% 0;
    min-width: unset;
}
}
@media (min-width:768px) and (max-width:991px) {
.set_content_with_images > div {
    flex: 33% 0;
    min-width: unset;
}
}