* {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    margin: 0;
}

header {
    width: 100%;
}

.d-flex {
    display: flex;
}

.d-block {
    display: block;
}

.header-row {
    display: flex;
    height: 80px;
    align-items: stretch;
}

.nav-col {
    display: none;
    justify-content: center;
    align-items: center;
}

.logo-col {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
}

.header-logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.header-logo img {
    max-height: 55px;
    margin-right: 12px;
}

.header-logo .titles {
    display: flex;
    flex-direction: column;
    color: #fff;
    line-height: 1.25rem;
}

.header-logo .main-title {
    font-weight: bold;
    font-size: 1.5rem;
}

.header-logo .sub-title {
    font-size: 0.8rem;
    font-weight: 100;
    letter-spacing: 0.75px;
}

.headingText {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    padding: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.menu-btn,
.login-btn {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 16px;
    padding: 5px 15px;
    font-size: 0.9rem;
    cursor: pointer;
    margin-left: 8px;
    transition: background 0.3s;
}

.hover-menu-line:before {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 12px;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #fff, hsla(0, 0%, 100%, 0));
    border-radius: 0;
    transition: all .25s ease-in-out;
}

.mobile-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 48px;
}

.mobile-menu .mobile-menu-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
}

.announcement-row {
    color: #fff;
    display: flex;
    align-items: center;
    width: 100%;
}

.announcement-div {
    display: flex;
    align-items: center;
    padding: 4px 0 0 16px;
    width: 100%;
}

.announcement-div .icon {
    font-size: 1.2rem;
    color: #43a047;
    margin-right: 8px;
}

.announcement-bar {
    position: relative;
    display: flex;
    align-items: center;
    background: #f5f5f5;
    color: #222;
    margin-left: 16px;
    padding: 5px 8px;
    flex: 1;
    min-width: 0;
}

.announcement-bar .icon {
    position: absolute;
    color: #43a047;
    padding-right: 6px;
    font-size: 1rem;
}

.announcement-bar::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 80%;
    top: 0;
    left: -1rem;
    background: inherit;
    transform: skewX(320deg);
    display: block;
}

.announcement-bar marquee {
    flex: 1;
    font-size: 0.95rem;
    margin: 0 20px;
    z-index: 1;
}

.main-content {
    padding: 15px;
    background: #fff;
    min-height: calc(100vh - 21.25rem);
    width: 95%;
    margin: auto;
}

.announcement-bar .view-all-btn {
    border-radius: 12px;
    padding: 2px 10px;
    font-size: 0.75rem;
    cursor: pointer;
}

.footer {
    color: #fff;
    padding: 1.5rem 0 0 0;
}



.footer-container {
    margin: 0 auto;
    padding: 0 16px;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-col {
    padding: 0 20px;
    min-height: 140px;
}

.footer-brand {
    flex: 1 1 30%;
    min-width: 30%;
}

.footer-cert {
    flex: 1 1 15%;
    min-width: 15%;
}

.footer-resource {
    flex: 1 1 30%;
    min-width: 30%;
}

.footer-contact {
    flex: 1 1 25%;
    min-width: 25%;
}

.footer-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.footer-qrcode-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}

.footer-cert-img {
    display: block;
    margin: 24px auto 0 auto;
    border-radius: 8px;
    padding: 8px;
	cursor: pointer;
}

.footer-title {
    font-size: 1rem;
    margin: 0 0 12px 0;
    font-weight: bold;
    text-align: left;
}

.footer-title-underline {
    border-bottom: 2px solid #fff;
    padding-bottom: 2px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;	
	cursor: pointer;
}

.footer-list li {
    margin-bottom: 8px;
}

.footer-list a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-list a:hover {
    text-decoration: underline;
}

.footer-contact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.footer-btn {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 8px;
    padding: 4px 10px;
    font-size: 0.8rem;
    cursor: pointer;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0 0;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 1rem;
}

.footer-icon {
    font-size: 1rem;
    color: #fff;
}

.footer-v-divider {
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    height: auto;
    align-self: stretch;
}

.footer-v-divider.lg-none {
    display: none;
}

.footer-h-divider {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    width: 100%;
    margin: 15px 0;
}

.footer-bottom-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 0.95rem;
    border-top: 1px solid #fff3;
}

.footer-bottom-col {
    flex: 1 1 33%;
    text-align: center;
    margin: 4px 0;
}

.footer-bottom-col.left {
    text-align: left;
}

.footer-bottom-col.center {
    text-align: center;
}

.footer-bottom-col.right {
    text-align: right;
}

.footer-policy-link {
    color: #fff;
    cursor: pointer;
    text-decoration: underline;
    outline: none;
}

.footer-policy-link:focus,
.footer-policy-link:hover {
    color: #fff;
    border-radius: 4px;
}

