﻿@charset "utf-8";
/**  
* -----------------------------------------------------------------------------
    Custom Css 
* -----------------------------------------------------------------------------
**/
/*
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merienda:wght@400;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*/
/*----
font-family: 'Poppins', sans-serif;
---*/

/* -----------------------------------------------------------------------------*/
/*-- Loader Style End --*/

#pre-load {
    background-color: #fff;
    height: 100%;
    width: 100%;
    position: fixed;
    margin-top: 0px;
    top: 0px;
    z-index: 9999;
  }
  .loader .loader-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 5px solid #ebebec;
    border-radius: 50%;
  }
  .loader .loader-container:before {
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-top: 4px solid #f00c46;
    border-radius: 50%;
    animation: loaderspin 1.8s infinite ease-in-out;
    -webkit-animation: loaderspin 1.8s infinite ease-in-out;
  }
  .loader .loader-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    text-align: center;
  }
  .loader .loader-icon img {
    animation: loaderpulse alternate 900ms infinite;
    width: 30px;
  }
  .woocommerce .quantity input[type="number"]::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #363636 !important;
    opacity: 1;
  }
  .woocommerce .quantity input[type="number"]::-moz-placeholder {
    /* Firefox 19+ */
    color: #363636 !important;
    opacity: 1;
  }
  .woocommerce .quantity input[type="number"]:-ms-input-placeholder {
    /* IE 10+ */
    color: #363636 !important;
    opacity: 1;
  }
  .woocommerce .quantity input[type="number"]:-moz-placeholder {
    /* Firefox 18- */
    color: #363636 !important;
    opacity: 1;
  }
  /* ------------------------------------
    34. Animation Part CSS
---------------------------------------*/
@keyframes loaderspin {
    0% {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  @-webkit-keyframes loaderspin {
    0% {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  @keyframes loaderpulse {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.2);
    }
  }
  @keyframes pulse-border {
    0% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      opacity: 1;
    }
    100% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
      opacity: 0;
    }
  }
  @-webkit-keyframes pulse-border {
    0% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      opacity: 1;
    }
    100% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
      opacity: 0;
    }
  }
  .move-y {
    animation: move-y 2s alternate infinite;
    -webkit-animation: move-y 2s alternate infinite;
  }
  @keyframes move-y {
    0% {
      transform: translate3d(0, 0, 0);
      -webkit-transform: translate3d(0, 0, 0);
    }
    100% {
      transform: translate3d(0, 10px, 0);
      -webkit-transform: translate3d(0, 10px, 0);
    }
  }
  .scale {
    animation: scale 2s alternate infinite;
  }
  @-webkit-keyframes scale {
    0% {
      transform: scale(0.8);
      -webkit-transform: scale(0.8);
    }
    100% {
      transform: scale(1);
      -webkit-transform: scale(1);
    }
  }
  .dance2 {
    -webkit-animation: dance2 4s alternate infinite;
  }
  @keyframes dance2 {
    0% {
      -webkit-transform: translate3d(0, 0, 0);
    }
    50% {
      -webkit-transform: translate3d(15px, -15px, 0);
    }
    100% {
      -webkit-transform: translate3d(0, -15px, 15px);
    }
  }
  .up-down {
    animation: up-down 7s alternate infinite;
    -webkit-animation: up-down 7s alternate infinite;
  }
  @keyframes up-down {
    0% {
      transform: translateY(20px);
      -webkit-transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
      -webkit-transform: translateY(-20px);
    }
    100% {
      transform: translateY(0);
      -webkit-transform: translateY(0);
    }
  }
  @-webkit-keyframes up-down {
    0% {
      transform: translateY(30px);
      -webkit-transform: translateY(0);
    }
    50% {
      transform: translateY(-50px);
      -webkit-transform: translateY(-50px);
    }
    100% {
      transform: translateY(0);
      -webkit-transform: translateY(0);
    }
  }
  .spine {
    animation: spine 8s linear infinite;
  }
  @keyframes spine {
    0% {
      transform: rotate(0);
      -webkit-transform: rotate(0);
    }
    100% {
      transform: rotate(360deg);
      -webkit-transform: rotate(360deg);
    }
  }
  @-webkit-keyframes spine {
    0% {
      transform: rotate(0);
      -webkit-transform: rotate(0);
    }
    100% {
      transform: rotate(360deg);
      -webkit-transform: rotate(360deg);
    }
  }
  .horizontal {
    animation-name: horizontal;
    animation-duration: 12s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }
  .horizontal.new-style {
    animation-duration: 15s;
  }
  @keyframes horizontal {
    0% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(100px);
    }
    100% {
      transform: translateX(0);
    }
  }
  .vertical {
    animation-name: vertical;
    animation-duration: 12s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }
  .vertical.new-style {
    animation-duration: 15s;
  }
  @keyframes vertical {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(100px);
    }
    100% {
      transform: translateY(0);
    }
  }
  .fadeinup {
    animation-duration: 2s;
    animation-name: fadeInUp;
  }
  .fadeinup.new {
    animation-duration: 3s;
  }
  @keyframes fadeinup {
    0% {
      opacity: 0;
      transform: translate3d(0, 100%, 0);
    }
    100% {
      opacity: 1;
      transform: none;
    }
  }
  .fadeinright {
    animation-duration: 3s;
    animation-name: fadeInRight;
  }
  @keyframes fadeinup {
    0% {
      opacity: 0;
      transform: translate3d(0, 100%, 0);
    }
    100% {
      opacity: 1;
      transform: none;
    }
  }
  .rotate_Y {
    animation: mymove 5s infinite;
  }
  @keyframes mymove {
    0% {
      transform: rotateY(-50deg);
    }
    100% {
      transform: rotateY(50deg);
    }
  }
  .rs-services.style6 .services-box-area .services-item:hover .dance_hover,
  .rs-services.style4 .services-item:hover .dance_hover,
  .rs-iconbox-area .box-inner .box-item:hover .dance_hover {
    animation-name: dance_hover;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
  }
  @keyframes dance_hover {
    16.65% {
      transform: translateY(8px);
    }
    33.3% {
      transform: translateY(-6px);
    }
    49.95% {
      transform: translateY(4px);
    }
    66.6% {
      transform: translateY(-2px);
    }
    83.25% {
      transform: translateY(1px);
    }
    100% {
      transform: translateY(0);
    }
  }
  /* Draw Line Animation */
  @keyframes start-draw {
    to {
      height: 95%;
    }
  }
  /* Infinite Rotation Animation */
  @keyframes rotate-anim {
    from {
      -webkit-transform: rotate(0deg);
    }
    to {
      -webkit-transform: rotate(359deg);
    }
  }
  /*Pulse Border Animation*/
  @keyframes pulse-border {
    0% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      opacity: 1;
    }
    100% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
      opacity: 0;
    }
  }
/*-- Loader Style End --*/

/*-- Global Style start --*/

/*-- font-family: 'Roboto', sans-serif; --*/
/*-- font-family: 'Lato', sans-serif; --*/


/*-- Global Style end --*/
body,
button, 
input, 
optgroup, 
select, 
textarea{
    font-family: 'Roboto', sans-serif !important;
}
body {
    font-size: 14px;
}
a {
    text-decoration: none;
}
.labelControl {
    font-size: 13px;
    font-weight: 500;
    margin: 0 0 4px;
    line-height: 20px;
    /* color: #05608a; */
    color: #001995;
}
.inputControl,
.selectControl,
.textControl{
    border-color: #e0e0e0;
    font-size: 14px;
    outline: none;
    box-shadow: none;
    border-radius: 0.25rem !important;
}
.inputControl:focus,
.selectControl:focus,
.textControl:focus {
    outline: none;
    box-shadow: none;
}
/*.textControl{
    resize: none;
}*/
.inputControl.datepicker{
    padding: 0.375rem 0.75rem;
}
.defaultBtn{
    outline: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    font-size: 14px;
    box-shadow: none !important;
}

.defaultBtn:hover {    
    border: none;
    box-shadow: none;
}
.actionBtn {
    outline: none;
    text-transform: uppercase;
    background: #0d5daf;
    letter-spacing: 1px;
    border: none;
    font-size: 13px;
    box-shadow: none !important;
    color: #ffffff;
    font-weight: 500;
}
.actionBtn:hover {
    background: #fb4b07;
    border: none;
    box-shadow: none;
}
.successBtn {    
    background: #02921a;   
}
.successBtn:hover {
    background: #fb4b07;   
}
.deleteBtn {    
    background: #d9534f;   
}
.deleteBtn:hover {
    background: #fb4b07;   
}
.disableBtn {
    background: #646464;
    cursor: inherit !important;
}
.disableBtn:hover,
.disableBtn:focus {
    background: #646464;   
}
.registerBtn {
    background: #7e1dbb;
    font-size: 12px;
}
.homeBtn {
    margin: 30px 0 30px;
}
.homeBtn2 {
    position: absolute;
    margin: 0;
    left: 25px;
    top: 20px;
}
.backLink {
    background: #00446d;
    font-size: 12px;
}
.loginBtn {   
    background: #ffe004;    
    color: #002dfb;       
}
.backInlineLink {
    background: inherit;
    box-shadow: none;
    border: none;
    color: #0633a2;
    font-weight: 500;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    text-transform: uppercase;
    font-size: 16px;
}
.backInlineLink:hover,
.backInlineLink:focus{
    background: none;
    box-shadow: none !important;
    border: none;
    color: #f700ff;    
}
.inlineBtnLink{
    color: #ff6300;
    font-weight: 500;
}
.verifyBtn{
    background: #03a735;
}

