#popup {
    height: 80%;
}

.popup-window {
    background-color: #f8f8f8;
    border-radius: 5px;
    padding: 20px 10px 20px 20px;
    color: #000000;
    /*
    overflow: auto;
    overflow-x: hidden;
    */
}

.popup-window.fixed-height {
    height: 80%;
}

.popup-window .b-close {
    position: absolute;
    top: 23px;
    right: 26px;
    background: url('../img/close-button.png') no-repeat;
    cursor: pointer;
    width: 13px;
    height: 13px;
}

.popup-window .title {
    color: #000000;
    text-align: center;
    margin-top: 0;
    font-size: 14pt;
    font-weight: bold;
    letter-spacing: 1px;
    padding-right: 25px;
}

.popup-window .submit-button {
    display: block;
    padding: 5px 20px;
    background-color: #388fe8;
    border-radius: 5px;
    border: 0;
    font-size: 10pt;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
}

.popup-window input.submit-button {
    width: 100%;
}

.popup-window .content {
    height: 95%;
    overflow-x: hidden;
    overflow-y: auto;
    margin-right: 10px;
    padding: 0 10px 10px 0;
}

.popup-window.text-center {
    text-align: center;
}