﻿body {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(242, 242, 242, 1);
    margin: 0;
    padding: 0;
}

.portal-space-empty {
    display: flex;
    text-align: center;
    overflow: hidden;
    width: 100%;
}

.portal-space-empty-details-container {
    display: flex;
    align-items: center;
    flex: 1 1 50%;
    padding-right: 100px;
    overflow: hidden;
    justify-content: flex-end;
}

.portal-space-empty-details-inner-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.portal-space-empty-company-name {
    font-size: 20px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    justify-content: flex-start;
    text-align: left;
    max-width: 500px;
    word-break: break-word;
    word-wrap: break-word;
    overflow: hidden;
}

.portal-space-empty-launching-soon {
    font-size: 36px;
    line-height: 44px;
    white-space: nowrap;
    margin-left: -2px;
}

.portal-space-empty-made-with-gv {
    font-size: 16px;
    line-height: 44px;
    white-space: nowrap;
}

.portal-space-empty-image-container {
    height: 296px;
    display: flex;
    flex: 1 1 50%;
}

.portal-space-empty-image-container img{
    height: 100%;
}

@media only screen and (max-width: 1024px)
{
    .portal-space-empty {
        flex-direction: column;
        padding: 0;
    }

    .portal-space-empty-details-container {
        margin-bottom: 48px;
        padding-right: 0;
        justify-content: center;
        flex: 0 0 auto;
    }

    .portal-space-empty-image-container {
        justify-content: center;
        height: 200px;
        flex: 1 1 auto;
    }

    .portal-space-empty-launching-soon {
        font-size: 30px;
        margin-left: 0;
    }

    .portal-space-empty-details-inner-container {
        align-items: center;
    }

    .portal-space-empty-company-name {
        text-align: center;
        font-size: 16px;
    }
}


@media only screen and (max-device-width: 320px) {
    .portal-space-empty-image-container {
        justify-content: center;
        height: 180px;
        flex: 1 1 auto;
    }

    .portal-space-empty-launching-soon {
        font-size: 28px;
        margin-left: 0;
    }
}


