html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

a, .btn-link {
    color: #0366d6;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    height: 56px;
    width: 100%;
    border-bottom: 1px solid black;
}


.navbar-toggler {
    filter: invert(1);
}

.navbar-toggler-icon {
    filter: invert(1);
}

.sidebar {
    background-color: black;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.img-bar {
    max-width: 100px;
    max-height: 100px;
    margin: 0 auto;
    background-color: rgb(255,255,255);
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/* My CSS Classes */

.btn { /* Modify btn class from bootstrap */
    border-radius: 3px;
}

.myhelp {
    display: none;
    opacity: 0;
}
    .myhelp.show {
        display: block;
        opacity: 1;
    }

.mynav {
    --bs-nav-link-padding-x: 1rem;
    --bs-nav-link-padding-y: 0.5rem;
    --bs-nav-link-color: var(--bs-link-color);
    --bs-nav-link-hover-color: var(--bs-link-hover-color);
    --bs-nav-link-disabled-color: var(--bs-secondary-color);
    display: flex;
    padding-left: 4px;
    margin-bottom: 0px;
    list-style: none;
}

.mynavbarsmall {
    border-bottom: 1px solid black; /* Controls the border below the hamburger */
}



/* Replicates Bootstrap table layout and typography without borders */
.custom-clean-table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529; /* Standard Bootstrap text color */
    vertical-align: top;
    border-collapse: separate; /* Allows your individual row/cell borders to show */
    border-spacing: 0;
}

    /* Replicates Bootstrap's standard cell padding */
    .custom-clean-table th,
    .custom-clean-table td {
        padding: 0.5rem 0.5rem; /* Replicates Bootstrap 5 default padding */
        vertical-align: inherit;
        background-color: transparent; /* Prevents cell backgrounds from covering your border */
    }

    /* Keeps headers bold like Bootstrap */
    .custom-clean-table th {
        font-weight: 700;
        text-align: inherit;
    }



/* Syncfusion override styles */
/* Admin dropdown menu style */

.e-dropdown-btn.e-active,
.e-dropdown-btn:focus {
    background-color: var(--adminLink-color, rgba(230,230,230,1));
    border-color: var(--adminLink-color, rgba(230,230,230,1));
}

.MyDropDownClass { /* Admin button only, not menu items. */
    font-size: 16px;
    height: 38px;
    padding: 4px 12px 7px 12px;
    border-radius: 3px;
    border-color: var(--adminLink-color, rgba(230,230,230,1));
    background-color: var(--adminLink-color, rgba(230,230,230,1));
    max-height: calc(100vh - 56px); /* Adjust height based on your design = 100% - 56px. */
    overflow-y: auto; /* Enables vertical scrolling */
    -webkit-overflow-scrolling: touch;
}

    .MyDropDownClass:hover { /* Needs to be after e-dropdown items above and before items below. */
        background-color: var(--adminHover-color, rgba(222,222,222,1));
        border-color: var(--adminHover-color, rgba(222,222,222,1));
    }

.mylogoutbtn {
    height: 38px;
    position: relative;
    float: right;
    margin: 8px 1vw 0px 0px;
    border-radius: 3px;
    border: none;
    padding: 0px 10px 0px 10px;
    color: var(--logoutText-color, rgba(0,0,0,1));
    background-color: var(--logoutLink-color, rgba(230,230,230,1));
}

    .mylogoutbtn:hover {
        background-color: var(--logoutHover-color, rgba(209,209,209,1));
    }

.MyActionClass {
    font-size: 16px;
    height: 38px;
    padding: 4px 12px 7px 12px;
    border-radius: 3px;
    height: 25px;
    padding: 0px 8px 27px 6px;
}

.e-control.e-btn.e-dropdown-btn {
    color: var(--adminText-color, white);
}

.e-dropdown-popup {
    height: auto;
    border: 1px solid;
    border-radius: 0px;
    background-color: rgba(230, 230, 230, 1);
    padding: 0px 0px 0px 0px; /* Need because of inheritance. */
}

    .e-dropdown-popup:hover {
        background-color: rgba(230, 230, 230, 1); /* Background of entire list dropdown panel. */
        border: 1px solid;
    }

    .e-dropdown-popup a {
        border-left: 2px solid rgba(230, 230, 230, 1); /* Admin menu background of each item. */
    }

        .e-dropdown-popup a:hover {
            background-color: rgba(209,209,209,1); /* Admin menu background of each item on hover. */
            border-left: 2px solid red;
        }

    .e-dropdown-popup .e-item .e-menu-url { /* Dropdown list items text. */
        color: black !important;
    }

    .e-dropdown-popup ul .e-item .e-menu-url:hover { /* Admin Dropdown list items text on hover. */
        color: black !important;
    }

    .e-dropdown-popup .e-item:hover { /* Actions background of each item. */
        background-color: rgba(210,210,210,1) !important;
        color: black !important;
    }
/* Rich text editor style */
.uploadbg {
    height: 32px;
    width: 32px;
    text-align: center;
    padding: 7px;
    border-radius: 3px;
}

    .uploadbg:hover {
        background-color: rgb(163,156,148);
        filter: invert(1);
    }
/* End Syncfusion override styles */
/* Pay Dues / Update Info and Registraton cards */

.regbtn {
    transition: all 150ms ease-in-out;
    width: 160px;
    height: 240px;
    margin: 5px;
    vertical-align: top;
    text-align: center;
    color: #000;
    background-color: #fff;
    position: relative;
    border: 1px solid #000;
}

.cartcard {
    width: 100%;
    object-fit: contain;
}

.incartreg {
    width: 150px;
    height: 225px;
    position: absolute;
    left: 4px;
    top: 5px;
}

.updatecard {
    transition: all 150ms ease-in-out;
    width: 137px;
    height: 200px;
    margin: 5px;
    vertical-align: top;
    text-align: center;
    color: #000;
    background-color: #fff;
    position: relative;
    border: 1px solid #000;
}

.incartupdate {
    width: 110px;
    height: 185px;
    position: absolute;
    left: 13px;
    top: 5px;
}

@media (hover: hover) {
    .regbtn:hover, .updatecard:hover {
        box-shadow: 0px 0px 10px 0px #555;
        transform: scale(1.04);
        z-index: 1;
    }
}

.soldout {
    width: 90%;
    height: 80%;
    position: absolute;
    left: 10px;
    top: 17px;
    object-fit: contain;
    opacity: .25;
}

.imgbtn {
    background-color: rgb(255, 255, 255);
    height: 135px;
    width: 200px;
    vertical-align: middle;
}

.imgcard {
    height: 80%;
    width: 95%;
    object-fit: contain;
    vertical-align: middle;
}

.imgbtnPop {
    background-color: rgb(255, 255, 255);
    height: 90px;
    width: 155px;
    vertical-align: middle;
}

.imgcardPop {
    height: 100%;
    width: 100%;
    object-fit: contain;
    vertical-align: middle;
}

.imgcardPopNone {
    padding: 28px 0px 0px 0px;
}

.passinline {
    margin: 0px auto;
    padding: 0px 0px 15px 0px;
    position: relative;
    width: 100%;
}

.passinput-field {
    width: 100%;
    height: 30px;
    padding-left: 2px;
    text-align: left;
    margin-bottom: 0px;
}

.passinput-icon {
    position: absolute;
    top: 0px;
    left: 80%;
    padding: 4px 10px 10px 10px;
    min-width: 20px;
    color: black;
}

.passinline1 {
    margin: 0px auto;
    padding: 0px 0px 15px 0px;
    position: relative;
    width: 100%;
}

.passinput-field1 {
    width: 100%;
    height: 30px;
    padding-left: 2px;
    text-align: left;
    margin-bottom: 0px;
}

.passinput-icon1 {
    position: absolute;
    top: 0px;
    left: 92%;
    padding: 4px 10px 10px 10px;
    min-width: 20px;
    color: black;
}

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none; /* Hide automatic eyeball in password box. */
}

