git /**
 * Rates Result Cards
 *
 * Styles for the rate cards rendered via AJAX on the Rates page.
 * These are part of the Rates plugin, not the theme.
 */

/** Rates Result Container **/

.rates-result {
    padding: 40px 130px 60px;
}

.rates-result-placeholder {
    font-family: 'Avenir-Roman', sans-serif;
    font-size: 22px;
    color: #999;
    text-align: center;
    padding: 40px 0;
}

/** Rates Result Card **/

.rates-result-card {
    max-width: 700px;
    margin: 25px auto;
    background-color: #faf9fc;
}

.rates-result-header {
    background-color: #effcf2;
    border-radius: 10px 10px 0 0;
    padding: 15px 30px;
}

.rates-result-header p {
    font-family: 'Avenir-Medium', sans-serif;
    font-size: 22px;
    color: #26a71a;
    margin: 0;
    text-align: center;
}

/** Color Variants **/

.rates-result-header-blue {
    background-color: #e5f4fb;
}

.rates-result-header-blue p {
    color: #008fd9;
}

.rates-result-header-grey {
    background-color: #ebeeee;
}

.rates-result-header-grey p {
    color: #364f54;
}

.rates-result-header-orange {
    background-color: rgba(255, 107, 0, 0.1);
}

.rates-result-header-orange p {
    color: #ff6b00;
}

.rates-result-header-purple {
    background-color: rgba(113, 145, 255, 0.1);
}

.rates-result-header-purple p {
    color: #7191ff;
}

.rates-result-header-red {
    background-color: #ffebea;
}

.rates-result-header-red p {
    color: #ff3b30;
}

/** Card Body **/

.rates-result-body {
    padding: 20px 30px 30px;
    text-align: left;
}

.rates-result-body ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0 0 20px;
}

.rates-result-body li {
    font-family: 'Avenir-Roman', sans-serif;
    font-size: 20px;
    color: #001b2d;
    line-height: 2;
}

.rates-result-body ul ul li {
    list-style-type: none;
    position: relative;
    padding-left: 15px;
}

.rates-result-body ul ul li::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 50%;
}

.rates-result-body h3 {
    font-family: 'Avenir-Medium', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #001b2d;
    margin: 10px 0 10px;
}
