@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(../icons/MaterialIcons-Regular.ttf); /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(../icons/MaterialIcons-Regular.ttf) format('truetype');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
}

:root {
    --primaryblue: 3,51,102;
    --primarydark: 2,29,57;
    --primaryorange: 196, 48, 22;
    --primarygray: 241, 241, 241;
}

body {
    margin: 0;
    padding: 0;
}

button {
    border: none;
    cursor: pointer;
    background-color: transparent;
    outline: none !important;
}

button:disabled {
    opacity: .5;
    cursor: not-allowed;
}


.jcontainer {
    margin: 0;
}

.jpagecontent {
    padding: 0 20px 30px 20px;
}

.jform {
    width: 100%;
}

.jformcontainer {
    display: flex;
    flex-direction: column;
}

.jformcontainer > div {
    margin-top: 10px;
}

.jformgroup {
    width: 100%;
    display: flex;
    justify-content: center;
}

.jformgroup input:disabled, .jformgroup select:disabled {
    background-color: lightgray;
}

.jformgroupcol {
    flex-direction: column;
}

.jcontrollabel {
    font-size: 12px;
    text-transform: capitalize;
    text-align: left;
    color:#212529;
    font-weight: 800;
    margin-bottom: 5px;
    opacity: .4;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.jcontrollabel-alt {
    font-size: 12px;
    text-transform: capitalize;
    text-align: left;
    color:#212529;
    font-weight: 500;
    margin-bottom: 10px;
    opacity: .7;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.jformcontrol {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid  lightgray;
    background-color: white;
    transition: ease-in-out, all .35s ease-in-out;
    outline: transparent solid 1px;
    color: black;
    font-weight: 500;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.jformcontrol::placeholder {
    font-weight: 300;
    font-family: 'font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif';
    font-size: 12px;
    opacity: 0.4;
}

.jformcontrol.placeholder-alt::placeholder {
    font-size: 14px;
    opacity: 0.7;
}

.jformcontrol:focus {
    outline: skyblue solid 1px;
    border-color: lightgray;
}

.j-action-area {
    display: flex;
    align-items: center;
    width: 100%;
}

.j-action-area > button {
    margin: 0 5px;
}

.action-btn {
    border-radius: 10px;
    color: white;
    padding: 18px;
    border: none;
    outline: none;
    margin-top: 50px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    transition: 1s;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif

}

.action-btn:hover {
    opacity: .7;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}
.hidden{
    display: none !important;
}

.capitalize{
    text-transform: capitalize;
}

.flex {
    display: flex;
    align-items: center
}

.loan-action {
    padding: 5px;
    width: 100%;    
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    border-bottom: 1px solid rgb(236, 233, 233);
    transition: 1s;
}


.loan-action > span {
    background-color: rgb(241, 241, 241, 0.6);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    width: 35px;
    margin-right: 10px;
    transition: 1s;
}

.loan-action > p {
    font-size: small;
    font-weight: 500;
    color:#667483;
    transition: 1s;
}

.loan-action:hover > span {
    background-color: white;
    color: #3d4c5c;
    font-size: smaller;
}
.loan-action:hover > p {
    color: #3d4c5c;
}


.loan-action-wrap {
    flex-direction: column;
}


.loan-action-wrap > .loan-action {
    margin-top: 10px
}

.page-header {
    font-size:17px;
    font-weight: 800;
    color: rgb(var(--primaryblue));
    text-align: left;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 0;
}



.loan-timeline-wrapper {
   width: 100%;
   position: relative;
} 


.loan-timeline::after {
    content: '';
    width: 95%;
    left: 0;
    bottom: 18px;
    background-color: lightgray;
    height: 1px;
    position: absolute;
    opacity: .5;
   
}


.loan-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    
}

.loan-timeline span {
    border-radius: 50%;
    background-color: white;
    display: flex;
    height: 40px;
    width: 40px;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 13px;
    z-index: 22;
    border: 1px solid lightgray;
    transition: 1s;
    cursor: pointer;
}

.loan-timeline span:hover{
    background-color: rgb(167, 164, 164);
    color:white;
}

.loan-timeline span:nth-child(1) {
    background-color: rgb(var(--primaryblue));
    color:white;
}

.card div span {
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 12px;
}

/* jstyles */

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border-bottom: 4px solid rgb(var(--primaryblue), 0.3);
    padding: 10px;
    color:white;
}

.nav-bar #logo {
    transform: translateY(4px);
}

