/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 10 2026 | 17:32:52 */
.login-btn a,
.dashboard-btn a,
.register-btn a,
.logout-btn a {
    display: inline-block;
    background: #0057A8;
    color: #fff !important;
    padding: 12px 15px !important;
    border-radius: 0px 10px 0px 0px;
    text-decoration: none;
    font-weight: 600;
    line-height: 1;
}

.login-btn a:hover,
.dashboard-btn a:hover,
.register-btn a:hover,
.logout-btn a:hover {
    background: #00458a;
	text-decoration: underline;
}

:root {
    --header-height: 70px;
    --sidebar-width: 70px;
}

/* Mobile menu at 768px and below */
@media screen and (max-width: 768px) {

    .wp-block-navigation__responsive-container-open:not(.always-shown) {
        display: flex !important;
    }

    .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
        display: none !important;
    }
}

/* Desktop menu above 768px */
@media screen and (min-width: 769px) {

    .wp-block-navigation__responsive-container-open:not(.always-shown) {
        display: none !important;
    }

    .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
        display: block !important;
        width: 100%;
        position: relative;
        z-index: auto;
        background: inherit;
    }
}
/* ==========================================
   FIXED HEADER
========================================== */

header.wp-block-template-part {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
}

/* ==========================================
   LEFT SIDEBAR
========================================== */

.svla-nav-container {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: var(--sidebar-width);
    height: calc(100vh - var(--header-height));
    background: #0058a4;
    z-index: 1000;
}

.svla-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.svla-nav li {
    margin: 0;
    padding: 0;
}

.svla-nav a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    transition: background .2s ease;
}

.svla-nav a:hover {
    background: rgba(255,255,255,.15);
}

/* ==========================================
   DASHBOARD CONTENT
========================================== */

.dash-container {
    margin-left: calc(var(--sidebar-width) + 30px);
    margin-top: calc(var(--header-height) + 20px);
    padding: 30px;
}

/* Parent containing all 4 dashboard cards */
body.page-id-203 .dash-container > .wpb_column > .vc_column-inner > .wpb_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-start;
}

/* ==========================================
   DASHBOARD CARDS
========================================== */

body.page-id-203 .dash-container .svla-dash-item {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);

    height: 520px;
    overflow-y: auto;
    overflow-x: hidden;

    box-sizing: border-box;
    padding: 20px;

    border: 1px solid #d9d9d9;
    border-radius: 10px;
}

/* Video panel auto height */
.svl-video-dash {
    height: fit-content !important;
    overflow: visible !important;
}

/* ==========================================
   SCROLLBAR
========================================== */

.svla-dash-item::-webkit-scrollbar {
    width: 8px;
}

.svla-dash-item::-webkit-scrollbar-track {
    background: #111;
}

.svla-dash-item::-webkit-scrollbar-thumb {
    background: #0058a4;
    border-radius: 4px;
}

/* ==========================================
   STACK AT 1440px
========================================== */

