div.dashboard-toggle, div.dashboard-slider {
    position: relative;
    padding: 15px;
    margin-top: 15px;
    margin-left: 15px;
    margin-right: 15px;
    height: 5em;
    flex-grow: 1;
}

div.dashboard-toggle div {
    filter: blur(0.4em);
    background: linear-gradient(90deg, #03a9f477, #f441a577);

    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

div.dashboard-slider div.dashboard-slider-background {
    position: absolute;
    display: flex;
    align-items: center;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

div.dashboard-slider div.dashboard-slider-background div.dashboard-slider-bar-spacer {
    flex-grow: 0;
    width: 2.5em;
    height: 100%;
}

div.dashboard-slider div.dashboard-slider-background div.dashboard-slider-bar {
    filter: blur(0.4em);
    flex-grow: 1;
    background: linear-gradient(90deg, #03a9f477, #f441a577);
    margin-left: 5px;
    margin-right: 5px;
    height: 20%;
}

div.dashboard-slider div.dashboard-slider-indicator {
    background: linear-gradient(90deg, #03a9f477, #f441a577);
    filter: blur(0.4em);
    position: relative;
    margin-left: -2.5em;
    top: 0px;
    left: 0px;
    width: 5em;
    height: 5em;
    border-radius: 50%;
    box-shadow: 0px 0px 10px 10px #00000099;
    pointer-events: none;
}

div.dashboard-slider div.dashboard-slider-indicator.dashboard-active {
    background: linear-gradient(90deg, #03a9f4ff, #f441a5ff);
    filter: blur(0.2em);
}

div.dashboard-slider div.dashboard-slider-caption {
    position: relative;
    margin-left: -2.5em;
    top: -5em;
    left: 0px;
    width: 5em;
    height: 5em;
    display: flex;
    align-items: center;
    pointer-events: none;
}

div.dashboard-slider div.dashboard-slider-caption span {
    flex-grow: 1;
    color: white;
    text-align: center;
    font-size: 1.4em;
    pointer-events: none;
}

div.dashboard-toggle.dashboard-active div {
    background: linear-gradient(90deg, #03a9f4ff, #f441a5ff);
    filter: blur(0.2em);
}

div.dashboard-toggle button {

    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;

    font-size: 1.4em;
    padding: 0.6em 0.8em;
    border: none;
    background-color: #00000000;
    color: #bbbbbb;
    cursor: pointer;
}

div.dashboard-toggle.dashboard-active button {
    color: #fff;
}

div.dashboard-panel {
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    background: linear-gradient(120deg, #666666aa, #bbbbbbaa);
    border-radius: 16px;
    box-shadow: 0 4px 30px #00000088;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 15px;
}

button.dashboard-toggle-v2 {
    background: linear-gradient(90deg, #444444, #222222);
    color: white;
    min-width: 100px;
    height: 80px;
    border-radius: 15px;
    padding: 15px;
    border: 0px;
}
button.dashboard-toggle-v2.dashboard-active {
    background: linear-gradient(90deg, #dddddd, #bbbbbb);
    color: black;
}

div.dashboard-slider-indicator-v2 {
    margin-left: -40px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 40px;
    color: white;
    background: linear-gradient(90deg, #444444, #222222);
    pointer-events: none;
}


div.dashboard-slider-indicator-v2.dashboard-active {
    background: linear-gradient(90deg, #dddddd, #bbbbbb);
    color: black;
}

div.dashboard-slider-bar-v2 {
    flex-grow: 1;
    height: 10px;
    border-radius: 5px;
    background: linear-gradient(90deg, #00000088, #ffffff88);
    pointer-events: none;
}

.dashboard-screen-background {
    background-size: cover;
    height: 100%;
}

.dashboard-screen-background::after {
    -webkit-backdrop-filter: blur(4px); /* Use for Safari 9+, Edge 17+ (not a mistake) and iOS Safari 9.2+ */
    backdrop-filter: blur(4px); /* Supported in all major browsers */
    background-color: #00000055;

    content: "";
    display: block;
    position: absolute;
    width: 100%; height: 100%;
    top: 0;
}
