:root {
  --rv-primary: #ff7754;
  --rv-secondary: #004294;
  --rv-theme: #feb602;
  --rv-white: #fff;
  --rv-black: #000;
}

body {
  font-size: 16px;
  line-height: 26px;
  background-image: url(../img/doodle\ bg-01.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.btn-theme {
  border-radius: 5px;
  padding: 8px 30px;
  color: var(--rv-white);
  transition: 0.5s;
  overflow: hidden;
  position: relative;
  display: block;
  width: -moz-fit-content;
  background: var(--rv-primary);
  border: 2px solid var(--rv-primary);
  width: fit-content;
}
.btn-theme span {
  position: relative;
  z-index: 1;
  transition: 0.5s;
}
.btn-theme::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.2588235294);
  width: 400px;
  height: 50px;
  transition: 0.5s;
  left: -400%;
  top: 50%;
  display: block;
  z-index: 0;
  transform: rotate(45deg) translateY(-50%);
}
.btn-theme:hover::after {
  transition: 0.5s;
  content: "";
  left: 100%;
}

form#forgetPwdFormVerify button {
  border-radius: 5px;
  padding: 8px 30px;
  color: var(--rv-white);
  transition: 0.5s;
  overflow: hidden;
  position: relative;
  font-size: 16px;
  display: block;
  width: -moz-fit-content;
  background: var(--rv-primary);
  border: 2px solid var(--rv-primary);
  width: fit-content;
  margin: 15px 15px 5px;
  float: left;
}
form#forgetPwdFormVerify button#resend {
  float: right;
}
form#forgetPwdFormVerify input#mobileOtp {
  width: 100%;
  padding: 10px 15px;
  background: unset;
  border: 1px solid #bbb;
  border-radius: 3px;
}
form#forgetPwdFormVerify div {
  width: 100% !important;
  max-width: 100% !important;
  display: block;
}
form#forgetPwdFormVerify div:last-child {
  padding-bottom: 25px;
}

.login-part .page-title-heading {
  text-align: center;
  margin-bottom: 20px;
}
.login-part .btn-box {
  text-align: right;
}
.login-part .btn-box a {
  font-weight: 500;
  text-decoration: underline;
  color: var(--rv-black);
  transition: 0.5s;
}
.login-part .btn-box a:hover {
  transition: 0.5s;
  color: var(--rv-primary);
}
.login-part .btn-box .button {
  padding-top: 30px;
  text-align: center;
}
.login-part .btn-box .button .btn-theme {
  margin: 0 auto;
}
.login-part .checkinputs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.login-part .checkinputs .fc-lebal {
  display: flex;
  align-items: center;
  margin: 10px;
  position: relative;
}
.login-part .checkinputs .fc-lebal .rv-check-label {
  padding: 10px 20px;
  border: 1px solid var(--rv-black);
  font-weight: 600;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
  transition: 0.5s;
}
.login-part .checkinputs .fc-lebal .rv-check-label::after {
  content: "\f26f";
  font-family: bootstrap-icons !important;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  background: var(--rv-theme);
  border-radius: 50%;
  position: absolute;
  top: -15px;
  right: -15px;
  display: none;
  color: var(--rv-black);
}
.login-part .checkinputs .fc-lebal .rv-check-label:hover {
  background: linear-gradient(90deg, var(--rv-theme) 5%, var(--rv-primary) 100%);
  transition: 0.5s;
  color: var(--rv-white);
}
.login-part .checkinputs .fc-lebal input[type=radio] {
  position: absolute;
  left: 0;
  width: 0;
  height: 0;
  margin: 0;
  opacity: 0;
}
.login-part .checkinputs .fc-lebal input[type=radio]:checked + .rv-check-label {
  background: linear-gradient(90deg, var(--rv-theme) 5%, var(--rv-primary) 100%);
}
.login-part .checkinputs .fc-lebal input[type=radio]:checked + .rv-check-label::after {
  display: flex;
}
.login-part .passinput {
  position: relative;
}
.login-part .passinput .showhidepass {
  position: absolute;
  right: 10px;
  bottom: 12px;
  cursor: pointer;
  opacity: 0.8;
}
.login-part .passinput .showhidepass.show {
  opacity: 1;
}
.login-part .passinput .showhidepass.show i::before {
  content: "\f33e" !important;
}
.login-part .rv-form-group {
  margin-bottom: 20px;
}
.login-part .rv-form-group .passwordcaed {
  position: relative;
}
.login-part .rv-form-group .passwordcaed .toggle-password {
  position: absolute;
  right: 2px;
  cursor: pointer;
  bottom: 0;
  width: 50px;
  display: flex;
  justify-content: center;
  height: 57px;
  align-items: center;
}
.login-part .rv-form-group .passwordcaed .toggle-password.show i::before {
  content: "\f340";
}
.login-part .rv-form-group > label {
  font-weight: 600;
}
.login-part .rv-form-group .rv-form-control {
  padding: 10px 15px;
  background: unset;
  width: 100%;
  border: 1px solid #bbb;
  border-radius: 3px;
}
.login-part .rv-form-group .rv-form-control:focus {
  border: 1px solid var(--rv-primary);
  outline: unset;
}
.login-part .rv-form-group.cc-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.login-part .rv-form-group.cc-groups img {
  flex: 1 0 80px;
}
.login-part .rv-form-group.cc-groups button {
  flex: 1 0 50px;
}
.login-part .rv-form-group.cc-groups #captcha {
  flex: 1 0 170px;
}
.login-part input:not([type=radio]) {
  width: 100%;
}
.login-part .mb-25 {
  margin-bottom: 25px;
}
.login-part.content-form .rv-form-group {
  margin-bottom: 10px;
}
.login-part.content-form .btn-center .btn-theme {
  margin: 0 auto;
}

