@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,700');
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,700');
*{
	margin:0;
	padding:0;
	font-family: Montserrat;
	box-sizing: border-box;
}
*:focus{
	outline: none;
}
:root{
	--background: #edf5e1;
	--color1: #edf5e1;
	--color2: #379683;
	--color3: #379683;
	--color4: #05386b;

	/*--background: #F4EDEA;
	--color1: #F4EDEA;
	--color2: #e74c3c;
	--color3: #e74c3c;
	--color4: #551605;*/
}
body{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
.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);
}
html{
	background-color: var(--background);
}
.wrapper{
	width: 90%;
	max-width: 1100px;
	margin:auto
}
.topbar{
	display: none;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-family: Poppins;
	color: #424242;
	font-weight: bold;
}
.notice{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: #2d3436;
	color: white;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 12px;
	z-index: 12;
}
.header{
	background-color: white;
	height: 80px;
	border-bottom: 1px solid #ccc;
}
.header .grid{
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-columns:1fr auto auto;
	grid-gap: 20px;
	/*border: 1px solid;*/
}
.header .grid .search{
	margin: auto 0px;
	color: var(--color2);
	font-size: 17px;
	border-right: 2px solid;
	padding-right: 15px;
	text-decoration: none;
}
.header .grid .logo{
	display: flex;
	align-items: center;
	height: 80px;
	max-width: 224px;
	/*width: 250px;
	height: 80px;
	background: url('https://i.ibb.co/cNmbmM0/Logo-Nand-N.png') no-repeat left center;
	background-size: contain;*/
	/*margin: auto;*/
}
.header .grid .logo img{
	max-width: 200px;
}
@media screen and (max-width:400px){
	.header .grid .logo img{
		max-width: 120px !important;
	}
}
@media screen and (max-width:320px){
	.header .grid .logo img{
		max-width: 100px !important;
	}
}
.header .grid .logo a{
	display: inline-block;
	border: 2px solid black;
	padding: 10px 20px;
	text-transform: uppercase;
	font-weight: bold;
	cursor: default;
	/*display: none;*/
}
.header .buttonContainer {
	text-align: right;
}
.header .buttonContainer p{
	float: right;
	margin-top: 30px;
	margin-left: 20px;
}
.header .buttonContainer p:last-of-type{
	margin-left: 0px;
}
.header .buttonContainer p a{
	color: red;
}
.header .buttonContainer p span{
	display: block;
	font-size: 12px;
}
.header .buttonContainer .user-link{
	position: relative;
	/*bottom: 7px;*/
}
.header p{
	line-height: normal !important;
}
.header .buttonContainer .user-link span{
	color: #424242 !important;
}
.header .buttonContainer p .link{
	color: var(--color2);
	text-decoration: none;
	font-size: 14px;
	display: inline-block;
}
.header .buttonContainer button{
	margin-top: 20px;
}

@media screen and (max-width:  800px){
	.header .buttonContainer button:nth-child(2){
		display: none;
	}
	.header .grid .logo a{
		font-size: 12px;
		padding: 10px 15px;
	}
	.header .buttonContainer p{
		margin-left: 10px;
		font-size: 13px;
	}
}

.btn{
	display: inline-block;
	padding: 12px 25px;
	border: none;
	background-color: var(--color2);
	color: #424242;
	border-radius: 5px;
	cursor: pointer;
	transition: 0.2s opacity;
	color: white;
}
.btn:hover,
.btn:focus{
	opacity: 0.9;
}
.btn2{
	background-color: var(--color4);
	color: white;
}
.heading{
	text-align: center;
	margin-bottom: 20px;
	color: #424242;
	position: relative;
}
.heading span{
	position: absolute;
	bottom: -20px;
	left: 50%;
	width: 100px;
	transform: translateX(-50%);
	height: 5px;
	border-radius: 5px;
	background-color: var(--color4);
	background-color: var(--color2);
}

