@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.2/css/all.min.css');
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,800|Lobster:400,600,800');
*{
	margin:0px;
	padding:0px;
	box-sizing: border-box;
	font-family: Montserrat;
	outline: none;
}
html{
	background-color: #fafafa;
}
header{
	text-align: center;
	background-color: white;
	padding:5px;
}
header img{
	height: 80px;
}
header .wrapper{
	display: grid;
	grid-template-columns: auto 1fr;
	margin: auto;
}
header .wrapper p{
	margin: auto 0px;
	text-align: right;
	font-size: 14px;
}
header .wrapper p a{
	color: red;
	padding: 5px;
}

.shadow{
	box-shadow: 0 2px 4px 0 rgba(0,0,0,0.10);
}
.shadow-md{
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12),
    0 2px 4px 0 rgba(0,0,0,0.08);
}
.shadow-lg{
	box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11),
    0 5px 15px 0 rgba(0,0,0,0.08);
}
.wrapper{
	width: 90%;
	max-width: 500px;
	margin: auto auto;
}
.header{
	position: fixed;
	width: 100%;
	height: auto;
	padding:10px 0px;
	background-color: white;
	border-bottom: 1px solid #ccc;
}
.header .wrapper{
	display: grid;
	grid-template-columns: 1fr 1fr;
}
.header p{
	font-size: 13px;
}
.header p a{
	color: #FF5722;
	text-decoration: none;
}
.header p:first-of-type{
	text-align: left;
}
.header p:last-of-type{
	text-align: right;
}
.container .heading{
	padding-bottom: 50px;
	text-align: center;
	font-family: Lobster;
	font-size: 30px;
	letter-spacing: 1px;
	color:#424242;
	font-weight: normal;
	max-width: 600px;
	margin:auto auto;
	line-height: 32px;
}
.container .heading img{
	width: 50px;
	vertical-align: middle;
}
.container{
	padding-bottom:100px;
	padding-top:50px;
}
.categories_container .grid{
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 10px;
}
.categories_container .grid .box{
	position: relative;
	min-height: 100px;
	background-color: white;
/*	box-shadow: 0 0 3px #ccc;*/
	padding:20px;
	text-align: center;
}
.categories_container .grid .box img{
	max-width: 60px;
}
.categories_container .grid .box p{
	padding-top:10px;
}
.categories_container label{
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
	text-align: left;
	padding:15px;
	background-color: rgba(165, 214, 167,0);
	transition: 0.3s all;
}
.categories_container label.active{
	background-color: rgba(165, 214, 167,0.2);
}
.categories_container label span{
	display: inline-block;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	border:1px solid transparent;
	transition: 0.3s all;
	background-color: #f1f1f1;
}
.categories_container label input[type=radio]{
	display: none;
}
.categories_container label input[type=radio]:checked + span{
	background:url('../images/tick.png') no-repeat center;
	background-size: 15px;
	background-color: #a5d6a7;
	border-color: #a5d6a7;
}

.btn_container{
	position: fixed;
	bottom:0px;
	left:0;
	width: 100%;
	padding:20px;
	background-color: white;
	border-top: 1px solid #ccc;
	overflow: hidden;
	transition: 0.4s bottom;
	z-index: 1;
}
.btn_container .wrapper{
	width: 100%;
/*	padding:0px 20px;*/
}
.btn_container .grid{
/*	height: 35px;*/
	display: grid;
	grid-template-columns: 1fr 1fr;
}
.btn_container .grid .right{
	text-align: right;
}
.btn_container .fa-arrow-left{
	display: none;
	font-size: 22px;
	cursor: pointer;
	color: #424242;
}
.btn_container button{
	background-color: #66BB6A;
	border:1px solid #66BB6A;
	color:white;
	padding:15px 30px;
	border:none;
	font-family: Montserrat;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	border-radius: 5px;
	font-weight: bold;
	transition: 0.3s opacity;
}
.btn_container button.back_btn{
	display: none;
	background-color: white;
	color:#424242;
	border:1px solid #000;
}
.btn_container button.disabled{
	opacity: 0.6;
}
.btn_container button.submit{
	display: none;
	transition: 0.3s all;
}
.btn_container button.cancel{
	background-color: white;
	color:#424242;
	border:1px solid #000;
}
.btn_container button.deactivate{
	background-color: #F44336 !important;
}
.btn_container button.load{
	font-size: 0px;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background: url('https://sangraha.net/s90/images/loading_white.gif') no-repeat center;
	background-size: 25px;
	background-color: #66BB6A;
	padding:0px;
}

