﻿.rental-plan-card-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 25px 0;
}

.rental-plan-card {
    flex: 1 1 280px;
    max-width: 360px;
    background-color: #FFF;
    border: 1px solid #e2c892;
    border-radius: 14px;
    padding: 24px 22px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,.14);
}

.rental-plan-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #2f211b;
}

.rental-plan-price {
    font-size: 30px;
    font-weight: 700;
    color: #3a241b;
    margin-bottom: 4px;
}

.rental-plan-label {
    font-size: 13px;
    color: #7a674f;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.rental-plan-monthly {
    font-size: 18px;
    margin-bottom: 20px;
}

.rental-plan-card .button,
.rental-plan-card .btn,
.rental-plan-card input[type="button"],
.rental-plan-card input[type="submit"] {
    width: 100%;
    max-width: 180px;
    background: #e65313;
    border: 0;
    border-radius: 6px;
    color: #fff;
    padding: 11px 20px;
    font-weight: 700;
}

.rental-plan-card.is-out-of-stock {
    opacity: .7;
}

    .rental-plan-card.is-out-of-stock a.rent-instrument-button {
        background: #c98b63;
        cursor: not-allowed;
    }

.rental-plan-card-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 25px auto;
    justify-content: center;
}


.rental-plan-card > td,
.rental-plan-card td {
    width: 100%;
    text-align: center !important;
}

.rental-plan-card .button,
.rental-plan-card .btn,
.rental-plan-card a.rent-instrument-button,
.rental-plan-card input[type="button"],
.rental-plan-card input[type="submit"] {
    width: 180px;
    background: #e65313;
    border: 0;
    border-radius: 6px;
    color: #fff;
    padding: 11px 20px;
    font-weight: 700;
    text-align: center;
    display: inline-block;
}

.rental-plan-action {
    display: flex;
    justify-content: center;
    width: 100%;
}

.rental-plan-action a.rent-instrument-button {
    display: inline-block !important;
    width: 180px;
    float: none !important;
    margin: 0 auto !important;
    text-align: center;
}

/* mobile */
@media (max-width: 767px) {
    .rental-plan-card-wrap {
        display: block;
    }

    .rental-plan-card {
        max-width: none;
        margin-bottom: 18px;
    }
}
