/* ========================================================================== */
/* RESET CSS
/* ========================================================================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video
{
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, 
aside, 
details, 
figcaption, 
figure, 
footer, 
header, 
hgroup, 
menu, 
nav, 
section
{
	display: block;
}

:root
{
	/* main text colors */
	--color-text-1: #332E2F;
	--color-text-2: #332E2F;
	--color-text-3: #285dab;
	--color-label: #A8A692;
	

	/* inverse text colors */
	--color-text-inverse-1: #FFFFFF;
	--color-text-inverse-2: #F3F3F3;
	
	/* background colors */
	--color-background-1: #EFEFED;
	--color-background-1: #F5F5F3;
	--color-background-2: #F9BF08;
	--color-background-2-lite: #FCCB2A;
	--color-background-3: #BAB7AA;
	--color-background-4: #96947F;
	--color-background-4: #7F7E6E;

	--color-sidebar: #E2E1DC;


	/* button 1 */
	--color-btn-background-1: #332E2F;
	--color-btn-background-1: #423F3C;
	--color-btn-border-1: #332E2F;
	--color-btn-border-1: #423F3C;
	--color-btn-text-1: #FFF;
	/* button 1 - hover */
	--color-btn-hover-background-1: #111;
	--color-btn-hover-border-1: #111;
	--color-btn-hover-text-1: #FFF;
	
	/* button 2 */
	--color-btn-background-2: #DD3717;
	--color-btn-border-2: #DD3717;
	--color-btn-text-2: #FFF;
	/* button 2 - hover */
	--color-btn-hover-background-2: #BC280B;
	--color-btn-hover-border-2: #BC280B;
	--color-btn-hover-text-2: #FFFFFF;
		
}



/* ========================================================================== */
/* FONTS
/* ========================================================================== */


/* ========================================================================== */
/* RESET
/* ========================================================================== */
html
{
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	background: var(--color-background-1);
}

body
{
	margin: 0;
	font-family: 'Rubik', sans-serif;
	font-weight: 300;
	font-size: 16px;
	line-height: 21px;
	color: var(--color-text-1);
}


html,
body {
  margin: 0;
  padding: 0;
  height: 100%; /* needed for container min-height and bottom button alignment on mobile design */
}


@media only screen and (max-width: 599px)
{
	body
	{
		font-size: 15px;
		line-height: 19px;
	}
}

img
{
	/* Responsive images (ensure images don't scale beyond their parents) */
	max-width: 100%;
	/* Part 1: Set a maxium relative to the parent */
	/*width: auto\9; */
	/* IE7-8 need help adjusting responsive images */
	height: auto;
	/* Part 2: Scale the height according to the width, otherwise you get stretching */
	vertical-align: middle;
	border: 0;
	-ms-interpolation-mode: bicubic;
	font-size: 10px;
	color: rgba(0,0,0,0.2);
	text-align: center;
	
}


/* ========================================================================== */
/* TYPOGAPHY
/* ========================================================================== */
h1, h2, h3, h4, h5, h6,
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a
{
	font-family: 'Rubik', sans-serif;
	color: var(--color-text-2);
	font-weight: 500;
}


h1
{
	font-size: 36px; 
	line-height: 44px;
	margin-bottom: 12px;	 
	font-weight: normal;
	text-align: center;
}
	
h2
{
	font-size: 28px; 
	line-height: 36px;
	margin-bottom: 12px;	 
	font-weight: normal;
	text-align: center;
}
	
h3
{
	font-size: 28px; 
	line-height: 36px;
	margin-bottom: 10px; 
	font-weight: normal;
}
	
h4
{
	font-size: 22px; 
	line-height: 27px;   
	margin-bottom: 5px;
}
	
h5
{ 
	font-size: 20px; 
	line-height: 24px; 
	margin-bottom: 5px;
}
	
h6
{ 
	font-size: 13px; 
	line-height: 24px; 
	margin-bottom: 5px;
}
	
p
{
	margin-bottom: 20px;
}

em
{
	font-style: italic;
}

small
{
	font-size: 90%;
}
	
sub
{ 
	vertical-align: sub; 
	font-size: 75%; 
}
	
sup
{ 
	vertical-align: super; 
	font-size: 75%; 
}
	
	
p.last,
h1.last,
h2.last,
h3.last,
h4.last,
h5.last
{
	margin-bottom: 0;
}

/* ========================================================================== */
/* TYPOGAPHY - LINKS
/* ========================================================================== */
a
{ 
	color: #222;
	text-decoration: none; 
}
	
a:visited
{ 
	text-decoration: none; 
}

/* Remove the gray background color from active links in IE 10. */
a:active
{
	background: transparent; /* 1 */
}
	
a:hover, 
a:focus
{
	outline: 0; 
	text-decoration: underline;
}	

/* ========================================================================== */
/* Typography - Lists
/* ========================================================================== */
ul
{ 
	list-style-type: disc;
	margin-bottom: 20px; 
	margin-left: 15px;
}

li {}


/* ========================================================================== */
/* BANNER
/* ========================================================================== */


/* ========================================================================== */
/* LOGO
/* ========================================================================== */




/* ========================================================================== */
/* LOGIN
/* ========================================================================== */
#login
{
	color: var(--color-text-1);
	background-color: var(--color-background-2);
	background-size: cover;
}

#login p
{
	font-size: 16px;
	text-align: center;
	color: var(--color-text-1);
}

#login h3
{
	text-align: center;
	color: var(--color-text-1);
}

#login .login-logo
{
	z-index: 1;
	background: none;
	width: 230px;
	margin: 0px auto 20px auto;
	
}

#login .login-wrap
{
  position: absolute; 
  top: 36%;
  left: 50%;
 	padding: 0px 20px 0px 20px;
	background: none;
	width: 100%;
	overflow: hidden;
	padding: 20px 0px 20px 0px;
	z-index: 1;
	transform: translate(-50%, -40%);
	-webkit-transform: translate(-50%, -40%);
}

