/* _content/Lifeshare.Blazor.Web/Components/Layout/EmptyLayout.razor.rz.scp.css */
.page[b-zmb2dcpk97] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-zmb2dcpk97] {
    flex: 1;
    background-color: #5C5ADF;
}

.sidebar[b-zmb2dcpk97] {
    /*background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #000000 100%);*/
    /*background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);*/
    /*background-image: url(https://w0.peakpx.com/wallpaper/634/185/HD-wallpaper-cool-dark-theme-2018-black-druffix-edge-final-galaxy-home-screen-hq-pure-samsung-space-style.jpg);*/
    background-image: url('images/istockphoto-944880340-170667a.jpg');
}

.top-row[b-zmb2dcpk97] {
    /*background-color: #f7f7f7;*/
    background-color: #FFB413;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 4.5rem;
    display: flex;
    align-items: center;
}

.top-row[b-zmb2dcpk97]  a, .top-row[b-zmb2dcpk97]  .btn-link {
    white-space: nowrap;
    margin-left: 1.5rem;
    text-decoration: none;
}

.top-row[b-zmb2dcpk97]  a:hover, .top-row[b-zmb2dcpk97]  .btn-link:hover {
    text-decoration: underline;
}

.top-row[b-zmb2dcpk97]  a:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-zmb2dcpk97] {
        display: none;
    }

    .top-row.auth[b-zmb2dcpk97] {
        justify-content: space-between;
    }

    .top-row[b-zmb2dcpk97]  a, .top-row[b-zmb2dcpk97]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-zmb2dcpk97] {
        flex-direction: row;
    }

    .sidebar[b-zmb2dcpk97] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-zmb2dcpk97] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-zmb2dcpk97]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-zmb2dcpk97], article[b-zmb2dcpk97] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* _content/Lifeshare.Blazor.Web/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-3jp67sxjmf] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-3jp67sxjmf] {
    flex: 1;
}

.top-row[b-3jp67sxjmf] {
    background-color: #010050;
    height: 4.5rem;
  /*  display: flex;*/
    align-items: center;
    justify-content: space-between; /* Adjusted to space-between */
}

/*.navbar-brand-logo {
    max-width: 100px;*/ /* Adjustable based on screen size */
    /*height: auto;
}*/

.sidebar[b-3jp67sxjmf] {
    background-color: #FFB412;
}

@media (max-width: 640.98px) {
    .top-row.auth[b-3jp67sxjmf] {
        justify-content: space-between;
    }

    /*.navbar-brand-logo {
        max-width: 50px;*/ /* Smaller logo for smaller screens */
    /*}*/

    /* Hide specific menu items or adjust as necessary */
}

@media (min-width: 641px) {
    .top-row[b-3jp67sxjmf] {
      /*  position: fixed;*/
        top: 0;
        left: 0;
        right: 0;
        z-index: 2; /* Ensures it's above the sidebar */
    }

    .sidebar[b-3jp67sxjmf] {
        width: 250px;
        height: calc(100vh - 4.5rem); /* Adjust for the height of the top-row */
        position: fixed;
        top: 4.5rem; /* Start the sidebar below the top-row */
    }

    main[b-3jp67sxjmf] {
        /*margin-top: 4.5rem;*/ /* Ensure main content starts below the top-row */
        margin-left: 250px; /* Adjust for the width of the sidebar */
        flex: 1;
    }
}
/* _content/Lifeshare.Blazor.Web/Components/Layout/MainLayoutAnon.razor.rz.scp.css */
body[b-a750rbdgo1] {
    font-family: Arial, sans-serif;
    background-color: #FFB413; /* Yellow */
    color: #000050; /* Almost Black */
}

.navbar[b-a750rbdgo1] {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #000050; /* Almost Black */
    color: #FFB413; /* Yellow */
}

.navbar img[b-a750rbdgo1] {
    width: 350px;
    height: auto;
}

.hero[b-a750rbdgo1] {
    text-align: center;
}

.video[b-a750rbdgo1] {
    display: flex;
    justify-content: center;
    padding: 50px;
}

.cta[b-a750rbdgo1] {
    text-align: center;
    padding: 50px;
}

