/* Variables */
:root {
    --color-body-bg: #cccccc;
    --color-page-bg: #ffffff;
    --color-menu-bg: #5482ab;
    --color-menu-bg-dark: #165788;
    --color-text: #666666;
    --color-sidebar-bg: #dae3ea;
    --color-sidebar-text: #363534;
    --color-black: #000000;
    --color-border: #dddddd;
    --color-highlight: #f2f2f2;
    --font-body: "Lucida Sans Unicode", Arial, "Lucida Grande", Tahoma, Verdana,
        Helvetica, sans-serif;
    --font-content: Helvetica;
}
/* Reset */
*,
*::before,
*::after {
    box-sizing: inherit;
}
body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 13px;
    line-height: 13px;
    color: var(--color-black);
    background-color: var(--color-body-bg);
    box-sizing: border-box;
}
/* Utilities */
.menu-link {
    font-family: var(--font-content);
    font-weight: 700;
    font-size: 13px;
    line-height: 13px;
}
.title {
    font-family: var(--font-content);
    font-weight: 700;
    font-size: 23px;
    line-height: 35px;
    font-style: italic;
}
.heading {
    font-family: var(--font-content);
    font-weight: 700;
    font-size: 19px;
    line-height: 29px;
}
.sub-heading {
    font-family: var(--font-content);
    font-weight: 700;
    font-size: 15px;
    line-height: 23px;
}
.paragraph {
    font-family: var(--font-content);
    font-weight: 400;
    font-size: 13px;
    line-height: 19px;
}
.body-link {
    font-family: var(--font-content);
    font-weight: 700;
    font-size: 13px;
    line-height: 17px;
}
.side-link {
    font-family: var(--font-content);
    font-weight: 700;
    font-size: 12px;
    line-height: 14px;
}
.columns {
    display: grid;
    grid-template-columns: 768px 192px;
}
.column-main {
    height: 100%;
}
.column-side {
    height: 100%;
    border-left: 1px dashed var(--color-text);
}
.columns2 {
    display: grid;
    grid-template-columns: 258.3px 479.7px;
}
.column-content1 {
    height: 100%;
}
.column-content2 {
    height: 100%;
}
.columns3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.column-equal {
    height: 100%;
}
.center-it {
    display: flex;
    justify-content: center;
    align-items: center;
}
.divider {
    border-bottom: 1px solid var(--color-black);
}
hr {
    margin: 15px 0;
}
.color-blue {
    color: var(--color-menu-bg);
}
.m0 {
    margin: 0;
}
.my {
    margin: 15px 0;
}
.body-link:link,
.body-link:visited {
    color: var(--color-menu-bg);
    text-decoration: none;
    border-bottom: 1px dashed transparent;
}
.body-link:hover,
.body-link:active {
    border-bottom: 1px dashed var(--color-sidebar-text);
}
/* Page */
.page {
    background-color: var(--color-page-bg);
    width: 960px;
    margin: 10px auto;
    background-image: url("../assets/images/corner.gif");
    background-repeat: no-repeat;
    background-position: top right;
}
.logo img {
    margin: 15px 0 0 24px;
}
.header-actions {
    height: 126px;
}
.menu {
    background-color: var(--color-menu-bg);
    position: relative;
}
.menu ul {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 25px 15px;
}
.menu a:link,
.menu a:visited,
.menu a:hover,
.menu a:active {
    color: var(--color-page-bg);
    text-decoration: none;
    padding: 0 10px;
}
.menu li:not(:first-of-type) a {
    border-left: 1px solid var(--color-text);
}
.menu::after {
    content: "";
    display: block;
    background-color: var(--color-menu-bg-dark);
    position: absolute;
    top: 0;
    right: -20px;
    bottom: 0;
    left: -20px;
    z-index: -1;
}
.menu p {
    color: var(--color-page-bg);
    margin: 0;
}
.menu p a:link,
.menu p a:visited,
.menu p a:hover,
.menu p a:active {
    border: none;
    padding: 0 5px;
}
.menu .column-side {
    border-left: 1px dashed var(--color-sidebar-bg);
    padding: 0 1px;
}
.content .column-main {
    padding: 15px;
}
.home .column-content2 {
    padding: 0 64px;
}
.home .column-content2 .heading {
    text-align: center;
    color: var(--color-menu-bg);
}
.home .column-content2 .paragraph {
    text-align: justify;
}
.home .column-content2 .sub-heading {
    color: var(--color-menu-bg);
}
.home .sub-heading.note {
    color: var(--color-menu-bg);
    margin: 35px 35px 20px;
}
.column-side .image-link {
    padding: 15px;
}
ul.side-menu {
    list-style: url("/assets/images/bullet.gif");
    list-style-position: inside;
    background-color: var(--color-sidebar-bg);
    padding: 0;
    margin: 0;
}
ul.side-menu li {
    padding: 10px;
    background-color: var(--color-sidebar-bg);
    border-top: 1px dashed var(--color-text);
    border-right: 1px dashed var(--color-text);
}
ul.side-menu a:link,
ul.side-menu a:visited,
ul.side-menu a:hover,
ul.side-menu a:active {
    color: var(--color-sidebar-text);
    text-decoration: none;
}
.content .title {
    margin: 0 0 15px;
}
.content .column-main .sub-heading {
    color: var(--color-menu-bg);
}
.content .column-main ul {
    margin: 0 32px 20px;
    font-family: var(--font-content);
    font-weight: 400;
    font-size: 13px;
    line-height: 17px;
}
.paragraph-list {
    margin: 0;
    margin-bottom: 5px;
}
.paragraph-list:last-of-type {
    margin-bottom: 25px;
}
.custom-table {
    border-collapse: collapse;
    font-family: var(--font-content);
    font-weight: 400;
    padding: 0;
    margin: 0 0 20px;
    width: 100%;
}
.custom-table th {
    background-color: var(--color-menu-bg);
    padding: 12px;
    color: var(--color-page-bg);
    font-weight: 700;
    font-size: 15px;
    line-height: 14px;
}
.custom-table td.bold {
    padding: 8px;
    color: var(--color-black);
    font-weight: 700;
    font-size: 14px;
    line-height: 14px;
}
.custom-table td {
    padding: 8px;
    color: var(--color-black);
    font-weight: 400;
    font-size: 13px;
    line-height: 17px;
}
.custom-table td,
.custom-table th {
    border: 1px solid var(--color-border);
}
.custom-table tbody tr:nth-child(even) {
    background-color: var(--color-highlight);
}
.custom-table tbody tr:hover {
    background-color: var(--color-border);
}
.custom-table th:nth-of-type(1) {
    width: 30%;
}
.custom-table th:nth-of-type(2) {
    width: 70%;
}
/* custom table2 */
.custom-table2 th:nth-of-type(1) {
    width: 2%;
}
.custom-table2 th:nth-of-type(2) {
    width: 20%;
}
.custom-table2 th:nth-of-type(3) {
    width: 66%;
}
.custom-table2 th:nth-of-type(4) {
    width: 12%;
}
/* custom table3 */
.custom-table3 th:nth-of-type(1) {
    width: 5%;
}
.custom-table3 th:nth-of-type(2) {
    width: 20%;
}
.custom-table3 th:nth-of-type(3) {
    width: 20%;
}
.custom-table3 th:nth-of-type(4) {
    width: 34%;
}
.custom-table3 th:nth-of-type(5) {
    width: 11%;
}
/* custom table4 */
.custom-table4 th:nth-of-type(1) {
    width: 2%;
}
.custom-table4 th:nth-of-type(2) {
    width: 20%;
}
.custom-table4 th:nth-of-type(3) {
    width: 60%;
}
.custom-table4 th:nth-of-type(4) {
    width: 18%;
}
/* custom table5 */
.custom-table5 th:nth-of-type(1) {
    width: 5%;
}
.custom-table5 th:nth-of-type(2) {
    width: 20%;
}
.custom-table5 th:nth-of-type(3) {
    width: 20%;
}
.custom-table5 th:nth-of-type(4) {
    width: 35%;
}
.custom-table5 th:nth-of-type(5) {
    width: 10%;
}
/* custom table6 */
.custom-table6 th:nth-of-type(1) {
    width: 2%;
}
.custom-table6 th:nth-of-type(2) {
    width: 20%;
}
.custom-table6 th:nth-of-type(3) {
    width: 68%;
}
.custom-table6 th:nth-of-type(4) {
    width: 10%;
}
hr + .custom-table {
    margin-top: 20px;
}
.sub-heading + .custom-table {
    margin: 15px 0;
}
.contact .column-main p.paragraph {
    margin: 0;
}
.contact .column-main p.paragraph:first-of-type {
    margin-top: 15px;
}
.footer .columns .column-main div:nth-of-type(1) {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.footer .columns .column-main div:nth-of-type(2) {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.footer .columns .column-main {
    padding: 25px 15px;
}
.lds-container {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.7);
}
.lds-spinner {
    color: var(--color-menu-bg-dark);
    display: inline-block;
    position: absolute;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.lds-spinner div {
    transform-origin: 40px 40px;
    animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3px;
    left: 37px;
    width: 6px;
    height: 18px;
    border-radius: 20%;
    background: #fff;
}
.lds-spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
}
@keyframes lds-spinner {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
.content .column-main ul.nav-tabs {
    margin: 0;
}
.btn-primary {
    background-color: var(--color-menu-bg);
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
    background-color: var(--color-menu-bg-dark);
    border-color: var(--color-menu-bg-dark);
    box-shadow: none;
    outline: none;
}
.form-control {
    padding: 2px 4px;
    height: auto;
}
/* SVG Icons */
.svg-icon {
    width: 1.2em;
    height: 1.2em;
}
.requiredField {
    color: red;
}
.hand-pointer {
    cursor: pointer;
}

.nav-pills .nav-link {
    color: #5482ab;
    background: #fff;
    position: relative;
    border-radius: 0%;
}

.nav-pills .nav-link.active {
    color: #ffffff;
    background-color: #5482ab;
}

div#pdfControls {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fafafa;
}
div#pdfControls p#pdfControlsText {
    margin: 0 16px;
}
/* pure css scroll */
.customScrollDiv::-webkit-scrollbar {
    width: 8px;
}
.customScrollDiv::-webkit-scrollbar-track {
    background: white;
}
.customScrollDiv::-webkit-scrollbar-thumb {
    background-color: #a9a9a9;
    opacity: 0.4;
    border-radius: 20px;
}
.customScrollDiv {
    height: 300px;
    overflow-y: auto !important;
    scrollbar-width: thin;
    scrollbar-color: white #a9a9a9;
}

