@font-face {
  font-family: 'SFProDisplay';
  src: url('../fonts/SF-Pro-Display-Bold.woff2') format('woff2'),
      url('../fonts/SF-Pro-Display-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SFProDisplay';
  src: url('../fonts/SF-Pro-Display-Light.woff2') format('woff2'),
      url('../fonts/SF-Pro-Display-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SFProDisplay';
  src: url('../fonts/SF-Pro-Display-Medium.woff2') format('woff2'),
      url('../fonts/SF-Pro-Display-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SFProDisplay';
  src: url('../fonts/SF-Pro-Display-Regular.woff2') format('woff2'),
      url('../fonts/SF-Pro-Display-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SFProDisplay';
  src: url('../fonts/SF-Pro-Display-Semibold.woff2') format('woff2'),
      url('../fonts/SF-Pro-Display-Semibold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PP Eiko';
  src: url('../fonts/PPEiko-LightItalic.woff2') format('woff2'),
      url('../fonts/PPEiko-LightItalic.woff') format('woff');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
font-family: 'SFProDisplay';
src: url('../fonts/SFProDisplay-Heavy.woff2') format('woff2'),
    url('../fonts/SFProDisplay-Heavy.woff') format('woff');
font-weight: 900;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: 'HelveticaNeue';
src: url('../fonts/HelveticaNeueLight.woff2') format('woff2'),
    url('../fonts/HelveticaNeueLight.woff') format('woff');
font-weight: 300;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: 'Helvetica Neue';
src: url('../fonts/HelveticaNeue-Roman.woff2') format('woff2'),
    url('../fonts/HelveticaNeue-Roman.woff') format('woff');
font-weight: normal;
font-style: normal;
font-display: swap;
}



html, body {
margin: 0px;
padding: 0px;
width: 100%;
min-height: 100%;
scroll-behavior: smooth;
}

body {
font-family: 'SFProDisplay';
color: #2e2e2e;
font-weight: normal;
font-style: normal;
font-size: 13px;
background: #f8f8f8 ;
overflow-x: hidden;
}

a, a:link, a:visited {
  outline: none;
text-decoration: none;
-moz-tap-highlight-color: transparent;
-webkit-tap-highlight-color: transparent;
}

img {
border: none;
margin: 0px;
max-width: 100%;
}




form, input, select, textarea, p {
margin: 0px;
padding: 0;
}



textarea {
resize: none;
}

input:focus, textarea:focus {
outline: none;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, time {
display: block;
margin: 0px;
padding: 0;
}

.customClear {
clear: both;
font-size: 0em;
line-height: 0px;
height: 0px;
margin: 0px;
padding: 0px;
}

/*IE below 9*/
#ieWrapper {
background: #000;
position: fixed;
z-index: 100;
top: 0;	left: 0;
width: 100%;
height: 100%;
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}

.ieHolder {
position: relative;
width: 555px;
padding: 20px;
margin: 200px auto 0 auto;
background: #FFF;
border: 7px solid #2b2927;
}

.btnIeUpdate {
background: url(../images/btnIeUpdate.jpg) 0 0 no-repeat;
width: 144px;
height: 37px;
position: absolute;
right: 20px;
bottom: 20px;
color: #fff;
line-height: 37px;
text-align: center;
text-decoration: none;
text-transform: uppercase;
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-size: 13px;
}

.ieLogo {
float: left;
width: 134px;
height: 139px;
background: url(../images/ieLogo.jpg) no-repeat 0 0;
}

.ieContent {
float: right;
margin: 0;
padding: 0;
width: 350px;
color: #666;
font-size: 15px;
line-height: 18px;
}

.ieContent strong {
margin: 0 0 15px 0;
padding: 0 0 10px 0;
border-bottom: 1px dashed #cccccc;
display: block;
font-size: 18px;
color: #333;
font-weight: normal;
}
/*End IE below 9*/

*{
box-sizing: border-box;
}

.flex{
display: flex;
}

/* Customize the label (the checkbox-container) */
.checkbox-container {
  display: block;
  position: relative;
  /* padding-left: 35px; */
  margin-bottom: 5px;
  cursor: pointer;
  /* font-size: 22px; */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkbox-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: solid 1px #005388;
  border-radius: 5px;
z-index: 1;
}



/* Create the checkmark/indicator (hidden when not checked) */
.checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container input:checked ~ .checkmark{
background-color: #005388;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.checkbox-wrapper .checkbox-text{
  padding-left: 25px;
}

.page-center{
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.text-right,.members-list-main-wrapper table tr th.text-right{
  text-align: right;
}
label.error,.login-form-wrapper label.error{
  font-weight: normal;
  font-size: 12px;
  color: red;
  display: inline-block;
  padding-top: 6px;
}
.message-validation{
  background: #fddde1;
  padding: 8px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-weight: 600;
  border: solid 1px #ff676e;
  color: #ff676e;
}
.message-validation-success{
  background: #d9edd9;
  padding: 8px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-weight: 600;
  border: solid 1px #14A44D;
  color: #14A44D;
}
.branch-align{
  display: inline-block;
  color: black;
}

.pagination{
    display: flex;
    list-style: none;
    gap: 10px;
    padding: 0;
    margin: 0;
}
.pagination li.page-item{
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 500;
    transition: all ease .3s;
}

.pagination li.page-item.active{
    background: #0b73c4;
    color: #fff;
}

.pagination li[aria-label="« Previous"] span,.pagination li a[aria-label="« Previous"]{
    font-size: 0;
    background: url(../images/down-arrow-sm.png) no-repeat 0 0;
    width: 13px;
    height: 13px;
    transform: rotate(90deg);
}

.pagination li[aria-label="« Previous"].disabled,.pagination li[aria-label="Next »"].disabled{
    opacity: 0.4;
}

.pagination li.page-item a{
    color: #000000;
}


.pagination li a[aria-label="Next »"],.pagination li[aria-label="Next »"] span{
    font-size: 0;
    background: url(../images/down-arrow-sm.png) no-repeat 0 0;
    width: 13px;
    height: 13px;
    transform: rotate(270deg);
}
.coming-soon{
  width: 100%;
  min-height: calc(100vh - 200px);
  background: url(../images/login-bg.jpg) no-repeat center center;
  display:flex ;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-size: cover;
  position: relative;
}

.coming-soon::after{
  position: absolute;
  content: '';
  background-image: linear-gradient(to bottom, #172843, rgba(35, 56, 113, 0));
  width: 100%;
  height: 100%;
  top:0;
  left: 0;
}

.coming-soon-wrapper{
  color: #fff;
  position: relative;
  z-index: 1;
  max-width: 50%;
  text-align: center;
}
.coming-soon h1{
  font-size: 45px;
  font-weight: bold;
  text-align: center;
  margin: 0 0 20px;
}

.coming-soon p{
  font-size: 18px;
  line-height: 26px;
  text-align: center;
}
.coming-soon-wrapper img{
  width: 300px;
  margin-bottom: 25px;
}
.go-home{
  text-align: center;
  background: #fff;
  color: #000;
  padding: 10px 16px;
  display: inline-block;
  margin: 10px;
  border-radius: 6px;
}
#loading{


background: rgba(0,0,0,0.3) url(../images/ajax-loading.gif) no-repeat center center;
position: fixed;
margin: -70px 0 0 0px;
padding: 10px;
z-index: 99999;
opacity: .799;
top: 0;
left: 0;
right: 0;
bottom: 0;
}

.members-list-main-wrapper table tr td:first-child.nodata-td{
    padding: 20px 0 20px ;
}
.text-center{
    text-align: center;
  }
