﻿@charset "UTF-8";


.segmented {
    background-color: rgb(253, 253, 253, 0.25);
    border-radius: 4px;
    height: 28px;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: fit-content;
    margin-bottom: 15px;
}

    .segmented > button {
        border-radius: 21px;
        border: 0;
        padding: 0 10px;
        background: transparent;
        position: relative;
        z-index: 2;
        height: 28px;
        transition: all 0.2s;
        color: white;
        cursor: pointer;
        margin-inline-end: 3px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-family: 'Segoe UI Semibold';
    }

        .segmented > button.dropdown-menu-container {
            padding: 0;
        }

            .segmented > button.dropdown-menu-container > .dropdown-menu {
                padding: 0 20px;
                height: 28px;
            }

        .segmented > button .arrow {
            width: 8px;
            height: 5px;
            margin-inline-start: 10px;
        }

            .segmented > button .arrow svg {
                display: block;
            }

        .segmented > button:last-child {
            margin-inline-end: 0;
        }

        .segmented > button:not(.active):active {
            background: rgba(0, 0, 0, 0.07);
        }

        .segmented > button.active {
            color: #0a0b2a;
        }

    .segmented .segmented-highlight {
        background: white;
        color: #0a0b2a;
        height: 30px;
        border-radius: 4px;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12);
        position: absolute;
        width: var(--width);
        transform: translateX(var(--translateX));
        transition: all 0.2s ease;
        z-index: 1;
        inset-inline-start: 0;
    }

.dropdown-menu {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dd {
    position: relative;
    background: #404bb3;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    color: #fff;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
    height: 68px;
}

.drop {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 266px;
    border-radius: 4px;
}

    .drop span {
        line-height: 15px;
        color: #091e42;
    }

        .drop span:first-child {
            background-color: #f9f9f9;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 40px;
            color: #c5c5c5;
            margin-inline-end: 20px;
            margin-inline-start: 10px;
        }

    .drop > i {
        position: absolute;
        inset-inline-end: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: #091e42;
    }

.dd-menu {
    --positionY: top;
    --positionX: left;
    position: absolute;
    top: calc(100% + 3px);
    inset-inline-start: 0;
    z-index: 1000;
    font-size: 14px;
    text-align: left;
    background: #fff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.18);
    border-radius: 0 0 4px 4px;
    background-clip: padding-box;
    -webkit-transition: all 0.2s ease;
    opacity: 0;
    -webkit-transform-origin: var(--positionX) var(--positionY) 50px;
    -webkit-transform: scale(0);
}

    .dd-menu.position-right {
        inset-inline-start: auto;
        inset-inline-end: 0;
    }

    .dd-menu ul {
        min-width: 266px;
        padding: 5px 0;
        margin: 2px 0 0;
        list-style: none;
        position: relative;
    }

    .dd-menu li {
        color: #091e42;
        list-style: none;
        opacity: 0;
        transition: all 0.3s ease;
        transform: translateY(-50%);
    }

        .dd-menu li.divider {
            margin: 0 0 10px;
            height: 1px;
            border-bottom: 1px solid #eef2f6;
            padding-top: 5px;
            display: block;
        }

        .dd-menu li a {
            padding: 10px 20px;
            color: #091e42;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            transition: all 0.3s ease;
        }

            .dd-menu li a:hover {
                background-color: #eef2f6;
            }

            .dd-menu li a > i {
                margin-inline-end: 15px;
            }

    .dd-menu.active {
        opacity: 1;
        transform-origin: var(--positionX) var(--positionY) 0px;
        transform: scale(1);
    }

        .dd-menu.active li {
            opacity: 1;
            transform: translateY(0px);
        }





.app {
    min-width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1rem;
    text-align: center;
    h1

{
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 0.5rem;

    @media (min-width: 768px) {
        font-size: 3rem;
    }
}

p {
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

a {
    color: #7393c1;
}

}

.tag-list {
    width: 100%;
    top: 26%;
    max-width: 90vw;
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    gap: 12px;
    position: relative;
    padding: 1.5rem 0;
    overflow: hidden;
}

.loop-slider {
    .inner

{
    display: flex;
    width: fit-content;
    animation-name: loop;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: var(--direction);
    animation-duration: var(--duration);
}

}

.tag {
    display: flex;
    font-family: 'Segoe UI Semibold';
    align-items: center;
    gap: 0 0.2rem;
    color: #003466;
    font-size: 16px;
    background-color: transparent;
    border: 1px solid #003466 !important;
    border-radius: 4px;
    padding: 6px;
    margin-inline-end: 12px;
    white-space: nowrap;
}

.white-tag {
    display: flex;
    font-family: 'Segoe UI Semibold';
    align-items: center;
    gap: 0 0.2rem;
    color: white;
    font-size: 16px;
    background-color: transparent;
    border: 1px solid white !important;
    border-radius: 4px;
    padding: 6px;
    margin-inline-end: 12px;
    white-space: nowrap;
}

/*.fade {
    pointer-events: none;
    background: linear-gradient(90deg, #1e293b, transparent 30%, transparent 70%, #1e293b);
    position: absolute;
    inset: 0;
}*/

@keyframes loop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.red-icon {
    padding: 3px;
    font-size: 6px;
    color: #d72d36;
    padding-top: 5px;
}









#typetextS {
    color: white;
    font-size: 2rem;
    font-family: 'Segoe UI Semibold';
    border-inline-end: 0.2em solid;
    padding-inline-end: 0.5rem;
    animation: caret 1s steps(1) infinite;
}

#typetextA {
    color:#003466;
    font-size: 2rem;
    font-family: 'Segoe UI Semibold';
    border-inline-end: 0.2em solid;
    padding-inline-end: 0.5rem;
    animation: caret 1s steps(1) infinite;
}


@keyframes caret {
    from {
        border-color: #fc9c3c;
    }

    to {
        border-color: transparent;
    }
}

@keyframes strategycaret {
    from {
        border-color: #212529;
    }

    to {
        border-color: transparent;
    }
}

@keyframes menustrategycaret {
    from {
        border-color: #b6c3ca;
    }

    to {
        border-color: transparent;
    }
}