.sub-header {
    width: inherit;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    flex-direction: row;
}

.sub-header .status {
    width: 30%;
}

.sub-header .ref {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    padding: 0 20px;
}


.timer-status {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; 
    display: flex;
    align-items:center;
    width: 100%;
    background-color:#fff;
    padding: 10px;
    border-radius:10px;
    margin: 10px;
    color: #325074;
    font-weight: 500;
    font-size: 12px;
    border: 1px solid rgb(241, 241, 241, 0.6);
}

.sub-header .ref .ref-wrap { 
    cursor: pointer;
}

.content-grid {
    margin: 10px 10 30px 10px;
    display: flex;
}

.content-grid > div {
     margin: 10px;
     border-radius: 10px;
     
}

.content-grid .grid-content {
    width: 70%;
    padding: 0 !important;
}

.content-grid .grid-content .content{
    padding:  30px;
    border-radius: 10px;
    background-color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.content-grid .grid-menu {
    width: 30%;
    position: relative;
    z-index: 0;
}

.account-menu {
    display: grid;
    grid-template-columns: auto auto auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgb(241, 241, 241, 0.6);
}

.icon-box  {
    background-color: white;
    height: 65px;
    width: 65px;
    border-radius: 8px;
    display: flex;
    justify-content:center;
    align-items:center;
    border: 1px solid #eceaea;
    transition: 1s;
}

.icon-box:hover {
    background-color: rgb(3,51,102);
    color: #fff;
}
.icon-box:hover i {
    color: #fff;
}

.icon-box i {
    font-size: 20px;
    color: rgb(var(--primaryblue));
}

.icon-box i:hover {
    color: #fff;
}

.account-menu-item .menu-label {

    margin-top: 5px;
    text-align:center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: small;
    font-weight: 500;
    color:#667483;
    
}

.account-menu .account-menu-item {
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items:center;
    margin: auto auto;
    cursor: pointer;
}

#toggle-menu {
    display: none;
}

/*.account-menu .menu-label {*/
/*    font-size: 0.8rem !important;*/
/*    margin-top: 5px;*/
/*    text-align:center;*/
/*    font-weight: 500;*/
/*}*/

/*.account-menu > a {*/
/*    text-decoration: none !important;*/
/*    border: 1px solid green;*/
/*}*/

/*.account-menu .account-menu-item {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    justify-content:center;*/
/*    align-items:center;*/
/*    margin: auto auto;*/
/*}*/

.filter-template {
    display:flex; 
    align-items: center;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}

.filter-template div {
    display:flex; 
    align-items: center;
    flex-direction:  row;
}

.filter-template button {
     background-color: rgb(8, 19, 85);
     color: white;
     padding:10px;
     border-radius: 10px;
     display: flex;
     justify-content: center;
     align-items: center;
}

.filter-template div div {
    margin: 0 5px;
}

.user-card {
    background-color: #fff;
    color: rgb(var(--primaryblue));
    width: 200px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    box-shadow: -3px 1px 17px -2px rgba(194,194,194,0.4);
    -webkit-box-shadow: -3px 1px 17px -2px rgba(194,194,194,0.4);
    -moz-box-shadow: -3px 1px 17px -2px rgba(194,194,194,0.4);
    position: absolute;
    top: 50px;
    right: 0;
    overflow: hidden;
    display: none;
    z-index: 9999;
}

.user-card button {
    width: 100%;
    padding: 15px;
    text-transform: capitalize;
    font-weight: 400;
    text-align:left;
    transition: 1s;
}

.user-card button:hover {
    background-color: rgb(var(--primaryblue));
    color: #fff;
} 

.auth-wrap {
    width: 100%;
    height: 100vh;
    background-color: rgb(var(--primaryblue));
    background: linear-gradient(-160deg, rgb(var(--primaryblue)) 15%, rgb(var(--primarydark)) 100%);
    overflow-y:auto;
}

.auto-wrap::-webkit-scrollbar {
    display: none;
}
.auth-content-area {
    padding: 100px 10px;
    margin: 0 auto;
    overflow: hidden;
    width: 60%;
}

.form-container {
    background-color: #f2f5f7;
    border-radius: 7px;
    padding: 50px;
    transition: 1s;
}

.modal {
    display: none;
    width: 100%;
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.3); /* Black w/ opacity */
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
    transition: 2s;
    overflow-y: auto;
    overflow-x: hidden;

}

