:root{
    --rv-primary: #0e28ac;
    --rv-primary-dark: #071f97;
    --rv-secondary:#222222;
    --rv-white:#ffffff;
    --rv-black:#222222;
}


@media only screen and (min-width: 768px) {
    .dropdown[data-visible="true"] {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
    .dropdown[data-visible="false"] {
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }
}

#mobileNavControls {
    background-image: url('assets/images/menu.svg');
}

#mobileNavControls[aria-expanded="true"] {
    background-image: url('assets/images/close.svg');
}

#mobileNav[data-visible="true"] {
    transform: translateX(0%);
}

.accordianInfo[data-visible="true"] {
    opacity: 1;
}

.accordianInfo {
    opacity: 0;
    padding: 1rem 0;
    overflow: hidden;
    will-change: max-height;
    max-height: 0;
    transition: all 0.3s ease-out;
}

/* CUSTOME CSS BY SUMIT (25-JUNE-24) */
button {
    background-color: var(--rv-primary) !IMPORTANT;
    color: var(--rv-white) !IMPORTANT;
    padding: 10px 20px !IMPORTANT;
    border-radius: 10px;
}
button:hover{
    background-color: var(--rv-primary-dark);
}
.btn-primary{
    background-color: var(--rv-primary);
    color: var(--rv-white);
    padding: 10px 20px;
    border-radius: 10px;
}
.btn-primary:hover{
    background-color: var(--rv-primary-dark);
}


.form-control {
    display: block;
    background: #efefff;
    border: 2px solid #efefff;
    width: 100%;
    height: 45px;
    border-radius: 6px;
    padding: 5px 8px !IMPORTANT;
    margin-bottom: 10px;
}
.form-control:focus {
    border: 2px solid var(--rv-primary) !important;
    outline: none !important;
}
textarea.form-control {
    height: 80px;
}
#forgetPwdFormVerify input {
    display: block;
    background: #efefff;
    border: 2px solid #efefff;
    width: 100%;
    border-radius: 6px;
    padding: 5px 8px !IMPORTANT;
}
#forgetPwdFormVerify input:focus {
    border: 2px solid var(--rv-primary) !important;
}

#forgetPwdFormVerify button {
    padding: 5px 5px !IMPORTANT;
    border-radius: 10px;
    display: inline-block;
    margin: 5px !important;
    float: left;
}

.captcha-group .btnRefresh {
    background: #222 !important;
}
.captcha-group #captcha {
    width: 100%;
    height: 45px;
    padding: 10px;
    background: #efefff;
    border-radius: 5px;
}


.navbar-main {
    top: 48px;
}
.navbar-main.bg-white {
    top: 0;
}
.navbar-main .rv-navbar-menu a {
    font-weight: 600;
    font-size: 18px;
}
.navbar-main.bg-white .rv-navbar-menu a {
    color: #444;
}
.navbar-main .logo-title{
    font-size: 26px;
}
.navbar-main.bg-white .logo-title{
    color: #444;
}
.bg-light{
    background-color: #efefff;
}

