.sterly-button {
    z-index: 9000;
    position: fixed;
    bottom: 12px;
    left: 12px;
    width: 50px;
    height: 50px;
    border-radius: 50px 0 50px 50px;
    border: 7px #2563EB solid;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.1s ease-out;
    color: black;
    filter: drop-shadow(4px 4px 8px #00000030);
}
.sterly-button.bottom-right {
    left: auto;
    right: 12px;
    /* border-radius: 0 50px 50px 50px; */
}
.sterly-button.active {
    border-radius: 50px 50px 50px 50px;
}
.sterly-button > .active {
    opacity: 1;
    transform: scale(1);
}
.sterly-button > * {
    position: absolute;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.15s ease-out;
}
.sterly-button:hover {
    transform: scale(1.05);
}
.sterly-frame {
    z-index: 9000;
    position: fixed;
    bottom: 70px;
    left: -420px;
    width: 400px;
    height: 640px;
    border-bottom: 2px solid #2563EB;
    border-radius: 1rem 1rem 0rem 0;
    background: white;
    filter: drop-shadow(0px 8px 3rem #00000012);
    transition: all 0.15s ease-out;
}
.sterly-frame.bottom-right {
    left: auto;
    right: -420px;
}
.sterly-frame.expanded {
    width: 95vw;
    height: 86vh;
    bottom: 70px !important;
    border-radius: 1.2rem 1.2rem 0 0;
}
.sterly-frame.shown {
    left: 12px;
}
.sterly-frame.bottom-right.shown {
    left: auto;
    right: 12px;
}

@media (max-width: 768px) {
    .sterly-frame {
        width: 100dvw !important;
        height: 100dvh !important;
        bottom: 0 !important;
        border-radius: 0 !important;
        left: -100dvw;
    }
    .sterly-frame.bottom-right {
        left: auto;
        right: -100dvw;
    }
    .sterly-frame.shown {
        left: 0;
    }
    .sterly-frame.bottom-right.shown {
        left: auto;
        right: 0;
    }
}