﻿body {
}

.RwTrackerGauge {
    width: 100%;
}

    .RwTrackerGauge td {
        text-align: center;
        width: calc(100% / 8);
    }

        .RwTrackerGauge td span {
            font-size: 8px;
        }

.RwLadderTable {
    width: 100%;
    margin-bottom: 10px;
}

    .RwLadderTable td {
        text-align: center;
        padding: 2px 5px;
        background-color: white;
    }

.RwDownArrow {
    display: none;
}

.RwLadderTableTitle {
    background-color: #B2CEEA !important;
    color: #333 !important;
    padding: 10px 15px;
    font-size: 12px;
    font-weight: bold;
}

.RwLadder {
    width: 100%;
}

    .RwLadder td {
        padding: 10px;
        vertical-align: top;
    }

        .RwLadder td:last-child {
            text-align: right;
        }

        .RwLadder td:first-child {
            text-align: left;
        }

.RwLadderItem {
    background-color: white;
    padding: 5px;
}

.pending-status {
    background-color: white;
    padding: 10px 18px;
    color: #404040 !important;
    border-radius: 5px;
    white-space: nowrap;
    display: inline-flex;
    border: silver solid 1px;
}

.approved-status {
    background-color: #1b7d24;
    padding: 10px 18px;
    color: white !important;
    border-radius: 5px;
    white-space: nowrap;
    display: inline-flex;
    border: #0ad444 solid 1px;
}

.denied-status {
    background-color: #464646;
    padding: 10px 18px;
    color: white !important;
    border-radius: 5px;
    white-space: nowrap;
    display: inline-flex;
    border: #404040 solid 1px;
}

.cancelled-status {
    background-color: #8b42c7;
    padding: 10px 18px;
    color: white !important;
    border-radius: 5px;
    white-space: nowrap;
    display: inline-flex;
    border: #d563f6 solid 1px;
}

.default-status {
    background-color: white; /* or any default color */
}

.Rwlist {
}

    .Rwlist span {
        font-size: 20px;
        font-weight: bold;
        padding: 2px 10px;
    }

    .Rwlist div {
        display: inline-block;
        margin: 10px;
        padding: 2px;
        border: solid silver 1px;
        background-color: white;
        -webkit-box-shadow: 3px 3px 5px 0px rgba(191,191,191,1);
        -moz-box-shadow: 3px 3px 5px 0px rgba(191,191,191,1);
        box-shadow: 3px 3px 5px 0px rgba(191,191,191,1);
    }

        .Rwlist div:hover {
            background-color: #f3f4f6;
            -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.5); /* Darker shadow */
            -moz-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.5); /* Darker shadow */
            box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.5); /* Darker shadow */
        }

    .Rwlist p {
        display: block;
        font-size: 13px;
        font-weight: normal;
        background-color: rgba(30, 30, 30, 0.5);
        color: white;
        padding: 5px 10px;
    }

.RwLadderImage {
    border: 1px solid silver;
    margin: 20px 20px 20px 10px;
    -webkit-box-shadow: 3px 3px 5px 0px rgba(191,191,191,1);
    -moz-box-shadow: 3px 3px 5px 0px rgba(191,191,191,1);
    box-shadow: 3px 3px 5px 0px rgba(191,191,191,1);
    border-radius: 5px;
    padding: 5px;
}

.Rwcards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around; /* This spreads out the cards evenly */
    align-items: stretch; /* This ensures that the cards stretch to fill the container vertically */
}

.Rwcard {
    flex: 1 1 calc(33% - 20px); /* Adjusts the basis of each card to fill the row, minus some margin */
    display: flex;
    flex-direction: column; /* Makes the internal layout of each card flex, too */
    margin: 10px;
}

    .Rwcard a {
        color: #565656; /* Ensuring link color is consistent */
        text-decoration: none; /* Optional: removes underline from links */
        display: flex; /* Important: makes the <a> tag behave like a flex container */
        flex-direction: column; /* Stacks child elements vertically */
        height: 100%; /* Ensures the link takes the full height of its parent .Rwcard */
    }

.RwCardTop {
    display: flex; /* Use flexbox */
    align-items: center; /* Vertically align items to the center */
    background-color: #f3f4f6;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-top: solid 1px #f2f2f2;
    border-left: solid 1px #f2f2f2;
    border-right: solid 1px #f2f2f2;
    padding: 10px;
    text-align: left;
    font-family: countach, sans-serif;
    font-weight: 300;
    font-size: 18px;
    -webkit-box-shadow: 3px 3px 5px 0px rgba(191,191,191,1);
    -moz-box-shadow: 3px 3px 5px 0px rgba(191,191,191,1);
    box-shadow: 3px 3px 5px 0px rgba(191,191,191,1);
    flex: 1;
    /*flex-direction: column;*/
}