.form-group {
    margin-bottom: 1rem;
}
.home-6 a:hover {
    color: #ff6300;
}
.mb__0{
    margin-bottom: 0px !important;
}
.mb__6{
    margin-bottom: 6px;
}
.mb__10{
    margin-bottom: 10px;
}
.mb__15{
    margin-bottom: 15px;
}
.mb__20{
    margin-bottom: 20px;
}
.mb__25{
    margin-bottom: 25px;
}
.mb__30{
    margin-bottom: 30px;
}
.mb__50{
    margin-bottom: 50px;
}
.mt__7{
    margin-top: 7px;
}
.mt__10{
    margin-top: 10px;
}
.mt__15{
    margin-top: 15px;
}
.mt__30{
    margin-top: 30px;
}
.mt__100{
    margin-top: 100px;
}
.mr__8{
    margin-right: 8px;
}
.mr__10{
    margin-right: 10px;
}
.mr__15{
    margin-right: 15px;
}
.ml__10{
    margin-left: 10px;
}
.editBtn {
    background: #d05100;
}
.cancelBtn {
    background: #ccc;
    color: #444 !important;
}
.cancelBtn:hover{
    color: #fff !important;
}

.w50 {
    width: 50px;
}
.w70 {
    width: 70px;
}
.w80 {
    width: 80px;
}
.w100{
    width: 100px;
}
.w120{
    width: 120px;
}
.w150{
    width: 150px;
}
.w180{
    width: 180px;
}
.w200{
    width: 200px;
}
.w210{
    width: 210px;
}
.w220{
    width: 220px;
}
.w260{
    width: 260px;
}
.w290{
    width: 290px;
}
.w300{
    width: 300px;
}
.w350{
    width: 350px;
}
.w380{
    width: 380px;
}
.w410{
    width: 410px;
}
.w500{
    width: 500px;
}
.w670{
    width: 670px;
}
.topbar-area{
    display: none;
}

/* .dummaySpace{
    height: 60px;
}
.dummaySpace2{
    height: 172px;
} */

.vhHeight__100{
    height: 100vh;
}
.vhHeight__65 {
    height: 65vh
}
/*-- Global Style End --*/


/*-- AffFirst Style Start --*/
.affFirstMain img {
    height: 100vh;
    width: 100%;
}
.affFirst .btn {
    position: absolute;
    top: 42%;
    left: 128px;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    cursor: pointer;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    color: #02145c;
    font-weight: 500;
}
.affFirst .btn:hover {
    background-color: lightblue;
    color: #374ef1;
}
/*-- AffFirst Style End --*/
/*-- CatRedirect Style Start --*/
.catRedirectBody {
    background: url("../images/bg/bg.jpg") repeat;
    background-size: cover;
    background-position: left 0%;
}

.catRedirectMain {    
    text-align: center;
}
.catRedirectHead {
    margin-top: 30px;
    text-align: center;
}
.catRedirectTitle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    margin: 20px 0 30px;
}
.catRedirectTitle h5 {
    font-size: 24px;
    margin: 0 0 10px;
    color: #fffc00;
    color: #ff2e07;
    color: #ff004e;
    color: #0061a7;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
}
.catRedirectTitle h6 {
    font-size: 20px;
    color: #f00;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    margin: 0;
}
.catGridMain .row {
    justify-content: center;    
    align-items: center;
}
.catGridMain .catGrid {   
    background: url("../images/bg/cardBg.jpg") no-repeat; 
    background-position: left bottom;
    background-size: cover;   
    box-shadow: 0 1px 4px 0 rgb(0 0 0 / 30%);
    -moz-box-shadow: 0 1px 4px 0 rgba(0,0,0,.3);
    -webkit-box-shadow: 0 1px 4px 0 rgb(0 0 0 / 30%);
    border-radius: 5px;
    max-width: 23%;
    float: none;
    flex: 0 0 23%;
    margin-bottom: 23px;
    margin-right: 2%;
    position: relative;
}
.catGridMain .catGrid a {
    width: 100%;
    display: inline-flex;
    align-items: center;
    height: 180px;
    padding: 15px 0;
    justify-content: center;
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    outline: none;
    color: #fff;
    letter-spacing: 1px;
}
.catGridMain .catGrid::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    background: linear-gradient(119.54deg,#000046 0%,#1CB5E0 100%);
    background-size: 200%;
    height: 5px;
    border-radius: 7px 7px 0 0;
}
.catGridMain .catGrid:hover::after {
    background-position: right center;
}
.catGridMain .catGrid:nth-child(4n) {
    margin-right: 0;
}
.catGridMain .catGrid a {
    width: 100%;
    display: inline-flex;
    align-items: center;
    height: 180px;
    padding: 15px 0;
    justify-content: center;
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    outline: none;
    color: #fff;
    letter-spacing: 1px;
}
.catGridMain .catGrid a:focus{
    outline: none;
}

/*-- CatRedirect Style End --*/

/*-- New Header Style Start --*/
.newHeaderMain {
    background: #ffffffb0;
    box-shadow: -4px 2px 3px 0px rgb(0 0 0 / 16%);
    margin-bottom: 30px;
    position: relative;
}
.newHeaderMainBlk {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;   
}
.newHeaderTitle {
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50% , -50%);
}
.newHeaderTitle h1 {
    font-size: 24px;
    margin: 0 0 6px;
    color: #0061a7;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
}
.newHeaderTitle h1:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    background: #f00;
    width: 100%;
    height: 3px;
}
.newHeaderTitle h2 {
    font-size: 20px;
    margin: 0;
    color: #0061a7;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    text-decoration: underline;
}
/*.newHeaderIcon img:first-child {
    margin-right: 15px;
}*/
/*-- New Header Style End --*/


/*-- Header and Footer Style Start --*/
.headTitle {
    justify-content: flex-start !important;
}
.full-width-header .rs-header .menu-area .logo-area img {
    max-height: 80px;
}
.full-width-header .rs-header .expand-btn-inner ul li.ashokIcon{
    margin-right: 0;
}
.full-width-header .rs-header .menu-area,
.full-width-header .rs-header .menu-area.sticky {
    background: #fff;
    -webkit-box-shadow: 0 0 5px 0 rgb(0 0 0 / 20%);
    box-shadow: 0 0 5px 0 rgb(0 0 0 / 20%);
    padding: 6px 0;
}
.siteTitle {
    margin-left: 20px;
}
.siteTitle h2 {
    font-size: 16px;
    color: #0b4686;
    font-weight: 600;
    line-height: 21px;
    margin: 0 0 4px;
    font-family: 'Lato', sans-serif;
    letter-spacing: 1px;
}
.siteTitle h5 {
    font-size: 14px;
    color: #0b4686;
    font-weight: 600;
    line-height: 19px;
    margin: 0;
    font-family: 'Lato', sans-serif;
    /* letter-spacing: 1px; */
}
.full-width-header .rs-header .menu-area .headMenu.sarasHeadMenu .rs-menu-area{
    display: none;
}
.full-width-header .rs-header .menu-area .headMenu .rs-menu-area {
    margin-right: 15px;
}
.full-width-header .rs-header .menu-area .headMenu .main-menu .rs-menu ul.nav-menu li {
    margin-right: 15px;
}
.full-width-header .rs-header.style2.header-home4-style .menu-area .main-menu .rs-menu ul.nav-menu li a {
    color: #004b6a;
    height: 92px;
    line-height: 92px;
}
.headMenu i {
    margin-right: 4px !important;
    color: #fd4a36;
}
.rs-footer.style1 .footer-bottom {
    padding: 8px 0;
    background: #21b3ac;
}
.copyright {
    font-size: 13px;
}
/*-- Header and Footer Style End --*/
/*-- Header Style Start --*/
.headerMain {
    background-color: #fff !important;
    /* box-shadow: -4px 2px 10px 0px rgb(0 0 0 / 30%);     */
    box-shadow: -4px 2px 3px 0px rgb(0 0 0 / 16%);
}

.myHeaderNav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
}
.headerLogo {
    text-decoration: none;
}
.siteTitle {
    margin-left: 12px;
}
.menuWrapper img:first-child {
    margin-right: 25px;
}
.headerMain .homeLink {
    padding: 0 20px 0 0;
    color: #fff;
    position: relative;
    margin-right: 16px;
    font-size: 14px;
    line-height: 22px;
}
.headerMain .homeLink2 {    
    margin-right: 86px;    
}
.headerMain .homeLink:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: #fff;
}
.headerMain .homeLink.active {
    color: #00ff43;
}
.headerMain .homeLink:hover, 
.headerMain .myDropMenu .navbar-toggler:hover {
    color: #00ff43;
}
.myDropMenu {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-60%);
}
.myDropMenu .navbar-toggler,
.myDropMenu .navbar-toggler:hover,
.myDropMenu .navbar-toggler:focus {
    border: none;
    box-shadow: none;
    padding: 0;
    transition: none !important;
}
.myDropMenu .navbar-collapse.show {
    position: absolute;
    right: 0;
    top: 60px;
    background: #0a1434;
    padding: 15px 30px 20px;   
    z-index: 9; 
}


