/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
[Master Stylesheet]

Project:    HELSINKI
Version:    1.0 
author:     myii-developer 

-------------------------------------------------------------------------------------
[Table of contents]

1. Body
    2. wrap
        3. page-header
            4. leftside-header
            4. rightside-header
        3. page-body
            4. left-sidebar
            4. content
                5. content-header
            4. right-sidebar
            
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
html,
body {
  width: 100%;
  font-size: 13px;
}

body {
  background: #202020;
  margin: 0;
  color: #404040;
  font-family: "Open Sans", Arial, sans-serif;
  line-height: 22px;
  /*overflow-x: hidden;
  overflow-y: scroll;*/
}

table td a {
  color: #414141;  
}


a {
  color: #f98d73;
}

a:hover,
a:focus {
  color: #e95031;
}

a:active {
  color: #002544;
}

a,
a:hover,
a:active,
a:focus {
  text-decoration: none;
}
/* 錨點定位調整 */
html{
  scroll-padding-top: 160px;
}
/* WRAPPER*/
/*================================================*/
.wrap {
  min-height: 100%;
  width: 100%;
}

/* PAGE HEADER*/
/*================================================*/
.page-header {
  height: 60px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  padding: 0;
  margin: 0;
  border: none;
}

/* PAGE BODY*/
/*================================================*/
.page-body {
  display: block;
  min-height: 100%;
  width: 100%;
  overflow: hidden;
  padding-top: 50px;
}

/*CONTENT OF THE PAGE*/
/*================================================*/
.content {
  display: block;
  position: relative;
  vertical-align: top;
  margin-left: 220px;
  padding: 30px;
  background: #ececec;
  min-height: 100vh;
}
.content > .row + .row {
  padding-top: 10px;
}

.content-header {
  border-bottom: none;
  height: 60px;
  padding: 0;
}
footer {
 font-size: 90%;
line-height: 20px;
  border-bottom: none;
  /*height: 60px;*/
  padding: 0;
}

/* LEFT SIDEBAR*/
/*================================================*/
.left-sidebar {
  display: block;
  height: 100%;
  float: left;
  position: relative;
  width: 220px;
  z-index: 1030;
}

/* Left-sidebar COLLAPSE*/
/*================================================*/
html.left-sidebar-collapsed .content {
  margin-left: 60px;
}
html.left-sidebar-collapsed .left-sidebar {
  width: 60px;
}
html.left-sidebar-collapsed .ficon {

}
html.left-sidebar-collapsed .ficon li>a{
	clear: both;
	text-align: center;	
	margin-left: 0px;
	width:33.333333%;
	width: 60px;

}

.ficon{
	position: fixed;
	bottom: 0px;
	width: 100%;
	max-width: 220px;
	display:block
}
.ficon li>a{
	display:block;
	float:left;
	width:33.333333%;
	font-size: 20px;
	background-color: #e95031;background-color: #262626;
	text-align: center;
	padding-top: 20px;
	padding-bottom: 20px;
	color: #FFF;
	
	}
.ficon li a:hover{
	background-color: #f52737;
	
	}
/* RIGHT SIDEBAR*/
/*================================================*/
.right-sidebar {
  display: block;
  height: 100%;
  float: right;
  position: relative;
  width: 240px;
  z-index: 1020;
  position: fixed;
  bottom: 0;
  right: 0;
  padding-bottom: 50px;
  top: 50px;
  margin-right: -240px;
  -webkit-transition-property: margin;
  -moz-transition-property: margin;
  transition-property: margin;
  -webkit-transition-duration: 0.25s;
  -moz-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-transition-delay: 0;
  -moz-transition-delay: 0;
  transition-delay: 0;
}
.right-sidebar .nano-content {
  padding-bottom: 50px;
}

/* right-sidebar OPENED*/
/*================================================*/
html.right-sidebar-opened .right-sidebar {
  margin-right: 0;
}

/* SCROLL TO TOP*/
/*================================================*/
.scroll-to-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 40px;
  z-index: 1010;
  height: 40px;
  display: none;
  border-radius: 50%;
  text-align: center;
  background: #e95031;
  box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.53);
}
.scroll-to-top i {
  color: #ffffff;
  font-size: 20px;
  width: 40px;
  height: 40px;
  padding: 10px;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* STYLE - FIXED*/
/*================================================*/
@media only screen and (min-width: 768px) {

  html.fixed .page-header {
    position: fixed;
    z-index: 1035;
  }
  html.fixed .content {
    margin-top:60px;
  }
  html.fixed .content-header {
    position: fixed;
    z-index: 1010;
    top: 60px;
    left: 220px;
    right: 0;
    margin: 0;
    -webkit-transition-property: left;
    -moz-transition-property: left;
    transition-property: left;
    -webkit-transition-duration: 0.25s;
    -moz-transition-duration: 0.25s;
    transition-duration: 0.25s;
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    -webkit-transition-delay: 0;
    -moz-transition-delay: 0;
    transition-delay: 0;
  }
  html.fixed footer {
	position: fixed;
	z-index: 10;
	left: 220px;
	right: 0;
	margin: 0;
	-webkit-transition-property: left;
	-moz-transition-property: left;
	transition-property: left;
	-webkit-transition-duration: 0.25s;
	-moz-transition-duration: 0.25s;
	transition-duration: 0.25s;
	-webkit-transition-timing-function: ease-out;
	-moz-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	-webkit-transition-delay: 0;
	-moz-transition-delay: 0;
	transition-delay: 0;
	text-align: center;
	bottom: 0px;
  }
  html.fixed .left-sidebar {
    position: fixed;
    bottom: 0;
    left: 0;
    padding-bottom: 50px;
    top: 60px;
  }
  html.fixed .left-sidebar .nano-content {
    padding-bottom: 100px;
  }

  /* Fixed -  Left-sidebar collapse */
  html.fixed.left-sidebar-collapsed .content .content-header {
    left: 60px;
  }
  html.fixed.left-sidebar-collapsed .content footer {
    left: 60px;
  }
}
/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* STYLE - SCROLL*/
/*================================================*/
@media only screen and (min-width: 768px) {

  html.scroll .left-sidebar,
  html.scroll-left-sidebar .left-sidebar {
    position: absolute;
  }
  html.scroll .left-sidebar .nano,
  html.scroll-left-sidebar .left-sidebar .nano {
    position: static;
    overflow: visible;
  }
  html.scroll .left-sidebar .nano .nano-content,
  html.scroll-left-sidebar .left-sidebar .nano .nano-content {
    position: static;
    overflow: visible;
    margin-right: 0 !important;
    outline: none;
  }
  html.scroll .left-sidebar .nano .nano-pane,
  html.scroll-left-sidebar .left-sidebar .nano .nano-pane {
    display: none !important;
  }

  html.scroll .content,
  html.scroll-content-header .content {
    margin-top: 0px;
  }
  html.scroll .content-header,
  html.scroll-content-header .content-header {
    position: initial;
    margin: -30px -30px 30px -30px;
  }
  html.scroll footer,
  html.scroll-content-header footer {
    position: initial;
    margin: -30px -30px 30px -30px;
  }
}
/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* MOBIL VERSION*/
/*================================================*/
@media only screen and (max-width: 767px) {
  html .page-body {
    min-height: 0;
    padding-top: 0;
  }
  html .page-body .content {
    margin-left: 0px;
    padding: 10px;
  }
  html .page-body .content-header {
    margin: -10px -10px 10px -10px;
  }
  html .page-body footer {
    margin: -10px ;
	padding: 10px;
  }
  html .page-body .left-sidebar {
    bottom: 0;
    margin-left: -100%;
    min-height: 0;
    min-width: 100%;
    padding-bottom: 50px;
    position: fixed;
    overflow: hidden;
    top: 60px;
    -webkit-transition-property: margin;
    -moz-transition-property: margin;
    transition-property: margin;
    -webkit-transition-duration: 0.25s;
    -moz-transition-duration: 0.25s;
    transition-duration: 0.25s;
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    -webkit-transition-delay: 0;
    -moz-transition-delay: 0;
    transition-delay: 0;
  }
.ficon{
    min-width: 100%;
	overflow: hidden;
	
}
  html.left-sidebar-open .left-sidebar {
    margin-left: 0;
  }
}
/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* PAGE HEADER */
/*================================================*/
.page-header {
	background: #ffffff;
	color: #6f767c;
	font-size: 140%;
}
.page-header .leftside-header {
  display: inline-block;
}
.page-header .leftside-header .logo {
  /*width: 250px;
  height: 50px;
  line-height:50px;*/line-height:60px;
  position: relative;
  display: inline-block;
}

.logo a {
  color: #000;font-weight: bold;
}

.logo a:hover {
  color: #f98d73;
}


.page-header .leftside-header .logo img {
  /*width: 100%;*/
  padding: 5px 4px;
  margin-left: -4px;float: left;
}
.page-header .leftside-header .toggle-left-sidebar {
  color: #6f767c;
  height: 30px;
  line-height: 30px;
  position: absolute;
  right: 15px;
  text-align: center;
  top: 15px;
  font-size: 18px;
  font-size: 1.38462rem;
  cursor: pointer;
}
.page-header .rightside-header {
  float: right;
  height: 60px;
  margin-right: 5px;
}

.page-header .rightside-header .header-middle {
  display: inline-block;font-size: 15px;padding: 8px 0px 0px 0px;
  height: 100%;
  vertical-align: middle;
}
.page-header .rightside-header .header-separator {
  border-left: 1px solid rgba(204, 204, 204, 0.46);
  height: 25px;
  width: 1px;
  margin: 0px 5px;
  display: inline-block;
  vertical-align: middle;
}
.page-header .rightside-header .header-section {
  display: inline-block;
  padding: 0px 4px;
  vertical-align: middle;
}
.page-header .rightside-header .header-section a{
	color: #6f767c;
}
.page-header .rightside-header .header-section a:hover{
	color: #25282a;
}
.page-header .rightside-header .header-section .log-out {
  color: #0085f6;
  font-size: 22px;
  font-size: 1.69231rem;
  line-height: 22px;
  line-height: 1.69231rem;
  padding: 3px;
  cursor: pointer;
}
.page-header .rightside-header .header-section .log-out:hover {
  color: #ffffff;
}
.page-header .dropdown-box {
  background: #ffffff;
  color: #404040;
  position: absolute;
  display: none;
  z-index: 1000;
  border-radius: 0px 0px 3px 3px;
  box-shadow: 1px 2px 4px 0px rgba(32, 32, 32, 0.7);
}
.page-header .dropdown-box:before {
  font-family: 'FontAwesome';
  font-size: 18px;
  font-size: 1.38462rem;
  content: '\f0d8 ';
  color: #ffffff;
  position: absolute;
  top: -16px;
  right: 8px;
}
.page-header .dropdown-box .drop-header {
  padding: 6px 10px;
  height: 40px;
  background: #ffffff;
  border-bottom: 2px solid #ececec;
  color: #000000;
}
.page-header .dropdown-box .drop-header h3 {
  display: inline-block;
  font-size: 15px;
  margin: 5px 0px;
}
.page-header .dropdown-box .drop-header h3 i {
	margin-right: 6px;
	color: #004E90;

}
.page-header .dropdown-box .drop-header span.badge {
  float: right;
  margin-top: 4px;
}
.page-header .dropdown-box .drop-content.basic {
  text-align: left;
}
.page-header .dropdown-box .drop-content.basic ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-header .dropdown-box .drop-content.basic ul li {
  cursor: pointer;
  border-bottom: 1px solid #ececec;
  color: #202020;
}
.page-header .dropdown-box .drop-content.basic ul li:last-child {
  border: none;
}
.page-header .dropdown-box .drop-content.basic ul li i {
  margin-right: 6px;
}
.page-header .dropdown-box .drop-content.basic ul li a {
  display: block;
  padding: 6px 10px;
  color: #202020 !important;
}
.page-header .dropdown-box .drop-content.basic ul li:hover {
  background: #f7f7f7;
  font-weight: bold;
}
.page-header .dropdown-box .drop-content.basic ul li:hover i {
	color: #004E90;
	 
}
.page-header .dropdown-box .drop-footer {
  padding: 5px;
  text-align: center;
  background: #f2f2f2;
}
.page-header .dropdown-box .drop-footer h3,
.page-header .dropdown-box .drop-footer a {
  cursor: pointer;
  color: #999999;
  margin: 3px 0px;
  font-size: 12px;
  font-size: 0.92308rem;
  line-height: 12px;
  line-height: 0.92308rem;
}
.page-header .dropdown-box .drop-footer h3:hover,
.page-header .dropdown-box .drop-footer a:hover {
  font-weight: bold;
}
.page-header #user-headerbox {
  cursor: pointer;
  position: relative;
}
.page-header #user-headerbox .user-header-wrap .user-photo {
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  border-radius: 3px;
  overflow: hidden;
  margin-right: 10px;
}
.page-header #user-headerbox .user-header-wrap .user-photo img {
  width: 100%;
}
.page-header #user-headerbox .user-header-wrap .user-info {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 10px;
  margin-top: 10px;
}
.page-header #user-headerbox .user-header-wrap .user-info span {
  display: block;
  font-weight: bold;
}
.page-header #user-headerbox .user-header-wrap .user-info span.user-name {
  color: #ffffff;
  font-size: 15px;
  font-size: 1.15385rem;
  line-height: 18px;
  line-height: 1.38462rem;
}
.page-header #user-headerbox .user-header-wrap .user-info span.user-profile {
  color: #0b8fff;
  font-size: 11px;
  font-size: 0.84615rem;
  line-height: 14px;
  line-height: 1.07692rem;
}
.page-header #user-headerbox .user-header-wrap > i {
  color: #ffffff;
  padding: 10px 0px 10px 10px;
  font-size: 11px;
  font-size: 0.84615rem;
}
.page-header #user-headerbox .user-header-wrap > i.icon-close {
  display: none;
}
.page-header #user-headerbox.open i.icon-close {
  display: inline-block;
}
.page-header #user-headerbox.open i.icon-open {
  display: none;
}
.page-header #user-headerbox .dropdown-box {
  display: none;
  width: 100%;
  margin-top: -1px;
  border: 1px solid #e8e8e8;
  min-width: 160px;
  right: -10px;
}
.page-header #notice-headerbox .notice {
  margin: 0px 5px;
  display: inline-block;
  position: relative;
}
.page-header #notice-headerbox .notice > i {
  cursor: pointer;
  color: #ffffff;
  font-size: 16px;
  font-size: 1.23077rem;
  padding: 5px;
}
.page-header #notice-headerbox .notice > i:hover {
  color: #6f767c;
}
.page-header #notice-headerbox .notice.open > i {
  color: #6f767c;
}
.page-header #notice-headerbox .notice .dropdown-box {
  width: 250px;
  right: 0;
  margin-top: 11px;
}
.page-header #notice-headerbox #alerts-notice .drop-header,
.page-header #notice-headerbox #checklist-notice .drop-header,
.page-header #notice-headerbox #messages-notice .drop-header {
  background: #ffffff;
  color: #000000;
  border-bottom: 1px solid #006ac3;
}
.page-header #notice-headerbox #alerts-notice .drop-header i,
.page-header #notice-headerbox #checklist-notice .drop-header i,
.page-header #notice-headerbox #messages-notice .drop-header i {
  color: #6f767c;
}
.page-header #search-headerbox {
	color: #6f767c !important;
	
 
}
.page-header #search-headerbox #search {
	display: none;
	border: 1px solid rgba(0, 0, 0, 0.8);
	padding: 5px 8px;
	background: none !important;
	font-size: 80%;
	color:#414950;
	width:300px;
		
}
.page-header #search-headerbox #search::-webkit-input-placeholder {	
  color: rgba(0, 0, 0, 0.8);
}
.page-header #search-headerbox #search:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(0, 0, 0, 0.8);  
}
.page-header #search-headerbox #search::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(0, 0, 0, 0.8);   
}
.page-header #search-headerbox #search:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.8));   
}
.page-header #search-headerbox #search:focus {
  outline: none !important;
  border: 1px solid rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);  
}
.page-header #search-headerbox .search {
  margin-left: 5px;
  cursor: pointer;
  padding: 8px 8px;
  border-radius: 50%;

}

