#ItemContainer {
    background-color: #eee;
    border: solid 1px #555;
    color: #555;
    margin: 0 auto;
    width: 620px;
    box-sizing: border-box;
}

#ItemContainer h2 {
    background-color: #ccc;
    border-bottom: solid 1px #555;
    color: #333;
    font-size: x-large;
    margin: 0;
    text-align: center;
}

#ItemContainer h3 {
    font-size: 1.5em;
    font-weight: normal;
    letter-spacing: 0.15em;
    line-height: 1em;
    margin: 0 0 0.5em 0;
    padding: 0;
}

#ItemContainer #Item {
    font-family: Verdana, sans-serif;
    padding: 10px;
    display: flow-root;
}

#ItemContainer #Thumbnail {
    border: solid 1px #555;
    float: left;
    height: 250px;
    width: 250px;
    padding: 0;
    text-align: left;
    box-sizing: border-box;
    overflow: hidden;
}

#ItemContainer #Thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

#ItemContainer #Summary {
    background-color: #fff;
    border: dashed 1px #555;
    float: right;
    margin-left: 10px;
    padding: 5px 5px 5px 15px;
    width: 315px;
    box-sizing: border-box;
}

#ItemContainer #Summary h3 {
    margin-left: -10px;
}

#ItemContainer #Summary #DescriptionLabel {
    margin-bottom: 0.4em;
    margin-top: 0.7em;
}

#ItemContainer #Summary #Description {
    border: solid 1px #555;
    font: normal 1em/1.7em Verdana, sans-serif;
    max-height: 136px;
    padding: 5px;
    overflow: auto;
    text-align: left;
    width: 295px;
    box-sizing: border-box;
}

#ItemContainer #Summary #RobuxPurchase,
#ItemContainer #Summary #TicketsPurchase {
    display: block;
}

#ItemContainer #Summary #RobuxPurchase #PriceInRobux,
#ItemContainer #Summary #TicketsPurchase #PriceInTickets {
    color: green;
    font-weight: bold;
    line-height: 2em;
    width: 100px;
}

#ItemContainer #Summary #RobuxPurchase #BuyWithRobux,
#ItemContainer #Summary #TicketsPurchase #BuyWithTickets {
    line-height: 2em;
    width: 100px;
}

#ItemContainer #Summary #RobuxPurchase #BuyWithRobux .Button:hover {
    background-color: #49b745;
    border: solid 1px #000;
}

#ItemContainer #Summary #TicketsPurchase #BuyWithTickets .Button:hover {
    background-color: green;
    border: solid 1px #000;
}

#ItemContainer #Summary #RobuxPurchase #BuyWithRobux a:hover,
#ItemContainer #Summary #TicketsPurchase #BuyWithTickets a:hover {
    color: #fff;
}

#ItemContainer #Configuration {
    background-color: #fff;
    border-bottom: dashed 1px #555;
    border-left: dashed 1px #555;
    border-right: dashed 1px #555;
    float: right;
    font: normal 1em/1.7em Verdana, sans-serif;
    margin-left: 10px;
    padding: 5px 10px;
    text-align: center;
    width: 315px;
    box-sizing: border-box;
}

#ItemContainer .CommentsContainer {
    margin: 10px 0 0 0;
    clear: both;
}

#ItemContainer .CommentsContainer .HeaderPager,
#ItemContainer .CommentsContainer .FooterPager {
    padding: 5px 0;
    text-align: right;
}

#ItemContainer .CommentsContainer .Comments {
    border: dashed 1px #555;
}

#ItemContainer .CommentsContainer .Comment,
#ItemContainer .CommentsContainer .AlternateComment {
    padding: 7px 10px;
    display: flex;
    gap: 15px;
}

#ItemContainer .CommentsContainer .Comment {
    background-color: #fff;
}

#ItemContainer .CommentsContainer .Commenter {
    width: 70px;
    flex-shrink: 0;
}

#ItemContainer .CommentsContainer .Avatar {
    border: solid 1px #555;
    height: 64px;
    width: 64px;
}

#ItemContainer .CommentsContainer .Post {
    flex-grow: 1;
}

#ItemContainer .CommentsContainer .Content {
    margin: 10px 0;
}

#ItemContainer .CommentsContainer .PostAComment {
    margin: 10px 0 0 0;
}

#ItemContainer .CommentsContainer .PostAComment .Buttons {
    margin: 10px 0 0 0;
}

#ItemContainer .CommentsContainer .MultilineTextBox,
#ItemContainer .CommentsContainer textarea {
    min-height: 0;
    width: 400px;
    box-sizing: border-box;
}