@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Inter:wght@100..900&display=swap');

:root {
    --bg-preview-color: var(--no-theme);
    --border-color: #ffffff;
    --font-color: #ffffff;
    --stat-icon-filter: invert(1);
}

.widget-container {
    min-width: 25rem;
    font-size: 18px;
    font-family: "Inter Tight", sans-serif;
    font-weight: 600;
    color: var(--font-color);
    display: flex;
    justify-content: space-between;
}

.pulse-outer {
    border-radius: .75rem;
    border: 3px solid;
    border-image: var(--bg-color);
    border-image-slice: 1;
    padding: 5px;
}

.pulse-container {
    display: flex;
    min-width: max-content;
    padding: .25rem .5rem .25rem .75rem;
    background: var(--bg-preview-color);
    border-radius: .5rem;

}

.stat-section {
    display: flex;
    align-items: center;
    margin-left: .75rem;
    padding-left: .75em;
    flex-grow: 1;
    border-left: 3px solid var(--border-color);
    text-transform: uppercase;
}

.stat-section:first-child {
    border: none;
    margin-left: 0;
    padding-left: 0;
}

#sectionMid {
    display: none;
}

.last-section {
    width: 6.25rem;
}

.stat-icon {
    margin-right: 0.5rem;
    min-width: 1rem;
    height: 1rem;
    filter: var(--stat-icon-filter);
}

.information-layer {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .9);
    color: black;
    font-size: .9em;
    font-weight: 600;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    border-radius: .5rem;
    transition: opacity 0.5s;
    z-index: 1;
    box-sizing: border-box;
}

.pulse-container {
    position: relative;
}

.pulse-container:hover .information-layer {
    display: flex;
    opacity: 1;
}

.hide {
    display: none;
}

#stat3-current::after {
    content: ' CCV'
}

#stat3-avg::after {
    content: ' AVG'
}

#stat3-peak::after {
    content: ' PEAK'
}

.monotime {
    text-transform: uppercase;
}

.pulse-outer border-off {
    border: none;
    padding: 0;
}

.flex-row {
    display: flex;
    flex-direction: row;
    gap: 50px;
    margin: 0 auto;
}

.arrows {
    display: flex;
}

.arrows span {
    display: flex;
}

.arrows img {
    cursor: pointer;
    height: 2.5em;
    filter: invert(1);
    margin: auto 0;
}

.arrows img:hover {
    filter: invert(76%) sepia(94%) saturate(993%) hue-rotate(140deg) brightness(101%) contrast(90%);
}

.theme-names {
    display: flex;
    gap: .35em;
    margin: 1em auto;
    text-align: center;
    text-transform: capitalize;
}

@media (max-width: 769px) {
    .widget-container {
        min-width: 0px;
    }

    .two,
    .four,
    .five {
        display: none;
    }
}

@media (max-width: 550px) {

    .theme-names {
        flex-direction: column;
    }

    .three {
        display: none;
    }
}