.modal-open {
  overflow: hidden !important;
}
.modal-open .main-section .rv-card-body {
  -webkit-backdrop-filter: unset;
          backdrop-filter: unset;
}

.modal-open .ticker_sticky,
.modal-open footer.footer_main {
  position: relative;
  z-index: -3;
}
.modal-open .costom-modal-a {
  z-index: 99;
  visibility: visible;
  pointer-events: visible;
}
.modal-open .costom-modal-a .bg-show {
  background: rgba(0, 0, 0, 0.5803921569);
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.costom-modal-a {
  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;
}
.costom-modal-a .close-i {
  position: absolute;
  top: 0;
  right: 0;
}
.costom-modal-a .close-i {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 30px;
  height: 30px;
  line-height: 29px;
  font-size: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: unset;
  background: #fff;
  box-shadow: 0 0 15px 0 #777;
  border-radius: 5px;
}
.costom-modal-a .cm-body {
  max-width: 400px;
  width: 100%;
  background-color: var(--rv-white);
  border-radius: 3px;
  position: relative;
  z-index: 999;
}
.costom-modal-a .cm-body .m-hadding {
  background: linear-gradient(90deg, var(--rv-theme) 5%, var(--rv-primary) 100%);
  border-radius: 3px 3px 0 0;
  padding: 10px 15px;
}
.costom-modal-a .cm-body .m-hadding h4 {
  margin-bottom: 0;
  color: var(--rv-white);
}
.costom-modal-a .cm-body .cm-cards {
  padding: 30px;
}

.main-section {
  padding: 30px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
}
.main-section::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(240, 154, 0, 0.1) 5%, rgba(0, 209, 225, 0.1) 100%);
}
.main-section .rv-card-body {
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--top-padding) 30px var(--bottom-padding);
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 0 15px 0 #bbb;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(240, 154, 0, 0.1) 5%, rgba(0, 209, 225, 0.1) 100%);
  -webkit-backdrop-filter: saturate(200%) blur(3px);
          backdrop-filter: saturate(200%) blur(3px);
}
@media only screen and (max-width: 992px) {
  .main-section .rv-card-body {
    -webkit-backdrop-filter: unset;
            backdrop-filter: unset;
  }
}
.main-section .rv-card-body .rv-crd-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  margin: -20px;
}
.main-section .rv-card-body .privacy-policy {
  padding: 20px;
}
.main-section .rv-card-body .privacy-policy p {
  text-align: justify;
}
.main-section .rv-card-body .rv-left-part {
  padding: 20px;
  max-width: 58%;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .main-section .rv-card-body .rv-left-part {
    max-width: 100%;
  }
}
.main-section .rv-card-body .rv-left-content .title-text h1 {
  font-weight: 700;
  background: linear-gradient(90deg, var(--rv-primary) 0%, var(--rv-secondary) 30%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
@media only screen and (max-width: 992px) {
  .main-section .rv-card-body .rv-left-content .title-text {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
  }
}
.main-section .rv-card-body .rv-left-content .image {
  height: 300px;
  position: relative;
  padding-top: 63.6%;
  margin-top: 20px;
}
.main-section .rv-card-body .rv-left-content .image iframe {
  width: 100%;
  height: 90%;
  position: absolute;
  left: 0;
  background: var(--rv-white);
  padding: 5px;
  border-radius: 10px;
  box-shadow: 0 0 15px 0 #bbb;
  top: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
}
@media only screen and (max-width: 992px) {
  .main-section .rv-card-body .rv-left-content .image iframe {
    -o-object-position: center;
       object-position: center;
  }
}
.main-section .rv-card-body .rv-left-content .image img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
}
@media only screen and (max-width: 992px) {
  .main-section .rv-card-body .rv-left-content .image img {
    -o-object-position: center;
       object-position: center;
  }
}
.main-section .rv-card-body .contact-details ul {
  padding: 0;
  margin-bottom: 30px;
}
.main-section .rv-card-body .contact-details ul li {
  list-style: none;
  box-shadow: 0 0 15px 0 #bbb;
  padding: 10px 20px;
  margin-bottom: 15px;
  border-radius: 10px;
}
.main-section .rv-card-body .contact-details ul li a {
  text-decoration: none;
  color: var(--rv-black);
  font-weight: 600;
}
.main-section .rv-card-body .rv-right-part {
  max-width: 42%;
  width: 100%;
  padding: 20px;
}
@media only screen and (max-width: 992px) {
  .main-section .rv-card-body .rv-right-part {
    max-width: 100%;
  }
}
.main-section .rv-card-body .rv-right-part .login-part .page-title-heading h4 {
  font-weight: 700;
}
.main-section .rv-card-body .rv-right-part .login-part .page-title-heading h4 u {
  background: linear-gradient(90deg, var(--rv-primary) 0%, var(--rv-black) 50%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
.main-section .rv-card-body .header-ifno {
  position: absolute;
  top: 0;
  padding: 20px 30px;
  right: 0;
}
@media only screen and (max-width: 992px) {
  .main-section .rv-card-body .header-ifno {
    max-width: 100%;
    width: 100%;
  }
}
.main-section .rv-card-body .header-ifno ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0;
  gap: 15px 30px;
}
@media only screen and (max-width: 992px) {
  .main-section .rv-card-body .header-ifno ul {
    justify-content: center;
    max-width: 100%;
    width: 100%;
  }
}
.main-section .rv-card-body .header-ifno ul li a {
  color: var(--rv-black);
  font-weight: 600;
  text-decoration: none;
}
.main-section .rv-card-body .header-ifno ul li a:hover {
  color: var(--rv-primary);
}
.main-section .rv-card-body .about-content {
  text-align: center;
  margin: 20px 0;
}
.main-section .rv-card-body .footer-bottom {
  max-width: 100%;
  position: relative;
  background: linear-gradient(90deg, var(--rv-theme) 5%, var(--rv-primary) 100%);
  bottom: 0;
  left: 0;
  width: 100%;
  position: absolute;
  padding: 10px 30px;
}
.main-section .rv-card-body .footer-bottom ul {
  display: flex;
  align-items: center;
  margin: 0;
  flex-wrap: wrap;
  padding: 0;
  justify-content: center;
}
.main-section .rv-card-body .footer-bottom ul li {
  list-style: none;
  color: var(--rv-black);
}
.main-section .rv-card-body .footer-bottom ul li:first-child {
  width: 100%;
  text-align: center;
}
.main-section .rv-card-body .footer-bottom ul li .link-list {
  margin: -10px;
}
.main-section .rv-card-body .footer-bottom ul li .link-list li {
  padding: 10px;
}
.main-section .rv-card-body .footer-bottom ul li .link-list li:first-child {
  width: auto;
}
.main-section .rv-card-body .footer-bottom ul li .link-list li a {
  position: relative;
}
.main-section .rv-card-body .footer-bottom ul li .link-list li a::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 4px;
  height: 15px;
  width: 2px;
  background-color: var(--rv-black);
}
.main-section .rv-card-body .footer-bottom ul li .link-list li:last-child a::after {
  content: unset;
}
.main-section .rv-card-body .footer-bottom ul li a {
  color: var(--rv-black);
  text-decoration: none;
  font-weight: 600;
  transition: 0.5s;
}
.main-section .rv-card-body .footer-bottom ul li a:hover {
  transition: 0.5s;
  color: var(--rv-white);
}