@font-face {
    font-family: 'Roboto Condensed';
    src: url("../assets/fonts/RobotoCondensed-Regular.ttf") format("truetype");
}

#modal-overlay * {
    box-sizing: border-box;
    font-family: "Roboto Condensed";
    color: rgba(255, 255, 255, 1);
}

#modal-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    /*z-index: 10;*/
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    top: 0;
    left: 0;
}

#notification-modal {
    max-width: 650px;
    max-height: 325px;
    position: absolute;
    background-color: rgba(85, 85, 85, 1);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Chrome/Safari/Opera */
    -khtml-user-select: none; /* Konqueror */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE/Edge */
    user-select: none; /* non-prefixed version, currently not supported by any browser */
}

#notification-modal #modal-title {
    position: relative;
    width: 100%;
    height: 80px;
    background-color: rgba(0, 0, 0, 1);
    text-align: center;
    font-size: 35px;
    font-weight: bold;
    line-height: 60px;
    word-wrap: break-word;
    display: block;
    padding: 10px;
}

#notification-modal #modal-content {
    position: relative;
    width: 100%;
    height: calc(100% - 80px);
    text-align: center;
    font-size: 25px;
    line-height: 40px;
    word-wrap: break-word;
    padding: 10px;
}

/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) {
    #notification-modal {
        transform: scale(0.5, 0.5);
        -moz-transform: scale(0.5, 0.5);
        -o-transform: scale(0.5, 0.5);
        -webkit-transform: scale(0.5, 0.5);
    }
}

/* Extra Small Devices, Phones */
@media only screen and (min-width: 480px) {
    #notification-modal {
        transform: scale(0.6, 0.6);
        -moz-transform: scale(0.6, 0.6);
        -o-transform: scale(0.6, 0.6);
        -webkit-transform: scale(0.6, 0.6);
    }
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) {
    #notification-modal {
        width: 650px;
        height: 325px;
    }
}