.RwCardBottom {
    display: flex; /* Use flexbox */
    align-items: center; /* Vertically align items to the center */
    font-size: 18px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background-color: white;
    border-bottom: solid 1px #f2f2f2;
    border-left: solid 1px #f2f2f2;
    border-right: solid 1px #f2f2f2;
    padding: 10px;
    text-align: left;
    -webkit-box-shadow: 3px 3px 5px 0px rgba(191,191,191,1);
    -moz-box-shadow: 3px 3px 5px 0px rgba(191,191,191,1);
    box-shadow: 3px 3px 5px 0px rgba(191,191,191,1);
    flex: 1;
    max-width: 100%;
    /*flex-direction: column;*/
}

.RwCardImage {
    width: 100%; /* Ensures the image scales responsively within its container */
    height: auto;
}

.RwchartText {
    color: #005cb9;
    font-size: 20px;
    font-weight: bold;
}

    .RwchartText span {
        font-size: 12px;
    }

.RwNoAccess {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    width: 100%;
    text-align: center;
    font-size: 30px;
}

.RwFormDisplay > div {
    display: block;
    clear: both;
    padding: 20px 0;
    border-bottom: solid 1px #eeeeee;
}

.RwFormDisplay {
    display: block !important;
}

.modala {
    position: fixed;
    z-index: 999;
    height: 100%;
    width: 100%;
    top: 0;
    background-color: White;
    filter: alpha(opacity=60);
    opacity: 0.6;
    -moz-opacity: 0.8;
}

.centera {
    z-index: 1000;
    margin: 300px auto;
    padding: 10px;
    width: 36px;
    background-color: White;
    border-radius: 6px;
    filter: alpha(opacity=60);
    opacity: 1;
    -moz-opacity: 1;
}

.loader {
    width: 60px;
}

.loader-wheel {
    animation: spin 1s infinite linear;
    border: 2px solid rgba(30, 30, 30, 0.5);
    border-left: 4px solid #0ad444; /*#0a7dd4;*/
    border-radius: 50%;
    height: 50px;
    margin-bottom: 10px;
    width: 50px;
    margin-left: -12px;
}