.modal .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    border: 1px solid rgb(177, 176, 176);
    width: 30%;
    border-radius: 3px;
    /*box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);*/
    animation-name: janimatetop;
    animation-duration: .7s;
    position: relative;
    border-radius: 10px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#messagebox {
    width: 400px;
    border-left: 4px solid rgb(161, 22, 22);
    background-color: rgb(237, 216, 216);
    padding: 15px;
    position: fixed;
    right: 0;
    top: 3px;
    color: rgb(156, 14, 14);
    font-size: small;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    display: none;
    transition: 1s;
    z-index: 9999;
}

#toggle-menu {
    display: none;
}

.mobile-back {
    display: none;
}

.ref-dashboard-cards {
    display: grid;
    grid-template-columns: auto auto;
    gap: 5px;
}

.ref-dashboard-cards .card-item {
    border-radius: 10px;
    background-color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-beween;
}

.ref-dashboard-cards .card-item:hover {
    box-shadow: -3px 1px 17px -2px rgba(194,194,194,0.25);
    -webkit-box-shadow: -3px 1px 17px -2px rgba(194,194,194,0.25);
    -moz-box-shadow: -3px 1px 17px -2px rgba(194,194,194,0.25);
}

.card-item:hover .card-icon {
    background-color: rgb(var(--primarydark));
}

.card-item:hover .card-icon .material-icons {
    color: #fff
}

