
/************************** Common Classes Start **************************/

/*:root {

	--theme-color-primary: #4fcf4d;
	--theme-color-secondary: #fff;

	--label-color: #fff;
	--label-hover-color: #fff;

	--text-color-primary:#4fcf4d;
	--text-color-secondary: #fff;
	--text-hover-color: #fff;

	--main-bg-color: #fff;
	--main-text-color: #000;
	--secondary-bg-color: #fff;
	--secondary-bg-color-op: #fff;

	--header-bg-color:#131313;
	--header-txt-color: #fff;

	--sidebar-bg-color: #fff;
	--sidebar-menu-color: #fff;

	--btn-txt-color: #fff;
	--btn-bg-color:#4fcf4d;
	--btn-hover-txt-color: #fff;
	--btn-hover-bg-color:#358734;
	--btn-disabled-bg-color: #fff;

	--input-txt-color: #fff;
	--input-bg-color: #fff;

	--dropdown-bg-color: #fff;
	--dropdown-txt-color: #fff;

	--chat-panel-bg-color: #fff;

	--modal-body-bg-color: #fff;
	--modal-header-bg-color: #fff;

	--modal-input-bg-color: #fff;
	--modal-input-txt-color: #fff;

	--bg-color-1: #fff;

	--table-border-color: #fff;
	--table-row-evenbg-color: #fff;
	--table-row-oddbg-color: #fff;
	--table-txt-color: #fff;
	--table-head-bg-color: #fff;

	--icon-color: #fff;
	--icon-hover-color: #fff;

	--footer-bg-color: #fff;
	--footer-txt-color: #fff;

	--commn-search-bg-color: #fff;
	--commn-border-color: #fff;

	--footer-nav-bg-color: #fff;
	--footer-nav-txt-color: #fff;
	--footer-nav-icon-color: #fff;
	--canvas-bg-img: 'assets/frontend/images/canvas.jpg';
	--vantatheme:0x42ff3f;

	--bs-font-Microsoft: Microsoft Yahei!important;
	--head-font-Nunito:Nunito,sans-serif!important
}*/