/* Form Container */
.form_container .form{
	width: 100%;
	max-width: 350px;
	margin:auto auto;
}
.form_container .form .upload_container{
	text-align: center;
	margin-bottom: 20px;
	//margin-top: 10px;
}
.form_container .form .upload_container button{
	border:none;
/*	box-shadow:0 0 2px #ccc;*/
	background-color: white;
	color:#424242;
	width: 100%;
	padding:20px 30px;
	font-family: Montserrat;
	font-weight: bold;
}
.form_container .form .upload_container p{
	font-size: 12px;
	padding-top:5px;
	color:grey;
}
.form_container .form label{
	display: block;
	/*border:1px solid;*/
/*	box-shadow: 0 0 2px #ccc;*/
	padding:5px 10px;
	background-color: white;
}
.form_container .form label span{
	font-family: Montserrat;
}
.form_container .form label.terms{
	background-color: transparent;
	box-shadow: none;
	padding-top: 10px;
	font-size: 13px;
	color:#424242;
	user-select: none;
}
.form_container .form label.terms a{
	color:#81cfe0;
}
.form_container .form label.terms input[type=checkbox]{
	vertical-align: top;
	margin-right: 5px;
}
.form_container .form .input{
	display: block;
	width: 100%;
	background-color: transparent;
	border:none;
	padding:5px 0px;
	font-weight: 600;
	resize: none;
	padding-left: 17px;
	font-family: Montserrat;
	font-size: 13px;
	    background-size: 16px;
    background-position: 2px 8px;
}
.form_container .form .input.name{
	background:url('../images/name.png') no-repeat center left;
/*	background-size: 15px;*/
}
.form_container .form .input.email{
	background:url('../images/email.png') no-repeat center left;
/*	background-size: 15px;*/
}
.form_container .form .input.mobile{
	background:url('../images/mobile.png') no-repeat center left;
/*	background-size: 15px;*/
}
.form_container .form .input.address{
	background:url('../images/address.png') no-repeat;
	background-position: 0px 7px;
/*	background-size: 15px;*/
}
.form_container .form .input.country{
	background:url('../images/country.png') no-repeat  center left;
/*	background-size: 15px;*/
}

/* Error */
.error_container{
	position: fixed;
	bottom:-40px;
	left: 0;
	width: 100%;
	padding:15px 10px;
	background-color: #34495e;
	color:white;
	transition: 0.3s bottom;
}
.error_container .wrapper{
	position: relative;
}
.error_container i{
	position: absolute;
	right:10px;
	top:0px;
	cursor: pointer;
}
.error_container p{
	margin-right: 30px; 
	text-align:center;
}

.success_container{
	display: none;
	text-align: center;
}
.success_container img{
	width: 100px;
	transition:0.5 all;
	margin-bottom: 20px;
}

/* Question */
.form_container .question{
	padding:30px 20px;
	background:white;
	border-radius: 5px;

}
.form_container .question:nth-child(n+3){
	display: none;
}
.form_container .question:first-of-type{
  display:block;
}
.form_container .question p{
	display: inline-block;
	padding:5px 10px;
	margin-bottom: 20px;
	font-size: 14px;
	background-color: #424242;
	color:white;
	border-radius: 20px;
}
.form_container .question h1{
	color:#292929; 
	font-size: 22px;
	line-height: 30px;
/*	font-weight: normal;*/
}	
.form_container .question input[type=text]{
	width: 100%;
	resize: none;
	margin-top: 5px;
	border:none;
	border-bottom: 1px solid #ccc;
	padding:15px 2px;
	font-family: Montserrat;
	font-weight: 600;
	color: #292929;
	background-color: transparent;
}


