/* ADVB-7340 - License banner modal dialog*/
/* ADVB-8630 - Made dialog code generic*/
.lic-banner.modal {
    position: fixed;
    padding-top: 80px;
    z-index: 5001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.2);
}

.lic-banner .modal-content {
    position: relative;
    background-color: #fff;
    margin: auto;
    padding: 0;
    width: 50%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    color: #333;
}

.lic-banner .close {
    float: right;
    font-size: 28px;
    font-weight: bold;
    padding-top: 5px;
}

    .lic-banner .close:hover,
    .lic-banner .close:focus {
        text-decoration: none;
        cursor: pointer;
    }

.lic-banner .modal-header {
    padding: 2px 16px;
    background-color: #8241aa;
    background-color: var(--primary-color, #8241aa);
    color: white;
}

.lic-banner .modal-body {
    padding: 8px 16px;
}

.notification-body {
    overflow: auto;
    max-height: 400px;
    margin: 0 0 0 0;
}

.notification-btn {
    padding: 7px;
    margin: 2px 0 2px 0;
}

.loginSeparator {
  display: flex;
  align-items: center;
  font-weight:bold;
  padding-bottom:15px
}

.loginSeparator::before,
.loginSeparator::after {
  content: '';
  flex: 1;
  border-bottom: solid 1px RGBA(0, 0, 0, 0.12);
}

.loginSeparator:not(:empty)::before {
  margin-right: 1em;
}

.loginSeparator:not(:empty)::after {
  margin-left: 1em;
}