/* BUTTONS */

.selected_btn {
    opacity: 1 !important;
}

.inactive_btn {
    opacity: 0.5;
}

.default_button {
    display: flex;
    background-color: white;
    color: #4279bc;
    cursor: pointer;
    border-radius: 0.15em;
    text-decoration: none;
    align-items: center;
    padding: var(--sp-s) var(--sp-m);
    font-size: var(--text-size-100);
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: all 0.2s ease;

    box-shadow: inset 0px 1px 0px hsla(var(--mc4-color-white-hsl), 0.1),
        0px 0px 0px 1px hsla(var(--mc4-color-black-hsl), 0.02),
        0px 1px 3px -1px hsla(var(--mc4-color-black-hsl), 0.2),
        0 0.3px 0.4px rgba(0, 0, 0, 0.025), 0 0.9px 1.5px rgba(0, 0, 0, 0.05),
        0 3.5px 6px rgba(0, 0, 0, 0.1);
}

.default_button:hover {
    background-color: rgb(248, 248, 248);
    box-shadow: inset 0px 1px 0px hsla(var(--mc4-color-white-hsl), 0.1),
        0px 0px 0px 1px hsla(var(--mc4-color-black-hsl), 0.02),
        0px 1px 3px -1px hsla(var(--mc4-color-black-hsl), 0.2),
        0 0.1px 0.3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.12);
}

.default_button:disabled {
    opacity: 0.7;
    pointer-events: none !important;
}

.disabled_link {
    opacity: 0.7 !important;
    pointer-events: none !important;
}

.btn_min_h {
    min-height: var(--sp-xxx) !important;
}

.btn_small_h {
    min-height: var(--sp-x) !important;
    font-size: var(--text-size-95);
}

.blue_btn {
    display: flex;
    background-color: #4279bc;
    color: white;
    cursor: pointer;
    border-radius: 0.15em;
    text-decoration: none;
    align-items: center;
    padding: var(--sp-xs) var(--sp-s);
    font-size: var(--text-size-100);
    line-height: 1;
    min-height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: all 0.2s ease;

    box-shadow: inset 0px 1px 0px hsla(var(--mc4-color-white-hsl), 0.1),
        0px 0px 0px 1px hsla(var(--mc4-color-black-hsl), 0.02),
        0px 1px 3px -1px hsla(var(--mc4-color-black-hsl), 0.2),
        0 0.3px 0.4px rgba(0, 0, 0, 0.025), 0 0.9px 1.5px rgba(0, 0, 0, 0.05),
        0 3.5px 6px rgba(0, 0, 0, 0.1);
}

.blue_btn:hover {
    background-color: #275996;
    box-shadow: inset 0px 1px 0px hsla(var(--mc4-color-white-hsl), 0.1),
        0px 0px 0px 1px hsla(var(--mc4-color-black-hsl), 0.02),
        0px 1px 3px -1px hsla(var(--mc4-color-black-hsl), 0.2),
        0 0.1px 0.3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.12);
}

.blue_btn:disabled {
    opacity: 0.7;
    pointer-events: none !important;
}

.icon_btn {
    display: flex;
    background-color: white;
    color: #4279bc;
    cursor: pointer;
    border-radius: 0.15em;
    text-decoration: none;
    align-items: center;
    padding: var(--sp-s) var(--sp-m);
    gap: var(--sp-s);

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: all 0.2s ease;

    box-shadow: inset 0px 1px 0px hsla(var(--mc4-color-white-hsl), 0.1),
        0px 0px 0px 1px hsla(var(--mc4-color-black-hsl), 0.02),
        0px 1px 3px -1px hsla(var(--mc4-color-black-hsl), 0.2),
        0 0.3px 0.4px rgba(0, 0, 0, 0.025), 0 0.9px 1.5px rgba(0, 0, 0, 0.05),
        0 3.5px 6px rgba(0, 0, 0, 0.1);
}

.icon_btn:hover {
    background-color: rgb(248, 248, 248);
    box-shadow: inset 0px 1px 0px hsla(var(--mc4-color-white-hsl), 0.1),
        0px 0px 0px 1px hsla(var(--mc4-color-black-hsl), 0.02),
        0px 1px 3px -1px hsla(var(--mc4-color-black-hsl), 0.2),
        0 0.1px 0.3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.12);
}