@media screen and (max-width: 1440px) {

    body.page-id-203 .dash-container .svla-dash-item {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* ==========================================
   MOBILE
========================================== */

@media screen and (max-width: 768px) {

    .svla-nav-container {
        position: relative;
        top: 0;
        width: 100%;
        height: auto;
    }

    .dash-container {
        margin-left: 0;
        padding: 20px;
    }

    .dash-container .svla-dash-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ==========================================
   HERO SECTION
========================================== */

.entry-row {
    display: flex;
    width: 100vw;
    height: 80vh;

    margin: 0 !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

/* Remove WPBakery padding */
.entry-row .vc_column-inner {
    padding: 0 !important;
    height: 100%;
}

.entry-row .wpb_wrapper {
    height: 100%;
}

/* ==========================================
   LEFT HERO
========================================== */

.left-hero {
    flex: 0 0 30% !important;
    max-width: 30% !important;

    background: #0058a4;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 60px;
    box-sizing: border-box;

    height: 100%;
    
}

/* Force all WPBakery wrappers to fill the column */
.left-hero > .vc_column-inner,
.left-hero > .vc_column-inner > .wpb_wrapper,
.left-hero .wpb_text_column,
.left-hero .wpb_text_column .wpb_wrapper {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}


.left-hero h1 {
    color: #fff;
    margin: 0;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
}

/* ==========================================
   RIGHT HERO
========================================== */

.slider-display {
    flex: 0 0 70% !important;
    max-width: 70% !important;

    height: 100%;
    overflow: hidden;
}

/* Force WPBakery wrappers to fill height */
.slider-display > .vc_column-inner,
.slider-display > .vc_column-inner > .wpb_wrapper,
.slider-display .wpb_raw_code,
.slider-display .wpb_wrapper {
    height: 100%;
}

/* ==========================================
   SWIPER
========================================== */

.slider-display .swiper,
.slider-display .swiper-wrapper,
.slider-display .swiper-slide {
    width: 100%;
    height: 100%;
}

.slider-display .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

    .entry-row {
        flex-direction: column;
        height: auto;
    }

    .left-hero,
    .slider-display {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        
    }

    .left-hero {
        padding: 20px;
        justify-content: center
    }
    
    .left-hero .wpb_text_column {
        margin-bottom: 0px !important;
    }

    .slider-display {
        height: 60vh;
    }
}

.academy-user {
    display: flex;
    align-items: center;
}

.academy-user .wp-block-navigation-item__content {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: default;
    pointer-events: none;
}

.academy-user i {
    color: #0058a4;
    font-size: 18px;
}

.academy-user-name {
    font-weight: 600;
}

.academy-user span {
    color: #0058a4; 
}

/* ==========================================
   LOGIN FORM CONTAINER - LOST PASSWORD
========================================== */

#rcp_login_form input[type="text"],
#rcp_login_form input[type="password"],
#rcp_login_form input[type="email"] {
    display: flex !important;
    margin-left: 0 !important;
}

#rcp_login_form p,
#rcp_login_form fieldset,
#rcp_login_form label {
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    min-height: auto !important;
    height: auto !important;
    line-height: .4 !important;
	max-width: 500px;
}

#rcp_login_form {
	display: flex;
	justify-content: center;
}

#rcp_login_form p:last-child {
    display: flex;
}

/* ==========================================
   LOGIN FORM CONTAINER
========================================== */

#rcp_login_form {
    max-width:  !important;
    margin: 0 auto !important;
}

.rcp_login_data {
    border: none;
    padding: 0;
    margin: 0;
    display: flex !important;
    flex-direction: column;
    
}

/* ==========================================
   FORM ROWS
========================================== */

.rcp_login_data p {
    display: block;
    width: 100%;
    margin: 0 0 24px;
}

/* ==========================================
   LABELS
========================================== */

.rcp_login_data label {
    display: block;
    margin-bottom: 8px;

    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: white;
}

/* ==========================================
   TEXT INPUTS
========================================== */

.rcp_login_data input[type="text"],
.rcp_login_data input[type="email"],
.rcp_login_data input[type="password"] {
    width: 100%;
    height: 56px;

    padding: 0 16px;

    border: 1px solid #d9d9d9;
    border-radius: 6px;

    font-family: "Montserrat", sans-serif;
    font-size: 16px;

    box-sizing: border-box;
    transition: all .2s ease;
}

.rcp_login_data input[type="text"]:focus,
.rcp_login_data input[type="email"]:focus,
.rcp_login_data input[type="password"]:focus {
    outline: none;
    border-color: #0058a4;
    box-shadow: 0 0 0 3px rgba(0,88,164,.15);
}

/* ==========================================
   REMEMBER ME
========================================== */

.rcp_login_data p:has(#rcp_user_remember) {
    display: flex;
    align-items: center;
    gap: 10px;
}

#rcp_user_remember {
    width: 18px;
    height: 18px;
    margin: 0;
}

.rcp_login_data p:has(#rcp_user_remember) label {
    margin: 0;
}

/*  */

/* ==========================================
   LOST PASSWORD FORM RESET
========================================== */

