/* Article category description */
.artikel_art_beschreibung_first_overlay, .category_paragraph_overlay {
  display: none;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: rgb(255,255,255);
  background: linear-gradient(180deg, rgba(255,255,255,0) 70%, rgba(255,255,255,1) 100%);
}

.artikel_art_beschreibung_first.collapsed, .category_paragraph.collapsed {
  height: 30vh;
  overflow: hidden;
  margin-bottom: 20px;
}

.artikel_art_beschreibung_first.expanded, .category_paragraph.expanded {
  height: fit-content;
  margin-bottom: 20px;
}

.artikel_art_beschreibung_first.collapsed .artikel_art_beschreibung_first_overlay,
.category_paragraph.collapsed .category_paragraph_overlay {
  display: block;
}

.artikel_art_beschreibung_first.expanded .artikel_art_beschreibung_first_overlay,
.category_paragraph.expanded .category_paragraph_overlay {
  display: none;
}

.artikel_art_beschreibung_first_expand_button,
.category_paragraph_expand_button {
  cursor: pointer;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 22px;
  padding: 4px;
}

.artikel_art_beschreibung_first_expand_button div:nth-child(1),
.category_paragraph_expand_button div:nth-child(1) {
  font-size: 17px;
}

.category_paragraph {
  position: relative;
}

/* Article second part */
.article_part_second_overlay {
    display: none;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,0) 70%, rgba(255,255,255,1) 100%);
}

.article_part_second {
  overflow: hidden;

}

.article_part_second .article_part_second_overlay {
  display: none;
  height: calc(100% - 43px);
}

.article_part_second.collapsed {
  height: 400px;    
  padding-bottom: 0;
}

.article_part_second.expanded {
  height: fit-content;
  padding-bottom: 60px;
}

.article_part_second.collapsed .article_part_second_overlay {
  display: block;
}

.article_part_second.expanded .article_part_second_overlay {
  display: none;
}

.article_part_second_expand_button_mobile {
  cursor: pointer;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 22px;
  padding: 4px;
}

.article_part_second_expand_button_desktop {
  position: absolute;
  bottom: 0px;
  background-color: white;
  margin-bottom: 0px;
  padding-bottom: 16px;
  display: flex;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 4px 4px 15px 4px;
}

.article_part_second_expand_button_desktop {
  position: absolute;
  bottom: 0;

}

.article_part_second_expand_button_desktop .arrow {
  margin-left: 25px;
  margin-top: -14px;
}

.article_part_second_expand_button_mobile, .article_part_second_expand_button_desktop div:nth-child(1) {
  font-size: 17px;
}

/* Colorful cart status */

li.step_current, li.step_current span::after {
  background-color: #FF9E1B !important;
  border-color: #be7410 !important;
}

.main_content {
  float: initial;  
}


@media (max-width: 768px) {

  .article_part_second.collapsed {
    height: 125px;
  }

  .article_part_second .article_part_second_overlay {
    height: 100%;
  }

  .article_part_second.expanded {
    padding-bottom: 8px;
  }
}

/* Category fix */
.category_paragraph.category_paragraph_bottom {
  padding-top: 10px;
}

.category_paragraph.category_paragraph_bottom p{
  font-size: 14px;
}