.footer-copyright {
    line-height: 1.5rem;
    font-size: 14px;
}

nav-bar {
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 10px;
	width: 100%;
}

.trapezoid {
    height: 0;
    width: -moz-max-content;
    width: max-content;
    border-top-left-radius: 15px;
    border-right: 25px solid transparent;
}

.searchIcon {
    font-weight: normal;
    background-color: #fff;
    border-radius: 50%;
    height: 25px;
    width: 25px;
    text-align: center;
    font-size: 12px;
    line-height: 2;
}

.trapezoid-box {
    padding: 10px;
    border-radius: 0 10px 10px 10px;
}

.box {
    padding: 5px 15px;
    border-radius: 10px;
}

.custum-input {
    min-height: 32px !important;
    padding: 5px 10px !important;
    color: #000 !important;
    border-radius: 8px;
    width: 100%;
	align-content:center
}

.custum-input:focus-visible {
    outline: none !important;
}

.flex-1>* {
    flex: 1;
}

.inputbox {
	max-width:400px;
    padding: 10px;
  
}
.rightBox{
    display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
border-left:1px solid #e0dee4
}
.rightBox .inputbox{
      width: 100%;
}
.no-border {
    border: 0 !important;
}

.p-0 {
    padding: 0 !important;
}
.pt-1{
    padding-top:0.25rem
}
.pt-2{
    padding-top:0.5rem
}
.ps-2{
    padding-right:0.5rem
}
.my-0{
    margin-top: 0;
    margin-bottom: 0;
}
.my-3 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}
.my-5{
	 margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}
.button-btn {
    border-radius: 30px;
    padding: 8px 20px;
    width: 115px;
    font-size: 13px;
    font-weight: bold !important;
	align-content: center;
	text-align: center;
}
#captcha {
  cursor: pointer;
}
#captchaText {
  min-width: 200px;
}
.captchaimg{
	padding:5px 7px 5px 5px
}
.button-btn:hover{
	text-decoration:none;
	cursor:pointer
}
.button-btn.btn-submit:hover{
	color:#fff;
	text-decoration:none
}
.btn-clear:hover {
  color: #000;
}
.btn-clear {
    background: transparent;
    font-weight: bold;
}

.btn-submit {
    border: 0;
    color: #fff;
}
.content-pad{
    padding: 34px 0;
}
.jc-end {
    justify-content: flex-end;
}
.jc-between {
    justify-content: space-between;
}
.jc-center{
    justify-content: center;
}
.align-center {
    align-items: center;
}

.br-10 {
    border-radius: 10px;
}

.captchaimg {
    border-radius: 10px 0 0 10px;
}

.inputGroup input:focus-visible {
    border: 0 !important;
    outline: 0;
}

.label {
    color: #3f3f3f;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 4px;
    display: inline-block;
}

input::placeholder {
    color: rgb(221, 220, 220);
    font-size: 14px;
}

.forgot {
    font-size: 12px;
}

.tooltipText {
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: bold;
    color: #fff;
    width: 10px;
    height: 10px;
    text-align: center;
    line-height: 1;
}

.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip p {
    background: #4e4e4e;
    color: #fff;
    padding: 10px;
    font-size: 14px;
    border-radius: 5px;
    position: absolute;
    left: 22px;
    top: -5px;
    margin: 0;
    display: none;
    min-width: 200px;
    max-width: 200px;
    z-index: 1;
}

.tooltip:hover p {
    display: block;
}

.red {
    color: red;
}

.refresh {
    background-color: transparent;
    border: 0;
    border-radius: 10px 0 0 10px;
    padding-left: 0;
    border-right: 1px solid #e4e4e4;
    cursor: pointer;
}

.top-bar {
    background: #f5f5f5;
    padding: 6px 12px;
    font-size: 14px;
    position: relative;
    z-index: 1;
    height: fit-content;
	width: 100%;
}

.top-bar:before {
    content: "";
    z-index: -1;
    position: absolute;
    height: 100%;
    width: 80%;
    top: 0;
    left: -20px;
    background: inherit;
    transform: skewX(230deg);
    display: block;
}

.top-bar-row {
    width: 100%;
    gap: 15px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0 8px;
    display: flex;
    align-items: center;
}

.dropdown-toggle .icon {
    margin-right: 4px;
    vertical-align: middle;
}

.dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 110%;
    background: #333;
    color: #fff;
    min-width: 180px;
    border-radius: 6px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 8px 16px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    cursor: pointer;
}

.dropdown-item:hover {
    background: #444;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    background-color: #ffffff;
    overflow-x: hidden;
    padding-top: 20px;
    transition: 0.5s;
}

