.st-detail-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

}

.st-detail-block {
    width: 100%;
    max-width: 1202px;
    position: relative;
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 0 1em 0;
    padding: 0;
}

.st-detail-info {
    width: 100%;
}

.st-detail-description {
    display: flex;
    align-items: baseline;
    justify-content: left;
    flex-wrap: wrap;
    width: 100%;
}

.st-detail-content {
    width: 100%;
    margin-bottom: 1em;
}

.st-detail-block__header {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: #233440;
    color: #fff;
    width: 100%;
    padding: 0.75em;
}

.st-detail-block__header span {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.st-detail-block__body {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    padding: 1px;
    flex-wrap: wrap;
    margin: 0;
    background: #f2f2f2;
}


.st-detail-block__content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.st-detail-block__content img {
    width: 100%;
    height: auto;
}

.st-detail-block__body img {
    width: 100%;
    max-width: 1200px;
    height: auto;
}


.st-detail-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.st-detail-gallery__items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1em;
    padding: 1em;
    background: #fff;
}

.st-detail-gallery__item {
    width: 233px;
    cursor: pointer;
}

.st-detail-gallery__item img {
    width: 100%;
    height: auto;
}

.st-detail-container ul {
    margin: 0;
}

.st-detail-container li {
    list-style-type: none;
    position: relative;
    text-indent: -5px;
}

.st-detail-container li:before {
    font-family: "Font Awesome";
    content: "\2014";
    color:#646464;
    margin: 0 7px 0 -25px;
}

.st-detail-container a {

}

video {
    padding:1em;
}

@media (max-width: 768px) {
    .st-detail-gallery__items {
        flex-wrap: wrap;
    }

    .st-detail-gallery__item {
        width: 100%;
    }
}