.ticketSocketEmbedForm .singleTicketType
{
    margin-bottom: 8px;
}
   
.ticketSocketEmbedForm .singleTicketType .topRow
{
    display: flex;
    flex-flow: row wrap;
    margin-bottom: 4px;
}

.ticketSocketEmbedForm .singleTicketType .topRow .ticketTypeName
{
    flex-grow: 1;
    flex-shrink: 1;
    text-align: left;
}

.ticketSocketEmbedForm .singleTicketType .topRow .ticketTypeName .name
{
    font-weight: bold;
}

.ticketSocketEmbedForm .singleTicketType .topRow .ticketTypePrice
{
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 90px;
}

.ticketSocketEmbedForm .singleTicketType .topRow .ticketTypeQuantity
{
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 90px;
    text-align: right;
}

.ticketSocketEmbedForm .singleTicketType .topRow select
{
    width: 100%;
}

.ticketSocketEmbedForm .singleTicketType .bottomRow .description 
{
    text-align: left;
}

.ticketSocketEmbedForm .singleTicketType .bottomRow .description .showDescriptionLink
{
    display: inline-block;
}
.ticketSocketEmbedForm .singleTicketType .bottomRow .description .descriptionContent
{
    display: none;
}

.ticketSocketEmbedForm .singleTicketType .bottomRow .description .hideDescriptionLink
{
    display: none;
}

.ticketSocketEmbedForm .singleTicketType .bottomRow .description.visible .showDescriptionLink
{
    display: none;
}

.ticketSocketEmbedForm .singleTicketType .bottomRow .description.visible .descriptionContent
{
    display: block;
}

.ticketSocketEmbedForm .singleTicketType .bottomRow .description.visible .hideDescriptionLink
{
    display: inline-block;
}

.ticketSocketEmbedForm .singleTicketType .bottomRow .description span.hideDescriptionLink,
.ticketSocketEmbedForm .singleTicketType .bottomRow .description span.showDescriptionLink 
{
    cursor: pointer;
    text-decoration: underline;
}

.ticketSocketEmbedForm .singleTicketType .bottomRow .description span.hideDescriptionLink:hover,
.ticketSocketEmbedForm .singleTicketType .bottomRow .description span.showDescriptionLink:hover
{
    text-decoration: none;
}

.ticketSocketEmbedForm .submitRow
{
    text-align: right;
}