.card-item .card-info {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card-item .card-info span:nth-child(2) {
    font-weight: bold;
    font-size: 0.5rem;
    text-transform: uppercase;
}

.card-item .card-info span:nth-child(1) {
    font-weight: bold;
    font-size: 1.8rem;
    color: rgb(var(--primaryorange))
}

.card-item .card-icon {
    border-radius: 50%;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(241, 241, 241, 0.6);
    transition: all 1s;
}

.card-icon .material-icons {
    font-size: 1.3rem;
}

.ref-dashboard-list {
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    margin-top: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.ref-dashboard-list  .list-item {
    border-bottom: 1px solid rgb(var(--primarygray));
    padding: 10px 0;
    font-weight: 600;
}

.list-item .list-header {
    font-weight: 700;
    font-size: 0.8rem;
    color: rgb(var(--primarydark));
    text-transform: capitalize;
}

.list-item .list-info  {
    display: flex;
    justify-content: space-between;
    align-items: center;    
    font-size: 0.6rem;
    margin-top: 3px;
    opacity: .6;
}

.loader {
  border: 5px solid #f3f3f3;
  border-radius: 50%;
  border-top: 5px solid rgb(var(--primarydark));
  width: 20px; 
  height: 20px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite; 
  opacity: .6;
}  


.dashboard-hero-wrap {
    padding: 10px;
    /*display: none;*/
}

.dashboard-hero {
    position: relative;
}


.dashboard-hero .hero {
    scroll-behavior: smooth;
    overflow: scroll;
    display: flex;
    scrollbar-width: none;
    -ms-overflow-style: none; 
}

.dashboard-hero .hero > .hero-item {
    margin: 0 1px;
}

.hero-indicators {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 22;
    padding: 8px 0;
}

.hero-indicators div {
    height: 3px;
    border: 1px solid rgb(198, 205, 212);
    border-radius: 50%;
    width: 3px;
    margin: 0 2px;
    cursor: pointer;
    transition: 1s;
}

.indicators-active {
    background-color: rgb(198, 205, 212);
}


.dashboard-hero .hero::-webkit-scrollbar { 
    width: 0;
    height: 0;
}

.hero  .hero-item {
    border-radius: 10px;
    background: rgb(3,51,102);
    background: linear-gradient(122deg, rgba(3,51,102,1) 39%, rgba(27,116,210,1) 100%);
    position: relative;
    height: 70px;
    overflow: hidden;
    margin: 0;
    width: 33%;
    padding:20px 0;;
    flex: 1 0 33%;
}

.login-sl .dashboard-hero .hero {
    flex-wrap: wrap;
}

.login-sl .hero  .hero-item {
    border-radius: 10px;
    background: rgb(3,51,102);
    background: linear-gradient(122deg, rgba(3,51,102,1) 39%, rgba(27,116,210,1) 100%);
    position: relative;
    height: 70px;
    overflow: hidden;
    margin: 0;
    width: 30%;
    padding:10px 0 30px 10px;;
    flex: 0 1 30%
}

.login-sl .dashboard-hero .hero > .hero-item {
    margin: 5px 5px;
}

.login-sl .hero  .hero-item {
    height: 40px;
}

.login-sl .hero-item .info {
    padding: 0
}

.login-sl .hero-item .info h1 { 
    font-size: 15px;
    text-align: left;
    padding: 0;
    margin: 0;
}


.hero-item .info {
    padding: 0 10px 10px;
    flex-grow: 1;
    margin: 0 0 0 10px;
}

.hero-item .info h1 {
    appearance: none;
    margin: 0 0 5px 0;
    font-weight: 900;
    font-size: 1.3rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-transform: capitalize;
    color: #fff;
}

.hero-item .info span {
    appearance: none;
    font-weight: 500;
    font-size: 0.7rem;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: #fff;
    opacity: .9;
}

.hero-item .card-pattern {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 10px;
    right: -30px;
}

.card-pattern div {
    border-radius: 50%;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(241, 241, 241, 0.6);
    transition: all 1s;
}

.card-pattern div:nth-child(2) {
    opacity: .4;
}

.card-pattern div:nth-child(1) {
    opacity: .2;
    transform: translate(40px, -30px);
}

.card-pattern div:nth-child(3) {
    opacity: .3;
    transform: translate(-40px, -30px);
}

.transparent {
    background-color: transparent !important;
}

.p-0 {
    padding: 0 !important;
}

.user-activity span {
    color: rgb(var(--primaryblue));
}

.tr-header {
    width: auto;
    padding: 20px 10px;
    background-color: #fff;
    border-bottom: 4px solid ;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tr-header span {
    text-transform: uppercase;
    color: rgb(var(--primaryblue));
    font-weight: 700;
    font-size: 14px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.tr-header img {
    width: 100px;
    height: auto;
}

.tr-info {
    padding: 20px 7px;
    color: rgb(var(--primaryblue));
    background-color: #fff;
}

.tr-info div {
    width: auto;
    border-bottom: 1px solid lightgray;
    padding: 10px 0;
    font-size: 12px;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tr-info div span {
    font-weight: 500;
    text-transform: uppercase;
}

 .tr-amount {
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    padding: 20px;
    border:1px solid rgb(var(--primaryblue));
    color: rgb(var(--primaryblue));
    border-radius: 10px;
    margin: 10px;
}

.tr-amount span {
    font-weight: bolder;
}

.tr-disclaimer {
    font-size: 13px;
    opacity: .8;
    padding: 10px;
}

.progress-container {
    transition: 1s;
    width: auto;
    position: relative;
    display: none;
}

.progress-bar {
  height: 4px;
  background-color: rgba(var(--primaryblue), 0.2);
  width: 100%;
  overflow: hidden;
}

.progress-bar-value {
  width: 100%;
  height: 100%;
  background-color: rgb(var(--primaryblue));
  animation: indeterminateAnimation 1s infinite linear;
  transform-origin: 0% 50%;
}

.beneficiary-wrap {
    padding: 3px;
    display: flex;
    align-items:center;
    overflow-y:hidden;
    overflow-x:auto;
    scrollbar-width: none;
    -ms-overflow-style: none; 
}

.beneficiary-wrap::-webkit-scrollbar {
    display: none;
}

.beneficiary-wrap .beneficiary-item:nth-child(1) {
    background-color: rgb(var(--primaryblue));
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    text-align: center;
    border: none;
}

.beneficiary-item {
    margin-right: 3px;
    border-radius: 10px;
    border:1px solid lightgray;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size: 12px;
    width: 65px;
    height: 100px;
    flex-direction: column;
    padding:10px;
    cursor:pointer;
    transition: 1s;
}

.beneficiary-item span {
    background-color: rgb(var(--primaryblue));
    font-weight:bolder;
    color:#fff;
    height:40px;
    width:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-transform:uppercase;
    border-radius:50%;
}

.beneficiary-item #name {
    margin-top: 10px;
    overflow: hidden;
    font-weight: bold;
    text-overflow: ellipsis;
    width: 55px;
    text-align:center;
    font-size:10px;
    white-space: nowrap;
    text-transform: capitalize;
}

.beneficiary-item #bank {
    margin-top: 1px;
    overflow: hidden;
    font-size:10px;
    text-overflow: ellipsis;
    width: 60px;
    white-space: nowrap;
}

.beneficiary-selected {
    background-color: rgb(var(--primaryblue));
    color: #fff;
}

@keyframes indeterminateAnimation {
  0% {
    transform:  translateX(0) scaleX(0);
  }
  40% {
    transform:  translateX(0) scaleX(0.4);
  }
  100% {
    transform:  translateX(100%) scaleX(0.5);
  }
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


@keyframes janimatetop {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
  }

 
@media screen and (max-width: 1200px) {
    .auth-content-area {
        width: 70%;
    }
}

/* -------------TABLET PORTRAIT--------- */
@media screen and (max-width: 780px) {
    .nav-bar {
        background-color: #fff;
        border-bottom: 1px solid rgb(var(--primarygray));
    }
    
    .user-activity span {
        color: rgb(2,29,57)
    }

    .account-menu {
        grid-template-columns: auto auto auto;
        gap: 15px;
        padding:20px 10px;
        border: none;
        /*height: 100vh;*/
    }
    
    .auth-content-area {
        width: 80%;
    }
    
    .form-container {
        padding: 15px;
    }
    
    .content-grid {
        display: block;
        margin: 0;
    }
    .content-grid .grid-content {
        width: inherit;
        padding: 5px; 
    }
    .content-grid .grid-menu {
        width: inherit;
        padding: 5px;
        height: auto;
        background-color: #fff;
    }
    
    .timer-status {
        width: inherit;
        font-size: 11px;
        border: none;
        background-color: transparent;
    }
    
    .content-grid .grid-menu {
        position: fixed;
        z-index: 999;
        min-width: 100%;
        width: auto;
        top: 190px;
        margin: 0 auto;
        height: 100vh;
        overflow: hidden;
    }
    
    #toggle-menu {
        display: none;
    }
    
    .content-grid .grid-content .content{
        padding:  20px;
    }
    
    .modal .modal-content {
        width: 70%;
    }
    
    #messagebox {
        width: 88%;
        left: auto;
        left: 3px;
    }
    
    .sub-header {
        display: block;
        width: 100%;
    }
    
    .sub-header .ref .ref-wrap {
        /*display: none;*/
        justify-content: start !important;
        background-color: #fff;
        padding: 10px;
        border-radius:10px;
        cursor: auto;
    }
    
    .sub-header .status {
        width: inherit;
    }
    
    .mobile-back {
        display: block;
    }
    
    #toggle-menu {
        display: none;
    }
    
    .dashboard-hero-wrap {
        margin: 0 auto;
        justify-content:center;
        display: block;
    }
    .dashboard-hero {
        width: auto;
    }
    
    .dashboard-hero .hero {
        grid-template-columns: auto
    }
    
    .hero  .hero-item {
        width: 99%;
        flex: 1 0 99%;
    }
    
    .login-sl .hero  .hero-item {
        width: auto;
        flex: 1;
        height: 35px;
        padding-left: 10px;
        
    }
    
    .login-sl .hero-item .info h1 { 
        font-size: 15px;
        text-align: left;
        padding: 5px 0 0 0;
        margin: 0;
    }
    
    .login-sl .dashboard-hero .hero > .hero-item {
        margin: 4px 0;
    }
    
    .login-sl .dashboard-hero .hero {
        display: block;
    }
    
    .login-sl .hero-item .info span {
        width: auto;
        text-align: left;
        float: left;
        margin-top: 3px;
        opacity: 0.8;
    }

    
}

/* -----------------MOBILE---------------- */
@media screen and (max-width: 680px) {

    .account-menu {
        grid-template-columns: auto auto auto;
        gap: 10px;
    }
    
    .account-menu-item .menu-label {
        font-size: 0.7rem !important;
    }
    
    .jpagecontent { 
        padding: 0 10px 30px 10px;
    }
    
    .auth-content-area {
        width: 90%;
    }
    
    .ref-dashboard-cards .card-item {
        padding: 10px;
    }
    
    .card-item .card-info span:nth-child(2) {
        font-size: 0.4rem;
    }

    .card-item .card-info span:nth-child(1) {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 470px) {
    .account-menu {
        grid-template-columns: auto auto auto;
        gap: 2px;
    }
    .filter-template {
       display: block;
       width: 98%;
    }
    .filter-template div {
        display: block;
        width: inherit;
    }
    .filter-template div div input {
        width: inherit;
    }
    
    .filter-template button {
         width: 100%;
         margin: 5px 0 0 0;
    }
    
    .filter-template div div {
        margin: 2px 0;
    }
    
    .content-grid .grid-content .content{
        padding:  15px;
    }
    
     .modal .modal-content {
        width: 80%;
    }
    
}