.sidenav span {
    padding: 5px 5px 15px 25px;
    text-decoration: none;
    font-size: 15px;
    display: block;
    transition: 0.3s;
    font-weight: 600;
}
#resendCode {
    padding: 10px 10px;
  }
.sidenav a {
    width: max-content;
    text-decoration: none;
}
.captchaButton{
    justify-content: end;
}
.sidenav a:hover {
    text-decoration: underline;
}
.fw-bold{
    font-weight: bold;
}
@media(max-width: 860px){
    .resendButtons{
        flex-direction: column-reverse;
    }
     .resendButtons .button-btn {
        width: 97px;
    }
    .captchaButton{
        justify-content: center;
    }
}
@media (max-width: 767px) {
  
    .blockInTab {
        display: block;
    }

    .inputbox {
        margin: auto;
		max-width:400px;
    }

    .centerInTab {
        text-align: center;
    }
}

@media only screen and (min-width: 600px) {
    .nav-col {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .footer-col {
        padding: 0 20px;
        min-height: 140px;
    }

    .footer-brand,
    .footer-cert,
    .footer-resource,
    .footer-contact {
        flex: 1 1 50%;
        min-width: 50%;
    }

    .header-logo .main-title {
        font-weight: bold;
        font-size: 1rem;
    }

    .header-logo img {
        max-height: 45px;
        margin-right: 12px;
    }

    .dropdown-toggle,
    .dropdown-toggle .icon,
    .screenReader {
        font-size: 12px;
    }
}

@media only screen and (min-width: 768px) {
    .nav-col {
        display: none;
    }

    .menu-btn,
    .login-btn {
        padding: 5px 10px;
        font-size: 0.8rem;
    }

    .mobile-menu {
        display: flex;
    }

    .footer-col {
        padding: 0 20px;
        min-height: 140px;
    }

    .footer-brand,
    .footer-resource {
        flex: 1 1 50%;
        min-width: 50%;
    }

    .footer-cert,
    .footer-contact {
        flex: 1 1 49%;
        min-width: 49%;
    }

    .header-logo .main-title {
        font-weight: bold;
        font-size: 1rem;
        letter-spacing: 0;
    }

    .header-logo .sub-title {
        font-size: 0.8rem;
        font-weight: 100;
        letter-spacing: 0;
    }

    .header-logo .titles {
        line-height: 1.25rem;
    }

    .header-logo img {
        max-height: 45px;
        margin-right: 12px;
    }

    .dropdown-toggle,
    .dropdown-toggle .icon,
    .screenReader {
        font-size: 12px;
    }
}

@media only screen and (min-width: 992px) {
    .nav-col {
        display: flex;
        flex: 0 0 40%;
        flex-direction: column;
        justify-content: space-between;
        align-items: end;
    }

    .logo-col {
        flex: 0 0 60%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 16px;
    }

    .mobile-menu {
        display: none;
    }

    .footer-col {
        padding: 0 20px;
        min-height: 140px;
    }

    .footer-brand,
    .footer-resource {
        flex: 1 1 50%;
        min-width: 50%;
    }

    .footer-cert,
    .footer-contact {
        flex: 1 1 49%;
        min-width: 49%;
    }

    .footer-list {
        flex: 1 1 50%;
        min-width: 50%;
    }

    .header-logo .main-title {
        font-weight: bold;
        font-size: 1.15rem;
        letter-spacing: -0.5px;
    }

    .header-logo .sub-title {
        font-size: 0.8rem;
        font-weight: 100;
        letter-spacing: 0;
    }

    .header-logo .titles {
        line-height: 1.5rem;
    }

    .header-logo img {
        max-height: 50px;
        margin-right: 12px;
    }

    .dropdown-toggle,
    .dropdown-toggle .icon,
    .screenReader {
        font-size: 12px;
    }
	nav-bar {
		gap: 10px;
	}
}

@media only screen and (min-width: 1200px) {
    .footer-h-divider {
        display: none;
    }

    .nav-col {
        display: flex;
        flex: 0 0 40%;
        flex-direction: column;
        justify-content: space-between;
        align-items: end;
    }

    .logo-col {
        flex: 0 0 60%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 16px;
    }

    .mobile-menu {
        display: none;
    }

    .footer-col {
        padding: 0 20px;
        min-height: 140px;
    }

    .footer-brand {
        flex: 1 1 30%;
        min-width: 30%;
    }

    .footer-cert {
        flex: 1 1 15%;
        min-width: 15%;
    }

    .footer-resource {
        flex: 1 1 30%;
        min-width: 30%;
    }

    .footer-contact {
        flex: 1 1 24%;
        min-width: 24%;
    }

    .footer-v-divider.lg-none {
        display: block;
    }

    .header-logo .main-title {
        font-weight: bold;
        font-size: 1.25rem;
        letter-spacing: -0.5px;
    }

    .header-logo .sub-title {
        font-size: 0.9rem;
        font-weight: 100;
        letter-spacing: 0;
    }

    .header-logo .titles {
        line-height: 1.5rem;
    }

    .header-logo img {
        max-height: 55px;
        margin-right: 12px;
    }

    .dropdown-toggle,
    .dropdown-toggle .icon,
    .screenReader {
        font-size: 14px;
    }
	nav-bar {
		gap: 35px;
	}
}


.themeclr {
  color: #444798;
}
.text-center {
  text-align: center;
}
.plain-btn {
  background-color: transparent;
  border: 0;
  padding: 0;
}
.messagebox{
	    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 700px;
    width: 100%;
}
.messagebox .login{
	    width: 100%;
}
.messagebox .login span, .messagebox .login a{
	font-weight: 600;
	font-size: 14px;
}

.pointer {
  cursor: pointer;
}

.table-container {
  min-width: 300px;
  overflow: auto;
  padding: 10px;
  border-radius: 10px;
}
.table-container table {
  border-collapse: collapse;
  width: 100%;
  text-align: center;
}
.table-container tr:nth-child(odd) {
  padding: 10px 0;
}

.table-container th {
  padding: 12px 5px;
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
}
.table-container td {
  font-size: 13px !important;
  padding: 12px !important;
}
h5{
    font-size: 14px;
}
h4{
    font-size: 15px;
}
.lists li {
  font-size: 13px;
}
.plain-href {
  text-decoration: none;
  color: #000;
  font-size: 13px;
}
.plain-href:hover strong,
.plain-btn:hover strong {
  text-decoration: underline;
}
.notes {
  padding: 10px;
  border-radius: 10px;
  background-color: #ffffc4;
border: 1px solid #e7e70e;
}
.infobox {
  background-color: #f5f3f8;
  font-size: 13px;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  margin-top: 10px;
}
.w-full{
    width:100%
}
.p-0 {
  padding: 0 !important;
}
.pl-3 {
  padding-left: 0.75rem;
}
.px-2{
	padding-left:0.5rem;
	padding-right:0.5rem
}
.m-0 {
  margin: 0;
}
.mb-1{margin-bottom:0.25rem}
.ml-2 {
  margin-left: 0.5rem;
}

.mb-0 {
  margin-bottom: 0;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}

.mt-0 {
  margin-top: 0
}
.mt-5 {
  margin-top: 1.25rem;
}

.my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 575px) {
  .blockIn575 {
    display: block;
  }
}