.loader-text {
    color: #0ad444; /*#0a7dd4;*/
    font-family: arial, sans-serif;
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.RwHomeBG {
    background-image: url('https://dcb80a363a4153137b52-e3e81376f7ea45aa66e55c5aeb0ba59e.ssl.cf1.rackcdn.com/638460283393230658-HERO_2.webp');
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 700px;
    /*position:relative;*/
    padding-top: 220px;
}

.RwBenefitBG {
    background-image: url('https://dcb80a363a4153137b52-e3e81376f7ea45aa66e55c5aeb0ba59e.ssl.cf1.rackcdn.com/638460283393230658-HERO_2.webp');
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 700px;
    /*position:relative;*/
    padding-top: 220px;
}


.RwLeft {
    padding: 40px;
    max-width: 800px;
}

.RwHomeTitle {
    font-size: 80px;
    line-height: 80px;
    color: white;
    font-family: countach, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}

.RwHomeSubTitle {
    font-size: 18px;
    line-height: 24px;
    color: #bababa;
    margin-top: 20px;
}

.RwDarkSub {
    font-size: 24px;
    line-height: 24px;
    font-family: countach, sans-serif;
    font-weight: 500;
}

.RwDarkTitle {
    font-size: 46px;
    line-height: 46px;
    font-family: countach, sans-serif;
    font-weight: 600;
    color: #003764;
}

.RwTermsSubTitle {
    font-size: 20px;
    line-height: 20px;
    font-family: countach, sans-serif;
    font-weight: 500;
    margin: 30px 0 10px 0;
}

.RwTermsBody {
    margin-bottom: 50px;
}

    .RwTermsBody p {
        margin-bottom: 20px;
    }

.RwBody {
    min-height: 100vh;
    display: block;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 20px;
}

.RwSpace div {
    margin: 10px 0;
}

.RwCapsuleTop {
    display: flex; /* Use flexbox */
    align-items: center; /* Vertically align items to the center */
    background-color: #f3f4f6;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-top: solid 1px #f2f2f2;
    border-left: solid 1px #f2f2f2;
    border-right: solid 1px #f2f2f2;
    padding: 10px;
    text-align: left;
    font-family: countach, sans-serif;
    font-weight: 300;
    font-size: 18px;
    -webkit-box-shadow: 3px 3px 5px 0px rgba(191,191,191,1);
    -moz-box-shadow: 3px 3px 5px 0px rgba(191,191,191,1);
    box-shadow: 3px 3px 5px 0px rgba(191,191,191,1);
    flex: 1;
}

.RwCapsuleBottom {
    display: flex; /* Use flexbox */
    align-items: center; /* Vertically align items to the center */
    font-size: 18px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background-color: white;
    border-bottom: solid 1px #f2f2f2;
    border-left: solid 1px #f2f2f2;
    border-right: solid 1px #f2f2f2;
    padding: 10px;
    text-align: left;
    -webkit-box-shadow: 3px 3px 5px 0px rgba(191,191,191,1);
    -moz-box-shadow: 3px 3px 5px 0px rgba(191,191,191,1);
    box-shadow: 3px 3px 5px 0px rgba(191,191,191,1);
    flex: 1;
    max-width: 100%;
}

    .RwCapsuleBottom select {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

.RwMenuCollapse {
    border: none !important;
}

.RwNavMenu {
    color: white !important;
    margin-top: 0px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
}

.RwBrand {
    float: left;
    height: 40px;
    padding: 10px 15px;
    font-size: 18px;
    line-height: 20px;
    color: white !important;
}

.RwButton {
    background-color: #005cb9;
    padding: 10px 18px;
    color: white !important;
    border-radius: 5px;
    white-space: nowrap;
    display: inline-block;
}

    .RwButton:hover {
        background-color: #174c82;
        color: white;
    }

.RwButtonBox {
    text-align: left;
    margin-top: 50px;
}

.RwButtonMini {
    background-color: #005cb9;
    padding: 3px 6px;
    color: white !important;
    border-radius: 5px;
    white-space: nowrap;
    display: inline-block;
    font-size: 10px;
}

    .RwButtonMini:hover {
        background-color: #174c82;
        color: white;
    }

.RwOverlap {
    text-align: center;
    width: 100%;
}

.RwRoundedContainer {
    background-color: white;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    padding: 30px;
    width: 90%;
    border: solid 1px silver;
    margin-top: -50px;
}

.RwRoundedContainerNormal {
    background-color: white;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    padding: 30px;
    border: solid 1px silver;
}

.Rwactive {
    background-color: #005cb9;
}

.RwDashboardContainer {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 20px 10px 10px;
    font-size: 12px;
    margin: 20px 0px;
}

.RwDashboardLeft {
    flex: 0 0 35%; /* Take 30% width */
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    background-color: white;
    border-bottom: solid 1px #f2f2f2;
    border-left: solid 1px #f2f2f2;
    border-top: solid 1px #f2f2f2;
    padding: 25px;
    text-align: left;
    -webkit-box-shadow: 3px 3px 5px 0px rgba(191,191,191,1);
    -moz-box-shadow: 3px 3px 5px 0px rgba(191,191,191,1);
    box-shadow: 3px 3px 5px 0px rgba(191,191,191,1);
}

.RwDashboardRight {
    flex: 0 0 65%; /* Take 70% width */
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    background-color: #f3f4f6;
    border-bottom: solid 1px #f2f2f2;
    border-right: solid 1px #f2f2f2;
    border-top: solid 1px #f2f2f2;
    padding: 25px;
    text-align: left;
    -webkit-box-shadow: 3px 3px 5px 0px rgba(191,191,191,1);
    -moz-box-shadow: 3px 3px 5px 0px rgba(191,191,191,1);
    box-shadow: 3px 3px 5px 0px rgba(191,191,191,1);
}

.Rwbarbase {
    width: 100%;
    height: 10px;
    background-color: #b2ceea;
    border-radius: 5px;
}

.Rwbar {
    height: 10px;
    background-color: #005cb9 !important;
    border-radius: 5px;
}

.RwCategoryBarText {
    white-space: nowrap;
    text-transform: uppercase;
}

.RwbarbaseLight {
    width: 100%;
    height: 36px;
    background-color: #f3f4f6;
    border-radius: 5px;
    margin-top: 10px;
    overflow: hidden !important;
}

.RwbarLight {
    height: 36px;
    background-color: #b2ceea !important;
    border-radius: 5px;
}

.RwCarouselImage {
    /*width: 350px;*/
    /*height: 165px;*/
    background-size: cover;
}

.RwHowToTable {
    width: 100%;
}

    .RwHowToTable td, th {
        padding: 10px;
        text-align: left;
        border-bottom: solid 1px silver;
    }

    .RwHowToTable th {
        background-color: #005cb9;
        color: white;
    }


.Rwmodal {
    display: block; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    padding-top: 100px;
}

/* Modal Content/Box */
.Rwmodal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 10px;
    border: 1px solid #888;
    width: 100%;
    max-width: 600px; /* Could be more or less, depending on screen size */
}

.Rwlist span {
    display: block;
    margin-bottom: 3px;
    font-size: 14px;
}

.RwBoxNormal {
    /*border: solid white 2px;*/
    background-color: white;
    /*padding: 3px 6px;*/
    margin-top: 10px;
    overflow: hidden;
}

.RwBoxActive {
    border: solid #1ed944 2px;
    background-color: #b0eebc;
    padding: 3px 6px;
    margin-top: 10px;
    overflow: hidden;
}


@media (max-width: 768px) {
    .RwHomeBG {
        padding-top: 50px;
    }

    .RwBenefitBG {
        padding-top: 50px;
    }

    .RwDashboardLeft, .RwDashboardRight {
        flex: 0 0 100%; /* Take full width on mobile */
    }

    .RwDashboardContainer {
        padding: 10px;
    }

    .Rwcard {
        flex-basis: 100%;
    }

    /*.RwLadder td:last-child {
        display: none;
    }*/
    .RwRightArrow {
        display: none;
    }

    .RwDownArrow {
        display: block;
    }
}
