/**
 * Hopmans Quicklinks Styling
 */

 .hopmans-quicklinks-container {
    position: fixed;
    left: 100%;
    top: 200px;
    z-index: 99;
    padding: 0;
}

.hopmans-quicklinks-container .quicklink-item {
    margin-left: -50px;
    transition: 0.5s ease-out;
    margin-bottom: 5px;
    text-align: right;
    gap: 0;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    background-color: var(--e-global-color-primary);
    border-radius: 4px 0 0 4px;
    display: flex;
    align-items: center;
    height: 50px;
}

/* Links */
.hopmans-quicklinks-container .quicklink-item p:first-of-type, 
.hopmans-quicklinks-container .quicklink-item p:first-of-type a {
    font-size: 0;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Tekst */
.hopmans-quicklinks-container .quicklink-item p:last-of-type {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    line-height: 50px;
    transition: 0.3s ease-in-out;
    padding: 8px 20px 8px 10px;
    height: 50px;
    text-wrap: nowrap;
    margin: 0;
    white-space: nowrap;
}

/* Reset de standaard figure marges */
.hopmans-quicklinks-container .quicklink-item figure {
    margin: 0;
    padding: 0;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo */
.hopmans-quicklinks-container .quicklink-item img {
    padding: 5px;
    height: 40px;
    width: 40px;
    border-radius: 4px 0 0 4px;
    background-color: var(--e-global-color-primary);
}

/* Huidige site */
.hopmans-quicklinks-container .quicklink-current,
.hopmans-quicklinks-container .quicklink-current img {
    background-color: var(--e-global-color-secondary);
}

/* Media queries voor responsive weergave */
@media screen and (max-width: 768px) {
    .hopmans-quicklinks-container {
        display: none;
    }
}