.myDropMenu .navbar-collapse {
    flex-basis: auto;
    flex-grow: 0;
    align-items: inherit;    
}
.myDropMenu .navbar-toggler,
.myDropMenu .navbar-toggler.collapsed {
    font-size: 14px;
    line-height: 19px;
    color: #fff;
}
.myDropMenu .navbar-collapse.collapsing {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
    height: inherit !important;
    overflow: inherit !important;
    opacity: 0;
}
.navbar-dark .navbar-toggler-icon {
    background-image: url("../images/icons/hamburger.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    margin-left: 5px;
}
.navbar-dark .navbar-toggler:hover .navbar-toggler-icon {    
    background-image: url("../images/icons/hamburger-hover.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;    
}
.navbar-dark .navbar-toggler:focus .navbar-toggler-icon {    
    background-image: url("../images/icons/hamburger-focus.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;    
}
.myDropMenu .navbar-collapse.show .nav-item {
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid #162552;
}
.myDropMenu .navbar-collapse.show .nav-item:last-child {
    margin-bottom: 12px;
}
.myDropMenu .navbar-collapse.show .nav-link {
    padding: 0;
    color: #fff;
    font-size: 14px;
}
.myDropMenu .navbar-collapse.show .nav-item.dropdown .dropdown-menu {
    background-color: #007b87;
}
.myDropMenu .navbar-collapse.show .nav-item.dropdown .dropdown-menu .dropdown-item {
    font-size: 13px;
    color: #ffffff;    
}
.myDropMenu .navbar-collapse.show .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #015d66;
}
/*-- Header Style End --*/

/*-- Login Style Start --*/
.pageLayout {
    padding: 30px 0 70px;
}
.loginLayout{
    background: url("../images/bg/bg.jpg") repeat;
    background-size: cover;
    background-position: left 0%;
}
.loginMain {
    max-width: 450px;
    margin: 0 auto;
    padding: 24px 20px 25px;
    border-radius: 6px;
    box-shadow: 0 5px 8px hsl(0deg 0% 8% / 31%);
    /* background-image: linear-gradient(-225deg, #edfff9 50%, #cfcfcf 50%); */
    background-image: url("../images/bg/cardBg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
/* .loginMainHead {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50% , -121px);
    width: 150px;
    height: 150px;  
    text-align: center;
    border-radius: 50%;
    background-image: url(../images/bg/cardBg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}*/
.loginMainHead {
    text-align: center;
    margin: 0 0 20px;
}
.loginMainHead img {
    width: 80px;
    border: 5px solid #c1e1f3;
    border-radius: 50%;
}
.loginMain h2 {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    text-decoration: underline;
    margin: 0 0 30px;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.loginMain .labelControl{
    color: #ffffff;
    font-size: 14px;
}
.captcha {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.captchaImg{
    margin: 0 0 8px;
}
.captcha a {
    color: #fff;
    font-size: 15px;
    text-decoration: underline;
    font-weight: 500;
}
.loginInstList {
    background: rgba(255,255,255,.8);
    padding: 8px 15px 8px;
    margin-bottom: 10px;
    margin-top: 10px;
}
.loginInfoPara {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 6px;
    color: #fb00ff;
    text-decoration: underline;
    line-height: 18px;
}
.loginInstList .list-unstyled {
    margin: 0;
    list-style-type: disclosure-closed;
    padding-left: 20px;
}
.loginInstList .list-unstyled li {
    font-size: 14px;
    color: #000089;
    margin-bottom: 3px;
}
.loginInstList .list-unstyled li:last-child {
    margin-bottom: 0;
}
.forgotPasswordBlk {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
}
.forgotPasswordBlk #lnkForgotPassword {
    margin-top: 20px;
    margin-bottom: 5px;
    color: #36ff04;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 2px;
    font-weight: 500;
}
.forgotPasswordBlk #lnkForgotPassword:hover {
    text-decoration: underline;
}
.loginErrorMsg {
    color: #a5f900 !important;
    margin-top: 15px !important;
    display: inline-block;
    font-size: 15px !important;
    font-weight: 500;
    letter-spacing: 1px;
}
.cPasswordMain {
    margin: 40px auto 0;
}
/*-- Login Style End --*/


/*-- KYC View Style Start --*/
.userLayout{
    background-color: #d4ebfe;       
}
.progtrckr {
    list-style-type: none;
    margin: 0;
    padding: 20px 20px 24px;
    table-layout: fixed;
    width: 100%;
    /* background-image: linear-gradient(to right, #5bc6d0 , #df5d1f); */
    display: flex;
    align-items: flex-end;
    /* background-image: linear-gradient(180deg, red, blue); */
}
.progtrckr li {
    /* display: table-cell; */
    text-align: center;
    line-height: 16px;
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    justify-content: center;
    position: relative;
    padding-bottom: 20px;
}
.progtrckr[data-progtrckr-steps="2"] li {
    width: 49%;
}
.progtrckr[data-progtrckr-steps="3"] li {
    width: 33%;
}
.progtrckr[data-progtrckr-steps="4"] li {
    width: 24%;
}
.progtrckr[data-progtrckr-steps="5"] li {
    width: 19%;
}
.progtrckr[data-progtrckr-steps="6"] li {
    width: 16%;
}
.progtrckr[data-progtrckr-steps="7"] li {
    width: 14%;
}
.progtrckr[data-progtrckr-steps="8"] li {
    width: 12%;
}

.progtrckr[data-progtrckr-steps="9"] li {
    width: 11%;
}
.progtrckr li.progtrckr-done {
    color: white;
    border-bottom: 6px solid yellowgreen;
    font-weight: 500;
}
.progtrckr li.progtrckr-todo {
    color: white;
    border-bottom: 6px solid #fff;
    position: relative;
}
.progtrckr li:after {
    content: "\00a0\00a0";
}
.progtrckr li:before {
    float: left;
    line-height: 1em;
    position: absolute;
    left: 45%;
    top: 100%;
    transform: translate(-50%, -36%);
}
.progtrckr li.progtrckr-done:before {
    content: "\2713";
    color: white;
    background-color: yellowgreen;
    height: 20px;
    width: 20px;
    line-height: 11px;
    border-radius: 50%;
    padding: 4px;
    font-size: 12px;
    border: 2px solid #fff;
}
.progtrckr li.progtrckr-todo:before {
    content: "";
    color: #e25b21;
    background-color: #e25b21;
    font-size: 26px;
    top: 100% !important;
    height: 20px;
    width: 20px;
    line-height: 22px;
    border-radius: 50%;
    left: 46%;
    position: absolute;
    padding: 0px 15px 17px 1px;
    transform: translate(-50%, -38%);
    border: 2px solid #fff;
}
.progtrckr.secondpro {
    padding: 12px 20px 35px;
}
.progressItem {    
    background-color: #f1f3fa;
}
.progtrckr li.progtrckr-done {
    color: black;
    border-bottom: 6px solid #00c032;
    font-weight: 500;
}
.progtrckr li.progtrckr-done:before {
    content: "\2713";
    color: white;
    background-color: #00c032;
    height: 20px;
    width: 20px;
    line-height: 11px;
    border-radius: 50%;
    padding: 4px;
    font-size: 12px;
    border: 2px solid #fff;
}
.progtrckr li.progtrckr-todo {
    color: black;
    border-bottom: 6px solid #565656;
    position: relative;
}
/*-- Marquee design Start --*/
.marqueeMain {
    padding: 5px 10px;
    border: 2px dashed #0040c0;
    margin: 10px auto 20px;
}

.marqueeMain marquee {
    line-height: 22px;
    vertical-align: middle;
}

.marqueeMain marquee a {
    font-size: 14px;
    color: #f00;
    line-height: 22px;
    font-weight: 400;
}
/*-- Marquee design End --*/
.kycViewMain{
    padding: 0 15px;
}
.MenuSideBar {
    /* background-color: #ced9ff; */
    padding: 0px;
}
.MenuSideBar ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    width: 100%;
}
.MenuSideBar ul li.has-submenu .submenu {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 9;
    background: #fff;
    box-shadow: 0px 2px 3px 2px rgb(0 0 0 / 16%);
}
.MenuSideBar ul li {
    min-width: 260px;
    background: #325e95;
    margin-right: 15px;
    margin-bottom: 15px;
}
.MenuSideBar ul li:last-child {
    margin-right: 0;
}
.MenuSideBar ul li.has-submenu .submenu li {
    margin: 0 0 3px;
    border-bottom: 1px solid #d5d5d5;
}
.MenuSideBar ul li.has-submenu .submenu li:last-child {
    margin: 0;
    border-bottom: none;
}
.MenuSideBar .nav>li>a.active,
.MenuSideBar .nav>li>a:focus,
.MenuSideBar .nav>li>a:hover {
    outline: none;
    background-color: #224c81;
    color: #fff;
}

.MenuSideBar .nav>li>a:hover {
    background-color: #224c81;
}

.profile-usermenu ul li li a:hover {
    background-color: #224c81;
    color: #fff;
}

.MenuSideBar ul li li a:hover {
    background-color: #224c81;
    color: #fff;
}
.MenuSideBar ul li a {
    font-weight: 500;
    color: #fff;
    line-height: 18px;
    font-size: 14px;
    padding: 14px 30px 14px 14px;
    display: block;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
}
.MenuSideBar li ul li a {
    padding: 10px;
    display: block;
    background: #f9f9f9;
    font-weight: 400;
    font-size: 13px;
    color: #1b00ff;
    text-align: left;
}
.contentBar {
    padding: 26px;
    border: 1px solid #dee2e6;
    background: #fdfdfd;
}
.contentBar .pageTitle {
    text-align: left;
    text-decoration: none;
    border-bottom: 1px solid #99a3c7;
    padding: 0 0 3px;
    margin: 0 0 10px;    
}
.subTitle2{    
    padding-bottom: 0;
    margin: 0;
}
.subTitle2::after{
    display: none;
}
.subTitle3 {
    padding-bottom: 0;
}
.subTitleBg {
    background: #0d5daf;
    padding: 10px !important;
    color: #fff !important;
    font-size: 15px !important;
    text-transform: uppercase;
}
.subTitleChild {
    font-size: 14px;
    color: #fff;
    margin: 0;
    text-align: center;
    background: #1b6785;
    padding: 10px;
    text-transform: uppercase;
}
.contentBar .labelControl{
    margin: 0;
}
.contentBar td{
    font-size: 13px;
}
.MenuSideBar ul li.has-submenu.collapseMain{ 
    position: relative;
}
.MenuSideBar ul li.has-submenu.collapseMain::after {
    position: absolute;
    right: 8px;
    top: 17px;
    width: .75rem;
    height: .75rem;    
    content: "";
    background-image: url("../images/icon/download-color.png");
    background-repeat: no-repeat;
    background-size: .75rem;
    transition: transform .2s ease-in-out;
}
.MenuSideBar ul li.has-submenu.collapseMain .show::after {
    background-image: url("../images/icon/download-color.png");
    transform: rotate(-180deg);
    top: 12px;
}
.checkControl {
    margin: 6px 8px 0 0;
}
.payStatus {
    font-weight: 500;
    text-transform: capitalize;
}
/*-- KYC View Style End --*/


/*-- Final Submit Style Start --*/
.finalSubmitMsg {
    font-size: 18px;
    color: #2e9d00;
    margin: 0;
}
.finalSubmitMain h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 22px;
    margin: 20px 0 10px;
    color: #7e1dbb;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: underline;
}
.finalSubmitMain .radioGroup .labelControl {
    color: #212529;
    font-weight: 500;
}
.finalSubmitMain .finalSubmitLabel {
    color: #f00;
    font-weight: 500;
    margin: 8px 0 0;
    font-size: 14px;
}
/*-- Final Submit Style End --*/

/*-- Final Payment Details Style Start --*/
.paymentOpt h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 22px;
    margin: 20px 0 10px;
    color: #7e1dbb;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: underline;
}
.paymentOpt .form-check {
    display: flex;
    align-items: center;
    padding: 0;
    margin-bottom: 10px;
}
.paymentOpt .form-check input {
    margin: 0;
}
.paymentOpt .labelControl {
    margin-left: 10px;
}
.payAction {
    font-size: 13px;
    font-weight: 500;
    margin: 0;
    line-height: 20px;   
    color: #001995;
}
/*-- Final Payment Details Style End --*/

/*-- Dashboard Style Start --*/

.gridNewDesign h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 15px;
    padding: 0 0 5px;
    border-bottom: 1px solid #dedede;
    font-family: 'Roboto', sans-serif;
    border: 2px solid #0072ff;
    display: inline-block;
    padding: 8px 17px;
    border-radius: 28px;
    color: #0072ff;
    letter-spacing: 1px;
}
.gridNewDesign ul {
    margin: 0;
    padding: 0 !important;
    list-style-type: none !important;
    align-items: center;
    flex-wrap: wrap;
}
.gridNewDesign ul li {
    border: 1px solid #ccc;
    width: 24%;
    margin-right: 1.25%;
    margin-bottom: 20px;
    background: #263827;
    border-radius: 6px;
    padding: 10px 15px;
    text-align: center;
    min-height: 140px;
    display: inline-flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    position: relative;
    cursor: pointer;
    align-items: center;
}
    .gridNewDesign ul li.gradientB {
        /* background: rgb(106,116,255);
    background: linear-gradient(56deg, rgba(106,116,255,1) 0%, rgba(12,72,130,1) 55%, rgba(93,54,172,1) 100%);*/
        background: linear-gradient(0deg, rgba(214,230,72,1) 0%, rgba(143,153,41,1) 55%, rgb(122 131 44) 100%);
    }

    .gridNewDesign ul li.gradientP {
        /*background: rgb(219,1,207);
    background: linear-gradient(56deg, rgba(219,1,207,1) 0%, rgba(215,6,203,1) 55%, rgba(235,98,255,1) 100%);*/
        background: linear-gradient(0deg, rgba(226,206,244,1) 0%, rgba(169,147,189,1) 50%, rgba(116,82,147,1) 100%);
    }

    .gridNewDesign ul li.gradientO {
        /*background: rgb(255,156,90);
    background: linear-gradient(56deg, rgba(255,156,90,1) 0%, rgba(255,141,65,1) 55%, rgba(255,152,85,1) 100%);*/
        background: linear-gradient(0deg, rgba(231,198,40,1) 0%, rgba(191,163,28,1) 55%, rgba(144,121,11,1) 100%);
    }

    .gridNewDesign ul li.gradientG {
        /*background: rgb(95 191 2);
    background: linear-gradient(56deg, rgb(102 197 10) 0%, rgb(76 155 0) 55%, rgb(61 124 0) 100%);*/
        background: rgb(241,156,65);
        background: linear-gradient(0deg, rgba(241,156,65,1) 0%, rgba(201,122,36,1) 55%, rgba(139,83,22,1) 100%);
    }

    .gridNewDesign ul li.gradientPP {
        /*background: rgb(217,168,255);
    background: linear-gradient(56deg, rgba(217,168,255,1) 0%, rgba(190,117,246,1) 55%, rgba(167,77,235,1) 100%);*/
        background: linear-gradient(0deg, rgba(171,188,246,1) 0%, rgba(118,134,191,1) 50%, rgb(54 76 173) 100%);
    }
    .gridNewDesign ul li.gradientSky {
        /*background: linear-gradient(56deg, rgb(36 140 151) 0%, rgb(40 165 159) 55%, rgb(25 166 181) 100%);*/
        background: linear-gradient(0deg, rgba(131,242,230,1) 0%, rgba(110,203,193,1) 50%, rgba(82,147,140,1) 100%);
    }
    .gridNewDesign ul li.gradientMRed {
        /*background: linear-gradient(56deg, rgb(129 20 105) 0%, rgb(114 13 93) 55%, rgb(143 22 61) 100%);*/
        background: linear-gradient(0deg, rgba(115,227,92,1) 0%, rgba(94,182,76,1) 55%, rgb(60 137 15) 100%);
    }
    .gridNewDesign ul li.gradientR {
        /*background: linear-gradient(56deg, rgb(171 32 64) 0%, rgb(187 46 67) 55%, rgb(219 20 20) 100%);*/
        background: rgb(244,144,133);
        background: linear-gradient(0deg, rgba(244,144,133,1) 0%, rgba(228,104,90,1) 55%, rgba(198,69,55,1) 100%);
    }
