#popup_container {
    font-family: Roboto, Arial;
    font-size: 15px;
    min-width: 400px; /* Dialog will be no smaller than this */
    max-width: 600px; /* Dialog will wrap after this width */
    background: #FFF;
    border: 2px solid #c3c3c3;
    color: #000;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
}

#popup_title {
    font-size: 18px;
    font-family: Roboto, Arial;
    font-weight: bold;
    line-height: 2em;
    color: #333;
    /* background: #CCC url(images/title.gif) top repeat-x; */
    border: solid 0px #FFF;
    /* border-bottom: solid 1px #999; */
    cursor: default;
    padding: 0em;
    padding-left: 15px;
    margin: 0em;
    /* margin-left: 4px; */
}

#popup_content {
    background: url(images/info.gif) no-repeat 13px 32px;
    padding: 1em 2.85em;
    margin: 0em;
}

    #popup_content.alert {
        background-image: url(images/info.gif);
        background-size: 65px 65px;
    }

    #popup_content.confirm {
        background-image: url(images/important.gif);
    }

    #popup_content.prompt {
        background-image: url(images/help.gif);
    }

#popup_message {
    padding-left: 70px;
}

#popup_panel {
    text-align: center;
    margin-top: 20px;
}

#popup_prompt {
    margin: .15em 0em;
}

.bottonIron {
    width: 40%;
    border-radius: 4px;
    height: 34px;
    margin-top: 14px;
}


.modal-close {
    float: right;
    text-decoration: none;
    padding: 9px 14px;
    color: #424242;
    font-weight: 800;
    transition: all .5s ease-in-out;
    z-index: +1;
    background: rgba(0,0,0,0.1);
    text-align: center;
    border-radius: 0 4px 0 0;
    margin-top: -35px;
}

    .modal-close:hover {
        color: #fff;
        background: rgba(0,0,0,0.3);
    }
