.form-builder-modal {
    z-index: 9999999999;
    position: absolute;
    width: 500px;
    top: 50px;
    display: none;
    left: 50%;
    background: #FFF;
    margin-left: -250px;
    padding: 10px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid rgba(0,0,0,.1);
    border-radius: 2px;
    overflow: auto;
}

.blackbg {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .5;
    z-index: 999999999;
}

.form-group {
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    color: #303030;
    font-weight: bold;
}

.form-group input[type="text"] {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid rgba(0,0,0,.1);
    margin-top: 5px;
    width: 98%;
    padding: 4px;
    border-radius: 2px;
}

.formbuilder-msg-alert {
    color: #AAA;
}

.form-builder-modal .send {
    background: #FFF;
    float: right;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid rgba(0,0,0,.1);
    color: #404040;
    cursor: pointer;
    padding: 5px 10px;
    font-weight: bold;
    border-radius: 2px;
}

.form-builder-modal .send.sent {
    background: #8bc34a;
    cursor: not-allowed;
    color: #FFF;
}

.form-builder-modal .send.error {
    background: #f44336;
    cursor: not-allowed;
    color: #FFF;
}

.form-builder-modal .close {
    background: #f44336;
    float: right;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid rgba(0,0,0,.1);
    color: #FFF;
    cursor: pointer;
    padding: 5px 10px;
    font-weight: bold;
    border-radius: 2px;
}

.form-title {
    font-size: 14px;
    font-weight: bold;
    float: left;
}

.newpic {
    display: inline-block;
    width: 98px;
    height: 98px;
    border: 2px solid rgba(0,0,0,.5);
    border-radius: 4px;
    background-repeat: no-repeat;
    word-wrap: break-word;
    background-position: center;
    box-shadow: 0px 3px 0px rgba(0,0,0,0.2);
    margin: 2px 0px 2px 0px;
    font-size: 11px;
}

.newpic:after {
    content: attr(title);
    width: 98px;
    height: 98px;
    position: absolute;
    text-align: center;
    background: rgba(0,0,0,.8);
    color: #fff;
    font-weight: bold;
    display: none;
    overflow: hidden;
}

.newpic:hover:after {
    display: block;
}