/* For devices that don't have hover capability (Touchscreens) */
@media (hover: none) {
    .regbtn {
        width: 160px;
        height: 240px;
        margin: 5px;
        vertical-align: top;
        text-align: center;
        color: #000;
        background-color: #fff;
        position: relative;
        border: 1px solid #000;
    }

    .updatecard {
        width: 137px;
        height: 200px;
        margin: 5px;
        vertical-align: top;
        text-align: center;
        color: #000;
        background-color: #fff;
        position: relative;
        border: 1px solid #000;
    }
}

.admindropdown {
    max-height: 100px;
    overflow-y: auto;
}

.adminmenu {
    z-index: 30;
    position: relative;
    padding-top: 8px;
    float: right;
    margin: 0px 1vw 0 0;
}

.cartmenu {
    z-index: 30;
    position: relative;
    padding-top: 8px;
    float: right;
    margin: 0 1vw 0 0;
}

.actionsmenu {
    z-index: 15;
    position: relative;
    padding-top: .55rem;
    float: left;
    margin: 1px 1vw 0 0;
}

.popupz {
    /* Keep popups above everything */
    z-index: 500
}

.paypalz {
    position: relative;
    z-index: 0;
}
/* End My CSS Classes */

.slide {
    width: 100%;
}

.dropdown-menu {
    background-color: #000000;
    transition: transform .1s linear;
}