#rcp_lostpassword_form input[type="text"],
#rcp_lostpassword_form input[type="email"] {
    display: flex !important;
    margin-left: 0 !important;
}

#rcp_lostpassword_form p,
#rcp_lostpassword_form fieldset,
#rcp_lostpassword_form label {
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    min-height: auto !important;
    height: auto !important;
    line-height: normal !important;
}

#rcp_lostpassword_form p:last-child {
    display: flex;
}

/* ==========================================
   LOST PASSWORD FORM CONTAINER
========================================== */

#rcp_lostpassword_form {
    margin: 0 auto !important;
}

.rcp_lostpassword_data {
    border: none;
    padding: 0;
    margin: 0;
    display: flex !important;
    flex-direction: column;
}

/* ==========================================
   FORM ROWS
========================================== */

.rcp_lostpassword_data p {
    display: block;
    width: 100%;
    margin: 0 0 24px;
}

/* ==========================================
   LABELS
========================================== */

.rcp_lostpassword_data label {
    display: block;
    margin-bottom: 8px;

    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: white;
}

/* ==========================================
   TEXT INPUTS
========================================== */

.rcp_lostpassword_data input[type="text"],
.rcp_lostpassword_data input[type="email"] {
    width: 100%;
    height: 56px;

    padding: 0 16px;

    border: 1px solid #d9d9d9;
    border-radius: 6px;

    font-family: "Montserrat", sans-serif;
    font-size: 16px;

    box-sizing: border-box;
    transition: all .2s ease;
}

.rcp_lostpassword_data input[type="text"]:focus,
.rcp_lostpassword_data input[type="email"]:focus {
    outline: none;
    border-color: #0058a4;
    box-shadow: 0 0 0 3px rgba(0,88,164,.15);
}

/* ==========================================
   SUBMIT BUTTON
========================================== */

#rcp_lostpassword_submit {
    height: 56px;

    background: #0058a4;
    color: #fff;

    border: none;
    border-radius: 6px;

    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;

    cursor: pointer;
    transition: background .2s ease;
}

#rcp_lostpassword_submit:hover {
    background: #00468a;
}

/* ==========================================
   REGISTRATION FORM
========================================== */

#rcp_registration_form {
    max-width: 900px;
    margin: 0 auto;
}

/* ==========================================
   HEADER
========================================== */

.rcp_header {
    text-align: center;
}

/* ==========================================
   USER FIELDS
========================================== */

.rcp_user_fieldset {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rcp_user_fieldset p {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    margin-bottom: 24px;
}

.rcp_user_fieldset label {
    width: 100%;
    margin-bottom: 8px;
    text-align: left;
}

/* First / Last Name */
#rcp_user_email_wrap,
#rcp_user_login_wrap,
#rcp_user_first_wrap,
#rcp_user_last_wrap,
#rcp_password_wrap,
#rcp_password_again_wrap {
    width: 100%;
    max-width: 500px;
}

#rcp_user_email_wrap input,
#rcp_user_login_wrap input,
#rcp_user_first_wrap input,
#rcp_user_last_wrap input,
#rcp_password_wrap input,
#rcp_password_again_wrap input {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}



/* ==========================================
   PASSWORD REQUIREMENTS
========================================== */

#rcp_user_pass_requirements {
    margin-top: 10px;

    font-size: 13px;
    line-height: 1.6;
    color: #bdbdbd;

    text-align: center;
}

#rcp_user_pass_requirements .rcp_strong_special {
    color: #fff;
    background: none;
    padding: 0;
    border: 0;
}

/* ==========================================
   MEMBERSHIP LEVEL
========================================== */

#rcp_subscription_levels {
    width: 100%;
    margin: 30px 0;
}

#rcp_subscription_levels li {
    width: 100%;
    box-sizing: border-box;
}

/* ==========================================
   MEMBERSHIP TABLE
========================================== */

.rcp_registration_total {
    width: 100%;
}

.rcp_registration_total_details {
    width: 100% !important;
    table-layout: fixed;
}

