/* ------------------------------------------------------------------------------
	Template Name: Minifolio
	Author: Designstub
	Author URI: http://www.designstub.com
	License: GNU General Public License version 3.0
	License URI: http://www.gnu.org/licenses/gpl-3.0.html
	Version: 1.0

/* ------------------------------------------------------------------------------
	Typography
-------------------------------------------------------------------------------*/

@import url(https://fonts.googleapis.com/css?family=Open%20Sans:300,400,500,600,700);
@import url(https://fonts.googleapis.com/css?family=Merriweather:300,400,500,600,700);


:root{
	--primary-color: #119d73;
/*	previous: 0c89f5*/
}
p {
	font-size: 13px;
	line-height: 22.4px;
	color: #6c7279;
}
h1 {
	font-size: 65px;
	color: #2d3033;
}
h2 {
	font-size: 40px;
	color: #2d3033;
}
h3 {
	font-size: 28px;
	color: #2d3033;
	font-weight: 300;
}
h4 {
	font-size: 22px;
	color: #2d3033;
	font-weight: 400;
}
h5 {
	font-size: 14px;
	color: #2d3033;
	text-transform: uppercase;
	font-weight: 700;
}
.btn {
	background-color: rgba(17, 157, 115, 0.8);
	color: #fff;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	display: inline-block;
	font-size: min(22px, 1.4vw);
	border: 1px solid #bce1c4;
	padding: 4px 10px;
}
.btn:hover, .btn:focus {
	background-color: #3d3d3d;
	color: #fff;
}
.btn-large {
	padding: 15px 40px;
}
::-webkit-scrollbar {
	width: 0px;
	background: transparent; /* make scrollbar transparent */
}
#index-sidebar {
	min-width: 5%;
	max-width: 15%;
}
/* ------------------------------------------------------------------------------
	Global Styles
-------------------------------------------------------------------------------*/
a {
	color: var(--primary-color);
}

a:hover, a:focus {
	text-decoration: none;
	-moz-transition: background-color, color, 0.3s;
	-o-transition: background-color, color, 0.3s;
	-webkit-transition: background-color, color, 0.3s;
	transition: background-color, color, 0.3s;
}

body {
	font-family: "Open Sans", Arial, sans-serif;
	font-weight: 400;
	color: #6c7279;
}

html,body
{
	width: 100%;
	height: 100%;
	/*margin: 0;*/
	padding: 0;
}

ul, ol {
	margin: 0;
	padding: 0;
}

ul li {
	list-style: none;
}

.section {
	padding: 100px 0;
}

.no-padding {
	padding: 0;
}

.no-gutter [class*=col-] {
	padding-right: 0;
	padding-left: 0;
}

.space {
	margin-top: 60px;
}

input {
	padding: 12px 20px;
	box-sizing: border-box;
}

/* ------------------------------------------------------------------------------
	Header
-------------------------------------------------------------------------------*/
#header {
	position: fixed;
	margin-bottom: 5px;
	width: 100%;
	z-index: 999;
	background-position: center top;
	background-repeat: no-repeat;
	-moz-background-size: cover;
	-o-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
	min-height: 5vh;
	padding: 6px 0 8px;
}

#header .header-content {
	margin: 0 auto;
	max-width: 85%;
	width: 100%;
	-moz-transition: padding 0.3s;
	-o-transition: padding 0.3s;
	-webkit-transition: padding 0.3s;
	transition: padding 0.3s;
}

.header-content {
	padding: 2px 0 ;
}
#header .logo {
	float: left;
	font-size:24px;
	font-weight:700;
	color: #000000;
	text-decoration:none;
	text-transform:uppercase;
	letter-spacing:7px;
}
#header.fixed {
	/*background-color: #fafafa;*/
	background-color: var(--primary-color);
}
#header.fixed .admin-span{
	background-color: #fafafa;
	color: var(--primary-color);
}

