* {
    font-family: 'Nunito Sans', sans-serif;
    scroll-behavior: smooth;
}

:root {
    --shadowDark: #D9DDE6;
    --background: #E4E9F2;
    --shadowLight: #EFF5FE;
}

body {
    background: var(--background);
}

.hero-body {
    justify-content: center;
}

.login {
    border-radius: 5px;
    padding: 1.5rem;
    box-shadow: 4px 4px 15px var(--shadowDark), -4px -4px 15px var(--shadowLight);
}

.fullheight {
    height: 100%;
}

.information {
    height: 100%;
    margin: 0;
    padding: 1rem;
    background-color: white;
}

.information-title {
    color: #97be0d;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cart-item-count {
    font-family: monospace !important;
}

.artikel-image {
    max-height: 64px;
    height: 64px;
}

.entree-logo {
    height: 64px;
}

.vl {
    border-left: 1px solid #eff5fe;
    height: 100%;
}

.is-vertical-center {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    vertical-align: center;
}

.artikel-kop:hover {
    cursor: pointer;
}

.fixed-label-width {
    min-width: 130px;
    max-width: 130px;
}

.cart-button {
    display: none;
}

.is-horizontal-center {
    justify-content: center;
}

.nested.dropdown:hover > .dropdown-menu {
    display: block;
}

.nested.dropdown .dropdown-menu {
    top: -12px;
    margin-left: 100%;
}

.nested.dropdown .dropdown-trigger button::after {

}

.nested.dropdown .dropdown-trigger button {
    padding: 0px 0px;
    border: 0px;
    font-size: 14px;
    font-weight: 400;
}

@media (max-width: 960px) {
    .cart-button {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }
}

@media screen and (max-width: 1024px) {
    .navbar-dropdown .is-active {
        display: block;
    }
    .navbar-dropdown:not(.is-active) {
        display: none;
    }
}

#scrollTop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    cursor: pointer;
}

input {
    background: var(--shadowDark) !important;
}

a {
    font-weight: 600;
}

[v-cloak] {
    display: none;
}