/* ==========================================================================
   # BOF fixed-buttons.css
   --------------------------------------------------------------------------
   # StyleSheet: fixedButtons
   # Datum: 2023-11-01
   # Version: 1.0.0
   # Autor: Patrick Dietze | MAE Systems GmbH
   ========================================================================== */

/* fixed-buttons */
.fixed-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: static;
    top: 25vh;
    right: -8rem;
    z-index: 4000;
    margin: 1rem 0;
}

.fixed-buttons > div {
    margin-bottom: 0.5rem;
    transition: all 0.3s ease-out;
}



.fixed-button a {
    background-color: var(--szr-custom-color-two);
    border-color: var(--szr-custom-color-two);
    color: var(--szr-custom-color-two-inverse);
    display: flex;
    padding: 0.5rem;
    font-size: 1rem;
    align-items: center;
    text-decoration: none;
    width: 11rem;
}

.fixed-button a:hover {
    background-color: var(--szr-custom-color-one);
    border-color: var(--szr-custom-color-one);
    color: var(--szr-custom-color-one-inverse);
}

.fixed-button a span.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2rem;
    width: 2rem;
}

.fixed-button a span.text {
    margin-left: 0.5rem;
}

.fixed-button a i {
    font-size: 2rem;
}

/* # Medium:             MD ab  768px  @media screen and (min-width: 48em)
   ========================================================================== */
@media screen and (min-width: 48em) {
    
    .fixed-buttons {
        position: fixed;
    }
    
    .fixed-buttons > div:hover {
        margin-left: -12rem;
    }
    
}


/* ==========================================================================
   # EOF fixed-buttons.css
   ========================================================================== */