/* MODAL */
.rv-modal-open {
    overflow: hidden !important;
}
.rv-modal-open .ticker_sticky {
    position: relative;
    z-index: -3;
}
.rv-modal-open footer.footer_main {
    position: relative;
    z-index: -3;
}
.rv-modal-open .rv-modal {
    z-index: 99;
    visibility: visible;
    pointer-events: visible;
}
.rv-modal-open .rv-modal .bg-show {
    background: rgba(0, 0, 0, 0.5803921569);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.rv-modal {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.rv-modal .close-i {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    line-height: 30px;
    font-size: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: unset;
    background: var(--rv-primary);
    color: #fff;
    border-radius: 100%;
    font-weight: 300;
}
.rv-modal .cm-body {
    max-width: 400px;
    width: 100%;
    background-color: var(--rv-white);
    border-radius: 3px;
    position: relative;
    z-index: 999;
}
.rv-modal .cm-body .m-hadding {
    background-color: var(--color-theme);
    border-radius: 3px 3px 0 0;
    padding: 10px 15px;
    position: absolute;
    right: 0;
    top: 0;
}
.rv-modal .cm-body .m-hadding h4 {
    margin-bottom: 0;
    color: var(--rv-white);
}
.rv-modal .cm-body .cm-cards {
    padding: 20px;
}

/* TICKER */
.ticker_section {
    padding: 10px 0;
    background: #0e28ac;
  }
    .ticker_section .tickers {
    padding: 0;
    list-style-type: none;
    display: flex;
    justify-content: space-around;
    align-content: center;
    align-content: center;
    margin: 0;
    }
  .tickers .ticker_item {
      position: relative;
      border-radius: 0px;
      padding: 0px 7px;
      display: flex;
      background: transparent;
      text-align: center;
      margin: 0px 2px;
      justify-content: space-around;
      align-items: center;
      width: calc(100% + 40px);
  }
  .tickers .ticker_item::after {
    content: "";
    position: absolute;
    background: #243ec3;
    width: 80%;
    height: 100%;
    border-radius: 30px;
    top: 0;
    left: 0;
  }
  .tickers .ticker_item:last-child {
    border: none;
  }
  
  
  .tickers .ticker_item .name {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    letter-spacing: 1px;
    color: #eeeefb;
    position: relative;
    z-index: 9;
  }
  .tickers .ticker_item .price {
    display: block;
    font-size: 15px;
    line-height: 18px;
    color: #fff;
    margin: 0px 8px;
    position: relative;
    z-index: 9;
  }
  .tickers .ticker_item .difference_percent {
    position: relative;
    color: #fff;
    display: block;
    line-height: 18px;
    font-size: 13px;
    margin-top: 0px;
    background: #51c948;
    padding: 5px 25px 5px 5px;
    border-radius: 30px;
    z-index: 9;
  }
  .tickers .ticker_item .difference_percent::after {
    content: "\F144";
    font-family: 'bootstrap-icons';
    position: absolute;
    font-size: 18px;
    bottom: 8px;
    background-size: contain;
    background-position: center;
    width: 15px;
    height: 15px;
    background-repeat: no-repeat;
    right: 5px;
    font-size: 15px;
  }
  .tickers .ticker_item .difference_percent.negative {
    color: #fff;
    background-color: #e91f1f;
  }
    .tickers .ticker_item .difference_percent.negative::after {
      content: "\F11E";
  }
    /* TICKER */


    .tool-box {
        border: 1px solid var(--rv-primary);
        text-align: center;
        padding: 30px;
        border-radius: 15px;
        transition: all 0.3s;
    }
    .tool-box:hover {
        background-color: var(--rv-primary);
        transition: all 0.3s;
    }
    .tool-box .icon img {
        margin: 0 auto 20px auto;
    }
    .tool-box:hover .icon img {
        filter: brightness(99);
    }
    .tool-box .text h4 {
        font-size: 28px;
        font-weight: 700;
        color: var(--rv-primary);
        transition: all 0.3s;
    }
    .tool-box:hover .text h4,
    .tool-box:hover .text a {
        color: var(--rv-white);
        transition: all 0.3s;
    }


    /* TAB */
.rvTab {
    padding: 0;
    margin: 0;
    display: flex;
}
.rvTab .tab_item {
    display: inline-block;
    width: 100%;
    margin: 0 5px;
}
.rvTab .tab_item .tab_link {
  background-color: var(--rv-primary);
  display: block;
  padding: 10px 5px;
  text-align: center;
  color: #fff;
  border: 1px solid var(--rv-primary);
  width: 100%;
}
.rvTab .tab_item .tab_link.activelink {
    display: block;
    background-color: var(--rv-secondary) !IMPORTANT;
    color: #fff;
    border: 1px solid var(--rv-secondary);
}
.rvTabContent .tab_list{
    width: 100%;
    padding: 10px;        
}
.rvTabContent .tab_list .tab_items {
    display: flex;
    justify-content: space-between;
}
.rvTabContent .tab_list.hide{
    display: none;
}

/* App Section */
.mobile_tabs {
    list-style-type: none;
    padding: 0;
  }
  .mobile_tabs .mobileapp-tab-item {
    background: #efefff;
    margin-bottom: 15px;
    border-radius: 8px;
    display: block;
    padding: 18px 20px;
    text-decoration: none;
  }
  .mobile_tabs .mobileapp-tab-item.active,
  .mobile_tabs .mobileapp-tab-item:hover{
    background:  var(--rv-primary);
  }
  .mobile_tabs .mobileapp-tab-item.active h4,
  .mobile_tabs .mobileapp-tab-item.active p,
  .mobile_tabs .mobileapp-tab-item:hover h4,
  .mobile_tabs .mobileapp-tab-item:hover p{
    color:  var(--rv-white);
  }
  .mobile_tabs .mobileapp-tab-item.active img,
  .mobile_tabs .mobileapp-tab-item:hover img {
    filter: brightness(999);
  }
  .mobile_tabs .mobileapp-tab-item 
   .icon-title {
      display: flex;
      margin-bottom: 5px;
  }
  .mobile_tabs .mobileapp-tab-item .icon-title h4 {
    font-size: 24px;
    font-weight: 600;
}
  .mobile_tabs .mobileapp-tab-item .icon-title img {
    width: 40px;
    margin-right: 10px;
  }
  .mobile_tabs .mobileapp-tab-item 
   .icon-title p{
    margin: 0;
   }
  
   .mobile_tabs_content {
    text-align: center;
  }
  .mobile_tabs_content img {
    width: 56%;
    margin: -15px auto 0 auto;
}

  .download-apps a {
    display: inline-block;
}
  .download-apps img {
      margin: 20px 5px;
      transition: all 0.3s ease-in-out;
  }
  .download-apps a:hover img {
      transition: all 0.3s ease-in-out;
      transform: scale(1.05);
  }

  .diclaimer-amfi {
    margin-top: 60px;
}
.diclaimer-amfi .amfi-item {
    display: flex;
    align-items: center;
    height: 85px;
    margin: 0 25px;
}
.diclaimer-amfi .amfi-item span {
    margin-left: 15px;
}
.diclaimer-amfi .amfi-item img {
    border-radius:5px
}
.diclaimer-amfi p {
    margin-bottom: 15px;
}
.disclaimer-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
}

.clickhendler {
    cursor: pointer;
}

/* Dropdown Button */
.dropbtn {
    color: white;
    padding: 15px 0;
    font-size: 16px;
    border: none;
    cursor: pointer;
  }
  
  /* Dropdown button on hover & focus */
  .dropbtn:hover, .dropbtn:focus {
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content,
  .dropdown-content-two {
    display: none;
    background-color: #fff;
    position: absolute;
    min-width: 150px;
    box-shadow: 0px 6px 14px 0px rgba(0,0,0,0.1);
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a,
  .dropdown-content-two a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #ddd;}
  .dropdown-content-two a:hover {background-color: #ddd;}
  
  /* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
  .show {display:block;}
  
  .inner-banner {
    padding-top: 80px !important;
    padding-bottom: 30px !important;
}
.inner-banner  .inner-title {
    font-size: 42px;
}

/* Risk CSS */

.wizard-stape-body {
    background: var(--rv-white);
    box-shadow: 0px 9px 30px rgba(0, 0, 0, 0.14);
    border-radius: 10px;
    max-width: 767px;
    margin: 0 auto;
  }
  .wizard-stape-body .back-links {
    padding: 20px 30px;
    border-bottom: 1px solid #F3F3F3;
  }
  .wizard-stape-body .back-links a {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #2A2A2A;
  }
  .wizard-stape-body .content-box {
    padding: 30px;
  }
  .wizard-stape-body .content-box h3 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
}
  .wizard-stape-body .content-box ul {
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
  }
  .wizard-stape-body .content-box ul li {
    width: 100%;
    margin-bottom: 10px;
    list-style: none;
  }
  .wizard-stape-body .content-box ul li label {
    color: var(--rv-black);
    cursor: pointer;
    padding-left: 30px;
    position: relative;
  }
  .wizard-stape-body .content-box ul li label::before {
    content: "";
    width: 20px;
    display: block;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    position: absolute;
    left: 0;
    margin-top: 4px;
  }
  .wizard-stape-body .content-box ul li label::after {
    content: "";
    width: 10px;
    display: block;
    height: 10px;
    background: #ddd;
    border-radius: 50%;
    position: absolute;
    left: 5px;
    top: 3px;
    margin-top: 4px;
  }
  .wizard-stape-body .content-box ul li input[type=radio] {
    display: none;
  }
  .wizard-stape-body .content-box ul li input[type=radio]:checked + label::before {
    border: 2px solid var(--rv-primary);
  }
  .wizard-stape-body .content-box ul li input[type=radio]:checked + label::after {
    background: var(--rv-primary);
  }
  .wizard-stape-body .content-box.active .btn-netx {
    pointer-events: visible;
    opacity: 1;
  }
  .wizard-stape-body .content-box .btn-netx {
    pointer-events: none;
    display: flex;
    justify-content: flex-end;
    opacity: 0.5;
  }
  
  #riskinfo {
    z-index: 9999;
    pointer-events: visible;
    visibility: visible;
    opacity: 1;
  }
  #riskinfo .modalbg {
    background: rgba(0, 0, 0, 0.5411764706);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    cursor: auto;
    top: 0;
  }
  #riskinfo .form-control {
    margin-bottom: 20px;
  }
  #riskinfo input {
    border: 1px solid #ddd;
    padding: 15px 20px;
    border-radius: 5px;
  }
  #riskinfo .captcha_code {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
  }
  #riskinfo .captcha_code #captcha_code {
    width: 70px;
  }
  #riskinfo .captcha_code .btn-refresh {
    background: var(--rv-secondary);
    border: unset;
    width: 60px;
    border-radius: 5px;
    color: var(--rv-white);
    display: flex;
    align-items: center;
    padding: 10px 20px;
  }
  #riskinfo .captcha_code .captcha_box {
    width: 100%;
    gap: 15px;
    display: flex;
  }
  #riskinfo .captcha_code .captcha_box input {
    width: 100%;
  }
  
  .modalbody {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
  }
  .modalbody .modalbg {
    background: rgba(0, 0, 0, 0.5411764706);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    cursor: pointer;
    top: 0;
  }
  .modalbody .Cmodalcard {
    max-width: 600px;
    width: 100%;
    z-index: 9;
    position: relative;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .modalbody .Cmodalcard .maincontentmodal {
    background: #fff;
    position: relative;
    box-shadow: 0 0 15px 0 #bbb;
    padding: 30px;
    border-radius: 10px;
  }
  .modalbody .Cmodalcard .maincontentmodal .cmodalclose {
    position: absolute;
    width: 25px;
    height: 25px;
    background: #fff;
    box-shadow: 0 0 15px 0 #ddd;
    cursor: pointer;
    right: -15px;
    top: -15px;
    border-radius: 5px;
    display: flex;
    z-index: 9;
  }
  .modalbody .Cmodalcard .maincontentmodal .cmodalclose span {
    position: relative;
    transform: rotate(45deg);
  }
  .modalbody .Cmodalcard .maincontentmodal .cmodalclose span::before, .modalbody .Cmodalcard .maincontentmodal .cmodalclose span::after {
    content: "";
    width: 15px;
    height: 2px;
    position: absolute;
    background: #000;
    top: 2px;
    left: 2px;
  }
  .modalbody .Cmodalcard .maincontentmodal .cmodalclose span::after {
    transform: rotate(90deg);
  }
  .modalbody .Cmodalcard .maincontentmodal .modalheader {
    position: absolute;
    width: 100%;
    background: #f00;
    left: 0;
    top: 0;
    border-radius: 10px 10px 0 0;
    padding: 10px 15px;
  }
  .modalbody .Cmodalcard .maincontentmodal .modalheader h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 0;
  }
  
  div#thnkbox {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.168627451);
  }
  
  div#thnkbox .card-boxs {
    box-shadow: 0 0 15px 0 #000;
    text-align: center;
    padding: 50px;
    max-width: 400px;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    border: 2px solid var(--rv-primary);
  }
  
  div#thnkbox .card-boxs p.btn-netx {
    display: flex;
    justify-content: center;
  }
  
  div#thnkbox .card-boxs h2 {
    color: var(--rv-primary);
  }
  
  #showformdata {
    display: none;
  }
  
  .showformdata {
    overflow: none;
  }
  
  .showformdata #showformdata {
    display: block;
  }
  
  .showformdata .calculator-section.download-forms .calculator-body {
    -webkit-backdrop-filter: unset;
    backdrop-filter: unset;
  }
  
  .showformdata .calculator-section.download-forms .calculator-body a#submitdatashow {
    cursor: pointer;
  }