.admin-span {
	background-color: var(--primary-color);
	color: white;
	padding: 8px 12px;
	border-radius: 32px;
}
#header.fixed a {
	color: #000;
}
#header.fixed .header-content {
	border-bottom: 0;
	padding: 8px 0;
}
#header.fixed .nav-toggle {
	top: 18px;
	color: #000;
}
.navigation.open {
	opacity: 0.9;
	visibility: visible;
	-moz-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}
.navigation {
	float: right;
	margin-top: 7px;
}
.navigation li {
	display: inline-block;
}
.navigation a {
	color: rgba(0, 0, 0, 0.75);
	font-size: 13px;
	font-weight: 700;
	margin-left: 40px;
	text-transform: uppercase;
}
.navigation a:hover, .navigation a.active {
	color: #afabab;
}
.nav-toggle {
	display: none;
	height: 44px;
	overflow: hidden;
	position: fixed;
	right: 5%;
	text-indent: 100%;
	top: 32px;
	white-space: nowrap;
	width: 44px;
	z-index: 99999;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.nav-toggle:before, .nav-toggle:after {
	border-radius: 50%;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-webkit-transition-property: -webkit-transform;
	transition-property: transform;
}
.nav-toggle:before {
	background-color: var(--primary-color);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
	-moz-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
.nav-toggle:after {
	background-color: var(--primary-color);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-webkit-transform: scale(0);
	transform: scale(0);
	-moz-transition-duration: 0s;
	-o-transition-duration: 0s;
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}
.nav-toggle span {
	background-color: #fff;
	bottom: auto;
	display: inline-block;
	height: 3px;
	left: 50%;
	position: absolute;
	right: auto;
	top: 50%;
	width: 18px;
	z-index: 10;
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
.nav-toggle span:before, .nav-toggle span:after {
	background-color: #fff;
	content: "";
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-transition: -moz-transform 0.3s;
	-o-transition: -o-transform 0.3s;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}
.nav-toggle span:before {
	-moz-transform: translateY(-6px) rotate(0deg);
	-ms-transform: translateY(-6px) rotate(0deg);
	-webkit-transform: translateY(-6px) rotate(0deg);
	transform: translateY(-6px) rotate(0deg);
}
.nav-toggle span:after {
	-moz-transform: translateY(6px) rotate(0deg);
	-ms-transform: translateY(6px) rotate(0deg);
	-webkit-transform: translateY(6px) rotate(0deg);
	transform: translateY(6px) rotate(0deg);
}
.nav-toggle.close-nav:before {
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-webkit-transform: scale(0);
	transform: scale(0);
}
.nav-toggle.close-nav:after {
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
}
.nav-toggle.close-nav span {
	background-color: rgba(255, 255, 255, 0);
}
.nav-toggle.close-nav span:before, .nav-toggle.close-nav span:after {
	background-color: #fff;
}
.nav-toggle.close-nav span:before {
	-moz-transform: translateY(0) rotate(45deg);
	-ms-transform: translateY(0) rotate(45deg);
	-webkit-transform: translateY(0) rotate(45deg);
	transform: translateY(0) rotate(45deg);
}
.nav-toggle.close-nav span:after {
	-moz-transform: translateY(0) rotate(-45deg);
	-ms-transform: translateY(0) rotate(-45deg);
	-webkit-transform: translateY(0) rotate(-45deg);
	transform: translateY(0) rotate(-45deg);
}

/* ------------------------------------------------------------------------------
	Index Header
-------------------------------------------------------------------------------*/

#index-header {
	background: #ffffff;
}

#logo {
	color : black;
}


/* ------------------------------------------------------------------------------
	Body
-------------------------------------------------------------------------------*/

.body{
	width: 100%;
	padding-top: 6vh;
	background-color: #ffffff;
	min-height: 100vh;
}
#homepage-container {
	background-color: white;
	width: 90%;
	height: 110vh;
	padding: 0;
	display: flex;
}
.dataviz-section {
	z-index: 0;
}
.dataviz-tab {
	padding-left: 2em;
	padding-right: 2em;
	background-clip: border-box;
	border: 1px solid rgba(26,54,126,0.125);
	border-radius: 0.25rem;
}