#login .login-frame
{
	width: 100%;
	margin: 0 auto;
	padding: 15px 40px 15px 40px;
	background: rgba(5, 5, 5, 0.0);
}

#login form
{
	padding: 20px 0px 0px 0px;
}

#login .form-buttons
{
	padding: 10px 0px 0px 0px;
}

#login .input-group
{
	margin-top: 15px;
	position: relative;
	border-collapse: initial;
  display: block;
	overflow: hidden;
}



#login .input-group-icon
{
	position: absolute;
	height: 100%;
	top: 11px;
	left: 9px;
	z-index: 1000;
}

#login .input-group-icon i
{
	color: #BAB7AA;
	font-size: 18px;
	line-height: 23px;
	text-align: center;
	width: 22px;
}

#login input[type="text"],
#login input[type="password"]
{
	font-size: 18px;
	line-height: 22px;
	padding: 10px 0px 12px 40px;
	border: 1px solid #BAB7AA;
	background: #fff;
	border-radius: 3px; 
}

#login input[type="text"]:focus,
#login input[type="password"]:focus
{
	border: 1px solid #BAB7AA;
	outline: 0;		
	background: #fff;
}

#login .forgot-password
{
	font-size: 14px;
	float: right;
	padding: 51px 0px 0px 0px;
}