.cta button[b-a750rbdgo1] {
    background-color: #FFB413; /* Yellow */
    color: #000050; /* Almost Black */
    border: 2px solid #000050; /* Border */
    padding: 20px 100px;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta button:hover[b-a750rbdgo1] {
    background-color: #000050; /* Almost Black */
    color: #FFB413; /* Yellow */
}

.video-content[b-a750rbdgo1] {
    width: 100%;
    max-width: 800px; /* Increased video size */
    height: 450px; /* Adjusted to maintain 16:9 aspect ratio */
}

.page[b-a750rbdgo1] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-a750rbdgo1] {
    flex: 1;
}

.sidebar[b-a750rbdgo1] {
    /*background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #000000 100%);*/
    /*background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);*/
    /*background-image: url(https://w0.peakpx.com/wallpaper/634/185/HD-wallpaper-cool-dark-theme-2018-black-druffix-edge-final-galaxy-home-screen-hq-pure-samsung-space-style.jpg);*/
    background-image: url('images/istockphoto-944880340-170667a.jpg');
}

.top-row[b-a750rbdgo1] {
    /*background-color: #f7f7f7;*/
    background-color: #FFB413;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 4.5rem;
  /*  display: flex;*/
    align-items: center;
}

.top-row[b-a750rbdgo1]  a, .top-row[b-a750rbdgo1]  .btn-link {
    white-space: nowrap;
    margin-left: 1.5rem;
    text-decoration: none;
}

.top-row[b-a750rbdgo1]  a:hover, .top-row[b-a750rbdgo1]  .btn-link:hover {
    text-decoration: underline;
}

.top-row[b-a750rbdgo1]  a:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-a750rbdgo1] {
        display: none;
    }

    .top-row.auth[b-a750rbdgo1] {
        justify-content: space-between;
    }

    .top-row[b-a750rbdgo1]  a, .top-row[b-a750rbdgo1]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-a750rbdgo1] {
        flex-direction: row;
    }

    .sidebar[b-a750rbdgo1] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-a750rbdgo1] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-a750rbdgo1]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-a750rbdgo1], article[b-a750rbdgo1] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* _content/Lifeshare.Blazor.Web/Components/Layout/MainLayoutWizard.razor.rz.scp.css */
.page[b-x3hk5s9lny] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-x3hk5s9lny] {
    flex: 1;
}


/*.navbar-brand-logo {
    position: fixed;
    height: 70px;
    width: auto;
    left: 5px;*/ /* Position it from the left */
    /*top: 0;*/ /* Align to the top of the toolbar */
/*}*/

.sidebar[b-x3hk5s9lny] {
    /*background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #000000 100%);*/
    /*background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);*/
    /*background-image: url(https://w0.peakpx.com/wallpaper/634/185/HD-wallpaper-cool-dark-theme-2018-black-druffix-edge-final-galaxy-home-screen-hq-pure-samsung-space-style.jpg);*/
    background-image: url('images/istockphoto-944880340-170667a.jpg');
}

.top-row[b-x3hk5s9lny] {
    /*background-color: #f7f7f7;*/
    background-color: #010050;
    /*#FFB413;*/
    /* border-bottom: 1px solid #d6d5d5;*/
    justify-content: flex-end;
    height: 4.5rem;
 /*   display: flex;*/
    align-items: center;
}

.top-row[b-x3hk5s9lny]  a, .top-row[b-x3hk5s9lny]  .btn-link {
    white-space: nowrap;
    margin-left: 1.5rem;
    text-decoration: none;
}

.top-row[b-x3hk5s9lny]  a:hover, .top-row[b-x3hk5s9lny]  .btn-link:hover {
    text-decoration: underline;
}

.top-row[b-x3hk5s9lny]  a:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-x3hk5s9lny] {
        display: none;
    }

    .top-row.auth[b-x3hk5s9lny] {
        justify-content: space-between;
    }

    .top-row[b-x3hk5s9lny]  a, .top-row[b-x3hk5s9lny]  .btn-link {
        margin-left: 0;
    }
}

/*@media (min-width: 641px) {
    .page {
        flex-direction: row;
    }

    .sidebar {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth ::deep a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row, article {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}*/


