
/* -------------- Pricing Table Style -------------- */
.pricing-table {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-table .ptable-item {
    width: 33.33%;
    padding: 15px;
}

@media (max-width: 992px) {
    .pricing-table .ptable-item {
        width: 33.33%;
    }
}

@media (max-width: 768px) {
    .pricing-table .ptable-item {
        width: 50%;
    }
}

@media (max-width: 576px) {
    .pricing-table .ptable-item {
        width: 100%;
    }
}

.pricing-table .ptable-single {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.pricing-table .ptable-header,
.pricing-table .ptable-body,
.pricing-table .ptable-footer {
    position: relative;
    width: 100%;
    text-align: center;
    background: #ffffff;
    overflow: hidden;
}

.pricing-table .ptable-status ,
.pricing-table .ptable-title,
.pricing-table .ptable-price,
.pricing-table .ptable-description,
.pricing-table .ptable-action {
    position: relative;
    width: 100%;
    text-align: center;
}


/* --- Pricing Table 1 --- */
.pricing-table.table-1 .ptable-single:hover {
    box-shadow: 0 0 10px #999999;
}

.pricing-table.table-1 .ptable-header {
    padding: 30px;
    background: #2A293E;
}

.pricing-table.table-1 .ptable-item.featured-item .ptable-header {
    background: #530031;
}

.pricing-table.table-1 .ptable-status {
    margin-top: -30px;
    text-align: right;
}

.pricing-table.table-1 .ptable-status span {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 30px;
    right: -30px;
    padding: 7px 0;
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    background: #005322;
}

.pricing-table.table-1 .ptable-title h2 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
}

.pricing-table.table-1 .ptable-price h2 {
    color: #ffffff;
    font-size: 60px;
    font-weight: 900;
    margin-left: 15px;
}

.pricing-table.table-1 .ptable-price h2 small {
    position: absolute;
    font-size: 18px;
    font-weight: 900;
    margin-top: 16px;
    margin-left: -15px;
}

.pricing-table.table-1 .ptable-price h2 span {
    margin-left: 3px;
    font-size: 16px;
    font-weight: 300;
}

.pricing-table.table-1 .ptable-body {
    padding: 30px 0;
    background: #f7f7f7;
    border: 1px solid #eeeeee;
}

.pricing-table.table-1 .ptable-description ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-table.table-1 .ptable-description ul li {
    color: #2A293E;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    padding: 7px;
    border-bottom: 1px solid #eeeeee;
}

.pricing-table.table-1 .ptable-description ul li:last-child {
    border: none;
}

.pricing-table.table-1 .ptable-action a {
    display: block;
    padding: 15px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    background: #2A293E;
}

.pricing-table.table-1 .ptable-action a i {
    margin-right: 5px;
}

.pricing-table.table-1 .ptable-action a:hover {
    color: #ffffff;
    background:#530031;
}

.pricing-table.table-1 .ptable-item.featured-item .ptable-action a {
    color: #ffffff;
    background: #530031;
}

.pricing-table.table-1 .ptable-item.featured-item .ptable-action a:hover {
    color: #ffffff;
    background: #2A293E;
}