/*CUSTOM hide scrollbar*/
body{
    overflow:auto;
}
/* CUSTOM make logo smaller*/
.header__navigation--logo a img {
    max-height: 30px;
    min-width: 30px;
}

/*CUSTOM remove max-width from header*/
    @media (min-width: 1920px) {
  .vp-container {
    max-width: none;
  }
}

/*CUSTOM make schuhfried.com URL font bigger */
.render-links--link a {
    font: var(--K15t-font-body-medium)
}

/* CUSTOM make header smaller */
:root{
    --vp-layout-header-height: 60px;
    --vp-grid-step: 0.25rem;
}

/* CUSTOM make background picture area smaller */ 
@media (min-width: 1024px) {
    .space-overview__hero__header {
        padding: 2rem 1rem 2rem; 
    }
}

/* CUSTOM remove bottom margin as it enlarges the page */ 
@media (min-width: 1024px) {
    .space-overview__hero__header__content__intro--intro {
        margin-bottom:1rem;
    }
}

/* CUSTOM remove bottom margin as it enlargens the page */ 
@media (min-width: 1024px) {
    .lg\:mb-20 {
        margin-bottom: 2rem;
    }
}

/* CUSTOM making search bar smaller */ 
[data-vp-component=search-bar][data-vp-variant=large] {
    margin-bottom: 0;
}

/*CUSTOM align logo in footer (was missing)*/
@media (min-width: 1024px) {
    .lg\:flex {
        align-items: center;
    }
}
/*CUSTOM make footer smaller */
.footer{
	position:sticky;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    min-height: 60px;
}

/*CUSTOM make font-size links in footer smaller*/
.footer__links{
    font: var(--K15t-font-body-small-strong);
}

/*CUSTOM move language dropdown to right*/
.footer__language-picker-container {
    position: absolute;
    inset-inline-end: 3rem;
    bottom: 0.5rem;
}
/*CUSTOM set language-button behaviour back in mobile
    otherwise missing
 */
@media (max-width: 768px) {
    body{
        overflow: auto;
    }
    .footer__language-picker-container {
    position: inherit;
    inset-inline-start: 1rem;
    inset-inline-end: 1rem;
    }
}
.footer__language-picker {
  margin-bottom:0;
}

/*CUSTOM make dropdown + dropdown-options bigger*/
.vp-dropdown__button{
    padding: 0.75rem 1.125rem;

}

.vp-dropdown__option{
    font: inherit;
}

/* CUSTOM remove powered by => PLEASE CONSULTATE BEFOREHAND */
ul.footer__attribution-line--copyright li:nth-child(2) {
  display: none !important;
}
