/********** Fonts **********/
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100;300;400;500;600&display=swap');
/** use font-weight: 100 for thin, 300 for light, 400 for regular, 500 for medium, 600 for semibold **/

/* Colors */
:root {
  --dark-blue: #1C2A38; /* dark blue */
  --medium-blue: #006FBA; /* medium blue */
  --light-blue: #d2dae5; /* light blue */
  --lighter-blue: #e8ecf2; /* lighter blue */

  --light-aqua: #ecf5f7; /* light aqua */

  --orange: #F7750A; /* orange */
}

html {
  height: 100%;
}

body {
  margin: 0 !important;
  padding: 0;
  font-family: 'Heebo', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: black
}

/* ForgotPasswordInfo and  resetPassword pages */

.publicLayoutBody #header-banner {
  height: 105px;
  background-color: #1C2A38; /* dark blue */
}

.publicLayoutBody #header-banner img {
  width: 172px;
  margin-top: 30px;
  margin-left: 20px;
}

.publicLayoutBody .brandedLoginBox > p:first-child {
  margin-top: 60px;
}

.publicLayoutBody hr {
  display: none;
}


/* Links and buttons */
a {
  color: #006FBA; /* medium blue */
}

a:hover,
a:active,
a:focus-within {
  color: #1C2A38; /* dark blue */
}

.btn-primary {
  background-color: #1C2A38; /* dark blue */
  border-color: #1C2A38; /* dark blue */
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
  background-color: #F7750A; /* orange */
  border-color: #F7750A; /* orange */

}

input, button, select, textarea {
  font-family: 'Heebo', sans-serif;
}

.ui-widget-content a.btn-primary:focus {
  background-color: #1C2A38; /* dark blue */
  border-color: #1C2A38; /* dark blue */
}

/* Date picker */
.ui-datepicker .ui-datepicker-prev {
  top: 6px !important;
  left: 5px !important;
}

.ui-datepicker .ui-datepicker-next {
  top: 6px !important;
  right: 5px !important;
}

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  background: none;
  top: 6px;
  border: none;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  overflow: visible;
  color: transparent;
  text-indent: 0;
  background: none;
}

.ui-datepicker .ui-datepicker-prev span::before,
.ui-datepicker .ui-datepicker-next span::before {
  width: 20px;
  height: 20px;
  position: absolute;
  top: -3px;
  color: white;
  font-family: "Font Awesome 5 Pro";
  border-radius: 4px;
  display: block;
  text-align: center;
  font-weight: normal;
  transition: .3s ease-in-out;
}

.ui-datepicker .ui-datepicker-prev span::before {
  content: '\f053';
  left: -3px;
}

.ui-datepicker .ui-datepicker-next span::before {
  content: '\f054';
  left: -3px;
}

.ui-datepicker .ui-datepicker-prev span:hover::before,
.ui-datepicker .ui-datepicker-next span:hover::before {
  color: #3f8096; /* blue */
  background-color: white;
}

div.hsection {
  color: black;
}

/* Header */
#header {
  margin-bottom: 20px;
  padding-bottom: 10px;
  background-color: #1C2A38; /* dark blue */
}

#header .headerTop {
  padding-top: 5px;
  padding-right: 39px;
}

#header .headerTop a {
  margin-left: 5px;
  padding: 0 5px;
  color: white;
  border: 1px white solid;
  border-radius: 4px;
  text-shadow: none;
}

#header .headerTop a:hover,
#header .headerTop a:active, 
#header .headerTop a:focus {
  opacity: .7;
}

#header .headerTop .notifications-icon {
  border: none;
  margin-left: 5px;
  margin-right: 0;
}

#header-banner {
  height: auto;
}

#header img {
  width: 172px;
  margin: 0 0 20px 20px;

}

#main_menu {
  margin: 0 0 40px;
}

#main_menu .nav-pills {
  padding: 0 15px;
  background-color: #1C2A38; /* dark blue */
  background-image: none;
  border-radius: 4px;
}

