/******************************************************************************************************************
This is a revision of pbaccess.css using Bootstrap5's media query ranges and building from smallest to 
largest screen size.

July, 2026
*******************************************************************************************************************/ 

:root {
  --yellow: #ffc600;
  --black: #272727;
  --pbblue: #337ab7;
  --nbgreen:  #55BC80;
  --nbdarkgreen: #153840;
  --nblightgreen: #f9faf5 ;
}

.banner-spacer {
  height: 163px;
}

.container-fluid {
  width:100%;
}

 .btn-check:checked + &,
  :not(.btn-check) + &:active,
  &:first-child:active,
  &.active,
  &.show {
    border-color: red;
    box-shadow : greenyellow;
  }

  .btn-check:checked:focus-visible + & {
      box-shadow: yellow;
    }

form.control {
      font-size: 13px !important;
}

form.control.hover {
      box-shadow: 0px 0px, 10px #cdd6db;
}
.a {
  color: var(--nbgreen) !important;
}

.text-white {
  color: white;
}

.btn:active {
  border-color: transparent !important;
}

.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-5, .col-md-6, .col-md-7, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
 
  padding-bottom: 0px; 
}

.form-margin-30 {
  margin-right: 30px;
  margin-left: 30px;
}

.width-100 {
  width:100%;
}

.dropdown-item:hover {
  background-color:#55BC80;
  color: yellow;
}

.nav-item {
  position: relative;
  text-decoration: none;
  color: #333;

  display: inline-block;
}

/* Creates the hidden line */
.nav-item::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--nbgreen);
  transition: width 0.3s ease-in-out;
}

/* Expands the line on hover */
.nav-item:hover::after {
  width: 100%;
}


.nb-tile {
  min-height:186px;
  background-color: var(--nblightgreen);
  border-radius: 10px 10px 10px 10px;
}


.nb-tile-attention {
  min-height:186px;
  background-color: #f39c86;
  border-radius: 0px !important;
}

.navbar-adjust {
  margin-top: 5px;
}
.btn-primary {
  background-color: var(--nbgreen);
  box-shadow: 0px 0px 20px -10px var(--nbdarkgreen);
}

.btn-primary:hover {
  background-color: var(--nbdarkgreen);
}

.btn-primary:active {
  background-color: var(--nbdarkgreen);
}


/* Force the caret arrow back into visibility */
.navbar-nav .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.navbar-brand {
    display:block;
    height: 100px;
    margin-top: -25px;
    margin-bottom: -31px;
}

.navbar-nav .nav-link {
  color:black;
}

.navbar-nav .nav-link:hover {
    color: var(--nbgreen);
}

.banner-logo {
  height:100%;
  padding-bottom: 7px;
}

.nb-color {
  background-color: beige;
}

/* Apply hover effect only on desktop viewports */



/******************************************************************************************************************

THis section was at the top of the original pbaccess.css (outside the @media queries)

*******************************************************************************************************************/ 

.pb-icon {
  width:300em;
  margin-top: -18px;
}


.pb-no-shadow {
      box-shadow: none;
}

/* Modify the behaviour of the datepicker popup */
.datepicker { 
  z-index: 1000 !important;
}

.calendaricon {

  background: url('../images/scw.gif') no-repeat;
  border:1px solid #ccc;
  height:33px;
  width:140px;
  padding-left:25px;
  font-size: 14px;

}

.check-green-icon {

  background: url('../images/check-green.png') no-repeat;
  height:33px;
  width:33px;

}

.fa-icon {
  background-color: transparent;
  border: none;
}

.pbp-blue {
  background-color: #e9fcf1;
  }

.nb-green {
  color: var(--nbgreen);
}

html {
  /* border-box box model allows us to add padding and border to our elements without increasing their size */
  box-sizing: border-box;
  /* A system font stack so things load nice and quick! */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 900;
  font-size: 10px;
  color: var(--black);
}

/*
  WAT IS THIS?!
  We inherit box-sizing: border-box; from our <html> selector
  Apparently this is a bit better than applying box-sizing: border-box; directly to the * selector
*/
*,
*:before,
*:after {
  box-sizing: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 5px 0;
}
/* Each item in our grid will contain numbers */
.item {
  /* We center the contents of these items. You can also do this with flexbox too! */
  display: grid;
  justify-content: center;
  align-items: center;
  border: 5px solid rgba(0, 0, 0, 0.03);
  border-radius: 3px;
  font-size: 35px;
  background-color: var(--yellow); /* best colour */
}