button{

	background-color: var(--btn-bg-color, #fff);
	color: var(--btn-txt-color, #fff);

}
button:hover{

	background-color: var(--btn-hover-bg-color, #fff);
	color: var(--btn-hover-txt-color, #fff);

}
button:disabled,
button[disabled]{
	background-color: var(--btn-disabled-bg-color, #fff);
}

/************************** Common Classes End **************************/



*{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	font-family:var(--bs-font-Microsoft);
}
body{
	background-color:var(--bg-color-1);
	color:var(--text-color-secondary);
}
.sticky-top{
	background:var(--header-bg-color);
}
a{
	text-decoration: none;
}
section{
	padding-top:4rem!important;
	padding-bottom: 2rem!important;
}
.section-7 .accordion-button::after{
	filter: invert(1);
}
.section-7 .accordion-button:not(.collapsed){
	color: #fff;
}
.section-7 .accordion-button{
	background: #f6f2f20f;
	color: #fff;
}
.accordion-button:focus{
	box-shadow: none;
}
.dolr-blockchain{
	text-decoration: none;
	background: var(--theme-color-primary);
	color: #fff;
	padding: 10px 16px;
	border-radius: 6px;
	transition: all ease .3s;
}
.dolr-blockchain:hover{
	color: #fff;
	background-color: var(--btn-hover-bg-color);
}
/*#hero{
	height: 100vh;
}*/
.sticky-top .navbar-nav a{
	color: #fff;
	font-size: 18px;
	margin: 0px 20px;
	display: inline-block;
}
.sticky-top .navbar-nav a:after {
	display: block;
	content : '';
	border-bottom: solid 3px var(--theme-color-primary);
	transform: scaleX(0);
	transition: transform 300ms ease-in-out;
}
.sticky-top .navbar-nav a:hover:after {
	transform: scaleX(1);
}
.navbar-nav .nav-link.active, .navbar-nav .show>.nav-link{
	color: #fff;
}
.head h2{
	color: var(--theme-color-primary);
	font-family: var(--head-font-Nunito);
	font-weight: bold;
	font-size:40px;
	padding: 16px 0px 8px 0px;
	margin: 0px;
}
.text-theme{
	color: var(--text-color-primary);
}
/*section-1*/
/*.jumbo-txt{
	height: 85vh;
}*/
.bottom-img{
	position: absolute;
	bottom:0rem;
	left: 0px;
	right: 0px;
}
.section-2 .about-tabs li .nav-link{
	color:var(--main-text-color);
}
.section-2 .nav-pills .nav-link.active, .nav-pills .show>.nav-link{
	background-color:var(--main-bg-color);
	color: var(--theme-color-primary);
	font-weight: 600;
	border-bottom: 2px solid;
}
.section-4 .coin-icon{
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 2px solid;
	position: relative;
}
.section-4 i{
	font-size: 35px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.section-5 .card{
	background-image: linear-gradient(90deg, #f9f9f9 0%, #ffffff00 90%);
	transition:all .6s ease;
}
.section-5 .card:hover{
	box-shadow: inset 0px 0px 18px 0px rgb(255 255 255 / 50%)!important;
	background:#0000002b!important;
	transform: scale(1.1);
}
.section-7 .block-chain{
	background-color: #15121d;
}
.spinner-half{
	position: absolute;
	top: 0px;
	left: 0px;
	animation: circle 1s infinite  alternate
}


@keyframes circle{
	0% { transform: translateY(0); }
    100% { transform: translateY(-30px); }
}

.footer h5{
	position: relative;
	border-bottom: 2px solid #dfdada;
	padding-bottom:8px;
}
.footer h5:before{
	content: "";
	position: absolute;
	width: 20%;
	height: 3px;
	background-color: var(--theme-color-primary);
	bottom: -2px;
	left: 0px;
	transition: all 0.5s cubic-bezier(.645,.045,.355,1);
}
.footer .col-sm-6:hover h5:before{
	width: 100%;  
}
.footer ul li{
	margin-bottom: 10px;
	cursor: pointer;
	transition: all 500ms ease-in-out;
}
.footer li:hover{
	color: var(--text-theme-color);
	transform: scale(1.05);
}
.footer .footer-icon{
	display: inline-block;
	color: #7f839c;
	font-size:22px;
	text-align: center;
	transition: 0.3s;
	height: 40px;
	width: 40px;
	text-align: center;
	line-height:32px;
	border: 1px solid #7f839c;
	border-radius: 50%;
	margin: 10px;
	position: relative;
}
.footer .footer-icon i{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.footer a{
	text-decoration: none;
	color: #fff;
}
.footer-icon:hover{
	color: #fff;
	background:var(--theme-color-primary);
	box-shadow: 0px 17px 66px 1px hwb(208deg 0% 0%);
	border: 1px solid var(--theme-color-primary);
}
@media only screen and (max-width:900px) {
	.world-img {
		width: 100%;
	}
	section{
		padding-top:30px!important;
		padding-bottom: 2rem!important;
	}
	.logo-mobile{
		height: 25px;
	}


}
@media only screen and (max-width:900px){
	.jumbo-txt .bottom-img{
		bottom: 0px;
	}

	.mysm-auto{
		margin-top: auto!important;
		margin-bottom: auto!important;
	}
}
h3.card-title.text-center {
    color: var(--text-color-secondary);
}

/*faq.php*/

.section-faq .accordion-button:not(.collapsed)::after{
	background-image: url("../cryptocoin/assets/images/minus.png");
}
.section-faq .accordion-button::after{
	background-image: url("../cryptocoin/assets/images/plus.png");
}
.section-faq .accordion-button:not(.collapsed){
	background-color: transparent;
	border-bottom: 2px solid var(--main-bg-color);
	color: var(--bs-accordion-btn-color);
}
.section-faq .accordion-item, .accordion-header button{
	border: none;
}
.section-faq .accordion-header button{
	font-weight:600;
	border-bottom: 1px solid var(--input-color);
}
.section-faq .accordion-header button:hover{
	background-color: var(--section-services-background-color);
	color: var(--text-color-primary);
}

/* frontend footer */
#contact.section-6{
    background-size: 100% 100%;
    background-repeat: no-repeat;
}  

.contact-section .form-group
{
   color: red;
}

.step#step2
{
    display:none;
}

#signinBackground,#signupBackground {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-size: cover;
	background-position: center;
}
#signinBackground img,#signupBackground img{
	width: 100%; 
	height: 100%;
}

.forgot-password-title .otp-input-fields{
    box-shadow: none!important;
}
#forgot-password-verify{
	width:275px;
}
#resend-forgot-password{
	text-decoration: underline;
}
.forgot-password-title .otp-input-fields{
	padding: 0px 40px 40px 40px;
}
.forgot-password-title .f17{
	font-size: 17px;
}
#reset-password-form #tooltip_info {
	position: absolute;
	width: 270px;
	padding: 15px;
	background: #242424;
	font-size: 14px;
	border-radius: 5px;
	box-shadow: 0 1px 3px #ccc;
	border: 1px solid #ddd;
	text-align: left;
	top: 10px;
	left: 10px;
	display: none;
	color: #fff;
	z-index: 1000;
}
#reset-password-form .form-control{
	/*margin-left: -111px;*/
	width: 100%;
}
#reset-password-form .show-password-icon{
	color: #000!important;
}
#reset-password .show-password-icon {
	float: right;
	right: 16px;
	margin-left: -21px;
	margin-top: inherit;
	position: absolute;
	z-index: 2;
	color: #000 !important;
	top: 5px;
}
/*annexture css*/
  .annexure .tooltip-container {
    width: 320px;
    height:auto;
    /* padding: 15px; */
    background: white;
    box-shadow: 0 30px 90px -20px rgba(0,0,0,0.3);
    position: absolute;
    z-index: 100;
    display: none;
    opacity: 10;
  }

  .annexure .tooltip-container img{
    width: -webkit-fill-available;
    object-fit: contain;
    width: -webkit-fill-available;    
    padding-bottom: 1rem;
  }
  .annexure .img-container{
    max-height: 200px;
    width: 100%;
  }
  .annexure .img-container img{
    max-height: inherit;
  }
  .annexure .annexture-info{
    word-wrap: break-all;
    max-height: 300px;
    overflow-y: auto;
    padding: 15px;
  }
  .annexure .annexture-info p{
    word-wrap: break-word;
  }
  .annexure .tooltip-container.d-block {
    display: block;
    animation: fade 0.2s linear forwards;
  }
  .annexure .annexture-info::-webkit-scrollbar {
    width: 10px;
  }

  .annexure .annexture-info::-webkit-scrollbar-track {tooltip-container

    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
  }

  .annexure .annexture-info::-webkit-scrollbar-thumb {
    background: var(--theme-color-primary); 
    border-radius: 10px;
  }
  .annex-info{
     overflow: hidden;
  }
  .annexture-btn-container-right>a.btn {
      margin-left: 12px;
      margin-right: 12p
   }
   .annexture-btn-container-right {
       justify-content: flex-end;
   }
   .annexture-btn-container-right>a.btn:first-of-type {
       margin-left: 0;
    }
    .annexture-btn-container-right>a.btn:last-of-type {
        margin-right: 0;
    }
    .annexture-btn-container-right a:hover{
        background-color: var(--theme-color-primary);
    }
     .annex-cms-form img:hover {
        cursor: pointer;
    }
    #annexture-desc ul{
    list-style: disc !important;
    padding-left: 2rem;
    }

   #annexture-desc ul li{
     list-style: disc;
   }

   #annexture-desc ol li{
    list-style: decimal;
   }

   #annexture-desc ol {
    list-style: decimal !important;
    padding-left: 2rem;
   }
    .annexure-inner .note-editable ul{
      list-style: disc !important;
      padding-left: 2rem;
    }

    .annexure-inner .note-editable ul li{
      list-style: disc;
    }

    .annexure-inner .note-editable ol li{
      list-style: decimal;
    }

    .annexure-inner .note-editable ol {
      list-style: decimal !important;
      padding-left: 2rem;
    }
    #annexture-desc a{
        color :var(--theme-color-primary);
    }
    .custom_tooltip:hover {
  		text-decoration: underline;
	}

    @media only screen and (max-width:768px){
       .tooltip-container{
            left: 50%!important;
            transform: translateX(-50%);
        } 
    }