.play-bg {
    background-image: url("/images/Play/play_bg_image.jpg");
    background-repeat: no-repeat;
    background-position: center;
}
.play-top-flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.play-dom-logo {
    padding-top: 50px;
    padding-bottom: 50px;
}

.play-mode-text {
    text-transform: uppercase;
    text-align: center;
}
.play-launch-game-button {
    padding: 0px;
    border: 0px;
}
.play-social-button {
    display: block;
    width: 100px;
    padding: 5px;
}
.play-image-container {
    padding-bottom: 15px;
}
.play-image-container-mobile {
    display: none;
}
.play-page-not-logged-in {
    display: none;
}
.play-page-not-verified {
    display: none;
}
.play-page-not-linked {
    display: none;
}
.play-page-active {
    display: none;
}
/*  ------- Reactive Sizing -------  */


/* Mobile Screen */
@media screen and (max-width: 790px) {
    .play-bg {
        background-size: cover;
    }
    .play-dom-logo {
        width:300px;
        padding-top: 20px;
        padding-bottom: 50px;
    }
    .play-vehicles-img {
        width: 350px;
        padding-top: 1em;
    }
    .play-button-container {
        display: flex;
        padding: 15px 0px 15px 0px;
        background-color: #142229;
    }
    .play-image-container {
        display: none;
    }
    .play-image-container-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: black;
    }
    .play-image-mobile {
        width: 320px;
    }
}

/* Small Screen */
@media screen and (min-width: 791px) and (max-width: 1049px) {
    .play-vehicles-img {
        width: 768px;
    }
}

/* Medium Screen */
@media screen and (min-width: 1050px) and (max-width: 1280px) {
    .play-vehicles-img {
        width: 1005px;
    }
}

@media screen and (min-width: 1281px) and (max-width: 1680px) {
    .play-vehicles-img {
        width: 1200px;
    }
}