.stu-info {
  min-height:120px;
  background-color: rgb(245 255 238);
}

.item p {
  margin: 0 0 5px 0;
}

.pbp-page-header {
  width:95%; 
}

.pbp-page-header-item {
  width: 20%;
  position: relative;
  padding: 5px;
}

.pbp-page-header-buttons {
  width:40%;
  position: relative;
  padding: 5px;
}

.pbp-input-box-small {
  max-width: 165px;
}

.input-box-70 {
  border-radius : 20;
}

.pbp-label {
    width:30%;
    float: left;
    text-align:right;
    font-weight: 400;
    font-size: 15px;
    font-family: verdana;
}
.pbp-label-left {
  width:30%;
  float: left;
  text-align:left;
  font-weight: 400;
  font-size: 15px;
  font-family: verdana;
}

.pbp-login-label {
  text-align: center;
  width: 100%;
}

.controlhidden{
   display:none;
   visibility: hidden;
}
.pbp-content {
    width:70%;
    position: relative;
    float:right;
    text-align:left;
    font-weight: 600;
    font-size: 15px;
}

.pbp-button {
  position: relative;
  float:right;
  padding: 9px 16px;
  font-size: 14px;
  line-height: 28px;
  border-radius: 3px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  transition: .3s;
  backface-visibility: hidden;
  font-family: "Arial", Helvetica, Arial, sans-serif;
  font-weight: 700; 
  box-shadow: 0px 0px 20px -10px var(--nbdarkgreen);
}

.pbp-button-nav {
  position: relative;
  padding: 9px 16px;
  font-size: 14px;
  line-height: 28px;
  border-radius: 3px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  transition: .3s;
  backface-visibility: hidden;
  font-family: "Arial", Helvetica, Arial, sans-serif;
  font-weight: 700; 
  box-shadow: 0px 0px 20px -10px var(--nbdarkgreen);
}
.pbp-btn-sm {
  padding: 7px 12px;
  font-size: 12px;
  line-height: 24px;
  border-radius: 3px;
  border-width: 1px; 
  margin-left: 5px;
}

.pbp-btn-sm-0 {
  padding: 7px 12px;
  font-size: 12px;
  line-height: 24px;
  border-radius: 3px;
  border-width: 1px; 
}


