/* Modal Dialogue */
.ui-dialog {
    position: fixed;
    background-color: #f1f1f1;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fefcfc), to(#e6e6e6)); /* for webkit browsers */
    background-image: -moz-linear-gradient(top, #fefcfc, #e6e6e6); /* for firefox 3.6+ */
    background-image: linear-gradient(top, #fefcfc, #e6e6e6);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fefcfc', endColorstr='#e6e6e6');
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#fefcfc', EndColorStr='#e6e6e6')";
    padding: 20px 0;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    -moz-box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.3);
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.3);
}

/* Title Bar */

.eb_dialog_outer .ui-dialog-titlebar {
    height: 1px;
    background: transparent;
    border: none;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-bottom: 1px #d5d5d3 solid;
    height: auto;
    font-size: 24px;
    line-height: 24px;
    padding: 0 0 12px 0;
    margin-bottom: 24px;
}

.eb_dialog_outer .ui-dialog-titlebar-close {
    position: absolute;
    top: 15px;
    width: 22px;
    height: 23px;
    background: transparent url(https://cdn.evbstatic.com/s3-s3/static/images/social_module/close-button-trans.png) no-repeat top center;
    cursor: pointer;
    text-indent: -9999px;
    z-index: 10002;
}

.eb_dialog_outer .ui-dialog-title {
    color: #666;
    font-weight: 400;
}

.ui-icon-closethick,
.ui-dialog-titlebar .ui-icon {
    background: none;
}

/* Outer Dialog */

.eb_dialog_outer {
    padding: 30px 30px 18px;
    background: #f1f1f1;
    color: #666;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.eb_dialog_outer a:focus {
    outline: none;
}

/* Content */

.eb_dialog.ui-dialog-content {
    /* Overrrides ui-dialog styles*/
    margin: 0;
    border: none;
    background: transparent;
    padding: 0;
}

.ui-dialog > .ui-dialog-content > .ui-dialog-body {
    font-size: 14px;
    font-weight: 400;
}

.ui-dialog > .ui-dialog-content > .ui-dialog-body > form label {
    display: block;
    line-height: 30px;
    color: #444;
}

.eb_dialog a,
.eb_dialog a:link,
.eb_dialog a:visited {
    color: #2990ba;
}

/* Dialogue Footer */
.ui-dialog_footer {
    clear: both;
    padding: 0 20px 0 20px;
}

.eb_dialog > .footer {
    font-size: 11px;
    text-align: center;
    font-weight: 500;
}

.eb_dialog > .footer > .logo {
    display: block;
    clear: left;
    width: 88px;
    height: 27px;
    margin: 12px auto 0;
    background: transparent url(../../images/logos/eb_tm_grey.png) no-repeat center center;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}