@import url(../font/fonts.css);

:root{
  --desktop-border-radius: .75em;
  --mobile-border-radius: .5em;
  --sm-border-radius: .25em;

  --color-primary: #F99A0E;
}

/* General */
body{
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
}

.font-baloo{
  font-family: 'BalooBhaina', cursive;
}
.font-baloo-bold{
  font-family: 'BalooBhainaBold', cursive;
}
.font-roboto{
  font-family: 'Roboto', sans-serif;
}
.font-roboto-bold{
  font-family: 'RobotoBold', sans-serif;
}

/*=== Page ===*/

/* Main */
main{
  background-image: linear-gradient(120deg, #eaeaea 45%, #0089cf 45%, #1d9cc4 100%);
}
main.bg-alt{
  background-image: linear-gradient(120deg, #1d9cc4 0%, #0089cf 55%, #eaeaea 55%);
}
main.bg-alt.bg-img-1{
  background-image: url('../images/main-bg-1.svg'), linear-gradient(120deg, #1d9cc4 0%, #0089cf 55%, #eaeaea 55%);
  background-size: contain;
  background-position: left bottom;
  background-repeat: no-repeat;
}

/* Header */
.header{
  border-top-left-radius: var(--desktop-border-radius);
  border-top-right-radius: var(--desktop-border-radius);
}
.header img{
  max-height: 2em;
}

/* Banner */
.banner{
 /* padding-bottom: 8em !important;*/
}
.banner:not(.no-bg){
 /* background: url('../images/Banner.png'), linear-gradient(47deg, #114F8B 5.20%, #2A9AD7 100%);
  background-size: cover;
  background-repeat: no-repeat;*/
  min-height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner .banner-title{
  font-size: 2.25em;
  font-weight: 600;
}
.banner.identification .banner-title{
  /* font-size: 1.75em; */
  font-size: 2em;
  font-weight: 900;
}
.banner .banner-text{
  font-size: 1em;
}
/* .banner.banner.identification .banner-text{
  font-size: .75em;
} */
.banner .form-wrapper{
  border-radius: var(--desktop-border-radius);
  padding: 1em 2em;
  border: 1px solid #EAEAEA;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.03);
  margin: 0 auto;
}
.banner .form-wrapper.w-sm{
  width: 70%;
}
.banner .form-wrapper.w-md{
  width: 80%;
}
.banner .form-wrapper .form-text{
  color: #3C3C3C;
  margin-bottom: 0;
}

/* KYC Steps */
.kyc-steps-wrapper{
  border-radius: var(--desktop-border-radius);
  padding: 1em 2em;
  border: 1px solid #EAEAEA;
  background: rgba(245, 245, 245, 0.95);
  /* box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.03); */
  margin-top: 60px;
}
.kyc-steps-wrapper .steps-cards{
  display: flex;
  gap: 1em;
  justify-content: space-between;
  margin-top: calc(-60px - 1em);
}
.kyc-steps-wrapper .steps-cards .card{
  background-color: #ffffff !important;
  border-radius: 0 !important;
  border: none;
  box-shadow: 0px 10px 16px 0px rgba(0, 0, 0, 0.05);
  padding: 1em 2em;
  flex: 100;
  cursor: pointer;
}
.kyc-steps-wrapper .steps-cards .card:hover,
.kyc-steps-wrapper .steps-cards .card.card-active{
  background-color: #23A6F0 !important;
}
.kyc-steps-wrapper .steps-cards .card img{
  max-width: 3em;
}
.kyc-steps-wrapper .steps-cards .card:hover img,
.kyc-steps-wrapper .steps-cards .card.card-active img{
  filter: brightness(0) saturate(100%) invert(97%) sepia(98%) saturate(8%) hue-rotate(201deg) brightness(103%) contrast(100%);
}
.kyc-steps-wrapper .steps-cards .card .card-body{
  padding: 0;
}
.kyc-steps-wrapper .steps-cards .card .card-title{
  color: #000000;
  font-weight: 700;
  margin-top: .75em;
  margin-bottom: .25em;
}
.kyc-steps-wrapper .steps-cards .card:hover .card-title,
.kyc-steps-wrapper .steps-cards .card.card-active .card-title{
  color: #ffffff !important;
}
.kyc-steps-wrapper .steps-cards .card .card-text{
  color: #000000;
  font-size: .75em;
  font-weight: 300;
}
.kyc-steps-wrapper .steps-cards .card:hover .card-text,
.kyc-steps-wrapper .steps-cards .card.card-active .card-text{
  color: #ffffff !important;
}

.kyc-steps-wrapper .kyc-steps {
  flex: 0 0 100%;
  justify-content: space-around;
  display: flex;
  padding-top: 2rem;
  width: 125%;
  transform: translateX(-10%);
}
.kyc-steps-wrapper .kyc-steps .step {
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.kyc-steps-wrapper .kyc-steps .step:not(:last-child):after,
.kyc-steps-wrapper .kyc-steps .step:not(:last-child):before {
  content: '';
  width: 50%;
  position: absolute;
  border: 2px solid #BEB9B9;
  height: 2px;
  display: block;
  z-index: 1;
  top: 15px;
  left: 75%;
  border-radius: 4px;
  background-color: #BEB9B9;
}
.kyc-steps-wrapper .kyc-steps .step .dot {
  background-color: #BEB9B9;
  border: 1px solid #BEB9B9;
  color: #ffffff;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  top: 0.125em;
  z-index: 2;
  margin: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .75em;
}
.kyc-steps-wrapper .kyc-steps .step.current .dot {
  background-color: #2659B1;
  border: 1px solid #2659B1;
}
.kyc-steps-wrapper .kyc-steps .step.completed .dot {
  background-color: #16C612;
  border: 1px solid rgba(22, 198, 18, 0.18);
}
.kyc-steps-wrapper .kyc-steps .step.completed .dot:before {
  content: '\2713';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #16C612;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  font-weight: 900;
}
.kyc-steps-wrapper .kyc-steps .step .label {
  font-size: 12px;
  display: block;
  margin: 0.5em 0;
  text-align: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}
.kyc-steps-wrapper .kyc-title{
  text-transform: uppercase;
  text-decoration: underline;
  font-weight: 700;
  font-size: 1.25em;
  text-align: left;
}

/* Plan Table */
.plan-table{
  margin-top: 1em;
}
.plan-table > .row{
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: .5em;
  border: 1px solid #CECECE;
  padding: .75em 1.25em;
  margin-bottom: .5em;
}
.plan-table.pd-sm > .row{
  padding: .25em 1em;
  margin-bottom: .25em;
}
.plan-table > .row > .value,
.plan-table > .row > .ext{
  font-weight: 700;
}
.plan-table > .row > .text-grey{
  color: #57575D !important;
}
.plan-table > .row > .text-primary{
  color: var(--color-primary) !important;
}

/* Popup */
.popup-wrapper {
  border-radius: var(--desktop-border-radius);
  padding: 1em 4em;
  border: 1px solid #EAEAEA;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0px 0px 24px 0px rgb(0 0 0 / 3%);
  position: absolute;
  top: 50%;
  left: 39%;
  transform: translate(-50%, -50%);
  width: 50%;
  text-align: center;
  box-sizing: border-box;
  z-index: 100;
  display: none; /*to hide popup initially*/
}
.popup-wrapper .title {
  color: #3C3C3C;
  margin-bottom: 0;
  margin-top: 0.25rem;
  font-size: .875em;
}
.popup-wrapper .title-separator {
  height: 6px;
  border-radius: var(--sm-border-radius);
  background: #2791CE;
  margin: 1em 0;
}
.popup-wrapper .popup-body {
  text-align: left;
}
.popup-wrapper .popup-body .heading {
  color: #000000;
  font-size: 1em;
  font-weight: 600;
}
.popup-wrapper .popup-body .content {
  color: #000000;
  font-size: .75em;
}
.popup-wrapper .popup-body .content ol{
  padding-left: .75em;
  margin-top: 1em;
}
.popup-wrapper .popup-body .content ol li{
  margin-bottom: .5em;
}
.popup-wrapper .popup-body .content .btns{
  display: flex;
  justify-content: space-between;
  margin-top: .5em;
}
.popup-wrapper .popup-body .content .btns .btn{
  border-radius: .75em;
  background: var(--color-primary);
  border: .25px solid #000000;
  font-size: 1em;
  padding: 0.5em 1.25em;
  min-width: 100px;
}
.popup-wrapper .popup-body .content .btns .btn:nth-child(1){
  background: #FFF2C3;
}
.popup-wrapper .popup-body .content .btns .btn img{
  max-height: 1em;
}

/* Form */
.form-wrapper form .form-row{
  margin-top: 1em;
}
.form-wrapper form label{
  font-weight: 600;
  color: #000000;
}
.form-wrapper form .form-control{
  width: 100%;
  height: auto;
  /* margin-top: 1em; */
  padding: 1em .75em;
  border-radius: var(--sm-border-radius);
  border: 1px solid rgba(0, 0, 0, 0.95);
  box-shadow: none;
  color: rgba(0, 0, 0, 0.6);
}
.form-wrapper form .form-control + .form-text{
  font-weight: 600;
  color: #000000;
  font-size: .75em;
}
.form-wrapper form .form-control + .form-text .form-check-input{
  border-color: var(--color-primary);
  box-shadow: none !important;
}
.form-wrapper form .form-control + .form-text .form-check-input:checked {
  background-color: var(--color-primary);
}
.form-wrapper form .form-control::placeholder{
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0.15px;
}
.form-wrapper form .btn-primary{
  margin-top: 1em;
  padding: .75em 2em !important;
  background: var(--color-primary) !important;
  border: none;
  box-shadow: none;
  text-transform: uppercase;
}
.form-wrapper form .btn-primary.cancel{
  background: #454547 !important;
}
.form-wrapper form .btn-primary.verify {
  margin-top: 3em;
  padding: 0.5em 2em !important;
}
.form-wrapper form .btn-primary.verify.is-verified {
  background-color: #73C651 !important;
}

p.error-block.invalid-feedback{
    font-size: medium !important;
    background: antiquewhite;
    font-weight: 600;	
}
/* Success Note */
.success-note{
  background-color: rgba(35, 166, 240, .75);
  box-shadow: 0 .5em 1em rgba(0, 0, 0, 0.05);
  border-radius: 1em;
  padding: 2em 4em;
}
.success-note img{
  max-width: 140px;
}
.success-note p{
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.success-note .btn {
  background: rgba(249, 154, 14, .75) !important;
}

a#tnc_popup{
  text-decoration: underline;
  color: blue;
  cursor: pointer;
}

/* Footer */
.footer{
  background: linear-gradient(135deg, #0B5BA8 25.38%, #299BD8 100%);
  padding: 1.5em 2em;
}
.footer .widget-1{
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.20);;
}
.footer .logo{
  max-width: 200px;
}
.footer .footer-text{
  font-size: .75em;
  font-weight: 400;
  margin-top: 10px;
}
.footer .title{
  font-size: 1em;
  font-weight: 500;
}
.footer ul{
  list-style: none;
  margin-top: 16px;
  font-size: .8em;
  font-weight: 400;
  padding: 0;
}
.footer ul li{
  margin-bottom: .25em;
}
.footer ul li a{
  text-decoration: none;
  color: #ffffff;
}
.footer-copyright{
  border-bottom-left-radius: var(--desktop-border-radius);
  border-bottom-right-radius:  var(--desktop-border-radius);
}

/* Sidebar */
.sidebar .logo{
  padding: 0 0 1.5em 0;
}
.sidebar .title{
  font-size: 1.25em;
  font-weight: 700;
  text-align: center;
}
.sidebar .cards{
  padding: 0 2em 0 1em;
}
.sidebar .card{
  border: none;
  margin-bottom: 20px;
  background: transparent !important;
}
.sidebar .card .card-body{
  width: calc(100% - 2px);
  margin-left: 1px;
  padding: .5em;
  border-radius: 0px 0px 10px 10px;
  border: 1px solid #EAEAEA;
}
.sidebar .card .card-title{
  font-size: .75em;
  font-weight: 500;
  margin-bottom: .5em;
  text-transform: uppercase;
  display: block;
}
.sidebar .card .btns{
  font-weight: 500;
  text-transform: uppercase;
}
.sidebar .card .btns{
  display: flex;
  justify-content: center;
  gap: 1em;
}
.sidebar .card .btns .btn{
  background-color: var(--color-primary);
  font-size: .75em !important;
  padding: .25em .75em !important;
  border: 2px solid #eaeaea;
}
.sidebar .card .btns .btn:nth-child(2){
  background-color: #ffffff;
  color: #1262AF !important;
}
.sidebar .view-all{
  text-align: center;
  font-size: .75em;
}
.sidebar .view-all a{
  color: #ffffff;
  font-size: 1.25em;
  text-decoration: none;
}
.sidebar .view-all a img{
  max-height: 18px;
}

.loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: #ffffffbd;
}

.loader img {
  position: absolute;
  top: 50%;
  display: block;
  text-align: center;
  left: 50%;
}

.is-hidden{
  display:none;
}

a{
  cursor: pointer;
}
.SelectBox {
  padding: 10px 8px;
}

.SumoSelect>.CaptionCont {
  position: relative;
  margin: 0;
  width: 100%;
  height: auto;
  padding: 1em 0.75em;
  border-radius: var(--sm-border-radius);
  border: 1px solid rgba(0, 0, 0, 0.95);
  box-shadow: none;
  color: rgba(0, 0, 0, 0.6);
}

.SumoSelect>.optWrapper {
  display: none;
  z-index: 1000;
  top: 30px;
  width: 100%;
  position: absolute;
  left: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 2px 3px 3px rgba(0,0,0,.11);
  border-radius: 3px;
  overflow: hidden;
}

.SelectClass, .SumoUnder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}

.SumoSelect .search-txt {
  display: none;
  outline: none;
}

.SumoSelect {
  width: 100% !important;
}

/*Captcha*/
 .CaptchaWrap {
	position: relative;
}

.CaptchaTxtField {
	border-radius: 5px;
	border: 1px solid #ccc;
	display: block;
	box-sizing: border-box;
}

/*#UserCaptchaCode {
	padding: 15px 10px;
	outline: none;
	font-size: 18px;
	font-weight: normal;
	font-family: 'Open Sans', sans-serif;
	width: 343px;
}*/

#CaptchaImageCode {
	text-align: center;
	padding: 0px 0;
	width: 300px;
	overflow: hidden;
}

.capcode {
	font-size: 46px;
	display: block;
	-moz-user-select: none;
	-webkit-user-select: none;
	user-select: none;
	cursor: default;
	letter-spacing: 1px;
	color: #ccc;
	font-family: 'Roboto Slab', serif;
	font-weight: 100;
	font-style: italic;
}
.ReloadBtn {
	background: url('../images/update-64.webp') left top no-repeat !important;
	background-size: 100% !important;
	width: 32px !important;
	height: 32px;
	border: 0px;
	outline none;
	position: absolute;
	bottom: 30px;
	left: 310px;
	outline: none;
	cursor: pointer;
	/**/
}

.error {
	color: red;
	font-size: 12px;
	/*display: none;*/
}

.success {
	color: green;
	font-size: 18px;
	margin-bottom: 15px;
	display: none;
}

.consent-text{
  font-size: 14px;
  color: #333;
}

.consent-text a {
  color: #007BFF;
  text-decoration: none;
}

.consent-text a:hover {
  text-decoration: underline;
}

/* Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Popup */
.popup {
  position: relative;
  width: 800px;
  height: 90vh; /* Set as needed */
  border: 1px solid #ccc;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.popup-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #fff;
  border-bottom: 1px solid #ccc;
  padding: 15px;
  box-sizing: border-box;
}

.popup-body {
  position: absolute;
  top: 60px;   /* height of header */
  bottom: 60px; /* height of footer */
  left: 0;
  right: 0;
  overflow-y: auto;
  padding: 20px;
  box-sizing: border-box;
}

.popup-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #fff;
  border-top: 1px solid #ccc;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.popup-close {
  padding: 10px 20px;
  background: #f2f2f2;
  color: #fff;
  border: none;
  cursor: pointer;
}

#popup-title { font-size: 20px !important;}
.popup-content h4 { font-size: 18px;}
.popup-content p { font-size: 12px; }
.popup-content ul li{ font-size: 12px; }

.consent-text{
  margin-top: 15px;
  color: #333 !important;;
}

/* Responsive */
@media(max-width:768px){
  /* Main */
  main > * > *{
    overflow: hidden !important;
  }
  main > * > *:not(.gap){
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Header */
  .header {
    border-radius: 0px !important;
    border-bottom-left-radius: var(--desktop-border-radius) !important;
    border-bottom-right-radius: var(--desktop-border-radius) !important;
    z-index: 999 !important;
    position: relative !important;
  }

  /* Banner */
  .banner{
    padding-top: 50px !important;
    margin-top: -30px !important;
  }
  .banner .title {
    font-size: 1.75em !important;
  }
  .banner .form-wrapper.w-sm,
  .banner .form-wrapper.w-md{
    width: 100% !important;
  }
  
  /* KYC Steps */
  .kyc-steps-wrapper{
    margin-top: 100px;
    margin-bottom: 20px;
  }
  .kyc-steps-wrapper .kyc-steps {
    width: 100%;
    transform: translateX(-0%);
  }

  /* Form */
  .form-wrapper {
    padding: .5em 1.25em !important;
  }
  main.steps .form-wrapper {
    padding: 0.5em 0em !important;
  }
  .form-wrapper .form-text {
    font-size: .75em !important;
  }
  .form-wrapper form .form-control {
    padding: 12px 8px !important;
  }

  /* Popup */
  .popup-wrapper {
    padding: .5em 1.25em;
  }
  .popup-wrapper .title {
    font-size: .75em;
  }

  /* Sidebar */
  .sidebar {
    background: linear-gradient(47deg, #114F8B 5.20%, #2A9AD7 100%);
    padding-top: 10px;
    padding-bottom: 10px;
  }
  main.steps .sidebar {
    border-bottom-left-radius: var(--desktop-border-radius);
    border-bottom-right-radius: var(--desktop-border-radius);
  }
  .sidebar > div{
    display: flex;
    justify-content: center;
  }
}
/* Responsive */
@media(max-width:550px){
  /* KYC Steps */
  .kyc-steps-wrapper {
    padding: 1em 1em;
  }
  .kyc-steps-wrapper .steps-cards{
    flex-direction: column;
  }
  .kyc-steps-wrapper .steps-cards .card{
    padding: 1em 1em;
  }
  .kyc-steps-wrapper .kyc-steps {
    padding-top: 0rem;
    width: 110%;
    transform: translateX(-5%);
  }
  .kyc-steps-wrapper .kyc-steps .step:not(:last-child):after,
  .kyc-steps-wrapper .kyc-steps .step:not(:last-child):before {
    width: 30%;
    left: 85%;
  }
  .kyc-steps-wrapper .kyc-steps .step .label {
    display: none;
  }
  .kyc-steps-wrapper .kyc-title{
    font-size: 1em;
  }

  /* Popup */
  .popup-wrapper .popup-body .content .btns{
    flex-direction: column-reverse;
    gap: 10px;
  }

  /* Form */
  .form-wrapper form .btn-primary.verify {
    margin-top: 1em;
    margin-bottom: 2em;
  }

  /* Success Note */
  .success-note{
    padding: 2em 1em;
  }
  .success-note img{
    max-width: 100px;
  }


  /* Footer */
  .footer .widget-1 {
    border-right-width: 0px;
  }

  /* Sidebar */
  main.steps .sidebar {
    padding: 1em;
  }
  .sidebar > div{
    display: flex;
    justify-content: center;
  }
}