.nav-tabs > li,
.nav-pills > li {
  margin-right: 20px;
}

.nav-tabs > li:last-child,
.nav-pills > li:last-child {
  margin-right: 0;
}

#main_menu .nav-pills li > a {
  padding: 11px 20px;
  font-size: 16px;
  text-transform: none;
  text-shadow: none;
}

#main_menu .nav-pills > .active > a,
#main_menu .nav-pills > .active > a:hover,
#main_menu .nav-pills li > a:hover,
#main_menu .nav-pills li > a:focus {
  background-color: #F7750A; /* orange */
  background-image: none;
  border-radius: 2px;
}

#main_menu .nav-pills > .active > a {
  box-shadow: 0 0 0 5px #F7750A; /* orange */
}

.globalSearchForm {
  height: 30px;
  margin-top: 10px;
  margin-right: 10px;
}

.globalSearchForm form {
  margin: 0;
}

.globalSearchForm .row div {
  display: inline-block;
}

.globalSearchForm .col-3,
.globalSearchForm input {
  width: auto;
}

/* Tabs */
#mainSubNav #tabs .nav {
  margin-bottom: 20px;
  overflow: hidden;
  font-size: 13px;
  background-color: #e8ecf2; /* lighter blue */
  border-radius: 4px;
}

#mainSubNav #tabs .nav > li > a {
  margin: 0;
  display: inline-block;
  position: relative;
  z-index: 2;
  color: black;
  border-radius: 0;
}

#mainSubNav #tabs .nav > li > a:hover,
#mainSubNav #tabs .nav > li > a:focus {
  text-decoration: none;
  background-color: #d2dae5; /* light blue */
}

#mainSubNav #tabs .nav-pills > .active > a,
#mainSubNav #tabs .nav-pills > .active > a:hover,
#mainSubNav #tabs .nav-pills > .active > a:focus {
  margin-right: 7px;
  padding-right: 5px;
  position: relative;
  color: black;
  font-weight: 400;
  background-color: #d2dae5; /* light blue */
}

#mainSubNav #tabs .nav > li > a:hover::before,
#mainSubNav #tabs .nav > li > a:focus::before,
#mainSubNav #tabs .nav > li > a:hover::after,
#mainSubNav #tabs .nav > li > a:focus::after,
#mainSubNav #tabs .nav-pills > .active a::before,
#mainSubNav #tabs .nav-pills > .active a::after {
  content: '';
  width: 25px;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
  background-color: #d2dae5; /* light blue */
  transform: skewX(-30deg);
}

#mainSubNav #tabs .nav > li > a:hover::before,
#mainSubNav #tabs .nav > li > a:focus::before,
#mainSubNav #tabs .nav-pills > .active a::before {
  left: -13px;
}

#mainSubNav #tabs .nav > li > a:hover::after,
#mainSubNav #tabs .nav > li > a:focus::after,
#mainSubNav #tabs .nav-pills > .active a::after {
  right: -13px;
}

#mainSubNav #tabs .nav-pills > .active a::before {
  border-left: 5px solid #1C2A38; /* dark blue */
}

#mainSubNav #tabs .nav-pills > .active a::after {
  border-right: 5px solid #1C2A38; /* dark blue */
}

#userTabsWrapper .nav-tabs > li > a:hover,
#userTabsWrapper .nav-tabs > li > a:focus {
  background-color: #e8ecf2; /* lighter blue */
}