.pbp-btn-grid {
    width : 100px;
}
  .pbp-label {
    color: var(--nbgreen);
    float:left;
    text-align: right;
    margin-top: -3px;
  }

  .pbp-item-box {
    min-width: 525px;
    display:inline-block;
    position: relative;
  }
  .pbp-center-box {
    min-width: 300px;
    display:inline-block;
    position: relative;
  }
  
  .pbp-profile-box {
    min-width: 525px;
    display:inline-block;
    position: relative;
  }
  .pbp-header-spacer-box {
    min-width: 400px;
    display:inline-block;
    position: relative;
  }
  .pbp-help-box {
    min-width: 200px;
    display:inline-block;
    position: relative;
    margin-right: 10px;
    margin-bottom: 10px;
    height: 80px;
    background-color: #e9fcf1;
    padding:30px;
    border-radius: 20px;

  }
  .text-red {
      color: red !important;
  }

  .center-item {
      display: block; 
      margin-left: auto; 
      margin-right: auto;
  }


  .pbp-summary-box {
    z-index:1;
    min-width: 450px;
    min-height: 230px;
    border-style: solid;
    float:left;
    position: relative;
    background-color:transparent;
    border:none;
    margin-right: 20px;
    margin-top:20px;
    border-radius: 10px;
    /*box-shadow: 2px 2px 1px rgb(81, 123, 206);*/
  }


  .pbp-summary-inner {
    clear:both;
    text-align: left;
    margin: 10px;
  }
  .pbp-display-box {
    width: 450px;
    min-height: 200px;
    max-height: 200px;
    display: inline-block;
    position: relative;
    vertical-align: top; 
    border-style: solid;
    background-color: var(--nblightgreen);
    border:none;
    margin: 20px;
    border: 20px;
    padding: 10px; 
    border-radius: 10px; 
    /*box-shadow: 2px 2px 1px rgb(81, 123, 206);*/
  }
  .pbp-attention-box {
    z-index:1;
    width: 350px;
    min-height: 100px;
    float:left;
    position: relative;
    border-style: solid;
    background-color: transparent;
    color:whitesmoke;
    border:none;
    margin-right: 10px;
    margin-top:10px;
    margin-bottom: 15px;
    border-radius: 10px;
    /*box-shadow: 2px 2px 1px rgb(81, 123, 206);*/
  }


  .pbp-attention-inner {
    clear:both;
    text-align: left;
    margin: 10px;
  }

  .pbp-copyeligible-box {
    z-index:1;
    width: 375px;
    min-height: 100px;
    float:left;
    position: relative;
    border-style: solid;
    background-color: #f39c86;
    color:whitesmoke;
    border:none;
    margin-right: 10px;
    margin-top:-18px;
    margin-bottom: 15px;
    border-radius: 10px;
    /*box-shadow: 2px 2px 1px rgb(81, 123, 206);*/
  }



    .pbp-display-box-scrolling {
    width: 450px;
    min-height: 200px;
    max-height: 200px;
    vertical-align: top; 
    display: inline-block;
    overflow-y: scroll;
    overflow-x: hidden;
    position: relative;
    border-style: solid;
    background-color: #e9fcf1;
    border:none;
    margin: 20px;
    border: 20px;
    padding: 10px; 
    border-radius: 10px;
/*box-shadow: 2px 2px 1px rgb(81, 123, 206);*/
  }

  .pbp-display-box-payments {
    width: 500px;
    min-height: 400px;
    max-height: 400px;
    vertical-align: top; 
    display: inline-block;
    overflow-y: scroll;
    overflow-x: hidden;
    position: relative;
    border-style: solid;
    background-color: #e9fcf1;
    border:none;
    margin: 20px;
    border: 20px;
    padding: 10px; 
    border-radius: 10px;
/*box-shadow: 2px 2px 1px rgb(81, 123, 206);*/
  }

  
  .pbp-bpp-display-box {
    width: 450px;
    min-height: 250px;
    display: inline-block;
    position: relative;
    border-style: solid;
    background-color: var(--nblightgreen);
    border-width: 1px;
    margin: 20px;
    border: 20px;
    padding: 10px; 
    border-radius: 10px;
    /*box-shadow: 2px 2px 1px rgb(81, 123, 206);*/
  }

  
  .pbp-responsive {
    display: inline-block;
    position: relative;
    min-height: 30px;
  }

 
  .pbp-table-cell-hotlink {
    font-weight: 100;  
  }
  
  .pbp-button-dropdown {
      float:left;
      margin-top:10px;
      height:40px !important;
      text-transform: none;
      border-width : 1px !important;
      border-style : outset !important;
      
  }
  
  .pbp-box-header {
      margin-bottom:10px;
  }
  
  .pbp-layoutunit {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 50px;  /* KPEDIT 180130 */
    padding-right: 10px; /* KPEDIT 180130 */
}
  
.pbp-select-btn {
 background-color: transparent;
 border:none;
 color: #787878;
 width:170px;
 float:right;
}

.pbp-select-btn_2 {
  background-color: transparent;
  border:none;
  color: #787878;
  width:100%;
  height:100%;
  float:right;
  position:absolute;
  z-index: 100;
  opacity: 0%;
  left:0px;
  top:0px;
      
  
 }
 .pbp-select-btn_2:hover {


   background-color: rgb(6, 92, 42);
   /*box-shadow: 2px 2px 1px rgb(81, 123, 206);*/
   opacity: 0.2;
       /*     background-image: url("../images/read-more.png");
     background-repeat: no-repeat;
     background-size: cover; */
transform:translateY(-8px);
            box-shadow:0 12px 25px rgba(0,0,0,.15);
 }

         .card{
            transition:0.3s ease;
            border:none;
            border-radius:12px;
        }

        .card:hover{
            transform:translateY(-8px);
            box-shadow:0 12px 25px rgba(0,0,0,.15);
        }

        .card img{
            height:220px;
            object-fit:cover;
        }



.pbp-select-btn_3 {
 background-color: transparent;
 border:none;
 color: #787878;
 width:100%;
 height:100%;
 float:right;
 position:absolute;
 z-index: 100;
 opacity: 0%;
 left:0px;
 top:0px;
     
 
}
.pbp-select-btn_3:hover {
  background-color: #de351859;
  box-shadow: 2px 2px 1px rgb(206 81 86);
    opacity: 0.3;
    /*
    background-image: url("../images/read-more.png");
    background-repeat: no-repeat;
    background-size: cover; */
}

