/* ========================================================================== */
/* 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: #555555;
	--color-text-2: #333333;
	
	--color-text-3: #A69A80;
	

	/* inverse text colors */
	--color-text-inverse-1: #FFFFFF;
	--color-text-inverse-2: #F3F3F3;
	
	/* background colors */
	--color-background-1: #F2F2F2;
	--color-background-2: #343333;
	--color-background-3: #EFAF12;
	--color-background-4: #A69A80;



	/* button 1 */
	--color-btn-background-1: #343333;
	--color-btn-border-1: #343333;
	--color-btn-text-1: #fff;
	/* button 1 - hover */
	--color-btn-hover-background-1: #A69A80;
	--color-btn-hover-border-1: #A69A80;
	--color-btn-hover-text-1: #fff;
	
	/* button 2 */
	--color-btn-background-2: rgba(255, 255, 255, 0.10);
	--color-btn-border-2: #FFFFFF;
	--color-btn-text-2: #FFFFFF;
	/* button 2 - hover */
	--color-btn-hover-background-2: rgba(255, 255, 255, 0.20);
	--color-btn-hover-border-2: #FFFFFF;
	--color-btn-hover-text-2: #FFFFFF;
		
}



/* ========================================================================== */
/* FONTS
/* ========================================================================== */
@font-face
{
	font-family: 'WeblySleek-Light';
	src: url('weblysleek/weblysleek-light.eot');
	src: url('weblysleek/weblysleek-light.eot?#iefix') format('embedded-opentype'),
			 url('weblysleek/weblysleek-light.woff') format('woff'),
			 url('weblysleek/weblysleek-light.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face
{
	font-family: 'WeblySleek-Regular';
	src: url('weblysleek/weblysleek-regular.eot');
	src: url('weblysleek/weblysleek-regular.eot?#iefix') format('embedded-opentype'),
			 url('weblysleek/weblysleek-regular.woff') format('woff'),
			 url('weblysleek/weblysleek-regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face
{
	font-family: 'WeblySleek-SemiBold';
	src: url('weblysleek/weblysleek-semibold.eot');
	src: url('weblysleek/weblysleek-semibold.eot?#iefix') format('embedded-opentype'),
			 url('weblysleek/weblysleek-semibold.woff') format('woff'),
			 url('weblysleek/weblysleek-semibold.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

/* ========================================================================== */
/* 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: "WeblySleek-Regular", "OpenSans", sans-serif;
	line-height: 21px;
	color: var(--color-text-1);
}

@media only screen and (max-width: 1280px)
{
	body
	{
		font-size: 14px;
		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;
}


/* ========================================================================== */
/* TYPOGAPHY
/* ========================================================================== */
h1, h2, h3, h4, h5, h6,
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a
{
	font-family: 'Montserrat', sans-serif;
	color: #222;
	font-weight: 600;
}


h1
{
	font-size: 36px; 
	line-height: 44px;
	margin-bottom: 12px;	 
	font-weight: 600;
	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: #222;
	background: no-repeat center center fixed url("../img/bgr_login.jpg");
	background-color: #e1e1e1;
	background-size: cover;
}

#login p
{
	font-size: 16px;
	text-align: left;
	color: #222;
}

#login h3
{
	text-align: left;
	color: #222;
}

#login .login-logo
{
	background: none;
	z-index: 1;
	width: 200px;
	margin: 0px 0px 40px 0px;
}

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

#login h1
{
	padding: 0px 0px 0px 0px;
	text-align: left;
	font-size: 22px;
	font-weight: 500;
}

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

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

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



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

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

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

#login input[type="text"],
#login input[type="password"]
{
	padding: 9px 0px 9px 40px;
	border: 1px solid #ccc;
	background: #fff;
	-moz-border-radius: 3px;
	border-radius: 3px;
	width: 99%;

}

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

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

#login .forgot-password a
{
	color: #999;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

#login .forgot-password a:hover
{
	color: #222;
	text-decoration: none;
}

#login .footer
{
	text-align: center;
	position: absolute;
	bottom: 10px;
	height: 180px;
	width: 100%;
	margin: 0px auto 0px auto;
	padding: 5px 0px 5px 0px;
	z-index: 0;
	overflow: hidden;
}

#login .footer p
{
	text-align: center;
	color: #999;
	font-size: 12px;
	line-height: 15px;
	margin: 0px 0px 10px 0px;
}

#login .footer .footer-logo
{
	width: 210px;
	display: inline-block;
	margin: 0px 0px 8px 0px;
}


#login .btn
{ 
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 15px;
	color: #fff;
	background-color: var(--color-btn-background-1);
	padding: 9px 20px 10px 20px; 
	margin: 10px 5px 20px 0px;
	display: inline-block;
	text-transform: uppercase;
	text-decoration: none !important;
	cursor: pointer;
	border-radius: 50px;
  transition: background 50ms linear 0s;
}

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

#login .btn:focus
{
	outline: 0;
	color: #fff;
}

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



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

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

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

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






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

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

.input-form .label-wrap
{
	color: #888;
	display: block;
	height: 18px;
	padding: 0px 0px 0px 4px; 
	margin: 3px 0px 0px 6px; 
	overflow: hidden;
	position: absolute;
	top: -9px;
	z-index: 10;
	background: #fff;
}



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

.input-form  .label,
.input-form  .error-msg
{
	color: #888;
	color: var(--color-text-3);
	font-size: 14px;
	line-height: 18px;
	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
{
	border: 1px solid rgba(234,83,42,0.7);
}

.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: 10px 8px 0px 0px;
}

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: 14px 7px 12px 10px;
	background-color: #fff;
	font-size: 16px;
	line-height: 20px;
	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 #ddd;
	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
{
	color: #9ba6b5;
}
*:-moz-placeholder
{
    /* FF 4-18 */
	color: #9ba6b5;
}
*::-moz-placeholder
{
    /* FF 19+ */
	color: #9ba6b5;
}
*:-ms-input-placeholder
{
    /* IE 10+ */
	color: #9ba6b5;
}







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

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

a.btn
{
	color: #fff;
}

.btn:focus
{
	outline: 0;
	color: #fff;
}

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



.btn-link
{
	position: relative;
	padding: 10px 5px 0px 30px;
	margin: 0px 25px 0px 0px;
	font-size: 16px;
	float: left;
	cursor: pointer;
	color: var(--color-background-2);
	color: #285dab;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

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

.btn-link:hover i
{
	color: #ff6600;
}

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








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


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







/* ========================================================================== */
/* TABLE
/* ========================================================================== */
.data-grid .data-grid-title
{
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	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: var(--color-background-4);
	padding: 0px 0px 0px 1px;
}


.data-grid table
{
	font-weight: normal;
	width: 100%;
	cellspacing: 0;
	cellpadding: 0;
	margin: 0px 0px 10px 0px;
}

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

.data-grid thead,
.data-grid tfoot
{
	text-align: left;
	color: #333;
	font-weight: bold;
}

.data-grid thead,th,
.data-grid tfoot,th
{
	vertical-align:middle;
	border: 1px none var(--color-background-4);
	padding: 9px 10px 10px 10px;
}

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


.data-grid tr,td
{
	border: 1px none #ddd;
	border-bottom: 1px solid #e8e8e8;
}

.data-grid tfoot tr,td
{
	border: 1px none #ddd;
}

.data-grid td
{
	padding: 9px 10px 10px 10px;
}


.data-grid table tbody tr:nth-child(even)
{
	background: #FAFAFA;
	padding: 9px 10px 10px 10px;
}



.data-grid tbody tr:hover,
.data-grid table tbody tr:hover
{
  background: rgba(166, 154, 128, 0.15);
}

.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 .new-row-btn 
{
}

.data-grid .new-row-btn i 
{
	padding: 0px 7px 0px 0px;
	font-size: 16px !important;
	color: #777 !important;
}

.data-grid table tbody tr.new-row 
{
}



.data-grid-header
{
	padding: 14px 0px 14px 0px;
	overflow: hidden;
	
    border-bottom: 1px solid #e8e8e8;
    margin: 0 10px 0 12px;	
}

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




/* ========================================================================== */
/* 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-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.6em solid rgba(250, 250, 250, 0.3);
  border-right: 0.6em solid rgba(250, 250, 250, 0.3);
  border-bottom: 0.6em solid rgba(250, 250, 250, 0.3);
  border-left: 0.6em solid #fff;
  -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);
  }
}





/* ========================================================================== */
/* PAGINATION
/* ========================================================================== */
/* Pagination style */
.pagination
{
	margin: 0px 0px 10px 0px;
	padding:0;
  color: #666;
	float: right;
}

.pagination a
{
  text-decoration:none;
  color: #666;
	background: none;
}

.pagination li
{
	font-size: 13px;
	display: inline;
	border: 1px solid #eee;
	margin-left: 5px;
	background: #fff;
	display: block;
	float: left;
	width: 32px;
	height: 32px;
	line-height: 28px;
	text-align: center;
	border-radius: 50%;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	
}

/*
.pagination li.first {
    border-radius: 5px 0px 0px 5px;
}
.pagination li.last {
    border-radius: 0px 5px 5px 0px;
}
*/
.pagination a li:hover
{
	background: #FF6600;
 	border: 1px solid #FF6600;
	color: #fff;
}

.pagination li.selected,
.pagination a li.selected:hover
{
	background: #FF6600;
	border: 1px solid #FF6600;
	color: #fff;
}

.btn_pagination
{
	margin: 0px 8px 0px 0px;
}














/* ========================================================================== */
/* 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: 300px;
	}

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

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


/* ========================================================================== */
/* 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: 127px;
	padding: 0px 20px 0px 0px;
	margin: 7px auto 0px auto;
	overflow: hidden;
}


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

#mobile-header-navbar .mobile-menu-trigger i
{
	font-size: 24px;
	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 PREVIEW
/* ========================================================================== */
#header-preview .navbar-logo
{
	display: block;
	width: 100px;
	margin: 7px 15px 0px 15px;
	overflow: hidden;
	float: right;
}

#header-preview h3
{
	color: #fff;
	font-family: "Montserrat",sans-serif;
	font-size: 20px;
	font-weight: 600;	
	float: left;
	padding: 14px 0px 0px 20px;
}

@media (min-width: 420px) 
{
	#header-preview .navbar-logo
	{
		width: 115px;
		margin: 4px 15px 0px 15px;
	}

	#header-preview h3
	{
		font-size: 28px;
	}
}


/* ========================================================================== */
/* HEADER NAVBAR
/* ========================================================================== */
#header-navbar
{
	height: 65px;
	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;
	background: no-repeat left center url("../img/bgr_navbar_header.jpg");
	background-color: #e1e1e1;
	background-size: cover;
}

#header-navbar .header-navbar-text
{
	bottom: 0;
	color: #ffffff;
	left: 0;
	padding: 0 0 28px 230px;
	margin: 0px 0px 0px 22px;
	position: absolute;
	z-index: 110;
	font-size: 40px;
	line-height: 45px;
	-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 .navbar-controls
{
	height: 55px;
	background: none;
	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;
}



#header-navbar .navbar-shortcuts
{
	float: right;
	margin-right: 0px;
}


@media (min-width: 480px)
{
	#header-navbar .navbar-shortcuts
	{
		margin-right: 30px;
	}
}

#header-navbar .navbar-shortcuts span
{
	position: absolute;
	top: 10px;
	right: 10px;
	background: #ffaa00;
	-moz-border-radius: 50%;
	border-radius: 50%;
	font-size: 11px;
	height: 15px;
	width: 15px;
	line-height: 12px;
	text-align: center;
}

#header-navbar .navbar-shortcuts ul
{
	padding: 0px;
	margin: 0px;
}

#header-navbar .navbar-shortcuts li
{
	position: relative;
	border-right: 1px solid #2F3D4F;
	border-right: 1px solid #41546d;
	float: left;
	display: block; 
  -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 .navbar-shortcuts li a
{
	color: #fff; 
}

#header-navbar .navbar-shortcuts li:first-child
{
	border-left: 1px solid #2F3D4F;
	border-left: 1px solid #41546d;
}

#header-navbar .navbar-shortcuts i
{
	text-align: center;
	font-size: 16px;
	line-height: 55px;
	height: 55px;
	width: 55px;
}

#header-navbar .navbar-shortcuts li:hover,
#header-navbar .navbar-shortcuts span:hover li
{
	background-color: #324763;
	cursor: pointer;
}






@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: #aaa;
	font-family: "WeblySleek-SemiBold", "OpenSans", sans-serif;
	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: 20px;
	line-height: 20px;
	margin: 0px;
}


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


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

  #header-navbar
	{
    display: block;
		height: 300px;
  }
}

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

.dashboard-header
{
	text-transform: none;
	margin: 15px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	border: 1px solid #e1e8ef;
	border-bottom: none;
	background: #FAFAFA;
	/*
	cursor: pointer;
	*/
}

.dashboard-header:hover
{
	/*
	background: rgba(166, 154, 128, 0.15);
	*/
}

.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: "WeblySleek-Regular", "OpenSans", sans-serif;
	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
{
	color: #343333;
	font-family: "Montserrat",sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 24px;
	padding: 10px 10px 9px 18px;
}

.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: #fff;
	border: 1px solid #E1E8EF;
	padding: 5px 5px 5px 5px;
	margin: 0px 0px 10px 0px;
}

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

.dashboard-content .widget-titlebar
{
	border-bottom: 1px solid #e8e8e8;
	padding: 10px 0px 14px 0px;
	margin: 0px 10px 0px 12px;
	overflow: hidden;
}

.dashboard-content .widget-titlebar-title
{
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	text-transform: none;
	font-size: 22px; 
	line-height: 26px;
	border-bottom: 1px none #ddd;
	padding: 2px 30px 0px 0px;
	color: #343333;
	float: left;
}




.dashboard-content .widget-titlebar-find
{
	float: left;
	padding: 0px 10px 0px 0px;
}

.dashboard-content .widget-titlebar-find input
{
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 3px;
	box-sizing: border-box;
	color: #111;
	display: block;
	font-size: 16px;
	line-height: 20px;
	margin: 0;
	padding: 4px 7px 5px 10px;
	position: relative;
	transition: border 0.3s ease 0s;
}

.dashboard-content .widget-title
{
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	text-transform: none;
	font-size: 22px; 
	line-height: 26px;
	border-bottom: 1px none #ddd;
	padding: 10px 10px 7px 12px;
	color: #343333;
}

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

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

.dashboard-content .widget-content
{
	padding: 10px 12px 12px 12px;
	overflow: hidden;
}

.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;
	}
}



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

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

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

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

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


.widget-tile
{
	width: calc(50% - 10px);
	background: #9DB500;
	margin: 5px 5px 5px 5px;
	padding: 0px 0px 0px 0px;
	float: left;
	color: #fff;
	position: relative;
	cursor: pointer;
  -webkit-transition: all 0.28s ease-out;
  transition: all 0.28s ease-out;
}

.widget-tiles-group-full .widget-tile
{
	width: calc(100% - 10px);
}

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

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

.widget-tiles-group-full .widget-tile-caption
{
	position: absolute;
	padding: 0px 25px 0px 10px;
	bottom: 30px;
	width: 100%;
	color: #fff;
	font-size: 22px;
	line-height: 28px;
	text-align: right;
}

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

.widget-tile-caption i
{
	padding: 0px 0px 0px 0px;
	font-size: 25px;
	line-height: 28px;
}

.widget-tile.color1-tile
{
	background: #9b6c5a;
}

.widget-tile.color2-tile
{
	background: #b46544;
}

.widget-tile.color3-tile
{
	background: #5f675a;
}

.widget-tile.color4-tile
{
	background: #719a58;
}


@media screen and (min-width: 560px)
{
	.widget-tile-caption
	{
		padding: 0px 10px 0px 20px;
		bottom: 18px;
		font-size: 18px;
		line-height: 22px;
	}

	.widget-tiles-group-full .widget-tile-caption
	{
		padding: 0px 40px 0px 10px;
		bottom: 45px;
		font-size: 32px;
		line-height: 38px;
	}
}

@media (min-width: 768px) 
{
	.widget-tile-caption
	{
		padding: 0px 10px 0px 20px;
		bottom: 18px;
		font-size: 18px;
		line-height: 22px;
	}

	.widget-tiles-group-full .widget-tile-caption
	{
		padding: 0px 40px 0px 10px;
		bottom: 45px;
		font-size: 32px;
		line-height: 38px;
	}
}


@media screen and (min-width: 992px)
{
	.widget-tiles-group
	{
		width: 50%;
	}
	
}

@media (min-width: 1280px) 
{
	.widget-tiles-wrapp
	{
		overflow: hidden;
		margin: -10px -10px 5px -10px;
	}
	
	.widget-tile
	{
		width: calc(50% - 20px);
		margin: 10px 10px 10px 10px;
	}

	.widget-tiles-group-full .widget-tile
	{
		width: calc(100% - 20px);
	}

	.widget-tile-caption
	{
		padding: 0px 10px 0px 20px;
		bottom: 18px;
		font-size: 22px;
		line-height: 26px;
	}

	.widget-tiles-group-full .widget-tile-caption
	{
		padding: 0px 40px 0px 10px;
		bottom: 55px;
		font-size: 36px;
		line-height: 42px;
	}
}













.dashboard-table-title
{
	font-family: "WeblySleek-SemiBold", "OpenSans", sans-serif;
	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: "WeblySleek-Regular", "OpenSans", sans-serif;
	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: "WeblySleek-SemiBold", "OpenSans", sans-serif;
	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;
}





/* ========================================================================== */
/* SIDEBAR
/* ========================================================================== */
#sidebar
{
  position: fixed;
  top: 0px;
  bottom: 0px;
  z-index: 1032;
  width: 230px;
  background-color: var(--color-background-2);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.28s ease-out;
  transition: all 0.28s ease-out;
}

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

#sidebar .sidebar-user
{
	background: var(--color-background-3);
	overflow: hidden;
	padding: 20px 0px 10px 15px;
	position: relative;
}

#sidebar .sidebar-user .profile-image
{
  height: 50px;
  width: 50px;
	float: left;
	margin: 0px 10px 0px 0px;
	border: 2px none #142741;
}

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

#sidebar .sidebar-user .profile-name
{
	color: #fff;
	padding: 9px 0px 0px 0px;
}

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

#sidebar .sidebar-user .profile-name p
{
	color: #fff;
	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: #fff;
	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(255, 255, 255, 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(255, 255, 255, 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(255, 255, 255, 1);
	font-size: 16px;
	left: 11px;
	top: 7px;
}



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


#sidebar .sidebar-footer
{
  height: 130px;
	overflow: hidden;
	position: absolute;
	bottom: 0px;
	
	padding: 0px 18px 15px 18px; 
}

#sidebar .sidebar-footer
{
  height: 160px;
	overflow: hidden;
	position: absolute;
	bottom: 20px;
	color: #bbb;
	font-size: 12px;
	line-height: 14px;
}

#sidebar .sidebar-footer .footer-logo
{
	margin: 0px 0px 8px 0px;
}

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


#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: "WeblySleek-SemiBold", "OpenSans", sans-serif;
	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: #fff;
	font-size: 28px;
}

#sidebar .btn:hover i
{ 
	color: #fff;
}


.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: 13px 0px 0px 0px;
  max-width: 100%;
  overflow-x: hidden;
}



/* ========================================================================== */
/* MOBILE MENU
/* ========================================================================== */
#mobile-menu
{
	font-family: "WeblySleek-Regular", "OpenSans", sans-serif;
	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 #666;
	padding: 0px 0px 0px 0px;
  margin: 0;
  list-style: none;
  overflow: hidden;
}

#mobile-menu ul li
{
  display: block;
	border-bottom: 1px solid #666;
  padding: 15px 20px;
	padding-left: 52px;
	position: relative;
	cursor: pointer;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	
}

#mobile-menu ul li i
{
	position: absolute;
	font-size: 18px;
	line-height: 30px;
  margin-right: 15px;
  color: rgba(255, 255, 255, 0.9);
	left: 23px;
	top: 11px;
}

#mobile-menu a
{
  color: rgba(255, 255, 255, 0.9);
	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-4);
}

#mobile-menu ul a:hover,
#mobile-menu ul a:focus
{
	color: #fff;
}

#mobile-menu ul li:hover i,
#mobile-menu ul li:focus i
{
  color: rgba(255, 255, 255, 1);
	font-size: 19px;
	left: 22px;
	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: "WeblySleek-Regular", "OpenSans", sans-serif;
	font-size: 16px;
	line-height: 24px;
  margin: 0 0px;
  padding: 0;
  list-style: none;
}

.nav-main ul
{
	border-top: 1px solid #666;
	padding: 0px 0px 0px 0px;
  margin: 0;
  list-style: none;
  overflow: hidden;
}

.nav-main ul li
{
  display: block;
	border-bottom: 1px solid #666;
  padding: 12px 20px;
	padding-left: 52px;
	position: relative;
	cursor: pointer;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	
}

.nav-main ul li i
{
	position: absolute;
	font-size: 18px;
	line-height: 23px;
  margin-right: 15px;
  color: rgba(255, 255, 255, 0.9);
	left: 23px;
	top: 11px;
}

.nav-main a
{
  color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	
}

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

.nav-main ul a:hover,
.nav-main ul a:focus
{
	color: #fff;
}

.nav-main ul li:hover i,
.nav-main ul li:focus i
{
  color: rgba(255, 255, 255, 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);
} 


/* ========================================================================== */
/* ACCORDION
/* ========================================================================== */
.accordion
{
  background-color: var(--color-background-2);
  cursor: pointer;
  padding: 10px 6px 10px 12px;
  margin: 0px 0px 2px 0px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
	position: relative;
}

.accordion h3
{
	color: var(--color-text-inverse-1);
	font-weight: 600;
	font-size: 15px; 
	line-height: 16px;   
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

.accordion h3 span
{
	font-weight: normal;
}

.accordion.active,
.accordion:hover
{
  background-color: var(--color-background-3);
}

.accordion:before
{
  font-family: 'Font Awesome 5 Pro';
	color: var(--color-text-inverse-1);
	font-size: 20px;
	line-height: 22px;
	text-align: center;
	content: "\f107";
	position: absolute;
	right: 8px;
	top: 50%;
	width: 22px;
	height: 22px;
	background: var(--color-background-4); 
	border: 2px solid var(--color-text-inverse-1); 
	border-radius: 60px;
	transform: translate(0%, -50%);
	-webkit-transform: translate(0%, -50%);
	-webkit-transition: background 0.3s;
	transition: background 0.3s;
}

.accordion:hover:before
{
	background: var(--color-background-3); 
}

.accordion.active:before
{
	background: var(--color-background-3); 
	line-height: 21px;
	content: "\f106";
}

.panel
{
  padding: 0px 0px 0px 0px;
  background-color: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}


.panel.active
{
  max-height: initial;
}

.panel .panel-text
{
  padding: 0px 0px 0px 0px;
}


@media (min-width: 560px) 
{

}


@media (min-width: 768px) 
{
}


@media (min-width: 992px) 
{
}



/* ========================================================================== */
/* PROGRESS BAR
/* ========================================================================== */
.progressbar
{
	counter-reset: step;
	padding: 0px 0px 0px 0px;
	overflow: hidden;
	position: relative;
}

ul.progressbar
{
	margin: 0px 12px 20px 12px;
	padding: 0px 0px 0px 0px;
}


.progressbar li
{
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	list-style-type: none;
	width: 33%;
	float: left;
	font-size: 14px;
	position: relative;
	text-align: center;
	text-transform: uppercase;
	color: var(--color-text-3);
}

.progressbar li span
{
	font-family: "WeblySleek-Regular", "OpenSans", sans-serif;
	font-weight: normal;
	font-size: 14px;
	text-transform: none;
	color: var(--color-text-1);
}

.progressbar li:before
{
	width: 30px;
	height: 30px;
	content: counter(step);
	counter-increment: step;
	line-height: 30px;
	border: 2px solid var(--color-text-3);
	display: block;
	text-align: center;
	margin: 0 auto 7px auto;
	border-radius: 50%;
	background-color: white;
}

.progressbar li:after
{
	width: 100%;
	height: 3px;
	content: '';
	position: absolute;
	background-color: var(--color-text-3);
	top: 15px;
	left: -50%;
	z-index: -1;
}

.progressbar:after
{
	width: 100%;
	height: 3px;
	content: '';
	position: absolute;
	background-color: var(--color-text-3);
	top: 15px;
	right: 0px;
	z-index: -2;
}

.progressbar li:first-child:after
{
	/*
	content: none;
	*/
	background-color: var(--color-background-3);
}

.progressbar li.active
{
	color: var(--color-background-3);
}

.progressbar li.active:before
{
	color: var(--color-text-inverse-1);
	border-color: var(--color-background-3);
	background-color: var(--color-background-3);
}
.progressbar li.active + li:after
{
	background-color: var(--color-background-3);
}





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

.error-msg i
{
	color: #EA532A; /* red */
	font-size: 100px;
	line-height: 150px;
}


/* ========================================================================== */
/* text alignment
/* ========================================================================== */
.allign-left
{
	text-align: left;
}

.allign-right
{
	text-align: right;
}

.allign-center
{
	text-align: center;
}



.row-full-half
{
	width: 100%;
	overflow: hidden;
	float: left;
}

@media (min-width: 992px)
{
	.row-full-half
	{
		width: 50%;
	}
}