@import url('/layouts/chappell/fonts-new/font.css');

:root {
    --primary-color: #0078b5;
    --primary-dark:#003b64;
    --primary800:#0079b6;
    --primary700:#5db4cf;
    --primary600:#5eb4cf;    
    --blue500:#9dc4ca;
    --blue600:#e7f1ee;
    --secondary-color: #323d49;
    --black: #000000;
    --grey:#333e48;
    --grey800:#758393;
    --grey700:#9aa2ae;
    --white: #FFFFFF;
    --white800: #f8f8f9;
    --white700:#e4e5e6;
    --red:#e52822;
    --yellow:#ffc855;
    --orange:#f79525;
    --beige:#f5e6c0;    
    --greenmint:#a3b359;
    --green-dark:#5b8328;
    --dm-sans-font: 'DM Sans', sans-serif;
    --roboto-regular: 'Roboto Condensed Regular';
    --roboto-bold: 'Roboto Condensed Bold';
}
body {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: var(--dm-sans-font);
    font-weight: 400;
    font-size: 18px;
    /* overflow-x: hidden; */
}
ul, ol{
    list-style: none;
    margin: 0;
    padding: 0;
}
::marker {
    color: var(--primary-color);
}
a{
    text-decoration: none;
    color: inherit;
}
h1{
    font-size: 42px;
    line-height: 1.0;
    font-family:var(--roboto-bold);
    color: var(--primary-color);
    margin: 0;
}
h2{
    font-size: 32px;
    line-height: 1.0;
    font-family:var(--roboto-bold);
    color: var(--secondary-color);
    margin: 0;
}
h3{
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 0.2rem;
    font-family:var(--dm-sans-font);
font-weight:700;
}
p{
    font-size: 18px;
    line-height: 1.4;
    font-family: var(--dm-sans-font);
    font-weight: 400;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
	text-align: left;
}
.text-center p {
	text-align: center;
}
/* Custom scrollbar */
#style-2::-webkit-scrollbar-track
{
	-webkit-box-shadow: unset;
	border-radius: 10px;
	background-color: #F5F5F5;
}

#style-2::-webkit-scrollbar
{
	width: 10px;
	background-color: #F5F5F5;
}

#style-2::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: unset;
	background-color: #9CC3CA;
}

/* Header-Footer CSS */
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}
.middle_static_sec .e-rte-image.e-imginline{
	display: block;
    max-width: 100%;
    padding: 0;
    vertical-align: middle;
}
.navbar{
    justify-content: end;
    padding: 1rem;
    
}
.head-logo{
    height: 40px;
}
.tophead{
    background: var(--primary800);
}
.tophead .navbar{
    justify-content: space-between;
}
.offcanvas.offcanvas-end {
    width: 300px;
    background: var(--primary800);
    border: none;
}
.offcanvas-header {
    position: absolute;
    left: -43px;
    top: 0;
    padding: 0;
    background: var(--primary800);
}
.offcanvas-header .btn-close{
    margin: 0;
    border-radius: 0;
    filter: invert(1);
    border: 0;
    opacity: 1;
    padding: 0.8rem;
}
.offcanvas-body{
    padding: 0;
}
.offcanvas-body ul li a {
    font-size: 16px;
    width: 100%;
    display: block;
    padding: 1rem 1.5rem 1rem 2rem;
    color: var(--white);
    border-bottom: 1px solid #ffffff2b;
}
.offcanvas-body ul li a:hover{
    background: var(--primary-color);
    color: var(--blue600);
}
/* Megamenu */
.accordion_container .accordion_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #ffffff2b;
    color: var(--white);
    cursor: pointer;
    text-transform: capitalize;
    font-size: 18px;
}
.accordion_head.active{
    background: var(--primary-color);
    color: var(--white);
}
.accordion_container .plusminus svg {
    width: 1rem;
    height: 1rem;
    transition: all 0.5s;
}


