/*
 * Table of content
 * 0.0 Import Fonts
 * 1.0 Reset Css
 * 	 1.1 Global style for the elements
 *   1.2 Custom Font Size
 *   1.3 Alert
 *   1.4 Column Width
 *   1.5 Margin
 * 2.0 Login Page
 * 3.0 Navbar
 * 4.0 Sidebar
 */

 /*
  * ------------------------------------------------------------------------------------------------
  * 0.0 Import Fonts
  * ------------------------------------------------------------------------------------------------
  */
@font-face {
  font-family: 'Lato-Regular';
  src: url(../fonts/Lato-Regular.ttf)format('truetype');
}
@font-face {
  font-family: 'Lato-Bold';
  src: url(../fonts/LatoBoldMedium.ttf)format('truetype');
}
@font-face {
  font-family: 'Lato-Black';
  src: url(../fonts/Lato-Black.ttf)format('truetype');
}
@font-face {
	font-family: 'Lato-Light';
	src: url(../fonts/Lato-Light.ttf)format('truetype');
}
@font-face {
 font-family: 'Lato-Hairline';
 src: url(../fonts/Lato-Hairline.ttf)format('truetype');
}
@font-face {
	font-family: 'Montserrat-Regular';
	src: url(../fonts/Montserrat-Regular.ttf)format('truetype');
}
@font-face {
	font-family: 'Montserrat-Bold';
	src: url(../fonts/Montserrat-Bold.ttf)format('truetype');
}
@font-face {
  font-family: 'SourceSansPro-Regular';
  src: url(../fonts/SourceSansPro-Regular.ttf)format('truetype');
}
@font-face {
  font-family: 'SourceSansPro-Semibold';
  src: url(../fonts/SourceSansPro-Semibold.ttf)format('truetype');
}
@font-face {
  font-family: 'SourceSansPro-Bold';
  src: url(../fonts/SourceSansPro-Bold.ttf)format('truetype');
}
@font-face {
  font-family: 'SourceSansPro-Light';
  src: url(../fonts/SourceSansPro-Light.ttf)format('truetype');
}
@font-face {
  font-family: 'OpenSans-Regular';
  src: url(../fonts/OpenSans-Regular.ttf)format('truetype');
}
@font-face {
  font-family: 'OpenSans-Semibold';
  src: url(../fonts/OpenSans-Semibold.ttf)format('truetype');
}
@font-face {
  font-family: 'OpenSans-Bold';
  src: url(../fonts/OpenSans-Bold.ttf)format('truetype');
}
@font-face {
  font-family: 'OpenSans-Light';
  src: url(../fonts/OpenSans-Light.ttf)format('truetype');
}

/*
 * ------------------------------------------------------------------------------------------------
 * 1.0 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;
}
b,strong{
	font-weight:700;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	font-family: 'Lato-Regular', sans-serif;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
input[type=checkbox], input[type=radio] {
  margin-top: 0px;
}
.btn{
	font-family: 'Montserrat-Bold', sans-serif;
	text-transform: uppercase;
	font-size: 12px;
}
.btn.btn-link{
	font-size: 10px;
}
/*
 * ------------------------------------------------------------------------------------------------
 * 1.1 Global style for the elements
 * ------------------------------------------------------------------------------------------------
 */