.rcp_registration_total_details th,
.rcp_registration_total_details td {
    width: 50%;
}

/* ==========================================
   BUTTON
========================================== */

#rcp_submit_wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
}

#rcp_submit {
    width: fit-content;
    min-width: 250px;
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

    .rcp_user_fieldset p {
        max-width: 100%;
    }

}

/* ==========================================
   CENTER ALL REGISTRATION SECTIONS
========================================== */

#rcp_registration_form {
    max-width: 500px;
    margin: 0 auto;
}

.rcp_user_fieldset,
.rcp_subscription_fieldset,
.rcp_registration_total,
#rcp_submit_wrap {
    width: 100%;
    flex-direction: column;
    align-items: center;
}

/* ==========================================
   CLOUDFLARE TURNSTILE
========================================== */

.cf7-cf-turnstile {
    display: flex !important;
    justify-content: center;
    align-items: center;

    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.cf7-cf-turnstile .cf-turnstile {
    margin: 0 auto;
}

/* Remove plugin's forced line break */
.cf-turnstile-br {
    display: none;
}

#rcp_submit {
background: #0057A8;
color: #fff !important;
padding: 12px 15px;
border-radius: 0px 10px 0px 0px;
text-decoration: none;
font-weight: 600;
line-height: 1;   
}

/* vsel */

/* Event container */
#vsel .vsel-content {
    background: #0058a4;
    padding: 25px;
    border-radius: 12px;
    border: none !important;

    display: flex;
    flex-direction: column;

    margin-bottom: 20px;
}

/* Remove plugin floats */
#vsel .vsel-alignleft,
#vsel .vsel-alignright {
    float: none !important;
    width: 100% !important;
}

/* Left section */
#vsel .vsel-meta {
    width: 100% !important;
    margin-bottom: 15px;
}

/* Right section */
#vsel .vsel-info {
    width: 100% !important;
}

/* Event title */
#vsel .vsel-meta-title {
    color: #fff;
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 15px;
}

/* Date / Time / Location */
#vsel .vsel-meta-date,
#vsel .vsel-meta-time,
#vsel .vsel-meta-location {
    color: #fff;
    font-size: 18px;
}

/* Address link */
#vsel .vsel-text a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}

/* Remove empty spacing */
#vsel .vsel-text p {
    margin: 0;
}

/* Scroll container */
#vsel {
    height: 420px;
    overflow-y: auto;
    padding: 10px;
    scrollbar-width: thin;
    scrollbar-color: #0058a4 transparent;
}

/* Powerpoints */

.file-tbl {
    display: flex;
    align-items: center;
    background-color: rgb(0, 88, 164);
    padding: 15px;
    border-radius: 10px;
}

.ninja_clmn_nm_powerpoints {
    color: white !important;
}

.file-tbl-sub a {
    display: block;
    padding: 8px;
    text-decoration: none;
}

.file-tbl h5 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0px 0px 20px;
}

.file-tbl img {
    height: 64px;
    width: auto;
    margin: 0px 20px 0px 0px
}

.svla-nav a {
    position: relative;
}

.svla-nav a::before {
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translate(8px,-50%);
    border: 6px solid transparent;
    border-right-color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: .2s;
    
}

.svla-nav a::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 100%;
    top: 50%;
    font-size: 14px;
    transform: translate(20px,-50%);
    background: #fff;
    color: #0058a4;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0,0,0,.2);
    opacity: 0;
    visibility: hidden;
    transition: .2s;
    z-index: 99;
}

.svla-nav a:hover::before,
.svla-nav a:hover::after {
    opacity: 1;
    visibility: visible;
}

.svla-nav li.active {
    background: rgb(17, 17, 17);
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
	outline: none;
}

/* Show outline ONLY for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 3px solid #f58220;
	outline-offset: 3px;
	border-radius: 2px; /* optional, helps with buttons */
}

.wp-block-navigation__responsive-container-close, .wp-block-navigation__responsive-container-open {
    color: #0058a4
}