@media (min-width: 641px) {
    .top-row[b-x3hk5s9lny] {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 2; /* Ensures it's above the sidebar */
    }

    .sidebar[b-x3hk5s9lny] {
        width: 250px;
        height: calc(100vh - 4.5rem); /* Adjust for the height of the top-row */
        position: fixed;
        top: 4.5rem; /* Start the sidebar below the top-row */
    }

    main[b-x3hk5s9lny] {
        margin-top: 4.5rem; /* Ensure main content starts below the top-row */
        flex: 1;
        /*        background-color: #010050;*/
        /* background-color: #201F65;*/
        /*background-color: #5C5ADF;*/

    }
}
/* _content/Lifeshare.Blazor.Web/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-5cx103dpkt] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-5cx103dpkt] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

/*.navbar-brand {
    font-size: 1.1rem;
}

.navbar-brand-logo {
    width:170px;
}*/

.navbar-brand-footer[b-5cx103dpkt] {
    width: 100px;
    bottom: 50px;
    position: fixed;
    left: 60px;
}

.oi[b-5cx103dpkt] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-5cx103dpkt] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

.nav-item:first-of-type[b-5cx103dpkt] {
    padding-top: 1rem;
}

.nav-item:last-of-type[b-5cx103dpkt] {
    padding-bottom: 1rem;
}

.nav-item[b-5cx103dpkt]  a {
    color: #d7d7d7;
    border-radius: 4px;
    height: 3rem;
    display: flex;
    align-items: center;
    line-height: 3rem;
}

.nav-item[b-5cx103dpkt]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: #FFD200;
}

.nav-item[b-5cx103dpkt]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: #FF9600;
}

@media (min-width: 641px) {
    .navbar-toggler[b-5cx103dpkt] {
        display: none;
    }

    .collapse[b-5cx103dpkt] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}
/* _content/Lifeshare.Blazor.Web/Components/Pages/CoverageChooser.razor.rz.scp.css */
.inline-contribution-numeric-field[b-cackyfoto8] {
    display: flex;
    align-items: center;
    margin-top: -20px; /* Adjust as necessary for alignment */
}