/* new */
.f-13{
    font-size: 13px;
}
.f-14{
    font-size: 14px;
}
.bold{
    font-weight: bold;
}
.notes p {
    font-size: 13px; 
    margin-bottom: 10px;
	display: flex;
    align-items: center;
    justify-content: center;
}
.notes.info {
     background: #eaf1ff;
    border: 1px solid #dfe0fd;
}
.notes.success {
    background: #e5f8e7;
    border: 1px solid #0ee754;
      color: green;
}
.notes.danger{
    background: #ffe2e2;
    border: 1px solid #ff9196;
    color: #830000;
}
.notes.warning{
   background: #ffffc4;
   border: 1px solid #e7e70e;
}
.mt-3{
    margin-top: 0.75rem;
}
.ms-2{
    margin-left:0.5rem
}
.pl-0{
  padding-left: 5px;
}
.pe-2{
    padding-right: 0.5rem;
}
.table-container{
    background-color: #ffff;
}
.leftNotes li {

    list-style-type: disc;

}
.leftNotes{
gap: 10px;
align-items: first baseline;
background-color: #e4f2fd;
max-width: 700px;
width: 100%;
padding: 38px;
border-radius: 5px;
margin-left: 20px;
margin-right: 20px;
}

  .leftNotes .tooltipText {
    font-size: 14px;
    width: 20px;
    height: 20px;
    aspect-ratio: 1/1;
}
.marquee{
      height: 100px;
    overflow: hidden;
}
.marquee ul{
    animation: marquee 10s linear infinite;
}
.marquee li{
  padding:5px 0;
}
@media(min-width:768px) and  (max-width: 992px){
    .wrapAtLap{
        flex-wrap: wrap;
    }
    .wrapAtLap .inputbox{
        width: 50%;
        flex: unset;
    }
}
@media(max-width:992px){
       .resendButtons .button-btn {
  width: 95px;
    }
    .blockIn991{
        display: block !important;
    }
       .rightBox{
        border: 0;
    }
}
@keyframes marquee{
 0% {
    transform: translateY(70%);
}
100% {
    transform: translateY(-100%);
}
}
#mySidenav{
	width:250px;
	left: -250px
}