footer{
    background-size: cover !important;
    padding: 5rem 0;
    text-align: center;
}
footer h4{
    font-size: 18px;
    line-height: 1.4;
    font-family: var(--roboto-regular);
    color: var(--primary700);
    margin: 4rem 0;
}
footer ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
}
footer ul li a{
    font-size: 18px;
    line-height: 1.0;
    font-family: var(--roboto-regular);
    color: var(--white);
    text-transform: uppercase;
    padding: 0.4rem 1.3rem;
    border-radius: 30px;
}
footer ul li a:hover{
    background: var(--black);
    color: var(--beige);
}
/* Common CSS */
#secspace{
    padding: 2.5rem;
}
.heading{
    position: relative;
    display: block;
}
.heading::before{
    content: "";
    display: inline-block;
    width: 20px;
    height: 100%;
    background: var(--yellow);
    position: absolute;
}
.heading h2, .heading h1{
    padding-left: 2.5rem;
    line-height: 1.0;
    font-size: 42px;
    font-family:var(--roboto-bold);
    color: var(--primary-color);
    margin: 0;
    display: block;
    width: 100%;
    word-break: break-word;
}
.heading b{
    color: var(--orange);
    display: inline-block;
}
/* Breathing room above section headings (skip the first heading in a section and any intentionally zeroed mt-0 headings) */
* + .heading:not(.mt-0){
    margin-top: 4rem !important;
}
.card{
    border: 1px solid transparent;
    border-radius: 0;
    text-align: center;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: border-color .2s ease, border-radius .2s ease, box-shadow .2s ease;
}
.card:hover{
    border-color: #999;
    border-radius: 5px;
    box-shadow: 0 4px 14px rgba(0, 59, 100, 0.15);
}
.card:hover .card-body{
    background: linear-gradient(90deg, #E7F1EE 0%, #FFFFFF 100%);
}
.card-body h5 a{
    transition: color .2s ease;
}
.card:hover .card-body h5 a{
    color: #ef0501;
}
/* Make the whole card clickable via its existing sport link (stretched overlay) */
.card > a{
    display: block;
}
.card > a::after{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}
/* keep the separate "(6+ teams?)" league link clickable above the overlay */
.card-body span a{
    position: relative;
    z-index: 2;
}
/* brighten the image on hover */
.card img{
    transition: filter .25s ease;
}
.card:hover img{
    filter: brightness(1.08);
}
.card img {
    height: calc(150px - 0px);
    object-fit: cover;
}
.shield_blog img{
    height: 100%;
}
/* keep the shield image off the hover border/bg, top & bottom */
.shield_blog .card img{
    margin: 5px 0;
}
.card-body h6{
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 0.3rem;
}
.card-body span{
    font-size: 16px;
    line-height: 1.2;
    color: var(--primary800);
    margin-bottom: 0;
}
.card-body h5{
    font-size: 18px;
    line-height: 1.2;
    font-family:var(--dm-sans-font);
    font-weight:700;
    color: var(--primary800);
    text-transform: uppercase;
    margin-bottom: 0;
}
.ad_sec{
    background: var(--greenmint);
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    justify-content: flex-start;
    word-break: break-word;
}
.ad_sec img{
    height: 100%;
    width: 235px;
    object-fit: fill;
    object-position: left;
}
.ad_sec h4{
    font-size: 28px;
    line-height: 1.2;
    font-family:var(--dm-sans-font);
    font-weight:300;;
    color: var(--white);
    margin-bottom: 0;
    padding: 1.5rem;
}
.ad_sec h2{
    font-size: 32px;
    line-height: 1.2;
    color: var(--white);
    display: block;
    margin-bottom: 1rem;
}
.ad_sec h3{
    font-size: 28px;
    line-height: 1.2;
    font-family:var(--dm-sans-font);
    font-weight:300;
    color: var(--white);
    margin-bottom: 0;
}
.callus{
    font-size: 28px;
    line-height: 1.0;
    font-family: var(--dm-sans-font);
    font-weight: 400;
    color: var(--secondary-color);
}
.callus a{
    font-size: 28px;
    line-height: 1.0;
    font-family:var(--dm-sans-font);
    font-weight:700;
    background: var(--greenmint);
    color: var(--white);
    padding: 0.2rem 1rem;
}
.list-content{
    list-style:disc;
    padding-left: 1rem;
}
.list-content p{
    margin: 0;
}
.getlink{
    font-size: 20px;
    color: var(--primary-color);
    text-decoration: underline;
}
.btn-common{
    background: var(--primary700);
    color: var(--white);
    font-size: 18px;
    font-weight: 400;
    padding: 10px 30px;
    display: inline-block;
    border: 1px solid var(--primary700);
    border-radius: 10px;
}
.btn-common:hover{
    background: var(--white);
    color: var(--primary700);
    border: 1px solid var(--primary700);
}
.buy-btn{
    background: #003A63;
    color: var(--white);
    font-size: 18px;
    font-weight: 400;
    padding: 10px 20px;
    display: inline-block;
    white-space: nowrap;
    border: 1px solid #003A63;
    border-radius: 8px;
}
.buy-btn:hover{
    background: var(--white);
    color: #003A63;
    border: 1px solid #003A63;
}
.tooltip-btn{
    border: 0;
    padding: 0;
    line-height: normal;
    background: transparent;
}
.tooltip-btn img{
    width: 12px;
    height: 12px;
}
/* Home page CSS */
#banner{
    background-size: cover !important;
    height: 420px;
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 3rem 0;
}
.banner-home{ 
    background: url("../images/home_banner.png") no-repeat center right;
}
.baseball-banner{
    background: url("../images/baseball_banner.png") no-repeat center right;
}
.softball-banner{
    background: url("../images/softball_banner.png") no-repeat center right;
}
.basketball-banner{
    background: url("../images/basketball_banner.png") no-repeat center right;
}
.vollyball-banner{
    background: url("../images/vollyball_banner.png") no-repeat center right;
}
.league-group-banner{
    background: url("../images/league_group_banner.png") no-repeat center right;
}
.tournament-banner{
    background: url("../images/tournament_banner.png") no-repeat center right;
}
/* Right section CSS */
.program_list{
    list-style: none;
    margin: 3rem 0 0;
    padding: 0;
}
.program_list li{
    margin-bottom: 2rem;
    position: relative;
    word-break: break-word;
}
.program_list li::before{
    content: "";
    display: block;
    width: 0.5rem;
    height: 100%;
    background: var(--beige);
    position: absolute;
    left: 0;
}
.program_list li > *{
    font-size: 18px;
    padding-left: 1.5rem;
    color: var(--secondary-color);
}
.program_list li h3 a{
    font-size: 18px;
    line-height: 1.2;
    color: var(--primary800);
    text-decoration: none;
    font-weight: 400;
}
.inqury_sec{
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
    
}
.inqury_sec h2:first-child{
    font-size: 27px;
    line-height: 1.0;
    font-family: var(--roboto-bold);
    color: var(--white);
    margin: 0;
    padding: 1rem;
    background: var(--orange);
}
.inqury_sec h2:last-child{
    font-size: 27px;
    line-height: 1.0;
    font-family: var(--roboto-bold);
    color: var(--black);
    margin: 0;
    text-decoration: none;
    padding: 1rem;
    background: var(--beige);
}
/* left section CSS */
.login-blog{
   background: linear-gradient(90deg, #E7F1EE 0%, #FFFFFF 100%);
   border-radius: 6px;
   padding: 1rem;
}
.login-blog .form-group{
    position: relative;
    margin-bottom: 0.5rem;
}
.login-blog .icon{
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    width: 18px;
    height: 18px;
    margin: auto 0.5rem;
}
.login-blog .form-control{
    font-size: 16px;
    color: var(--black);
    padding: 0.5rem 0.5rem 0.5rem 2.2rem;
    border: 0;
    border-radius: 10px; 
}
.login-blog p{
    font-size: 16px;
    line-height: 1.5;
    color: var(--secondary-color);
}
.login-btn, .login-btn:hover{
    width: 100%;
    background: var(--red);
    font-size: 16px;
    text-align: left;
    color: var(--white);
    border-radius: 10px;
    padding: 0.5rem 0.5rem 0.5rem 2.2rem;
    
    cursor: pointer;
    display: block;
}
.login-blog a{
    color: var(--primary-color);
}
/* accordion CSS */
#accordionFlushExample{
    margin: 3rem 0;
    border-top: 1px solid var(--grey);
}
#accordionFlushExample .accordion-button{
    font-size: 16px;
    line-height: 1.0;
    color: var(--secondary-color);
    border-bottom: 1px solid var(--grey);
    padding: 0.8rem 1rem;
}
#accordionFlushExample .accordion-button::after{
    display: none;
}
/* Dropdown arrow only on parent menu items that have sub pages (Basecamp 9882208770) */
#accordionFlushExample .accordion-button[data-bs-toggle="collapse"]::after{
    display: block;
    flex-shrink: 0;
    width: 0.9rem;
    height: 0.9rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23323d49'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 0.9rem;
}
/* White chevron when the parent item is expanded/focused (red background) */
#accordionFlushExample .accordion-button[data-bs-toggle="collapse"]:not(.collapsed)::after,
#accordionFlushExample .accordion-button[data-bs-toggle="collapse"]:focus::after{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}
#accordionFlushExample .accordion-button:not(.collapsed), #accordionFlushExample .accordion-button:focus{
    color: var(--white);
    background: var(--red);
    box-shadow: unset;
}
#accordionFlushExample .accordion-body{
    border-bottom: 1px solid var(--grey);
    background: var(--blue600);
    padding: 0;
}
#accordionFlushExample .accordion-body li a{
    font-size: 16px;
    line-height: 1.0;
    color: var(--primary800);
    display: block;
    border-bottom: 1px solid var(--white);
    padding: 0.8rem 1.5rem;
    line-height: normal;
}
#accordionFlushExample .accordion-body li:last-child a{
    border-bottom: none;
}
.accordion-body .active{
    background: var(--primary700);
    color: var(--white) !important;
}