h1,h2,h3,h4{
	margin: 10px 0px 10px;
	font-family: 'Montserrat-Bold', sans-serif;
	color: #435061;
	position: relative;
}
h5,h6{
	margin:0px 0px 5px;
	font-family:"Montserrat-Bold", sans-serif;
	color:#435061;
	position: relative;
}
h1{
	font-size:36px;
}
h2{
	font-size:30px;
}
h3{
	font-size:24px;
}
h4{
	font-size:18px;
}
h5{
	font-size:14px;
}
h6{
	font-size:12px;
}
p{
	color:#7e8c99;
	font-family:'Lato-Regular', sans-serif;
	font-size:16px;
	margin-bottom:5px;
}
ul,
ul li{
	color:#7e8c99;
	font-family: 'Montserrat-Bold', sans-serif;
}
.table{
	border: 1px solid #e2e7ed;
}
.table th{
  font-family: 'Montserrat-Bold', sans-serif;
  font-size: 13px;
  font-weight: 200;
  text-transform: uppercase;
}
.table th a{
	color:#ffffff;
	text-decoration:none;
}
.table th a:hover{
	text-decoration:underline;
	color:#ffffff;
}
.table tr > td{
  font-size:12px !important;
  font-family:'Lato-Regular',sans-serif;
  vertical-align: middle;
  padding: 5px 2.5px;
}
@media(min-width:768px) {
  .table-responsive{
    overflow-x: hidden;
  }
}
.pagination li{
  font-size: 12px;
}
blockquote{
	background:#31A2E1;
	color:#ffffff;
	padding:35px;
	font-style:italic;
	font-size:21px;
	width:100%;
	margin-bottom:45px;
}
blockquote p{
	margin:0px;
	padding:0px;
	color:#ffffff;
	font-size:21px;
}
a{
	color:#7e8c99 !important;
	text-decoration:none;
}
a:hover{
	color:#435061 !important;
	text-decoration:underline;
}
.padding_none{
	padding:0px !important;
}
.uppercase{
  text-transform: uppercase;
}
label{
  font-family: 'Montserrat-Bold', sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.text-red{
  color: red;
}
/*
 * ------------------------------------------------------------------------------------------------
 * 1.2 Custom Font Size
 * ------------------------------------------------------------------------------------------------
 */
.f10{
  font-size: 10px;
}
.f11{
  font-size: 11px;
}
.f12{
  font-size: 12px;
}
.f13{
  font-size: 13px;
}
.f14{
  font-size: 14px;
}
.f15{
  font-size: 15px;
}
/*
 * ------------------------------------------------------------------------------------------------
 * 1.3 Alert
 * ------------------------------------------------------------------------------------------------
 */
.alert{
  color: #FFFFFF;
  border-radius: 0;
  font-family: 12px !important;
  font-family: 'Montserrat-Bold',sans-serif;
	font-size: 12px;
  text-transform: uppercase;
}
.alert .close{
  color: #000;
  top:-5px;
}
.alert h4 {
  font-size: 12px;
  font-weight: 400;
  font-family: 'Montserrat-Bold',sans-serif;
  margin-bottom: 0;
}
.alert h4 p:last-child{
  font-size: 12px;
  font-weight: 400;
  font-family: 'Montserrat-Bold',sans-serif;
  margin-bottom: 0;
}
.alert .icon {
  margin-right: 10px;
}
.alert-danger{
  background: #DD4B39;
  border-color: #d73925;
}
.alert-success{
  background: #00A65A;
  border-color: #008d4c;
}
.alert-info{
  background: #00C0EF;
  border-color: #00acd6;
}
.alert-warning{
  background: #F39C12;
  border-color: #e08e0b;
}
.danger{
  color: #DD4B39;
  border-color: #d73925;
}
.success{
  color: #00A65A;
  border-color: #008d4c;
}
.info{
  color: #00C0EF;
  border-color: #00acd6;
}
.warning{
  color: #F39C12;
  border-color: #e08e0b;
}
.alert li{
  color: #fff;
}
/*
 * ------------------------------------------------------------------------------------------------
 * 1.4 Column Width
 * ------------------------------------------------------------------------------------------------
 */
.w2-5{
  width: 2.5%;
}
.w5{
  width: 5%;
}
.w7-5{
  width: 7.5%;
}
.w10{
  width: 10%;
}
.w15{
  width: 15%;
}
.w20{
  width: 20%;
}
.w25{
  width: 25%;
}
.w30{
  width: 30%;
}
.w40{
  width: 40%;
}
.w45{
  width: 45%;
}
.w50{
  width: 50%;
}
.w55{
  width: 55%;
}
.w60{
  width: 60%;
}
.w65{
  width: 65%;
}
/*
 * ------------------------------------------------------------------------------------------------
 * 1.5 Margin
 * ------------------------------------------------------------------------------------------------
 */
.mb0{
  margin-bottom: 0px;
}
.mb5{
  margin-bottom: 5px;
}
.mb10{
  margin-bottom: 10px;
}
.mb15{
  margin-bottom: 15px;
}
.mb20{
  margin-bottom: 20px;
}
.mb25{
  margin-bottom: 25px;
}
.mt0{
  margin-top: 0px;
}
.mt5{
  margin-top: 5px;
}
.mt10{
  margin-top: 10px;
}
.mt15{
  margin-top: 15px;
}
.mt20{
  margin-top: 20px;
}
.mt25{
  margin-top: 25px;
}
/*
 * ------------------------------------------------------------------------------------------------
 * 2.0 Login Page
 * ------------------------------------------------------------------------------------------------
 */
.login{
  background: #e7e7e7;
}
.login-box{
  margin: 5% auto 0;
  width: 35%;
  height: 100%;
  padding: 25px;
  border-radius: 10px;
}
.login-header{
  text-align: center;
  margin-bottom: 35px;
}
.login-header img{
  max-width: 125px;
}
.login-body{
  margin-bottom: 35px;
}
.login-body .login-body-p{
  font-size: 16px;
  margin-bottom: 30px;
}
.login-body p{
  margin-bottom: 10px;
}
.login-body .btn{
  width: 100%;
}
@media screen and (max-width: 767px) {
  .login-box{
    margin: 2.5% auto 0;
    width: 80%;
  }
  .login-header img{
    max-width: 125px;
  }
}
.login-footer{
  text-align: center;
}
.login-footer a{
  font-size: 14px;
}
/*
 * ------------------------------------------------------------------------------------------------
 * 3.0 Navbar
 * ------------------------------------------------------------------------------------------------
 */
.navbar .container{
  position: relative;
}
.navbar-brand img{
  max-width: 125px;
  margin-top: -5px;
  margin-left: 25px;

}
.navbar-collapse{
  position: absolute;
  top:5px;
  right:10px;
  height: 50px;
  border: 0;
}
.navbar-collapse ul{
  margin: 0;
}
.navbar-collapse ul li{
  display: inline-block;
}
.navbar-collapse ul.dropdown-menu{
  width: 50px;
}
.navbar-collapse ul.dropdown-menu li {
  width: 100%;
  padding: 5px 10px;
}
.navbar-collapse ul.dropdown-menu li.header {
  text-transform: uppercase;
  font-size: 12px;
  padding: 10px;
  border-bottom: thin solid #e7e7e7;
}
.navbar-collapse ul.dropdown-menu li a{
  font-family: 'Lato-Regular', sans-serif;
}
@media(min-width:768px) {
  .navbar-collapse{
    top:0;
  }
  .navbar-collapse ul.dropdown-menu{
    width: 250px;
  }
}
/*
 * ------------------------------------------------------------------------------------------------
 * 4.0 Sidebar
 * ------------------------------------------------------------------------------------------------
 */
/* Toggle Styles */
#wrapper {
  padding-left: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#wrapper.toggled {
  padding-left: 0px;
}
#sidebar-wrapper {
  z-index: 1000;
  position: fixed;
  left: 250px;
  top:50px;
  width: 0;
  height: 100%;
  margin-left: -250px;
  overflow-y: auto;
  background: #026D18;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#wrapper.toggled #sidebar-wrapper {
  width: 250px;
}
#page-content-wrapper {
  width: 100%;
  top:50px;
  position: absolute;
  padding: 20px 10px;
}
#wrapper.toggled #page-content-wrapper {
  position: absolute;
  margin-right: -250px;
}
/* Sidebar Styles */
.sidebar-nav {
  position: absolute;
  top: 5px;
  width: 250px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sidebar-nav li {
  line-height: 40px;
}
.sidebar-nav li a {
  display: block;
  text-decoration: none;
  color: #FFF !important;
  padding-left: 20px;
  font-size: 12px;
  text-transform: uppercase;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.sidebar-nav li a:hover {
  text-decoration: none;
  background: rgba(255,255,255,0.2);
}
.sidebar-nav li a:active,
.sidebar-nav li a:focus {
  text-decoration: none;
}
.sidebar-nav > .sidebar-brand {
  height: 65px;
  font-size: 18px;
  line-height: 60px;
}
.sidebar-nav > .sidebar-brand a {
  color: #999999;
}
.sidebar-nav > .sidebar-brand > a:hover,
.sidebar-nav > .avatar > a:hover {
  color: #fff;
  background: none;
}
.sidebar-nav > .avatar {
  white-space: nowrap;
  height: 65px;
  line-height: 60px;
  background: #2f94cc;
}
.sidebar-nav > .avatar img{
  border-radius: 50%;
  display: inline;
  vertical-align: middle;
  width: 34px;
}
.sidebar-nav > .avatar > a > .avatar-content {
  display: inline-block;
  line-height: 16px;
  margin-left: 10px;
  white-space: normal;
  vertical-align: middle;
}
.sidebar-nav > .avatar > a > .avatar-content > .avatar-title {
  color: #fff;
  display: inline-block;
  line-height: 18px;
  margin: 0px 0px -4px 0px;
  white-space: nowrap;
}
.sidebar-nav > .avatar > a > .avatar-content > .avatar-subtitle {
  color: #BBDEFB;
  font-size: 11px;
  font-weight: 500;
  display: inline-block;
  text-transform: uppercase;
  white-space: nowrap;
}
.sidebar-nav li:not(.avatar) strong {
  background-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  display: inline-block;
  font-size: 14px;
  height: 30px;
  line-height: 30px;
  margin: 0px;
  position: relative;
  text-align: center;
  width: 34px;
  z-index: 2;
}
.sidebar-nav li:not(.avatar) span {
  display: inline-block;
  font-weight: 500;
  margin: 0px 0px 0px 10px;
  position: relative;
  z-index: 2;
}
.sidebar-nav li:not(.avatar) span.dropdownsign{
  position: absolute;
  right: 15px;
}
/*Sidebar Submenu*/
.sidebar-nav li > ul li{
  line-height: 30px;
}
.sidebar-nav li ul li > a.dropdownmenusub{
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  padding-left: 57px !important;
}
.sidebar-nav li ul li > a:hover {
  text-decoration: none;
  background: rgba(255,255,255,0.2);
}
.sidebar-nav li ul li > a:active,
.sidebar-nav li ul li > a:focus {
  text-decoration: none;
}
/*End of Sidebar Submenu*/
@media(min-width:768px) {
  #wrapper {
    padding-left: 250px;
  }
  #wrapper.toggled {
    padding-left: 0;
  }
  #sidebar-wrapper {
    width: 250px;
  }
  #wrapper.toggled #sidebar-wrapper {
    width: 0;
  }
  #page-content-wrapper {
    padding: 20px 10px;
    position: relative;
  }
  #wrapper.toggled #page-content-wrapper {
    position: relative;
    margin-right: 0;
  }
}
/*
 * ------------------------------------------------------------------------------------------------
 * 4.0 Breadcrumb
 * ------------------------------------------------------------------------------------------------
 */
