#modal_message{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:100000000000;
}
#modal_message_layer{
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
}
#modal_message_content{
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);    
}
#modal_message_content > div{   
    background: #1d1d1b;
    color: white;
    display: inline-block;
    padding: 5rem 10rem;
    max-width: 86.4rem;
    width: 90%;
    box-sizing: border-box;
    font-size: 1.5rem;
    max-height: 100%;
    overflow:auto;
}
#modal_message_content > div::-webkit-scrollbar {
    width: 10px;
    background:#f2f2f2;
} 
#modal_message_content > div::-webkit-scrollbar-thumb {
    background-color: #DB0717;
}
#modal_message_btn_container{
    margin-top:4rem;
}
#modal_message_btn_container > .modal_message_btn{
    display: inline-block;
    background: #DB0717;
    color: white;
    border: none;
    border-radius: 1.7rem;
    cursor: pointer;
    text-decoration: none;
    padding: 0.7rem 2rem;
    margin: 0 0.5rem;
    transition: none;
    font-size: 1.3rem;
    text-transform: uppercase;
}
#modal_message_btn_container > .modal_message_btn:hover{    
    background:#940021;
}
body.transdev-message{
    overflow: hidden;
}
@media screen and (max-width: 767px) {    
    #modal_message_content > div {
        padding: 3rem;
    }
    #modal_message_content{
        height:90%; 
    }
    #modal_message_btn_container > .modal_message_btn {
        margin: 0 0 1rem 0;
    }
}