.dropright .dropdown-menu {
    margin-top: calc(100vh - 620px);
    margin-left: 12px;
}

.inputsize {
    width: 200px;
}

.spacesize {
    width: 10px;
}

@media (max-width: 474.98px) {
    .adminmenu {
        display: none;
    }
}

@media (max-width: 639.98px) {

    .main .top-row.auth {
        justify-content: space-between;
    }

    .main .top-row a, .main .top-row .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 640px) {

    .main .top-row.auth {
        justify-content: space-between;
    }

    .main .top-row a, .main .top-row .btn-link {
        margin-left: 0;
    }

    .col-m-0 {
        width: 0%;
        font-size: 10px;
    }

    .col-m-1 {
        width: 8.33%;
        font-size: 10px;
    }

    .col-m-2 {
        width: 16.66%;
        font-size: 10px;
    }

    .col-m-3 {
        width: 25%;
        font-size: 10px;
    }

    .col-m-4 {
        width: 33.33%;
        font-size: 10px;
    }

    .col-m-5 {
        width: 41.66%;
        font-size: 10px;
    }

    .col-m-6 {
        width: 50%;
        font-size: 10px;
    }

    .col-m-7 {
        width: 58.33%;
        font-size: 10px;
    }

    .col-m-8 {
        width: 66.66%;
        font-size: 10px;
    }

    .col-m-9 {
        width: 75%;
        font-size: 10px;
    }

    .col-m-10 {
        width: 83.33%;
        font-size: 10px;
    }

    .col-m-11 {
        width: 91.66%;
        font-size: 10px;
    }

    .col-m-12 {
        width: 100%;
        font-size: 10px;
    }
}

@media (max-width: 974.98px) {

    .iPhone {
        display: none;
    }

    .updatepage {
        width: 90%;
    }

    .top-row.auth {
        justify-content: space-between;
    }

    .top-row a, .top-row .btn-link {
        margin-left: 0;
    }

    .standhide {
        display: none;
        /* Adjust menus to hide when window changes size */
    }

    .menushowsmall {
        display: block;
        position: absolute;
        height: auto;
        width: auto;
        z-index: 40;
    }

    .menushowlarge {
        display: none;
    }

    .navscroll {
        max-height: calc(100vh - 56px); /* Adjust height based on your design = 100% */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch; /* mobile safari */
        border-right: 1px solid black;
        border-bottom: 1px solid black;
    }

    .collapse {
        display: none;
    }

    .whohide {
        display: none;
    }
}

