/* PLIK CSS DLA OPISÓW WERSJA 1 21.08.2023 */
#component_projector_longdescription section img,
#projector_longdescription section img {
    width: 80%;
    max-height: 600px;
    margin: 0 auto;
    display: block;
    object-fit: contain;
}

#projector_longdescription {
    padding-bottom: 50px;
}

#projector_longdescription h2 {
    padding: 15px 0px;
}

#projector_longdescription p {
    font-size: 14px;
    line-height: 1.5em;
}

#projector_longdescription {
    overflow: hidden;
    position: relative;
}

#projector_longdescription:before {
    display: none;
    content: "";
    width: 100%;
    height: 250px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 1) 70%)
}

.projector_longdescription_show_more {
    display: none;
    content: "Rozwiń opis";
    position: absolute;
    bottom: 20px;
    left: 50%;
    margin-left: -60px;
    padding: 10px 15px;
    border: solid 2px rgb(255, 124, 0);
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    min-width: 120px;
    text-align: center;
}

#projector_longdescription .projector_longdescription_show_more:before {
    content: "Rozwiń Opis"
}

#projector_longdescription.show .projector_longdescription_show_more:before {
    content: "Zwiń Opis"
}

#projector_longdescription.show {
    height: auto;
    padding-bottom: 60px;
}

#projector_longdescription.show:before {
    z-index: -1;
    opacity: 0;
}