/* Homepage */
.gradient{
	/* Green */
	background: #67B26F;  
	background: -webkit-linear-gradient(to right, #4ca2cd, #67B26F); 
	background: linear-gradient(to right, #4ca2cd, #67B26F); 

	/* Red */
	background: #e74c3c;  
	background: -webkit-linear-gradient(to right, #e74c3c 40%, #000000); 
	background: linear-gradient(to right, #e74c3c 40%, #000000); 

	/* 
	New 
	linear-gradient(to right, #4da0b0 -22%, #d39d38)
	*/

}
.gradient2{
	/* Red */
	background: #e74c3c;  
	/*background: -webkit-linear-gradient(to right, #000000, #e74c3c); 
	background: linear-gradient(to right, #000000, #e74c3c); */
}
.homepageContainer{
	position: relative;
	height: calc(100% - 80px);
	height: calc(100% - 120px);
	height: 450px;
}
.homepageContainer .particles{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.homepageContainer .taglineContainer{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	width: 90%;
	max-width: 1100px;
	z-index: 11;
}
.homepageContainer .taglineContainer h1{
	margin-bottom: 10px;
	font-size: 40px;
	color: white;
}
.homepageContainer .taglineContainer p{
	color: white;
	color: var(--color1);
	font-size: 22px;
}
.newsSection{
	padding: 50px 0px;
}
.newsSection .wrapper{
	max-width: 900px;
}
.newsSection h1{
	text-align: center;
	margin-bottom: 20px;
	color: #424242;
	position: relative;
}
.newsSection h1 span{
	position: absolute;
	bottom: -20px;
	left: 50%;
	width: 100px;
	transform: translateX(-50%);
	height: 5px;
	border-radius: 5px;
	background-color: var(--color4);
	background-color: var(--color2);
}
.newsSection .grid{
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 20px;
	margin-top: 100px;
}
@media screen and (max-width: 800px){
	.newsSection .grid{
		grid-template-columns: 1fr;
	}
}
.newsSection .grid .box .image{
	height: 250px;
	background-color: white;
	background-size: cover;
	background-position: center;
}
.newsSection .grid .box{
	text-decoration: none;
}
.newsSection .grid .box:hover .content{
	color: var(--color4);
	color: var(--color2);
}
.newsSection .grid .box .content{
	background-color: var(--color1);
	padding: 10px 0px;
	padding-right: 10px;
	position: relative;
	bottom: 30px;
	width: 90%;
	font-weight: bold;
	line-height: 24px;
	color: #424242;
}
.newsSection .btn-container{
	text-align: center;
}
.newsSection button{
	border: 2px solid var(--color4);
	color: var(--color4);
	background-color: transparent;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 11px;
	margin-top: 20px;

	border: 2px solid var(--color2);
	color: var(--color2);
}

.globeSection{
	height: 300px;
	background: url('../images/globe.gif') no-repeat center;
	background-size: contain;
	background-color: white;
}
/* Homepage */


/* Search Page */
.searchPageContainer{
	height: calc(100% - 80px);
	height: calc(100% - 120px);
	min-height: 500px;
}
.searchPageContainer .searchContainer{
	z-index: 1;
}
.searchPageContainer .grid{
	display: grid;
	grid-template-columns: 30% 1fr;
	grid-gap: 5px;
}
.searchPageContainer .input-container{
	position: relative;
}
.searchPageContainer .input-container .searchResult{
	display: none;
	position: absolute;
	top: calc(100% + 5px);
	width: 100%;
	min-height: 150px;
	background-color: rgba(0,0,0,0.2);
	padding: 10px 0px;
	max-height: 200px;
	overflow: auto;
}
.searchPageContainer .input-container .searchResult a{
	display: block;
	text-decoration: none;
	text-align: left;
	padding: 12px 20px;
	color: white;
}
.searchPageContainer .input-container .searchResult a span{
	display: block;
    font-size: 13px;
    padding-top: 3px;
    color: #c3c3c3;
}
.searchPageContainer .input-container .searchResult a:hover,
.searchPageContainer .input-container .searchResult a:focus{
	background-color: rgba(0,0,0,0.21);
}
.searchPageContainer .input-container .searchResult .noResult{
	text-align: center;
	padding-top: 40px;
	font-size: 16px;
}
.searchPageContainer .input-container .searchResult .loading{
	height: 150px;
	background: url('https://sangraha.net/s90/images/loading_white.gif') no-repeat center;
	background-size: 40px;
}
.searchPageContainer input{
	width: 100%;
	padding: 20px;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	font-weight: bold;
	color: var(--color4);
}
.searchPageContainer .input-container .fa-search{
	position: absolute;
	top: 14px;
	right: 20px;
	font-size: 25px;
	color: var(--color3);
}
.dropdownContainer{
	position: relative;
	display: flex;
	align-items: center;
	background-color: white;
	border-radius: 5px;
	cursor: pointer;
} 
.dropdownContainer span{
	display: block;
	text-align: left;
	position: relative;
	padding: 0px 15px;
	width: 100%;
	font-weight: bold;
	color: var(--color4);
}
.dropdownContainer span i{
	position: absolute;
	right: 15px;
	color: var(--color4);
}
.dropdownContainer ul {
	display: none;
	position: absolute;
	top: 100%;
	width: 100%;
	background-color: white;
	border-radius: 5px;
	margin-top: 5px;
	max-height: 300px;
	overflow: auto;
}
.dropdownContainer li{
	display: block;
	list-style-type: none;
	text-align: left;
	padding: 15px;
	border-bottom: 1px solid #ccc;
	font-size: 14px;
}
.dropdownContainer li:hover{
	/*color: var(--color4);*/
	background-color: var(--color1);
}
@media screen and (max-width: 700px){
	.searchPageContainer .grid{
		grid-template-columns: 140px 1fr;
	}
}
/* Search Page */

/* Login & Signup Page  */
.loginPageContainer{
	height: calc(100% - 80px);
	background: var(--color1);
}
.loginPageContainer .heading{
	color: #424242 !important;
}
.loginPageContainer .heading span{
	width: 150px;
}
.loginPageContainer .formContainer{
	margin-top: 80px;
}
.formContainer{
	padding: 50px;
	background-color: white;
	margin: auto;
	max-width: 450px;
	border-radius: 10px;
	text-align: left;
}
.formContainer label{
	display: block;
	margin-bottom: 15px;
}
.formContainer label span{
	color: #424242;
	font-size: 15px;
}
.formContainer .col2{
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 10px;
}
.formContainer .col2.center{
	max-width: 300px;
	margin:auto;
	grid-gap: 0px;
}
.input{
	width: 100%;
	border: none;
	padding: 10px 0px;
	border-bottom: 1px solid #ccc;
	font-weight: bold;
	resize: none;
}
.input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
}
.formContainer button{
	font-weight: bold;
}
.formContainer .section-heading {
	position: relative;
	width: calc(100% + 100px);
	max-width: none;
	left:-50px;
	padding:10px 50px;
	margin:5px 0px;
	border-top:1px solid #ccc;
	border-bottom:1px solid #ccc;
	background-color: #f1f1f1;
	margin-top: 20px;
	margin-bottom: 20px;
}
.formContainer .section-heading span{
	color:#292929;
	font-weight: 600;
}
.radio{
	margin-bottom: 10px;
	cursor: pointer;
}
.radio span{
	display: inline-block;
	width: 35px;
	height: 35px;
	border:2px solid var(--color2);
	border-radius: 50%;
	vertical-align: middle;
	margin-right: 5px;
}
.radio input[type=radio]{
	display: none;
}
.radio input[type=radio]:checked + span{
	background: url('https://sangraha.net/s90/images/tick2.png') no-repeat center;
	background-size: 20px;
	background-color: var(--color2);
	border-color:var(--color2);
}

.radio-small{
	margin-bottom: 10px;
	cursor: pointer;
	margin-right: 15px;
	font-size: 14px;
}
.radio-small span{
	display: inline-block;
	width: 25px;
	height: 25px;
	border:2px solid var(--color2);
	border-radius: 50%;
	vertical-align: middle;
	margin-right: 5px;
}
.radio-small input[type=radio]{
	display: none;
}
.radio-small input[type=radio]:checked + span{
	background: url('https://sangraha.net/s90/images/tick2.png') no-repeat center;
	background-size: 15px;
	background-color: var(--color2);
	border-color:var(--color2);
}


.load_btn{
	background:url('https://sangraha.net/s90/images/loading_white.gif') no-repeat center;
	background-color: var(--color2);
	background-size: 25px;
	height: 40px;
	font-size: 0px;
}
.error_container{
	display: none;
	position: fixed;
	top:0;
	left:0;
	width:100%;
	padding:15px 20px;
	background-color: rgba(0,0,0,0.8);
	color: white;
	z-index: 11;
}
.error_container p{
	text-align: center;
	padding:0px 20px;
	margin:0;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: bold;
	letter-spacing: 1px;
}
.error_container i{
	position: absolute;
	right:15px;
	top:50%;
	transform: translateY(-50%);
	cursor: pointer;
	padding:5px;
} 
.error_container.success{
	background-color: #4caf81;
}
.success_container{
	display: none;
	text-align: center;
}
.success_container img{
	max-width: 110px;
	margin-bottom: 10px;
}
.success_container p{
	font-size: 20px !important;
	line-height: 26px;
	color:#424242 !important;
}
/* Login & Signup Page  */

/* Submit Request */
.submitRequestContainer .loginContainer{
	padding-top: 50px;
	padding-bottom: 50px;
	top: auto;
	transform: translate(-50%, 0px);
}
/* Submit Request */

/* Footer */
footer{
	background-color: #fff;
	border-top: 1px solid #ccc;
}

footer .grid{
	display: grid;
	grid-template-columns: 1fr auto;
	padding: 30px 0px;
	grid-gap: 30px;
}
footer .grid a{
	text-decoration: none;
	color: var(--color2);
}
footer .grid > div:last-of-type{
	text-align: right;
	font-size: 13px;
}
footer .links a{
	display: inline-block;
	text-decoration: none;
	color: var(--color2);
	padding-right: 10px;
	margin-right: 10px;
	border-right: 1px solid;
	font-size: 13px;
}
footer .links a:last-of-type{
	border-right: none;
}
@media screen and (max-width: 800px){
	footer .grid{
		grid-template-columns: 1fr;
	}
	footer .grid div{
		text-align: center !important;
		font-size: 14px;
	}
	footer .grid div:last-of-type{
		margin-top: 5px;
	}
}
/* Footer */

/* News Page */
.newsHeader{
	padding: 40px 0px;
}
.newsHeader .grid{
	display: grid;
	grid-template-columns: auto 1fr;
	grid-gap: 30px;
}
.newsHeader .image{
	width: 150px;
	height: 150px;
	border-radius: 50%;
	border: 2px solid white;
	background-color: #f1f1f1;
	background-position: center;
	background-size: cover;
}
.newsHeader .name{
	margin: auto 0px;
	color: #fff;
	font-size: 25px;
	font-weight: bold;
	max-width: calc(100% - 370px);
}
.newsContentGrid .grid{
	display: grid;
	grid-template-columns: 1fr 350px;
	grid-gap: 20px;
	min-height: 500px;
}
.newsContentGrid .mainContent{
	line-height: 24px;
	padding-top: 40px;
	padding-bottom: 50px;
	padding-right: 30px;
	/*padding: 40px;*/
	/*margin-top: 30px;*/
	/*margin-bottom: 30px;*/
	text-align: justify;
	background-color: transparent !important;
	color: #424242;
}
.newsContentGrid .mainContent p, .newsContentGrid .mainContent div{
	transition: 0.3s all;
	font-family: Montserrat !important;
	font-size: 15px !important;
}
.newsContentGrid .mainContent p span, .newsContentGrid .mainContent div span{
	font-family: Montserrat !important;
	font-size: 15px !important;
}
.newsContentGrid .connectionContainer .close{
	display: none;
}
.newsContentGrid .mainContent img,
.newsContentGrid .mainContent iframe,
.newsContentGrid .mainContent video{
	max-width: 100% !important;
}
.newsContentGrid .connectionContainer .box{
	background-color: transparent;
	min-height: 450px;
	position: sticky;
	top: 10px;
	border-radius: 5px;
	perspective: 1000px;
	margin-top: -150px;
}
.newsContentGrid .connectionContainer .box .inner{
	position: relative;
	width: 100%;
	min-height: 450px;
	transition: transform 0.6s;
	transform-style: preserve-3d;
}
.newsContentGrid .connectionContainer .box .inner.rotate{
	transform: rotateY(180deg);
}
.newsContentGrid .connectionContainer .front{
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background-color: white;
}
.newsContentGrid .connectionContainer .back{
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: rotateY(180deg);
	background-color: white;
}
.newsContentGrid .connectionContainer .box .head{
	text-align: center;
	padding: 30px;
	color: white;
}
.newsContentGrid .connectionContainer .back .head{
	position: relative;
	padding: 25px;
}
.newsContentGrid .connectionContainer .back .head i{
	position: absolute;
    top: 15px;
    left: 15px;
    font-size: 20px;
    color: #f1f1f1;
    cursor: pointer;
}
.newsContentGrid .connectionContainer .back .image{
	width: 70px;
	height: 70px;
	border-radius: 50%;
	border: 2px solid white;
	margin: auto;
	background-size: cover;
	background-position: center;
	background-color: #f1f1f1;
}
.newsContentGrid .connectionContainer .box .head .count{
	font-size: 30px;
	font-weight: bold;
}
.newsContentGrid .connectionContainer .box .search{
	display: none;
}
.newsContentGrid .connectionContainer .box .search input{
	display: block;
	margin: 0px auto 15px;
	border: 1px solid #ccc;
	padding: 15px;
	border-radius: 5px;
	font-weight: normal;
}
.newsContentGrid .connectionContainer .box .body{
	padding: 30px;
	overflow: auto;
	height: 300px;
}
.newsContentGrid .connectionContainer .box .section h1{
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 14px;
	padding-top: 10px;
}
.newsContentGrid .connectionContainer .back .section h1{
	padding-bottom: 10px;
	padding-top: 0px;
}
.newsContentGrid .connectionContainer .back .section .link{
	color: var(--color2);
	text-decoration: none;
	font-size: 14px;
	display: inline-block;
	padding-bottom: 3px;
	border-bottom: 2px solid;
}
.newsContentGrid .connectionContainer .back .section p{
	font-size: 13px;
	line-height: 20px;
	color: #424242;
	padding-top: 10px;
}
.newsContentGrid .connectionContainer .box .section h1 .count{
	border: 1px solid;
	display: inline-block;
	padding: 2px 6px;
	color: var(--color3);
	border-radius: 4px;
	font-size: 12px;
	vertical-align: middle;
	position: relative;
	left: 10px;
	bottom: 2px;
}
.newsContentGrid .connectionContainer .box .section .list{
	margin-top: 10px;
}
.newsContentGrid .connectionContainer .box .section .list a{
	position: relative;
	display: block;
	text-decoration: none;
	color: grey;
	margin-bottom: 10px;
	padding-left: 20px;
	font-size: 14px;
	cursor: pointer;
}
.newsContentGrid .connectionContainer .box .section .list a:after{
	display: inline-block;
	content: '';
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 1px solid;
	position: absolute;
	left: 0px;
	top: 50%;
	transform: translateY(-50%);
}
.newsContentGrid .connectionContainer .box .section .showMore{
	color: var(--color3);
	text-decoration: none;
	font-size: 14px;
	display: inline-block;
	padding-bottom: 3px;
	border-bottom: 2px solid;
	margin-bottom: 10px;
	cursor: pointer;
	display: none;
}

.newsContentGrid2 .grid{
	grid-template-columns: 1fr;
	max-width: 700px;
	margin: auto;
}


.newsContentGrid .grid .mainContent h1:first-of-type{
	display: none;
}
.newsContentGrid2 .grid .mainContent h1:first-of-type{
	display: block;
	line-height: 36px;
}
.newsContentGrid2 .grid .mainContent img{
	display: block;
	max-width: 100%;
	margin: auto;
}
.newsContentGrid .grid .mainContent a{
	color: var(--color3);
	text-decoration: none;
	font-weight: bold;
}
.highlight{
	background: rgb(100 176 122 / 42%);
    padding: 10px;
    width: calc(100% + 20px);
    position: relative;
    right: 10px;
	background-color: #ff57224a; /* Red Theme */
	background-color: #f443363b; /* Pink */
	background-color: #ffc10752; /* Yellow */
}

.showConnectionsBtn{
	display: none;
	position: fixed;
	bottom: 30px;
	left: 50%;
	padding: 12px 20px;
	border-radius: 30px;
	background-color: var(--color2);
	color: white; 
	font-weight: bold;
	cursor: pointer;
	transform: translateX(-50%);
	opacity: 1;
	transition: 0.3s all;
	z-index: 1;
	width: 250px;
	text-align: center;
}
.showConnectionsBtn:hover,
.showConnectionsBtn:focus{
	opacity: 0.9;
}

@media screen and (max-width:  1000px){
	.newsContentGrid .grid{
		grid-template-columns: 1fr;
		grid-gap: 0px;
	}
	.newsContentGrid .connectionContainer{
		position: fixed;
		top: 0px;
		bottom: 0px;
		left: 0px;
		right: 0px;
		background-color: rgba(0, 0, 0, 0.8);
		min-height: 600px;
		overflow: auto;
		padding-top: 30px;
		padding-bottom: 30px;
		display: none;
		z-index: 2;
		transition: 0.0s all;
	}
	.newsContentGrid .connectionContainer .box{
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 90%;
		max-width: 400px;
		margin: auto;
	}
	.newsContentGrid .connectionContainer .close{
		display: block;
		position: absolute;
		top: 20px;
		right: 20px;
		background-color: var(--color1);
		color: #424242;
		width: 40px;
		height: 40px;
		z-index: 11;
		border-radius: 50%;
		line-height: 40px;
		text-align: center;
		font-size: 20px;
		cursor: pointer;
	}
	.newsContentGrid .mainContent{
		padding-right: 0px;
	}
	.showConnectionsBtn{
		display: block;
	}
}


@media screen and (max-width:  800px){
	.newsContentGrid .mainContent h1{
		font-size: 20px !important;
		line-height: 26px !important;
	}
	.newsHeader .grid{
		grid-gap: 20px;
	}
	.newsHeader .image{
		width: 100px;
		height: 100px;
		border-radius: 50%;
		border: 2px solid white;
		background-color: #f1f1f1;
		background-position: center;
		background-size: cover;
	}
	.newsHeader .name{
		margin: auto 0px;
		color: #fff;
		font-size: 20px;
		font-weight: bold;
		max-width:100%;
	}
}
/* News Page */

/* Dashboard */
.dashboard_container{
	padding: 40px 0px;
}
.dashboard_container .grid{
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 20px;
	max-width: 100%;
}
.dashboard_container .grid .right{
	overflow: hidden;
	min-height: 600px;
}
.dashboard_container .links_container a{
	display: block;
	margin-bottom: 10px;
	text-decoration: none;
	color: var(--color2);
	border-left: 4px solid transparent;
	padding: 10px;
	font-weight: normal;
}
.dashboard_container .links_container .active{
	font-weight: 600;
	color: var(--color2);
	border-color: var(--color2);
}
.dashboard_container .links_container{
	overflow: auto;
	white-space: nowrap;
	max-width: 100%;
}
.dashboard_container .links_container a{
	display: inline-block;
	border-left: none;
	border-bottom: 4px solid transparent;
}
.dashboard_container .right .wrapper{
	width: 100%;
}

.dashboard_container .grid .right .heading{
	text-align: left;
	font-size: 25px;
}
.dashboard_container .grid .right .heading span{
	left: 0px;
	transform: none;
	height: 1px;
	width: 100%;
	background-color: #ccc;
}
.dashboard_container .usersContainer{
	padding: 20px 0px;
	max-width: 100%;
	overflow: auto;
}
.dashboard_container .usersContainer table{
	/*display: none;*/
	/*min-width: 1500px;*/
	width: 100%;
	max-width: 100%;
}
.dashboard_container .usersContainer table th{
	padding:10px;
	background-color: #424242;
	color: white;
	text-transform: uppercase;
	font-size: 11px;
	text-align: left;
	letter-spacing: 1px;
}
.dashboard_container .usersContainer table td{
	padding:10px;
	font-size: 13px;
}
.dashboard_container .usersContainer table tr:nth-child(odd){
	background-color: white;
}
.dashboard_container .tableDetails .grid{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 20px;
	min-height: auto;
}
@media screen and (max-width: 800px){
	.dashboard_container .tableDetails .grid{
		grid-template-columns: 1fr 1fr;
	}
}
.dashboard_container .tableDetails i{
	color: var(--color3);
}
.dashboard_container .tableDetails b{
	color: #424242;
}
.dashboard_container .red{
	display: inline-block;
	padding: 5px;
	border-radius: 5px;
	color: #e74c3c;
	border: 1px solid;
	/*color: white;*/
	text-transform: uppercase;
	font-size: 9px;
	letter-spacing: 1px;
	font-weight: bold;
	cursor: default;
}
.dashboard_container .green{
	display: inline-block;
	padding: 5px;
	border-radius: 5px;
	color: white;
	border: 1px solid;
	color: #27ae60;
	text-transform: uppercase;
	font-size: 9px;
	letter-spacing: 1px;
	font-weight: bold;
	cursor: default;
}
.dashboard_container .change-status{
    padding: 7px 10px;
    color: #424242;
    border-radius: 5px;
    background-color: transparent;
    border: 1px solid;
    font-weight: bold;
    font-size: 13px;
}
.dashboard_container .filters{
	padding-top: 20px;
}
@media screen and (max-width: 600px){
	.dashboard_container .filters{
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

}
.dashboard_container .statsContainer{
	display: grid;
	grid-template-columns: 40% 1fr 1fr;
	grid-gap: 10px;
	padding-top: 20px;
}
.dashboard_container .statsContainer .box{
	position: relative;
	padding: 40px;
	background-color: white;
	text-align: center;
	border-radius: 7px;
	padding-bottom: 90px;
}
.dashboard_container .statsContainer .box .extra{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	/*background-color: #fafafa;*/
	display: grid;
	grid-template-columns: 1fr 1fr;
	font-size: 14px;
	padding: 10px;
	border-top: 1px solid #ccc
}
.dashboard_container .statsContainer .box .extra h2{
	color: #424242;
	font-size: 18px;
}
.dashboard_container .statsContainer .box .extra span{
	font-size: 11px;
}
.dashboard_container .statsContainer .box h1{
	color: var(--color2);
}
@media screen and (max-width: 600px){
	.dashboard_container .statsContainer{
		grid-template-columns: 1fr;
	}
}
.dt-buttons{
	display: none !important;
}
.export-btn{
	float: right;
	border: 1px solid;
	background-color: transparent;
	color: var(--color2);
	font-weight: bold;
	padding-top: 10px;
	padding-bottom: 10px;
}

.popupContainer{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.8);
	overflow: auto;
	display: none;
}
.popupContainer .fa-times{
	position: fixed;
	top: 20px;
	right: 20px;
	color: white;
	font-size: 35px;
	cursor: pointer;
}
.popupContainer .box{
/*	position: absolute;*/
/*	top: 50%;*/
/*	left: 50%;*/
/*	transform: translate(-50%, -50%);*/
	background-color: #fafafa;
	padding: 50px;
	width: 90%;
	max-width: 600px;
	border-radius: 5px;
	margin:50px auto;
}
.popupContainer .box h1{
	font-size: 22px;
}
.popupContainer .categories{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 10px;
	padding-top: 30px;
	padding-bottom: 30px;
}
.popupContainer .categories label{
	cursor: pointer;
}
.popupContainer .categories input{
	margin-right: 8px;
}
.popupContainer form{
	padding-top: 30px;
}
.popupContainer form label{
	display: block;
	margin-bottom: 10px;
}
.popupContainer form label span{
	font-size: 14px;
}
.popupContainer form .input{
	background-color: transparent;
}
/* Dashboard */

/* Category Page */
.categoriesContainer{
	padding-top: 30px;
	padding-bottom: 30px;
	min-height: 600px;
}
.categoriesContainer .grid{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	max-width: 100%;
	padding-top: 30px;
	min-height: auto;
	grid-gap: 20px !important;
}
.categoriesContainer .box{
	text-decoration: none;
	color: black;
	background-color: white;
}
.categoriesContainer .box .image{
	height: 200px;
	background-color: #f1f1f1;
	background-size: cover !important;
	background-position: center !important;

}
.categoriesContainer .box .content{
	padding: 10px;
	background-color: white;
}
.categoriesContainer .box h1{
	font-size: 15px;
	line-height: 22px;
	margin-bottom: 5px;
}
.categoriesContainer .box p,
.categoriesContainer .box li{
	font-size: 13px;
	line-height: 19px;
}

@media screen and (max-width: 800px){
	.categoriesContainer .grid{
		grid-template-columns: 1fr 1fr;
	}
}
@media screen and (max-width: 500px){
	.categoriesContainer .grid{
		grid-template-columns: 1fr;
	}
}
/* Category Page */

/* Download PDF */
.downloadPDF{
	color: var(--color2); text-decoration: none;
	font-size: 13px;
	display: inline-block;
	padding-bottom: 3px;
	border-bottom: 2px solid;

	border-width: 1px;
    margin-bottom: 20px;
    background: white;
    padding: 10px 20px;
    border-bottom: 0px;
    border-radius: 20px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.10);
    font-weight: bold !important;
}
/* Download PDF */