.content-page {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 1430px;
    padding: 0 15px;
    margin: 15px auto;
}

.content-page > .caption {
    width: 100%;
    padding: 15px 10px;
    margin-top: 15px;
    text-align: center;
    background-color: #333;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 5px 1px rgba(100, 100, 100, 0.1);
}
.content-page > .caption > h1 {
    margin-bottom: 0;
    font-size: 32px;
    text-align: center;
}
.content-page > .caption .breadcrumb {
    background-color: inherit;
    padding: 0;
    justify-content: center;
    margin-bottom: 0;
}
.content-page > .caption .breadcrumb a {
    color: #fecc00;
}
.content-page > .caption .breadcrumb .breadcrumb-item + .breadcrumb-item::before,
.content-page > .caption .breadcrumb .active {
    color: #ddd;
}

.content-page > .head-item {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}
.content-page > .head-item > .img-wrapper {
    height: 400px;
    overflow: hidden;
    flex-grow: 1;
    box-shadow: 0px 0px 5px 1px rgba(100, 100, 100, 0.1);
    padding: 15px;
    border-radius: 5px;
}
.content-page > .head-item > .img-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.content-page > .head-item > .info-panel {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 400px;
    box-shadow: 0px 0px 5px 1px rgba(100, 100, 100, 0.1);
    padding: 15px;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
}
.content-page > .head-item > .info-panel .description{
    text-align: center;
}
.content-page > .head-item > .info-panel .description ul{
    list-style: none;
}
.content-page > .head-item > .info-panel .cost{
    font-size: 18px;
    font-weight: bold;
    padding: 10px 5px;
    text-align: center;
    background-color: #fff;
    border-radius: 5px;
    width: 100%;
    color: #000;
}
.content-page > .head-item > .info-panel .order-btn {
    margin-top: auto;
    width: 100%;
}

#content-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 5px 1px rgba(100, 100, 100, 0.1);
    padding: 15px;
    border-radius: 5px;
}

#content-container .toggle-caption{
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
    color: #fff;
    font-size: 16px;
}
#content-container .toggle-caption .item-caption{
    flex-grow: 1;
    flex-basis: 0;
    padding: 8px 10px;
    text-align: center;
    background-color: #333;
    border-radius: 5px;
    transition: all .5s;
}
#content-container .toggle-caption .item-caption.active:not(:only-child),
#content-container .toggle-caption .item-caption:hover:not(:only-child){
    background-color: #fecc00;
    color: #333;
    font-weight: 500;
    cursor: pointer;
}

#content-container .toggle-body .item-content{
    display: none;
}
#content-container .toggle-body .item-content.active{
    display: inherit;
}

#content-container .toggle-body .item-content ul{
    padding: 15px;
}

#content-container .toggle-body .item-content .document-item{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    padding: 10px 10px 10px 25px;
    gap: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    background-color: #fff;
    color: #333;
    box-shadow: 0px 0px 5px 1px rgba(100, 100, 100, 0.1);
    text-decoration: none !important;
}
#content-container .toggle-body .item-content .document-item h4{
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
    line-height: 1.2;
}
#content-container .toggle-body .item-content .document-item p{
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 0;
}
#content-container .toggle-body .item-content .document-item > .icon-downland {
    min-width: 45px;
    display: flex;
    flex-direction: column;
    color: rgb(255, 255, 255);
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #29282f;
    transition: all .3s ease-in-out;
}
#content-container .toggle-body .item-content .document-item > .icon-downland > i {
    font-size: 1.5rem;
}
#content-container .toggle-body .item-content .document-item:hover > .icon-downland {
    background-color: #fecc00;
    color: #333;
}

#content-container .toggle-body .item-content.video-container.active{
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
    display: grid;
}
#content-container .toggle-body .item-content .item-video{
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 0px 5px 1px rgba(100, 100, 100, 0.1);
}
#content-container .toggle-body .item-content .item-video .img-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
#content-container .toggle-body .item-content .item-video .img-wrapper::before {
    content: " ";
    background: center / contain no-repeat url("../../images/icon/YouTube_icon.png");
    height: 70px;
    width: 70px;
    position: absolute;
    opacity: .9;
    transition: all .3s ease-in-out;
    z-index: 1;
}
#content-container .toggle-body .item-content .item-video .img-wrapper img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    transition: all .5s;
}
#content-container .toggle-body .item-content .item-video:hover .img-wrapper img{
    transform: scale(1.1);
}
#content-container .toggle-body .item-content .item-video .name{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    font-size: 16px;
    background-color: #fafafa;
    margin-bottom: 0;
    padding: 10px 5px;
    border-radius: 5px;
    color: #000;
    font-weight: 500;
}

#content-container .toggle-body .item-content.inner-photo.active{
    margin: 0;
    display: grid;
    gap: 5px;
}
#content-container .toggle-body .item-content.inner-photo .grid-photo{
    border: none;
    object-fit: cover;
}

.caption-dop-item{
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 15px;
    font-size: 22px;
    text-align: center;
    background-color: #333;
    color: #fff;
    border-radius: 5px;
}

.send-coop{
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    text-align: center;
    padding: 15px 25px;
    margin-bottom: 15px;
}
.send-coop .icon{
    height: 100px;
    width: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    margin: 10px 0;
    color: #333;
    background: #fecc00;
}
.send-coop .icon i{
    font-size: 50px;
}
.send-coop h4{
    font-size: 22px;
    margin-bottom: 10px;
}
@media (max-width: 992px){
    .content-page > .caption > h1{
        font-size: 28px;
    }
}
@media (max-width: 768px) {
    .content-page > .caption > h1{
        font-size: 28px;
        margin-bottom: 10px;
        line-height: 1;
    }
    .content-page > .head-item{
        flex-direction: column;
    }
    .content-page > .head-item > .img-wrapper,
    .content-page > .head-item > .info-panel{
        width: 100%;
    }
    #content-container .toggle-caption{
        flex-direction: column;
    }
    #content-container .toggle-caption .item-caption{
        background-color: #eee;
        color: #333;
    }
    #content-container .toggle-body .item-content.video-container.active{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .content-page > .head-item > .img-wrapper{
        height: 300px;
    }
    #content-container .toggle-body .item-content.video-container.active{
        grid-template-columns: repeat(1, 1fr);
    }
}