/* Login Page */
.login_form_container .grid{
	max-width: 350px;
	margin:auto auto 20px;
	grid-template-columns: auto auto;

}
.login_form_container .box{
	min-height: auto !important;
	border-radius: 10px;
}
.login_form_container .box img{
	display: none;
}
.login_form_container .grid .box p{
	position: relative;
	bottom: 2px;
	padding-top:0px;
	vertical-align: middle;
	text-align: left;
	left: 25px;
}
.login_form_container label.active{
	border-radius: 10px;
}
.login_form_container label{
	padding-top:10px;
	padding-bottom:10px;
}
.login_form_container label span{
	position: relative;
	left: -1px;
	vertical-align: middle;
	top:5px;
}
.login_form_container .form{
	width: 100%;
	max-width: 350px;
	margin:auto auto;
}
.login_form_container .form label{
	position: static;
	display: block;
	/*border:1px solid;*/
/*	box-shadow: 0 0 2px #ccc;*/
	padding:5px 10px;
	background-color: white;
	cursor: default;
	margin-bottom:5px;
	border-radius: 5px;
}
.login_form_container .form label span{
	display: inline;
/*	font-family: Open Sans;*/
/*	text-transform: uppercase;*/
	font-size: 13px;
	background-color: transparent;
}
.login_form_container .form label.terms{
	background-color: transparent;
	box-shadow: none;
	padding-top: 10px;
	font-size: 13px;
	color:#424242;
	user-select: none;
}
.login_form_container .form label.terms a{
	color:#81cfe0;
}
.login_form_container .form label.terms input[type=checkbox]{
	vertical-align: top;
	margin-right: 5px;
}
.login_form_container .form .input{
	display: block;
	width: 100%;
	background-color: transparent;
	border:none;
	padding:5px 0px;
	font-weight: 600;
	resize: none;
	padding-left: 17px;
	font-family: Montserrat;
	font-size: 13px;
	margin-bottom: 5px;
	background-size: 16px !important;
    background-position: 2px 8px !important;
    padding-left: 22px;
    padding-top:7px;
}
.login_form_container .form .input.name{
	background:url('../images/name.png') no-repeat center left;
/*	background-size: 12px;*/
}
.login_form_container .form .input.email{
	background:url('../images/email.png') no-repeat center left;
/*	background-size: 12px;*/
}
.login_form_container .form .input.mobile{
	background:url('../images/mobile.png') no-repeat center left;
/*	background-size: 12px;*/
}
.login_form_container .form .input.address{
	background:url('../images/address.png') no-repeat;
	background-position: 0px 7px;
/*	background-size: 12px;*/
}
.login_form_container .form .input.country{
	background:url('../images/country.png') no-repeat  center left;
/*	background-size: 12px;*/
}
.login_form_container .form .input.password{
	background:url('../images/lock.png') no-repeat  center left;
/*	background-size: 12px;*/
}

/* Dashboard Container */
.dashboard_container .users_list table{
	width: 100%;
	text-align: left;
}
.dashboard_container .users_list table td, .dashboard_container .users_list table th{
	padding:5px;
	font-size: 13px;
}
.dashboard_container .users_list table th{
	background-color: #424242;
	color:white;
}
.dashboard_container .users_list table tr:nth-child(even){
	background-color: white;
	
}
.dashboard_container .users_list table td{
	border-bottom: 1px solid #ccc;
	line-height: 20px;
}
.dashboard_container .users_list table td button{
	display: block;
	width: auto;
	padding:5px 10px;
	border:none;
	background-color: transparent;
	border:1px solid #ccc;
	border-radius: 20px;
	text-transform: uppercase;
	font-size: 10px;
	letter-spacing: 1px;
	margin:auto auto;
	font-weight: bold;
}
.dashboard_container .users_list table td .activate{
	border:1px solid #4CAF50;
	color:#4CAF50;
}
.dashboard_container .users_list table td .deactivate{
	border:1px solid #F44336;
	color:#F44336;
}
.overlay{
	display: none;
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.8);
}
.not_active_notice{
	text-align: center;
	padding:20px;
}
.not_active_notice .heading{
	padding-bottom: 20px;
}
.not_active_notice img{
	width: 150px;
	padding-bottom: 00px;
}
.not_active_notice p{
	margin-top:10px;
	margin-bottom:10px;
	line-height: 22px;
}
.not_active_notice a{
	display: inline-block;
	margin-top:10px;
	background-color: #66BB6A;
	border:1px solid #66BB6A;
	color:white;
	padding:10px 20px;
	border:none;
	font-family: Montserrat;
	text-transform: uppercase;
	font-size: 12px;
	text-align: center;
	border-radius: 30px;
	letter-spacing: 1px;
	text-decoration: none;
	font-weight: bold;
	transition: 0.5s all;
}
.not_active_notice a.load{
	font-size: 0px;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: url('https://sangraha.net/s90/images/loading_white.gif') no-repeat center;
	background-size: 25px;
	background-color: #66BB6A;
	padding:0px;
}


/* New Radio */
.new_radio{
	display: block;
	padding:5px;
/*	font-weight: bold;*/
	/*background-color: white;
	margin-bottom: 10px;
	border-radius: 5px;
	padding-left: 15px;
	padding-bottom: 13px;*/
}
.new_radio span{
	display: inline-block;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border:1px solid #ccc;
	transition: 0.3s all;
	background-color: #f1f1f1;
	position: relative;
	top:9px;
	right:3px;
}
.new_radio input[type=radio]{
	display: none;
}
.new_radio input[type=radio]:checked + span{
	background:url('../images/tick.png') no-repeat center;
	background-size: 15px;
	background-color: #a5d6a7;
	border-color: #a5d6a7;
}
/* New Radio */

/* Timer */
.timer{
	width: 45px;
	height: 45px;
	border:2px solid;
	text-align: center;
	line-height: 41px;
	border-radius: 50%;
	font-weight: bold;
}
/* Timer */