#map-content {
	padding-left: 3em;
	padding-bottom: 2em;
	/*margin-bottom: 2em;*/
}

#dataviz-content {
	width: 100%;
	min-height: 100vh;
	padding-left: 1em;
	padding-right: 1em;
	padding-top: 2em;
	background-color: white;
	border: solid 1px #d6f3d7;
	display: flex;
	flex-direction: column;
}

#homepage-image {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	background-image: url('../../img/homepage2.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	opacity: 20%;
	/*filter: blur(5px);*/
	position: relative;
}

#homepage-content {
	width: 90%;
	height: 110vh;
	position: absolute;
	display: flex;
}

#homepage-search-content {
	width: 95%;
	position: absolute;
	display: flex;
	justify-content: center;
	flex-direction: row;
}

#homepage-explore-data {
	width: fit-content;
	background: rgba(17, 157, 115, 0.8);
	color: white;
	margin: 2vh 0 4vh 0;
	font-size: min(22px, 1.4vw);
	border: 1px solid #bce1c4;
	padding: 4px 10px;
}
#homepage-explore-data a {
	color:white;
	text-decoration:none;
}

#stats-top-right {
	position: absolute;
	top: 0;
	left: 0;
	margin: 80px 0 0 40px;
 	padding: 0.4em 1em 0.3em;
	font-size: min(22px, 1.6vw);
	/*outline: 1px solid hsla(0, 0%, 100%, 0.49);*/
	border-top: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
	color: white;
	min-width: min(15%, 27vw);
	/*background-color: var(--primary-color);*/
	background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(17, 157, 115, 0.8) 5%, rgba(17, 157, 115, 0.8) 20%, rgba(17, 157, 115, 0.8) 30%, rgba(17, 157, 115, 0.8) 40%,
	rgba(17, 157, 115, 0.8) 50%, rgba(17, 157, 115, 0.8) 60%, rgba(17, 157, 115, 0.8) 70%, rgba(17, 157, 115, 0.8) 80%, rgba(17, 157, 115, 0.8) 95%, rgba(0, 0, 0, 0) 100%)
}

#body-left {
	width: 50%;
	height: 100vh;
	margin-left: 2em;
	padding-top: 6em;
}

#body-right {
	width: 40%;
	height: 100vh;
	margin-right: 3em;
	padding-top: 3em;
	margin-left: 2em;
}

.body-text-left {
	padding-bottom: 1.2em;
}


/* map */
#map {
	width: 100%;
	height: 800px;
	right: 0;
	margin-top: 2.5em;
	margin-right: 3em;
	position: relative;
}

#loading {
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 5%;
	background-image: url('https://c.tenor.com/5o2p0tH5LFQAAAAi/hug.gif');
	background-color: grey;
	display: none;
	opacity: 30%;
	position: fixed;
	z-index: 9999;
	filter: contrast(1.75);
}

/* results */
.main-wrapper {
	display: flex;
	padding-top: 52px;
	flex-direction: column;
}

 /* Index sidebar */

.index-sidebar {
	display: block;
	width: 300px;
	margin-right: 2em;
	background: white;
	border: black;
	position: fixed;
	pointer-events: auto;
}

 /*
  Titles at the center of the homepage
 */

#center-title-left {
	padding-top: 17vh;
	font-size: min(90px, 6.2vw);
}

#center-title-right {
	padding-top: 30vh;
	padding-bottom: .8em;
	/*margin-bottom: 30vh;*/
	font-size: min(30px, 1.9vw);
	color: var(--primary-color);
	text-align: left;
	line-height: 4rem;
	border-bottom: 3px solid var(--primary-color);
}