.nav-tabs {
  border-bottom: 2px solid #1C2A38; /* dark blue */
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-link.active:hover,
.nav-tabs .nav-link.active:focus {
  color: #1C2A38; /* dark blue */
  border: 2px solid #1C2A38 !important; /* dark blue */
  border-bottom-color: transparent !important;
}

/* Footer */
.footerContainer {
  min-height: 35px;
  padding-top: 5px;
  padding-bottom: 10px;
  color: white;
  background-color: #1C2A38; /* dark blue */
}

.footerContainer [class*="span"] {
  width: auto;
  margin:0 0 0 20px;
  display: inline;
  float: none;
}

.footerContainer a {
  color: white;
}

/* Main */
.containerMod {
  clear: both;
}

/* Tables */
.table th {
  background-image: none;
  background-color: #1C2A38; /* dark blue */
  color: white;
  font-weight: 500;
}

div.t-data-grid table thead th {
  background-image: none;
  background-color: #1C2A38; /* dark blue */
}

div.t-data-grid table {
  border: 0;
  border-bottom: 1px solid #ddd;
  border-radius: 4px 4px 0 0;
}

div.t-data-grid table table {
  border: 0;
}

div.t-data-grid table tr[data-grid-row="last"] td {
  border-bottom: 0;
}

div.t-data-grid table td:first-child {
  border-left: 0;
}

.table-striped tbody > tr:nth-child(odd) > td,
.table-striped tbody > tr:nth-child(odd) > th {
  background-color: #ecf5f7; /* light aqua */
}

.acctSummaryTop > table.table-nohead th {
  display: none;
}

.acctSummaryTop table.table-striped td,
.acctSummaryContract table.table-striped td {
  border: 0;
  padding: 4px;
}

.acctTransTab td {
    border-bottom-color: #dddddd;
}

/* Widgets */
.viewAllAnn a {
  color: black;
  font-size: 18px;
}

.viewAllAnn a:hover,
.viewAllAnn a:focus {
  color: #1C2A38; /* dark blue */
}

div.ui-widget-header {
    background: #1C2A38; /* dark blue */
}



/********** Responsive **********/

@media (max-width: 767px) {
    #header img {
      margin-top: 10px;
      margin-bottom: 10px;
    }
}

/* Illustration */
.illusContentL {
    height: 662px;
    padding: 20px 15px;
    background-color: #e5f5f6;
    border-radius: 6px;
}
.sectionTitle {
    font-weight: 400;
    font-size: 14pt;
    color: black;
}

.infoTab {
    width: 100%;
    table-layout: fixed;
    empty-cells: show;
}
.infoTab td {
    padding-top: 8px;
    font-size: 9pt;
    font-weight: 300;
}
.infoTab td.infoTabR {
    font-weight: 500;
    text-align: right;
}

.illusTerms {
    padding: 20px 15px;
    margin: 0 -15px;
    border-radius: 6px;
    background-color: #ceebee;
}
.illusNoteL {
    font-weight: 300;
    font-size: 7pt;
    line-height: 10pt;
}

.sectionTitleTab {
    width: 100%;
    table-layout: fixed;
    empty-cells: show;
    margin: 30px 0;
}
.smallTxt {
   font-size: 8pt;
   font-weight: 300;
}

.dataTab {
    width: 100%;
    table-layout: fixed;
    empty-cells: show;
    -fs-table-paginate: paginate;
}
.dataTab th {
    font-size: 9pt;
    font-weight: 400;
    vertical-align: middle;
    padding: 4px;
    text-align: center;
    background-color: #1c2a38;
    color: white;
}
.dataTab td {
    padding: 6px 4px;
    font-size: 9pt;
    font-weight: 100;
    text-align: center;
}
.dataTab tr td:nth-child(even) {
    background-color: #e5f5f6;
}
.graphNote {
    font-size: 11pt;
    font-weight: 300;
    margin: 15px 0;
}

.brandedDisclaimerArea {
    padding-top: 30px;
}

.disclaimerContainer {
    padding-top: 10px;
    padding-bottom: 30px;
}

/** Responsive **/
@media (max-width: 768px) {
    #wrapMenu {
        background-color: #1b2937;
        margin-bottom:10px;
    }
    #wrapMenu #main_menu{
        background-color: #1b2937;
    }
    #wrapMenu label i {
        color: white;
    }
    #main_menu .nav-pills > .active > a {
        box-shadow: none;
    }
    #main_menu .nav-pills {
        border-radius: 0px;
    }
}