.relative_btn {
    position: relative;
}

/* DEFAULT FLEX CONTAINERS */

.default_flex {
    display: flex;
    gap: var(--sp-xs);
}

/* ICONS */

.icon_container {
    width: max-content;
    /* Set the container width */
    height: auto;
    /* Allow the container height to adjust based on content */
}

.icon_container svg {
    width: auto;
    /* Set the SVG width to fill its container */
    height: auto;
    /* Allow the SVG height to adjust proportionally */
    max-width: 100%;
    /* Ensure the SVG does not exceed the container's width */
    max-height: 100%;
    /* Ensure the SVG does not exceed the container's height */
    color: #4279bc;
}

.width_07rem {
    transform: scale(0.8);
}

.width_1rem {
    width: 1rem;
}

.width_12rem {
    width: 1.2rem !important;
}

.width_16rem {
    width: 1.6rem !important;
}

.icon_btn_text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: max-content;
}

.icon_header {
    font-weight: bold;
    font-size: var(--text-size-95);
    color: #4279bc;
}

.icon_sub_text {
    font-size: var(--text-size-90);
    color: grey;
    text-align: left;
}

/* HEADER */

.h2_space {
    margin-bottom: var(--sp-x);
}

.table_h_space {
    margin-bottom: var(--sp-m);
}

.mobile_hd_m {
    margin-bottom: 0px;
}

/* LINKS */

.hidden_link {
    text-decoration: none;
}

/* PILL */

.dot {
    height: 6px;
    width: 6px;
    background-color: #4279bc;
    border-radius: 50%;
}

.inactive_dot {
    background-color: grey;
}

.active_pill_outer {
    display: inline-flex;
    background-color: #4279bc3d;
    color: #4279bc;
    border-radius: 1.5em;
    padding: var(--sp-xs);
    font-size: var(--text-size-80);
    gap: var(--sp-xxs);
    align-items: center;
}

.pill_dot_active {
    height: 5px;
    width: 5px;
    background-color: #4279bc;
    border-radius: 50%;
}

.inactive_pill_outer {
    display: inline-flex;
    background-color: #80808030;
    color: grey;
    border-radius: 1.5em;
    padding: var(--sp-xs);
    font-size: var(--text-size-80);
    gap: var(--sp-xxs);
    align-items: center;
}

.pill_dot_inactive {
    height: 5px;
    width: 5px;
    background-color: grey;
    border-radius: 50%;
}

.absolute_badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background: #4279bc;
    border-radius: 5em;
    padding: var(--sp-ss) var(--sp-xs);
    color: white;
    font-size: var(--text-size-80);
}

/* COLORS */

.default_color {
    color: #163c6b;
}

/* WRAPPERS */

.center_all_content {
    display: flex;
    justify-content: center;
    gap: var(--sp-xx);
    padding: 0px var(--sp-m);
    margin-bottom: var(--sp-x);
}

.header_wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--sp-xx);
    max-width: 100%;
}

.content_wrapper {
    display: flex;
    gap: var(--sp-xx);
}

.flex_column {
    flex-direction: column;
}

@media screen and (max-width: 1025px) {
    .content_wrapper {
        flex-direction: column;
    }
}

/* INPUTS */

.base_input {
    font-size: var(--text-size-100);
    border-radius: 0.3em;
    padding: var(--sp-xs);
    background-color: white;
    border: 1px solid lightgrey;
}

.base_input:focus {
    outline: none !important;
    border: 1px solid #4279bc;
}

.base_input_number {
    max-width: 80px;
}

.pixel_input_number {
    max-width: 100px;
}

.optional_header {
    display: flex;
}

.optional_pill {
    font-size: 14px;
    color: grey;
    border: 1px solid lightgray;
    height: max-content;
    padding: 2px 5px;
    border-radius: 0.35em;
    margin-left: 5px;
    transform: translateY(-5px);
}

/* INPUT SIZE */

.input_size_8 {
    width: 100px !important;
}

.no_border {
    border: none !important;
}

/* Markdown stuff */

em {
    font-style: italic;
}

line {
    text-decoration: underline;
}

/* Other global */

.logo_link:focus-visible {
    outline: none;
}

@media (max-width: 767px) {
    .mobile_flex {
        flex-direction: column;
    }
}
