.subscription-list-head {
    width: calc(100% / 4);
}

.subscription-container {
    margin-top: 20px;
    padding: 15px;
    background-color: #fff;
}

.sub-performance-td {
    width: 1%;
}

.sub-delete-link {
    float: right;
}

.additional-performance-td {
    width: 1%;
}

.add-subscription-container {
    margin-top: 20px;
}

.seating-plan-link-container .popover {
    max-width: none;
}

.clone-me {
    display: none;
}

select:invalid {
    border: 1px solid red;
}

.additional-seat-select {
    display: none;
}

.no-seating-plan-for-performance {
    display: none;
}

.popover-content {
    min-width: 500px;
    min-height: 650px;
}

.popover.stageplan {
    max-width: none;

}

.stageplan .popover-content {
    max-height: 85vh;
    overflow-y: auto;
    width: 100%;
}

.popover .popover-title {
    background-color: #fff;
    border: none;
}

.popover .popover-title a {
    opacity: 0.7;
}

.subscription-no-padding-left {
    padding-left: 0;
}

.subscription-no-padding-right {
    padding-right: 0;
}

.p-margin {
    margin-bottom: 10px;
}

.print-invoice-container {
    display: inline-block;
    position: relative;
}

.subscription-invoice-generated-wrapper {
    position: absolute;
    width: 100;
    bottom: -70px;
    left: 0;
}

select.seat-multi-select {
    height: 600px;
}

.credit-table {
    background-color: #F5E0E7;
}

.credit-table > thead > tr > th,
.credit-table > thead > tr > td,
.credit-table > tbody > tr > th,
.credit-table > tbody > tr > td {
    border-color: #c4b3b8;
}


/* https://stackoverflow.com/a/29512692 */
.order-history {
    height: 300px;
    /*margin-top: 110px;*/
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.order-history table {
    display: flex;
    flex-flow: column;
    height: 100%;
    width: 100%;
}
.order-history table thead {
    /* head takes the height it requires,
    and it's not scaled when table is resized */
    flex: 0 0 auto;
    width: calc(100% - 0.9em);
}
.order-history table tbody {
    /* body takes all the remaining available space */
    flex: 1 1 auto;
    display: block;
    overflow-y: scroll;
}
.order-history table tbody tr {
    width: 100%;
}
.order-history table thead,
.order-history table tbody tr {
    display: table;
    table-layout: fixed;
}

.sub-actions-container {
    display:flex;
	flex-direction: row-reverse;
}
.sub-actions-container .sub-delete-link {
    margin-left: 10px;
}




