


.wr-main .secondary .oa-form{
  padding: 20px 10px;
  margin:10px auto;
}

.wr-main .secondary .oa-form form{
  margin-left: 0;
  padding:0;
  text-align: left;
  font-weight: 400;
  overflow: hidden;
  background: transparent;
  border: none;
  box-shadow: none;
}

.wr-main .secondary .oa-form form .submit{
  float:none;
}

.wr-main .secondary .oa-form .button{
  border:none;
  border-radius: 3px;
  margin:5px 0;
  background-color: #fff;
  transition:background-color 0.5s ease, color 0.5s ease;
  color:#222;
  font-size:14px;
  padding:5px 20px;
  font-weight: bold;
}

.wr-main .secondary .oa-form .button:hover,
.wr-main .secondary .oa-form .button:focus{
  background-color: #0033a1;
  color: #fff;
  text-decoration: underline;
}

.wr-main .secondary .oa-form .button.is-destructive:hover,
.wr-main .secondary .oa-form .button.is-destructive:focus{
  background-color: #eb0028;
  color: #fff;
  text-decoration: underline;
}

.wr-main .secondary .oa-form .button.current{
  background-color: #dbf11e;
  color: #222;
  text-decoration: none;
}

.wr-main .secondary .oa-form .oa-form-title{
  color:#fff;
  font-size:12px;
}

.wr-main .secondary .oa-form.oa-logout{
  margin:0;
}