@media (max-width: 600px) { /* Adjust breakpoint as needed */
    .inline-contribution-numeric-field[b-cackyfoto8] {
        flex-direction: column;
        align-items: stretch;
    }
}
/* _content/Lifeshare.Blazor.Web/Components/Pages/GroupView.razor.rz.scp.css */
.pricing1[b-8847el3ic2] {
    font-family: "Montserrat", sans-serif;
    color: #8d97ad;
    font-weight: 300;
}

    .pricing1 h1[b-8847el3ic2],
    .pricing1 h2[b-8847el3ic2],
    .pricing1 h3[b-8847el3ic2],
    .pricing1 h4[b-8847el3ic2],
    .pricing1 h5[b-8847el3ic2],
    .pricing1 h6[b-8847el3ic2] {
        color: #3e4555;
    }

    .pricing1 .font-weight-medium[b-8847el3ic2] {
        font-weight: 500;
    }

    .pricing1 .bg-light[b-8847el3ic2] {
        background-color: #f4f8fa !important;
    }

    .pricing1 .subtitle[b-8847el3ic2] {
        color: #8d97ad;
        line-height: 24px;
        font-size: 14px;
    }

    .pricing1 .font-14[b-8847el3ic2] {
        font-size: 14px;
    }

    .pricing1 h5[b-8847el3ic2] {
        line-height: 22px;
        font-size: 18px;
    }

    .pricing1 .card.card-shadow[b-8847el3ic2] {
        -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
        box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
    }

    .pricing1 .on-hover[b-8847el3ic2] {
        -webkit-transition: 0.1s;
        -o-transition: 0.1s;
        transition: 0.1s;
    }

        .pricing1 .on-hover:hover[b-8847el3ic2] {
            -ms-transform: scale(1.05);
            transform: scale(1.05);
            -webkit-transform: scale(1.05);
            -webkit-font-smoothing: antialiased;
        }

    .pricing1 .btn-success-gradiant[b-8847el3ic2] {
        background: #2cdd9b;
        background: -webkit-linear-gradient(legacy-direction(to right), #2cdd9b 0%, #1dc8cc 100%);
        background: -webkit-gradient(linear, left top, right top, from(#2cdd9b), to(#1dc8cc));
        background: -webkit-linear-gradient(left, #2cdd9b 0%, #1dc8cc 100%);
        background: -o-linear-gradient(left, #2cdd9b 0%, #1dc8cc 100%);
        background: linear-gradient(to right, #2cdd9b 0%, #1dc8cc 100%);
    }

        .pricing1 .btn-success-gradiant:hover[b-8847el3ic2] {
            background: #1dc8cc;
            background: -webkit-linear-gradient(legacy-direction(to right), #1dc8cc 0%, #2cdd9b 100%);
            background: -webkit-gradient(linear, left top, right top, from(#1dc8cc), to(#2cdd9b));
            background: -webkit-linear-gradient(left, #1dc8cc 0%, #2cdd9b 100%);
            background: -o-linear-gradient(left, #1dc8cc 0%, #2cdd9b 100%);
            background: linear-gradient(to right, #1dc8cc 0%, #2cdd9b 100%);
        }

    .pricing1 .btn-danger-gradiant[b-8847el3ic2] {
        background: #ff4d7e;
        background: -webkit-linear-gradient(legacy-direction(to right), #ff4d7e 0%, #ff6a5b 100%);
        background: -webkit-gradient(linear, left top, right top, from(#ff4d7e), to(#ff6a5b));
        background: -webkit-linear-gradient(left, #ff4d7e 0%, #ff6a5b 100%);
        background: -o-linear-gradient(left, #ff4d7e 0%, #ff6a5b 100%);
        background: linear-gradient(to right, #ff4d7e 0%, #ff6a5b 100%);
    }

        .pricing1 .btn-danger-gradiant:hover[b-8847el3ic2] {
            background: #ff6a5b;
            background: -webkit-linear-gradient(legacy-direction(to right), #ff6a5b 0%, #ff4d7e 100%);
            background: -webkit-gradient(linear, left top, right top, from(#ff6a5b), to(#ff4d7e));
            background: -webkit-linear-gradient(left, #ff6a5b 0%, #ff4d7e 100%);
            background: -o-linear-gradient(left, #ff6a5b 0%, #ff4d7e 100%);
            background: linear-gradient(to right, #ff6a5b 0%, #ff4d7e 100%);
        }

    .pricing1 .btn-md[b-8847el3ic2] {
        padding: 15px 30px;
        font-size: 16px;
    }

    .pricing1 .onoffswitch[b-8847el3ic2] {
        width: 70px;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        margin: 0 auto;
    }

    .pricing1 .onoffswitch-label[b-8847el3ic2] {
        cursor: pointer;
        border: 2px solid transparent;
        border-radius: 20px;
    }

    .pricing1 .onoffswitch-inner[b-8847el3ic2] {
        width: 200%;
        margin-left: -100%;
        -webkit-transition: margin 0.3s ease-in 0s;
        -o-transition: margin 0.3s ease-in 0s;
        transition: margin 0.3s ease-in 0s;
    }

        .pricing1 .onoffswitch-inner[b-8847el3ic2]::before,
        .pricing1 .onoffswitch-inner[b-8847el3ic2]::after {
            display: block;
            float: left;
            width: 50%;
            height: 30px;
            padding: 0;
            line-height: 30px;
            font-size: 14px;
            color: white;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
        }

        .pricing1 .onoffswitch-inner[b-8847el3ic2]::before {
            content: "";
            padding-right: 27px;
            background-color: #2cdd9b;
            color: #FFFFFF;
        }

        .pricing1 .onoffswitch-inner[b-8847el3ic2]::after {
            content: "";
            padding-right: 24px;
            background-color: #3e4555;
            color: #999999;
            text-align: right;
        }

    .pricing1 .onoffswitch-switch[b-8847el3ic2] {
        width: 23px;
        margin: 6px;
        height: 23px;
        top: -1px;
        bottom: 0;
        right: 35px;
        border-radius: 20px;
        -webkit-transition: all 0.3s ease-in 0s;
        -o-transition: all 0.3s ease-in 0s;
        transition: all 0.3s ease-in 0s;
    }

    .pricing1 .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner[b-8847el3ic2] {
        margin-left: 0;
    }

    .pricing1 .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch[b-8847el3ic2] {
        right: 0px;
    }

    .pricing1 .price-badge[b-8847el3ic2] {
        top: -13px;
        left: 0;
        right: 0;
        width: 100px;
        margin: 0 auto;
    }

    .pricing1 .badge-inverse[b-8847el3ic2] {
        background-color: #3e4555;
    }

    .pricing1 .display-5[b-8847el3ic2] {
        font-size: 3rem;
        color: #263238;
    }

    .pricing1 .pricing sup[b-8847el3ic2] {
        font-size: 18px;
        top: -20px;
    }

    .pricing1 .pricing .yearly[b-8847el3ic2] {
        display: none;
    }
/* _content/Lifeshare.Blazor.Web/Components/Pages/Modals/ModalSubscribe.razor.rz.scp.css */
/* _content/Lifeshare.Blazor.Web/Components/Pages/Modals/ModalViewGroup.razor.rz.scp.css */

html[b-9kj0nvwqm3] {
    position: relative;
    overflow-x: hidden !important;
}

*[b-9kj0nvwqm3] {
    box-sizing: border-box;
}

body[b-9kj0nvwqm3] {
    font-family: 'Quicksand', sans-serif;
    color: #324e63;
}

a[b-9kj0nvwqm3], a:hover[b-9kj0nvwqm3] {
    text-decoration: none;
}

.icon[b-9kj0nvwqm3] {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

.wrapper[b-9kj0nvwqm3] {
    width: 100%;
    width: 100%;
    height: auto;
    min-height: 100vh;
    padding: 50px 20px;
    padding-top: 100px;
    display: flex;
    background-image: linear-gradient(-20deg, #ff2846 0%, #6944ff 100%);
    display: flex;
    background-image: linear-gradient(-20deg, #ff2846 0%, #6944ff 100%);

    @media screen and (max-width: 768px) {
        height: auto;
        min-height: 100vh;
        padding-top: 100px;[b-9kj0nvwqm3]
    }
}

.profile-card[b-9kj0nvwqm3] {
    width: 100%;
    min-height: 460px;
    margin: auto;
    box-shadow: 0px 8px 60px -10px rgba(13,28,39,0.6);
    background: #fff;
    border-radius: 12px;
    max-width: 700px;
    position: relative;
    &.active

{
    .profile-card__cnt

{
    filter: blur(6px);
}

.profile-card-message[b-9kj0nvwqm3],
.profile-card__overlay[b-9kj0nvwqm3] {
    opacity: 1;
    pointer-events: auto;
    transition-delay: .1s;
}

.profile-card-form[b-9kj0nvwqm3] {
    transform: none;
    transition-delay: .1s;
}

}

&__img[b-9kj0nvwqm3] {
    width: 150px;
    height: 150px;
    margin-left: auto;
    margin-right: auto;
    transform: translateY(-50%);
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 4;
    box-shadow: 0px 5px 50px 0px rgb(108, 68, 252), 0px 0px 0px 7px rgba(107, 74, 255, 0.5);

    @media screen and (max-width: 576px) {
        width: 120px;
        height: 120px;[b-9kj0nvwqm3]
    }

    img

{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

}

&__cnt[b-9kj0nvwqm3] {
    margin-top: -35px;
    text-align: center;
    padding: 0 20px;
    padding-bottom: 40px;
    transition: all .3s;
}

&__name[b-9kj0nvwqm3] {
    font-weight: 700;
    font-size: 24px;
    color: #6944ff;
    margin-bottom: 15px;
}

&__txt[b-9kj0nvwqm3] {
    font-size: 18px;
    font-weight: 500;
    color: #324e63;
    margin-bottom: 15px;
    strong

{
    //color: #ff2846;
    font-weight: 700;
}

}

&-loc[b-9kj0nvwqm3] {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    &__icon

{
    display: inline-flex;
    font-size: 27px;
    margin-right: 10px;
    //color: #6944ff;
}

}

&-inf[b-9kj0nvwqm3] {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-top: 35px;
    &__item

{
    padding: 10px 35px;
    min-width: 150px;

    @media screen and (max-width: 768px) {
        padding: 10px 20px;
        min-width: 120px;[b-9kj0nvwqm3]
    }
}

&__title[b-9kj0nvwqm3] {
    font-weight: 700;
    font-size: 27px;
    //color: #6944ff;
    color: #324e63;
}

&__txt[b-9kj0nvwqm3] {
    font-weight: 500;
    margin-top: 7px;
}

}

&-social[b-9kj0nvwqm3] {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    &__item

{
    display: inline-flex;
    width: 55px;
    height: 55px;
    margin: 15px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #405de6;
    box-shadow: 0px 7px 30px rgba(43,98,169,0.5);
    position: relative;
    font-size: 21px;
    flex-shrink: 0;
    transition: all .3s;

    @media screen and (max-width: 768px) {
        width: 50px;
        height: 50px;
        margin: 10px;[b-9kj0nvwqm3]
    }

    @media screen and (min-width: 768px) {
        &:hover[b-9kj0nvwqm3] {
            transform: scale(1.2);
        }
    }

    &.facebook

{
    background: linear-gradient(45deg, #3b5998, #0078d7);
    box-shadow: 0px 4px 30px rgba(43, 98, 169, 0.5);
}

&.twitter[b-9kj0nvwqm3] {
    background: linear-gradient(45deg, #1da1f2,#0e71c8);
    box-shadow: 0px 4px 30px rgba(19, 127, 212, 0.7);
}

&.instagram[b-9kj0nvwqm3] {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    box-shadow: 0px 4px 30px rgba(120, 64, 190, 0.6);
}

&.behance[b-9kj0nvwqm3] {
    background: linear-gradient(45deg, #1769ff, #213fca);
    box-shadow: 0px 4px 30px rgba(27, 86, 231, 0.7);
}

&.github[b-9kj0nvwqm3] {
    background: linear-gradient(45deg, #333333, #626b73);
    box-shadow: 0px 4px 30px rgba(63, 65, 67, 0.6);
}

&.codepen[b-9kj0nvwqm3] {
    background: linear-gradient(45deg, #324e63, #414447);
    box-shadow: 0px 4px 30px rgba(55, 75, 90, 0.6);
}

&.link[b-9kj0nvwqm3] {
    background: linear-gradient(45deg, #d5135a, #f05924);
    box-shadow: 0px 4px 30px rgba(223, 45, 70, 0.6);
}

}

.icon-font[b-9kj0nvwqm3] {
    display: inline-flex;
}

}

&-ctr[b-9kj0nvwqm3] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;

    @media screen and (max-width: 576px) {
        flex-wrap: wrap;[b-9kj0nvwqm3]
    }
}

&__button[b-9kj0nvwqm3] {
    background: none;
    border: none;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 19px;
    margin: 15px 35px;
    padding: 15px 40px;
    min-width: 201px;
    border-radius: 50px;
    min-height: 55px;
    color: #fff;
    cursor: pointer;
    backface-visibility: hidden;
    transition: all .3s;

    @media screen and (max-width: 768px) {
        min-width: 170px;
        margin: 15px 25px;[b-9kj0nvwqm3]
    }

    @media screen and (max-width: 576px) {
        min-width: inherit;
        margin: 0;
        margin-bottom: 16px;
        width: 100%;
        max-width: 300px;

        &:last-child[b-9kj0nvwqm3] {
            margin-bottom: 0;
        }
    }

    &:focus

{
    outline: none !important;
}

@media screen and (min-width: 768px) {
    &:hover[b-9kj0nvwqm3] {
        transform: translateY(-5px);
    }
}

&:first-child[b-9kj0nvwqm3] {
    margin-left: 0;
}

&:last-child[b-9kj0nvwqm3] {
    margin-right: 0;
}

&.button--blue[b-9kj0nvwqm3] {
    background: linear-gradient(45deg, #1da1f2, #0e71c8);
    box-shadow: 0px 4px 30px rgba(19, 127, 212, 0.4);
    &:hover

{
    box-shadow: 0px 7px 30px rgba(19, 127, 212, 0.75);
}

}

&.button--orange[b-9kj0nvwqm3] {
    background: linear-gradient(45deg, #d5135a, #f05924);
    box-shadow: 0px 4px 30px rgba(223, 45, 70, 0.35);
    &:hover

{
    box-shadow: 0px 7px 30px rgba(223, 45, 70, 0.75);
}

}

&.button--gray[b-9kj0nvwqm3] {
    box-shadow: none;
    background: #dcdcdc;
    color: #142029;
}

}

&-message[b-9kj0nvwqm3] {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 130px;
    padding-bottom: 100px;
    opacity: 0;
    pointer-events: none;
    transition: all .3s;
}

&-form[b-9kj0nvwqm3] {
    box-shadow: 0 4px 30px rgba(15, 22, 56, 0.35);
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
    background: #fff;
    border-radius: 10px;
    padding: 35px;
    transform: scale(.8);
    position: relative;
    z-index: 3;
    transition: all .3s;

    @media screen and (max-width: 768px) {
        max-width: 90%;
        height: auto;[b-9kj0nvwqm3]
    }

    @media screen and (max-width: 576px) {
        padding: 20px;[b-9kj0nvwqm3]
    }

    &__bottom

{
    justify-content: space-between;
    display: flex;

    @media screen and (max-width: 576px) {
        flex-wrap: wrap;[b-9kj0nvwqm3]
    }
}

}

textarea[b-9kj0nvwqm3] {
    width: 100%;
    resize: none;
    height: 210px;
    margin-bottom: 20px;
    border: 2px solid #dcdcdc;
    border-radius: 10px;
    padding: 15px 20px;
    color: #324e63;
    font-weight: 500;
    font-family: 'Quicksand', sans-serif;
    outline: none;
    transition: all .3s;
    &:focus

{
    outline: none;
    border-color: #8a979e;
}

}

&__overlay[b-9kj0nvwqm3] {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
    background: rgba(22, 33, 72, 0.35);
    border-radius: 12px;
    transition: all .3s;
}
}
/* _content/Lifeshare.Blazor.Web/Components/Pages/Subscribe.razor.rz.scp.css */
body[b-lfpcbi2xft] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #242d60;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Ubuntu', sans-serif;
    height: 100vh;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

section[b-lfpcbi2xft] {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    width: 400px;
    height: 112px;
    border-radius: 6px;
    justify-content: space-between;
    margin: 10px;
}

.product[b-lfpcbi2xft] {
    display: flex;
}

.description[b-lfpcbi2xft] {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

p[b-lfpcbi2xft] {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.154px;
    color: #242d60;
    height: 100%;
    width: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

svg[b-lfpcbi2xft] {
    border-radius: 6px;
    margin: 10px;
    width: 54px;
    height: 57px;
}

h3[b-lfpcbi2xft],
h5[b-lfpcbi2xft] {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.154px;
    color: #242d60;
    margin: 0;
}

h5[b-lfpcbi2xft] {
    opacity: 0.5;
}

a[b-lfpcbi2xft] {
    text-decoration: none;
    color: white;
}

#checkout-and-portal-button[b-lfpcbi2xft] {
    height: 36px;
    background: #556cd6;
    color: white;
    width: 100%;
    font-size: 14px;
    border: 0;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 0.6;
    border-radius: 0 0 6px 6px;
    transition: all 0.2s ease;
    box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
}

    #checkout-and-portal-button:hover[b-lfpcbi2xft] {
        opacity: 0.8;
    }
/* _content/Lifeshare.Blazor.Web/Components/Pages/ThankYouPayment.razor.rz.scp.css */
.cta[b-51afpfr7lm] {
    text-align: left;
    padding-top: 25px;
}

.cta button[b-51afpfr7lm] {
    background-color: #FFB413; /* Yellow */
    color: #000050; /* Almost Black */
    border: 2px solid #000050;
    padding: 10px 50px;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border-radius: 14px;
}

.cta button:hover[b-51afpfr7lm] {
    background-color: #000050; /* Almost Black */
    color: #FFB413; /* Yellow */
    border-radius: 14px;
}

.ben button[b-51afpfr7lm] {
    background-color: #FFB413; /* Yellow */
    color: #000050; /* Almost Black */
    border: 2px solid #000050;
    padding: 5px 25px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border-radius: 14px;
}

.ben button:hover[b-51afpfr7lm] {
    background-color: #000050; /* Almost Black */
    color: #FFB413; /* Yellow */
    border-radius: 14px;
}
/* _content/Lifeshare.Blazor.Web/Components/Pages/UserEdit.razor.rz.scp.css */
mud-paper mud-elevation-8 mud-picker mud-picker-paper mud-dialog[b-wss7ahd9wg] {
    border-radius: 0px !important;
    border-width: 0px !important;
}
/* _content/Lifeshare.Blazor.Web/Components/Pages/Verify.razor.rz.scp.css */
.cta[b-w1dlhyl406] {
    text-align: center;
    padding: 50px;
}

.cta button[b-w1dlhyl406] {
    background-color: #FFB413; /* Yellow */
    color: #000050; /* Almost Black */
    border: 2px solid #000050;
    padding: 20px 100px;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border-radius: 14px;
}

.cta button:hover[b-w1dlhyl406] {
    background-color: #000050; /* Almost Black */
    color: #FFB413; /* Yellow */
    border-radius: 14px;
}
/* _content/Lifeshare.Blazor.Web/Components/Pages/Welcome.razor.rz.scp.css */

body[b-wtbu27hwt0], html[b-wtbu27hwt0] {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Hide horizontal overflow */
    color: #FFFFFF;
}

.img-fluid[b-wtbu27hwt0] {
    max-width: 100%;
    height: auto;
}

/* Further adjustments for smaller screens */
@media (max-width: 767px) {
    .hero img[b-wtbu27hwt0] {
        max-height: 250px; /* Adjust the height as needed */
        object-fit: cover; /* This makes the image cover the area without distorting aspect ratio */
    }
}


.container[b-wtbu27hwt0], .navbar[b-wtbu27hwt0], .cta[b-wtbu27hwt0] {
    margin: 0 auto; /* Center align if needed */
    padding: 0 15px; /* Adjust padding */
    max-width: 100%; /* Ensure it doesn't exceed the viewport width */
}

/* Adjustments for smaller screens */
@media (max-width: 767px) {
    .navbar[b-wtbu27hwt0], .cta[b-wtbu27hwt0] {
        padding: 0 10px; /* Less padding on smaller screens */
    }
    /* Other responsive adjustments */
}

.navbar[b-wtbu27hwt0] {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: #000050; /* Almost Black */
    color: #FFB413; /* Yellow */
}

.navbar img[b-wtbu27hwt0] {
    width: 250px;
    height: auto;
}

.hero[b-wtbu27hwt0] {
    text-align: center;
    color: #FFFFFF;
}

.video[b-wtbu27hwt0] {
    display: flex;
    justify-content: center;
    padding: 50px;
    top: 100px;
}

.cta[b-wtbu27hwt0] {
    text-align: center;
    padding: 50px;
}

.cta button[b-wtbu27hwt0] {
    background-color: #FFB413; /* Yellow */
    color: #000050; /* Almost Black */
    border: 2px solid #000050;
    padding: 20px 100px;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border-radius: 14px;
}

.cta button:hover[b-wtbu27hwt0] {
    background-color: #000050; /* Almost Black */
    color: #FFB413; /* Yellow */
    border-radius: 14px;
}

.video-content[b-wtbu27hwt0] {
    width: 100%;
    max-width: 800px; /* Increased video size */
    height: 450px; /* Adjusted to maintain 16:9 aspect ratio */
}

/* _content/Lifeshare.Blazor.Web/Components/SaveCancelDelete.razor.rz.scp.css */
input[b-tefudr6mn0] {
    position: relative;
    height: 30px;
    width: 60px;
    -webkit-appearance: none;
    background: purple;
    outline: none;
    border-radius: 15px;
}

input[b-tefudr6mn0]:before {
    cursor: pointer;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    transform: scale(0.85);
    border-radius: 50%;
    background: white;
    transition: .3s;
}

input:checked[b-tefudr6mn0]:before {
    left: 30px;
}
/* _content/Lifeshare.Blazor.Web/Components/ToggleSwitch.razor.rz.scp.css */
input[b-hfdt152pmo] {
    position: relative;
    height: 30px;
    width: 60px;
    -webkit-appearance: none;
    background: purple;
    outline: none;
    border-radius: 15px;
}

input[b-hfdt152pmo]:before {
    cursor: pointer;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    transform: scale(0.85);
    border-radius: 50%;
    background: white;
    transition: .3s;
}

input:checked[b-hfdt152pmo]:before {
    left: 30px;
}