#form {
	display: flex;
	min-width: 50px;
	flex-direction: column;
	padding-left: 5%;
}

#form_query {
	width: min(600px, 40vw);
	margin: auto 1px auto auto;
	padding-left: 1em;
	display: inline-block;
	background-color: #ffffff;
}
.form-group {
	margin-bottom: 5px;
}

#form_search {
	background-color: var(--primary-color);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	border: 0;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	text-transform: uppercase;
}


/* ------------------------------------------------------------------------------
	Admin
-------------------------------------------------------------------------------*/


.field-boolean .form-check .form-check-label {
	padding-left: 40px;
}

/* ------------------------------------------------------------------------------
	Banner
-------------------------------------------------------------------------------*/

.banner {
	/*background-image: url(../images/banner.jpg);*/

}
.banner-text {
	padding-top: 25%;
}
.banner-text h1 {
	color: #23BDDC;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 65px;
	font-weight: 700;
	text-transform: uppercase;
}
.banner-text p {
	color: rgba(255, 255, 255, 0.60);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	margin-top: 30px;
	margin-bottom: 80px;
}

/* ==========================================================================
	$intro
========================================================================== */
.intro {
	background-color: var(--primary-color);
}
.intro h3 {
	color: #fff;
	margin-top: 0;
}
.intro p {
	font-family: "Merriweather", Arial, sans-serif;
	color: rgba(255, 255, 255, 0.75);
	font-weight: 400;
	font-size: min(20px, 1.5vw);
}
/* ------------------------------------------------------------------------------
	 Services
-------------------------------------------------------------------------------*/
.service-section {
	padding-top: 100px;
}
.services {
	margin-bottom: 50px;
}
.services-content {
	padding: 0 15px;
	margin-top: 30px;
}
.services .icon {
	color: var(--primary-color);
	font-size: 50px;
	padding-left: 15px;
}
/* ------------------------------------------------------------------------------
	 Works
-------------------------------------------------------------------------------*/
.work {
	-moz-box-shadow: 0 0 0 1px #fff;
	-webkit-box-shadow: 0 0 0 1px #fff;
	box-shadow: 0 0 0 1px #fff;
	overflow: hidden;
	position: relative;
}
.work img {
	width: 100%;
	height: 100%;
}
.work .overlay {
	background: var(--primary-color);
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	width: 100%;
	-moz-transition: opacity, 0.3s;
	-o-transition: opacity, 0.3s;
	-webkit-transition: opacity, 0.3s;
	transition: opacity, 0.3s;
}
.work .overlay-caption {
	position: absolute;
	text-align: center;
	top: 50%;
	width: 100%;
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.work h5, .work p, .work img {
	-moz-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	-webkit-transition: all, 0.5s;
	transition: all, 0.5s;
}
.work h5, .work p {
	color: #fff;
	margin: 0;
	opacity: 0;
}
.work span {
	font-size: 45px;
}
.work h5 {
	margin-bottom: 5px;
	-moz-transform: translate3d(0, -200%, 0);
	-ms-transform: translate3d(0, -200%, 0);
	-webkit-transform: translate3d(0, -200%, 0);
	transform: translate3d(0, -200%, 0);
}
.work p {
	-moz-transform: translate3d(0, 200%, 0);
	-ms-transform: translate3d(0, 200%, 0);
	-webkit-transform: translate3d(0, 200%, 0);
	transform: translate3d(0, 200%, 0);
}
.work-box:hover img {
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}
.work-box:hover .overlay {
	opacity: 1;
}
.work-box:hover .overlay h5, .work-box:hover .overlay p {
	opacity: 1;
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
/* ------------------------------------------------------------------------------
	 Teams
-------------------------------------------------------------------------------*/
.person {
	max-width: 270px;
	text-align: center;
}
.person img {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	margin: auto;
}
.person-content {
	margin-top: 20px;
}
.person h4 {
	font-weight: 400;
}
.person h5 {
	color: var(--primary-color);
	font-size: 13px;
	font-weight: 400;
	margin-bottom: 20px;
}
.social-icons, .footer .footer-share {
	margin-top: 30px;
}
.social-icons li, .footer .footer-share li {
	display: inline-block;
	float: none;
}
.social-icons a, .footer .footer-share a {
	border: 1px solid #e8ecee;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	color: #c6cacc;
	display: block;
	font-size: 14px;
	height: 32px;
	line-height: 32px;
	margin-right: 5px;
	text-align: center;
	width: 32px;
}
.social-icons a:hover {
	background-color: var(--primary-color);
	border-color: #01a9d4;
	color: #fff;
}
/* ------------------------------------------------------------------------------
	 Testimonials
-------------------------------------------------------------------------------*/
.testimonials {
	background-color: var(--primary-color);
	position: relative;
	text-align: center;
}
.testimonials blockquote {
	border: 0;
	margin: 0;
	padding: 100px 15%;
}
.testimonials h1 {
	color: #fff;
	font: 23px "Merriweather";
	font-weight: 300;
}
.testimonials p {
	color: #fff;
	display: block;
	font-size: 13px;
	font-style: normal;
	letter-spacing: 2px;
	font-weight: 400;
	margin-top: 30px;
	text-transform: uppercase;
}
.flex-control-nav {
	margin-top: 2%;
	bottom: none!important;
	position: relative!important;
	right: 0;
	text-align: center;
	width: 100%!important;
	z-index: 100;
}
/* ------------------------------------------------------------------------------
	Contact form
-------------------------------------------------------------------------------*/
.conForm {
	text-align: center;
}
.conForm h5 {
	font-size: 30px;
}
.conForm p {
	text-align: center;
	margin: 7%;
}
.conForm input {
	color: #797979;
	padding: 15px 30px;
	border: none;
	margin-right: 3%;
	margin-bottom: 30px;
	outline: none;
	font-style: normal;
	border-bottom: #e0e0e0 1px solid;
	font-size: 15px;
}
.conForm input.noMarr {
	margin-right: 0;
}
.conForm textarea {
	color: #797979;
	padding: 15px 30px;
	margin-bottom: 18px;
	outline: none;
	height: 150px;
	font-style: normal;
	resize: none;
	font-size: 15px;
	border: none;
	border-bottom: #e0e0e0 1px solid;
}
.conForm .submitBnt {
	background: var(--primary-color);
	color: #fff;
	margin-top: 30px;
padding:15px 30px 15px 30px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 5px;
	border: 0;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	display: inline-block;
	text-transform: uppercase;
}
.conForm .submitBnt:hover {
	background: #3d3d3d;
	color: #fff;
}
#success_page{
	color: #00bdbd;
	font-weight: 500;
}
.error_message{
	color: #ff675f;
	padding-bottom: 15px;
	font-weight: 500;
}
#success_page h3{
	font-size:17px;
	color:#5ed07b;
	font-weight: 700;
}

