/* inspired by Jakob Johaness's codepen */
.window span {
    line-height: 9px;
    vertical-align: 50%;
}

.window {
    background: #fff;
    width: 100%;
    height: 100%;
    margin: 30px auto 0;
    border-radius: 6px;
    box-shadow: none;
    position: relative;
    box-shadow: 0 15px 35px rgba(50,50,93,.1), 0 0 15px rgba(0,0,0,.07)
}

.window .titlebar {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #e1dfe1, color-stop(1, #d5d3d5)));
    background: -webkit-linear-gradient(top, #e1dfe1, #d5d3d5);
    background: -moz-linear-gradient(top, #e1dfe1, #d5d3d5);
    background: -ms-linear-gradient(top, #e1dfe1, #d5d3d5);
    background: -o-linear-gradient(top, #e1dfe1, #d5d3d5);
    background: linear-gradient(top, #e1dfe1, #d5d3d5);
    color: #4d494d;
    font-size: 11pt;
    line-height: 20px;
    text-align: center;
    width: 100%;
    height: 37px;
    border-top: 1px solid #f2f1f2;
    border-bottom: 1px solid #b5b3b5;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    cursor: default;
}

.window .buttons {
    padding-left: 8px;
    padding-top: 11px;
    float: left;
    line-height: 0px;
}

.window .close {
    background: #ff5c5c;
    font-size: 9pt;
    width: 11px;
    opacity: 1 !important;
    height: 11px;
    border: 1px solid #e33e41;
    border-radius: 50%;
    display: inline-block;
    margin-top: 0 !important;
    vertical-align: initial;
    float: none;
}

.window .closebutton {
    color: #820005;
    visibility: hidden;
    cursor: default;
}

.window .minimize {
    background: #ffbd4c;
    font-size: 9pt;
    line-height: 11px;
    margin-left: 4px;
    width: 11px;
    height: 11px;
    border: 1px solid #e09e3e;
    border-radius: 50%;
    display: inline-block;
}

.window .minimizebutton {
    color: #9a5518;
    visibility: hidden;
    cursor: default;
}

.window .zoom {
    background: #00ca56;
    font-size: 9pt;
    line-height: 11px;
    margin-left: 6px;
    width: 11px;
    height: 11px;
    border: 1px solid #14ae46;
    border-radius: 50%;
    display: inline-block;
}

.window .zoombutton {
    color: #006519;
    visibility: hidden;
    cursor: default;
}

.window .textfield {
    font-size: 8pt;
    text-align: center;
    margin-left: -70px;
    width: 50%;
    background: white;
    height: 20px;
    margin-top: 7px;
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid #c1c0c1;
    border-radius: 4px;
    cursor: default;
    outline: none;
    display: inline-block;
}

.window .content {
    background: url(/static/images/frontpage/landlord_dashboard_optimized.gif);
    height: auto;
    min-height: 351px;
    background-size: auto 100%;
    background-repeat: no-repeat;
    border-radius: 0 0 6px 6px;
    border: 1px solid #DDD;
    border-top: 0;
}