#slide-in-wrapper {
    display: flex;
    flex-direction: column;
    position: relative; /* or remove this line if not needed */
}

#slide-in-right {
    position: fixed; /* Changed from absolute to fixed */
    right: -250px;
    top: 30%; /* Set to 0 or adjust as needed */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    /* height: 350px; */
    width: 230px;
    padding: 20px 0;
    background-color: #fff;
    box-shadow: 0px 5px 10px 1px rgba(0,0,0,0.1);
    border-radius: 5px;
    z-index: 1000; /* Ensure it's above other elements */
}

#biolifestyle, #biologon, #peastperformance {
    border: 1px solid #cecece;
    border-radius: 10px;
    padding: 5px;
    margin: 10px 0;
}

#headline {text-align: center; margin: 10px 0;}

#close-slide-in {
    position: absolute;
    top: 0px;
    right: 5px;
    font-size: 20px;
    font-weight: 900;
    color: #000; /* or any color you prefer */
    z-index: 10;
}

/* Media query for devices with width less than 500px */
@media (max-width: 500px) {
    #close-slide-in {
        top: 5px;
        width: 40px; /* Increase the width */
        height: 40px; /* Increase the height */
        font-size: 30px; /* Increase the font size for better visibility */
        line-height: 40px; /* Align the text vertically */
        transform: translateX(50%) translateY(-10px);
    }

}

.hover-grow {
    transform: perspective(1px);
    transition-duration: 0.3s;
    transition-property: all;
    box-shadow: 0px 0px 1px rgba(0,0,0,0);
    vertical-align: middle;
}

.hover-grow:hover {
    transform: scale(1.025);
}