.gridNewDesign ul li:nth-child(4),
.gridNewDesign ul li:last-child {
    margin-right: 0;
}
.gridNewDesign2 ul li:nth-child(4n) {
    margin-right: 0;
}
.gridNewDesign ul li h2 {
    color: #fff;
    margin: 0 0 10px;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
}
.gridNewDesign ul li p {
    color: #fff;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    margin: 0;
}
/*.graphGirdBlk {
    position: absolute;
    left: 0%;
    top: 100%;
    z-index: 9;    
    background: #fff;
    border-radius: 6px;
    box-shadow: 0px 2px 5px 0px rgb(0 0 0 / 16%);
    display: none !important;
}*/
.graphGirdBlk {
    position: absolute;
    left: -1%;
    top: 100%;
    z-index: 9;
    background: #fff;
    border-radius: 6px;
    box-shadow: 10px 2px 5px 10px rgb(0 0 0 / 16%);
    display: none !important;
}
.gridNewDesign ul li:hover .graphGirdBlk {
    display: block !important;
}
.graphGirdBlk > div > div,
.graphGirdBlk > div > div svg {
    max-width: 100%;
}
.gridNewDesign ul li:last-child .graphGirdBlk {
    left: inherit;
    right: 0%;
}
.gridNewDesign .btn p {
    color: #000;
    font-size: 14px;
}
/*-- Dashboard Style End --*/

/*-- Popup Style Start --*/

@media screen and (min-width: 768px) {
    .MyModalMain .modal-dialog {
        max-width: 600px;
    }
    .MyModalMain .modal-dialog.modal-xl {
        max-width: 800px;
    }
}
.MyModalMain .modal-content,
.progressPanelModal .modal-content {
    position: relative;    
    border: 6px solid #05519f;
}
.MyModalMain .modal-header,
.progressPanelModal .modal-header {
    justify-content: center;
}
.MyModalMain .close,
.progressPanelModal .close {
    position: absolute;
    right: -14px;
    top: -14px;
    background: #000;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    font-size: 18px;
    padding: 0;
}
.MyModalMain .modal-title {
    font-size: 20px;
    color: #f00;
}
.MyModalMain .modal-body h3 {
    text-align: center;
    font-size: 16px;
    text-transform: capitalize;
    color: #004eff;
}
/*-- Popup Style End --*/

/*-- Feedback Style Start --*/
.feedBackMain {
    position: relative;
}
.feedBackMain .homeBtn {
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    margin: 0;
}
.feedBackMain .pageTitle {
    margin: 50px 0 20px;
}
.feedBackMain th {
    background: #0d5daf;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
}
.feedBackMain td {
    font-size: 14px;
}
.feedBackMain .labelControl {
    font-size: 14px;
    margin: 0;
}
/*-- Feedback Style End --*/

/*-- Inspection Report Style Start --*/
.InspectionReportMenu {
    padding: 20px 20px 1px;
    margin-bottom: 15px;
    background: rgb(255 212 2 / 29%);
}
.InspectionReportMenu ul {
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
}
.InspectionReportMenu ul li {
    margin-right: 50px;
    position: relative;
    background: #7e1dbb;
    height: 40px;
    margin-bottom: 15px;
    padding: 0.375rem 1rem;
}
.InspectionReportMenu ul li::before {
    content: "";
    position: absolute;
    height: 0;
    width: 0;
    left: 100%;
    top: 0;
    border: 20px solid transparent;
    border-left: 30px solid #7e1dbb;
}
.InspectionReportMenu ul li:hover::before {
    border-left: 30px solid #ff6300;
}
.InspectionReportMenu ul li .btn {
    background: transparent;
    line-height: 30px;
    padding: 0;    
}
.InspectionReportMenu ul li:hover {
    background: #ff6300;
}
.InspectionReportTable .subTitle {
    font-size: 18px;
}
.InspectionReportTable .table {
    table-layout: fixed;
}
.InspectionReportTable .table thead td {
    background: #0d5daf;
    color: #fff;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    vertical-align: middle;
}
.InspectionReportTable .table tbody td {   
    font-size: 14px;    
    word-wrap: break-word;
}
.InspectionReportLabel {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 4px;
    line-height: 20px;
    color: #001995;
}
.ICInspectionReportMain .table a {
    color: #0043ff;
    font-weight: 500;
    text-decoration: underline;
}
.ICInspectionReportMain .table a:hover {
   text-decoration: none;
   color: #ff6300;
}
/*-- Inspection Report Style End --*/

