/* KC and Patternfly overrides*/
body {
  font-family: "Arial", "Helvetica", "sans-serif";
  font-size: 16px;
  line-height: 1.5;
}
.login-pf-page {
    padding-top: 0px;
}

h1{
    font-size: 2em;
    font-weight: bold;
}
#kc-page-title{
  text-align: left;
}
#kc-logo {
  max-width: unset !important;
  width: initial !important;
}

/* KC and Patternfly overrides Forms */
.pf-c-form-control {
    height: var(--pf-c-form-control--Height);
    text-overflow: ellipsis;
    border: 1px solid gray;
    background-color: white;
  
    font-size: 16px !important;;
    line-height: 24px !important;;
    padding: 16px !important;;
    min-height: 56px !important;
  }
  .pf-c-form-control:focus, .pf-c-form-control:focus-visible, .pf-c-form-control:hover{
    border: 2px solid gray !important;
    background-color: white !important;
    outline: none !important;
  }
  input[type~="password"] ~ .pf-c-button.pf-m-control {
    border-top: 1px solid gray !important;
    border-right: 1px solid gray !important;
  }

/* KC and Patternfly overrides Lang Switch */
a#kc-current-locale-link {
  display: block;
  padding: 0 5px;
  width: 80px;
}
a#kc-current-locale-link:after{
  content: '';
}
a#kc-current-locale-link img, .kc-dropdown-item img {
  padding: 0 10px;
}
.kc-dropdown-item {
  display: block;
  text-align: center;
}
#kc-locale-dropdown ul{
  background-color: white;
}
#kc-locale-dropdown{
  font-size: 14px;
  min-width: 66px;
}
#kc-locale ul{
  border: none;
  border-radius: 4px;
  outline: 0;
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  background: white;
}
#kc-locale ul li a {
  line-height: 48px;
}
#kc-locale ul li a:hover {
  background: rgba(0, 0, 0, 0.04);
}
#kc-locale-dropdown:hover ul{
  top: 0px;
  position: absolute;
}

  
/* EP Public Page Wrapper  */
.public-page-wrapper{
  height: 100%;
  min-height: 100%;
  min-width: 100%;
  width: 100%;
  flex-direction: column;
  box-sizing: border-box;
  display: flex; 
}

main {
  display: flex;
  flex-direction: column;
  flex: 1 1 100%;
  justify-content: center;
  align-items: center;
  background-color:  var(--ep-content-bg);
  padding-top: 2em;
  padding-bottom: 2em;
}

/* EP Header */
.ep-header {
  background: var(--ep-header-bg);
  /*border-bottom: solid 1px black;*/
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}
.ep-header-content {
    justify-content: space-between;
    align-items: center;
    display: flex;
    width: 100%; 
    max-width: 87rem;
    gap: 32px;
    padding: 12px 32px;

}
.ep-header .logo {
  height: 40px;
}
.ep-header .nav-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  width: 100%;
}


/*   @media only screen and (max-width: 730px) {
    .header .ep-header-content {
        height: 64px;
        box-sizing: border-box;
        padding: 12px;
        justify-content: space-between;
    }
    .header .logo {
      height: 25px;
    }
  } */

  .navigation {
    display: flex;
    flex: 1 1 auto;
    font-weight: 700;
  }
  
  .menu-item {
    font-weight: 700;
    font-size: 1rem;
    border: none !important;
    text-decoration: none;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: start;
    line-height:18.4px;
    color:  var(--ep-header-color);
  }
  a.menu-item:hover{
    color:  var(--ep-header-color);
  }
  
/* @media only screen and (max-width: 730px) {
    .navigation{
     display: none;
     position: absolute;
     flex-direction: column;
     top: 65px;
     left:0;
     width: 100%;
     background-color: var(--ep-header-bg);
     padding: 32px 12px;
    }
    .navigation.show{
      display: flex;
    }
    .menu-item{
      width: 100%;
    }
} */
  


/* EP Footer */
footer{
    /*position: fixed;
    bottom: 0px;
    width: 100%;*/
    padding: 16px 32px;
    background-color: var(--ep-footer-bg);
    color: var(--ep-footer-color);
    /*border-top: solid 1px black;*/
    display: flex;
    flex-direction: column;
}
footer > div{
    display: flex;
    flex-direction: row;
    max-width: 87rem;
    width: 100%;
    margin: auto;
    grid-gap: 1em;
    justify-content: space-between;
}
footer a.ep-footer-a{
    color: var(--ep-footer-color);
    text-decoration: none;
    border: none;
    /* font-size: 15px;
    line-height: 1.15; */
}
footer a.ep-footer-a:hover{
    color: var(--ep-footer-color) !important;
}
footer .ep-footer{
    display: flex;
    grid-gap: 1em;
    color: var(--ep-footer-color);
}
footer.fixed{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}

.btn-default{
  background-image: none;
}