@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{
    background-color: #e8e8e8;
    font-family: var(--menu-font-family);
}

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

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

.rptopbg h2{
    display: inline-block;
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    margin: 0;
    padding: 10px 30px;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background-color: rgba(255,255,255,0.8);
    color: #000;
    border-radius: 0 0 var(--radius) var(--radius);
}

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

.rppagecontent{
    padding: 25px;
}

.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;
}

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

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

.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;
}

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

.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;
}