/*-- Statistics Style Start --*/
.statisticsBlk {
    position: relative;
}
.statisticsBlk .homeBtn {
    position: absolute;
    left: 20px;
    top: 20px;
    margin: 0;
}
.statisticsSessionBlk {
    position: absolute;
    right: 20px;
    top: 20px;
}
.statisticsSessionBlk .input-group {
    align-items: center;
}
.statisticsSessionBlk .labelControl {
    margin: 0 14px 0 0;
    font-size: 14px;
}
.statisticsSessionBlk select {
    margin-right: 15px;
    min-width: 160px !important;
}
.statisticsSessionBlk .btn {
    border-radius: 0.25rem !important;
}
.statisticsTable {
    margin-top: 40px;
}
.statisticsTable .table th {
    background: #0d5daf;
    color: #fff;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    vertical-align: middle;
}
.statisticsTable .table tbody td {
    font-size: 14px;
}
.statisticsTable .table tbody td a {
    color: #ff5e00;
    font-weight: 500;
    text-decoration: underline;
}
.statisticsTable .table tbody td a:hover {
    text-decoration: none;
    color: #0d5daf;
}
.statisticsTable .table tfoot td {
    background: #0d5daf;
    color: #fff;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    vertical-align: middle;
}
.statisticsTable .table tfoot td a {
    color: #fff;
    font-weight: 500;
    font-size: 13px;
    text-decoration: underline;
}
.statisticsTable .table tfoot td a:hover {
    text-decoration: none;
}
.statisticsTable .dataTables_length, 
.statisticsTable .dataTables_filter {
    margin-bottom: 20px;
}
.statisticsTable .dataTables_length label, 
.statisticsTable .dataTables_filter label {
    font-weight: 500;
    line-height: 20px;
    color: #001995;
    font-size: 14px;
    text-transform: capitalize;
}
.statisticsTable .dataTables_length select {
    border-color: #e0e0e0;
    font-size: 14px;
    outline: none;
    box-shadow: none;
    border-radius: 0.25rem !important;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    margin: 0 10px;
}
.statisticsTable .dataTables_filter input[type="search"] {
    border: 1px solid #e0e0e0;
    font-size: 14px;
    box-shadow: none;
    border-radius: 0.25rem !important;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    padding: 0.375rem 0.75rem 0.375rem 0.75rem;
    outline: none;
}
.statisticsTable .dataTables_wrapper .dataTables_info {
    margin: 10px 0;
    font-weight: 500;
    line-height: 20px;
    color: #001995;
    font-size: 14px;
    text-transform: capitalize;
    padding-top: 10px;
}
.statisticsTable .dataTables_paginate {
    margin: 10px 0;
}
.statisticsTable .dataTables_wrapper .dataTables_paginate .paginate_button {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #001995 !important;
} 
.statisticsTable2 .table {
    table-layout: fixed;
}
.statisticsTable .table,
.statisticsTable .table th, 
.statisticsTable .table td {
    border-color: #dcdcdc !important;
}
.statisticsTable .table-bordered>:not(caption)>*>* {
    border-width: 1px;
}
.statisticsBlk .radioGroup .labelControl,
.listOfSchoolPartDetail .radioGroup .labelControl{
    margin: 0 0 0 6px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
}
.affiliatedListFilleter {
    max-width: 800px;
    margin: 0 auto;
}
.affiliatedListMain h4 {
    text-align: center;
    margin: 0 0 20px;
    font-size: 18px;
    color: #b00;
    font-weight: 500;
    text-transform: capitalize;
}
.affiliatedListMain h4 span {
    color: #7e1dbb;
}
.listOfSchoolPartDetail thead th {
    background: #0d5daf;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
}
.listOfSchoolPartDetail tbody td {
    font-size: 14px;
}
.listOfSchoolPartDetail .labelControl {
    font-size: 14px;
    margin: 0;
}

.listOfSchoolPartDetail select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
    padding: 0;
    font-size: 14px;
}

.listOfSchoolPartDetail .form-control[disabled],
.listOfSchoolPartDetail .form-control[readonly],
.listOfSchoolPartDetail fieldset[disabled] .form-control {
    background-color: #eee;
    opacity: 1;
    background: inherit;
    border: none;
    box-shadow: none;
    padding: 0;
    font-size: 14px;
}
.listOfSchoolPartDetail2 span {
    display: none;
}
.listOfSchoolPartDetail2 .subTitle {
    font-size: 16px;
}
.listOfSchoolType {
    margin-bottom: 15px;
    margin-top: 30px;
    justify-content: center;
}
.listOfSchoolType .labelControl {
    font-size: 15px;
}
.listOfSchoolType span {
    font-size: 14px;
    font-weight: 500;
}
/*-- Statistics Style End --*/

/*-- Error Style Start --*/
.errorPage {
    min-height: 395px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.errorPage img {
    max-width: 100%;
    vertical-align: middle;
    margin: 0 0 15px;
}

.errorPage p {
    font-size: 22px;
    font-family: 'Roboto', sans-serif;
    margin: 0 0 15px;
    line-height: 18px;
    color: #000;
}

.errorPage p a,
.errorPage p.telNumber {
    font-size: 16px;
    line-height: 15px;
    color: #0043ff;
}

.errorPage p.telNumber {
    color: #333;
}

/*-- Error Style End --*/

/*-- Existing Part A Style Start --*/
.existingPartAInfoGroup {
    background: #fffedb;
    padding: 10px;
    margin-bottom: 10px;
}
.existingPartAInfoGroup .infoPara {
    font-size: 14px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    color: #0036fb;
    margin: 0 0 8px !important;
    line-height: 18px;
    position: relative;
    padding-bottom: 3px;
    text-decoration: underline;
}
.existingPartAInfoGroup p, 
.existingPartAInfoGroup p b {
    font-size: 14px;
    font-weight: 500;
}
.existingPartAInfoGroup p {
    margin-bottom: 5px;
}
.existingPartAInfoGroup p:last-child {
    margin-bottom: 0;
}
.sectionIncreaseMsg {
    font-size: 14px;
    color: #000;
    font-weight: 500;
}
.tableHeaderBg th {
    background: #0d5daf;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
}
.existingPartAInfoGroup ul {
    padding-left: 20px;
    list-style-type: disclosure-closed;
}
.existingPartAInfoGroup ul li {
    margin-bottom: 5px;
    padding-left: 3px;   
}
.existingPartAInfoGroup ul li,
.existingPartAInfoGroup ul li b {    
    font-size: 14px;
    font-weight: 500;
}
.labelHeighLight {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 4px;
    line-height: 20px;    
    color: #001995;
}
.disclosureMain td {
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
    color: #001995;
}
.disclosureMain .radioGroup .labelControl {
    margin: 0 0 0 6px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
}
.performanceMain .subTitle {
    font-size: 16px;
    margin-top: 15px;
}
.performanceMain h5 {
    font-size: 24px;
    margin: 15px 0 10px;
    color: #008000;
}
.performanceListMain h4 {
    font-size: 18px;
    margin: 0 0 8px;
    color: #0000ff;
    text-align: center;
    font-weight: 600;
}
.voilationTabHead h3, 
.voilationTabHead h2 {
    background: #c7c7c7;
    margin: 0;
    font-size: 18px;
    padding: 10px;
}
/*-- Existing Part A Style End --*/

/*-- Payment Style Start --*/

.preceedPaymentMain {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 2px 5px 0px;
    background: rgb(255, 255, 255);
    padding: 20px 25px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
}
.preceedPaymentMain h2 {
	font-family: Roboto, sans-serif;
	font-size: 18px;
	line-height: 22px;
	color: rgb(6, 51, 162);
	font-weight: 500;
	text-transform: uppercase;
	border-bottom: 1px solid rgb(153, 163, 199);
	padding: 0px 0px 3px;
	margin: 0px 0px 10px;
}
.preceedPaymentMain .table label {
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	color: rgb(0, 25, 149);
	margin: 0;
}
.preceedPaymentMain .table th {
	background: #0d5daf;
	color: #fff;
	font-weight: 500;
	font-size: 14px;
	text-transform: uppercase;
}
/*-- Payment Style End --*/





/*-- 26 Sep 2022 Custom Setting Style Start --*/
.customSetting {
    background: #8ad3fd;
    padding: 5px 0;
    width: 100%;
    border-bottom: 1px solid #5295bb;
}
.customSetting .topbar-logo-txt {
	color: #4e4e4e;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-size: 12px !important;
	border: none;
}
.customSetting .topbar-logo-txt:hover {
	color: #2c97ea;
	text-decoration: underline !important;
}
.customSetting .topbar-logo-txt:focus {
	border: none;
}
.resizeGroup {
	display: inline-flex;
}
.customSetting .resizeStyle {
    border: 1px solid #000;
    color: #000;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin: 0 2px !important;
    padding: 6px 11px;
    box-shadow: none;
    outline: none;
}
.customSetting .resizeStyle:hover {
	background: #2c97ea;
	color: #fff;
	text-decoration: none;
}

.myColorGroup {
    display: inline-flex;
	margin-left: 10px;
}
.myColorGroup button {
	border-radius: 0.25rem;
}
.myLightColorBtn {
	height: 22px;
	width: 21px;
	background-color: #fff;
	border: 1px solid #000;
	margin-left: 5px;
}
.myDarkColorBtn {
	height: 22px;
	width: 21px;
	background-color: #000;
	border: 1px solid #000;
	margin-left: 5px;
}
.headSocialLink {
    margin-left: 15px;
}
.headSocialLink a {
    height: 22px;
    width: 21px;
    background-color: #337ab7;
    border: 1px solid #000;
    margin-left: 5px;
    display: inline-block;
    text-align: center;
    line-height: 22px;
    font-size: 12px;
    border-radius: 0.25rem;
    color: #fff;
}
.headSocialLink a:hover {
	background-color: #2c97ea;
}
.myDarkColor,
.catRedirectBody.myDarkColor,
.myDarkColor .banner,
.myDarkColor .instList,
.myDarkColor .kycForm,
.myDarkColor .loginCard .instList {
    background: #000;
}
body.myDarkColor {
    background: #000 !important;
}
.myDarkColor .customSetting {
    background: #000;
    border-bottom: 1px solid #626262;
}
.myDarkColor .customSetting .topbar-logo-txt,
.myDarkColor .customSetting .resizeStyle {
    color: #ff0;
}
.myDarkColor .customSetting .resizeStyle {
	border: 1px solid #fff;
}
.myDarkColor .myLightColorBtn, .myDarkColor .myDarkColorBtn {
    border-color: #fff;
}
.myDarkColor .catRedirectTitle h5,
.myDarkColor .catRedirectTitle h6,
.myDarkColor .catGridMain .catGrid a,
.myDarkColor .vistorCount h6 span.vistorCuntTitle,
.myDarkColor .panel-default .panel-title a:before,
.myDarkColor .panel-default .panel-title a.collapsed:before,
.myDarkColor .panel-default .panel-title a,
.myDarkColor .panel-default .panel-title a.collapsed,
.myDarkColor .catgroyWise .cat-btn-grad a,
.myDarkColor .landingTitle,
.myDarkColor .vistorCount h6 span,
.myDarkColor .headSocialLink a,
.myDarkColor .banner_text h1, 
.myDarkColor .banner_text h2, 
.myDarkColor .banner_text h5,
.myDarkColor .kycNewDes h3,
.myDarkColor .kycMain .infoPara,
.myDarkColor .kycMain ul li,
.myDarkColor .kycMain .kycTitle,
.myDarkColor .kycForm label,
.myDarkColor .kycForm .form-control[disabled],
.myDarkColor .footerRow h4,
.myDarkColor footer ul li a,
.myDarkColor .loginCard h2,
.myDarkColor .loginCard label,
.myDarkColor .loginCard .infoPara,
.myDarkColor .loginCard ul li,
.myDarkColor .kycNewDes .instList p, 
.myDarkColor .kycNewDes .instList ul li,
.myDarkColor .backInlineLink,
.myDarkColor .subTitle,
body.myDarkColor,
.myDarkColor .labelControl,
.myDarkColor .passwordExamp,
.myDarkColor .formNotification,
.myDarkColor .errorPage p,
.myDarkColor .pageTitle,
.myDarkColor .disclosureMain td {
	color: #ff0;
}
.myDarkColor .errorPage img {
    filter: invert(1);
}
.myDarkColor .subTitle:after {
    background: #ff0;
}
.myDarkColor .regForm {
    background: #303030;
}
.myDarkColor .catGridMain .catGrid a:hover {
	color: #006091 !important;
}
.myDarkColor .accordionIcon a:before, 
.myDarkColor .accordionIcon a.collapsed:before {
	color: #ff0 !important;
}
.myDarkColor .cbp-ntaccordion h4.panelNewColor {
	background-color: #000 !important;
}
.myDarkColor .cardMain,
.myDarkColor .loginCard .content-list {
    background: #303030;
}
.myDarkColor .banner,
.myDarkColor .kycMain .kycTitle,
.myDarkColor .loginCard h2 {
	border-bottom: 1px solid #626262;
}
.myDarkColor .footerCont {
    background: #303030;
    color: #ff0;
}
.myDarkColor .inlineLink {
	color: #ff0 !important;
}
.myDarkColor .inlineLink:hover,
.myDarkColor .loginCard .instList a:hover,
.myDarkColor a:hover {
	color: #00aaff !important;
}
.customSettingFooter {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    background-color: #8ad3fd;
    padding: 8px 0 5px;
    border-top: 1px solid #5295bb;
}
.customSettingFooter p {
    color: #1a45bf;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 13px;
    margin: 0;
}
.customSettingFooter a {
    color: #1a45bf;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 13px;
    position: relative;
    padding-right: 15px;
    margin-right: 15px;
}
.customSettingFooter a:last-child {
	margin-right: 0;
	padding-right: 0;
}
.customSettingFooter a:last-child::after{
	display: none;
}
.customSettingFooter a:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    background: #4b817b;
    width: 2px;
    height: 100%;
}
.customSettingFooter a:hover {
	text-decoration: underline !important;
}
.myDarkColor .customSettingFooter {
    background-color: #000;
    border-top: 1px solid #626262;
}
.myDarkColor .customSettingFooter p,
.myDarkColor .customSettingFooter a {
	color: #ff0;
}

