@import url(https://fonts.googleapis.com/css2?family=Karla:wght@400;600&family=Montserrat:wght@400;600&family=Mukta:wght@400;600&family=Open+Sans:wght@400;600&family=PT+Sans&family=Poppins:wght@400;600&family=Roboto&family=Roboto+Condensed&family=Roboto+Slab:wght@400;600&family=Rubik:wght@400;600&family=Mukta+Vaani:wght@400;600&display=swap);

:root {
    --radius: 15px;
    --cal-btn-color: #1c4587;
    --cal-btn-text-color: #ffffff;
    --menu-font-family: Poppins, sans-serif;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    vertical-align: top;
}

.rpmainbg {
    font-family: var(--menu-font-family);
}

.rpcontainerbg {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: #e8e8e8;
    border-radius: var(--radius);
    overflow: hidden;
    margin: 15px auto;
}

.rptopbg {
    background-color: var(--cal-btn-color);
    position: relative;
    padding: 25px;
    width: 100%;
    text-align: center;
}

    .rptopbg h3 {
        font-size: 26px;
        line-height: 30px;
        font-weight: 600;
        color: var(--cal-btn-text-color);
        margin: 0;
    }

.rppagecontent {
    padding: 25px 25px 5px;
}

.rpcontitle {
    color: var(--cal-btn-color);
    display: block;
    padding-left: 15px;
    position: relative;
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 15px;
}

    .rpcontitle:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background-color: var(--cal-btn-color);
        border-radius: 2px;
        display: inline-block;
    }

.rpflex {
    display: flex;
    align-items-stretch;
    flex-wrap: wrap;
}

    .rpflex .col-lg-6 {
        padding-bottom: 15px;
    }

.rpdtstable {
    font-size: 14px;
    margin: 0;
}

    .rpdtstable tr td:nth-of-type(odd) {
        background-color: #f2f2f2;
        font-weight: 600;
    }

    .rpdtstable tr td:nth-of-type(even) {
        background-color: #fff;
    }

.rpdsptd {
    background-color: var(--cal-btn-color) !important;
    color: var(--cal-btn-text-color) !important;
    text-align: center !important;
}

.rpregdiv {
    border: 1px solid var(--cal-btn-color);
    border-radius: var(--radius);
}

.rpregtitle {
    background-color: var(--cal-btn-color);
    color: var(--cal-btn-text-color);
    padding: 10px 15px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
}

.rpregcard {
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: var(--radius);
    overflow: hidden;
}

.rpregcardtitle {
    background-color: var(--cal-btn-color);
    color: var(--cal-btn-text-color);
    padding: 10px 15px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
}

.rpregcardcontent {
    padding: 10px 15px;
}

    .rpregcardcontent p {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 10px;
    }

        .rpregcardcontent p:last-child {
            margin: 0;
        }

.rpspace {
    padding-top: 25px;
    float: left;
    width: 100%;
}

.newerlink .rpregcard {
    margin-bottom:15px;
}

.rptables {
    font-size: 14px;
    margin: 0;
    background-color: #fff;
}

    .rptables thead tr th {
        background-color: var(--cal-btn-color);
        color: var(--cal-btn-text-color);
    }

        .rptables thead tr th:first-child,
        .rptables tbody tr td:first-child {
            text-align: center;
            width: 70px;
        }







.rpf-container {
    padding-bottom: 15px;
    margin: 40px auto;
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.rpf-title {
    text-align: center;
    color: var(--cal-btn-color);
    font-size: 30px;
    line-height: 40px;
    padding: 20px 0;
    font-weight: 600;
}

.rpf-question {
    padding-bottom: 25px;
}

    .rpf-question h3 {
        color: var(--cal-btn-color);
        font-size: 20px;
        line-height: 30px;
        font-weight: 600;
    }

.rpf-qbg {
    background-color: #f1f1f1;
    padding: 10px 15px;
    cursor: pointer;
    border: none;
    display: flex;
    border-radius: 10px;
    margin-top: 8px;
    border: 1px solid #fff;
    transition: all 0.2s ease;
}

    .rpf-qbg:hover {
        border: 1px solid var(--cal-btn-color);
    }

    .rpf-qbg input[type="radio"] {
        margin-right: 10px;
    }

.rpf-button {
    text-align: center;
    padding-bottom: 30px;
}

    .rpf-button button {
        background-color: var(--cal-btn-color) !important;
        border: 1px solid var(--cal-btn-color) !important;
        color: var(--cal-btn-text-color) !important;
        color: white;
        border: none;
        padding: 12px 25px;
        border-radius: 8px;
        font-size: 16px;
        cursor: pointer;
        transition: background 0.3s ease;
    }

        .rpf-button button:hover {
            color: var(--cal-btn-text-color) !important;
            background-color: var(--cal-btn-color) !important;
            border-color: var(--cal-btn-color) !important;
        }

.rpf-result {
    text-align: center;
    background-color: #f1f1f1;
    border-left: 6px solid var(--cal-btn-color);
    padding: 25px;
    border-radius: 10px;
}

    .rpf-result h2 {
        text-align: center;
        color: var(--cal-btn-color);
        font-size: 25px;
        line-height: 35px;
        padding: 0 0 15px 0;
        margin: 0;
        font-weight: 600;
    }

.rpf-resultlink {
    background-color: var(--cal-btn-color) !important;
    border: 1px solid var(--cal-btn-color) !important;
    color: var(--cal-btn-text-color) !important;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .rpf-resultlink:hover {
        color: var(--cal-btn-text-color) !important;
        background-color: var(--cal-btn-color) !important;
        border-color: var(--cal-btn-color) !important;
    }
