html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

.button-brand-primary {
    border-radius: var(--corner-base, 8px);
    background: var(--bg-accent-default, #772432);
    color: var(--text-inverted-default);
    display: flex;
    height: var(--size-component-base);
    min-width: 120px;
    padding: 0 var(--spacing-base);
    justify-content: center;
    align-items: center;
    gap: var(--spacing-small);
    border: 0;
}

.button-brand-secondary {
    border-radius: var(--corner-base);
    border-color: var(--border-accent-default);
    background: var(--bg-default);
    display: flex;
    height: var(--size-component-base);
    min-width: 120px;
    padding: 0 var(--spacing-base);
    justify-content: center;
    align-items: center;
    gap: var(--spacing-small);
    color: var(--text-accent-default);
}

.hidden {
    display: none !important;
}

@media (max-width: 480px) {
    #profile-pic {
        width: var(--size-component-xlarge) !important;
        height: var(--size-component-xlarge) !important;
    }

    #banner-pic {
        width: var(--size-component-xlarge) !important;
        height: var(--size-component-xlarge) !important;
    }
    #total-clubs {
        margin-top: 26px !important;
    }
}
.main-header {
    background: linear-gradient(89deg, var(--bg-data-9) 0.74%, var(--bg-data-8) 52.18%, var(--bg-data-9) 99.28%);
}

.btn-sign {
    height: var(--size-component-base);
    min-width: 120px;
    padding: var(--spacing-base);
    gap: var(--spacing-small);
    border-radius: var(--corner-base);
    background: var(--bg-surface-layer2);
    border: var(--corner-none) !important
}

#logo {
    width: 127px;
    height: 130px;
}

.link a {
    white-space: nowrap !important;
}

.btn-brand-secondary {
    display: flex;
    height: var(--size-component-base, 40px);
    min-width: 120px;
    padding: var(--corner-none) var(--spacing-base, 16px);
    justify-content: center;
    align-items: center;
    gap: var(--spacing-small, 8px);
    border-radius: var(--corner-base, 8px);
    border: 1px solid var(--border-bold-default, #000);
    background: var(--bg-default, #FFF);
}
.herobanner {
    background-image: url('https://content.toastmasters.org/image/upload/homeicon1.jpg');
    background-size: cover;
    height: 400px;
    clip-path: polygon(28% 0, 100% 0%, 100% 100%, 0% 100%);
    background-position: 50% 25%;
}
.linear-back {
    background: linear-gradient(89deg, var(--brand-classic-light-burgundy-900) 0.74%, var(--bg-data-8) 52.18%, var(--brand-classic-light-burgundy-900) 99.28%);
}
.linear-grey-back {
    background: linear-gradient(89deg, var(--dark-gray-1000) 0.74%, var(--dark-gray-1100) 52.18%, var(--dark-gray-1000) 99.28%);
}
#profile-pic {
    width: var(--size-icon-profile);
    height: var(--size-icon-profile);
    aspect-ratio: 155/156
}
.profile-radius-dropdown {
    --bs-form-select-bg-img: none;
    color: var(--Gray-100, #666);
}
.profile-select-icon {
    position: absolute;
    right: 10%;
    transform: translateY(-50%);
    pointer-events: none;
    margin-top: 55px;
}

#session-expired-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.56);
    display: none;
    z-index: 99990;
}

#session-expired-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 350px;
    max-width: 400px;
    background-color: #f5f5f5;
    border-radius: 3px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.45);
    display: none;
    z-index: 99991;
    font-family: "SourceSansPro-Regular", sans-serif;
    overflow: hidden;
    padding: 45px 50px;
}

    #session-expired-modal #btn-session-close {
        float: right;
        opacity: 0.3;
        padding: 0;
        line-height: 30px;
        background: transparent;
        border: none;
        color: #8b8b8b;
        font-size: 41px;
        cursor: pointer;
    }

        #session-expired-modal #btn-session-close:hover {
            color: #333;
            background: rgba(0,0,0,0.03);
        }

    #session-expired-modal #btn-session-login:hover {
        background: #5a0012;
        transform: translateY(-1px);
    }


    #session-expired-modal .session-divider {
        height: 1px;
        background: #e6e6e6;
        margin: 0 16px 16px 16px;
    }

    #session-expired-modal div.alert-danger {
        color: #a94442 !important;
    }

    #session-expired-modal h1 {
        font-size: 24px !important;
        font-weight: 500 !important;
        line-height: 29px !important;
        margin: 0 0 10px 0 !important
    }

@media(min-width: 768px) and (max-width: 1023px) {
    .profile-select-icon {
        right: 10% !important;
        margin-top: 47px;
    }
}

@media (max-width: 600px) {
    .profile-select-icon {
        position: absolute !important;
        right: 16% !important;
        transform: translateY(-50%) !important;
        pointer-events: none !important;
        margin-top: 41px !important;
    }
}
a.disabled {
    pointer-events: none;
    cursor: default;
}

body:has(.pagenotfound-container) {
    background: var(--gradient-gray-200, linear-gradient(180deg, var(--bg-gradient-gray-100-start) 0%, var(--bg-gradient-gray-100-stop) 100%));
}
.numbers {
    color: #022A3A;
    font-family: Inter;
    font-size: 47px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
}

.name {
    color: #022A3A;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
@media(max-width: 480px) {
    .herobanner {
        width: 100%;
        height: 171px;
        aspect-ratio: 125/57;
        clip-path:none !important;
    }
    .skil-wrapper {
        margin-left: -32px;
        margin-right: -32px;
    }
    .numbers {
        color: #000;
        font-family: Inter;
        font-size: 30px;
        font-style: italic;
        font-weight: 700;
        line-height: normal;
    }
    .name {
        color: #022A3A;
        font-family: Gotham;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
}
#total-clubs{
    margin-top:42px;
}