@charset "UTF-8";
/**
* Plan selection styles
*/

.subscription-container {
    display: table;
    border-spacing: 10px;
    width: 100%;
}

.subscription-container .title {
    display: table-caption;
    text-transform: capitalize;
}

.subscription-container .msg-error {
    display: table-caption;
    color: red;
    text-align: center;
}

.subscription-container .plans-wrapper {
    display: table-row;
}

.subscription-container .plans-wrapper .package {
    display: table-cell;
    max-width: 200px;
    margin: 0 5px;
    border-radius: 10px;
    text-align: center;
    padding: 0 0 40px 0;
    border: 1px solid #eee;
    position: relative;
    width: 33%;
}

.subscription-container .plans-wrapper .package.selected {
    -moz-box-shadow: 0 0 20px rgba(0, 109, 186, 0.9);
    -webkit-box-shadow: 0 0 20px rgba(0, 109, 186, 0.9);
    box-shadow: 0 0 20px rgba(0, 109, 186, 0.9);
}

.subscription-container .plans-wrapper .package.selected .footer .action-btn {
    opacity: 1 !important;
}

.subscription-container .plans-wrapper .package .title {
    display: block;
    text-transform: none;
    padding: 10px;
    border-radius: 7px 7px 0 0 !important;
    font-size: 18px;
    font-weight: bold;
    height: 20px;
    line-height: 20px;
    background-color: #eee;
}

.subscription-container .plans-wrapper .package .description {
    background-color: #ffffff;
    padding: 10px;
}

.subscription-container .plans-wrapper .package .footer {
    background-color: #eee;
    height: 40px;
    border-radius: 0 0 7px 7px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.subscription-container .plans-wrapper .package .footer .action-btn {
    height: 20px;
    line-height: 20px;
    text-transform: uppercase;
    font-weight: 700;
    color: #ffffff !important;
    background-color: #006dba !important;
    border-radius: 7px;
    cursor: pointer;
    margin: 10px auto;
    width: 100px;
    opacity: 0.5 !important;
}

.coupon-wrapper {
    margin: 0 5px;
}

.coupon-wrapper input {
    max-width: 300px;
    text-align: center;
    display: block;
    margin: 0 auto;
}

/**
* Subscription history panel
*/

.team-account-section.subscription-history .invoices-table,
.team-account-section.subscription-events .events-table {
    display: table;
    width: 97%;
    font-weight: normal;
    margin: 15px 0;
}

.team-account-section.subscription-history .invoices-table .table-caption,
.team-account-section.subscription-events .events-table .table-caption {
    display: table-caption;
    text-align: center;
}

.team-account-section.subscription-history .invoices-table .header-row,
.team-account-section.subscription-events .events-table .header-row,
.team-account-section.subscription-history .invoices-table .content-row,
.team-account-section.subscription-events .events-table .content-row {
    display: table-row;
}

.team-account-section.subscription-history .invoices-table .header-row,
.team-account-section.subscription-events .events-table .header-row {
    font-weight: bold;
}

.team-account-section.subscription-history .invoices-table .content-column,
.team-account-section.subscription-events .events-table .content-column {
    display: table-cell;
}

.team-account-section.subscription-history .invoices-table .content-column.text-right {
    padding-right: 10px;
}

.team-account-section.subscription-history .invoices-table .content-column.show-details-column {
    text-align: right;
    padding-right: 10px;
}

.team-account-section.subscription-history .invoices-table .content-column.show-details-column i {
    cursor: pointer;
}

.team-account-section.subscription-history .invoices-table .text-center{
    text-align: center;
}

.team-account-section.subscription-history .invoices-table .text-right{
    text-align: right;
}

.action-button-bar {
    padding-bottom: 10px;
    margin: 0 10px;
}

/**
* Subscription Invoice Details
*/
.invoice-detail {
    padding: 10px;
    display: block;
    font-size: 12px;
}

.invoice-detail .lines-container {
    display: table;
    border-bottom: 2px solid #83b4bc;
    width: 100%;
}

.invoice-detail .lines-container .line,
.invoice-detail .footer-details .line {
    display: table-row;
    line-height: 2em;
}

.invoice-detail .lines-container .line.highlight,
.invoice-detail .footer-details .line.highlight {
    font-weight: bold;
}

.invoice-detail .lines-container .line .content-column {
    display: table-cell;
}

.invoice-detail .lines-container .line .content-column.description {
    /*width: 60%;*/
}

.invoice-detail .lines-container .line .content-column.period {
    /*width: 35%;*/
    padding-left: 10px;
}

.invoice-detail .lines-container .line .content-column.amount {
    /*width: 5%;*/
    text-align: right;
}

.invoice-detail .footer-details {
    display: table;
    width: 100%;
}

.invoice-detail .footer-details .line .footer-label {
    display: table-cell;
    width: 80%;
}

.invoice-detail .footer-details .line .value {
    display: table-cell;
    width: 20%;
    text-align: right;
}