/* ------------------------------------------------------------------------------
	 Footer
-------------------------------------------------------------------------------*/
.footer {
	text-align: left;
}
.footer-top {
	background-color: #ffffff;
	padding-top: 30px;
}
.footer-bottom {
	background-color: #ffffff;
	padding: 20px 0;
}
.footer .footer-col {
	/*margin-bottom: 80px;*/
}
.footer h5 {
	color: #000000;
}
.footer h5 {
	margin-bottom: 20px;
}
.footer p {
	color: rgb(0, 0, 0);
}
.footer a {
	color: rgb(0, 0, 0);
}
.footer a:hover {
	color: var(--primary-color);
}
.footer .footer-share {
	margin-top: 0;
}
.footer .footer-share li {
	display: inline-block;
	float: none;
}
.footer .footer-share a {
	border: none;
	font-size: 21px;
	color: rgba(255, 255, 255, 0.25);
}
.footer .fa-heart {
	color: var(--primary-color);
	font-size: 11px;
	margin: 0 2px;
}




@font-face {
  font-family: 'Pe-icon-7-stroke';
  src: url('../../architectui/assets/fonts/Pe-icon-7-stroke.eot');
  src: url('../../architectui/assets/fonts/Pe-icon-7-stroke.eot?#iefixd7yf1v') format("embedded-opentype"), url('../../architectui/assets/fonts/Pe-icon-7-stroke.woff') format("woff"), url('../../architectui/assets/fonts/Pe-icon-7-stroke.ttf') format("truetype"), url('../../architectui/assets/fonts/Pe-icon-7-stroke.svg#Pe-icon-7-stroke') format("svg");
  font-weight: normal;
  font-style: normal
}