.customScrollDiv1::-webkit-scrollbar {
    width: 8px;
}
.customScrollDiv1::-webkit-scrollbar-track {
    background: white;
}
.customScrollDiv1::-webkit-scrollbar-thumb {
    background-color: #a9a9a9;
    opacity: 0.4;
    border-radius: 20px;
}
.customScrollDiv1 {
    height: 540px;
    overflow-y: auto !important;
    scrollbar-width: thin;
    scrollbar-color: white #a9a9a9;
}
.pdfDownloadNote {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 16px;
    display: flex;
    align-items: center;
}
.paragraph2 {
    font-family: var(--font-content);
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
}
.carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #5482ab;
}
/* custom table7 */
.custom-table7 th:nth-of-type(1) {
    width: 5%;
}
.custom-table7 th:nth-of-type(2) {
    width: 10%;
}
.custom-table7 th:nth-of-type(3) {
    width: 20%;
}
.custom-table7 th:nth-of-type(4) {
    width: 45%;
}
.custom-table7 th:nth-of-type(5) {
    width: 10%;
}
/* custom table8 */
.custom-table8 th:nth-of-type(1) {
    width: 50%;
}
.custom-table8 th:nth-of-type(2) {
    width: 50%;
}

.popover-menu {
    margin: 9px 0 0 -8px;
    position: absolute;
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    z-index: 1000;
}
.popover-menu a {
    display: block;
    padding: 8px;
    border-bottom: 1px solid #e7e7e7;
    text-decoration: none;
    user-select: none;
    color: #165788;
}
.popover-menu a:hover {
    background-color: #e8e8e8;
}
.popover-control {
    cursor: pointer;
    color: #165788;
}

.registrationLoader {
    display: inline-block;
    position: relative;
    width: 36px;
    height: 36px;
  }
  .registrationLoaderContainer {
      display: flex;
      justify-content: flex-start;
      align-items: center;
  }
  .registrationLoader div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 36px;
    height: 36px;
    margin: 8px;
    border: 3px solid #165788;
    border-radius: 50%;
    animation: registrationLoader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #165788 transparent transparent transparent;
  }
  .registrationLoader div:nth-child(1) {
    animation-delay: -0.45s;
  }
  .registrationLoader div:nth-child(2) {
    animation-delay: -0.3s;
  }
  .registrationLoader div:nth-child(3) {
    animation-delay: -0.15s;
  }
  @keyframes registrationLoader {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  