@media (min-width: 975px) {

    .iPhone {
        display: inline;
    }

    .updatepage {
        width: 90%;
    }

    app {
        flex-direction: row;
    }

    .sidebar {
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row, article {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }

    .navbar-toggler {
        display: none;
    }

    .collapse {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .standhide {
        display: none;
    }

    .menushowsmall {
        display: none;
    }

    .menushowlarge {
        display: block;
        max-height: 100vh; /* Adjust height based on your design = 100% */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch; /* mobile safari */
    }

    .navscroll {
        height: calc(100vh - 56px); /* Adjust height based on your design = 100% */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch; /* mobile safari */
        border-right: 1px solid black;
    }

    .whohide {
        display: inline-flex;
    }

    .main .top-row {
        position: sticky;
        top: 0;
    }

    .main > div {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }

    .col-l-1 {
        width: 8.33%;
        font-size: 11px;
    }

    .col-l-2 {
        width: 16.66%;
        font-size: 11px;
    }

    .col-l-3 {
        width: 25%;
        font-size: 11px;
    }

    .col-l-4 {
        width: 33.33%;
        font-size: 11px;
    }

    .col-l-5 {
        width: 41.66%;
        font-size: 11px;
    }

    .col-l-6 {
        width: 50%;
        font-size: 11px
    }

    .col-l-7 {
        width: 58.33%;
        font-size: 11px
    }

    .col-l-8 {
        width: 66.66%;
        font-size: 11px
    }

    .col-l-9 {
        width: 75%;
        font-size: 11px
    }

    .col-l-10 {
        width: 83.33%;
        font-size: 11px
    }

    .col-l-11 {
        width: 91.66%;
        font-size: 11px
    }

    .col-l-12 {
        width: 100%;
        font-size: 11px
    }
}

@media (min-width: 1132px) {

    app {
        flex-direction: row;
    }

    .updatepage {
        width: 90%;
    }

    .main .top-row {
        position: sticky;
        top: 0;
    }

    .main > div {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }

    .standhide {
        display: inline-flex;
    }

    .col-vl-1 {
        width: 8.33%;
        font-size: 12px;
    }

    .col-vl-2 {
        width: 16.66%;
        font-size: 12px;
    }

    .col-vl-3 {
        width: 25%;
        font-size: 12px;
    }

    .col-vl-4 {
        width: 33.33%;
        font-size: 12px;
    }

    .col-vl-5 {
        width: 41.66%;
        font-size: 12px;
    }

    .col-vl-6 {
        width: 50%;
        font-size: 12px
    }

    .col-vl-7 {
        width: 58.33%;
        font-size: 12px
    }

    .col-vl-8 {
        width: 66.66%;
        font-size: 12px
    }

    .col-vl-9 {
        width: 75%;
        font-size: 12px
    }

    .col-vl-10 {
        width: 83.33%;
        font-size: 12px
    }

    .col-vl-11 {
        width: 91.66%;
        font-size: 12px
    }

    .col-vl-12 {
        width: 100%;
        font-size: 12px
    }
}

@media (min-width: 1400px) {

    app {
        flex-direction: row;
    }

    .updatepage {
        width: 80%;
    }

    .main .top-row {
        position: sticky;
        top: 0;
    }

    .main > div {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }

    .col-xxl-1 {
        width: 8.33%;
        font-size: 14px;
    }

    .col-xxl-2 {
        width: 16.66%;
        font-size: 14px;
    }

    .col-xxl-3 {
        width: 25%;
        font-size: 14px;
    }

    .col-xxl-4 {
        width: 33.33%;
        font-size: 14px;
    }

    .col-xxl-5 {
        width: 41.66%;
        font-size: 14px;
    }

    .col-xxl-6 {
        width: 50%;
        font-size: 14px
    }

    .col-xxl-7 {
        width: 58.33%;
        font-size: 14px
    }

    .col-xxl-8 {
        width: 66.66%;
        font-size: 14px
    }

    .col-xxl-9 {
        width: 75%;
        font-size: 14px
    }

    .col-xxl-10 {
        width: 83.33%;
        font-size: 14px
    }

    .col-xxl-11 {
        width: 91.66%;
        font-size: 14px
    }

    .col-xxl-12 {
        width: 100%;
        font-size: 14px
    }
}

@media (min-width: 1650px) {

    app {
        flex-direction: row;
    }

    .updatepage {
        width: 75%;
    }

    .main .top-row {
        position: sticky;
        top: 0;
    }

    .main > div {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }

    .col-xxxl-1 {
        width: 8.33%;
        font-size: 14px;
    }

    .col-xxxl-2 {
        width: 16.66%;
        font-size: 14px;
    }

    .col-xxxl-3 {
        width: 25%;
        font-size: 14px;
    }

    .col-xxxl-4 {
        width: 33.33%;
        font-size: 14px;
    }

    .col-xxxl-5 {
        width: 41.66%;
        font-size: 14px;
    }

    .col-xxxl-6 {
        width: 50%;
        font-size: 14px
    }

    .col-xxxl-7 {
        width: 58.33%;
        font-size: 14px
    }

    .col-xxxl-8 {
        width: 66.66%;
        font-size: 14px
    }

    .col-xxxl-9 {
        width: 75%;
        font-size: 14px
    }

    .col-xxxl-10 {
        width: 83.33%;
        font-size: 14px
    }

    .col-xxxl-11 {
        width: 91.66%;
        font-size: 14px
    }

    .col-xxxl-12 {
        width: 100%;
        font-size: 14px
    }
}
/* Login stuff */
h1:focus {
    outline: none;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}