.wr-main .primary .oa-form{
  padding-top:0;
}
  
  .oa-notices{
    margin: 15px auto;
    border-left: 4px solid #ddd;
    width: 320px;
    align-self: center;
    justify-self: center;
    padding:12px;
  }

  .oa-notices .notices-list{
    padding:0;
    margin:0;
  }

  .oa-notices .notices-list > li{
    display:block;
  }

  
  .oa-section-header {
    background-color: #0033a1;
    color: #fff;
    padding: 20px;
  }
  
  .oa-section-header .title.container{
    padding:0;
  }
  
  .oa-section-header .title h1{
    margin:25px 0 50px 0;
  }
  
  
  
  .oa-section {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
  }
  .oa-section > .oa-section-content {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    background-color:#0033a1;
  }
  .oa-section > .oa-section-content > .secondary {
    background-color: #001235;
    width: 15%;
    min-width: 350px;
    flex:0;
    border-top-right-radius:9px;
  }
  .oa-section > .oa-section-content > .primary{
    flex:1;
    background-color:#fff;
  }
  
  @media (max-width: 840px) {
    .oa-section > .oa-section-content{
      display:block;
    }
  
    .oa-section > .oa-section-content > .secondary{
      display:block;
      max-width: 100%;
      width:auto;
    }
    .oa-section > .oa-section-content > .primary{
      display:block;
      max-width: 100%;
      width:auto;
    }
  }
  
  
  .oa-section > .oa-section-content > .primary > .inner{
    padding:20px;
  }

  .oa-section > .oa-section-content > .primary > .inner > section{
    margin-top:-50px;
    background-color:#fff;
    border-radius:3px;
    padding:15px;
  }



  
  .oa-section .oa-nav{
    margin-bottom:75px;
  }
  
  .oa-section .oa-nav .menu-item {
    list-style: none;
    margin: 25px 0;
  }
  
  .oa-section .oa-nav ul {
    padding: 0;
    margin: 0;
  }
  
  .oa-section .oa-nav ul .menu-item a,
  .oa-section .oa-nav ul .menu-item span {
    display: block;
    padding: 10px 0;
    color: #fff;
    position: relative;
    z-index:2;
    transition:color 0.5s ease;
    font-size: 18px;
  }
  
  
  .oa-section .oa-nav ul .menu-item a:after{
    content: '';
    position: absolute;
    border-bottom: 3px solid #fff;
    width: 0;
    top: 0;
    height: 100%;
    left: 0;
    z-index:-1;
    transition:width 0.5s ease;
  }
  
  .oa-section .oa-nav .menu-item a:focus:after,
  .oa-section .oa-nav .menu-item a:hover:after{
    width:100%;
  }

  .oa-section .oa-nav ul .menu-item.has-childs > a,
  .oa-section .oa-nav ul .menu-item.has-childs > span{
    margin-bottom:2px;
  }

  .oa-section .oa-nav ul .menu-item.has-childs .menu-item{
    /*padding-left:15px;*/
    margin-left:15px;
    margin-top:0;
  }

  .oa-section .oa-nav ul .menu-item.has-childs .menu-item a,
  .oa-section .oa-nav ul .menu-item.has-childs .menu-item span{
    font-size:15px;
  }
  
  .oa-section .auth-box .authbox-tagline {
    text-align: center;
    color: #0033a1;
  }
  .oa-section .auth-box {
    padding: 10px;
    border: 1px solid #fff;
    margin: 15px;
    background-color: #fff;
    border-radius: 3px;
  }
  .oa-section .auth-box .auth-box-username {
    text-align: center;
    font-weight: bold;
  }
  .oa-section .auth-box .auth-box-userloginname {
    text-align: center;
    font-size: 12px;
    font-style:italic;
  }
  
  .oa-section .oa-section-docs{
    padding:20px;
  }

  .oa-section .doc-entries{
    max-width:100%;
    width:100%;
  }

  .oa-section .doc-entries .heading {
    padding: 12px 0;
  }
  
  .oa-section .doc-entry,
  .oa-section .doc-list-header {
    border-bottom: 1px solid #ddd;
  }
  
  .oa-section .doc-entry > *{
    padding:5px 0;
  }
  .oa-section .doc-list-header{
    background-color:#0033a1;
    color:#fff;
  }
  
  .oa-section .doc-title {
    flex-basis: 300px;
    flex:1;
    border-right: 1px solid #ddd;
  }
  .oa-section .doc-title > * {
    display: block;
    max-width: 300px;
  }
  
  .oa-section .doc-extension{
    flex: 1;
  }
  .oa-section .doc-last-updated{
    flex: 1;
  }
  
  .oa-section .doc-title a{
    color:#0033a1;
  }
  
  .oa-section .doc-title a > *{
    display:block;
  }
  .oa-section .doc-title a > .name{
    font-size:12px;
    padding-right:3px;
    color:#444;
  }
  
  .oa-section .doc-entry:nth-child(2n+1){
    background-color:#eee;
  }
  
  .oa-section .inf > *,
  .oa-section .heading > * {
    padding:3px;
    display:block;
  }
  
  .oa-section .oa-notice {
    text-align: center;
    margin: 50px auto;
  }
  .oa-section .oa-notice .description {
    color: #777;
  }
  
  
  .oa-section .oa-res-filter{
    background-color:rgba(255,255,255,0.9);
    box-shadow: 0px 0 10px 0 rgba(0,0,0,0.2);
    margin: 0 15px 35px 15px;
    position:sticky;
    top:5px;
  }

  .oa-section .oa-res-filter ul{
    display:flex;
    flex-direction: row;
    flex-wrap:wrap;
    align-items: center;
    padding:0;
    margin:0;
  }

  .oa-section .oa-res-filter ul li{
    display:block;
    padding:5px;
  }

  .oa-section .oa-res-filter ul li a{
    text-decoration: underline;
    color:#777;
    font-weight: bold;
    padding:10px 2px;
    display:block;
    font-size:18px;
  }

  .oa-section .oa-res-filter ul li a.current{
    color:#2966ee;
  }

  .oa-section .oa-res-filter ul li a:hover,
  .oa-section .oa-res-filter ul li a:focus{
    color:#2966ee;
  }

  .oa-section .oa-links-wr {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .oa-section .oa-link {
    flex: 1 1 200px;
    max-width: 200px;
    border: 1px solid #eee;
    border-radius: 3px;
    overflow: hidden;
    margin: 1%;
    transition:box-shadow 0.5s ease;
  }
  .oa-section .oa-link .oa-link-header {
    height: 200px;
    background-color: #ffffff;
  }
  .oa-section .oa-link .oa-link-header img{
    display: block;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 45px;
    object-fit: contain;
    object-position: center;
    max-width: 100%;
  }
  
  .oa-section .oa-link .link {
    font-size: 18px;
    text-align: center;
    /*! padding: 15px; */
  }
  .oa-section .oa-link .description {
    font-size: 12px;
    padding: 10px;
    text-align: left;
  }
  .oa-section .oa-link .link a {
    display: block;
    padding: 15px;
    color: #081677;
  }
  
  
  @media (max-width: 648px) {
    .oa-section .oa-link{
      max-width: 100%;
    }
  }

  .oa-section .oa-link:hover
  .oa-section .oa-link:hover:focus,
  .oa-section .oa-link:focus-within{
    box-shadow: -1px -1px 2px 1px rgba(0,0,0,0.1);
  }
  
/*
  .oa-section .profile-actions {
    padding: 15px;
    border: 1px solid #ddd;
    margin-top: 30px;
  }
  .oa-section .profile-actions a {
    display: inline-block;
    padding: 10px;
    background-color: #0033a1;
    border-radius: 3px;
    color: #fff;
  }*/

  
.oa-section .oa-section-profile .profile-field {
  padding: 5px;
  margin: 10px auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  border:1px solid #eee;
  border-radius: 3px;
}
.oa-section .oa-section-profile .profile-field > div {
  flex: 1 1 auto;
  word-wrap:break-word;
  padding:5px;
}
.oa-section .oa-section-profile .profile-field .field-name {
  width: 150px;
  font-weight: bold;
  flex-grow: 0;
  flex-shrink: 0;
}
.oa-section .oa-section-profile .profile-field .field-data {
  max-width: 50%;
  flex-grow: 1;
}
.oa-section .oa-section-profile .profile-field .field-actions {
  flex-grow: 0;
  max-width: 150px;
}

.oa-section .oa-section-profile .profile-field .field-actions a{
  display: inline-block;
  padding: 10px;
  background-color: #0033a1;
  border-radius: 3px;
  color: #fff;
}


.oa-section-settings .oa-settings-form{
  margin-bottom:70px;
}

.oa-section-settings .oa-settings-form .oa-form-title{
  margin:25px 0 25px 0;
}

.oa-section .oa-section-profile .profile-field-group{
  margin-top:35px;
}
  
  .oa-section .oa-priv-tagline {
    /*! padding: 15px; */
    padding:0;
    font-size: 16px;
    color: #dbf11e;
  }
  .oa-section .secondary .inner {
    padding:30px 20px;
  }
  .oa-section .oa-priv-user-info {
    padding:0;
    font-size: 22px;
    margin-top: 70px;
    color: #fff;
    padding-bottom:0;
    border-bottom:3px solid #777;
  }
  
  
  .oa-priv-user-username {
    font-weight: bold;
    font-size: 30px;
  }
  .oa-priv-user-role {
    margin-top: 5px;
    font-size: 18px;
  }
  .oa-priv-user-role .roles{
    padding:10px 0 0 0;
    list-style: none;
  }
  .oa-priv-user-role .roles .role{

  }
  .oa-priv-user-logininfo{
    margin-top:5px;
    font-size:14px;
  }
  .oa-priv-user-logout-cta {
    margin:70px auto;
    border-top: 3px solid #0033a1;
  }
  
  