#login .forgot-password a
{
	color: rgba(0,0,0,0.4);
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

#login .forgot-password a:hover
{
	color: rgba(0,0,0,0.7);
}

#login .footer
{
	text-align: center;
	color: rgba(0,0,0,0.3);
	font-size: 12px;
	position: fixed;
	bottom: 30px;
	height: 30px;
	width: 100%;
	margin: 0px auto 0px auto;
	padding: 5px 0px 5px 0px;
	z-index: 0;
}

#login .btn
{ 
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 15px;
	color: var(--color-btn-text-1);
	background-color: var(--color-btn-background-1);
	padding: 11px 25px 12px 25px; 
	margin: 10px 5px 20px 0px;
	display: inline-block;
	text-transform: uppercase;
	text-decoration: none !important;
	cursor: pointer;
	border-radius: 3px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

#login a.btn
{
	color: #fff;
}

#login .btn:focus
{
	outline: 0;
	color: var(--color-btn-hover-text-1);
}

#login .btn:hover
{ 
	color: var(--color-btn-hover-text-1);;
	background-color: var(--color-btn-hover-background-1);
}



@media (min-width: 480px)
{
	#login .login-frame
	{
		width: 430px;
	}
}

#login .notes i
{
	color: #EA532A; /* red */
	color: #fff; /* yellow */
	font-size: 14px;
	line-height: 13px;
	padding: 0px 5px 0px 0px;
}

#login .notes
{
	color: #fff;
	font-size: 13px;
	line-height: 16px;
	padding: 10px 0px 0px 2px;
}

#login .notes strong
{
	font-weight: bold;
}








.widget-tiles-wrapp
{
	overflow: hidden;
	margin: 10px -5px 20px -5px;
}

.widget-tiles-group
{
	overflow: hidden;
	margin: 0px 0px 0px 0px;
	width: 50%;
	float: left;
}

.widget-tiles-wrapp a
{
	margin: 0px;
	padding: 0px;
}


.widget-tile
{
	width: calc(100% - 10px);
	background: var(--color-background-4);
	margin: 5px 5px 5px 5px;
	padding: 0px 0px 0px 0px;
	float: left;
	color: #fff;
	font-weight: 400;
	text-align: center;
	position: relative;
	cursor: pointer;
  -webkit-transition: all 0.28s ease-out;
  transition: all 0.28s ease-out;
}

.widget-tile strong
{
	font-weight: 600;
}

.widget-tile:after
{
  content: "";
  display: block;
  padding-bottom: 100%;
}

.widget-tile-caption
{
	position: absolute;
	padding: 0px 10px 0px 10px;
	bottom: 14px;
	width: 100%;
	font-size: 16px;
	line-height: 16px;
}

.widget-tile-icon
{
	position: absolute;
	padding: 0px 0px 0px 0px;
	top: 44%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%); /* Safari and Chrome */
	-moz-transform: translate(-50%, -50%); /* Firefox */
	-ms-transform: translate(-50%, -50%); /* IE 9 */
	-o-transform: translate(-50%, -50%); /* Opera */
	transform: translate(-50%, -50%);
	
}

.widget-tile-icon i
{
	padding: 0px 0px 0px 0px;
	font-size: 30px;
	line-height: 30px;
}

.widget-tile-caption span
{
	margin: 0px 0px 0px 10px;
	display: inline-block;
}



.widget-tile.color1-tile
{
}

.widget-tile.color2-tile
{
	background: #F9BF08;
	color: var(--color-text-1);
}

.widget-tile.color3-tile
{
}

.widget-tile.color4-tile
{
}


@media (min-width: 450px) 
{
	.widget-tile-caption
	{
		font-size: 20px;
		line-height: 22px;
	}
}


@media (min-width: 560px) 
{
	.widget-tile-caption
	{
		font-size: 20px;
		line-height: 22px;
	}
}

@media (min-width: 768px) 
{
	.widget-tile
	{
		width: calc(50% - 10px);
		float: left;
		color: #fff;
	}

	.widget-tile-caption
	{
		font-size: 18px;
		line-height: 20px;
	}

}

@media (min-width: 992px) 
{
	.widget-tiles-wrapp
	{
		margin: 12px 7px 20px 8px;
	}
}

@media (min-width: 1280px) 
{
	.widget-tile
	{
		width: calc(33.3333% - 10px);
		float: left;
		color: #fff;
	}
}





/* ========================================================================== */
/* Typography - Forms
/* ========================================================================== */
.input-form
{
	padding: 10px 0px 0px 0px; 
	margin: 0px 0px 0px 0px; 
}

.input-form [class*="col-xs"]
{
	margin-bottom: 3px;
}

.input-form [class*="col-sm"]
{
	margin-bottom: 3px;
}

.input-form [class*="col-md"]
{
	margin-bottom: 3px;
}

.input-form [class*="col-lg"]
{
	margin-bottom: 3px;
}

.input-form [class*="col-xl"]
{
	margin-bottom: 3px;
}



.input-form
{
	padding: 10px 0px 0px 0px; 
	margin: 0px 0px 0px 0px; 
}

.input-form .form-buttons
{
	padding: 40px 0px 0px 0px; 
	margin: 0px 0px 0px 0px;
	overflow: hidden;
}

.input-form .form-buttons a
{
	padding: 0 !important;
}


.input-form .input-wrap
{
	width: 100%;
	margin: 0px 0px 0px 0px; 
	padding: 0px 0px 0px 0px; 
	position: relative;
}

.input-form .label-wrap
{
	color: var(--color-label);
	display: block;
	height: 19px;
	padding: 0px 0px 0px 0px; 
	margin: 3px 0px 0px 0px; 
	overflow: hidden;
	background: #none;
}



.input-form .required:after
{
	content: "*";
	color: #EA532A;
	font-size: 16px;
	line-height: 10px;
}

.input-form  .label,
.input-form  .error-msg
{
	color: var(--color-label);
	font-size: 13px;
	font-weight: 300;
	line-height: 17px;
	margin: 0px 5px 0px 0px;
	display: initial;
	font-weight: normal;
	padding: 0px 0px 0px 2px;
	text-align: left;
	vertical-align: baseline;
	white-space: nowrap;	
	text-transform: none;
	float: left;
}

.input-form .error-msg
{
	color: #EA532A;
}



.input-form .input-error,
.input-form .selectize-control.input-error .selectize-input
{
	border: 1px solid rgba(234,83,42,0.7);
}


.input-form .selectize-control.input-error
{
	border: none;
}

.input-form .input-error-text
{
	font: 11px "Open Sans", Arial, sans-serif; 
	color: #990000;
	height: 0px;
	margin: -20px 0px 0px 2px;
	padding: 0px 0px 0px 0px;
	font-weight: normal;
}

.input-form .btn
{
	/*
	margin: 20px 8px 0px 0px;
	*/
}

.input-form .inline-button 
{
	margin: 22px 8px 0px 0px;
	padding: 12px 22px 12px 20px; 
}

form {}

fieldset {}

form p {}


.input-form select,
.input-form button,
.input-form input[type="button"],
.input-form input[type="reset"],
.input-form input[type="submit"],
.input-form input[type="radio"],
.input-form input[type="checkbox"] { cursor: pointer; }

/*
 * 1. stop safari from overwriting input styles
 */	

.input-form input,
.input-form textarea,
.input-form select
{
	display: block;		
	width: 100%;
	border: 1px solid #ddd;
	margin: 0px 0px 0px 0px;
	padding: 10px 7px 10px 10px;
	background-color: #fff;
	font-size: 18px;
	line-height: 22px;
	color: #111;
	position: relative;
	border-radius: 3px;
	
	-webkit-appearance: none; /* 1 */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;

	-webkit-transition: border 0.3s;
	transition: border 0.3s;
}

.input-form input[type="text"]:focus,
.input-form input[type="password"]:focus,
.input-form input[type="email"]:focus,
.input-form input[type="url"]:focus,
.input-form textarea:focus
{
/*
	border: 1px solid #aaa;
	outline: 0;		
*/
}

.input-form select:focus
{
	outline: none;
}

.input-form textarea
{ 
	min-height: 100px; 
	overflow: auto;
}

.input-form .radio,
.input-form .checkbox
{
	min-height: 18px;
	padding-left: 18px;
}

.input-form .radio input[type="radio"],
.input-form .checkbox input[type="checkbox"]
{
	float: left;
	margin-left: -18px;
}

*::-webkit-input-placeholder
{
	font-weight: 300;
	color: var(--color-label);
}
*:-moz-placeholder
{
    /* FF 4-18 */
	font-weight: 300;
	color: var(--color-label);
}
*::-moz-placeholder
{
    /* FF 19+ */
	font-weight: 300;
	color: var(--color-label);
}
*:-ms-input-placeholder
{
    /* IE 10+ */
	font-weight: 300;
	color: var(--color-label);
}







/* ========================================================================== */
/* Buttons
/* ========================================================================== */
.btn
{ 
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 15px;
	color: var(--color-btn-text-1);
	background-color: var(--color-btn-background-1);
	padding: 14px 22px 15px 20px; 
	margin: 12px 10px 0px 0px;
	min-width: 140px;
	width: 100%;
	display: inline-block;
	text-transform: uppercase;
	text-decoration: none !important;
	border: none;
	cursor: pointer;
	border-radius: 3px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

@media (min-width: 560px) 
{
  .btn
	{
		width: initial;
		padding: 9px 22px 10px 20px; 
  }
}


.btn i
{ 
	padding: 0px 0px 0px 0px; 
	margin: 0px 6px 0px 0px;
}

a.btn
{
	color: var(--color-btn-text-1);
}

.btn:focus
{
	outline: 0;
	color: var(--color-btn-hover-text-1);
}

.btn:hover
{ 
	color: var(--color-btn-hover-text-1);
	background-color: var(--color-btn-hover-background-1);
}



.btn-red
{
	color: var(--color-btn-text-2);
	background: var(--color-btn-background-2);
}

.btn-red:hover
{
	color: var(--color-btn-hover-text-2);
	background: var(--color-btn-hover-background-2);
}

.btn-link
{
	position: relative;
	padding: 11px 5px 0px 28px;
	margin: 0px 25px 0px 0px;
	font-size: 16px;
	float: left;
	cursor: pointer;
	color: var(--color-text-1);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.btn-link i
{
	position: absolute;
	left: 2px;
	top: 5px;
	font-size: 22px;
	color: var(--color-background-4);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.btn-link:hover i
{
	color: var(--color-text-1);
}

.btn-link:hover
{
	color:#000;
}
/* ========================================================================== */
/* PAGE CONTAINER
/* ========================================================================== */








/* ========================================================================== */
/* DASHBOARD
/* ========================================================================== */


/* ========================================================================== */
/* SIDEBAR
/* ========================================================================== */







/* ========================================================================== */
/* TABLE
/* ========================================================================== */
.data-grid .data-grid-title
{
	font-family: 'Rubik', sans-serif;
	font-weight: 500;
	text-transform: none;
	font-size: 16px; 
	line-height: 20px;
	border-bottom: 1px none #ddd;
	padding: 25px 15px 0px 0px;
	color: #285DAB;
}

.data-grid .data-grid-title span
{
	font-size: 22px; 
	color: #FF6600;
	padding: 0px 0px 0px 1px;
}


.data-grid table
{
	font-weight: normal;
	width: 100%;
	cellspacing: 0;
	cellpadding: 0;
	margin: 10px 0px 10px 0px;
	border: 1px solid rgba(0,0,0,0.8);
}

.data-grid table tr[data-href]
{
	cursor: pointer;
}

.data-grid thead
{
	text-align: left;
	color: var(--color-text-1);
	font-size: 13px;
	line-height: 16px;
	font-weight: 500;
	text-transform: uppercase;
	background: var(--color-background-2-lite);
}

.data-grid thead,th
{
	vertical-align:middle;
	padding: 5px 10px 5px 10px;
	border-bottom: 1px solid rgba(0,0,0,0.2);
}

.data-grid tfoot
{
	text-align: left;
	color: var(--color-text-1);
	line-height: 16px;
}

.data-grid tfoot td
{
	padding: 6px 10px 7px 10px;
	border-top: 1px solid rgba(0,0,0,0.2);
}

.data-grid tbody
{
	background: #fff;
}

.data-grid tbody td
{
	padding: 9px 10px 10px 10px;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}


.data-grid table tbody tr:nth-child(even)
{
	background: rgba(185, 182, 169, 0.00);
	padding: 9px 10px 10px 10px;
}




.data-grid tbody tr:hover,
.data-grid table tbody tr:hover
{
  background: rgba(185, 182, 169, 0.1);
  background: rgba(28, 156, 255, 0.2);
  background: rgba(249, 191, 8, 0.2);
  background: rgba(186, 159, 63, 0.1);
}

.data-grid table .table-avatar
{
	border-radius: 50%;
	height: 28px;
	margin: 0;
	width: 38px;
}

.data-grid table .inactive
{
	opacity: 0.5;
}

.data-grid table .canceled
{
	opacity: 0.3;
	text-decoration: line-through;
}

.data-grid-footer
{
	padding: 0px 0px 5px 0px;
	overflow: hidden;
}

.data-grid-footer a
{
	padding: 0 !important;
	text-decoration: none;
}

.data-grid table
{
	border: 1px solid rgba(0,0,0,0.1) !important;
}


/* ========================================================================== */
/* MOBILE DATA LIST
/* ========================================================================== */
.mobile-data-list
{
	overflow: hidden;
	background: #fff;
	margin: -10px -15px 12px -15px;
}

.mobile-data-list a
{
	padding: 0 !important;
}

.mobile-data-list a:hover,
.mobile-data-list a:active
{
	color: initial !important;
}

.mobile-data-list .data-list-item
{
	font-weight: 300;
	font-size: 15px;
	line-height: 18px;
	overflow: hidden;
	height: 58px;
	border-bottom: 1px solid #BAB7AA;
	border-bottom: 1px solid rgba(0,0,0,0.15);
}

.mobile-data-list .data-list-item .load-time
{
	margin: 11px 0px 0px 20px;
	float: left;
	overflow: hidden;
}


.mobile-data-list .data-list-item .load-time strong
{
	font-weight: 400;
}

.mobile-data-list .data-list-item .load-qty
{
	font-size: 28px;
	line-height: 30px;
	font-weight: 600;
	text-align: right;
	float: right;
	padding: 17px 0px 0px 0px;
	overflow: hidden;
}

.mobile-data-list .data-list-item .load-unit
{
	font-size: 14px;
	line-height: 30px;
	font-weight: 600;
	width: 30px;
	float: right;
	padding: 22px 0px 0px 0px;
	margin: 0px 5px 0px 2px;
	overflow: hidden;
}

.mobile-data-list .data-red .load-qty,
.mobile-data-list .data-red .load-unit
{
	color: #DF4A25;
}


/* ========================================================================== */
/* CSS LOADER
/* ========================================================================== */
#loading-fullscreen
{
	background: rgba(0, 0, 0, 0.6);
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	z-index: 99999;	
	
}

#loading-spinner
{
  position: fixed;
  top: 50%;
  left: 50%;
  /* bring your own prefixes 
  transform: translate(-50%, -50%);
	*/
  margin-top: -30px;
  margin-left: -30px;
}

.loading-container
{
	overflow: hidden;
	margin: 20px 0px 30px 0px;
	
}

.loading-text
{
  position: fixed;
  top: 50%;
  left: 50%;
	width: 100px;
	text-align: center;
	font-size: 16px;
	color: #fff;
  margin-top: 65px;
  margin-left: -35px;
}

#loading-data
{
	overflow: hidden;
}

.loader
{
  margin: 0px auto;
  font-size: 20px;
  position: relative;
  text-indent: -9999em;
  border-top: 0.5em solid rgba(0,0,0,0.1);
  border-right: 0.5em solid rgba(0,0,0,0.1);
  border-bottom: 0.5em solid rgba(0,0,0,0.1);
  border-left: 0.5em solid var(--color-background-2);
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}

.loader,
.loader:after
{
  border-radius: 50%;
  width: 4em;
  height: 4em;
}

@-webkit-keyframes load8
{
  0%
	{
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  
	100%
	{
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load8
{
  0%
	{
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  
	100%
	{
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}











/* ========================================================================== */
/* PAGE CONTAINER
/* ========================================================================== */

#page-container
{
  margin: 0 auto;
	padding-top: 65px;
  width: 100%;
  min-width: 320px;
  -webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

@media screen and (min-width: 992px)
{
	#page-container
	{
		padding-top: 105px;
	}

  #header-navbar.sidebar-open
	{
    padding-left: 230px;
    padding-left: 0px;
  }

  #page-container.sidebar-open
	{
    padding-left: 230px;
  }
	
  #page-container.sidebar-close,
  #header-navbar.sidebar-close
	{
    padding-left: 0px;
  }
}

#page-container .page-content
{
	padding: 8px 5px 5px 5px;
}


/* ========================================================================== */
/* MOBILE HEADER NAVBAR
/* ========================================================================== */
#mobile-header-navbar
{
	display: block;
	height: 65px;
	background-color: var(--color-background-2);
	margin: 0px 0px 0px 0px;
	border-bottom: 1pt none #ddd;
	overflow: hidden;
	position: fixed;
	width: 100%;
	z-index: 1000;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

#mobile-header-navbar .navbar-controls
{
	position: absolute;
	height: 65px;
	width: 65px;
	right: 0px;
	top: 0px;
}

#mobile-header-navbar .navbar-logo
{
	display: block;
	width: 200px;
	margin: 12px 0px 0px 16px;
	overflow: hidden;
}


#mobile-header-navbar .mobile-menu-trigger
{
	text-align: center;
	color: var(--color-text-1);
	height: 45px;
	width: 45px;
	margin: 10px auto 0px auto;
	cursor: pointer;
}

#mobile-header-navbar .mobile-menu-trigger i
{
	font-size: 28px;
	line-height: 44px;
}


#header-preview
{
	display: block;
	height: 65px;
	background-color: var(--color-background-2);
	margin: 0px 0px 0px 0px;
	border-bottom: 1pt none #ddd;
	overflow: hidden;
	position: fixed;
	width: 100%;
	z-index: 1000;
}



/* ========================================================================== */
/* HEADER NAVBAR
/* ========================================================================== */
#header-navbar
{
	display: none;
	height: 105px;
	margin: 0px 0px 0px 0px;
	border-bottom: 1pt none #ddd;
	overflow: hidden;
	position: fixed;
	width: 100%;
	z-index: 1000;
	background: no-repeat right center url("../img/bgr_header.jpg");
	background-color: var(--color-background-2);
	background-size: cover;
  -webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

#header-navbar .header-navbar-logo
{
	width: 180px;
	padding: 10px 0px 0px 50px;
	float: left;
	overflow: hidden;
}

#header-navbar .header-navbar-text
{
	color: #111;
	font-family: 'Rubik', sans-serif;
	font-weight: 400;
	text-transform: uppercase;
	bottom: 0;
	left: 0;
	padding: 0 0 10px 230px;
	margin: 0px 0px 0px 28px;
	position: absolute;
	z-index: 110;
	font-size: 32px;
	line-height: 38px;
}

#header-navbar .navbar-controls
{
	height: 55px;
	background-color: var(--color-background-2);
	padding: 7px 13px 5px 13px;
	margin: 0px 25px 0px 0px;
	float: left;
	overflow: hidden;
}

#header-navbar .navbar-caption
{
	padding: 15px 10px 0px 25px;
	color: #2C343F;
	float: left;
}


#header-navbar .navbar-user
{
	float: right;
	overflow: hidden;
	padding: 0px 25px 0px 0px;
}

#header-navbar .navbar-user .profile-image
{
  height: 38px;
  width: 38px;
	float: left;
	margin: 9px 10px 0px 0px;
}

#header-navbar .navbar-user .profile-image img
{
	-moz-border-radius: 50%;
	border-radius: 50%;
}

#header-navbar .navbar-user .profile-name
{
	float: left;
	color: #fff;
	padding: 11px 0px 0px 0px;
}

#header-navbar .navbar-user .profile-name h3
{
	color: #fff;
	font-size: 14px;
	line-height: 16px;
	margin-bottom: 3px;	
}

#header-navbar .navbar-user .profile-name p
{
	color: #fff;
	font-size: 11px;
	line-height: 11px;
}



@media only screen and (min-width: 1200px)
{
	#header-navbar .navbar-caption
	{
		padding: 15px 10px 0px 30px;
	}
}


#header-navbar .btn
{ 
	display: inline-block;
	padding: 10px 10px 10px 10px; 
	border: none;
	margin: 0px 0px 0px 0px;
	background: none;
	color: #fff;
	font-family: 'Rubik', sans-serif;
	font-weight: 300;
	font-size: 14px;
	text-transform: uppercase;
	text-decoration: none !important;
	vertical-align: middle;
	cursor: pointer;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

#header-navbar a.btn
{
	color: #fff;
}

#header-navbar .btn i
{ 
	float: left;
	font-size: 21px;
	line-height: 21px;
	margin: 0px;
}


#header-navbar .btn:hover
{ 
	background-color: none;
}


@media screen and (min-width: 992px)
{
  #mobile-header-navbar
	{
    display: none;
  }

  #header-navbar
	{
    display: block;
  }
}





/* ========================================================================== */
/* FOOTER
/* ========================================================================== */
#footer
{
	display: none;
	margin: 0px 0px 0px 230px;
	border-top: 1pt solid rgba(0,0,0,0.1);
	background: var(--color-background-1);
	overflow: hidden;
	position: fixed;
	bottom: 0px;
	width: 100%;
	z-index: 100;
	height: 30px;
}

#footer .footer-logo
{
	width: 75px;
	padding: 2px 0px 0px 0px;
	margin: 0px 12px 0px 27px;
	float: left;
	overflow: hidden;
}

#footer .footer-text
{
	color: rgba(0,0,0,0.7);
	padding: 8px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	font-size: 12px;
	line-height: 14px;
	float: left;
	overflow: hidden;
}

@media screen and (min-width: 992px)
{
  #footer
	{
    display: block;
  }
}


/* ========================================================================== */
/* SIDEBAR FOOTER
/* ========================================================================== */
#sidebar-footer
{
	margin: 0px 0px 0px 0px;
	border-top: 1pt none rgba(0,0,0,0.1);
	overflow: hidden;
	position: fixed;
	bottom: 0px;
	width: 100%;
	z-index: 100;
	height: 58px;
	background: var(--color-sidebar);
}

#sidebar-footer .footer-logo
{
	width: 115px;
	padding: 0px 10px 0px 0px;
	margin: 0px auto 0px auto;
	overflow: hidden;
}

#sidebar-footer .footer-text
{
	color: rgba(0,0,0,0.5);
	padding: 0px 10px 0px 0px;
	margin: 2px 0px 0px 0px;
	font-size: 10px;
	line-height: 14px;
	overflow: hidden;
	display: block;
	text-align: center;
}





/* ========================================================================== */
/* DASHBOARD
/* ========================================================================== */
.bgr-white
{
	background: #fff;
}

.dashboard-header
{
	text-transform: none;
	margin: 55px 0px 0px 0px;
	padding: 25px 0px 9px 4px;
}

.no-inset
{
	padding: 0px 0px 0px 0px;
}

.no-margin
{
	margin: 0px 0px 0px 0px;
}

.dashboard-header p
{
	color: #AAA;
	font-size: 12px; 
	line-height: 16px;
	margin: 0px 0px 0px 0px;
}

.dashboard-header h1
{
	font-family: 'Rubik', sans-serif;
	font-weight: 500px;
	font-size: 20px; 
	line-height: 24px;
	margin: 0px 0px 5px 0px;
}

.dashboard-header i
{
	font-size: 26px; 
  color: #AF7F48;
	padding: 0px 0px 0px 0px;
	margin: -5px 10px 0px 0px;
	float: left;
}


.dashboard-title
{
	font-family: 'Montserrat', sans-serif;
	text-transform: none;
	font-size: 17px; 
	line-height: 22px;
	margin: 0px 0px 0px 0px;
}

.dashboard-title i
{
	font-size: 20px; 
  color: var(--color-background-2);
	padding: 0px 0px 0px 0px;
	margin: -1px 10px 0px 0px;
	float: left;
}


.dashboard-content
{
	background: #none;
	border: 1px none #E1E8EF;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 10px 0px;
}

.dashboard-content-inset
{
	padding: 24px 0px 0px 0px;
}


.dashboard-content .widget-title
{
	font-family: 'Rubik', sans-serif;
	font-weight: 500;
	text-transform: uppercase;
	font-size: 18px; 
	line-height: 22px;
	border-bottom: 1px none #ddd;
	padding: 10px 12px 0px 13px;
	color: var(--color-text-1);
}

.dashboard-content .widget-title span
{
	font-size: 22px; 
	color: var(--color-background-2);
	padding: 0px 0px 0px 1px;
}

.dashboard-content .widget-title i
{
	font-size: 20px; 
 	line-height: 20px;
	color: var(--color-teyt-1);
	padding: 0px 0px 0px 0px;
	margin: 0px 10px 0px 0px;
	float: left;
}

.dashboard-content .widget-content
{
	padding: 0px 0px 0px 0px;
	overflow: initil;
}

.dashboard-content .widget-content table i
{
	color: #AAA;
}

.dashboard-content .widget-content a
{
	padding: 0px 0px 0px 3px;
	color: #222;
	text-decoration: none; 
}

.dashboard-content .widget-content a:hover, 
.dashboard-content .widget-content a:focus
{
	outline: 0;
	color: var(--color-background-2);
	text-decoration: underline;
}	



.dashboard-content .widget-checkbox-list
{
	padding: 12px 0px 0px 0px;
	text-align: left;
  -webkit-columns: 1;
     -moz-columns: 1;
          columns: 1;
  -webkit-column-gap: 2em;
     -moz-column-gap: 2em;
          column-gap: 2em;
}

@media (min-width: 560px) 
{
	.dashboard-content .widget-checkbox-list
	{
		text-align: left;
		-webkit-columns: 2;
			 -moz-columns: 2;
						columns: 2;
	}
}

@media (min-width: 768px) 
{
	.dashboard-content .widget-checkbox-list
	{
		text-align: left;
		-webkit-columns: 3;
			 -moz-columns: 3;
						columns: 3;
	}
}

@media (min-width: 992px) 
{
	.dashboard-content .widget-checkbox-list
	{
		text-align: left;
		-webkit-columns: 4;
			 -moz-columns: 4;
						columns: 4;
	}
}



.dashboard-table-title
{
	font-family: 'Rubik', sans-serif;
	font-weight: 500px;
	text-transform: none;
	font-size: 11px; 
	line-height: 14px;
	border-top: 1px solid #d5d5d5;
	border-left: 1px solid #d5d5d5;
	border-right: 1px solid #d5d5d5;
	padding: 7px 10px 7px 12px;
	color: #999;
	background: #fff;
}

.dashboard-table-title i
{
	font-size: 18px; 
 	line-height: 14px;
	color: var(--color-background-2);
	padding: 0px 0px 0px 0px;
	margin: 0px 10px 0px 0px;
	float: left;
}




.dashboard-content .widget-pie-chart
{
	float: left;
	margin-right: 20px;
}

.dashboard-content .widget-pie-chart-text
{
}

.dashboard-content .widget-pie-chart-text h3
{
	font-family: 'Rubik', sans-serif;
	font-weight: 400px;
	color: #444444;
	font-size: 28px; 
	line-height: 30px;
	margin: 5px 5px 5px 5px; 
	font-weight: normal;
}

.dashboard-content .widget-pie-chart-text p
{
	margin: 0px;
	font-size: 
}


.pie-chart
{
  position: relative;
  display: inline-block;
}

.pie-chart > span
{
	left: 0;
	margin-top: 0px;
	position: absolute;
	right: 0;
	text-align: center;
	top: 50%;
	transform: translateY(-50%);
}

.chart-sum-data
{
	padding: 4px 0px 0px 10px;
}

.chart-sum-data p
{
	color: #999;
	font-size: 12px;
	font-weight: normal;
	line-height: 14px;
	margin: 8px 0px 0px 0px;
}
.chart-sum-data span
{
	color: #000;
	font-size: 17px;
	line-height: 26px;
}


.dash-widgets
{
	margin: 0px 0px 0px 0px;
}

.dash-widget
{
  background-color: none;
}

.dash-widget .widget-title
{
	font-family: 'Rubik', sans-serif;
	font-weight: 500px;
	text-transform: uppercase;
	line-height: 20px;
}

.dash-widget .widget-period
{
	text-transform: uppercase;
	font-size: 13px; 
	line-height: 16px;
  color: #aaa;
}

.dash-widget .widget-period i
{
  color: #bbb;
	margin: 0px 4px 0px 0px;
}

.dash-widget .widget-value
{
	font-size: 30px; 
	line-height: 36px;
	color: #5293AA;
	padding: 3px 0px 9px 0px;
}


@media screen and (min-width: 992px)
{
	.dashboard-content .widget-content
	{
		padding: 0px 12px 0px 12px;
	}
}

/* ========================================================================== */
/* SIDEBAR
ž/* ========================================================================== */
#sidebar
{
  position: fixed;
  top: 0px;
  bottom: 0px;
  z-index: 999;
  width: 230px;
  background-color: var(--color-sidebar);
	border-right: 1px solid rgba(0,0,0,0.2);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.28s ease-out;
  transition: all 0.28s ease-out;
	box-shadow: 2px 0px 2px rgba(0, 0, 0, 0.0);
}

#sidebar .sidebar-header
{
	background: var(--color-sidebar);
  height: 105px;
	overflow: hidden;
}

#sidebar .sidebar-user
{
	background: var(--color-sidebar);
	overflow: hidden;
	padding: 10px 0px 10px 15px;
	position: relative;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

#sidebar .sidebar-user p
{
	margin-bottom: 0px;
}

#sidebar .sidebar-user .profile-image
{
  height: 30px;
  width: 30px;
	float: left;
	margin: 0px 12px 0px 0px;
}

#sidebar .sidebar-user .profile-image img
{
	-moz-border-radius: 50%;
	border-radius: 50%;
}

#sidebar .sidebar-user .profile-name
{
	color: var(--color-text-1));
	padding: 0px 0px 0px 0px;
}

#sidebar .sidebar-user .profile-name h3
{
	color: #111;
	font-size: 14px;
	line-height: 16px;
	margin-bottom: 3px;	
}

#sidebar .sidebar-user .profile-name p
{
	color: var(--color-text-1);
	font-size: 11px;
	line-height: 11px;
}


#sidebar .sidebar-user .profile-menu
{
	font-size: 14px;
	line-height: 24px;
	padding: 0px 0px 0px 0px;
  display: none;
}


#sidebar .sidebar-user .profile-menu-trigger
{
	text-align: right;
	overflow: hidden;
}


#sidebar .sidebar-user .profile-menu-trigger .btn
{
	cursor: pointer;
	display: inline-block;
	min-width: 10px;
	font-size: 14px;
	margin: 0px 10px 0px 0px;
	padding: 10px;
	text-decoration: none !important;
	vertical-align: middle;
	padding: 5px 5px 5px 5px;
}

#sidebar .sidebar-user .profile-menu-trigger .btn i
{
	margin: 0;
	color: var(--color-text-1);
	font-size: 18px;
}

#sidebar .sidebar-user .profile-menu ul
{
  padding: 0px 0px 0px 0px;
  margin: 0;
  list-style: none;
  overflow: hidden;
}

#sidebar .sidebar-user .profile-menu-o 
{
	content: " *";
}

#sidebar .sidebar-user .profile-menu ul li
{
  display: block;
  padding: 4px 20px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	padding-left: 37px;
	position: relative;
	cursor: pointer;
}

#sidebar .sidebar-user .profile-menu ul li i
{
	position: absolute;
	font-size: 14px;
	line-height: 18px;
  margin-right: 15px;
  color: rgba(0, 0, 0, 0.85);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	left: 12px;
	top: 8px;
}

#sidebar .sidebar-user .profile-menu ul a
{
  color: rgba(0, 0, 0, 0.9);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	text-decoration: none;
	
}

#sidebar .sidebar-user .profile-menu ul li:hover,
#sidebar .sidebar-user .profile-menu ul li:focus
{
	color: #fff;
}

#sidebar .sidebar-user .profile-menu ul li:hover a,
#sidebar .sidebar-user .profile-menu ul li:focus a
{
	color: #fff;
}

#sidebar .sidebar-user .profile-menu ul li:hover i,
#sidebar .sidebar-user .profile-menu ul li:focus i
{
  color: rgba(0, 0, 0, 1);
	font-size: 16px;
	left: 11px;
	top: 7px;
}



#sidebar .sidebar-logo
{
	width: 170px;
	padding: 12px 0px 0px 50px;
	float: left;
	overflow: hidden;
}


#sidebar .sidebar-controls
{
	height: 55px;
	padding: 12px 13px 10px 0px;
	float: right;
	overflow: hidden;
}

#sidebar .btn
{ 
	display: inline-block;
	padding: 10px 10px 10px 10px; 
	border: none;
	margin: 0px 0px 0px 0px;
	background: none;
	font-family: 'Rubik', sans-serif;
	font-weight: 400px;
	font-size: 14px;
	text-transform: uppercase;
	text-decoration: none !important;
	vertical-align: middle;
	cursor: pointer;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

#sidebar .btn i
{ 
	float: left; 
	margin: 0;
	color: var(--color-text-1);
	font-size: 28px;
}

#sidebar .btn:hover i
{ 
	color: var(--color-text-1);
}


.sidebar-close #sidebar
{
  left: 0;
  -webkit-transform: translateX(-100%) translateY(0) translateZ(0);
  -ms-transform: translateX(-100%) translateY(0);
  transform: translateX(-100%) translateY(0) translateZ(0);
}

.sidebar-open #sidebar
{
  left: 0;
	-webkit-transform: translateX(0) translateY(0) translateZ(0);
	-ms-transform: translateX(0) translateY(0);
	transform: translateX(0) translateY(0) translateZ(0);
}

@media screen and (max-width: 991px)
{
  .sidebar-open #sidebar
	{
		left: 0;
		-webkit-transform: translateX(-100%) translateY(0) translateZ(0);
		-ms-transform: translateX(-100%) translateY(0);
		transform: translateX(-100%) translateY(0) translateZ(0);
  }
}

@media screen and (min-width: 992px)
{
  #sidebar
	{
    width: 230px;
    /*
		-webkit-transition: none;
    transition: none;
		*/
  }
}

.sidebar-content 
{
  margin: 0 auto;
  padding: 0px 0px 0px 0px;
  max-width: 100%;
  overflow-x: hidden;
}



/* ========================================================================== */
/* MOBILE MENU
/* ========================================================================== */
#mobile-menu
{
	font-family: 'Rubik', sans-serif;
	font-weight: 400px;
	font-size: 16px;
	line-height: 24px;
	padding: 0px 0px 0px 0px;
	position: relative;
  background-color: var(--color-background-2);
	display: none;
  list-style: none;
}


#mobile-menu ul
{
	border-top: 1px solid rgba(0, 0, 0, 0.3);
	padding: 0px 0px 0px 0px;
  margin: 0;
  list-style: none;
  overflow: hidden;
}

#mobile-menu ul li
{
  display: block;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 15px 20px;
	padding-left: 65px;
	position: relative;
	cursor: pointer;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
	
}

#mobile-menu ul li i
{
	position: absolute;
	font-size: 18px;
	line-height: 30px;
  margin-right: 15px;
  color: var(--color-text-1);
	left: 30px;
	top: 12px;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

#mobile-menu a
{
	font-weight: 400;
	text-transform: uppercase;
  color: var(--color-text-1);
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	
}

#mobile-menu ul li:hover,
#mobile-menu ul li:focus
{
	background-color: var(--color-background-2-lite);
}

#mobile-menu ul a:hover,
#mobile-menu ul a:focus
{
	color: var(--color-text-1);
}

#mobile-menu ul li:hover i,
#mobile-menu ul li:focus i
{
  color: var(--color-text-1);
	font-size: 19px;
	left: 29px;
	top: 11px;
}



/* ========================================================================== */
/* CONTENT
/* ========================================================================== */
#main-container,
#page-footer 
{
  overflow-x: hidden;
}

#main-container 
{
  background-color: #f5f5f5;
}


.full-width-bgr 
{
	padding: 20px 0px 20px 0px;
	overflow: hidden;
}

.bgr-light-white
{
  background-color: #fff;
}

.bgr-light-grey
{
	background-color: #fafafa;
	margin: 10px 0px 30px 0px;
	border-top: 1pt solid #f0f0f0;
	border-bottom: 1pt solid #f0f0f0;
}



/* ========================================================================== */
/* HEADER NAVBAR
/* ========================================================================== */
.nav-main
{
	font-family: 'Rubik', sans-serif;
	font-weight: 400px;
	font-size: 15px;
	line-height: 24px;
  margin: 0 0px;
  padding: 0;
  list-style: none;
}

.nav-main ul
{
	border-top: 1px solid rgba(0,0,0,0.1);
	padding: 0px 0px 0px 0px;
  margin: 0;
  list-style: none;
  overflow: hidden;
}

.nav-main ul li
{
  display: block;
	border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 12px 20px;
	padding-left: 57px;
	position: relative;
	cursor: pointer;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.nav-main ul li i
{
	position: absolute;
	font-size: 18px;
	line-height: 23px;
	color: var(--color-text-1);
	left: 23px;
	top: 12px;
}

.nav-main a
{
  color: var(--color-text-1);
	font-weight: 400;
	text-transform: uppercase;
	text-decoration: none;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
	
}

.nav-main ul li:hover,
.nav-main ul li:focus
{
	background-color: var(--color-background-2);
}

.nav-main ul a:hover,
.nav-main ul a:focus
{
	color: var(--color-text-1);
}

.nav-main ul li:hover i,
.nav-main ul li:focus i
{
  color: var(--color-text-1);
	font-size: 19px;
	left: 22px;
	top: 11px;
}


/* ========================================================================== */
/* Checkbox
/* ========================================================================== */
 /* Customize the label (the container) */
.custom-checkbox
{
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
	
}

/* Hide the browser's default checkbox */
.custom-checkbox input
{
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark
{
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
	border: 1px solid #ddd;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	border-radius: 3px;
}

/* On mouse-over, add a grey background color */
.custom-checkbox:hover input ~ .checkmark
{
  background-color: #ddd;
}

/* When the checkbox is checked, add a blue background */
.custom-checkbox input:checked ~ .checkmark {
  background-color: var(--color-background-3);
	border: 1px solid var(--color-background-3);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after
{
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.custom-checkbox input:checked ~ .checkmark:after
{
  display: block;
}

/* Style the checkmark/indicator */
.custom-checkbox .checkmark:after
{
  left: 5px;
  top: 2px;
  width: 5px;
  height: 8px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
} 




.error-msg
{
	text-align: center;
	padding: 50px 0px 0px 0px;
	font-weight: 400;
}

.error-msg i
{
	color: var(--color-background-2);
	font-size: 100px;
	line-height: 150px;
}


