body,html{
	margin:0;
	max-width:100vw;
}
button, a{
    outline: none !important;
    box-shadow: none !important;
	border: none;
	transition: all .3s ease;
}

.page{
    background: #E8E8E8;
}

.link{
    color: #6f44ca;
}
.wrap{
    overflow: hidden;
    margin: auto;
}
.large-wrap{
    max-width: 1200px;
    width: 100%;
    padding: 0 30px;
}

.auto-height{
	height: auto !important;
	min-height: auto !important;
}

.full-width{
	width: 100%;
}

.half-width {
    width: 50%;
}
.half-height {
    height: 50% !important;
}
.width-60 {
    width: 60%;
}
.width-40 {
    width: 40%;
}
.one-third-width {
    width: 33.333333%;
}
.one-fourth-width {
	width: 25%;
}

/* main page */
.step-blocks {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 -8px;
}
.step-block-container {
    padding: 8px;
}

.step-block {
    display: block;
    background: #FFF;
    height: 100%;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 0px 15px #0000001a;
}
.step-block .step-heading, .page-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--black-color);
}
.page-title {
    font-size: 18px;
}
.step-block .step-title {
    font-size: 16px;
    color: var(--black-color);
	display: flex;
}
.step-block .step-number {
	padding: 2px 13px;
    height: 30px;
    width: 30px;
    display: inline-flex;
    text-align: center;
    /*border: 2px solid #6f44ca;*/
	border: 2px solid #0C9C0C;
    border-radius: 50%;
    font-size: 14px;
    color: #FFF;
    font-weight: 700;
    /*background: #6f44ca;*/
	background: #0C9C0C;
    margin: -3px 10px 0 0;
    align-items: center;
    justify-content: center;
}

.download-app-btn{
    width: 100%;
    object-fit: contain;
    overflow: hidden;
    border-radius: 20px;
}

.page-heading {
    font-size: 2.9vw;
    font-weight: 800;
    line-height: 120%;
}

.main-btn {
    padding: 15px 35px;
    font-size: 14px;
    border-radius: 10px;
}

.scroll-to-btn {
    font-size: 16px;
    font-weight: 600;
    /*color: #8a58e5;*/
	color: #0C9C0C;
    cursor: pointer;
}
.scroll-to-btn img{
    width: auto;
    transition: all .3s ease;
}
.scroll-to-btn:hover img{
    transform: translateX(10px);
}

.code-input{
	letter-spacing: 30px !important;
	font-weight: 600;
	height: 45px;
	caret-color: transparent;
	padding: 10px 0 10px 30px;
	overflow: visible;
}
.code-input::placeholder{
    letter-spacing: 15px;
	position: absolute;
	left: 0;
	color: #888;
	font-weight: 800;
	width: 100%;
}

footer{
    background: #111318;
    color: #FFF;
    padding: 20px 0;
}

footer a, footer a:hover{
    color: #FFF;
    font-size: 14px;
}

footer a.underlined{
    text-decoration: underline !important;
}

footer .footer-text, footer .footer-text a, footer .footer-text a:hover{
    font-size: 12px !important;
    line-height: 100%;
}

.black-border{
    border-color: #383E4E !important;
}


/* dashboard */
.dash-icon{
    height: 30px;
}
.top-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}

.dash-heading {
    color: #666;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}
.dash-heading .dash-title{
    font-size: 20px;
    display: flex;
    align-items: center;
    align-content: center;
}
.dash-heading .dash-icon {
    display: inline-block;
    width: auto;
    background: #e91e63;
    border-radius: 10px;
    padding: 5px;
    width: 35px;
    height: 35px;
    margin-right: 10px;
    filter: invert();
}

.visible-mobile{
    display: none;
}

.form-btn:disabled{
	filter: grayscale(0.5) opacity(0.5);
	cursor: not-allowed;
}

@media screen and (max-width: 800px){
    .page-heading {
        font-size: 6vw;
    }
    .top-block{
        margin: 0 !important;
        text-align: center;
    }

}
