.h1popup {
    color: #363636;
    margin: 0 0 20px 0;
    font-size: 18px;
}

.labelpopup {
    font-size: 16px;
    color: #000;
    font-family: calibri;
    font-weight: bold;
}

.divpopup {
    float: left;
    border: 2px solid #15AB15;
    padding: 30px 20px 20px 20px;
    margin: 75px 0 0 0;
    width: 95%;
    background: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background: -moz-linear-gradient(90deg, rgba(103,191,103,1) 0%, rgba(176,232,186,1) 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(176,232,186,1)), color-stop(100%, rgba(103,191,103,1))); /* safari4+,chrome */
    background: -webkit-linear-gradient(90deg, rgba(103,191,103,1) 0%, rgba(176,232,186,1) 100%); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(90deg, rgba(103,191,103,1) 0%, rgba(176,232,186,1) 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(90deg, rgba(103,191,103,1) 0%, rgba(176,232,186,1) 100%); /* ie10+ */
    background: linear-gradient(0deg, rgba(103,191,103,1) 0%, rgba(176,232,186,1) 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#B0E8BA', endColorstr='#67BF67',GradientType=0 ); /* ie6-9 */
    -webkit-box-shadow: 0 10px 8px -6px #363636;
    -moz-box-shadow: 0 10px 8px -6px #363636;
    box-shadow: 0 10px 8px -6px #363636;
}

fieldset {
    border: none;
}

#user-details {
    float: left;
    width: 230px;
}

#user-message {
    float: right;
    width: 55%;
}

input, textarea {
    padding: 8px;
    margin: 4px 0 20px 0;
    background: #fff;
    width: 220px;
    font-size: 14px;
    color: #555;
    border: 1px #ddd solid;
    /* -- CSS3 Shadow - create a shadow around each input element -- */
    -webkit-box-shadow: 0px 0px 4px #aaa;
    -moz-box-shadow: 0px 0px 4px #aaa;
    box-shadow: 0px 0px 4px #aaa;
    /* -- CSS3 Transition - define what the transition will be applied to (i.e. the background) -- */
    -webkit-transition: background 0.3s linear;
}

textarea {
    width: 90%;
    height: 83px;
}



input.submit {
    width: 110px;
    font-family: calibri;
    color: #fff;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: bold;
    margin-top: 10px;
    border: 1px solid #93EA95;
    border-radius: 10px;
    background: #19b548;
    background: -moz-linear-gradient(top, #19b548 0%, #19b548 41%, #128a42 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#19b548), color-stop(41%,#19b548), color-stop(100%,#128a42));
    background: -webkit-linear-gradient(top, #19b548 0%,#19b548 41%,#128a42 100%);
    background: -o-linear-gradient(top, #19b548 0%,#19b548 41%,#128a42 100%);
    background: -ms-linear-gradient(top, #19b548 0%,#19b548 41%,#128a42 100%);
    background: linear-gradient(to bottom, #19b548 0%,#19b548 41%,#128a42 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#19b548', endColorstr='#128a42',GradientType=0 );
}


.black_overlay {
    display: none;
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 1001;
    -moz-opacity: 0.8;
    opacity: .80;
    filter: alpha(opacity=80);
}

.white_content {
    display: none;
    position: absolute;
    top: 10%;
    left: 25%;
    width: 50%;
    /*height: 50%;*/
    padding: 16px;
    /*border: 16px solid orange;
            background-color: white;*/
    z-index: 1002;
    overflow: auto;
}
