#item-detail {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    padding: 10px 10px 30px;
    box-sizing: border-box;
    color: white;
}

#item-detail > h1 {
    position: relative;
    margin: 20px 5px;
    text-transform: capitalize;
    word-break: break-word;
    /* color: rgba(255, 255, 64, 1); */
}

#item-detail > .general,
#item-detail > .text-links,
#item-detail > .text-paragraphs,
#item-detail > .photo-links,
#item-detail > .photos {
    width: 100%;
    padding: 10px 0px;
    word-break: break-word;
    box-sizing: border-box;
}
#item-detail h3 {
    /* color: rgb(255, 255, 64); */
    font-size: 25px;
    text-transform: capitalize;
}
#item-detail h3.title {
    font-size: 18px;
}
#item-detail > .text-links > h3::after,
#item-detail > .photo-links > h3::after,
#item-detail > .photos > h3::after {
    content: ":";
}

#item-detail > .general > .poster {
    display: inline-block;
    max-width: 50%;
}
#item-detail > .general > .poster > img {
    max-width: 100%;
    max-height: 350px;
    object-fit: cover;
}
#item-detail > .general > .detail {
    display: inline-block;
    max-width: 50%;
    vertical-align: top;
}
#item-detail > .general > .detail > h4 {
    margin-top: 0px;
}
#item-detail > .general > .detail > .wrap {
    margin-bottom: 15px;
}
#item-detail > .general > .detail .title {
    display: inline-block;
    text-transform: capitalize;
}
#item-detail > .general > .detail .title::after {
    content: ":";
    padding-right: 5px;
}
#item-detail > .general > .detail .content {
    display: inline-block;
    text-transform: capitalize;
}
#item-detail > .general > .detail .content.url {
    text-transform: none;
    padding: 0 5px;
}

#item-detail > .text-paragraphs > span {
    display: block;
    margin: 1em 0;
    text-align: justify;
    word-break: break-word;
}
#item-detail > .text-paragraphs table th,
#item-detail > .text-paragraphs table td {
    border: 1px solid white;
    padding: 5px;
}

#item-detail > .text-links > .wrap {
    width: 100%;
    min-width: auto;
}
#item-detail > .text-links > .wrap > a {
    display: block;
    width: 100%;
    margin: 20px 0;
    padding: 20px;
    color: white;
    background-color: rgba(255, 255, 255, .1);
    border: 1px solid rgba(112,112,112,1);
    text-align: justify;
    text-decoration: none;
    border-radius: 5px;
}
#item-detail > .text-links > .wrap > a:hover {
    background-color: rgba(208, 208, 208, 0.5);
}

#item-detail > .photo-links > h3 {
    margin-bottom: 10px;
}

#item-detail > .photos > .wrap {
    padding-bottom: 5px;
    box-sizing: border-box;
}
#item-detail > .photos img {
    display: inline-block;
    max-width: 100%;
    height: 220px;
    object-fit: cover;
}

@media only screen and (min-width: 800px) {
    #item-detail {
        /* background-color: rgba(255, 255, 255, .1); */
        border-radius: 8px;
        padding-bottom: 0;
        margin-bottom: 20px;
    }
    
    #item-detail > .general > .detail .title {
        color: #24B26B;
    }
}

@media only screen and (max-width: 799px) {
    #item-detail {
        width: 100%;
    }
    
    #item-detail  > h1 {
        display: block;
        width: auto;
        padding: 0 5px;
        font-size: 26px;
    }
    
    #item-detail > .rating {
        position: relative;
        display: block;
        text-align: center;
    }
    
    #item-detail > .text-links,
    #item-detail > .text-paragraphs,
    #item-detail > .photo-links,
    #item-detail > .photos {
        text-align: justify;
    }
    
    #item-detail > .general {
        text-align: center;
    }
    #item-detail > .general > .poster {
        display: block;
        max-width: 100%;
    }
    #item-detail > .general > .detail {
        display: block;
        max-width: 100%;
        margin-top: 15px;
        text-align: left;
    }
    
    #item-detail > .text-links > .wrap {
        padding: 0;
        text-align: center;
    }

    #item-detail > .photos img {
        width: 100%;
    }

    #item-detail > .general > .detail .title,
    #item-detail h3 {
        color: rgb(255, 255, 64);
    }
}