.customFooterMain {
    background: #191919;
    padding: 8px 15px;
}
.customFooterMain .copyWrite {
	background: inherit;
	padding: 0 !important;
	text-align: left;
}
.customFooterMain .termCondition a {
    color: grey;
	position: relative;
	padding-right: 15px;
    margin-right: 15px;
}
.customFooterMain .termCondition a:hover {
	color: #00aaff !important;
}
.customFooterMain .termCondition a::after {
	content: "";
    position: absolute;
    right: 0;
    top: 0;
    background: #4b817b;
    width: 2px;
    height: 100%;
}
.customFooterMain .termCondition a:last-child {
	margin-right: 0;
	padding-right: 0;
}
.customFooterMain .termCondition a:last-child::after{
	display: none;
}
.myDarkColor .customFooterMain .termCondition a {
	color: #ff0;
}
.myDarkColor .existingPartAInfoGroup {
    background: #000000;
}
.myDarkColor .table {
    color: #ff0;
}
@media screen and (max-width: 1440px) {
	.catRedirectMain {
		margin-bottom: 70px;
	}
}


/*-- 26 Sep 2022 Custom Setting Style End --*/

/*--- Chairman Style Start --*/
.pageTitle {    
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    line-height: 22px;
    margin: 0 0 20px;
    color: #0633a2;
    text-decoration: underline;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
}
.dashboardGrid {
    margin-bottom: 26px;
    color: #070bbf;
    width: 100%;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    min-height: 160px;
    border-radius: 6px;
    box-shadow: 0px 2px 3px 2px rgb(0 0 0 / 16%);
}
.dashCatTitle {
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    margin: 0 0 10px;
    letter-spacing: 1px;
    line-height: 22px;
}
.dashboardGrid h6 {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0 0 10px;
}
.dashboardGrid p {
    margin: 0;
    font-size: 15px;
    font-style: italic;
}
.dashboardGridB {
    background: rgb(106,116,255);
    background: linear-gradient(56deg, rgba(106,116,255,1) 0%, rgba(12,72,130,1) 55%, rgba(93,54,172,1) 100%);
}

.dashboardGridP {
    background: rgb(219,1,207);
    background: linear-gradient(56deg, rgba(219,1,207,1) 0%, rgba(215,6,203,1) 55%, rgba(235,98,255,1) 100%);
}

.dashboardGridO {
    background: rgb(255,156,90);
    background: linear-gradient(56deg, rgba(255,156,90,1) 0%, rgba(255,141,65,1) 55%, rgba(255,152,85,1) 100%);
}

.dashboardGridG {
    background: rgb(95 191 2);
    /*background: linear-gradient(56deg, rgb(102 197 10) 0%, rgb(76 155 0) 55%, rgb(61 124 0) 100%);*/
    background: linear-gradient(0deg, rgb(71 212 241) 0%, rgb(91 228 255) 55%, rgb(188 235 255) 100%);
}