/* Mobile nav menu Login button: ~half size, right aligned, centered content (BC 9960389940) */
.offcanvas-body .d-lg-none .modal-btn {
    width: 35%;
    margin-left: auto;
    font-size: 14px;
    padding: 6px 10px;
    gap: 8px;
    justify-content: center;
    text-align: center;
}
/* responsive login modal */
.modal-btn {
    border: none;
    width: 100%;
    background: var(--red);
    font-size: 16px;
    text-align: left;
    color: var(--white);
    border-radius: 10px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.modal-dialog {
    height: calc(100vh - 16px);
    display: flex;
    align-items: center;
}
.modal-header {
    background: var(--primary-dark);
}
.modal-header .btn-close {
    filter: invert(1);
    opacity: 1;
}
.modal-title {
    font-size: 20px;
    text-transform: uppercase;
    font-family: var(--dm-sans-font);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}
/* buy insurance CSS */
.buy-adsec{
    background: transparent;
}
.buy-adsec:before{
    content: "";
    display: inline-block;
    width: 20px;
    height: 100%;
    background: var(--yellow);
    position: absolute;
}
.ad_sec_inner{
    margin-left: 2.5rem;
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    justify-content: flex-start;
    word-break: break-word;
}
.ad_sec_inner h4{
    background: var(--greenmint);
}
.ad_sec_inner img{
    width: 150px;
    height: 120px;
    background: var(--white);
    object-fit: contain;
    object-position: center;
    margin-right: 1.5rem;
}
.insurance-form .form-group{
    margin-bottom: 1rem;
}
.insurance-form  label{
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 5px;
}
.insurance-form  label p{
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 5px;
}
.waiver-questions-error p{
	color: red;
	font-size: 13px;
	margin-bottom: 0;
}
.insurance-form .form-control, .insurance-form .form-select{
    font-size: 14px;
    font-weight: 300;
    color: var(--secondary-color);
    padding: 10px 15px;
    border-radius: 10px;
    line-height: 1.5;
}
.insurance-form .form-group .e-multiselect{
	border-radius: 10px;
    height: 43px;
    border-color: #dee2e6;
}
.insurance-form .form-group .e-multiselect .e-dropdownbase {
	padding: 10px 15px;
    height: 42px;
}
.insurance-form .form-group .e-input-group {
	border-radius: 10px;
}
.insurance-form .form-group .e-input-group .form-control {
	height: 42px;
}
.insurance-form .form-group .e-multiselect .e-input-group-icon {
	 height: 42px;
}
.form-check{
    display: flex;
    align-items: center;
    padding: 0;
}
[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"] + label {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 300;
    color: var(--secondary-color);
    margin: 0;
    gap: 10px;
}
[type="radio"] + label:before {
    content: '';
    position: relative;
    width: 14px;
    height: 14px;
    border: 1.5px solid #ccc;
    border-radius: 100%;
    background: var(--white);
}
[type="radio"]:checked + label:before {
    content: "";
    background: var(--primary800);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
/* Table CSS */
.custom-table {
    background: #FAFAFA;
    padding-bottom: 1rem;
    padding-right: 5px;
}
/* Help-block email link: match surrounding text, underline on hover only (Basecamp 9948537575) */
.heading h2 a {
    color: inherit;
    text-decoration: none;
}
.heading h2 a:hover {
    text-decoration: underline;
}
.table-title {
    background: var(--greenmint);
    font-size: 26px;
    color: var(--white);
    display: block;
    padding: 12px 15px;
    margin-bottom: 0;
}
.custom-table ul {
    padding: 12px 15px 0;
}
.custom-table ul li p {
    font-size: 16px;
    margin-bottom: 0;
}
.custom-table small {
    font-size: 12px;
    padding: 10px 15px;
    color: var(--secondary-color);
    display: block;
}
.table {
    border-top: 1px solid #9CC3CA;
    border-bottom: 1px solid #9CC3CA;
}
.table th{
    font-size: 16px;
	line-height: 1.5;
}
.table td{
    font-size: 16px;
	line-height: 1.5;
}
/* League/Group results: narrow the team-count input + space before the Age column (Basecamp 9948537575) */
.table td.check-td {
    padding-right: 2.5rem;
}
.check-td .spinner {
    max-width: 100px;
}
/* Results table: Sport radio-label should match the other columns (Basecamp 9948537575) */
.table [type="radio"] + label {
    font-size: 16px;
    font-weight: 400;
}
/* Faq CSS */
.faqad-blog{
    background: #FAFAFA;
    border-bottom: 1.5px solid var(--primary700);
}
.faqad-head{
    border-left: 20px solid var(--yellow);
    background: var(--greenmint);
    padding: 20px;
    height: 60px;
    position: relative;
}
.faqad-head img{
    width: 100px;
    height: 80px;
    object-fit: contain;
    position: absolute;
    top: -28px;
}
.faqad-blog p{
    font-size: 16px;
    font-weight: 400;
    color: var(--secondary-color);
    padding: 20px;
    display: block;
    margin-bottom: 0;
}
.faq-content{
    border-bottom: 1.5px solid var(--primary700);
}
.faq-content h3{
    font-size: 30px;
    font-weight: 300;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}
.faq-content p{
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 0;
}
.faq-content ul li{
    margin-bottom: 10px;
}
.faq-content ul li:last-child{margin: 0;}
/* brochure CSS */
.brochure-blog {
    background: #FAFAFA;
    padding: 20px;
    text-align: center;
    box-shadow: 5px 5px 0px #cccccc4a;
}
.brochure-blog h3:first-child{
    font-weight: 700;
}
.brochure-blog h3{
    font-size: 26px;
    line-height: 1.4;
    font-weight: 300;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-transform: capitalize;
}
.brochure-blog h3:last-child{
    margin-bottom: 0;
}
.brochure-blog ul li{
    display: grid;
    margin-bottom: 10px;
    text-transform: capitalize;
    font-size: 18px;
}
/* .brochure-blog ul li b{
    color: var(--primary-color);
} */
.brochure-blog ul li:last-child{
    margin-bottom: 0;
}
.purchase-blog{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-left: calc(214px - 0px);
    margin: 15px 0 0;
}

/* new pages CSS [10-4] */
.middle-subtitle{
    font-size: 22px;
    font-weight: 600;
    font-family: var(--dm-sans-font);
    color: var(--white);
    background: var(--primary-color);
    border-left: 20px solid var(--yellow);
    padding: 10px 20px;
    text-transform: uppercase;
    line-height: unset;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.table-rates thead{
    padding: 20px;
    background: #F8F8F8;
    border-top: 5px solid var(--blue500);
    border-bottom: 1px solid var(--blue500);
}
.table-rates thead th{
    padding: 12px 20px;
    border: none;
	line-height: 1.5;
}
.table-rates thead th h4{
    font-family: var(--dm-sans-font);
    font-weight: 600;
    margin-bottom: 0;
    line-height: normal;
}
.table-rates tbody td{
    padding: 10px 20px;
    font-weight: 400;
    font-family: var(--dm-sans-font);
    color: var(--secondary-color);
    border-bottom: 1px solid var(--blue500);
	line-height: 1.5;
}
.ad-sec-new img {
	height: 120px;
    background: transparent;
}
.background-banner{
    background: url("../images/bkgd-check.png") no-repeat center;
}
.medical-insurance-banner{
    background: url("../images/sport-injury-banner.png") no-repeat center;
}
.facility-insurance-banner{
    background: url("../images/facility-banner.png") no-repeat center left;
}
.medial-plans img {
    height: 140px;
    width: 140px;
}
.medial-plans p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}
.injured-image{
    width: 70%;
    margin: 0 auto 48px;
    display: block;
}
.grid-4{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.medical-ins-type span{
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border: 1.5px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    color: var(--white);
}
.medical-ins-type span:first-child{
    background: #E52823;
}
.medical-ins-type span:nth-child(2){
    background: #000000;
}
.medical-ins-type span:nth-child(3){
    background: #1670B0;
}
.medical-ins-type span:nth-child(4){
    background: #F89626;
}
.medical-ins-type span:nth-child(5){
    background: #F89626;
}
.medical-ins-type span:nth-child(6){
    background: #E27E5C;
}
.medical-ins-type span:nth-child(7){
    background: #F5E6C1;
    color: var(--black);
}
.medical-ins-type span:last-child{
    background: #5EB4CF;
}
.grid-5{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}
.athlet-type span{
    font-size: 16px;
    font-weight: 600;
   text-align: center;
    border: 1.5px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    color: var(--white);
}
.athlet-type span:first-child{
    background: #E52823;
}
.athlet-type span:nth-child(2){
    background: #F89626;
}
.athlet-type span:nth-child(3){
    background: #DF6420;
}
.athlet-type span:nth-child(4){
    background: #1670B0;
}
.athlet-type span:nth-child(5){
    background: #5B8328;
}
.athlet-type span:nth-child(6){
    background: #A3B359;
}
.athlet-type span:nth-child(7){
    background: #5EB4CF;
}
.athlet-type span:nth-child(8){
    background: #E27E5C;
}
.athlet-type span:nth-child(9){
    background: #333E48;
}
.athlet-type span:last-child{
    background: #762B90;
}
.facility-group img{
    width: 100%;
}
.grid-3{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px;
}
.grid-3 img{
   height: 200px;
    max-height: 100%;
}
.virgenia-home-banner{
    background: url("../images/virginia-banner.png") no-repeat center;
}
.resources-banner{
    background: url("../images/resources-banner.png") no-repeat center;
}
.resouce-inblock .ad_sec_inner{
    margin-left: 20px;
    align-items: stretch;
    height: 100%;
}
.resouce-inblock .resources-img-card{
	 height: auto;
}
.resouce-inblock .ad_sec_inner img{
    margin-right: 0;
    height: 100%;
}
.resouce-inblock .ad_sec_inner h4{
    display: inline-flex;
    align-items: center;
}
.resouce-inblock ~ .purchase-blog{
    padding-left: calc(172px - 0px);
}
.grid-2{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: #E9F3F1;
    align-items: center;
}
.grid-2 img:last-child{
  width: 300px;
  max-width: 100%;
  margin: auto; 
  padding: 20px; 
}
.label-note{
    background: #F8F8F8;
    border-top: 1px solid var(--blue500);
    border-bottom: 1px solid var(--blue500);
    padding: 20px 30px;
    display: block;
    text-align: center;
}
.liability-list span{
    font-size: 16px;
    font-weight: 600;
   text-align: center;
    border: 1.5px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    color: var(--white);
}
.liability-list span:first-child{
    background: #0079B6;
}
.liability-list span:nth-child(2){
    background: #5CB4CF;
}
.liability-list span:nth-child(3){
    background: #A1B359;
}
.liability-list span:nth-child(4){
    background: #F79525;
}
.liability-list span:last-child{
    background: #5B8328;
}
#accordionFlushExample .accordion-item .accordion-button.active {
	color: var(--white);
    background: var(--red);
    box-shadow: unset;
}
.insurance-form label.error {
	color: red;
    font-size: 14px;
    font-weight: 600;
	margin-top: 10px;
}

/* Find Coverage inline notice (BC 9960389940) */
.findcoverage-note {
    margin-top: 28px;
    margin-bottom: 4px;
    background: #fde8ee;
    border: 1px solid #f3b8c6;
    color: #212529;
}

/* Confirm-account (sign-in to continue purchase) form spacing */
.confirm-account-form .confirm-account-intro{
    margin-bottom: 1.5rem;
    color: var(--black);
}
.confirm-account-form .form-group{
    margin-bottom: 1.25rem;
    text-align: left;
}
.confirm-account-form label{
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 5px;
}
.confirm-account-form .form-control{
    font-size: 14px;
    font-weight: 300;
    color: var(--secondary-color);
    padding: 10px 15px;
    border-radius: 10px;
    line-height: 1.5;
    width: 100%;
}
.confirm-account-form .form-control[readonly]{
    background-color: #f5f6f8;
    cursor: default;
}
.confirm-account-form .row.form-group{
    margin-bottom: 1rem;
}
.confirm-account-form .btn-primary{
    margin-top: 0.5rem;
}

/* 30px spacing under the Sign-in button on confirmAccount (BC 9960389940) */
input[value="Sign in to continue purchase"] {
    margin-bottom: 30px;
}

/* cart-redesign-20260604: alert close X to the right (global) */
.alert { display: flex; align-items: flex-start; }
.alert .alert-msg-text { flex: 1 1 auto; order: 1; }
/* end cart-redesign-20260604 alert */

/* Age Notice is not a dismissible alert; keep it block so the global .alert{display:flex} doesn't split label+text into columns (BC 9960389940) */
.alert.findcoverage-note { display: block; }

/* EJ2 datepicker calendar: kill the global responsive-table tr:nth-child(odd) gray stripe so the calendar is all white (BC 9960389940) */
.e-calendar tr, .e-calendar tr:nth-child(odd), .e-calendar td { background: transparent !important; }


/* ===== design2 logged-in header + mobile menu (BC login-header) ===== */
/* Desktop left-nav logged-in header */
.login-blog .user-name a{ white-space: nowrap; }
.login-blog .cart-bucket #frm-login{ display: block; width: auto; margin-top: 1rem; margin-bottom: 0.75rem; }
.login-blog .cart-bucket .modal-btn{ width: 155px; display: inline-flex; box-sizing: border-box; }
.login-blog .cart-bucket .modal-btn .icon{ position: static; width: 18px; height: 18px; margin: 0; top: auto; bottom: auto; left: auto; }
.login-blog .header-cart-bucket{ display: inline-block; width: auto; }
.login-blog .header-cart-bucket #shopCart{ display: inline-flex; width: 155px; box-sizing: border-box; align-items: center; gap: 12px; background: var(--primary700); color: var(--white); font-weight: 400; text-decoration: none; border-radius: 10px; padding: 8px 12px; font-size: 16px; }
.login-blog .header-cart-bucket #shopCart .cart-fa-icon{ font-size: 20px; line-height: 1; }
.login-blog .header-cart-bucket #shopCart .view-cart-label{ white-space: nowrap; }
.login-blog .header-cart-bucket #shopCart sup{ position: static; left: auto; top: auto; background: var(--red); color: #fff; border-radius: 10px; padding: 0 6px; font-size: 11px; line-height: 1.5; }
/* Mobile/responsive offcanvas logged-in quick links (top of menu) */
.accordion_container .offcanvas-top-links{ list-style: none; margin: 0; padding: 0; }
.accordion_container .offcanvas-top-links li a{ display: flex; align-items: center; gap: 10px; font-size: 16px; padding: 1rem 1rem; color: var(--white); border-bottom: 1px solid #ffffff2b; text-decoration: none; }
.accordion_container .offcanvas-top-links li a:hover{ background: var(--primary-color); color: var(--blue600); }

/* ===================== Nav batch (Basecamp) ===================== */

/* #2 Desktop: right-column social icons flush with the middle column blue title bar.
   The social block has p-lg-4 (24px top padding) which pushed the icons below the
   .middle-subtitle bar top; zero the top padding on lg+ so their tops line up. */
@media (min-width: 992px){
    .social_sec.p-lg-4{ padding-top: 0 !important; }
}

/* #3 First heading immediately under the page H1 (.middle-subtitle blue bar): 2rem,
   overriding the global "* + .heading:not(.mt-0){margin-top:4rem!important}" (~line 255).
   Scoped to the first heading after the title bar, so every other heading keeps 4rem. */
.middle_static_sec h1.middle-subtitle + .heading:not(.mt-0){ margin-top: 2rem !important; }

/* #7 Mobile offcanvas top quick-links (View Cart + Log Out) as red buttons, one row,
   View Cart first, spaced apart. */
.accordion_container .offcanvas-top-links{ display: flex; flex-wrap: nowrap; gap: 14px; padding: 1rem; margin: 0; list-style: none; }
.accordion_container .offcanvas-top-links li{ flex: 1 1 0; margin: 0; }
.accordion_container .offcanvas-top-links li a{
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 0.6rem 0.75rem;
    background: var(--red); color: var(--white);
    border: none; border-radius: 10px; font-size: 16px; font-weight: 400; text-decoration: none;
}
.accordion_container .offcanvas-top-links li a:hover{ background: var(--red); color: var(--white); opacity: 0.9; }

/* #8 Mobile offcanvas active-state, mirroring the left nav:
   current page / parent-of-current subpage = red; current subpage = light blue (--primary700). */
.accordion_container .accordion_head.current{ background: var(--red); color: var(--white); }
.accordion_container .accordion_body li a.current{ background: var(--primary700); color: var(--white); }

/* #9 (navstyle3) Mobile offcanvas font sizes: parent + submenu items at 16px. Scoped to .accordion_container so desktop left-nav is unaffected. */
.accordion_container .accordion_head{ font-size: 16px; }
.accordion_container .accordion_body li a{ font-size: 16px; }
/* ===================== end Nav batch ===================== */

/* === Homepage shield cards: CTA buttons + whole-card clickable (BC card 10006108137) === */
.shield_blog .card{
    height: 100%;
    display: flex;
    flex-direction: column;
}
.shield_blog .card-body{
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}
a.shield-card-link{
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease;
}
a.shield-card-link:hover{
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}
.shield-buy-btn{
    margin-top: auto;
    align-self: flex-start;
}
a.shield-card-link:hover .buy-btn{
    background: var(--white);
    color: #003A63;
}
.shield-buy-group{
    margin-top: auto;
    padding-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.shield-buy-sm{
    font-size: 14px;
    padding: 6px 12px;
}

/* shield card button sizing refinements (BC 10006108137) */
.shield_blog .shield-buy-btn{
    display: block;
    width: 100%;
    text-align: center;
    white-space: normal;
    font-size: 16px;
    padding: 10px 12px;
}
.shield_blog .shield-buy-group{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.shield_blog .shield-buy-group .buy-btn{
    width: 100%;
    text-align: center;
    white-space: normal;
}

/* shield buttons: force white label in default (non-hover) state + readable hover (BC 10006108137 follow-up) */
.shield_blog .card-body .buy-btn{
    color: #ffffff;
}
.shield_blog .card-body .buy-btn:hover,
a.shield-card-link:hover .card-body .buy-btn{
    background: #ffffff;
    color: #003A63;
}

/* shield cards: icons same size at all widths, no left/right crop; cards fill column (BC 10006108137 responsive) */
.shield_blog .card{
    width: 100%;
}
.shield_blog .card img{
    height: 150px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin: 5px auto;
}

/* extra vertical space between the two shield card rows (BC 10006108137) */
.shield_blog.row{
    row-gap: 2.25rem;
}

/* Team shield card is not a single link: default cursor on the card, pointer only on its buttons (BC 10006108137) */
.shield_blog div.shield-card{
    cursor: default;
}
.shield_blog div.shield-card a.buy-btn{
    cursor: pointer;
}

/* Team shield card: cursor default across the whole card incl. the icon; pointer only on buttons (BC 10006108137) */
.shield_blog div.shield-card,
.shield_blog div.shield-card *{
    cursor: default;
}
.shield_blog div.shield-card a.buy-btn{
    cursor: pointer;
}
/* mobile: stack the four sport buttons in a single column so none get clipped (BC 10006108137) */
@media (max-width: 575.98px){
    .shield_blog .shield-buy-group{
        grid-template-columns: 1fr;
    }
}

/* mobile: break single-card CTA labels to two lines (word / Insurance) so League/Tournament/Facility are consistent (BC 10006108137) */
.shield-br{
    display: none;
}
@media (max-width: 575.98px){
    .shield-br{
        display: inline;
    }
}

/* Tournament Pricing admin-fee line: smaller fine print kept on one line, both mobile & desktop (BC 10006491200) */
.tourney-fineprint{
    display: inline-block;
    white-space: nowrap;
    font-size: 13px;
    line-height: 1.3;
}

/* admin-fee fine print: larger on desktop (13px was too small), smaller on mobile to fit the tight box (BC 10006491200) */
.tourney-fineprint{
    font-size: 16px;
}
@media (max-width: 575.98px){
    .tourney-fineprint{
        font-size: 13px;
    }
}
