.product-box {
    padding: 40px 0px;
}

.product-row {
    padding: 35px 0px;
}

.product-header-container {
    flex-direction: column;
}

.product-header {
    text-align: left;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.7em;

    margin-bottom: 15px;
}

.product-header-text {
    text-align: justify;
    padding: 25px 0px;
}

.product-dropdown-row {
    flex-direction: row;
    padding-bottom: 35px;
}

.product-description-row {
    flex-direction: column;
    padding: 5px;
}

.product-column {
    transition: all 0.3s ease-in-out;
    flex: 0 0;
}

.product-dropdown {
    cursor: pointer;
    text-align: left;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.2em;
    color: black;
    padding: 10px 25px;
    border: 2px solid #faca00;
    border-radius: 5px;
    margin: 5px 15px 0px 15px;
}

.product-dropdown-content {
    margin: 0px 15px;
    max-height: 0px;

    transition: 0.3s ease;
    overflow: hidden;

    text-align: justify;
}

.product-dropdown:hover {
    background-color: #faca00;
    color: white;
}

.dropdown-icon {
    float: right;
    font-size: 1.2em;
    color: black;
    transition: transform 0.3s ease-in-out;
}

.product-dropdown:hover .dropdown-icon {
    color: white;
}


.product-img-container {
    padding: 25px;
}

.product-img {
    max-width: 100%;
    margin: auto;
}

.product-img-bottom {
    max-width: 30%;
    margin: auto;
    padding-top: 25px;
}

.product-images-box {
    flex-wrap: wrap;
    justify-content: center;
}

.product-video {
    justify-content: center;

}

.product-video>iframe {
    margin-left: auto;
    margin-right: auto;
}

ul {
    list-style-type: none;
}

ul>li>a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

ul>li>a:hover {
    text-decoration: none;
    color: #faca00;
}

li::before {
    content: "\25CB"; 
    color: #faca00;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    height: 100%;
    font-size: 2em;
    margin-left: -1em;
}

.bi-filetype-pdf {
    font-size: 1.5em;
    color: #f44336;
    margin-left: 5px;
}

.bi-check {
    font-size: 2em;
    color: #4CAF50;
    margin-right: 8px;
}


@media (max-width: 768px) {
    .product-dropdown-row {
        flex-direction: column !important;
    }
}