@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600&display=swap');

/*
	font-family: 'Rubik', sans-serif;
*/


:root{
	--themeBlueColor: #09d68a;
	--themeGreyColor: #5B6E88;
	--lightBlueColor: rgba(9, 67, 214, .05);
	--shadowColor: rgba(9, 67, 214, .1);
	--headingColor: #111111;
	--paragraphColor: #444444;
	--borderColor: #cccccc;
	--borderRadius: 5px;
}

::-moz-selection { 
	background-color: var(--themeBlueColor);
	color: white;
}

::selection {
	background-color: var(--themeBlueColor);
	color: white;
}

body{
	font-family: 'Rubik', sans-serif;
	font-size: 12px;
	color: var(--paragraphColor);
	line-height: 1.6em;
	font-weight: 400;
	background-color: var(--lightBlueColor);
}

a, input, button, select, textarea, .transition{
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

input:focus, button:focus, select:focus, textarea:focus, :focus{
	outline: none;
}

a{
	display: inline-block;
	text-decoration: none;
}

a:hover{
	text-decoration: none;
}

ul, ol{
	list-style-type: none;
	padding: 0px;
	margin: 0px;
}

strong{
	font-weight: 600
}

h1, h2, h3, h4, h5, h6{
	color: var(--headingColor);
	font-weight: 600
}

/*
	Buttons
*/

.capsuleButton{
	background-color: var(--themeBlueColor);
	color: white;
	font-weight: 500;
	text-transform: uppercase;
	border: none;
	padding: 10px 40px;
	border-radius: 30px;
}

.capsuleButton:hover{
	background-color: var(--lightBlueColor);
	color: var(--themeBlueColor);
}

.buttonStyle{
	background-color: var(--themeBlueColor);
	color: white;
	font-weight: 500;
	text-transform: uppercase;
	padding: 10px 20px;
	border: none;
}

.buttonStyle:hover{
	background-color: var(--themeGreyColor);
}

.buttonStyle:disabled{
	background-color: var(--lightBlueColor);
	color: var(--themeGreyColor);
	font-weight: 400;
}

.buttonStyleSmall{
	background-color: var(--themeBlueColor);
	color: white;
	font-weight: 500;
	text-transform: uppercase;
	padding: 6px 12px;
	border: none;
}

.buttonStyleSmall:hover{
	background-color: var(--themeGreyColor);
}

.buttonStyleSmall:disabled{
	background-color: var(--lightBlueColor);
	color: var(--themeGreyColor);
	font-weight: 400;
}

.buttonStyleSmallDanger{
	background-color: crimson;
	color: white;
	font-weight: 500;
	text-transform: uppercase;
	padding: 6px 12px;
	border: none;
}

.buttonStyleSmallDanger:hover{
	background-color: var(--themeGreyColor);
}

.buttonStyleSmallDanger:disabled{
	background-color: var(--lightBlueColor);
	color: var(--themeGreyColor);
	font-weight: 400;
}

.simpleBlueLink{
	color: var(--themeBlueColor);
	position: relative;
}

.simpleBlueLink:after{
	content: "";
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 0%;
	height: 1px;
	background-color: var(--themeBlueColor);
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.simpleBlueLink:hover:after{
	width: 100%;
}

/*
	Color
*/

.blueGradient{
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1d6fec+0,30bce2+100 */
	background: rgb(29,111,236); /* Old browsers */
	background: -moz-linear-gradient(left,  rgba(29,111,236,1) 0%, rgba(48,188,226,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  rgba(29,111,236,1) 0%,rgba(48,188,226,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  rgba(29,111,236,1) 0%,rgba(48,188,226,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1d6fec', endColorstr='#30bce2',GradientType=1 ); /* IE6-9 */
}

.pinkGradient{
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f94a68+0,f6768b+100 */
	background: rgb(249,74,104); /* Old browsers */
	background: -moz-linear-gradient(left,  rgba(249,74,104,1) 0%, rgba(246,118,139,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  rgba(249,74,104,1) 0%,rgba(246,118,139,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  rgba(249,74,104,1) 0%,rgba(246,118,139,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f94a68', endColorstr='#f6768b',GradientType=1 ); /* IE6-9 */	
}

.greenGradient{
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#039767+0,4dd6aa+100 */
	background: rgb(3,151,103); /* Old browsers */
	background: -moz-linear-gradient(left,  rgba(3,151,103,1) 0%, rgba(77,214,170,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  rgba(3,151,103,1) 0%,rgba(77,214,170,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  rgba(3,151,103,1) 0%,rgba(77,214,170,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#039767', endColorstr='#4dd6aa',GradientType=1 ); /* IE6-9 */	
}

.orangeGradient{
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f76a2d+0,f0a65f+100 */
	background: rgb(247,106,45); /* Old browsers */
	background: -moz-linear-gradient(left,  rgba(247,106,45,1) 0%, rgba(240,166,95,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  rgba(247,106,45,1) 0%,rgba(240,166,95,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  rgba(247,106,45,1) 0%,rgba(240,166,95,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f76a2d', endColorstr='#f0a65f',GradientType=1 ); /* IE6-9 */	
}

.textGrey{
	color: var(--themeGreyColor);
}

/*
	Shadow
*/

.largeShadow{
	-webkit-box-shadow: 0 0 20px 0 var(--shadowColor);
	box-shadow: 0 0 20px 0 var(--shadowColor);	
}

/*
	General
*/

.sectionPadding{
	padding: 50px 0
}

.headingStyle h5{
	font-size: 18px;
	font-weight: 500;
}

/*
	Main Styling
*/

#loginWrapper{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.loginForm label{
	font-weight: 400;
	font-size: 14px;
	text-transform: uppercase;
	color: var(--paragraphColor);
	display: block;
	margin: 0 0 5px 0;
}

.loginForm input[type="text"], .loginForm input[type="password"]{
	padding: 10px;
	border: none;
	width: 60%;
	border-bottom: 1px solid var(--borderColor);
	margin-bottom: 20px;
}

.form-check-input:checked{
	background-color: var(--themeBlueColor);
}

.topHeader{
	background-color: white;
	border-bottom: 1px solid var(--borderColor);
	padding: 15px 0;
	position: relative;
	z-index: 10;
}

.searchForm{
	position: relative;
}

.searchForm i{
	position: absolute;
	top: 12px;
	left: 10px;
	color: var(--themeGreyColor);
}

.searchForm input[type="search"]{
	padding: 7px 7px 7px 30px;
	border-radius: 30px;
	border: none;
	width: 100%;
	background-color: var(--shadowColor);
	color: var(--headingColor);
}

.notification{
	position: relative;
}

.notificationCount{
	position: absolute;
	right: -2px;
	top: -2px;
	width: 16px;
	height: 16px;
	line-height: 16px;
	text-align: center;
	background-color: var(--themeBlueColor);
	border-radius: 50%;
	font-size: 9px;
	color: white;
}

.notificationIcon{
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border: 1px solid var(--lightBlueColor);
	position: relative;
	border-radius: 50px;
	display: inline-block;
	cursor: pointer;
}

.notificationOptions{
	position: absolute;
	top: 56px;
	background-color: white;
	width: 230px;
	right: 0;
	text-align: left;
	display: none;
}

.notificationOptions li{
	padding: 10px;
	border-bottom: 1px solid var(--borderColor);
	font-size: 14px;
	line-height: 1.3em;
}

.notificationOptions li span{
	display: block;
	font-size: 12px;
	color: var(--themeGreyColor);
}

.userProfile{
	position: relative;
}

.userProfile img{
	cursor: pointer;
}

.userLinks{
	position: absolute;
	top: 56px;
	background-color: white;
	width: 230px;
	right: 0;
	display: none;
}

.userLinks h5{
	text-align: center;
	margin: 10px 0;
	font-weight: 500;
	font-size: 18px;
}

.userLinks ul li a:link, .userLinks ul li a:visited{
	padding: 8px 10px;
	border-top: 1px solid var(--borderColor);
	display: block;
	color: var(--paragraphColor);
}

.userLinks ul li a:hover, .userLinks ul li a:active{
	color: var(--themeBlueColor);
}

.navigation{
	background-color: white;
	position: relative;
	z-index: 9;
}

.navbar-light .navbar-nav .nav-link{
	color: var(--headingColor);
	padding: 10px 20px;
}

.dropDown>i{
	font-size: 11px;
	color: var(--headingColor);
	display: inline-block;
	margin: 0 0 0 3px;
	position: absolute;
	top: 8px;
	right: -2px;
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 30px;
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link.active{
	color: var(--themeBlueColor);
}

.dropDown:hover i, .dropDown .active+ul+i{
	color: var(--themeBlueColor);
}

.dropDown{
	position: relative;
}

.dropDown ul{
	position: absolute;
	width: 200px;
	background-color: white;
	display: none;
}

.dropDown ul li{
	position: relative;
}

.dropDown ul li a:link, .dropDown ul li a:visited, .dropDown ul ul li a:link, .dropDown ul ul li a:visited{
	padding: 5px;
	color: var(--paragraphColor);
	font-size: 14px;
	border-bottom: 1px solid var(--borderColor);
	display: block;
}

.dropDown ul li:last-child a, .dropDown ul ul li:last-child a{
	border-bottom: none;
}

.dropDown ul li a:hover, .dropDown ul li a:active, .dropDown ul ul li a:hover, .dropDown ul ul li a:active{
	background-color: var(--themeBlueColor);
	color: white;
}

.dropDown ul ul{
	left: 100%;
	top: 0;
	position: absolute;
	display: none
}

.subDropDown{
	position: relative;
}

.subDropDown i{
	font-size: 11px;
	right: 0;
	position: absolute;
	top: 1px;
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 30px;
}

.dropDown:hover>ul{
	display: block;
}

.subDropDown:hover ul{
	display: block;
}

.statsBox{
	position: relative;
	padding: 15px;
	border-radius: var(--borderRadius);
}

.statsBox .smallHeading{
	font-size: 14px;
	text-transform: uppercase;
	color: white;
	font-weight: 500;
}

.statsBox .price{
	margin: 20px 0 0px 0;
	font-size: 16px;
	color: white;
	font-weight: 500;
}

.statsBox small{
	color: white
}

.statsBox .report{
	position: absolute;
	top: 50px;
	right: 15px;
	color: white;
}

.optionBox{
	padding: 15px;
	border-radius: var(--borderRadius);
	background-color: white;
}

.tableStyle{
	width: 100%
}

.tableStyle tr th{
	background-color: var(--themeGreyColor);
	color: white;
	padding: 5px;
	font-weight: 500;
	border: 1px solid var(--themeGreyColor);
}

.tableStyle tr td{
	padding: 8px;
	border: 1px solid var(--themeGreyColor);
	color: var(--themeGreyColor);
}

.tableStyle tr:nth-child(odd) td{
	background-color: var(--lightBlueColor);
}

.optionBoxForm input[type="text"]{
	width: 70%;
	padding: 7px;
	border: 1px solid var(--themeGreyColor);
	float: left;
}

.optionBoxForm input[type="text"]:focus{
	border-color: var(--themeBlueColor);
}

.optionBoxForm button{
	width: 30%;
	padding: 7px;
	border: 1px solid var(--themeBlueColor);
	background-color: var(--themeBlueColor);
	color: white;
}

.optionBoxForm button:hover{
	background-color: var(--themeGreyColor);
	border-color: var(--themeGreyColor);
}

.breadcrumb li{
	color: var(--themeGreyColor);
}

.fieldSetStyle{
	border: 1px solid var(--themeGreyColor);
	padding: 20px;
	margin: 20px 0 30px 0;
}

.fieldSetStyle legend{
	background-color: white;
	color: var(--themeBlueColor);
	font-size: 15px;
	font-weight: 500;
	margin: -30px 0 20px 0;
	padding: 0 0 0 10px;
}

.formStyle label{
	font-weight: 400;
	font-size: 14px;
	text-transform: uppercase;
	color: var(--paragraphColor);
	display: block;
	margin: 0 0 5px 0;
}

.formStyle input[type="text"], .formStyle input[type="number"], .formStyle input[type="email"], .formStyle input[type="password"], .formStyle input[type="tel"], .formStyle input[type="file"], .formStyle input[type="date"], .formStyle select, .formStyle textarea{
	padding: 10px;
	width: 100%;
	border: 1px solid var(--borderColor);
	margin: 0 0 20px 0;
}

.formStyle select, .formStyle textarea{
	padding: 12px;
}

.formStyle input[type="text"]:focus, .formStyle input[type="number"]:focus, .formStyle input[type="email"]:focus, .formStyle input[type="password"]:focus, .formStyle input[type="tel"]:focus, .formStyle input[type="file"]:focus, .formStyle select:focus, .formStyle textarea:focus{
	border-color: var(--themeBlueColor);
}

.formStyle .form-check-input{
	width: 20px;
	height: 20px;
	border-radius: 0;
	margin: 0;
}

.formStyle .form-check-input+label{
	display: inline-block;
	margin: 0px 0 0 10px;
	position: relative;
	top: -2px;
}

.formStyle .form-check-input:checked{
	background-color: var(--themeBlueColor);
	border-color: var(--themeBlueColor);
}

.responsiveTable{
	overflow-x: auto;
}

#passworddisplay, #passworddisplay1, #passworddisplay2{
	position: absolute;
	right: 0;
	background-image: url(../images/svgs/passwordshow.svg);
	background-repeat: no-repeat;
	background-position: center center;
	width: 46px;
	height: 46px;
	top: 0
}

#passworddisplay.passwordicon, #passworddisplay1.passwordicon, #passworddisplay2.passwordicon{
	background-image: url(../images/svgs/passwordhide.svg);
}

.customPagination .page-item:first-child .page-link{
	width: 44px;
	height: 44px;
	line-height: 30px;
	background-color: var(--themeBlueColor);
	border-radius: 50%;
	margin: 0 10px 0 0;
	color: white;
	text-align: center;
}

.customPagination .page-item.disabled{
	opacity: .5
}

.customPagination .page-item.disabled .page-link{
	color: white !important;
}

.customPagination .page-item:last-child .page-link{
	width: 44px;
	height: 44px;
	line-height: 30px;
	background-color: var(--themeBlueColor);
	border-radius: 50%;
	margin: 0 0 0 10px;
	color: white;
	text-align: center;
}

.customPagination .page-item .page-link{
	width: 44px;
	height: 44px;
	line-height: 30px;
	font-weight: 500;
	color: var(--themeBlueColor);
	border-radius: 50%;
	margin: 0 5px;
	text-align: center;
}

.customPagination .page-item.active .page-link{
	background-color: var(--lightBlueColor);
	border-color: var(--lightBlueColor);
	color: var(--themeBlueColor);
}

.customPagination .page-item .page-link:hover{
	background-color: var(--lightBlueColor);
	border-color: var(--lightBlueColor);
	color: var(--themeBlueColor);
}

@media screen and (min-width: 100px) and (max-width: 767px) {

	.loginForm input[type="text"], .loginForm input[type="password"]{
		width: 100%;
	}

	.noMobile{
		display: none !important;
	}

	.logo{
		text-align: center;
	}

	.searchForm{
		margin: 20px 0 20px 0;
	}

	.notificationOptions{
		left: 0;
		right: auto;
	}

	.navigation{
		background-color: var(--shadowColor);
	}

	.navigation .container-fluid{
		padding: 0;
	}

	.navbar-light .navbar-toggler{
		width: 100%;
		border: none;
		padding: 0
	}

	.navbar-light .navbar-toggler:focus{
		box-shadow: none;
	}

	.navbar-light .navbar-toggler small{
		float: left;
		padding: 10px 0 10px 0;
		color: var(--headingColor);
	}

	.navbar-light .navbar-toggler span{
		float: right;
		margin-top: 3px;
	}

	.navbar-light .navbar-nav .nav-link{
		padding: 10px 0
	}

	.dropDown>a>i{
		margin: 6px 0 0 3px;
		float: right;
	}

	.dropDown ul{
		width: 100%;
		position: static;
	}

	.dropDown .subDropDown a i{
		margin: 1px 0 0 3px;
	}

	.dropDown:hover>ul{
		display: none;
	}

	.subDropDown:hover ul{
		display: none;
	}

	.dropDown ul ul{
		position: static;
		width: auto;
		margin: 0 10px;
	}

	.statsBox, .optionBox {
		margin-bottom: 30px;
	}

	.optionBoxForm input[type="text"]{
		width: 55%;
	}

	.optionBoxForm button{
		width: 45%;
	}

}

@media screen and (min-width: 768px) and (max-width: 1023px) {

	.loginForm input[type="text"], .loginForm input[type="password"]{
		width: 100%;
	}

	.noIpad{
		display: none !important;
	}

	.navigation{
		background-color: var(--shadowColor);
	}

	.navigation .container-fluid{
		padding: 0;
	}

	.navbar-light .navbar-toggler{
		width: 100%;
		border: none;
		padding: 0
	}

	.navbar-light .navbar-toggler:focus{
		box-shadow: none;
	}

	.navbar-light .navbar-toggler small{
		float: left;
		padding: 10px 0 10px 0;
		color: var(--headingColor);
	}

	.navbar-light .navbar-toggler span{
		float: right;
		margin-top: 3px;
	}

	.navbar-light .navbar-nav .nav-link{
		padding: 10px 0
	}

	.dropDown>a>i{
		margin: 6px 0 0 3px;
		float: right;
	}

	.dropDown ul{
		width: 100%;
		position: static;
	}

	.dropDown .subDropDown a i{
		margin: 1px 0 0 3px;
	}

	.dropDown:hover>ul{
		display: none;
	}

	.subDropDown:hover ul{
		display: none;
	}

	.dropDown ul ul{
		position: static;
		width: auto;
		margin: 0 10px;
	}

	.statsBox, .optionBox {
		margin-bottom: 30px;
	}

}
.form-control{
	    font-size: 0.8rem;
}