/* ==========================================================================
   Dialog styles
   ========================================================================== */
.dlgbox {
    position: fixed;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 1050;
    overflow: auto;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    box-sizing: content-box;
    color: black;
}

.dlgbox a {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.dlgbox button {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.dlgbox a:hover {
    text-decoration: none;
}

.dlgbox .btn-primary:hover,
.dlgbox btn-primary:focus,
.dlgbox .btn-primary:active,
.dlgbox .btn-primary.active,
.dlgbox .btn-primary.disabled,
.dlgbox .btn-primary[disabled] {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.30);
}

.dlgbox label {
    cursor: default;
    margin: 0px;
}

.dlgbox .icon-remove {
    vertical-align: baseline;
    line-height: normal;
    margin: 0px;
    text-shadow: none;
    background-image: none;
    background-position: 0% 0%;
    background-repeat: repeat;
    box-sizing: initial;
}

.hidden {
    display: none;
}

.dlgbox-outer-container {
    display: table;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.dlgbox-middle-container {
    display: table-cell;
    vertical-align: middle;
}

.dlgbox-inner-container {
    max-width: 710px;
    margin: 0px auto;
    background-color: #ffffff;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
    background-clip: padding-box;
}

.dlgbox-header {
    border-bottom: 1px solid #9baab2;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), inset 0 -4px 4px -4px rgba(0, 0, 0, 0.3);
}

.dlgbox-header .close {
    font-size: 20px;
    color: #b4b4b4;
    cursor: pointer;
    text-decoration: none;
    float: right;
    margin: 10px 10px 0px;
    opacity: 1.0;
}

.dlgbox-header h3 {
    color: #e45735;
    font-size: 20px;
    padding: 10px 15px 7px;
    font-weight: bold;
    text-align: left;
    margin: 0px;
    font-family: inherit;
}

.dlgbox-body h3 {
    margin: 0;
    padding: 0;
    font-size: 20px;
    line-height: 24px;
    font-weight: 300;
    color: #0d121f;
    font-family: inherit;
}

#new-account-link {
    cursor: pointer;
}

.dlgbox-body {
    overflow-y: auto;
    max-height: 400px;
    padding: 15px;
    font-size: 13px;
    line-height: 18px;
}

.dlgbox-body form {
    margin: 0px;
}

#dlgbox-alert {
    font-size: 13px;
    line-height: 18px;
}

#login-buttons {
    margin-top: 10px;
    margin-bottom: 20px;
}

.dlgbox .btn {
    display: inline-block;
    outline: 0px;
    margin: 0px;
    padding: 6px 12px;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    color: #565656;
    text-shadow: 0 1px 0 #fff;
    background-color: #fff;
    background-image: linear-gradient(to bottom, #fff, #eee);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
    height: initial;
}

.dlgbox .btn-social {
    color: #fff;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    line-height: 16px;
}

.dlgbox .btn-social:hover {
    color: #fff;
}

.dlgbox .btn-social.google {
    background: #5b76f7;
}

.dlgbox .btn-social.facebook {
    background: #3b5998;
}

.dlgbox .btn-social.twitter {
    background: #00bced;
}

.dlgbox .btn-primary,
.dlgbox .btn-primary:hover,
.dlgbox .btn-primary:focus {
    border: 1px solid #16617d;
    color: #fff;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
    font-weight: bold;
    background-color: #00aeef;
    background-image: linear-gradient(to bottom, #00aeef, #009dd8);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.33), inset 0 1px 2px rgba(0, 0, 0, 0.2);
    line-height: 20px;
}

.dlgbox hr {
    margin: 10px 0;
    display: block;
    height: 1px;
    border: 0;
    padding: 0;
}

.dlgbox .btn-primary .icon-unlock {
    line-height: 19px;
}

.dlgbox .btn[disabled], .modal .btn.disabled {
    cursor: default;
    opacity: 0.4;
    text-shadow: 0 1px 0 #fff;
    background-color: #fff;
    background-image: linear-gradient(to bottom, #fff, #eee);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.dlgbox .btn-primary[disabled] {
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
    background-color: #00aeef;
    background-image: linear-gradient(to bottom, #00aeef, #009dd8);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.33), inset 0 -1px 2px rgba(0, 0, 0, 0.2);
}

.dlgbox .btn-large {
    padding: 9px 18px;
    font-size: 16px;
    line-height: 20px;
}


#login-buttons button {
    margin: 0 5px 5px 0;
    min-width: 180px;
}

.dlgbox .dlgbox-body label {
    color: #666;
    font-size: 13px;
    line-height: 18px;
    font-weight: normal;
}

.dlgbox input,
.dlgbox textarea,
.dlgbox .uneditable-input {
    width: 206px;
}

.dlgbox a {
    font-weight: 400;
    margin: 0;
    font-size: 12px;
    line-height: 16px;
}

#login-form a {
    color: #999;
    cursor: pointer;
}

.dlgbox-footer {
    margin: 0 15px;
    padding: 14px 0 15px;
    border-top: 1px solid #ddd;
    border-radius: 0 0 6px 6px;
    box-shadow: inset 0 1px 0 #fff;
    font: 13px/18px "Helvetica Neue",Helvetica,Arial,sans-serif;
}

.dlgbox-footer a {
    color: #069;
}

.dlgbox-footer a:hover {
    color: #0081b0;
}

.dlgbox .password-confirmation {
    display: none;
}

.dlgbox form .tip.bad {
    color: #700;
}

.dlgbox form .tip.good {
    color: #070;
}

.dlgbox form .tip {
    display: inline-block;
}

.dlgbox-body form {
    border-collapse: collapse;
    border-spacing: 0;
}

.dlgbox input[type='text'],
.dlgbox input[type='password'],
.dlgbox input[type='datetime'],
.dlgbox input[type='datetime-local'],
.dlgbox input[type='date'],
.dlgbox input[type='month'],
.dlgbox input[type='time'],
.dlgbox input[type='week'],
.dlgbox input[type='number'],
.dlgbox input[type='email'],
.dlgbox input[type='url'],
.dlgbox input[type='search'],
.dlgbox input[type='tel'],
.dlgbox input[type='color'] {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-shadow: inset 0px 1px 1px rgba(0,0,0,0.075);
    -webkit-transition: border linear .2s, box-shadow linear .2s;
    transition: border linear .2s, box-shadow linear .2s;
    display: inline-block;
    height: 18px;
    padding: 4px;
    margin-bottom: 9px;
    font-size: 13px;
    line-height: 18px;
    color: #555;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 400;
    box-sizing: content-box;
}

.dlgbox input[type='text']:focus, body input[type='password']:focus,
.dlgbox input[type='datetime']:focus,
.dlgbox input[type='datetime-local']:focus,
.dlgbox input[type='date']:focus,
.dlgbox input[type='month']:focus,
.dlgbox input[type='time']:focus,
.dlgbox input[type='week']:focus,
.dlgbox input[type='number']:focus,
.dlgbox input[type='email']:focus,
.dlgbox input[type='url']:focus,
.dlgbox input[type='search']:focus,
.dlgbox input[type='tel']:focus,
.dlgbox input[type='color']:focus {
    border-color: rgba(82, 168, 236, .8);
    outline: 0;
    box-shadow: inset 0px 1px 1px rgba(0,0,0,0.075), 0px 0px 8px rgba(82,168,236,0.6);
}