.dashboardGridPP {
    background: rgb(217,168,255);
    background: linear-gradient(56deg, rgba(217,168,255,1) 0%, rgba(190,117,246,1) 55%, rgba(167,77,235,1) 100%);
}
.dashboardGridR {
    background: rgb(236,41,71);
    background: linear-gradient(56deg, rgba(236,41,71,1) 0%, rgba(210,16,46,1) 55%, rgba(172,8,34,1) 100%);
}
.adminDasSearchItem .actionBtn {
    background: #fff700;
    color: #000;
    font-size: 14px;
    padding: 0.5rem 1.5rem;
    margin-top: 10px;
    border: 1px solid #444;
}
.adminDasSearchItem .actionBtn:hover {
    background: #ff5b1b;
    color: #fff;
}
.SubDashboardGrid {
    color: #fff;
    width: 100%;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 20px 12px;
    border-radius: 6px;
    box-shadow: 0px 2px 3px 2px rgb(0 0 0 / 16%);
}
.SubDashboardGrid .dashCatTitle {
    font-size: 14px;
    margin: 0;
}
.SubDashboardGrid .actionBtn {
    padding: 0.25rem 0.75rem;
    font-size: 13px;
    margin-top: 6px;
}
.subTitle {
    font-size: 14px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    color: #ff6300;
    margin: 0 0 10px;
    line-height: 18px;
    position: relative;
    padding-bottom: 3px;
}
.subTitle:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background: #ff6300;
    width: 100%;
    height: 1px;
}
.subTitle2{    
    padding-bottom: 0;
    margin: 0;
}
.subTitle2::after{
    display: none;
}
.subTitle3 {
    padding-bottom: 0;
}
.tileSectionTitle {
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 10px;
    line-height: 20px;
    color: #001995;
}
/*--- Chairman Style End --*/
/*-- Statistics Style Start --*/
.statisticsBlk {
    position: relative;
}
.statisticsBlk .homeBtn {
    position: absolute;
    left: 20px;
    top: 20px;
    margin: 0;
}
.statisticsSessionBlk {
    position: absolute;
    right: 20px;
    top: 20px;
}
.statisticsSessionBlk .input-group {
    align-items: center;
}
.statisticsSessionBlk .labelControl {
    margin: 0 14px 0 0;
    font-size: 14px;
}
.statisticsSessionBlk select {
    margin-right: 15px;
    min-width: 160px !important;
}
.statisticsSessionBlk .btn {
    border-radius: 0.25rem !important;
}
.statisticsTable {
    margin-top: 20px;
}
.statisticsTable .table th {
    background: #0d5daf;
    color: #fff;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    vertical-align: middle;
}
.statisticsTable .table tbody td {
    font-size: 14px;
    word-break: break-word;
}
.statisticsTable .table tbody td a {
    color: #ff5e00;
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
}
.statisticsTable .table tbody td a:hover {
    text-decoration: none;
    color: #0d5daf;
}
.statisticsTable .table tbody td ul {
    padding-left: 20px;
    margin: 0;
    list-style-type: disclosure-closed;
}
.statisticsTable .table tfoot td {
    background: #0d5daf;
    color: #fff;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    vertical-align: middle;
}
.statisticsTable .table tfoot td a {
    color: #fff;
    font-weight: 500;
    font-size: 13px;
    text-decoration: underline;
}
.statisticsTable .table tfoot td a:hover {
    text-decoration: none;
}
.statisticsTable .dataTables_length, 
.statisticsTable .dataTables_filter {
    margin-bottom: 20px;
}
.statisticsTable .dataTables_length label, 
.statisticsTable .dataTables_filter label {
    font-weight: 500;
    line-height: 20px;
    color: #001995;
    font-size: 14px;
    text-transform: capitalize;
}
.statisticsTable .dataTables_length select {
    border-color: #e0e0e0;
    font-size: 14px;
    outline: none;
    box-shadow: none;
    border-radius: 0.25rem !important;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    margin: 0 10px;
}
.statisticsTable .dataTables_filter input[type="search"] {
    border: 1px solid #e0e0e0;
    font-size: 14px;
    box-shadow: none;
    border-radius: 0.25rem !important;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    padding: 0.375rem 0.75rem 0.375rem 0.75rem;
    outline: none;
}
.statisticsTable .dataTables_wrapper .dataTables_info {
    margin: 10px 0;
    font-weight: 500;
    line-height: 20px;
    color: #001995;
    font-size: 14px;
    text-transform: capitalize;
    padding-top: 10px;
}
.statisticsTable .dataTables_paginate {
    margin: 10px 0;
}
.statisticsTable .dataTables_wrapper .dataTables_paginate .paginate_button {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #001995 !important;
} 
.statisticsTable .table {
    table-layout: fixed;
}
.statisticsTable .table,
.statisticsTable .table th, 
.statisticsTable .table td {
    border-color: #dcdcdc !important;
}
.statisticsTable .table th, 
.statisticsTable .table td {
    padding: 0.5rem 0.5rem;
}
.statisticsTable .table-bordered>:not(caption)>*>* {
    border-width: 1px;
}
.statisticsBlk .radioGroup .labelControl,
.listOfSchoolPartDetail .radioGroup .labelControl{
    margin: 0 0 0 6px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
}
.affiliatedListFilleter {
    max-width: 800px;
    margin: 0 auto;
}
.affiliatedListMain h4 {
    text-align: center;
    margin: 0 0 20px;
    font-size: 18px;
    color: #b00;
    font-weight: 500;
    text-transform: capitalize;
}
.affiliatedListMain h4 span {
    color: #7e1dbb;
}
.listOfSchoolPartDetail thead th {
    background: #0d5daf;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
}
.listOfSchoolPartDetail tbody td {
    font-size: 14px;
}
.listOfSchoolPartDetail .labelControl {
    font-size: 14px;
    margin: 0;
}

.listOfSchoolPartDetail select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
    padding: 0;
    font-size: 14px;
}

.listOfSchoolPartDetail .form-control[disabled],
.listOfSchoolPartDetail .form-control[readonly],
.listOfSchoolPartDetail fieldset[disabled] .form-control {
    background-color: #eee;
    opacity: 1;
    background: inherit;
    border: none;
    box-shadow: none;
    padding: 0;
    font-size: 14px;
}
.listOfSchoolPartDetail2 span {
    display: none;
}
.listOfSchoolPartDetail2 .subTitle {
    font-size: 16px;
}
.listOfSchoolType {
    margin-bottom: 15px;
    margin-top: 30px;
    justify-content: center;
}
.listOfSchoolType .labelControl {
    font-size: 15px;
}
.listOfSchoolType span {
    font-size: 14px;
    font-weight: 500;
}
table.dataTable thead .sorting {
    background-image: url("../images/icon/sort_both.png") !important;
}

table.dataTable thead .sorting_asc {
    background-image: url("../images/icon/sort_asc.png") !important;
}

table.dataTable thead .sorting_desc {
    background-image: url("../images/icon/sort_desc.png") !important;
}

table.dataTable thead .sorting_asc_disabled {
    background-image: url("../images/icon/sort_asc_disabled.png") !important;
}

table.dataTable thead .sorting_desc_disabled {
    background-image: url("../images/icon/sort_desc_disabled.png") !important;
}
.table-responsive.tableFixHead {
    max-height: 500px;   
    overflow-y: auto;
}
.tableFixHead thead {
    position: sticky; /* make the table heads sticky */
    top: -1px; /* table head will be placed from the top of the table and sticks to it */
}
/*-- Statistics Style End --*/

/*-- Part A Style Start --*/
.prefeilRow span {    
    font-size: 13px;
    font-weight: 500;
}
.subTitle2.mb__6{
    margin-bottom: 6px;
}
.linklabel{
    font-size: 13px;
    color: #2e35ff;
    font-weight: 500;
    text-decoration: underline !important;
}
.linklabel:hover{
    text-decoration: none !important;
    color: #2e35ff;
}
.star_new{
    color: red;
}
.partAForm p {
    margin: 0;
}
.partAForm .labelControl {
    font-size: 14px;
    margin: 0 0 4px;
}
.labelControlNew {
    color: #c600c9;
    font-size: 15px;
    margin: 0 0 8px;
}
.partAForm .labelControlValue {
    margin: 0;
    font-size: 14px;
}
.partAForm .form-control:disabled,
.partAForm .form-control[readonly],
.partAForm .form-select:disabled,
.disabledInputBox {
    background-color: #f5f5f5;
}
.radioGroup div {
    display: inline-flex;
    align-items: center;
}
.radioGroup div:not(:last-child) {
    margin-right: 20px !important;
}
.partAForm .radioGroup .labelControl {
    margin: 0 0 0 6px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
}
.partAForm .form-group {
    align-items: flex-end;
}
.customBorderTop {
    margin-top: 40px;
    border-top: 1px solid #dee2e6;
    padding-top: 15px;
}
.UploadInfoGroup {
    background: #fffedb;
    padding: 10px;
}
.UploadInfoPara {
    font-size: 14px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    color: #0087fb;
    margin: 0 0 10px;
    line-height: 18px;
    position: relative;
    padding-bottom: 3px;
}
.UploadInfoPara {
    font-size: 14px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    color: #0036fb;
    margin: 0 0 8px !important;
    line-height: 18px;
    position: relative;
    padding-bottom: 3px;
    text-decoration: underline;
}
.UploadInstList {
    margin: 0;
    padding-left: 20px;
    list-style-type: disclosure-closed;
}
.UploadInstList li, 
.UploadInstList li b {
    font-size: 14px;    
    font-weight: 500;
}
.UploadInstList li {
    margin-bottom: 5px;
}
.UploadInstList li:last-child {
    margin-bottom: 0px;
}
.uploadTab .table th {
    background: #0d5daf;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
}
.uploadTab2 .table {
    border-color: #3e5d7c;
}
.uploadTab2 .table th {
    background: #2f445a;
}
.contentBar .uploadTab td {
    font-size: 14px;
}
.uploadTab p a {
    color: #0036fb;
    font-weight: 500;
}
.uploadTab p a:hover {
    color: #fb6400;
    text-decoration: underline;
}
.uploadTab .actionTab {
    vertical-align: middle;
}
.uploadDigiSign ul {
    margin: 0 0 15px;
    padding-left: 20px;
    list-style-type: auto;
}
.uploadDigiSign ul li {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}
.uploadDigiSign ul li:last-child {    
    margin-bottom: 0px;
}
.uploadDigiSignInstruction {
    font-size: 14px;
    font-weight: 500;
    color: #f00;
    font-style: italic;
}
.inputControlHeight {
    min-height: 35px;
}
.table-bordered.advisoryTable>:not(caption)>* {
    padding: 0.5rem 0.5rem;
    border-width: 1px;
}
.table-bordered.advisoryTable .form-control {
    background-color: #fff;
}
.table-bordered.advisoryTable .textControl {
    border-width: 1px;
}
.table.advisoryTable3 > :not(:last-child) > :last-child > * {
    border-color: #e0e0e0;
}
.table.advisoryTable .actionBtn {
    padding: 0.375rem 0.75rem !important;
    background: #0d5daf !important;
}
.table.advisoryTable .actionBtn:hover {
    background: #fb4b07 !important;
}
.adminPartAForm .labelControl {
    font-size: 14px;
    margin: 0;
}
.contentBar .adminPartAForm td {
    font-size: 14px;
}
.contentBar .adminPageTitle {
    margin: 0 0 20px;
    text-align: center;
}
.partBDetailsLink {
    color: #ef00ff;
    font-weight: 500;
    text-decoration: underline;
    margin-left: 5px;
    font-size: 13px;
}
.partBDetailsLink:hover {
    color: #ff6600;    
    text-decoration: none;    
}
/*-- Part A Style End --*/
.AcademicMain .radioGroup .labelControl {
    margin: 0 0 0 6px;
}
.mailSendBtn {
    position: absolute;
    right: 0;
    top: 60px;
}

/* .compliancePagination {
	background: #ddd;
}
.compliancePagination .table-responsive {
    height: inherit !important;
}
.compliancePagination .table {
    border: 1px solid #dee2e6;
} */
.compliancePagination .pagination {
    display: flex;
    justify-content: center;
    margin: 5px 0 10px;
    align-items: center;
}
.compliancePagination .pagination ul {
	margin: 0px;
    padding-left: 1rem;
}
.compliancePagination .pagination ul li {
    margin-right: 10px;
}
.compliancePagination .pagination ul li:last-child {
    margin-right: 0;
}
.compliancePagination .pagination .pagination>.active>a, 
.compliancePagination .pagination .pagination>.active>a:focus, 
.compliancePagination .pagination .pagination>.active>a:hover, 
.compliancePagination .pagination .pagination>.active>span, 
.compliancePagination .pagination .pagination>.active>span:focus, 
.compliancePagination .pagination .pagination>.active>span:hover {
    display: inline-block;
    color: #fff;
    cursor: default;
    background-color: #337ab7;
    text-align: center;
    line-height: 1.42857143;
    padding: 7px 22px;
    border-radius: 25px;
    font-size: 12px;
    text-transform: uppercase;
}
.compliancePagination .pagination ul li a {
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #ffffff;
    text-decoration: none;
    background-color: #0d5daf;
    border-radius: 50%;
}
.compliancePagination .pagination ul li a:hover {
    background-color: #da721e;
}

