.sidebar {
    width: 96px;
    /* height: 100vh; */
    background-color: var(--white);
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    z-index: 60;
}

.right_sidebar {
    left: unset;
    right: 0;
}

.right_sidebar .logo,
.left_sidebar .square_button {
    margin-bottom: 25px;
}

.above_fold_banner {
    position: fixed;
    bottom: 0;
    width: calc(100% - 192px);
    height: 96px;
    margin-left: 96px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 60;
    transition: 0.5s all ease-in-out;
}

.above_fold_banner .vineyard {
    height: 43px;
    width: 212px;
}

.above_fold_banner.scrolled {
    bottom: -96px;
    transition: 0.5s all ease-in-out;
}

.sidebar_transparent {
    background-color: var(--light-grey);
    height: calc(100vh - 96px);
    margin-top: 96px;
}

.above_fold_banner_transparent {
    background-color: var(--light-grey);
    transition: none;
}

.sidebar_transparent .square_button {
    background-color: var(--white);
}

@media (max-width: 1350px) {
    .sidebar {
        height: 96px;
        margin-top: calc(100vh - 96px);
    }
}

@media (max-width: 1250px) {
    .above_fold_banner.scrolled {
        bottom: 0;
        transition: none;
    }
}

@media (max-width: 850px) {
    .above_fold_banner .vineyard,
    .navigation .abingworth {
        display: none;
        width: 0;
    }

    .above_fold_banner {
        transition: none;
    }

    .above_fold_banner.scrolled {
        bottom: 0;
        transition: none;
    }
}

@media (max-width: 800px) {
    .above_fold_banner {
        height: 86px;
        width: calc(100% - 172px);
        margin-left: 86px;
    }

    .sidebar {
        width: 86px;
        height: 86px;
        margin-top: calc(100vh - 86px);
    }

    .right_sidebar .logo,
    .left_sidebar .square_button {
        margin-bottom: 20px;
    }
}