.additional-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media only screen and (max-width: 800px) {
    .additional-features {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

.flex-grow-more {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 2rem;
}

.image-viewer {
    position: fixed;
    display: none;
    inset: 0;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.6);
}

.image-viewer div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
}

.image-viewer img {
    width: 80vw;
}