@media only screen and (max-width: 767px) {
.page-header #search-headerbox {
	color: #FFFFFF !important;
}
.page-header #search-headerbox #search {
	display: none;
	border: 1px solid rgba(250, 250, 250, 0.8);
	padding: 5px 8px;
	background: none !important;
	color: #FFFFFF;
	font-size: 80%;
	width:240px;
}
.page-header #search-headerbox #search:focus {
  outline: none !important;
  border: 1px solid rgba(250, 250, 250, 0.8);
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
  color: #FFFFFF;
}
.page-header #search-headerbox #search::-webkit-input-placeholder {	
  color: rgba(250, 250, 250, 0.8);
}
.page-header #search-headerbox #search:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(250, 250, 250, 0.8); 
}
.page-header #search-headerbox #search::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(250, 250, 250, 0.8);  
}
.page-header #search-headerbox #search:-ms-input-placeholder {
  color: rgba(250, 250, 250, 0.8);  
}
  .page-header {
	background: none;
	height: auto;
	position: static;
		
  }
  .page-header .leftside-header {
	position: fixed;
	background: #ffffff;
	color: #6f767c;
	left: 0;
	right: 0;
	top: 0;
	z-index: 1035;
	height: 60px;
	line-height: 60px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
  }
  .page-header .rightside-header {
    background: #42d2ba;
	color: #ffffff;
    float: none !important;
    margin-top: 60px;
    width: 100%;
    text-align: right;
  }
  .page-header .rightside-header i{

	color: #ffffff;

  }
}
/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* CONTENT*/
/*================================================*/
.content {
  -webkit-transition-property: margin-left;
  -moz-transition-property: margin-left;
  transition-property: margin-left;
  -webkit-transition-duration: 0.25s;
  -moz-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.content .content-header {
	color: #414950;
	background-color: #f7f7f7;
	  height: 60px;
}
.content footer{
	color: #ffffff;
	background-color: #414141;
	padding: 10px 0px;
	
}
.content .content-header .leftside-content-header,
.content .content-header .rightside-content-header {
  display: inline-block;
  height: 60px;
}
.content .content-header .leftside-content-header {
  padding-left: 20px;
}
.content .content-header .rightside-content-header {
  float: right;
  padding-right: 20px;
}
.content .content-header ul.breadcrumbs {
  list-style: none;
  line-height: 60px;
  margin: 0px;
  padding: 0px;
}
.content .content-header ul.breadcrumbs li {
  display: inline-block;
  font-size: 18px;
  font-size: 1.25385rem;
  line-height: 21px;
  line-height: 1.8rem;
  vertical-align: middle;
}
.content .content-header ul.breadcrumbs li:first-child a:before {
  content: none;
}
.content .content-header ul.breadcrumbs li:first-child i {
  padding-right: 8px;
  color: #414141;
}
.content .content-header ul.breadcrumbs li a {
  color: #ffffff;
}
.content .content-header ul.breadcrumbs li a:before {
  font-family: 'FontAwesome';
  content: '\f105 ';
  font-weight: bold;
  padding: 0px 6px 0px 5px;
  color: #414141;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* RIGHT SIDEBAR */
/*================================================*/
.right-sidebar {
  background: #ffffff;
  color: #000000;
  border: 1px solid #ececec;
}
.right-sidebar .right-sidebar-toggle {
  position: absolute;
  top: 60px;
  left: -30px;
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  cursor: pointer;
  text-align: center;
  border-bottom-left-radius: 50%;
}
.right-sidebar .right-sidebar-toggle i {
  font-size: 20px;
  line-height: 30px;
}
.right-sidebar .right-sidebar-toggle i:hover {
  color: #004E90;
}
.right-sidebar .template-settings {
  padding: 10px;
}
.right-sidebar .template-settings .toggle-settings {
  padding: 0;
  list-style: none;
}
.right-sidebar .template-settings .toggle-settings li {
  display: block;
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #f1f1f1;
}
.right-sidebar .template-settings .toggle-settings li:last-child {
  border-bottom: none;
}
.right-sidebar .template-settings .toggle-settings li .text {
  display: inline-block;
}
.right-sidebar .template-settings .toggle-settings li .switch {
  float: right;
  margin-top: 5px;
}
.right-sidebar .template-settings .toggle-colors {
  padding: 0;
  margin-top: 25px;
  list-style: none;
}
.right-sidebar .template-settings .toggle-colors li {
  display: block;
  padding: 0px 15px;
  margin-bottom: 5px;
}
.right-sidebar .template-settings .toggle-colors li img {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .right-sidebar .template-settings h4:first-child {
    display: none;
  }
  .right-sidebar .template-settings .toggle-settings {
    display: none;
  }
  .right-sidebar .right-sidebar-toggle {
    top: 90px;
  }
}
/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* LEFT SIDEBAR*/
/*================================================*/
.left-sidebar {
  background: #202020;
  color: #ffffff;
  -webkit-transition-property: width;
  -moz-transition-property: width;
  transition-property: width;
  -webkit-transition-duration: 0.25s;
  -moz-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-transition-delay: 0;
  -moz-transition-delay: 0;
  transition-delay: 0;
}

.left-sidebar .nano {
  background: #414141;
}
.left-sidebar .left-sidebar-header {
  position: relative;
  height: 40px;
  background: #414141;
}
.left-sidebar .left-sidebar-header .left-sidebar-title {
	padding: 10px;
	font-size: 10px;
	color: #ffffff;
	font-weight: bold;
	height: 40px;
	margin-right: 60px;
	-webkit-transition-property: margin;
	-moz-transition-property: margin;
	transition-property: margin;
	-webkit-transition-duration: 0.25s;
	-moz-transition-duration: 0.25s;
	transition-duration: 0.25s;
	-webkit-transition-timing-function: ease-out;
	-moz-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	background: #e95031;background:#262626;
}
.left-sidebar .left-sidebar-header .left-sidebar-toggle {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 40px;
  background-color: #e95031;  background-color: #262626;
  text-align: center;
  cursor: pointer;
}

.left-sidebar .left-sidebar-header .left-sidebar-toggle i {
  font-size: 20px;
  line-height: 40px;
}
.left-sidebar .left-sidebar-header .left-sidebar-toggle i:hover {
  color: #cccccc;
  
}

@media only screen and (max-width: 768px) {
  .left-sidebar .left-sidebar-header {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  html.left-sidebar-collapsed .left-sidebar-title {
    opacity: 0;
  }
}
/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* LEFT SIDEBAR NAVIGATION*/
/*================================================*/
ul#main-nav {
  margin-right: 0px;
}
ul#main-nav > li {
  border-bottom: 1px solid #2a2a2a;
}
ul#main-nav > li.active-item > a {
  /*box-shadow: 2px -1px 0 #006ac3 inset !important;*/
  border-bottom-left-radius: 5px;
  background: #42d2ba;
  color: #ffffff !important;
}
ul#main-nav > li.open-item > a {
  /*box-shadow: 0px -1px 0 #006ac3 inset;*/
  /*border-bottom-left-radius: 5px;*/
  background: #ec3b52;background-color: #d80027;
}
ul#main-nav > li.open-item > a > i {
	color: #ffffff;
}
ul#main-nav li a {
  padding: 12px 20px;
  font-size: 13px;
  color: #ffffff;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
}
ul#main-nav li a:hover, ul#main-nav li a:focus {
  background: #d62c4b;
  color: #fff!important;
}
ul#main-nav li a > i {
  font-size: 18px;
  margin-right: 10px;
  text-align: center;
  vertical-align: middle;
}
ul#main-nav li span {
  vertical-align: middle;
}
ul#main-nav li.has-child-item {
  position: relative;
}
ul#main-nav li.has-child-item > a:after {
  font-family: 'FontAwesome';
  font-size: 10px;
  font-size: 0.76923rem;
  content: '\f067';
  color: #ffffff;
  position: absolute;
  padding: 14px;
  right: 0;
  top: 0;
  
}
ul#main-nav li.has-child-item.open-item > ul.child-nav {
  display: block;
}
ul#main-nav li.has-child-item.open-item > a:after {
  content: '\f068';
}
ul#main-nav ul.child-nav {
  /*border-radius: 5px;*/
  display: none;
}
ul#main-nav ul.child-nav.level-1 {
  background: #515151;
  box-shadow: 0px -5px 5px -3px rgba(0, 0, 0, 0.6) inset;
}
ul#main-nav ul.child-nav.level-1 li a {
  padding: 10px 50px;
}
ul#main-nav ul.child-nav.level-1 li a:hover, ul#main-nav ul.child-nav.level-1 li a:focus {
  background: unset;
  color:#d80027!important;
}
/*
ul#main-nav li a:hover ul.child-nav li a:before {
  background:#f98d73!important; 
}
*/

ul#main-nav ul.child-nav.level-2 {
  background: #25282a;
  box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.4) inset;
}
ul#main-nav ul.child-nav.level-2 li a:hover{
 background: #25282a;
 color:#42d2ba;
}
ul#main-nav ul.child-nav.level-2 li a:focus{
 background: #25282a;
 color:#42d2ba;
}
ul#main-nav ul.child-nav.level-2 li a {
  padding: 8px 70px;
 
}
ul#main-nav ul.child-nav.level-3 {
	color:#42d2ba;
  background: #25282a;
  box-shadow: 0px 0px 0px 5px #000 inset;
}
ul#main-nav ul.child-nav.level-3 li a {
  padding: 6px 90px;
}
ul#main-nav ul.child-nav.level-2 li a:focus {
	color:#42d2ba;
	background:#25282a;
}

ul#main-nav li .lifocus a{
  color:#d80027;
}
@media only screen and (min-width: 768px) {
  html.left-sidebar-collapsed .left-sidebar #main-nav > li.open-item > a {
    box-shadow: none;
  }
  html.left-sidebar-collapsed .left-sidebar #main-nav > li > a {
    overflow: hidden;
    text-overflow: clip;
  }
  html.left-sidebar-collapsed .left-sidebar #main-nav > li > a span {
    visibility: hidden;
  }
  html.left-sidebar-collapsed .left-sidebar #main-nav li.has-child-item a:after {
    display: none;
  }
  html.left-sidebar-collapsed .left-sidebar #main-nav li.has-child-item ul.child-nav {
    display: none;
  }
  html.left-sidebar-collapsed .left-sidebar .nano:hover {
    width: 220px;
    min-height: 100vh;
    background: rgba(32, 32, 32, 0.1);
  }
  html.left-sidebar-collapsed .left-sidebar .nano:hover .nano-content {
    background: rgba(38, 57,73, 0.9);

  }
  html.left-sidebar-collapsed .left-sidebar .nano:hover #main-nav > li.open-item > a {
    box-shadow: 0px -1px 0 #004E90 inset;
  }
  html.left-sidebar-collapsed .left-sidebar .nano:hover #main-nav > li > a {
    overflow: visible;
    text-overflow: initial;
  }
  html.left-sidebar-collapsed .left-sidebar .nano:hover #main-nav > li > a span {
    visibility: visible;
  }
  html.left-sidebar-collapsed .left-sidebar .nano:hover #main-nav li.has-child-item a:after {
    display: block;
  }
  html.left-sidebar-collapsed .left-sidebar .nano:hover #main-nav li.has-child-item.open-item > ul.child-nav {
    display: block;
  }
}
/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* LEFT SIDEBAR SUBNAVIGATION */
/*================================================*/
/*
ul#main-nav ul.child-nav li a:before {
  position: absolute;
  content: "";
  left: 28px;
  top: 0px;
  bottom: 0px;
  border-left: 1px solid #2f2f2f;
}
*/
ul#main-nav ul.child-nav li a:before {
    position: absolute;
    content: "";
    left: 30px;
    top: 20px;
    bottom: 0px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #f98d73;
}

ul#main-nav ul.child-nav li:hover > a:before {
  /*border-color: #006ac3;*/
}
ul#main-nav ul.child-nav li.active-item > a:before {
  border-color: #004E90 !important;
}
ul#main-nav ul.child-nav li.open-item:before {
  position: absolute;
  content: "";
  left: 28px;
  top: 42px;
  bottom: 0px;
  /*border-top: 1px solid #616161;*/
  width: 23px;
}
ul#main-nav ul.child-nav li.open-item > a:before {
  border-color: #006ac3;
}
ul#main-nav ul.child-nav li.has-child-item > a:after {
  padding: 10px;
}
ul#main-nav ul.child-nav li .level-2 li.open-item:before {
  left: 50px;
  top: 38px;
  width: 21px;
}
ul#main-nav ul.child-nav li .level-2 li a:before {
  left: 50px;
}
ul#main-nav ul.child-nav li .level-2 li.has-child-item > a:after {
  padding: 8px;
}
ul#main-nav ul.child-nav li .level-3 li a:before {
  left: 70px;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* HEADINGS*/
/*================================================*/
h1 {
  font-size: 36px;
  font-size: 2.76923rem;
}

h2 {
  margin-top: 15px;
  font-size: 30px;
  font-size: 2.30769rem;
}

h3 {
  margin-top: 15px;
  font-size: 24px;
  font-size: 1.84615rem;
}

h4 {
  font-size: 18px;
  font-size: 1.38462rem;
}

h5 {
  font-size: 16px;
  font-size: 1.23077rem;
}

