.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: #29282f;
    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 {
    justify-content: center;
    background-color: inherit;
    padding: 0;
    margin-bottom: 0;
    font-weight: 500;
}
.content-page > .caption .breadcrumb a {
    color: #f96031;
}
.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;
    background-color: #fff;
    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: 15px;
    width: 400px;
    box-shadow: 0px 0px 5px 1px rgba(100, 100, 100, 0.1);
    padding: 15px;
    border-radius: 5px;
    background-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{
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    font-size: 22px;
    font-weight: bold;
    padding: 10px 5px;
    text-align: center;
    background-color: #29282f;
    border-radius: 5px;
    width: 100%;
    color: #FFFFFF;
}
.content-page > .head-item > .info-panel .cost small{
    font-size: 16px;
    font-weight: 400;
}
.content-page > .head-item > .info-panel .cost div{
    color: #f96031;
}
.content-page > .head-item > .info-panel .cost div span{
    color: #FFFFFF;
}
.content-page > .head-item > .info-panel .dop-item{
    background-color: #f7f7f7f7;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 500;
}
.content-page > .head-item > .info-panel .dop-item i{
    font-size: 24px;
}
.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;
    background-color: #fff;
}

#content-container .toggle-caption{
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}
#content-container .toggle-caption .item-caption{
    flex-grow: 1;
    flex-basis: 0;
    padding: 8px 10px;
    text-align: center;
    background-color: #29282f;
    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: #f96031;
    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 .specifications-img-block{
    display: flex;
    gap: 15px;
}
#content-container .toggle-body .item-content .specifications-img-block .item{
    text-align: center;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
}
#content-container .toggle-body .item-content .specifications-img-block .item span{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 0;
    padding: 5px;
    background-color: #f2f2f2;
}
#content-container .toggle-body .item-content .specifications-img-block .item img{
    height: 100%;
    width: 100%;
    max-width: 500px;
    padding: 1rem;
    margin: auto;
    object-fit: contain;
    flex-grow: 1
}

#content-container .toggle-body .item-content .installation-container{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
#content-container .toggle-body .item-content .videoBlock{
    max-width: 700px;
    margin: 0 auto;
    padding: 0;
}
#content-container .toggle-body .item-content .videoBlock h4{
    border-radius: 5px 5px 0 0;
    padding: 15px 5px;
    font-size: 18px;
    font-weight: 500;
}
#content-container .toggle-body .item-content .videoBlock img {
    border-radius: 0 0 5px 5px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#content-container .toggle-body .item-content.video-container .item-video{
    max-width: inherit;
    margin: inherit;
}
#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 .installation-downlands {
    display: flex;
    flex-grow: 1;
    gap: 15px;
    height: 150px;
    position: relative;
    overflow: hidden;
}
#content-container .toggle-body .item-content .installation-downlands a{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 500px;
    font-size: 22px;
    text-align: center;
    padding: 20px 10px;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
#content-container .toggle-body .item-content .installation-downlands a::after {
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
}
#content-container .toggle-body .item-content .installation-downlands a i {
    font-size: 42px;
    margin-bottom: 5px;
    z-index: 1;
}
#content-container .toggle-body .item-content .installation-downlands a span{
    z-index: 1;
}
#content-container .toggle-body .item-content .installation-downlands a img {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#content-container .toggle-body .item-content .installation-downlands a:hover {
    color: #f96031;
    background-size: 135%;
}
#content-container .toggle-body .item-content .installation-downlands a:hover img {
    transform: scale(1.2);
    transition: all .3s linear;
}

#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: #29282f;
    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: 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: #f96031;
}

#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;
    font-weight: 500;
    text-align: center;
    background-color: #29282f;
    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: #29282f;
    background: #f96031;
}
.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;
    }
    #content-container .toggle-body .item-content .specifications-img-block{
        flex-direction: column;
    }
}
@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-body .item-content.video-container.active{
        grid-template-columns: repeat(2, 1fr);
    }

    #content-container .toggle-body .item-content .specifications-img-block .item span{
        font-size: 16px;
    }
}
@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);
    }
}