.printPDFIcon {
    position: absolute;
    right: 58px;
    top: 56px;
}
.coloryellow {
    color: #acaf00;
}

.colorgreen {
    color: green;
}

.colorred {
    color: red;
}


.MenuSideBar ul li.has-submenu.collapseMain:hover .submenu {
    display: block;
}



/*-- SubMenu Style Start --*/
.subHeaderMain {
    background-color: #325e95;
}
.subHeaderMain .bg-light {
    background-color: transparent !important;
    padding: 0;
}
.subHeaderMain .navbar-nav { 
    flex-wrap: wrap;
}
.subHeaderMain .nav-item { 
    position: relative;
}

.subHeaderMain .nav-item::after {
    position: absolute;
    right: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: #0e468d;
    content: "";
}
.subHeaderMain .nav-item:last-child::after {
    display: none;
}

.subHeaderMain .nav-item:hover .dropdown-menu {
    display: block;
    max-height: 320px;
    overflow-y: auto;
}

.subHeaderMain .nav-item .dropdown-menu::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.13);
    background-color: #e1e1fa;
    border-radius: 10px;
}

.subHeaderMain .nav-item .dropdown-menu::-webkit-scrollbar {
    width: 12px;
    border-radius: 10px;
    background-color: #F5F5F5;
}
.subHeaderMain .nav-item .dropdown-menu::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #325e95;
}
.subHeaderMain .navbar-light .navbar-nav .nav-item .nav-link {
    font-weight: 500;
    color: #fff;
    line-height: 18px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    display: block;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    padding: 18px 24px;
    text-align: left;
}
@media screen and (min-width: 992px) {
    .subHeaderMain .navbar-light .navbar-nav .nav-item:first-child .nav-link {
        padding-left: 0;
    }
    .subHeaderMain .navbar-light .navbar-nav .nav-item:last-child .nav-link {
        padding-right: 0;
    }
}

.subHeaderMain .dropdown-menu {
    box-shadow: 0px 2px 3px 2px rgb(0 0 0 / 16%);
    padding: 0;
    top: 98%;
    margin: 0;
    min-width: 320px;
}
.subHeaderMain .dropdown-menu li {
    margin: 0 0 3px;
    border-bottom: 1px solid #d5d5d5;
}
.subHeaderMain .dropdown-menu li:last-child {
    margin: 0;
    border-bottom: none;
}
.subHeaderMain .dropdown-menu li a {
    padding: 10px 14px !important;
    background: #f9f9f9;
    font-size: 13px !important;
    color: #1b00ff !important;
}
.subHeaderMain .dropdown-menu li a:hover {
    background-color: #224c81;
    color: #fff !important;
}
.MenuSideBar ul li.has-submenu.collapseMain:hover .submenu {
    display: block;
}
@media screen and (max-width: 1640px) {
    .subHeaderMain .navbar-light .navbar-nav .nav-item .nav-link {        
        font-size: 13px;        
    }
}
@media screen and (max-width: 1560px) {
    .subHeaderMain .navbar-light .navbar-nav .nav-item .nav-link {        
        font-size: 13px;
        padding: 14px 16px;    
    }
}
@media screen and (max-width: 1439px) {
    .subHeaderMain .navbar-light .navbar-nav .nav-item .nav-link {        
        font-size: 12px;      
        padding: 14px 11px;       
    }
}
/*-- SubMenu Style End --*/


.gridNewDesign3 ul li.gradientB {
    /* background: linear-gradient(0deg, rgba(214,230,72,1) 0%, rgba(143,153,41,1) 55%, rgb(122 131 44) 100%); */
    background: linear-gradient(0deg, rgb(71 212 241) 0%, rgb(91 228 255) 55%, rgb(218 244 255) 100%);
}
.gridNewDesign3 ul li h2 {
    color: #070bbf;
    margin: 0 0 10px;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
}
.gridNewDesign3 .actionBtn {
    background: #ffffff;
    color: #000;
    font-size: 14px;
    padding: 0.5rem 1.5rem;
    margin-top: 10px;
    border: 1px solid #444;
}
.gridNewDesign3 .actionBtn:hover {
    background: #ff5b1b;
    color: #fff;
}
.pageTitleVSK {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    line-height: 22px;
    margin: 0 0 20px;
    color: #0633a2;
    text-decoration: underline;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
}
.cursorNone {
    cursor: inherit !important;
}
.percentageTitle {
    font-weight: 600 !important;
}
.percentageBlk {
    position: relative;
    margin-top: 10px;
}
.percentageBtn {
    margin-top: 0 !important;
    border: none !important;
    box-shadow: -2px 1px 4px 2px rgb(0 0 0 / 16%) !important;
    border-radius: 0.25rem 0 0 0.25rem !important;
    font-size: 15px !important;
    font-weight: 600 !important;
}
.dataPercentage {
    background: #1cb700;
    line-height: 24px;
    border-radius: 0 0.25rem 0.25rem 0;
    color: #fff;
    box-shadow: 0px 1px 4px 2px rgb(0 0 0 / 16%) !important;
    padding: 0.5rem 0.85rem;
    font-size: 13px;
}

.myPagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    flex-direction: column;
}
.paginationCount {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}
.paginationControl a {
    font-size: 16px;
    font-weight: 600;
    color: #0058c7;
}
.paginationControl a:hover {
    text-decoration: underline;
}
.paginationControl a:not(:last-child) {
    margin-right: 12px;
}

.paginationControl input:not(:last-child) {
    margin-right: 10px;
}
.firstLastIcon {
    border-radius: 50%;
    padding: 0px !important;
    width: 100px;
    height: 32px;
    border: none;
    background-color: #0d5daf;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
}
.nextPreIcon {
    border-radius: 50%;
    padding: 0px !important;
    width: 100px;
    height: 32px;
    border: none;
    background-color: #0d5daf;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
}
.paginationControl input:hover {
    background-color: #2a82db;
}
.disableNextPreIcon {
    display: inline-block;
    line-height: 32px;
    text-align: center;
    color: #fff !important;
    font-size: 13px !important;
    pointer-events: none;
    background-color: #8d9cab;
}
.disableNextPreIcon:hover {
    text-decoration: none !important;
}


.sarasLandingMain img {
    height: 100vh;
    width: 100%;
}
.sarasLandingBtn {
    position: absolute;
    bottom: 50px;
    right: 12%;
}

/*.sarasLandingBtn .btn {
    cursor: pointer;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    color: #02145c;
    font-weight: 500;
}*/
    .sarasLandingBtn .btn {
        background-color: #ff0;
        color: #000;
        font-weight: 600;
        box-shadow: 0 1px 14px 0 rgb(0 255 0 / 78%) !important;
        border: 4px solid #ff00c8;
        padding: 10px 20px;
        border-radius: 25px;
        cursor: pointer;
    }
        .sarasLandingBtn .btn:hover {
            background-color: #fff;
            border-color: #ff9d00;
        }

/*.gridNewDesign ul li:nth-last-child(-n+3):hover .graphGirdBlk {
    top: inherit;
    bottom: 0;
}*/

.statisticsTable.disbaleTableLink .table tbody td a {
    pointer-events: none;
    text-decoration: none;
    color: #212529;
    font-weight: 400;
}
.adminCloseSchool h4 {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 6px;
    line-height: 20px;
    color: #df5400;
    position: relative;
    padding-bottom: 2px;
}
.adminCloseSchool h4:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background: #ff6000;
    width: 100%;
    height: 1px;
}


.workListTab {
    display: flex;
    justify-content: space-between;
    align-items: self-start;
}
.workListTabIteam {
    background: #ffb20687;
    padding: 15px;
    width: 24%;
    min-height: 335px;
}
.workListTabIteam .pageTitle {
    color: #484848;
    text-align: left !important;
    font-size: 16px;
    padding: 0 0 5px;
    border-color: #325e95;
    font-weight: 600;
}
    .workListTabIteam ul {
        padding: 0;
        padding-left: 20px;
        margin: 0;
        list-style-type: disclosure-closed;
        color: #325e95;
    }
.workListTabIScroll{
/*max-height: 250px;*/
/*overflow-y: auto;*/
}
.workListTabIteam ul::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.13);
    background-color: #e1e1fa;
    border-radius: 10px;
}

.workListTabIteam ul::-webkit-scrollbar {
    width: 8px;
    border-radius: 10px;
    background-color: #F5F5F5;
}

.workListTabIteam ul::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #325e95;
}
.workListTabIteam ul li:not(:last-child) {
    margin: 0 0 6px;
}
.workListTabIteam ul li a {
    font-size: 15px;
    color: #cd0053;
    font-weight: 600;
}
.workListTabIteam ul li a:hover {
    text-decoration: underline;
    color: #025fd7;
}
.workListTabIteam ul li a span {
    color: #002ba9;
}

.workListTabIteam .text-right a {
    margin-top: 10px;
    font-size: 15px;
    color: #1e00ff;
    text-decoration: underline;
    /*animation: blink 1s linear infinite;*/
    /*animation-name: blink;    
    animation-duration: 4s;
    animation-timing-function: ease-in;
    animation-iteration-count: Infinite;*/
}

/*@keyframes blink {
    0% {
        opacity: 0;
    }

    50% {
        opacity: .5;
    }

    100% {
        opacity: 1;
    }
}*/
