#contentContainer{
    margin-left: 7%;
    margin-right: 7%;
}
#titleContainer{
    margin-top: 15px;
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
}
#title{
    color:#F20519;
    font-size: 30px;
    font-weight: 500;
    padding-bottom: 2px;
}
.contentCard{
    width: 200px;
    height: 250px;
    float: left;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: white;
}
.contentCardCategory{
  height: 210px;
}
.outerContentCardContainer{
  width: 250px;
  display: flex;
  justify-content: center;
}

.contentCardTitle{
    color: #2E2E2E;
    font-weight: 500;
}
.contentCardTitleArticle{
    font-size: 12px;
}
.contentCardImageContainer{
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    height: 140px;
}
.contentCardContentContainer{
    background-color: #e7e7e7;
    padding: 10px;
    width: 100%;
    height: 110px;
}
.contentCardContentContainerCategory{
  height: 70px;
}
.contentCardContainer{
  background-color: #e7e7e7;
  width: 100%;
  height: 110px;
}
.price,.priceStrikeThrough{
    color:#2E2E2E;
}
.priceNumber{
    font-size: 17px;
    color: #F20519;
}
.priceStrikeThrough{
    text-decoration: line-through;
}
#pathLine{
    width: max-content;
    max-width: 100%;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 20px;
    padding-right: 30px;
}
#path a{
    color: black;
    text-decoration: none;
    font-size: 12px;
}
#path a:hover{
    color: #F20519;
}
#contentContainer{
    width: 95%;
}
.accordion {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
    overflow: hidden;
  }

  .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F2F2F2;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-bottom: 1px solid #ccc;
  }
  .accordion-header:hover {
    background-color: #e7e7e7;
  }

  .accordion-content {
    display: none;
    padding: 15px 20px;
    background-color: #F2F2F2;
    font-size: 1rem;
    color: #333;
  }

  .accordion-content.show {
    display: block;
  }

  .nested-accordion {
    border-radius: 5px;
  }

  .nested-accordion .accordion-header {
    background-color: #F2F2F2;
    font-size: 14px;
  }
  .asideLink{
    text-decoration: none;
    color: black;
    font-size: 12px;
  }
  .asideLinkContainer{
    background-color: #F2F2F2;
    width: 100%;
    padding-top: 0.5px;
    padding-bottom: 0.5px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .asideLinkContainer:hover{
    background-color:#e7e7e7;
    border: 1px solid #fff;
  }
  .asideLinkContainer:hover .asideLink{
    text-decoration: none;
    color: black;
  }


  .arrow {
    border: solid black;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(45deg); /* Pfeil nach rechts */
    transition: transform 0.3s ease;
  }

  .arrow.down {
    transform: rotate(135deg); /* Pfeil nach unten */
  }
@media (min-width: 992px) and (max-width: 1199.98px) {
    .contentCard{
        flex-wrap: nowrap;
    }
    
}
@media (min-width: 1200px){
    #contentContainer{
        width: 95%;
    }
}
@media (max-width: 767.98px){
    aside{
        display: none;
    }
}
@media (max-width: 850px){
  .outerContentCardContainer{
    width: 50%;
  }
}
@media (max-width: 600px){
  .outerContentCardContainer{
    width: 100%;
  }
}