/* Pricebox — i2t3 component styles */

.i2t3-pricebox-section { position: relative; }

.price-block {
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.price-block-header {
    background-color: #f5f6f9;
    display: flex;
    font-size: 22px;
    font-weight: 600;
    justify-content: space-between;
    line-height: 32px;
    padding: 30px 20px 25px;
}
.price-block-header .h3,
.price-block-header h3 {
    color: var(--i2t3-primary, #0d6efd);
    font-size: 22px;
    font-weight: 600;
    line-height: 32px;
    margin: 0;
}

.price-block-content {
    padding-bottom: 20px;
    text-align: center;
}
.price-block-content ul {
    list-style: none;
    padding: 0 15px;
    text-align: left;
}
.price-block-content ul li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    padding: 14px 10px 14px 30px;
    position: relative;
}
.price-block-content ul li .fa-solid,
.price-block-content ul li .fa-check {
    color: #77cf9a;
    left: 5px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.price-block-content .btn {
    background-color: var(--i2t3-primary, #0d6efd);
    border-color: var(--i2t3-primary, #0d6efd);
    color: #fff;
}
.price-block-content .btn:hover {
    background-color: transparent;
    color: var(--i2t3-primary, #0d6efd);
}

@media (min-width: 992px) {
    .price-block-header,
    .price-block-header .h3,
    .price-block-header h3 { font-size: 26px; line-height: 36px; }
}

/* Box colours (i2t3_box_color) — the .price-block gets an "orange" / "light-blue"
 * class; tint the header and switch its text to white. */
.price-block.orange .price-block-header { background-color: #fd7e14; }
.price-block.light-blue .price-block-header { background-color: #0dcaf0; }
.price-block.orange .price-block-header,
.price-block.orange .price-block-header .h3,
.price-block.orange .price-block-header h3,
.price-block.light-blue .price-block-header,
.price-block.light-blue .price-block-header .h3,
.price-block.light-blue .price-block-header h3 { color: #fff; }