h6 {
  font-size: 14px;
  font-size: 1.07692rem;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* BLOCKQUOTES*/
/*================================================*/
blockquote {
  font-size: 14px;
  font-size: 1.07692rem;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* PANELS*/
/*================================================*/
.panel {
  border: none;
  box-shadow: 1px 1px 1px #cccccc;
}
.panel .panel-header,
.panel .panel-footer {
  padding: 10px 12px;
}
.panel .panel-content {
  padding: 12px;
}
.panel .panel-header {
  position: relative;
  border-radius: 4px 4px 0px 0px;
  border-bottom: 1px solid #cccccc;
}
.panel .panel-header .panel-title {
  color: #333333;
  font-size: 16px;
  font-size: 1.23077rem;
  font-weight: bold;
  margin: 5px 0px;
}
.panel .panel-header .panel-subtitle {
  color: #585858;
  font-size: 12px;
  font-size: 0.92308rem;
  margin: 0px;
}
.panel .panel-header .panel-actions {
  position: absolute;
  top: 10px;
  right: 12px;
}
.panel .panel-header .panel-actions ul {
  margin: 0;
  list-style: none;
  padding: 0;
}
.panel .panel-header .panel-actions ul li {
  display: inline-block;
}
.panel .panel-header .panel-actions ul li.action {
  width: 25px;
  height: 25px;
  text-align: center;
  border-radius: 3px;
  cursor: pointer;
  color: #585858;
  box-shadow: 1px 1px 2px;
  margin-right: 2px;
}
.panel .panel-header .panel-actions ul li:hover {
  color: #202020;
}
.panel .panel-header .panel-actions ul li span {
  vertical-align: middle;
}
.panel .panel-header .panel-actions ul li.toggle-panel span:before {
  font-family: 'FontAwesome';
  font-size: 10px;
  font-size: 0.76923rem;
  content: '\f068';
}
.panel .panel-header .panel-actions ul li.toggle-panel.panel-collapse span:before {
  content: '\f067';
}
.panel .panel-footer {
  border: none;
}

.panel .panel-header.border {
  border-width: 2px;
  background: none !important;
}
.panel .panel-header.border .panel-title,
.panel .panel-header.border .panel-actions {
  color: #333333 !important;
}
.panel .panel-header.panel-success {
  background: #88b93c;
}
.panel .panel-header.panel-success .panel-title,
.panel .panel-header.panel-success .panel-actions li.action {
  color: #FFF;
}
.panel .panel-header.panel-success .panel-actions li.action {
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 1px 1px 2px #4f6c23;
}
.panel .panel-header.panel-success.border {
  border-color: #88b93c;
}
.panel .panel-header.panel-warning {
  background: #fea223;
}
.panel .panel-header.panel-warning .panel-title,
.panel .panel-header.panel-warning .panel-actions li.action {
  color: #FFF;
}
.panel .panel-header.panel-warning .panel-actions li.action {
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 1px 1px 2px #ba6c01;
}
.panel .panel-header.panel-warning.border {
  border-color: #fea223;
}
.panel .panel-header.panel-danger {
  background: #d2322d;
}
.panel .panel-header.panel-danger .panel-title,
.panel .panel-header.panel-danger .panel-actions li.action {
  color: #FFF;
}
.panel .panel-header.panel-danger .panel-actions li.action {
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 1px 1px 2px #7e1e1b;
}
.panel .panel-header.panel-danger.border {
  border-color: #d2322d;
}
.panel .panel-header.panel-info {
  background: #5bc0de;
}
.panel .panel-header.panel-info .panel-title,
.panel .panel-header.panel-info .panel-actions li.action {
  color: #FFF;
}
.panel .panel-header.panel-info .panel-actions li.action {
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 1px 1px 2px #2390b0;
}
.panel .panel-header.panel-info.border {
  border-color: #5bc0de;
}
.panel .panel-header.panel-lighter-1 {
  background: #006ac3;
}
.panel .panel-header.panel-lighter-1 .panel-title,
.panel .panel-header.panel-lighter-1 .panel-actions {
  color: #ffffff;
}
.panel .panel-header.panel-lighter-1.border {
  border-color: #006ac3;
}
.panel .panel-header.panel-lighter-2 {
  background: #0b8fff;
}
.panel .panel-header.panel-lighter-2 .panel-title,
.panel .panel-header.panel-lighter-2 .panel-actions {
  color: #ffffff;
}
.panel .panel-header.panel-lighter-2.border {
  border-color: #0b8fff;
}
.panel .panel-header.panel-primary {
  background: #004E90;
}
.panel .panel-header.panel-primary .panel-title,
.panel .panel-header.panel-primary .panel-actions {
  color: #ffffff;
}
.panel .panel-header.panel-primary.border {
  border-color: #004E90;
}
.panel .panel-header.panel-darker-1 {
  background: #003867;
}
.panel .panel-header.panel-darker-1 .panel-title,
.panel .panel-header.panel-darker-1 .panel-actions {
  color: #ffffff;
}
.panel .panel-header.panel-darker-1.border {
  border-color: #003867;
}
.panel .panel-header.panel-darker-2 {
  background: #002d53;
}
.panel .panel-header.panel-darker-2 .panel-title,
.panel .panel-header.panel-darker-2 .panel-actions {
  color: #ffffff;
}
.panel .panel-header.panel-darker-2.border {
  border-color: #002d53;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* ACCORDIONS*/
/*================================================*/
.panel-accordion {
  border: 1px solid #ececec;
  box-shadow: none;
}
.panel-accordion:hover {
  box-shadow: 1px 1px 2px #ececec;
}
.panel-accordion .panel-header {
  padding: 0px;
}
.panel-accordion .panel-header .panel-title {
  margin: 0px;
  font-size: 14px;
  font-size: 1.07692rem;
  line-height: 14px;
  line-height: 1.07692rem;
  padding: 12px;
  display: block;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* TABS*/
/*================================================*/
.tabs {
  /*background: #f7f7f7;*/
  background: #FFFFFF;
  /*margin-bottom: 20px;*/
  margin-top: 15px;
}
.tabs .nav-tabs {

   border-bottom: 2px solid #e95031;
}
.tabs .nav-tabs > li > a {
	border-radius: 0px;
	border: 0px;
	color: #5b6976;
	border-bottom: 4px solid #ffffff;
	margin-top: 5px;
	margin-bottom: 1px;
}
.tabs .nav-tabs > li.active a {
  /*border-top: 2px solid #42d2ba;*/
    border-top: 0px;
	border-right: 0px;
	border-left: 0px;
    border-bottom: 4px solid #e95031;
	color: #e95031;
	
}
.tabs .nav-tabs.nav-justified > li.active a {
	border-bottom: 4px solid #42d2ba;

}
.tabs .tab-content {
  background: #ffffff;
  padding: 20px;
  /*border: 1px solid #42d2ba;*/
  border-top: 0px;
}
.tabs.tabs-vertical .nav-tabs {
  border: 0px;
}
.tabs.tabs-vertical .nav-tabs > li {
  float: none;
  margin-bottom: 0px;
}
.tabs.tabs-vertical .nav-tabs > li:last-child a {
  border-bottom: 0px;
}
.tabs.tabs-vertical .tab-content {
  overflow: hidden;
  border: 1px solid #ddd;
}
.tabs.tabs-vertical.tabs-left .nav-tabs {
  float: left;
}
.tabs.tabs-vertical.tabs-left .nav-tabs li {
  margin-right: -3px;
}
.tabs.tabs-vertical.tabs-left .nav-tabs li.active a {
  border: 1px solid #ddd;
  border-right-color: transparent;
  border-left: 2px solid #004E90;
}
.tabs.tabs-vertical.tabs-right .nav-tabs {
  float: right;
}
.tabs.tabs-vertical.tabs-right .nav-tabs li {
  margin-left: -3px;
}
.tabs.tabs-vertical.tabs-right .nav-tabs li.active a {
  border: 1px solid #ddd;
  border-left-color: transparent;
  border-right: 2px solid #004E90;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* BUTTONS*/
/*================================================*/
.btn {
  border-radius: 4px;
  border: 1px solid transparent;
  transition: all 0.5s ease !important;
  background-image: none !important;
  box-shadow: none !important;
  background: #ececec;
}
.btn:hover {
  background: #cccccc;
}
.btn.btn-wide {
  min-width: 120px;
}
.btn.btn-o {
  background: none;
  font-weight: bold;
}
.btn.btn-transparent {
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: transparent !important;
  outline-color: transparent !important;
}
.btn.btn-loading i {
  padding: 0px 5px;
  position: relative;
}

.btn-group-vertical .btn {
  margin-top: 0px;
  margin-bottom: 0px;
}

.btn-success {
  background: #88b93c;
  border-color: #88b93c;
}
.btn-success:hover, .btn-success:focus, .btn-success:active {
  background: #719a32;
  color: #FFF;
}
.btn-success.btn-o {
  color: #88b93c;
}
.btn-success.btn-o:hover, .btn-success.btn-o:focus, .btn-success.btn-o:active {
  color: #FFF;
}

.btn-warning {
  background-color: #f0ad4e;
    border-color: #eea236;/*padding: 5px 25px;*/
}
.btn-warning:hover, .btn-warning:focus, .btn-warning:active {
  background: #eea236;
  color: #FFF;
  border-color: #eea236!important;
}
.btn-warning.btn-o {
  color: #007bff;
}
.btn-warning.btn-o:hover, .btn-warning.btn-o:focus, .btn-warning.btn-o:active {
  color: #FFF;
}

.btn-danger {
  background: #c33d47;
  border-color: #c33d47;
}
.btn-danger:hover, .btn-danger:focus, .btn-danger:active {
  background: #c82333;
  color: #FFF;
}

.btn-danger.btn-o {
  color: #dc3545;
}
.btn-danger.btn-o:hover, .btn-danger.btn-o:focus, .btn-danger.btn-o:active {
  color: #FFF;
}

.btn-info {
  background: #5bc0de;color: #f7f7f7;
  border-color: #5bc0de;
}
.btn-info:hover, .btn-info:focus, .btn-info:active {
  background: #39b3d7;
  color: #FFF;
}
.btn-info.btn-o {
  color: #5bc0de;
}
.btn-info.btn-o:hover, .btn-info.btn-o:focus, .btn-info.btn-o:active {
  color: #FFF;
}

.btn-lighter-1 {
  background: #006ac3;
  border-color: #006ac3;
  color: #ffffff;
}
.btn-lighter-1:hover, .btn-lighter-1:focus, .btn-lighter-1:active {
  background: #00549a !important;
  color: #ffffff;
}
.btn-lighter-1.btn-o {
  color: #006ac3;
}
.btn-lighter-1.btn-o:hover, .btn-lighter-1.btn-o:focus, .btn-lighter-1.btn-o:active {
  color: #ffffff;
}

.btn-lighter-2 {
  background: #0b8fff;
  border-color: #0b8fff;
  color: #ffffff;
}
.btn-lighter-2:hover, .btn-lighter-2:focus, .btn-lighter-2:active {
  background: #007ae2 !important;
  color: #ffffff;
}
.btn-lighter-2.btn-o {
  color: #0b8fff;
}
.btn-lighter-2.btn-o:hover, .btn-lighter-2.btn-o:focus, .btn-lighter-2.btn-o:active {
  color: #ffffff;
}

.btn-primary {
  background: #004E90;
  border-color: #004E90;
  color: #ffffff;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background: #003867;
  color: #ffffff;
}
.btn-primary.btn-o {
  color: #004E90;
}
.btn-primary.btn-o:hover, .btn-primary.btn-o:focus, .btn-primary.btn-o:active {
  color: #ffffff;
}

.btn-darker-1 {
  background: #003867;
  border-color: #003867;
  color: #ffffff;
}
.btn-darker-1:hover, .btn-darker-1:focus, .btn-darker-1:active {
  background: #00223e !important;
  color: #ffffff;
}
.btn-darker-1.btn-o {
  color: #003867;
}
.btn-darker-1.btn-o:hover, .btn-darker-1.btn-o:focus, .btn-darker-1.btn-o:active {
  color: #ffffff;
}

.btn-darker-2 {
  background: #002d53;
  border-color: #002d53;
  color: #ffffff;
}
.btn-darker-2:hover, .btn-darker-2:focus, .btn-darker-2:active {
  background: #00172a !important;
  color: #ffffff;
}
.btn-darker-2.btn-o {
  color: #002d53;
}
.btn-darker-2.btn-o:hover, .btn-darker-2.btn-o:focus, .btn-darker-2.btn-o:active {
  color: #ffffff;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* ALERTS*/
/*================================================*/
.alert.alert-success {
  background: #88b93c !important;
  color: #ffffff;
}
.alert.alert-warning {
  background: #fea223 !important;
  color: #ffffff;
}
.alert.alert-danger {
  background: #d2322d !important;
  color: #ffffff;
}
/*.alert.alert-info {
  background: #5bc0de !important;
  color: #ffffff;
}*/

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* MODALS*/
/*================================================*/
.modal .modal-content .modal-header.state {
  padding: 10px 15px;
}
.modal .modal-content .modal-header.state i {
  margin-right: 10px;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
}
.modal .modal-content .modal-header.modal-success {
  background: #88b93c;
  color: #FFF;
}
.modal .modal-content .modal-header.modal-warning {
  background: #fea223;
  color: #FFF;
}
.modal .modal-content .modal-header.modal-danger {
  background: #d2322d;
  color: #FFF;
}
.modal .modal-content .modal-header.modal-info {
  background: #5bc0de;
  color: #FFF;
}
.modal .modal-content .modal-header.modal-primary {
  background: #004E90;
  color: #ffffff;
}
.modal .modal-content .modal-footer {
  padding: 10px 15px;
}
.modal .modal-content .modal-footer .btn {
  margin-bottom: 0px;
}

body.modal-open .animated {
  animation-fill-mode: initial;
}
body.modal-open .row.animated {
  -webkit-animation: none;
}
body.modal-open {
padding-right: 0 !important;
}

.modal-body {
    max-height: calc(100vh - 212px);
    overflow-y: auto;
}
/*
@media (min-width: 768px) {
  .modal-dialog {
    margin: 15% auto;
  }
}*/
/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* FORMS*/
/*================================================*/
.form-group:last-child, .form-group:last-of-type {
  margin-bottom: 0;
}
.form-group .help-block {
  margin-bottom: 5px;
}
.form-group.has-success .form-control {
  border-color: #88b93c;
}
.form-group.has-success .control-label,
.form-group.has-success .form-control-feedback {
  color: #88b93c;
}
.form-group.has-warning .form-control {
  border-color: #fea223;
}
.form-group.has-warning .control-label,
.form-group.has-warning .form-control-feedback {
  color: #fea223;
}
.form-group.has-error .form-control {
  border-color: #d2322d;
}
.form-group.has-error .control-label,
.form-group.has-error .form-control-feedback {
  color: #d2322d;
}

form button.btn {
  margin-bottom: 0px;
}

.form-stripe .form-group {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ececec;
}
.form-stripe .form-group:last-child, .form-stripe .form-group:last-of-type {
  padding-bottom: 0px !important;
  margin-bottom: 0px !important;
  border-bottom: none !important;
}

.input-with-icon {
  display: block;
  position: relative;
}
.input-with-icon > input {
  padding-left: 30px !important;
}
.input-with-icon i {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 5px;
  z-index: 10;
  padding: 0 5px;
  line-height: 34px;
  color: #999999;
}
.input-with-icon.right-icon-input > input {
  padding-left: 12px !important;
  padding-right: 30px !important;
}
.input-with-icon.right-icon-input i {
  left: auto;
  right: 5px;
}

.checkbox-custom {
  position: relative;
  margin-bottom: 5px;
}
.checkbox-custom.checkbox-inline {
  padding-left: 0px;
  margin: 0px;
}
.checkbox-custom.checkbox-inline label {
  margin-right: 15px;
}
.checkbox-custom:last-child, .checkbox-custom:last-of-type {
  margin-bottom: 0;
}
.checkbox-custom input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  margin-left: -20px;
}
.checkbox-custom input[type="checkbox"]:checked + label:after {
  font-family: 'FontAwesome';
  content: '\F00C';
  top: 6px;
  left: 0px;
  margin-top: -5px;
  font-size: 11px;
  line-height: 1;
  padding: 5px;
  width: 20px;
  height: 20px;
  color: #fff;
}
.checkbox-custom input[type="checkbox"]:checked + label:before {
  border-color: #999999;
  border-width: 10px;
}
.checkbox-custom input[type="checkbox"]:disabled {
  cursor: not-allowed;
}
.checkbox-custom input[type="checkbox"]:disabled:checked + label:after {
  color: #999999;
}
.checkbox-custom input[type="checkbox"]:disabled + label {
  cursor: not-allowed;
}
.checkbox-custom input[type="checkbox"]:disabled + label:before {
  background-color: #999999;
}
.checkbox-custom label.check {
  cursor: pointer;
  display: inline-block;
  padding-left: 30px !important;
  position: relative;
  transition: border .2s linear 0s, color .2s linear 0s;
  font-weight: normal;
}
.checkbox-custom label.check:before, .checkbox-custom label.check:after {
  position: absolute;
  display: inline-block;
  transition: border .2s linear 0s, color .2s linear 0s;
}
.checkbox-custom label.check:before {
  content: "";
  background-color: #fff;
  border: 1px solid #c8c7cc;
  border-radius: 2px;
  height: 20px;
  width: 20px;
  left: 0;
  margin-right: 10px;
  top: 1px;
}
.checkbox-custom label.check + label.error {
  display: block;
}

.checkbox-success input[type="checkbox"]:checked + label:after {
  color: #FFF;
}
.checkbox-success input[type="checkbox"]:checked + label:before {
  border-color: #88b93c;
}

.checkbox-warning input[type="checkbox"]:checked + label:after {
  color: #FFF;
}
.checkbox-warning input[type="checkbox"]:checked + label:before {
  border-color: #fea223;
}

.checkbox-danger input[type="checkbox"]:checked + label:after {
  color: #FFF;
}
.checkbox-danger input[type="checkbox"]:checked + label:before {
  border-color: #d2322d;
}

.checkbox-info input[type="checkbox"]:checked + label:after {
  color: #FFF;
}
.checkbox-info input[type="checkbox"]:checked + label:before {
  border-color: #5bc0de;
}

.checkbox-primary input[type="checkbox"]:checked + label:after {
  color: #ffffff;
}
.checkbox-primary input[type="checkbox"]:checked + label:before {
  border-color: #004E90;
}

.radio-custom {
  position: relative;
  margin-bottom: 5px;
}
.radio-custom.radio-inline {
  padding-left: 0px;
  margin: 0px;
}
.radio-custom.radio-inline label {
  margin-right: 15px;
}
.radio-custom:last-child, .radio-custom:last-of-type {
  margin-bottom: 0;
}
.radio-custom input[type="radio"] {
  opacity: 0;
  position: absolute;
  margin-left: -20px;
}
.radio-custom input[type="radio"]:checked + label:before {
  border-width: 6px;
  background: #999999;
  border-color: #fff;
}
.radio-custom input[type="radio"]:disabled {
  cursor: not-allowed;
}
.radio-custom input[type="radio"]:disabled:checked + label:before {
  background: #999999;
}
.radio-custom input[type="radio"]:disabled + label {
  cursor: not-allowed;
}
.radio-custom input[type="radio"]:disabled + label:before {
  background-color: #ffffff;
}
.radio-custom label {
  cursor: pointer;
  display: inline-block;
  padding-left: 30px !important;
  position: relative;
  line-height: 22px;
  min-height: 20px;
}
.radio-custom label:before, .radio-custom label:after {
  height: 18px;
  width: 18px;
  left: 0;
  margin-right: 10px;
  bottom: 2px;
  transition: all 0.3s cubic-bezier(0.455, 0.03, 0.215, 1.33) 0s;
  display: inline-block;
  position: absolute;
  content: "";
}
.radio-custom label:before {
  border: 1px solid #d0d0d0;
  border-radius: 99px;
}
.radio-custom label:after {
  border: 1px solid #c8c7cc;
  border-radius: 99px;
}
.radio-custom label + label.error {
  display: block;
}

.radio-success input[type="radio"]:checked + label:before {
  background: #88b93c;
}

.radio-warning input[type="radio"]:checked + label:before {
  background: #fea223;
}

.radio-danger input[type="radio"]:checked + label:before {
  background: #d2322d;
}

.radio-info input[type="radio"]:checked + label:before {
  background: #5bc0de;
}

.radio-primary input[type="radio"]:checked + label:before {
  background: #004E90;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #004E90;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(24px);
  -ms-transform: translateX(24px);
  transform: translateX(24px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.required {
  display: inline-block;
  color: #d2322d;
  font-size: 15px;
  font-size: 1.15385rem;
  font-weight: bold;
  margin-left: 3px;
}

label.error {
  color: #d2322d;
  margin-bottom: 0px;
  margin-top: 3px;
  font-size: 11px;
  font-size: 0.84615rem;
  width: 100%;
}

.message-container {
  display: none;
  padding: 10px;
}
.message-container ul {
  padding-left: 20px;
}
.message-container ul label {
  color: #ffffff;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* FROMS - WIZARD*/
/*================================================*/
.form-wizard .tab-steps ul {
  list-style: none;
  padding: 0px;
}
.form-wizard .tab-steps ul li {
  display: inline-block;
  padding-top: 5px;
  position: relative;
  -webkit-transition-property: margin;
  -moz-transition-property: margin;
  transition-property: margin;
  -webkit-transition-duration: 0.25s;
  -moz-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.form-wizard .tab-steps ul li a {
  padding: 10px 15px;
  background-color: #ececec;
  font-size: 16px;
  line-height: 26px;
  color: #999999;
  border-radius: 4px;
  min-width: 100px;
  display: block;
}
.form-wizard .tab-steps ul li a .tab-number {
  margin-right: 6px;
  border-radius: 50%;
  border: 2px solid #999999;
  width: 26px;
  height: 26px;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  font-size: 14px;
  line-height: 22px;
}
.form-wizard .tab-steps ul li.active a {
  background: #004E90;
  color: #ffffff;
}
.form-wizard .tab-steps ul li.active a .tab-number {
  border-color: #f7f7f7;
}
.form-wizard .tab-content {
  min-height: 100px;
  padding: 10px;
  margin: 15px 0px;
}
.form-wizard .tab-buttons .next,
.form-wizard .tab-buttons .finish {
  float: right;
}
.form-wizard .tab-buttons .finish {
  margin-left: 10px;
}
.form-wizard.wizard-block .tab-steps ul {
  display: table;
  width: 100%;
}
.form-wizard.wizard-block .tab-steps ul li {
  display: table-cell;
  text-align: center;
  padding-right: 4px;
}
.form-wizard.wizard-block .tab-steps ul li:last-child {
  padding-right: 0px;
}
.form-wizard.wizard-arrows .tab-steps li {
  min-width: 100px;
}
.form-wizard.wizard-arrows .tab-steps li a {
  padding-right: 25px;
  padding-left: 10px;
  position: relative;
  height: 46px;
}
.form-wizard.wizard-arrows .tab-steps li a:before, .form-wizard.wizard-arrows .tab-steps li a:after {
  content: "";
  position: absolute;
  top: 0;
  left: -25px;
  width: 0;
  height: 0;
  border-color: #ececec #ececec #ececec transparent;
  border-style: solid;
  border-width: 23px 10px 23px 20px;
}
.form-wizard.wizard-arrows .tab-steps li a:before {
  border-color: #f7f7f7 #cccccc #cccccc transparent;
  left: -28px;
}
.form-wizard.wizard-arrows .tab-steps li:first-child a {
  padding-left: 25px;
}
.form-wizard.wizard-arrows .tab-steps li:first-child a:before, .form-wizard.wizard-arrows .tab-steps li:first-child a:after {
  content: none;
}
.form-wizard.wizard-arrows .tab-steps li.active a:after {
  border-color: #004E90 #004E90 #004E90 transparent;
}
.form-wizard.wizard-icons .tab-steps ul {
  height: 90px;
}
.form-wizard.wizard-icons .tab-steps ul li {
  margin-right: 0px;
}
.form-wizard.wizard-icons .tab-steps ul li a {
  background: none;
  color: #ffffff;
  padding: 10px 0px;
}
.form-wizard.wizard-icons .tab-steps ul li a .tab-icon {
  border-radius: 50%;
  border: 2px solid #cccccc;
  width: 40px;
  height: 40px;
  display: inline-block;
  text-align: center;
  font-size: 18px;
  line-height: 36px;
  position: relative;
  z-index: 2;
  background: #cccccc;
  -webkit-transition-property: background;
  -moz-transition-property: background;
  transition-property: background;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.form-wizard.wizard-icons .tab-steps ul li a .tab-text {
  padding: 5px 15px;
  font-size: 12px;
  position: absolute;
  top: 50px;
  display: block;
  width: 100%;
  color: #cccccc;
}
.form-wizard.wizard-icons .tab-steps ul li a:before {
  content: '';
  border-top: 2px solid #cccccc;
  position: absolute;
  top: 50%;
  left: -50%;
  width: 100%;
}
.form-wizard.wizard-icons .tab-steps ul li:first-child a:before {
  content: none;
}
.form-wizard.wizard-icons .tab-steps ul li.validated a {
  color: #ffffff;
}
.form-wizard.wizard-icons .tab-steps ul li.validated a:before {
  border-color: #004E90;
}
.form-wizard.wizard-icons .tab-steps ul li.validated a .tab-icon {
  border-color: #004E90;
  background: #004E90;
}
.form-wizard.wizard-icons .tab-steps ul li.validated a .tab-text {
  color: #004E90;
}
.form-wizard.wizard-icons .tab-steps ul li.active a {
  color: #004E90;
}
.form-wizard.wizard-icons .tab-steps ul li.active a:before {
  border-color: #004E90;
}
.form-wizard.wizard-icons .tab-steps ul li.active a .tab-icon {
  border-color: #004E90;
  background: #ffffff;
}
.form-wizard.wizard-icons .tab-steps ul li.active a .tab-text {
  color: #004E90;
}

@media only screen and (max-width: 991px) {
  .form-wizard.wizard-scroll-tabs .tab-steps ul, .form-wizard.wizard-arrows .tab-steps ul, .form-wizard.wizard-icons .tab-steps ul {
    display: block;
    overflow: hidden;
    white-space: nowrap;
  }
  .form-wizard.wizard-scroll-tabs .tab-steps ul li, .form-wizard.wizard-arrows .tab-steps ul li, .form-wizard.wizard-icons .tab-steps ul li {
    padding-right: 0px;
    display: inline-block;
    width: 100%;
  }
  .form-wizard.wizard-scroll-tabs .tab-steps ul li.validated, .form-wizard.wizard-arrows .tab-steps ul li.validated, .form-wizard.wizard-icons .tab-steps ul li.validated {
    margin-left: -100%;
  }
  .form-wizard.wizard-scroll-tabs .tab-steps ul li.validated.active, .form-wizard.wizard-arrows .tab-steps ul li.validated.active, .form-wizard.wizard-icons .tab-steps ul li.validated.active {
    margin-left: 0px;
  }
  .form-wizard.wizard-list-tabs .tab-steps ul li {
    padding-right: 0px;
    display: block;
  }
}
/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* TABLES*/
/*================================================*/
.table{
	color: #414950;
	
}
.table img{
	margin-right: 8px;	
}
.table td{
	vertical-align: middle;
}
.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
  background: #88b93c;
  color: #FFF;
  
}

.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
  background: #fea223;
  color: #FFF;
}

.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
  background: #d2322d;
  color: #FFF;
}

.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
  background: #5bc0de;
  color: #FFF;
}

.table.text-center {
  text-align: center !important;
}
.table.text-center th {
  text-align: center !important;
}
.table.table-hover > tbody > tr:hover > td, .table.table-hover > tbody > tr:hover > th {
	background-color: #ececec;

}
.table button.btn {
  margin-bottom: 0px;
}
.table th{
	background-color: #414141;
	color:#fff;
	
}
/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* LIGHT-BOX*/
/*================================================*/
.gallery-wrap {
  padding: 5px;
}
.gallery-wrap .row > div {
  padding: 4px;
}

.unshown {
  visibility: hidden;
}

.shown {
  visibility: visible;
}

.badge {
  padding: 4px 8px;
  margin: 0 2px;
}
.badge.badge-xs {
  padding: 4px 6px;
  font-size: 10px;
}
.badge.badge-md {
  padding: 5px 8px;
  font-size: 14px;
  line-height: 1.5;
}
.badge.badge-lg {
  padding: 6px 10px;
  font-size: 16px;
  line-height: 1.4;
}
.badge.badge-top-right {
  position: absolute;
  top: -5px;
  right: -5px;
}
.badge.badge-top-left {
  position: absolute;
  top: -5px;
  left: -5px;
}
.badge.badge-bottom-right {
  position: absolute;
  bottom: -5px;
  right: -5px;
}
.badge.badge-bottom-left {
  position: absolute;
  bottom: -5px;
  left: -5px;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* WIDGETS - BOXES*/
/*================================================*/
.widgetbox .title {
  font-weight: bold;
  margin: 8px 0px;
}
.widgetbox .subtitle {
  margin: 3px 0px;
}
.widgetbox .icon {
  display: block;
}
.widgetbox.wbox-1 .title {
  margin-top: 0px;
  font-size: 28px;
  font-size: 2.15385rem;
  line-height: 28px;
  line-height: 2.15385rem;
}
.widgetbox.wbox-1 .subtitle {
  font-size: 18px;
  font-size: 1.38462rem;
  line-height: 18px;
  line-height: 1.38462rem;
}
.widgetbox.wbox-2 {
  text-align: right;
}
.widgetbox.wbox-2 .title {
  font-size: 28px;
  font-size: 2.15385rem;
  line-height: 28px;
  line-height: 2.15385rem;
}
.widgetbox.wbox-2 .subtitle {
  font-size: 14px;
  font-size: 1.07692rem;
  line-height: 14px;
  line-height: 1.07692rem;
}
.widgetbox.wbox-2 .icon {
  text-align: left;
  font-size: 60px;
  font-size: 4.61538rem;
}
.widgetbox.wbox-3 {
  text-align: center;
}
.widgetbox.wbox-3 a {
  color: #ffffff;
}
.widgetbox.wbox-3 .title {
  font-size: 22px;
  font-size: 1.69231rem;
  line-height: 22px;
  line-height: 1.69231rem;
}
.widgetbox.wbox-3 .subtitle {
  font-size: 14px;
  font-size: 1.07692rem;
  line-height: 14px;
  line-height: 1.07692rem;
  margin-bottom: 15px;
}
.widgetbox.wbox-3 .numbers {
  font-size: 20px;
  font-size: 1.53846rem;
  line-height: 20px;
  line-height: 1.53846rem;
  margin-bottom: 10px;
}
.widgetbox.wbox-3 .icon {
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 48px;
  font-size: 3.69231rem;
}
.widgetbox.wbox-4 {
  text-align: center;
  color: #ffffff;
}
.widgetbox.wbox-4 a {
  color: #ffffff;
}
.widgetbox.wbox-4 .title {
  font-size: 22px;
  font-size: 1.69231rem;
  line-height: 22px;
  line-height: 1.69231rem;
}
.widgetbox.wbox-4 .subtitle {
  font-size: 16px;
  font-size: 1.23077rem;
  line-height: 16px;
  line-height: 1.23077rem;
  font-weight: bold;
}
.widgetbox.wbox-4 .icon {
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 48px;
  font-size: 3.69231rem;
}
.widgetbox.wbox-4 .owl-theme .owl-nav {
  margin-top: 0px;
}
.widgetbox.wbox-4 .owl-theme .owl-dots .owl-dot span {
  background: rgba(255, 255, 255, 0.4);
}
.widgetbox.wbox-4 .owl-theme .owl-dots .owl-dot.active span, .widgetbox.wbox-4 .owl-theme .owl-dots .owl-dot:hover span {
  background: #ececec;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* WIDGETS - LISTS*/
/*================================================*/
.widget-list {
  position: relative;
}
.widget-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget-list.list-to-do .add-item {
  position: absolute;
  right: 15px;
  top: 10px;
  box-shadow: 2px 2px 1px #ffffff !important;
}
.widget-list.list-to-do .list-title {
  padding: 12px 10px;
  margin: 0;
}
.widget-list.list-to-do ul li {
  padding: 8px 10px;
}
.widget-list.list-to-do ul li:nth-child(odd) {
  background: #f7f7f7;
}
.widget-list.list-to-do ul li input[type="checkbox"]:checked + label {
  text-decoration: line-through;
}
.widget-list.list-to-do ul label {
  margin-bottom: 0px;
}
.widget-list.list-left-element li {
  background: #f7f7f7;
  margin-bottom: 3px;
}
.widget-list.list-left-element li:last-child {
  margin-bottom: 0px;
}
.widget-list.list-left-element li:hover {
  background: #ececec;
}
.widget-list.list-left-element a {
  display: table;
  padding: 6px 8px;
}
.widget-list.list-left-element .left-element,
.widget-list.list-left-element .text {
  display: table-cell;
  vertical-align: middle;
}
.widget-list.list-left-element .left-element {
  min-width: 45px;
  height: 45px;
}
.widget-list.list-left-element .left-element i {
  font-size: 30px;
  padding: 8px;
}
.widget-list.list-left-element .left-element img {
  width: 100%;
  border-radius: 3px;
}
.widget-list.list-left-element .text {
  width: 90%;
  padding-left: 12px;
}
.widget-list.list-left-element .text .title {
  display: block;
  font-size: 16px;
  color: #000000;
}
.widget-list.list-left-element .text .subtitle {
  color: #999999;
}
.widget-list.list-left-element.list-sm a {
  padding: 4px 8px;
}
.widget-list.list-left-element.list-sm a .left-element {
  max-width: 30px;
  height: 30px;
}
.widget-list.list-left-element.list-sm a .left-element i {
  font-size: 20px;
  padding: 5px;
}
.widget-list.list-left-element.list-sm a .text {
  white-space: nowrap;
}
.widget-list.list-left-element.list-sm a .text .title {
  font-size: 13px;
  display: inline-block;
}
.widget-list.list-left-element.list-sm a .text .subtitle {
  font-size: 11px;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* WIDGETS - POSTS*/
/*================================================*/
.widget-post .panel-header {
  position: relative;
  padding: 0px;
}
.widget-post .panel-header img {
  width: 100%;
}
.widget-post .panel-header .main-tag {
  position: absolute;
  width: 100%;
  text-align: center;
  top: -8px;
}
.widget-post .panel-header .main-tag span {
  background-color: #f7f7f7;
  padding: 4px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 3px;
  font-weight: bold;
}
.widget-post .panel-header .group-tag {
  position: absolute;
  bottom: 8px;
  padding-left: 5px;
}
.widget-post .panel-header .group-tag .badge {
  letter-spacing: 2px;
  border-radius: 3px;
  background-color: #202020;
  color: #ffffff;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* WIDGETS - TIMELINES*/
/*================================================*/
.timeline {
  position: relative;
}
.timeline:before {
  content: '';
  position: absolute;
  top: 4px;
  left: 20px;
  height: 100%;
  width: 3px;
  background: #cccccc;
}
.timeline .timeline-box {
  margin-bottom: 20px;
  position: relative;
}
.timeline .timeline-box .timeline-icon {
  position: absolute;
  top: 4px;
  left: 7px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 16px;
  background: #cccccc;
  text-align: center;
}
.timeline .timeline-box .timeline-icon i {
  display: block;
  width: 30px;
  height: 30px;
  position: relative;
  top: 6px;
  color: #ffffff;
}
.timeline .timeline-box .timeline-content {
  position: relative;
  margin-left: 54px;
  background: white;
  border-radius: 4px 4px 0px 0px;
  padding: 8px 15px;
}
.timeline .timeline-box .timeline-content:before {
  font-family: 'FontAwesome';
  font-size: 24px;
  font-size: 1.84615rem;
  content: '\f0d9';
  color: #ffffff;
  position: absolute;
  top: 6px;
  left: -8px;
}
.timeline .timeline-box .timeline-content .tl-title {
  margin-top: 5px;
}
.timeline .timeline-box .timeline-footer {
  margin-left: 54px;
  padding: 3px 8px;
  background: #f7f7f7;
  border-radius: 0px 0px 4px 4px;
}
.timeline .timeline-box .timeline-footer span {
  font-size: 10px;
  color: #999999;
}
.timeline.tl-right:before {
  left: auto;
  right: 20px;
}
.timeline.tl-right .timeline-box .timeline-icon {
  position: absolute;
  right: 7px;
  left: initial;
}
.timeline.tl-right .timeline-box .timeline-content {
  margin-right: 54px;
  margin-left: 0px;
}
.timeline.tl-right .timeline-box .timeline-content:before {
  right: -8px;
  content: '\f0da';
  left: initial;
}
.timeline.tl-right .timeline-box .timeline-footer {
  margin-right: 54px;
  margin-left: 0px;
  text-align: right;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* PAGES - ACCOUNTS*/
/*================================================*/
html body {
  min-height: 100vh;
}
html.accounts .page-body {
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 50px;
}
html.accounts .logo {
  max-width: 420px;
  margin: 20px auto 0px;
  margin-bottom: 40px;
}
html.accounts .logo img {
  display: block;
  margin: auto;
  width: 50%;
  min-width: 140px;
}
html.accounts .box {
  background: #ffffff;
  border-radius: 5px;
  padding: 15px;
  max-width: 420px;
  margin: 20px auto 0px;
}

html.sign-in body {
  background: #f7f7f7;
}
html.sign-in body hr {
  border-color: #cccccc;
  width: 90%;
  margin: 15px auto;
}

html.forgot-password body {
  background: #005caa;
}

html.lock-screen {
  background: #004E90;
}
html.lock-screen body {
  background: url("../../images/bg/pattern.png") top center no-repeat;
}
html.lock-screen .wrap .box {
  max-width: 350px;
  padding: 0px;
}
html.lock-screen .wrap .panel .panel-content {
  border-radius: 5px;
}
html.lock-screen .logo {
  max-width: 350px;
  margin-bottom: 50px;
}
html.lock-screen .logo .avatar {
  margin: auto;
  max-width: 150px;
  box-shadow: 1px 1px 4px rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  background: #00325d;
  border: 2px solid #003867;
  padding: 2px;
}
html.lock-screen .logo .avatar img {
  width: 100%;
  border-radius: 8px;
  border: 2px solid #001c34;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* PAGES - ERRORS*/
/*================================================*/
.error-number,
.error-name,
.error-text {
  text-align: center;
}

.error-number {
  font-size: 130px;
  font-size: 10rem;
  line-height: 130px;
  line-height: 10rem;
  color: #004E90;
}

.error-name {
  margin: 0px;
}

.error-text {
  margin-top: 20px;
  font-size: 14px;
  font-size: 1.07692rem;
}

html.error-500 .page-body,
html.error-404 .page-body {
  padding: 10px;
}

html.error-500 body {
  background: #003867;
}

html.error-404 body {
  background: #ececec;
}

@media only screen and (max-width: 767px) {
  .error-number {
    font-size: 90px;
    font-size: 6.92308rem;
    line-height: 90px;
    line-height: 6.92308rem;
  }
}
/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* PAGES - FAQ*/
/*================================================*/
.faq-accordion .panel {
  border-radius: 0px;
  margin: 0px;
}
.faq-accordion .panel .panel-header,
.faq-accordion .panel .panel-footer {
  border-radius: 0px;
}
.faq-accordion .panel .panel-header .panel-title {
  font-weight: normal;
  font-size: 14px;
  font-size: 1.07692rem;
  line-height: 20px;
  line-height: 1.53846rem;
  padding: 8px 12px;
}
.faq-accordion .panel .panel-content {
  margin: 15px 20px;
  background: #f7f7f7;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* PAGES - USER PROFILE*/
/*================================================*/
.profile-photo {
  max-width: 140px;
  display: inline-block;
  vertical-align: top;
}
.profile-photo img {
  width: 100%;
  border-radius: 3px;
}

.user-header-info {
  display: inline-block;
  margin-left: 20px;
}
.user-header-info .user-name {
  color: #585858;
}
.user-header-info .user-position {
  padding: 4px 12px;
  display: inline-block;
  border-radius: 3px;
  margin-top: 0;
  background-color: #004E90;
  color: #fff;
}
.user-header-info .user-social-media {
  position: absolute;
  margin-top: 5px;
}
.user-header-info .user-social-media a {
  color: #999999;
}
.user-header-info .user-social-media a:hover {
  color: #004E90;
}

ul.user-contact-info {
  list-style: none;
  padding: 0;
}
ul.user-contact-info li {
  padding: 4px 0px;
  border-bottom: 1px solid #ececec;
}
ul.user-contact-info li:last-child {
  border: none;
}

@media only screen and (max-width: 767px) {
  .user-header-info .user-social-media {
    position: initial;
  }
}
@media only screen and (max-width: 450px) {
  .profile-photo {
    display: block;
    max-width: initial;
    margin: auto !important;
  }

  .user-header-info {
    margin-left: 0px;
  }
  .user-header-info .user-name {
    margin-top: 20px;
  }
}
.search-results-list {
  padding: 10px 15px;
}
.search-results-list .search-item:nth-of-type(odd) {
  background: #f7f7f7;
}
.search-results-list .search-item {
  padding: 8px;
  border-top: 1px solid #ddd;
}
.search-results-list .search-item:hover {
  background-color: #ececec;
}
.search-results-list .search-item p {
  line-height: 16px;
}
.search-results-list .search-item .search-title {
  color: #404040;
  text-decoration: underline;
}
.search-results-list .search-item .search-title:hover {
  color: #006ac3;
}

.search-results-grid .search-item-content {
  height: 200px;
}
.search-results-grid .search-item-content .search-title {
  color: #404040;
  text-decoration: underline;
}
.search-results-grid .search-item-content .search-title:hover {
  color: #006ac3;
}
.search-results-grid .search-item-content .text {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.search-results-grid .search-item-content .badge {
  padding: 4px 6px;
  font-size: 10px;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* PAGES - PROJECTS List*/
/*================================================*/
.projects-list .p-progress,
.project-detail .p-progress {
  position: relative;
  float: left;
  text-align: center;
  margin-right: 20px;
  padding-top: 5px;
}
.projects-list .p-progress .value,
.project-detail .p-progress .value {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  font-weight: bold;
  display: block;
  left: 0px;
  right: 0px;
}

.projects-list .header-project-list,
.projects-list .item-project-list {
  text-align: center;
  padding: 6px;
  margin: 0px;
}
.projects-list .header-project-list {
  font-size: 12px;
  font-weight: bold;
  border-bottom: 2px solid #cccccc;
}
.projects-list .header-project-list .h-progress {
  float: left;
  margin-right: 20px;
  width: 50px;
}
.projects-list .item-project-list:nth-of-type(even) {
  background: #f7f7f7;
}
.projects-list .item-project-list .p-project {
  text-align: left;
}
.projects-list .item-project-list .p-project .p-name {
  font-weight: bold;
  margin-bottom: 0px;
  font-size: 15px;
  line-height: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: #585858;
}
.projects-list .item-project-list .p-project .p-update {
  display: block;
}
.projects-list .item-project-list .p-tags,
.projects-list .item-project-list .p-options,
.projects-list .item-project-list .p-deadline {
  padding-top: 20px;
}
.projects-list .item-project-list .p-tags .badge {
  border-radius: 3px;
}
.projects-list .item-project-list .p-deadline {
  font-weight: bold;
}
.projects-list .item-project-list .p-deadline.days {
  color: #d2322d;
}
.projects-list .item-project-list .p-deadline.weaks {
  color: #fea223;
}
.projects-list .item-project-list .p-options .btn {
  border-color: #cccccc;
  padding: 6px 8px;
}

@media only screen and (max-width: 1199px) {
  .projects-list .header-project-list {
    display: none;
  }
  .projects-list .item-project-list {
    border-bottom: 1px solid #cccccc;
  }
  .projects-list .item-project-list .p-project {
    height: 65px;
  }
  .projects-list .item-project-list .p-tags,
  .projects-list .item-project-list .p-options,
  .projects-list .item-project-list .p-deadline {
    padding-top: 10px;
  }
  .projects-list .item-project-list .p-deadline:before {
    content: 'Deadline: ';
    color: #999999;
    font-size: 11px;
  }
}
@media only screen and (max-width: 767px) {
  .projects-list .item-project-list .p-project {
    height: auto;
  }
  .projects-list .item-project-list .p-project .p-progress {
    float: none;
    margin-right: 0px;
  }
  .projects-list .item-project-list .p-project .p-name {
    white-space: initial;
    text-align: center;
  }
  .projects-list .item-project-list .p-project .p-update {
    text-align: center;
  }
}
/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* PAGES - PROJECTS Detail*/
/*================================================*/
.project-detail .p-data {
  margin-left: 100px;
}
.project-detail .p-data .p-name {
  color: #585858;
  margin-bottom: 3px;
  font-size: 18px;
}
.project-detail .p-data .p-update {
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #cccccc;
  font-size: 12px;
}
.project-detail .p-data .p-status {
  float: right;
  margin-left: 10px;
}
.project-detail .p-data .p-status .badge {
  border-radius: 3px;
}
.project-detail .p-data .p-deadline {
  text-align: right;
}
.project-detail .p-data .p-deadline:after {
  content: "|";
  padding-left: 8px;
}

.p-info ul {
  list-style: none;
  padding: 0px;
  width: 49%;
  display: inline-block;
}
.p-info ul li {
  padding: 2px 5px;
  font-size: 14px;
  border-bottom: 1px solid #cccccc;
}
.p-info ul li:nth-of-type(odd) {
  background: #f7f7f7;
}
.p-info ul li:last-child {
  border-bottom: none;
}
.p-info span {
  color: #004E90;
  font-weight: bold;
  font-size: 13px;
  display: block;
}
.p-info .p-description {
  padding: 5px;
}

@media only screen and (max-width: 767px) {
  .project-detail .p-progress {
    margin-right: 0px;
    display: block;
    float: none;
  }
  .project-detail .p-data {
    margin-left: 0px;
  }
  .project-detail .p-data .p-name {
    margin-bottom: 5px;
  }

  .p-info ul {
    width: 100%;
    display: block;
  }
}
/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* HELPERS - BACKGROUNDS &  BORDERS*/
/*================================================*/
.bg-success {
  background: #88b93c !important;
}

.bg-warning {
  background: #fea223 !important;
}

.bg-danger {
  background: #d2322d !important;
}

.bg-info {
  background: #5bc0de !important;
}

.bg-lighter-1 {
  background: #006ac3 !important;
}

.bg-lighter-2 {
  background: #0b8fff !important;
}

.bg-primary {
  background: #004E90 !important;
}

.bg-darker-1 {
  background: #003867 !important;
}

.bg-darker-2 {
  background: #002d53 !important;
}

.bg-scale-0 {
  background: #f7f7f7 !important;
}

.bg-scale-1 {
  background: #ececec !important;
}

.bg-scale-2 {
  background: #cccccc !important;
}

.bg-scale-3 {
  background: #999999 !important;
}

.bg-scale-4 {
  background: #585858 !important;
}

.bg-scale-5 {
  background: #202020 !important;
}

.bg-scale-6 {
  background: #151515 !important;
}

.bg-none {
  background: none !important;
}

.bg-trans {
  background: rgba(255, 255, 255, 0.4);
}

.b-rounded {
  border-radius: 5px;
}

.b-straight {
  border-radius: 0px !important;
}

.b-none {
  border: 0 solid #ccc !important;
}

.b-xs {
  border: 1px solid #ccc !important;
}

.b-sm {
  border: 2px solid #ccc !important;
}

.b-md {
  border: 3px solid #ccc !important;
}

.b-lg {
  border: 4px solid #ccc !important;
}

.b-xl {
  border: 5px solid #ccc !important;
}

.bt-none {
  border-top: 0 solid #ccc !important;
}

.bt-xs {
  border-top: 1px solid #ccc !important;
}

.bt-sm {
  border-top: 2px solid #ccc !important;
}

.bt-md {
  border-top: 3px solid #ccc !important;
}

.bt-lg {
  border-top: 4px solid #ccc !important;
}

.bt-xl {
  border-top: 5px solid #ccc !important;
}

.bb-none {
  border-bottom: 0 solid #ccc !important;
}

.bb-xs {
  border-bottom: 1px solid #ccc !important;
}

.bb-sm {
  border-bottom: 2px solid #ccc !important;
}

.bb-md {
  border-bottom: 3px solid #ccc !important;
}

.bb-lg {
  border-bottom: 4px solid #ccc !important;
}

.bb-xl {
  border-bottom: 5px solid #ccc !important;
}

.bl-none {
  border-left: 0 solid #ccc !important;
}

.bl-xs {
  border-left: 1px solid #ccc !important;
}

.bl-sm {
  border-left: 2px solid #ccc !important;
}

.bl-md {
  border-left: 3px solid #ccc !important;
}

.bl-lg {
  border-left: 4px solid #ccc !important;
}

.bl-xl {
  border-left: 5px solid #ccc !important;
}

.br-none {
  border-right: 0 solid #ccc !important;
}

.br-xs {
  border-right: 1px solid #ccc !important;
}

.br-sm {
  border-right: 2px solid #ccc !important;
}

.br-md {
  border-right: 3px solid #ccc !important;
}

.br-lg {
  border-right: 4px solid #ccc !important;
}

.br-xl {
  border-right: 5px solid #ccc !important;
}

.b-success {
  border-color: #88b93c !important;
}

.b-warning {
  border-color: #fea223 !important;
}

.b-danger {
  border-color: #d2322d !important;
}

.b-info {
  border-color: #5bc0de !important;
}

.b-lighter-1 {
  border-color: #006ac3 !important;
}

.b-lighter-2 {
  border-color: #0b8fff !important;
}

.b-primary {
  border-color: #004E90 !important;
}

.b-darker-1 {
  border-color: #003867 !important;
}

.b-darker-2 {
  border-color: #002d53 !important;
}

.b-scale-0 {
  border-color: #f7f7f7 !important;
}

.b-scale-1 {
  border-color: #ececec !important;
}

.b-scale-2 {
  border-color: #cccccc !important;
}

.b-scale-3 {
  border-color: #999999 !important;
}

.b-scale-4 {
  border-color: #585858 !important;
}

.b-scale-5 {
  border-color: #202020 !important;
}

.b-scale-6 {
  border-color: #151515 !important;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* HELPERS - MARGINS &  PADDINGS*/
/*================================================*/
.m-auto {
  margin: 0 auto !important;
}

.m-none {
  margin: 0 !important;
}

.m-xs {
  margin: 5px !important;
}

.m-sm {
  margin: 10px !important;
}

.m-md {
  margin: 15px !important;
}

.m-lg {
  margin: 20px !important;
}

.m-xl {
  margin: 25px !important;
}

.mt-none {
  margin-top: 0 !important;
}

.mt-xs {
  margin-top: 5px !important;
}

.mt-sm {
  margin-top: 10px !important;
}

.mt-md {
  margin-top: 15px !important;
}

.mt-lg {
  margin-top: 20px !important;
}

.mt-xl {
  margin-top: 25px !important;
}

.mb-none {
  margin-bottom: 0 !important;
}

.mb-xs {
  margin-bottom: 5px !important;
}

.mb-sm {
  margin-bottom: 10px !important;
}

.mb-md {
  margin-bottom: 15px !important;
}

.mb-lg {
  margin-bottom: 20px !important;
}

.mb-xl {
  margin-bottom: 25px !important;
}

.ml-none {
  margin-left: 0 !important;
}

.ml-xs {
  margin-left: 5px !important;
}

.ml-sm {
  margin-left: 10px !important;
}

.ml-md {
  margin-left: 15px !important;
}

.ml-lg {
  margin-left: 20px !important;
}

.ml-xl {
  margin-left: 25px !important;
}

.mr-none {
  margin-right: 0 !important;
}

.mr-xs {
  margin-right: 5px !important;
}

.mr-sm {
  margin-right: 10px !important;
}

.mr-md {
  margin-right: 15px !important;
}

.mr-lg {
  margin-right: 20px !important;
}

.mr-xl {
  margin-right: 25px !important;
}

.mv-none {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.mv-xs {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}

.mv-sm {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.mv-md {
  margin-top: 15px !important;
  margin-bottom: 15px !important;
}

.mv-lg {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.mv-xl {
  margin-top: 25px !important;
  margin-bottom: 25px !important;
}

.mh-none {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.mh-xs {
  margin-left: 5px !important;
  margin-right: 5px !important;
}

.mh-sm {
  margin-left: 10px !important;
  margin-right: 10px !important;
}

.mh-md {
  margin-left: 15px !important;
  margin-right: 15px !important;
}

.mh-lg {
  margin-left: 20px !important;
  margin-right: 20px !important;
}

.mh-xl {
  margin-left: 25px !important;
  margin-right: 25px !important;
}

.p-none {
  padding: 0 !important;
}

.p-xs {
  padding: 5px !important;
}

.p-sm {
  padding: 10px !important;
}

.p-md {
  padding: 15px !important;
}

.p-lg {
  padding: 20px !important;
}

.p-xl {
  padding: 25px !important;
}

.pt-none {
  padding-top: 0 !important;
}

.pt-xs {
  padding-top: 5px !important;
}

.pt-sm {
  padding-top: 10px !important;
}

.pt-md {
  padding-top: 15px !important;
}

.pt-lg {
  padding-top: 20px !important;
}

.pt-xl {
  padding-top: 25px !important;
}

.pb-none {
  padding-bottom: 0 !important;
}

.pb-xs {
  padding-bottom: 5px !important;
}

.pb-sm {
  padding-bottom: 10px !important;
}

.pb-md {
  padding-bottom: 15px !important;
}

.pb-lg {
  padding-bottom: 20px !important;
}

.pb-xl {
  padding-bottom: 25px !important;
}

.pl-none {
  padding-left: 0 !important;
}

.pl-xs {
  padding-left: 5px !important;
}

.pl-sm {
  padding-left: 10px !important;
}

.pl-md {
  padding-left: 15px !important;
}

.pl-lg {
  padding-left: 20px !important;
}

.pl-xl {
  padding-left: 25px !important;
}

.pr-none {
  padding-right: 0 !important;
}

.pr-xs {
  padding-right: 5px !important;
}

.pr-sm {
  padding-right: 10px !important;
}

.pr-md {
  padding-right: 15px !important;
}

.pr-lg {
  padding-right: 20px !important;
}

.pr-xl {
  padding-right: 25px !important;
}

.pv-none {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.pv-xs {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

.pv-sm {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.pv-md {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.pv-lg {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.pv-xl {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}

.ph-none {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.ph-xs {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.ph-sm {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.ph-md {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.ph-lg {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.ph-xl {
  padding-left: 25px !important;
  padding-right: 25px !important;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* HELPERS - TEXT*/
/*================================================*/
.color-success {
  color: #88b93c !important;
}
.color-success a {
  color: #88b93c !important;
}
.color-success a:hover, .color-success a:active, .color-success a:focus {
  color: #a0cb5d !important;
}

.color-warning {
  color: #fea223 !important;
}
.color-warning a {
  color: #fea223 !important;
}
.color-warning a:hover, .color-warning a:active, .color-warning a:focus {
  color: #feb756 !important;
}

.color-danger {
  color: #d2322d !important;
}
.color-danger a {
  color: #d2322d !important;
}
.color-danger a:hover, .color-danger a:active, .color-danger a:focus {
  color: #db5b57 !important;
}

.color-info {
  color: #5bc0de !important;
}
.color-info a {
  color: #5bc0de !important;
}
.color-info a:hover, .color-info a:active, .color-info a:focus {
  color: #85d0e7 !important;
}

.color-lighter-1 {
  color: #006ac3 !important;
}
.color-lighter-1 a {
  color: #006ac3 !important;
}
.color-lighter-1 a:hover, .color-lighter-1 a:active, .color-lighter-1 a:focus {
  color: #0077dd !important;
}

.color-lighter-2 {
  color: #0b8fff !important;
}
.color-lighter-2 a {
  color: #0b8fff !important;
}
.color-lighter-2 a:hover, .color-lighter-2 a:active, .color-lighter-2 a:focus {
  color: #259bff !important;
}

.color-primary {
  color: #004E90 !important;
}
.color-primary a {
  color: #004E90 !important;
}
.color-primary a:hover, .color-primary a:active, .color-primary a:focus {
  color: #005caa !important;
}

.color-darker-1 {
  color: #003867 !important;
}
.color-darker-1 a {
  color: #003867 !important;
}
.color-darker-1 a:hover, .color-darker-1 a:active, .color-darker-1 a:focus {
  color: #004681 !important;
}

.color-darker-2 {
  color: #002d53 !important;
}
.color-darker-2 a {
  color: #002d53 !important;
}
.color-darker-2 a:hover, .color-darker-2 a:active, .color-darker-2 a:focus {
  color: #003b6c !important;
}

.color-dark {
  color: #000000 !important;
}
.color-dark a {
  color: #000000 !important;
}
.color-dark a:hover, .color-dark a:active, .color-dark a:focus {
  color: #1a1a1a !important;
}

.color-muted {
  color: #999999 !important;
}
.color-muted a {
  color: #999999 !important;
}
.color-muted a:hover, .color-muted a:active, .color-muted a:focus {
  color: #b3b3b3 !important;
}

.color-light {
  color: #ffffff !important;
}
.color-light a {
  color: #ffffff !important;
}
.color-light a:hover, .color-light a:active, .color-light a:focus {
  color: white !important;
}

.color-w {
  color: #fff !important;
}
.color-w a {
  color: #fff !important;
}

.color-b {
  color: #000 !important;
}
.color-b a {
  color: #000 !important;
}
.color-b a:hover, .color-b a:active, .color-b a:focus {
  color: #1a1a1a !important;
}

.text-xs {
  font-size: 9px;
  font-size: 0.69231rem;
}

.text-sm {
  font-size: 13px;
  font-size: 1rem;
}

.text-md {
  font-size: 17px;
  font-size: 1.30769rem;
}

.text-lg {
  font-size: 21px;
  font-size: 1.61538rem;
}

.text-xl {
  font-size: 29px;
  font-size: 2.23077rem;
}

.text-normal {
  font-weight: initial !important;
}

.text-bold {
  font-weight: bold !important;
}

.text-italic {
  font-style: italic !important;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.ws-nowrap {
  white-space: nowrap;
}

.code {
  background-color: #f9f2f4;
  color: #d2322d !important;
  font-size: 12px !important;
  line-height: 14px !important;
  padding: 2px 3px;
  font-family: monospace;
  font-weight: initial;
  font-style: initial;
  text-transform: none;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* HELPERS - DISPLAY &  POSITIONS*/
/*================================================*/
.d-ib {
  display: inline-block;
}

.d-block {
  display: block;
}

.p-absolute {
  position: absolute;
}

.p-relative {
  position: relative;
}

.va-middle {
  vertical-align: middle;
}

/* HELPERS - X-ELEMENTS*/
/*================================================*/
.x-success {
  background: #88b93c;
  border-color: #88b93c;
}
.x-success:hover, .x-success:focus, .x-success:active, .x-success.x-o:hover, .x-success.x-o:focus, .x-success.x-o:active {
  background: #719a32;
  color: #FFF;
}
.x-success.x-o {
  color: #88b93c;
}
.x-success.x-o:hover, .x-success.x-o:focus, .x-success.x-o:active {
  color: #FFF;
}

.x-warning {
  background: #fea223;
  border-color: #fea223;
}
.x-warning:hover, .x-warning:focus, .x-warning:active, .x-warning.x-o:hover, .x-warning.x-o:focus, .x-warning.x-o:active {
  background: #f79001;
  color: #FFF;
}
.x-warning.x-o {
  color: #fea223;
}
.x-warning.x-o:hover, .x-warning.x-o:focus, .x-warning.x-o:active {
  color: #FFF;
}

.x-danger {
  background: #d2322d;
  border-color: #d2322d;
}
.x-danger:hover, .x-danger:focus, .x-danger:active, .x-danger.x-o:hover, .x-danger.x-o:focus, .x-danger.x-o:active {
  background: #b02a26;
  color: #FFF;
}
.x-danger.x-o {
  color: #d2322d;
}
.x-danger.x-o:hover, .x-danger.x-o:focus, .x-danger.x-o:active {
  color: #FFF;
}

.x-info {
  background: #5bc0de;
  border-color: #5bc0de;
}
.x-info:hover, .x-info:focus, .x-info:active, .x-info.x-o:hover, .x-info.x-o:focus, .x-info.x-o:active {
  background: #39b3d7;
  color: #FFF;
}
.x-info.x-o {
  color: #5bc0de;
}
.x-info.x-o:hover, .x-info.x-o:focus, .x-info.x-o:active {
  color: #FFF;
}

.x-lighter-1 {
  background: #006ac3;
  border-color: #006ac3;
  color: #ffffff;
}
.x-lighter-1:hover, .x-lighter-1:focus, .x-lighter-1:active, .x-lighter-1.x-o:hover, .x-lighter-1.x-o:focus, .x-lighter-1.x-o:active {
  background: #00549a;
  color: #ffffff;
}
.x-lighter-1.x-o {
  color: #006ac3;
}
.x-lighter-1.x-o:hover, .x-lighter-1.x-o:focus, .x-lighter-1.x-o:active {
  color: #ffffff;
}

.x-lighter-2 {
  background: #0b8fff;
  border-color: #0b8fff;
  color: #ffffff;
}
.x-lighter-2:hover, .x-lighter-2:focus, .x-lighter-2:active, .x-lighter-2.x-o:hover, .x-lighter-2.x-o:focus, .x-lighter-2.x-o:active {
  background: #007ae2;
  color: #ffffff;
}
.x-lighter-2.x-o {
  color: #0b8fff;
}
.x-lighter-2.x-o:hover, .x-lighter-2.x-o:focus, .x-lighter-2.x-o:active {
  color: #ffffff;
}

.x-primary {
  background: #004E90;
  border-color: #004E90;
  color: #ffffff;
}
.x-primary:hover, .x-primary:focus, .x-primary:active, .x-primary.x-o:hover, .x-primary.x-o:focus, .x-primary.x-o:active {
  background: #003867;
  color: #ffffff;
}
.x-primary.x-o {
  color: #004E90;
}
.x-primary.x-o:hover, .x-primary.x-o:focus, .x-primary.x-o:active {
  color: #ffffff;
}

.x-darker-1 {
  background: #003867;
  border-color: #003867;
  color: #ffffff;
}
.x-darker-1:hover, .x-darker-1:focus, .x-darker-1:active, .x-darker-1.x-o:hover, .x-darker-1.x-o:focus, .x-darker-1.x-o:active {
  background: #00223e;
  color: #ffffff;
}
.x-darker-1.x-o {
  color: #003867;
}
.x-darker-1.x-o:hover, .x-darker-1.x-o:focus, .x-darker-1.x-o:active {
  color: #ffffff;
}

.x-darker-2 {
  background: #002d53;
  border-color: #002d53;
  color: #ffffff;
}
.x-darker-2:hover, .x-darker-2:focus, .x-darker-2:active, .x-darker-2.x-o:hover, .x-darker-2.x-o:focus, .x-darker-2.x-o:active {
  background: #00172a;
  color: #ffffff;
}
.x-darker-2.x-o {
  color: #002d53;
}
.x-darker-2.x-o:hover, .x-darker-2.x-o:focus, .x-darker-2.x-o:active {
  color: #ffffff;
}

.x-o {
  background: none;
  font-weight: bold;
  border: 1px solid;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* TEMPLATE DEMOS*/
/*================================================*/
html.margin-padding .panel {
  box-shadow: none;
}
html.margin-padding .code {
  display: block;
}
html.margin-padding .box-margin {
  border: 1px solid #fff;
  background: #ffad72;
  margin-bottom: 8px;
}
html.margin-padding .box-in {
  border: 1px solid #999999;
  background: #f7f7f7;
}
html.margin-padding .box-padding {
  margin-bottom: 8px;
}
html.margin-padding .box-padding .box-in {
  background: #a2fd8c;
}

.section-subtitle {
  margin-bottom: 15px;
}

.section-text {
  margin-top: -10px;
}

.highlight {
  color: #004E90;
  font-weight: bold;
}

.img-animated {
  margin: 0 auto;
  display: block;
  width: 100%;
  max-width: 200px;
}

.img-center {
  display: block;
  margin: auto;
}

.img-responsive {
  display: block;
  width: 100%;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* COMPONENTS - NANO-SCROLL*/
/*================================================*/
.nano {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.nano > .nano-content {
  position: absolute;
  overflow: scroll;
  overflow-x: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.nano > .nano-content:focus {
  outline: thin dotted;
  
}
.nano > .nano-content::-webkit-scrollbar {
  display: none;
}
.nano.has-scrollbar > .nano-content::-webkit-scrollbar {
  display: block;
}
.nano > .nano-pane {
  display: block !important;
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
  width: 5px;
  right: 0;
  top: 0;
  bottom: 0;
  visibility: hidden\9;
  /* Target only IE7 and IE8 with this hack */
  opacity: .01;
  -webkit-transition: .2s;
  -moz-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.nano > .nano-pane > .nano-slider {
  background: #004E90;
  position: relative;
  margin: 0 1px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.nano:hover > .nano-pane {
  visibility: visible\9;
  /* Target only IE7 and IE8 with this hack */
  opacity: 0.99;
}
.nano .nano-pane.active, .nano .nano-pane.flashed {
  visibility: visible\9;
  /* Target only IE7 and IE8 with this hack */
  opacity: 0.99;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* COMPONENTS - PNOTIFY*/
/*================================================*/
.ui-pnotify {
  top: 15px;
  right: 15px;
}
.ui-pnotify .ui-pnotify-container {
  padding: 15px 15px 15px 65px;
  border: none;
}
.ui-pnotify .ui-pnotify-container.pnotify-sharp {
  border-radius: 0px;
}
.ui-pnotify .ui-pnotify-container .ui-pnotify-icon {
  width: 50px;
  position: absolute;
  left: 5px;
  top: 15px;
  margin: 0;
  text-align: center;
}
.ui-pnotify .ui-pnotify-container .ui-pnotify-icon > span {
  height: 40px;
  width: 40px;
  display: inline-block;
  float: none;
  margin: 0;
  padding: 0;
  font-size: 26px;
  font-size: 2rem;
  line-height: 36px;
  line-height: 2.76923rem;
  border: 2px solid #FFF;
  border-radius: 50%;
}
.ui-pnotify .ui-pnotify-container .ui-pnotify-title {
  font-size: 16px;
  font-size: 1.23077rem;
  font-weight: bold;
}
.ui-pnotify .ui-pnotify-container .ui-pnotify-text {
  font-size: 13px;
  font-size: 1rem;
  line-height: 18px;
  line-height: 1.38462rem;
}
.ui-pnotify .ui-pnotify-container .ui-pnotify-closer,
.ui-pnotify .ui-pnotify-container .ui-pnotify-sticker {
  position: absolute;
  right: 12px;
  top: 6px;
}
.ui-pnotify .ui-pnotify-container .ui-pnotify-sticker {
  right: 26px;
}
.ui-pnotify.pnotify-no-icon .ui-pnotify-container {
  padding-left: 15px;
}
.ui-pnotify.stack-bar-top {
  right: 0;
  top: 0;
}
.ui-pnotify.stack-bar-bottom {
  margin-left: 15%;
  right: auto;
  bottom: 0;
  top: auto;
  left: auto;
}
.ui-pnotify.stack-modal {
  width: 100% !important;
  left: 0px !important;
  top: 35% !important;
  margin: 0px;
  -webkit-transition-duration: 0.3s !important;
  transition-duration: 0.3s !important;
}
.ui-pnotify.stack-modal .ui-pnotify-container {
  padding: 30px 25% 15px 25%;
}
.ui-pnotify.stack-modal .ui-pnotify-container .ui-pnotify-title {
  font-size: 26px;
  font-size: 2rem;
  line-height: 36px;
  line-height: 2.76923rem;
  margin-top: 4px;
  margin-bottom: 15px;
}
.ui-pnotify.stack-modal .ui-pnotify-container .ui-pnotify-icon {
  top: 0;
  left: 0;
  position: relative;
  margin-right: 10px;
}
.ui-pnotify.stack-modal .ui-pnotify-container .ui-pnotify-text {
  margin-bottom: 20px;
}
.ui-pnotify.pnotify-primary .ui-pnotify-container.alert {
  background: #004E90 !important;
}
.ui-pnotify.pnotify-dark .ui-pnotify-container.alert {
  background: #000000 !important;
}
.ui-pnotify.pnotify-light .ui-pnotify-container.alert {
  background: #f7f7f7 !important;
  color: #999999 !important;
}
.ui-pnotify.pnotify-light .ui-pnotify-container.alert .ui-pnotify-icon > span {
  border-color: #999999;
}

.ui-pnotify-modal-overlay {
  background-color: rgba(0, 0, 0, 0.6) !important;
}

@media only screen and (max-width: 767px) {
  .ui-pnotify.stack-bar-bottom {
    margin-left: 0px;
    width: 100% !important;
  }
  .ui-pnotify.stack-modal .ui-pnotify-container {
    padding: 30px 10% 15px 10%;
  }
}
/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* COMPONENTS - TOASTR*/
/*================================================*/
#toast-container > .toast {
  background-image: none !important;
}

#toast-container > .toast:before {
  position: fixed;
  font-family: FontAwesome;
  font-size: 24px;
  line-height: 18px;
  float: left;
  color: #FFF;
  padding-right: 0.5em;
  margin: auto 0.5em auto -1.5em;
}

#toast-container > div,
#toast-container > div:hover {
  -moz-box-shadow: 0 0 12px #999999;
  -webkit-box-shadow: 0 0 12px #999999;
  box-shadow: 0 0 12px #999999;
}

#toast-container > .toast-warning:before {
  content: "\f12a";
}

#toast-container > .toast-error:before {
  content: "\f071";
}

#toast-container > .toast-info:before {
  content: "\f05a";
}

#toast-container > .toast-success:before {
  content: "\f00c";
}

.toast-success {
  background: #88b93c;
}

.toast-info {
  background: #003867;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* COMPONENTS - OWL-CAROUSEL*/
/*================================================*/
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*='owl-'] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* COMPONENTS - SELECT2*/
/*================================================*/
.select-tag-success + span .select2-selection__choice {
  background: #88b93c !important;
  color: #FFF !important;
}

.select-tag-warning + span .select2-selection__choice {
  background: #fea223 !important;
  color: #FFF !important;
}

.select-tag-danger + span .select2-selection__choice {
  background: #d2322d !important;
  color: #FFF !important;
}

.select-tag-info + span .select2-selection__choice {
  background: #5bc0de !important;
  color: #FFF !important;
}

.select2-selection__choice__remove {
  color: #ccc !important;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* COMPONENT - HAMBURGER ICONS */
/*================================================*/
.c-hamburger {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 60px;
  height: 40px;
  font-size: 0;
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  transition: background 0.5s;
}

.c-hamburger:focus {
  outline: none;
}

.c-hamburger span {
  display: block;
  position: absolute;
  top: 18.5px;
  left: 18px;
  right: 18px;
  height: 3px;
  background: white;
}

.c-hamburger span::before,
.c-hamburger span::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  content: "";
}

.c-hamburger--htla span {
  transition: transform 0.5s;
}

.c-hamburger--htla span::before {
  transform-origin: top right;
  transition: transform 0.5s, width 0.5s, top 0.5s;
}

.c-hamburger--htla span::after {
  transform-origin: bottom right;
  transition: transform 0.5s, width 0.5s, bottom 0.5s;
}

.c-hamburger--htla span {
  transform: rotate(180deg);
}

.c-hamburger--htla span::before,
.c-hamburger--htla span::after {
  width: 50%;
}

.c-hamburger--htla span::before {
  top: 0;
  transform: translateX(15px) translateY(1.5px) rotate(45deg);
}

.c-hamburger--htla span::after {
  bottom: 0;
  transform: translateX(15px) translateY(-1.5px) rotate(-45deg);
}

/* active state, i.e. menu open */
html.left-sidebar-collapsed .c-hamburger--htla span {
  transform: none;
}
html.left-sidebar-collapsed .c-hamburger--htla span::before,
html.left-sidebar-collapsed .c-hamburger--htla span::after {
  width: 100%;
}
html.left-sidebar-collapsed .c-hamburger--htla span::before {
  top: 7px;
  transform: none;
}
html.left-sidebar-collapsed .c-hamburger--htla span::after {
  top: -7px;
  transform: none;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* BOOTSTRAP OVERWRITE*/
/*================================================*/

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
	background: #42d2ba;
	border-color: #c9caca;
	
}

.pagination > li > a,
.pagination > li > span {
	color: #414950;
	margin-bottom: 10px;  
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
	color: #FFFFFF;
	  background: #e95031;	  
}
.pagination {
	float: right;	
}
.pagination .number{
	margin:0px 15px;
	display:inline-block;
}
@media screen and (max-width:768px){
	.pagination > li > a,
.pagination > li > span {
	text-align: center; 
}
	.pagination{
	text-align: center;
	float: none;
}}
/*# sourceMappingURL=style.css.map */

/*³ø¦W¨t²Î*/
.title02{font-size: 125%;color: #000;line-height: 35px;}
.w-100{width:100%!important}
.mt{margin-top: 30px;}
.alert{position:relative;padding:.75rem 1.25rem;margin:1rem 0rem;border:1px solid transparent;border-radius:.25rem}
.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}
.alert-danger hr{border-top-color:#f1b0b7}
.alert-danger .alert-link{color: #FFFFCC;}
#experience .activity li{
	float: left;
	width: 32%;
	display: block;
	margin-right: 2%;
	margin-bottom: 40px;
	background:#ffffff;
}
#experience .h2{
	text-align: center;
	font-family: "·s²Ó©úÅé";
	font-size: 195%;
	color: #5b0404;
	font-weight: bold;
	padding: 20px 0px 10px 0px;
	line-height: 30px;
}
#experience .activity li:nth-child(3n){margin-right: 0%;}
#experience .activity li a.buy2,#experience .activity li a.buy7{color: #ffffff;}
#experience .activity li a.buy2:hover,#experience .activity li a.buy7:hover{color: #ffffff;}
#experience .activity p{
	font-family: "·L³n¥¿¶ÂÅé";
	font-weight: bold;
	color: #000;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	padding: 5px 0px;
}
#experience .activity .msg1{
	color: #930;
	border: 1px solid #930;
	padding:2px 5px;
	margin-right:5px;
}
#experience .activity .msg2{
	color: #4f4f4f;
	background-color:#d5d5d5;
	padding:2px 5px;
	margin-right:5px;
}
#experience .activity .boxtext{
	padding: 15px 15px 5px 15px;
	line-height: 23px;
}
#experience .activity .text{
	overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}


#experience .activity .day{
	font-size: 90%;
}
#experience .fa{
	margin-right: 5px;
	text-align: center;
	width: 20px;
}
#experience .activity a{color:#595757;}
#experience .activity:hover,#experience .activity:hover p,#experience .activity:hover .text{color: #523620;}
#experience .activity .pic {
	overflow: hidden;
	position: relative;
	height: 235px;
	width: 100%;
	max-width: 100%;
	margin: auto;
}
#experience .activity .pic img {
    transition: all 0.3s linear;
    -webkit-backface-visibility: hidden;
	height: 235px;
	position: absolute;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
}

#experience .activity .btnstyle{
	color: #FFF;
}
#experience  .btnstyle{
	/*-moz-border-radius: 3px;
	border-radius: 3px;*/
	text-align: center;
	color: #FFF;
	font-size: 100%;
	font-weight: bold;
	background-color: #f4655d;
	display: block;
	width: 100%;
	margin-top: 10px;
	padding: 5px 0px;
   border: 1px solid #f4655d;

}
#experience  .btnstyle:hover{
	background-color: #fa7a73;
	color: #FFF;
}

/*---------------------------------------
   top-carousel-lg
-----------------------------------------*/
.dm-wrap-lg{
	position: relative;
	overflow: hidden;
}
.dm-wrap-lg .container {
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin:0; 
}
.top-carousel-lg li {
	overflow: hidden;
	position: relative;
	height: 400px;
	width: 100%;
	max-width: 100%;
	margin: auto;
}
.top-carousel-lg li img {
    transition: all 0.3s linear;
    -webkit-backface-visibility: hidden;
	height: 400px;
	position: absolute;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
}
.top-carousel-lg .slick-dots {
	width: 100%;
	text-align: center;
	padding-left: 0;
	position: absolute;
	bottom: 10px;

}
.top-carousel-lg .slick-dots li{
	display: inline-block;
	border: 1px solid #fff;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	margin: 0 5px;
	cursor: pointer;
	background-color:#888686; 
}

.top-carousel-lg .slick-dots li button{
	display: none;
}
.top-carousel-lg .slick-dots li.slick-active {	
	background-color: #ffffff;
}
/*---------------------------------------*/
/*---------------------------------------
   map
-----------------------------------------*/
.mapdiv{
	padding:0px 0px 50px 0px;
	position: relative;
	z-index: 2;
	background-color: #f7f7f7;
}
#section-map {
	vertical-align: bottom;
	
}
#section-map iframe{
	vertical-align: bottom;
}
/*---------------------------------------*/
.pcbtn{
	display: block;
	text-align: center;
	width: 20%;
	margin: auto;
	padding-top: 30px;
}
.tti{color: #333;padding: 30px 0px;font-family: "·L³n¥¿¶ÂÅé";}
.tti strong{ color:#30bfcd}
.line-caption{
	display: table;
	white-space: nowrap;
	text-align: center;
	
}
.line-caption:after,.line-caption:before{
	content: '';
	display: table-cell;
	position: relative;
	top: 0.7em;
	width: 45%;
	border-top: 1px solid #dee1e6;
}
.line-caption:before{right: 2.5%;}
.line-caption:after{left: 2.5%;}
.event-line-caption{
	width: 95%;
	font-size: 170%;
	/*color: #fff;*/
	margin-bottom: 25px;
	margin: 20px 0px;
	margin-right: auto;
	margin-left: auto;
	line-height: 35px;
	letter-spacing: 0.1em;
	font-weight: bold;
}
#experience .fl_l{
	-moz-border-radius: 3px;
	border-radius: 3px;
	width: 250px;
	border: 1px solid #dee1e6;
	background-color: #FCFCFC;
	padding: 10px;
	display: block;
			}
#experience .fl_l p{
	font-size: 110%;
	margin-bottom: 10px;
	font-weight: bold;
	color: #000000;
}
#experience .fl_l .day{
	font-size: 90%;

}

#experience .fl_l .time{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 175%;

}
#experience .col-md-8{
	margin-right: 0px;
	margin-left: 0px;
}
.signup{ margin:25px 0px;}
.signup li{
	font-size: 120%;
	line-height: 35px;
}
.out-wrap {
	position: relative; 
  /*width: 400px;
	margin: 10px auto 0px auto;	*/
	width: 100%;
	text-align: center;
    background: #f7f7f7;box-shadow: 0 2px 3px -2px rgba(0, 0, 0, 0.25);
}
.out-wrap #tabs {
	border-bottom: 0;
	/*margin: 0 -50px 20px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.5)
    ;*/
	display: flex;
	 overflow-x: scroll;
  overflow-y: hidden;	
	/*padding:15px 0px;*/
	flex-wrap: nowrap !important;


}
#toppg .out-wrap #tabs {
  border-bottom: 0;
  /*margin: 0 -50px 20px;*/
  background: #303030;
  display: flex;
  overflow-x: scroll;
  overflow-y: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  flex-wrap: nowrap !important;
}
@media screen and (min-width: 640px) {.out-wrap #tabs{display: inline-block;margin-bottom: -6px;}}


.out-wrap #tabs li {
	/* width: auto;*/
	white-space: nowrap;
	display: inline-block;	
	flex: 1;
	text-align: center; 
}

.out-wrap #tabs::-webkit-scrollbar {
  display: none; width: 100%;
}

.out-wrap #tabs li a {
  border: 0;
  border-radius: 0;
  cursor: pointer;
  color: #333;  
  text-transform: uppercase;
  border-left: 1px solid #d6d6d6;
  padding: 15px 20px;
  border-bottom: 5px solid #f7f7f7;
  font-size:105%;
 
}
.out-wrap #tabs  li:first-child a {
	border-left: none;
}
.out-wrap #tabs li a:hover {
  color: #5b0404;
  border-bottom: 5px solid #5b0404;
}
.out-wrap #tabs li.active a {
	color: #5b0404;
	border-bottom: 5px solid #5b0404;
}
.out-wrap .tab-content {
  overflow: hidden !important;
}
.step{text-align: center; padding:10px 0px; }
.step .lion span{}
.step ul{
	display: inline-block;
}
.step li{
	float: left; 
	font-size: 105%;
	margin-right: 5px; 
	color: #CCC;
}
.step .lion{
	color: #000;
}
.step .circle{
	width: 25px;
	height: 25px;
	border-radius: 99em;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 105%;
	line-height: 25px;
	color: #CCC;
	display: inline-block;
	margin-right: 5px;
	border: 1px solid #CCC;
}
.step .circle_on{
	width: 25px;
	height: 25px;
	border-radius: 99em;
	background-color: black;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 105%;
	line-height: 25px;
	color: #FFF;
	display: inline-block;
	margin-right: 5px;
}
.wtk1{width: 60%;}
.wtk2{width: 20%;}
.wtk3{width: 50%;}
.wtk4{width: 15%;}
.tk_table{width: 100%;}
.tk_table th{border-bottom: 1px solid #523620;background: #e0d6cf;padding: 0.8em 0.8em 0.8em 0.8em;vertical-align: middle; color:#000;}
.tk_table tr{background-color: #FFF;}
.tk_table td {	vertical-align: middle;padding: 1em 0.8em 1em 0.8em;}
.tk_table tr{width: 100%;margin-bottom: 20px;display: inline-table;}
.tk_table .number{position: relative;}
.tk_table .number span{padding-right: 0px;}	
.tk_table .number .input{
	height: 32px;
	width: 100%;
	border: 1px solid #dddddd;
	line-height: 30px;
	text-align: center;
	float: left;
	border-radius: 0;
	-webkit-appearance: none;
	
}
.tk_table .number .plus{
	font-size:150%;	
	text-align: center;
	right: -10px;
	width: 36px;
	height: 32px;
	border: 1px solid #dddddd;
	position: absolute;
	cursor: pointer;
}
.tk_table .number .less{
	font-size:150%;	
	text-align: center;
	border: 1px solid #dddddd;
	width: 36px;height: 32px;
	position: absolute;
	left: 0px;
	cursor: pointer;	
}
.tk_buy6{
	text-align: center;
	color: #FFF;
	font-size: 100%;
	font-weight: bold;
	background-color: #633f1f;
	padding:15px 35px;
}
a.tk_buy6{
	color: #FFF;
	text-decoration: none;
}
.tk_buy6 span{
	display: none;
}
.tk_table .all-red{
	color: #5b0404;
	font-size: 110%;
	font-weight: bold;
}
.radio-select li{
	margin-right: 2%;
	float: left;
	width: 23.5%;
	display: inline-block;
	margin-top:20px;
}
.radio-select li:nth-child(4n){
	margin-right: 0%;
	float: right;
}
.radio-select .radio-none {
    position: absolute;
    visibility: hidden;
    display: none;
}
.radio-select label {
	border-radius:3px;
	font-size:110%;
	width:100%;
	display: inline-block;
	cursor: pointer;
	border: 1px solid #dedede;
	color: #888888;
	line-height: 2;		
	margin-bottom: 10px;
	font-weight: bold;
	padding: 15px 35px  15px 20px;
}
/*.radio-select:last-child label { margin-right: 0; }*/
.radio-select .radio-none[type=radio]:checked + label {
	color: #fa6f46;
	border: 1px solid #fa6f46;
	background-image: url(../images/radio-select.svg);
	background-repeat: no-repeat;
	background-position: right center;
}
.number{
	
	/*margin-top: 20px;*/
}
.number span{
	padding-right: 20px;
	
}	
.number .input{
	height: 32px;
	width: 35%;
	border: 1px solid #dddddd;
	line-height: 30px;
	text-align: center;
	float: left;
	border-radius: 0;
	-webkit-appearance: none;
}
.number .plus{
	float: left;
	margin-right: 10px;
	line-height: 25px;
	font-weight: 600;
}
.number .less{
	float: left;
	line-height: 25px;
	font-weight: 600;
	
}
.p-1{padding: 15px;}
.red01{color: #e95031;}
.red02{color: #e95031;font-size: 130%;font-weight: bold;}
.back03{background-color: #f7f7f7;padding: 20px 0px  20px 0px;}
.inputstyle{
	vertical-align: middle;
	height: 20px;
	width: 20px;
	margin-right: 5px;
}
/* form*/
.formBox select{
  border: 1px solid #e6e6e6;
  appearance:none;
  -moz-appearance:none;
  -webkit-appearance:none;
  padding: 5px 50px 5px 10px;
  width: 100%;
  height: 55px;
  border-radius: 5px;
  /*font-size: 115%;*/
  background: url(../images/icon-select-01.svg) no-repeat scroll right center transparent;
  background-color:#FFF;
  color:#868e96;
}
.formBox1 select::-ms-expand{ display: none; }
.checkout select{
  border: 1px solid #e6e6e6;
  appearance:none;
  -moz-appearance:none;
  -webkit-appearance:none;
  padding: 20px 50px 5px 10px;
  width: 100%;
  height: 55px;
  border-radius: 5px;
  font-size: 115%;
  background: url(../images/icon-select-01.svg) no-repeat scroll right center transparent;
}
.formBox select::-ms-expand,.checkout select::-ms-expand { display: none; }

.checkout input[type="text"],.formBox input[type="text"],.checkout textarea,.formBox textarea{
    outline:none;
	 appearance:none;
     -moz-appearance:none;
    -webkit-appearance:none;
}
.checkout input:focus,.formBox input:focus,.checkout textarea:focus,.formBox textarea:focus{
    background:#f9f9f9;
    outline:none;
    box-shadow:0 0 10px rgba(0, 0, 0, 0.3), inset 0 0 0px rgba(100,100,100,0.3);
    border-color:#00c0f3;
}
.checkout select:focus ,.formBox select:focus{
    background:#f9f9f9;
    outline:none;
    box-shadow:0 0 10px rgba(0, 0, 0, 0.3), inset 0 0 0px rgba(100,100,100,0.3);
	background: url(../images/icon-select-01.svg) no-repeat scroll right center transparent;
    border-color:#00c0f3;
}
.formBox .form-control,.checkout .form-control{
	border: none;
	background:#FFF;
	outline: none;
	width: 100%;
	box-sizing: border-box;
	padding: 15px  10px ;
	border-radius: 5px;
	border: 1px solid #e6e6e6;
	
}
.formBox li{
	font-size: 100%;
	margin-bottom: 20px;
}
.formBox .ti01{
	font-size: 105%;
	margin: 30px 0px  10px 0px;
	color: #000;
}
.formBox .radio,.checkout .radio{
	height: 20px;
	width: 20px;display: inline-block;
	vertical-align: text-bottom;
}
.formBox .formbtn{
	text-align: center;
	color: #7f6956;
	padding: 10px  50px;
	display: inline-block;
	margin: auto;
	border: 1px solid #7f6956;
	font-weight: bold;
	background:none;
}
.formBox .formbtn:hover{
	background-color: #fa6f46;
	border: 1px solid #fa6f46;
	color: #FFF;
}
/* form end*/
.mt{margin-top: 30px;}
.mt1{margin-top: 20px;}
.mt2{margin-top: 10px;}
.mt3{margin-top:5px;}
.md{margin-bottom: 40px;}
.md1{margin-bottom: 30px;}
.md2{margin-bottom: 20px;}

.buy2{
	-moz-border-radius: 3px;
	border-radius: 3px;
	text-align: center;
	color: #FFF;
	font-size: 100%;
	font-weight: bold;
	background-color: #7f6956;
	margin-right: 20px;
	padding: 5px 15px;
}
.buy2:hover{
	background-color: #927f6f;
	color: #FFF;
}

.buy7{
	-moz-border-radius: 3px;
	border-radius: 3px;
	text-align: center;
	color: #FFF;
	font-size: 100%;
	font-weight: bold;
	background-color: #f4655d;
	margin-right: 20px;
	padding: 5px 15px;
}
.buy7:hover{
	background-color: #f97c75;
	color: #FFF;
}
@media screen and (max-width: 1024px) {
#experience .fl_l{width: 225px;}
#experience .fl_l .time{font-size: 165%;}
#experience .fl_l .day{font-size: 85%;}
#experience .activity li{width: 48%;margin-right: 2%;margin-bottom: 40px;}
#experience .activity li:nth-child(3n){margin-right: 2%;}
#wrap1,#wrap2,#wrap3,#wrap4,#wrap5{margin-bottom: 120px;}

}
@media screen and (max-width:768px){
.back03{background-color: #f7f7f7;padding: 0px 0px  20px 0px;}
#experience .activity li{width: 100%;margin-bottom: 40px;}
#experience .fl_l .time{font-size: 155%;}
#experience .fl_l .day{font-size: 83%;}
#experience .fl_l{width: 100%;left: 0px;z-index: 1111;margin-bottom:20px;}
#experience .col-md-8,#experience .col-md-4{width: 100%;}
#experience .activity .pic,#experience .activity .pic img {height: 300px;}
.top-carousel-lg li,.top-carousel-lg li img{height: 300px;}
#wrap1,#wrap2,#wrap3,#wrap4,#wrap5{margin-bottom: 0px;}
.pcbtn{display: none;}
.wtk1{width: 35%;}
.wtk2{width: 15%;}
.wtk3.wtk4{width: 50%;}
.out-wrap {background: #eeeded;}
.out-wrap #tabs {
	background: #f7f7f7;
	overflow-x: scroll;
	overflow-y: hidden;	
}
.out-wrap #tabs li a{border-left: none;  padding: 15px 16px;}
.step li{ margin-bottom:20px;}
.radio-select li{
	margin-right: 2%;
	float: left;
	width: 48%;
	display: inline-block;	
}
}
@media screen and (max-width:640px){
.top-carousel-lg li,.top-carousel-lg li img{height: 200px;}
#experience .fl_l{
	width: 100%;
	left: 0px;
	z-index: 1111;
}
#experience .fl_l p{font-size: 100%;}
#experience .fl_l .day,.fl_l .time{display: none;}
#experience .activity li .buy2{display: inline-block;width: 45%;margin-right: 0%;}
#experience .activity li .buy7{display: inline-block;width: 45%;margin-right: 3%; }
#experience .activity .pic,#experience .activity .pic img {height: 200px;}
.out-wrap {background: #eeeded;}
.out-wrap #tabs {
	background: #f7f7f7;
	overflow-x: scroll;
	overflow-y: hidden;	
}
.out-wrap #tabs li a{border-left: none;}
.step li{ margin-bottom:0px;}
.step .onti span{display: inline-block;}
.step li span{display: none;}
.tk_table th{display: none;}
.wtk1{width: 100%;display: inline-block;}
.wtk2{width: 35%;float:left;display: inline-block;}
.wtk3{width: 65%;float: left;text-align: right;display: inline-block;}
.wtk4{width: 65%; background-color:#e0d6cf;}
.tk_table .number{
	text-align: right;
}
.tk_table .all{display: none;}
.tk_table .all-red{text-align: right; font-size:100%;}
.tk_buy6{
	width: 100%;
	display: inline-block;
}
.tk_buy6 span{
	display: block;
}
.radio-select li{
	margin-right: 3%;
	float: left;
	width: 48%;
	margin-bottom:20px;
	
}
.radio-select li:nth-child(2n){
	margin-right: 0%;
	float: right;
}
}
@media screen and (max-width:320px){
#experience .activity .pic,#experience .activity .pic img {height: 180px;}
}
.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}
@media (min-width:576px){.container{max-width:540px}}
@media (min-width:768px){.container{max-width:720px}}
@media (min-width:992px){.container{max-width:960px}}
@media (min-width:1200px){.container{max-width:1140px}}
.ue-container {
	   width: 100%;
	   margin: 0 auto;
	   margin-top: 10px;
	   padding: 20px 20px;
	   border: 1px solid #ddd;
	   background: #fff;
   }

/* ²¾°Êªí®æ±M¥Î */
.rc-handle-container{position:relative;}
.rc-handle{position:absolute;width:7px;cursor:ew-resize;*cursor:pointer;margin-left:-3px;}

/* add */
.btnpos.btn-info {
    background-color: #fff;
    border-color: #858585;
}
.take-down button{background: #9fa0a0!important;border-color: #9fa0a0!important;}
.take-down-li{background: #dcdddd!important;border-color: #CCC!important;}
.take-down-li2{background: #edebeb!important;border-color: #CCC!important;}
.form--disabled input{
    border: 0 solid #efefef;
    background:initial;
    color: #31373b;
    transition: all 0.2s ease-in-out;
}
.form--enabled input{
    border: 1px solid #ccc;
    background: white;
    color: #31373b;
    transition: all 0.2s ease-in-out;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;color: #555;
    border-radius: 4px;
}
.f1ft{font-size: 30px;text-align: center;margin: 20px 0px;font-weight: bold;width: 100%;}
.f1ft2{font-size: 15px;text-align: center;margin: 20px 0px;font-weight: bold;width: 100%;}
/*.flex{display: flex;justify-content:space-between}*/
.align-center{display: flex;align-items:center}
.box1{width: 100%;background: #FFF;margin-bottom: 30px;padding: 15px;}
.box2{width: 49%;background: #FFF;margin-bottom: 30px;padding: 15px;}
.box4{width: 24.25%;background: #FFF;margin-bottom: 30px;padding: 15px;}
.progress-bar {
    float: left;
    width: 0;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    background-color: #f98d73;
    -webkit-box-shadow: inset 0 -1px 0 rgb(0 0 0 / 15%);
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 15%);
    -webkit-transition: width .6s ease;
    -o-transition: width .6s ease;
    transition: width .6s ease;
}