[class^="pe-7s-"], [class*=" pe-7s-"] {
  display: inline-block;
  font-family: 'Pe-icon-7-stroke';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

*  Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome
*  License - http://fontawesome.io/license (CSS: MIT License)
*/.pe-lg{font-size:1.1704rem;line-height:0.75em;vertical-align:-15%}.pe-2x{font-size:1.76rem}.pe-3x{font-size:2.64rem}.pe-4x{font-size:3.52rem}.pe-5x{font-size:4.4rem}.pe-fw{width:1.2857142857142858em;text-align:center}.pe-ul{padding-left:0;margin-left:2.142857142857143em;list-style-type:none}.pe-ul>li{position:relative}.pe-li{position:absolute;left:-2.142857142857143em;width:2.142857142857143em;top:0.14285714285714285em;text-align:center}.pe-li.pe-lg{left:-1.8571428571428572em}.pe-border{padding:.2em .25em .15em;border:solid 0.08em #eeeeee;border-radius:.1em}.pull-right{float:right}.pe.pull-left{float:left;margin-right:.3em;margin-left:.3em}.pe-spin{animation:spin 2s infinite linear}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(359deg)}}.pe-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);transform:rotate(90deg)}.pe-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);transform:rotate(180deg)}.pe-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);transform:rotate(270deg)}.pe-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);transform:scale(-1, 1)}.pe-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);transform:scale(1, -1)}.pe-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.pe-stack-1x,.pe-stack-2x{position:absolute;left:0;width:100%;text-align:center}.pe-stack-1x{line-height:inherit}.pe-stack-2x{font-size:2em}.pe-inverse{color:#ffffff}.pe-va{vertical-align:middle}.pe-border{border:solid 0.08em #ab9a9a
																																																																																																																																																																																																																																																																																																																																																																																																																		   }  .pe-7s-album:before{content:""}  .pe-7s-arc:before{content:""}  .pe-7s-back-2:before{content:""}  .pe-7s-bandaid:before{content:""}  .pe-7s-car:before{content:""}  .pe-7s-diamond:before{content:""}  .pe-7s-door-lock:before{content:""}  .pe-7s-eyedropper:before{content:""}  .pe-7s-female:before{content:""}  .pe-7s-gym:before{content:""}  .pe-7s-hammer:before{content:""}  .pe-7s-headphones:before{content:""}  .pe-7s-helm:before{content:""}  .pe-7s-hourglass:before{content:""}  .pe-7s-leaf:before{content:""}  .pe-7s-magic-wand:before{content:""}  .pe-7s-male:before{content:""}  .pe-7s-map-2:before{content:""}  .pe-7s-next-2:before{content:""}  .pe-7s-paint-bucket:before{content:""}  .pe-7s-pendrive:before{content:""}  .pe-7s-photo:before{content:""}  .pe-7s-piggy:before{content:""}  .pe-7s-plugin:before{content:""}  .pe-7s-refresh-2:before{content:""}  .pe-7s-rocket:before{content:""}  .pe-7s-settings:before{content:""}  .pe-7s-shield:before{content:""}  .pe-7s-smile:before{content:""}  .pe-7s-usb:before{content:""}  .pe-7s-vector:before{content:""}  .pe-7s-wine:before{content:""}  .pe-7s-cloud-upload:before{content:""}  .pe-7s-cash:before{content:""}  .pe-7s-close:before{content:""}  .pe-7s-bluetooth:before{content:""}  .pe-7s-cloud-download:before{content:""}  .pe-7s-way:before{content:""}  .pe-7s-close-circle:before{content:""}  .pe-7s-id:before{content:""}  .pe-7s-angle-up:before{content:""}  .pe-7s-wristwatch:before{content:""}  .pe-7s-angle-up-circle:before{content:""}  .pe-7s-world:before{content:""}  .pe-7s-angle-right:before{content:""}  .pe-7s-volume:before{content:""}  .pe-7s-angle-right-circle:before{content:""}  .pe-7s-users:before{content:""}  .pe-7s-angle-left:before{content:""}  .pe-7s-user-female:before{content:""}  .pe-7s-angle-left-circle:before{content:""}  .pe-7s-up-arrow:before{content:""}  .pe-7s-angle-down:before{content:""}  .pe-7s-switch:before{content:""}  .pe-7s-angle-down-circle:before{content:""}  .pe-7s-scissors:before{content:""}  .pe-7s-wallet:before{content:""}  .pe-7s-safe:before{content:""}  .pe-7s-volume2:before{content:""}  .pe-7s-volume1:before{content:""}  .pe-7s-voicemail:before{content:""}  .pe-7s-video:before{content:""}  .pe-7s-user:before{content:""}  .pe-7s-upload:before{content:""}  .pe-7s-unlock:before{content:""}  .pe-7s-umbrella:before{content:""}  .pe-7s-trash:before{content:""}  .pe-7s-tools:before{content:""}  .pe-7s-timer:before{content:""}  .pe-7s-ticket:before{content:""}  .pe-7s-target:before{content:""}  .pe-7s-sun:before{content:""}  .pe-7s-study:before{content:""}  .pe-7s-stopwatch:before{content:""}  .pe-7s-star:before{content:""}  .pe-7s-speaker:before{content:""}  .pe-7s-signal:before{content:""}  .pe-7s-shuffle:before{content:""}  .pe-7s-shopbag:before{content:""}  .pe-7s-share:before{content:""}  .pe-7s-server:before{content:""}  .pe-7s-search:before{content:""}  .pe-7s-film:before{content:""}  .pe-7s-science:before{content:""}  .pe-7s-disk:before{content:""}  .pe-7s-ribbon:before{content:""}  .pe-7s-repeat:before{content:""}  .pe-7s-refresh:before{content:""}  .pe-7s-add-user:before{content:""}  .pe-7s-refresh-cloud:before{content:""}  .pe-7s-paperclip:before{content:""}  .pe-7s-radio:before{content:""}  .pe-7s-note2:before{content:""}  .pe-7s-print:before{content:""}  .pe-7s-network:before{content:""}  .pe-7s-prev:before{content:""}  .pe-7s-mute:before{content:""}  .pe-7s-power:before{content:""}  .pe-7s-medal:before{content:""}  .pe-7s-portfolio:before{content:""}  .pe-7s-like2:before{content:""}  .pe-7s-plus:before{content:""}  .pe-7s-left-arrow:before{content:""}  .pe-7s-play:before{content:""}  .pe-7s-key:before{content:""}  .pe-7s-plane:before{content:""}  .pe-7s-joy:before{content:""}  .pe-7s-photo-gallery:before{content:""}  .pe-7s-pin:before{content:""}  .pe-7s-phone:before{content:""}  .pe-7s-plug:before{content:""}  .pe-7s-pen:before{content:""}  .pe-7s-right-arrow:before{content:""}  .pe-7s-paper-plane:before{content:""}  .pe-7s-delete-user:before{content:""}  .pe-7s-paint:before{content:""}  .pe-7s-bottom-arrow:before{content:""}  .pe-7s-notebook:before{content:""}  .pe-7s-note:before{content:""}  .pe-7s-next:before{content:""}  .pe-7s-news-paper:before{content:""}  .pe-7s-musiclist:before{content:""}  .pe-7s-music:before{content:""}  .pe-7s-mouse:before{content:""}  .pe-7s-more:before{content:""}  .pe-7s-moon:before{content:""}  .pe-7s-monitor:before{content:""}  .pe-7s-micro:before{content:""}  .pe-7s-menu:before{content:""}  .pe-7s-map:before{content:""}  .pe-7s-map-marker:before{content:""}  .pe-7s-mail:before{content:""}  .pe-7s-mail-open:before{content:""}  .pe-7s-mail-open-file:before{content:""}  .pe-7s-magnet:before{content:""}  .pe-7s-loop:before{content:""}  .pe-7s-look:before{content:""}  .pe-7s-lock:before{content:""}  .pe-7s-lintern:before{content:""}  .pe-7s-link:before{content:""}  .pe-7s-like:before{content:""}  .pe-7s-light:before{content:""}  .pe-7s-less:before{content:""}  .pe-7s-keypad:before{content:""}  .pe-7s-junk:before{content:""}  .pe-7s-info:before{content:""}  .pe-7s-home:before{content:""}  .pe-7s-help2:before{content:""}  .pe-7s-help1:before{content:""}  .pe-7s-graph3:before{content:""}  .pe-7s-graph2:before{content:""}  .pe-7s-graph1:before{content:""}  .pe-7s-graph:before{content:""}  .pe-7s-global:before{content:""}  .pe-7s-gleam:before{content:""}  .pe-7s-glasses:before{content:""}  .pe-7s-gift:before{content:""}  .pe-7s-folder:before{content:""}  .pe-7s-flag:before{content:""}  .pe-7s-filter:before{content:""}  .pe-7s-file:before{content:""}  .pe-7s-expand1:before{content:""}  .pe-7s-exapnd2:before{content:""}  .pe-7s-edit:before{content:""}  .pe-7s-drop:before{content:""}  .pe-7s-drawer:before{content:""}  .pe-7s-download:before{content:""}  .pe-7s-display2:before{content:""}  .pe-7s-display1:before{content:""}  .pe-7s-diskette:before{content:""}  .pe-7s-date:before{content:""}  .pe-7s-cup:before{content:""}  .pe-7s-culture:before{content:""}  .pe-7s-crop:before{content:""}  .pe-7s-credit:before{content:""}  .pe-7s-copy-file:before{content:""}  .pe-7s-config:before{content:""}  .pe-7s-compass:before{content:""}  .pe-7s-comment:before{content:""}  .pe-7s-coffee:before{content:""}  .pe-7s-cloud:before{content:""}  .pe-7s-clock:before{content:""}  .pe-7s-check:before{content:""}  .pe-7s-chat:before{content:""}  .pe-7s-cart:before{content:""}  .pe-7s-camera:before{content:""}  .pe-7s-call:before{content:""}  .pe-7s-calculator:before{content:""}  .pe-7s-browser:before{content:""}  .pe-7s-box2:before{content:""}  .pe-7s-box1:before{content:""}  .pe-7s-bookmarks:before{content:""}  .pe-7s-bicycle:before{content:""}  .pe-7s-bell:before{content:""}  .pe-7s-battery:before{content:""}  .pe-7s-ball:before{content:""}  .pe-7s-back:before{content:""}  .pe-7s-attention:before{content:""}  .pe-7s-anchor:before{content:""}  .pe-7s-albums:before{content:""}  .pe-7s-alarm:before{content:""}  .pe-7s-airplay:before{content:""}/*!
