﻿.versions {
    display: none;
    flex-direction: column;
    align-items: center;
    margin: 15vh;
    width: 100%;
}
    .versions .header {
        font-size: 3.8em;
        color: #9cbade;
    }
    .versions .body {
        display: flex;
        flex: 1;
        margin-top: 40px;
        width: 50%;
    }
        .versions .body .left-side, .versions .body .right-side {
            flex: 1;
        }
        .versions .body .left-side {
            padding-right: 10%;
            position: relative;
        }
            .versions .body .left-side:after {
                content: '';
                border-right: 1px solid rgba(255, 255, 255, 0.2);
                position: absolute;
                top: 5px;
                right: 0;
                height: calc( 100% - 10px);
            }
        .versions .body .right-side {
            padding-left: 10%;
        }
        .versions .body .title {
            font-size: 1.3em;
            font-weight: 600;
            margin-top: 5vh;
            margin-bottom: 30px;
        }
@media (max-width: 768px){
    .versions {
        margin: 15px;
        margin-top: 15px;
        height: 70vh;
    }
        .versions .header {
            font-size: 1.5em;
        }
        .versions .body {
            width: 100%;
            flex-direction: column;
            margin-top: 5px;
            overflow-y: scroll;
        }
            .versions .body .left-side {
                padding-right: 0%;
                padding-bottom: 30px;
                margin-bottom: 20px;
            }
                .versions .body .left-side:after {
                    content: '';
                    border-right: 0px;
                    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
                    position: absolute;
                    top: auto;
                    bottom: 0px;
                    right: auto;
                    left: 5px;
                    height: initial;
                    width: calc( 100% - 10px);
                }
            .versions .body .title {
                margin-top: 5px;
                margin-bottom: 10px;
            }
            .versions .body .right-side {
                padding-left: 0%;
            }
}

