.AlertOverlay {
    background: rgba(0,0,0,0.7);
}

.AlertModal {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 67.2rem;
    min-height: 33rem;
    padding: 2rem 2rem 12rem 28.4rem;
    border-radius: 0.3rem;
    background-color: rgba(52,74,104,0.8);
    text-align: left;
    border: 1px solid rgba(86,126,179,0.8);
}

.AlertModal .Title {
    font-family: 'Roboto Condensed';
    color: #2bc191;
    font-size: 3.6rem;
    line-height: 1;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-align: left;
}

.AlertModal .Text {
    font-weight: normal;
    text-align: left;
    font-size: 2.4rem;
    color: #8bb6e5;
    line-height: 1.25;
}

.AlertModal .Thumbnail {
    position: absolute;
    left: 0;
    bottom: 0;
    margin-bottom: 10rem;
    width: 29.4rem;
    height: 21rem;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    margin-left: -2.6rem;
}

.AlertModal.Success .Thumbnail { background-image: url("/static/image/assistant/happy.png"); }
.AlertModal.Warning .Thumbnail { background-image: url("/static/image/assistant/neutral.png"); }
.AlertModal.Danger .Thumbnail { background-image: url("/static/image/assistant/angry.png"); }

.AlertModal .Buttons {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 2rem;
    border-top: 1px solid #567eb3;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
}

.AlertModal .Buttons button {
    margin-right: 2rem;
    flex-basis: 50%;
}

.AlertModal .Buttons button:last-child {
    margin-right: 0;
}

/* PORTRAIT */
@media screen and (orientation:portrait) {
    .AlertModal {
        width: calc(100% - 4rem);
        margin: 0 2rem;
        min-height: 29.6rem;
        padding-left: 25rem;
    }

    .AlertModal .Thumbnail {
        width: 25rem;
        height: 19.6rem;
    }
}