.pbp-select-btn_4 {
  background-color: transparent;
  border:none;
  color: #787878;
  width:100%;
  height:135%;
  float:right;
  position:absolute;
  z-index: 100;
  opacity: 0%;
  left:0px;
  top:0px;
      
  
 }
 .pbp-select-btn_4:hover {
   background-color: #282d58b1;
   box-shadow: 2px 2px 1px rgb(81, 123, 206);
     opacity: 0.2;
     /*
     background-image: url("../images/read-more.png");
     background-repeat: no-repeat;
     background-size: cover; */
 }
  .pbp-role-box {
    min-width: 450px;
    max-width:450px;
    min-height: 130px;
    display: inline-block;
    position: relative;
    border: none;
    background-color:transparent;
    margin-right: 20px;
    margin-top:20px;
      padding-top:20px;
    padding-bottom:20px;
    /*box-shadow: 2px 2px 1px rgb(81, 123, 206);*/
  }

  .pbp-role-inner {
    clear:both;
    width: 450px;
    text-align: center;
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

    .pbp-role-inner-multi {
    clear:both;
    text-align: left;
    height: 80px;
    margin: 10px;
  }
  
  .pbp-select {
      padding:0;
      background-color: #f2f7f0;
      padding-left: 10px;
      font-size: 14px;
      min-height: 33px;
 }

  .row:before, .row:after {display: none !important;}

  .left-tab {
    margin-left:16px;
  }
  
.left-tab-2 {
  margin-left:0px;
}

.hide-button {
  border: none;
  background-color: white;
}

.pbp-memo-box {
    background-color: #f6f8f9;
    font-family: inherit;
    font-size: inherit;
    margin-left:10%;
    padding:10px;
}

.pbp-summary-box-title {
  
  font-weight: bolder;
}

  .pbp-summary-box-header {
  
    font-size: x-large;
    float: left;
    width: 100%;
    text-align: left;}

    .center-text {
      text-align: center;
    }

    .big-checkbox {width: 50px; height: 50px;}

    .med-checkbox {width: 30px; height: 30px;}

    .checkbox-lg .form-check-input{
      top: .8rem;
      scale: 1.4;
      margin-right: 0.7rem;
      }
     
     .checkbox-lg .form-check-label {
      padding-top: 13px;
      }
     
     .checkbox-xl .form-check-input {
      top: 1.2rem;
      scale: 1.7;
      margin-right: 0.8rem;
      }
     
     .checkbox-xl .form-check-label {
      padding-top: 19px;
      }

    .right { float: right;}

    .checkbox-right {
      display: flex;
      justify-content:flex-end; 
    }

    .checkbox-label {
      width: 100%;
      float: left;
      text-align:right;
      font-weight: 400;
      font-size: 15px;
      font-family: verdana;
      color: var(--nbgreen);
      
  }

  .button-login {
    justify-content: center;
    margin-left: 13%;
    min-width: 345px;
  }
  .field-login {
  height: 40px;
  border-radius: 5px;
  }
 .field-login:focus {
  box-shadow: 0px 0px 10px #6ab8ff;
 }
 .pbp-web-link {
    text-decoration: underline;
    color: #334d55;
 } 

 .pbp-web-link:hover {
   cursor:pointer;
 }

 .pbp-logo {  
  width: auto;
  height: auto;
  /*background-color: aqua;*/
 }

 .pbp-center {
  /*position: absolute;*/
  top:50%;
  left:50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
 }
 .pbp-btn-center {
  position: absolute;
  top:50%;
  left:50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
 }

/******************************************************************************************************************

 X-Small devices (portrait phones, less than 576px) 
 No media query for `xs` since this is the default in Bootstrap 

OLD  @media screen and (max-width: 600px) {

*******************************************************************************************************************/ 
.pbp-responsive-box {
    width:100% !important;
    vertical-align: top; 
    display: inline-block;
    overflow-x: hidden;
    position: relative;
 }



  .pbp-summary-box {
    z-index:1;
    min-width: 320px;
    min-height: 230px;
    border-style: solid;
    float:left;

    position: relative;
    background-color:transparent;
    border:none;
    margin-right: 20px;
    margin-top:20px;
    border-radius: 10px;
    /*box-shadow: 2px 2px 1px rgb(81, 123, 206);*/
  }    

  
.pbp-layoutunit {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 10px;  /* KPEDIT 180130 */
    padding-right: 10px; /* KPEDIT 180130 */
}


.pbp-role-box {
    min-width: 320px;
    max-width:320px;
    min-height: 130px;
    display: inline-block;
    position: relative;
    border: none;
    background-color:transparent;
    margin-right: 20px;
    margin-left: 20px;
    margin-top:20px;
    padding-top:20px;
    padding-bottom:20px;
    /*box-shadow: 2px 2px 1px rgb(81, 123, 206);*/
}


.pbp-role-inner {
    clear:both;
    width:300px;
    text-align: center;
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.pbp-item-box {
    min-width: 300px;
    display:inline-block;
    position: relative;
}
.pbp-center-box {
    min-width: 300px;
    display:inline-block;
    position: relative;
}

.button-login {
    justify-content: center;
    margin-left: 12%;
    min-width: 250px;
}
.pbp-bpp-display-box {
    width: 320px;
    min-height: 250px;
    display: inline-block;
    position: relative;
    border-style: solid;
    background-color: var(--nblightgreen);
    border-width: 1px;
    margin: 20px;
    border: 20px;
    padding: 10px; 
    border-radius: 10px;
    /*box-shadow: 2px 2px 1px rgb(81, 123, 206);*/
}
.pbp-display-box {
    width: 320px;
    min-height: 250px;
    display: inline-block;
    position: relative;
    border-style: solid;
    background-color: var(--nblightgreen);
    border-width: 1px;
    margin: 20px;
    border: 20px;
    padding: 10px; 
    border-radius: 10px;
    /*box-shadow: 2px 2px 1px rgb(81, 123, 206);*/
}
.left-tab {
    margin-left:0px;
}
.left-tab-2 {
      margin-left:10px;
}
.bt-input {
    background-color: rgb(83, 62, 133);
    height: 34px;
    border-style: groove;
}
 .stu-info {
    min-height:170px;
}


/******************************************************************************************************************

Small devices (landscape phones, 576px and up)

OLD @media screen and (min-width: 600px)

*******************************************************************************************************************/ 
@media (min-width: 576px) { 


   .pbp-summary-box {
      z-index:1;
      float:left;
      max-width: 550px;
      min-height: 230px;
      border-style: solid;

      position: relative;
      background-color:transparent;
      border:none;
      margin-right: 20px;
      margin-top:20px;
      border-radius: 10px;
      /*box-shadow: 2px 2px 1px rgb(81, 123, 206);*/
  }

    .pbp-layoutunit {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        padding-left: 20px;  /* KPEDIT 180130 */
        padding-right: 10px; /* KPEDIT 180130 */
    }

    .banner-600 {
        width : 600px;
    }

    .width-100 {
      width:inherit;
    }

}

 /******************************************************************************************************************

Medium devices (tablets, 768px and up) 

OLD @media screen and (max-width: 920px) {
OLD  @media screen and (min-width: 738px) {


*******************************************************************************************************************/ 
@media (min-width: 768px) { 

   .pbp-responsive-box {
    vertical-align: top; 
    display: inline-block;
    overflow-x: hidden;
    position: relative;
    }
  .pbp-label-box {
    width:15%;
    }


.banner-logo {
      padding-bottom: 0px;
}

.pbp-bpp-display-box {
    width: 460px;
  }
  .width-100 {
    width:inherit;
  }

}
  
/******************************************************************************************************************

Large devices (desktops, 992px and up) 

OLD @media screen and (max-width: 1000px) {
*******************************************************************************************************************/ 
@media (min-width: 992px) { 

  .pbp-label-box {
    width:30%;
    }
    .nb-color {
  background-color: transparent;
}
  .width-100 {
    width:inherit;
  }

    .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
        display: block; 
        margin-top: 0; /* Fixes potential 1px pointer gap issues */
    }
    .pb-icon {
    width:300em;
    margin-top: -35px;
    }

  .banner-spacer {
      height: 127px;
  }   
}

/******************************************************************************************************************

X-Large devices (large desktops, 1200px and up) 

*******************************************************************************************************************/ 
@media (min-width: 1200px) { 

  .width-100 {
    width:inherit;
  }

}

/******************************************************************************************************************

XX-Large devices (larger desktops, 1400px and up) 
*******************************************************************************************************************/ 
@media (min-width: 1400px) { 

  .width-100 {
    width:inherit;
  }

 }