#breadcrumb{
  /*position: relative;*/
  height: 65px;
  width: 100%;
}
.breadcrumb{
  padding-top: 22px;
  padding-bottom: 22px;
  position: absolute;
  top:0;
  left: 0;
  right: 0;
  height: 65px;
}
.breadcrumb li a.active{
  color: #026D18 !important;
}
.breadcrumb a{
  margin-left: 10px;
  font-size: 12px;
  font-family: 'Montserrat-Bold', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}
/*
 * ------------------------------------------------------------------------------------------------
 * 22.0 Button
 * ------------------------------------------------------------------------------------------------
 */
.btn-default {
  background-color: #f4f4f4;
  color: #444;
  border-color: #ddd;
}
.btn-primary {
  background-color: #3c8dbc;
  border-color: #367fa9;
}
.btn-danger{
  background: #DD4B39;
  border-color: #d73925;
}
.btn-success{
  background: #00A65A;
  border-color: #008d4c;
}
.btn-info{
  background: #00C0EF;
  border-color: #00acd6;
}
.btn-warning{
  background: #F39C12;
  border-color: #e08e0b;
}
.btn-special{
  background: #31A2E1;
  border-color: #37adf0;
	color: #FFF;
}
.btn-group-xs > .btn, .btn-xs {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 0px;
}
.btn-facebook{
  color: #3864A3;
}
