/*
 * easy-autocomplete
 * jQuery plugin for autocompletion
 * 
 * @author Łukasz Pawełczak (http://github.com/pawelczak)
 * @version 1.3.5
 * Copyright  License: 
 */

.easy-autocomplete {
  position: relative;
  width: 85%;
}
.easy-autocomplete input {
}
.easy-autocomplete input:hover, .easy-autocomplete input:focus {
  box-shadow: none;
}
.easy-autocomplete a {
  display: block;
}
.easy-autocomplete.eac-blue-light input:hover, .easy-autocomplete.eac-blue-light input:focus {
  border-color: #66afe9;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
}
.easy-autocomplete.eac-blue-light ul {
  border-color: #66afe9;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
}
.easy-autocomplete.eac-blue-light ul li, .easy-autocomplete.eac-blue-light ul .eac-category {
  border-color: #66afe9;
}
.easy-autocomplete.eac-blue-light ul li.selected, .easy-autocomplete.eac-blue-light ul .eac-category.selected {
  background-color: #ecf5fc;
}
.easy-autocomplete.eac-green-light input:hover, .easy-autocomplete.eac-green-light input:focus {
  border-color: #41DB00;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(146, 237, 107, 0.6);
}
.easy-autocomplete.eac-green-light ul {
  border-color: #41DB00;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(146, 237, 107, 0.6);
}
.easy-autocomplete.eac-green-light ul li, .easy-autocomplete.eac-green-light ul .eac-category {
  border-color: #41DB00;
}
.easy-autocomplete.eac-green-light ul li.selected, .easy-autocomplete.eac-green-light ul .eac-category.selected {
  background-color: #9eff75;
}
.easy-autocomplete.eac-red-light input:hover, .easy-autocomplete.eac-red-light input:focus {
  border-color: #ff5b5b;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255, 90, 90, 0.6);
}
.easy-autocomplete.eac-red-light ul {
  border-color: #ff5b5b;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255, 90, 90, 0.6);
}
.easy-autocomplete.eac-red-light ul li, .easy-autocomplete.eac-red-light ul .eac-category {
  border-color: #ff5b5b;
}
.easy-autocomplete.eac-red-light ul li.selected, .easy-autocomplete.eac-red-light ul .eac-category.selected {
  background-color: #ff8e8e;
}
.easy-autocomplete.eac-yellow-light input:hover, .easy-autocomplete.eac-yellow-light input:focus {
  border-color: #ffdb00;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255, 231, 84, 0.6);
}
.easy-autocomplete.eac-yellow-light ul {
  border-color: #ffdb00;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255, 231, 84, 0.6);
}
.easy-autocomplete.eac-yellow-light ul li, .easy-autocomplete.eac-yellow-light ul .eac-category {
  border-color: #ffdb00;
}
.easy-autocomplete.eac-yellow-light ul li.selected, .easy-autocomplete.eac-yellow-light ul .eac-category.selected {
  background-color: #ffe233;
}
.easy-autocomplete.eac-dark-light input:hover, .easy-autocomplete.eac-dark-light input:focus {
  border-color: #333;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(55, 55, 55, 0.6);
}
.easy-autocomplete.eac-dark-light ul {
  border-color: #333;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(55, 55, 55, 0.6);
}
.easy-autocomplete.eac-dark-light ul li, .easy-autocomplete.eac-dark-light ul .eac-category {
  border-color: #333;
}
.easy-autocomplete.eac-dark-light ul li.selected, .easy-autocomplete.eac-dark-light ul .eac-category.selected {
  background-color: #4d4d4d;
  color: #fff;
}
.easy-autocomplete.eac-dark {
  color: #fff;
}
.easy-autocomplete.eac-dark input {
  background-color: #404040;
  border-radius: 4px;
  box-shadow: 0;
  color: #f6f6f6;
}
.easy-autocomplete.eac-dark input:hover, .easy-autocomplete.eac-dark input:focus {
  border-color: #333;
  box-shadow: 0;
}
.easy-autocomplete.eac-dark ul {
  border-color: #333;
}
.easy-autocomplete.eac-dark ul li, .easy-autocomplete.eac-dark ul .eac-category {
  background-color: #404040;
  border-color: #333;
}
.easy-autocomplete.eac-dark ul li.selected, .easy-autocomplete.eac-dark ul .eac-category.selected {
  background-color: #737373;
  color: #f6f6f6;
}
.easy-autocomplete.eac-dark-glass {
  color: #fff;
}
.easy-autocomplete.eac-dark-glass input {
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 4px;
  box-shadow: 0;
  color: #f6f6f6;
}
.easy-autocomplete.eac-dark-glass input:hover, .easy-autocomplete.eac-dark-glass input:focus {
  border-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0;
}
.easy-autocomplete.eac-dark-glass ul {
  border-color: rgba(0, 0, 0, 0.8);
}
.easy-autocomplete.eac-dark-glass ul li, .easy-autocomplete.eac-dark-glass ul .eac-category {
  background-color: rgba(0, 0, 0, 0.8);
  border-color: rgba(0, 0, 0, 0.8);
}
.easy-autocomplete.eac-dark-glass ul li.selected, .easy-autocomplete.eac-dark-glass ul .eac-category.selected {
  background-color: rgba(64, 64, 64, 0.8);
  color: #f6f6f6;
}
.easy-autocomplete.eac-dark-glass ul li:last-child, .easy-autocomplete.eac-dark-glass ul .eac-category:last-child {
  border-radius: 0 0 4px 4px;
}
.easy-autocomplete.eac-blue {
  color: #fff;
}
.easy-autocomplete.eac-blue input {
  background-color: #6d9ed1;
  border-radius: 4px;
  box-shadow: 0;
  color: #f6f6f6;
}
.easy-autocomplete.eac-blue input::-webkit-input-placeholder {
  color: #f6f6f6;
}
.easy-autocomplete.eac-blue input:-moz-placeholder {
  color: #f6f6f6;
}
.easy-autocomplete.eac-blue input::-moz-placeholder {
  color: #f6f6f6;
}
.easy-autocomplete.eac-blue input:-ms-input-placeholder {
  color: #f6f6f6;
}
.easy-autocomplete.eac-blue input:hover, .easy-autocomplete.eac-blue input:focus {
  border-color: #5A91CB;
  box-shadow: 0;
}
.easy-autocomplete.eac-blue ul {
  border-color: #5A91CB;
}
.easy-autocomplete.eac-blue ul li, .easy-autocomplete.eac-blue ul .eac-category {
  background-color: #6d9ed1;
  border-color: #5A91CB;
}
.easy-autocomplete.eac-blue ul li.selected, .easy-autocomplete.eac-blue ul .eac-category.selected {
  background-color: #94b8dd;
  color: #f6f6f6;
}
.easy-autocomplete.eac-yellow {
  color: #333;
}
.easy-autocomplete.eac-yellow input {
  background-color: #ffdb7e;
  border-color: #333;
  border-radius: 4px;
  box-shadow: 0;
  color: #333;
}
.easy-autocomplete.eac-yellow input:hover, .easy-autocomplete.eac-yellow input:focus {
  border-color: #333;
  box-shadow: 0;
}
.easy-autocomplete.eac-yellow ul {
  border-color: #333;
}
.easy-autocomplete.eac-yellow ul li, .easy-autocomplete.eac-yellow ul .eac-category {
  background-color: #ffdb7e;
  border-color: #333;
}
.easy-autocomplete.eac-yellow ul li.selected, .easy-autocomplete.eac-yellow ul .eac-category.selected {
  background-color: #ffe9b1;
  color: #333;
}
.easy-autocomplete.eac-purple {
  color: #333;
}
.easy-autocomplete.eac-purple input {
  background-color: #d6d1e7;
  border-color: #b8afd5;
  box-shadow: 0;
  color: #333;
}
.easy-autocomplete.eac-purple input:hover, .easy-autocomplete.eac-purple input:focus {
  border-color: #333;
  box-shadow: 0;
}
.easy-autocomplete.eac-purple ul {
  border-color: #333;
}
.easy-autocomplete.eac-purple ul li, .easy-autocomplete.eac-purple ul .eac-category {
  background-color: #d6d1e7;
  border-color: #333;
}
.easy-autocomplete.eac-purple ul li.selected, .easy-autocomplete.eac-purple ul .eac-category.selected {
  background-color: #ebe8f3;
  color: #333;
}
.easy-autocomplete.eac-bootstrap input {
  border-color: #ccc;
  border-radius: 4px;
  border-style: solid;
  border-width: 1px;
  color: #555;
  padding: 6px 12px;
}

.easy-autocomplete-container {
  top: 40px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}
.easy-autocomplete-container ul {
  background: none repeat scroll 0 0 #ffffff;
  border-top: 1px dotted #ccc;
  display: none;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  position: relative;
  top: -1px;
}
.easy-autocomplete-container ul li, .easy-autocomplete-container ul .eac-category {
  background: inherit;
  border-color: #fff;
  border-image: none;
  border-style: solid;
  border-width: 0 1px;
  display: block;
  font-size: 14px;
  font-weight: normal;
  padding: 4px 12px;
  width: 100%;
}
.easy-autocomplete-container ul li:last-child {
  border-radius: 0 0 2px 2px;
  border-width: 0 1px 1px;
}
.easy-autocomplete-container ul li.selected {
  background: none repeat scroll 0 0 #ebebeb;
  cursor: pointer;
}
.easy-autocomplete-container ul li.selected div {
  font-weight: normal;
}
.easy-autocomplete-container ul li div {
  display: block;
  font-weight: normal;
  word-break: break-all;
}
.easy-autocomplete-container ul li b {
  font-weight: bold;
}
.easy-autocomplete-container ul .eac-category {
  font-color: #aaa;
  font-style: italic;
}

.eac-description .eac-item span {
  color: #aaa;
  font-style: italic;
  font-size: 0.9em;
}

.eac-icon-left .eac-item img {
  margin-right: 4px;
  max-height: 30px;
}

.eac-icon-right .eac-item {
  margin-top: 8px;
  min-height: 24px;
  position: relative;
}
.eac-icon-right .eac-item img {
  margin-left: 4px;
  max-height: 30px;
  position: absolute;
  right: -4px;
  top: -8px;
}

/*# sourceMappingURL=easy-autocomplete.css.map */

@charset "utf-8";
/*--[ RESET ]--*/
	*{margin:0px; padding:0px; border:none; outline:none; list-style:none; text-decoration:none; 
		font-family: 'Open Sans', sans-serif;
		box-sizing:border-box; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; -ms-box-sizing:border-box; -o-box-sizing:border-box;
	}
/*--[ ENJEKTE ]--*/
	.e-fl div, .e-fl a, .e-fl span, .e-fl samp, .e-fl img, .e-fl ul, .e-fl li, .e-fl h1, .e-fl h2, .e-fl h3, .e-fl h4, .e-fl section, .e-fl form, .e-fl nav{float:left;}
	.e-fln div, .e-fln a, .e-fln span, .e-fln samp, .e-fln img, .e-fln ul, .e-fln li, .e-fln h1, .e-fln h2, .e-fln h3, .e-fln h4, .e-fln section, .e-fln form, .e-fln nav{float:none;}
	.e-center{width:1134px; padding:0px 15px; margin:0px auto; float:none !important;}
	.e-col{margin:0px -15px; float:none !important;}
	.e-col-1, .e-col-2, .e-col-3, .e-col-4, .e-col-5, .e-col-6, .e-col-7, .e-col-8, .e-col-9, .e-col-10, .e-col-11, .e-col-12{min-height:1px; padding:0px 15px;}
	.e-col-1{width:8.3333%;} .e-col-2{width:16.6666%;} .e-col-3{width:25%;} .e-col-4{width:33.3333%;} .e-col-5{width:41.6666%;} .e-col-6{width:50%;} .e-col-7{width:58.3333%;} .e-col-8{width:66.6666%;} .e-col-9{width:75%;} .e-col-10{width:83.3333%;} .e-col-11{width:91.6666%;} .e-col-12{width:100%;} 
/*--[ GENERAL ]--*/
	body{background:#FFF;}
	a{transition:all 0.5s ease;}
	.section-main{float:left; width:100%;}
	.content a{color:#006FCB; font-size:14px;}
	.content a:hover{color:#006FCB;}
	.content ul{width:100%;}
	.content ul li{width:100%; margin-bottom:5px; font-size:14px; color:#5E5E5E; line-height:22px;}
	.content p{width:100%; margin-bottom:20px; font-size:14px; color:#5E5E5E; line-height:22px;}
/*--[ HEADER ]--*/
	.header-main{float:left; width:100%;}
	/*--[ HEADER : Top ]--*/
		.header-top{float:left; width:100%; background:#FFF;}
		.header-top .language a{width:45px; height:45px; line-height:45px; text-align:center; font-size:15px; color:#B4B4B4;}
		.header-top .language a.active{background:#F5F5F5; color:#777777;}
		.header-top .language a:hover{color:#006FCB;}
		.header-top .sociallink{float:right !important;}
		.header-top .sociallink a{color:#C5C5C5; font-size:18px; line-height:45px; width:45px; text-align:center;}
		.header-top .sociallink a:hover{color:#006FCB;}
	/*--[ HEADER : Middle ]--*/
		.header-middle{float:left; width:100%; background:#F5F5F5; padding:38px 0px 43px;}
		.header-middle .logo a{width:158px; height:48px; background:url(../design/sprite.png) no-repeat; background-position:0px 0px;}
		.header-middle .logo span{font-size:16px; color:#7A7A7A; font-style:italic; padding:25px 0px 0px 40px; font-weight:300;}
		.header-middle .infolink{float:right !important;}
		.header-middle .infolink .contact{width:155px; padding:4px 0px 4px 35px; position:relative;}
		.header-middle .infolink .contact i{position:absolute; top:4px; left:0px; width:23px; height:40px; background:url(../design/sprite.png) no-repeat; background-position:-158px 0px;}
		.header-middle .infolink .contact span{width:100%; color:#595959; font-size:12px; line-height:12px; margin:5px 0px 2px;}
		.header-middle .infolink .contact samp{transition:all 0.5s ease; width:100%; color:#595959; font-weight:600; letter-spacing:-0.5px; font-size:16px; line-height:16px; margin-bottom:5px;}
		.header-middle .infolink .contact:hover samp{color:#006FCB;}
		.header-middle .infolink .onlineshop{width:160px; padding:4px 0px 4px 55px; position:relative; display:inline; margin-left:50px;}
		.header-middle .infolink .onlineshop i{position:absolute; top:8px; left:0px; width:43px; height:32px; background:url(../design/sprite.png) no-repeat; background-position:-181px 0px;}
		.header-middle .infolink .onlineshop span{width:100%; color:#595959; font-size:12px; line-height:12px; margin:5px 0px 2px;}
		.header-middle .infolink .onlineshop samp{transition:all 0.5s ease; width:100%; color:#595959; font-weight:600; letter-spacing:-0.5px; font-size:16px; line-height:16px; margin-bottom:5px;}
		.header-middle .infolink .onlineshop:hover samp{color:#006FCB;}
		.header-middle .infolink .business-partner{width:160px; padding:4px 0px 4px 62px; position:relative; display:inline; margin-left:50px;}
		.header-middle .infolink .business-partner i{position:absolute; top:8px; left:0px; width:58px; height:37px; background:url(../design/business_partner.png) no-repeat; background-size: contain;}
		.header-middle .infolink .business-partner span{width:100%; color:#595959; font-size:12px; line-height:12px; margin:5px 0px 2px;}
		.header-middle .infolink .business-partner samp{transition:all 0.5s ease; width:100%; color:#595959; font-weight:600; letter-spacing:-0.5px; font-size:16px; line-height:16px; margin-bottom:5px;}
		.header-middle .infolink .business-partner:hover samp{color:#006FCB;}
	/*--[ HEADER : Bottom ]--*/
		.header-bottom{float:left; width:100%; background:#006FCB; padding:12px 0px;}
		.mobilmenu{width:40px; height:30px; position:relative; display:none; margin-top:4px;}
		.mobilmenu span{display:block; position:absolute; height:4px; width:50%; background:#FFF; opacity:0.9; -webkit-transform:rotate(0deg); -moz-transform:rotate(0deg); -o-transform:rotate(0deg); transform:rotate(0deg); -webkit-transition:.25s ease-in-out; -moz-transition:.25s ease-in-out; -o-transition:.25s ease-in-out; transition:.25s ease-in-out;}
		.mobilmenu span:nth-child(even) {left:50%; border-radius:0 2px 2px 0;}
		.mobilmenu span:nth-child(odd) {left:0px; border-radius:2px 0 0 2px;}
		.mobilmenu span:nth-child(1), .mobilmenu span:nth-child(2) {top:0px;}
		.mobilmenu span:nth-child(3), .mobilmenu span:nth-child(4) {top:11px;}
		.mobilmenu span:nth-child(5), .mobilmenu span:nth-child(6) {top:22px;}
		.mobilmenu.open span:nth-child(1),.mobilmenu.open span:nth-child(6) {-webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg);}
		.mobilmenu.open span:nth-child(2),.mobilmenu.open span:nth-child(5) {-webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg);}
		.mobilmenu.open span:nth-child(1){left:4px; top:5px;}
		.mobilmenu.open span:nth-child(2){left:calc(50% - 4px); top:5px;}
		.mobilmenu.open span:nth-child(3){left:-50%; opacity:0;}
		.mobilmenu.open span:nth-child(4){left:100%; opacity:0;}
		.mobilmenu.open span:nth-child(5){left:4px; top:18px;}
		.mobilmenu.open span:nth-child(6){left:calc(50% - 4px); top:18px;}
		.header-bottom .mainmenu{width:75%;}
		.header-bottom .mainmenu ul li{display:inline; margin-right:35px;}
		.header-bottom .mainmenu ul li a{font-size:12px; line-height:44px; color:#FFF;}
		.header-bottom .mainmenu ul li a:hover{color:#ED1C24;}
		.header-bottom .mainmenu ul li:first-child a{font-size:12px; line-height:34px; color:#FFF;}
		.header-bottom .mainmenu ul li a i{transition:all 0.5s ease; font-size:30px; margin-top:5px;}
		.header-bottom .mainmenu ul li a i:hover{color:#ED1C24;}
		.header-bottom .search{float:right; width:246px; height:44px; background:#188AE7; padding:5px; border-radius:3px; -webkit-border-radius:3px; -moz-border-radius:3px;}
		.header-bottom .search form{width:100%;}
		.header-bottom .search form .text{transition:all 0.5s ease; float:left; width:100%; padding:0px 5px; line-height:34px; color:#FFF; font-size:12px; background:#188AE7; border-radius:3px; -webkit-border-radius:3px; -moz-border-radius:3px;}
		.header-bottom .search form .text:focus{background:#1996FB;}
		.header-bottom .search form .button{transition:all 0.5s ease; float:left; width:15%; background:none; cursor:pointer;}
		.header-bottom .search form .button:hover{color:#ED1C24;}
		.header-bottom .search form .button i{color:#FFF; line-height:34px; font-size:18px;}
/*--[ FOOTER ]--*/
	.footer-main{float:left; width:100%; background:#1B1F21; padding:60px 0px 80px;}
	/*--[ FOOTER : Top ]--*/
		.footer-top{width:100%; margin-bottom:40px;}
		.footer-top .logo{width:280px;}
		.footer-top .logo a{width:139px; height:43px; background:url(../design/sprite.png) no-repeat; background-position:0px -48px;}
		.footer-top .logo .slogan{width:100%; font-size:16px; color:#7A7A7A; font-style:italic; font-weight:400; margin:16px 0px 10px;}
		.footer-top .logo .info{width:100%; font-size:12px; color:#7A7A7A; font-weight:400;}
		.footer-top .logo .info i{font-size:16px; color:#E38F17; display:inline; margin-right:5px;}
		.footer-top .sociallink{float:right !important;}
		.footer-top .sociallink a{transition:all 0.5s ease; width:40px; height:40px; background:#1F2327; font-size:20px; line-height:40px; text-align:center; color:#FFF; display:inline; margin-left:1px; border-radius:3px; -webkit-border-radius:3px; -moz-border-radius:3px;}
		.footer-top .sociallink a:hover{background:#272D32;}
		.footer-top .infolink{float:right !important;}
		.footer-top .infolink .contact{width:160px; padding-left:40px; position:relative; display:inline; margin-right:50px;}
		.footer-top .infolink .contact i{position:absolute; top:0px; left:0px; width:30px; height:52px; background:url(../design/sprite.png) no-repeat; background-position:-158px -40px;}
		.footer-top .infolink .contact span{width:100%; color:#FFF; font-size:12px; line-height:12px; margin:10px 0px 4px;}
		.footer-top .infolink .contact samp{transition:all 0.5s ease; width:100%; color:#7A7A7A; font-size:16px; line-height:16px; margin-bottom:10px;}
		.footer-top .infolink .contact:hover samp{color:#ED1C24;}
		.footer-top .infolink .onlineshop{width:175px; padding-left:73px; position:relative; display:inline; margin-right:50px;}
		.footer-top .infolink .onlineshop i{position:absolute; top:3px; left:0px; width:63px; height:46px; background:url(../design/sprite.png) no-repeat; background-position:-188px -32px;}
		.footer-top .infolink .onlineshop span{width:100%; color:#FFF; font-size:12px; line-height:12px; margin:10px 0px 4px;}
		.footer-top .infolink .onlineshop samp{transition:all 0.5s ease; width:100%; color:#7A7A7A; font-size:16px; line-height:16px; margin-bottom:10px;}
		.footer-top .infolink .onlineshop:hover samp{color:#ED1C24;}
	/*--[ FOOTER : Middle ]--*/
		.footer-middle{width:100%;}
		.footer-middle h6{width:100%; color:#CCC; font-size:17px; margin-bottom:10px; font-weight:300;}
		.footer-middle ul{width:100%; margin-bottom:30px;}
		.footer-middle ul li{width:100%; margin-bottom:4px;}
		.footer-middle ul li a{color:#7A7A7A; font-size:13px;}
		.footer-middle ul li a:hover{color:#ED1C24;}
		.bottommenu-1{width:200px;}
		.bottommenu-2{width:280px;}
		.bottommenu-3{width:220px;}
		.bottommenu-4{width:250px;}
		.bottommenu-5{width:154px;}
	/*--[ FOOTER : Bottom ]--*/
		.footer-bottom{width:100%;}
		.category-ebulten{width:80%;}
		.category-ebulten .category{width:100%; margin-bottom:30px;}
		.category-ebulten .category ul li a{color:#7A7A7A; font-size:13px; font-weight:400;}
		.category-ebulten .category ul span{color:#7A7A7A; font-size:13px; font-weight:400; padding:0px 5px;}
		.category-ebulten .ebulten{width:100%;}
		.category-ebulten .ebulten form{width:260px; line-height:50px;}
		.category-ebulten .ebulten form .text{transition:all 0.5s ease; float:left; width:210px; padding:0px 10px; line-height:50px; font-size:12px; background:#272D32; color:#8C8F92; border-radius:3px 0px 0px 3px; -webkit-border-radius:3px 0px 0px 3px; -moz-border-radius:3px 0px 0px 3px;}
		.category-ebulten .ebulten form .text:hover{background:#1D2125;}
		.category-ebulten .ebulten form .button{transition:all 0.5s ease; float:left; width:50px; height:50px; background:#1F2327; cursor:pointer; border-radius:0px 3px 3px 0px; -webkit-border-radius:0px 3px 3px 0px; -moz-border-radius:0px 3px 3px 0px;}
		.category-ebulten .ebulten form .button:hover{background:#ED1C24;}
		.category-ebulten .ebulten form .button i{width:50px; line-height:45px; text-align:center; color:#FFF; font-size:20px; margin-top:5px;}
		.footer-bottom address{float:right !important; width:190px; color:#7A7A7A; font-size:13px; font-weight:300; letter-spacing:1px; font-style:normal;}
		.footer-bottom address a{color:#7A7A7A;}
		.footer-bottom address a:hover{color:#ED1C24;}
		.footer-singature{width:100%; margin-top:80px; text-align:center; opacity:0.5;}
		.footer-singature span{float:none; color:#FFFFFF; font-size:13px; font-weight:300; letter-spacing:1px;}
		.footer-singature a{float:none; color:#FFFFFF; font-size:13px; font-weight:300; letter-spacing:1px;}
		.footer-singature a:hover{color:#ED1C24;}
/*--[ ONLİNE SHOP ]--*/
	.onlineshopear{position:fixed; right:0px; top:300px; width:185px; height:75px; z-index:1000;}
	.onlineshopear .icon{position:absolute; left:0px; top:0px; width:30px; height:30px; background:#D7131B; z-index:2;}
	.onlineshopear .icon i{float:left; width:100%; line-height:30px; text-align:center; color:#FFF; font-size:20px;}
	.onlineshopear .link{position:absolute; z-index:1; width:160px; height:75px; top:0px; left:25px; background:#ED1B23; border-radius:0px 0px 0px 65px; -webkit-border-radius:0px 0px 0px 65px; -moz-border-radius:0px 0px 0px 65px;}
	.onlineshopear .link:hover{background:#D7131B;}
	.onlineshopear .link i{float:left; width:46px; height:35px; margin:17px 10px 0px 25px; background:url(../design/sprite.png) no-repeat; background-position:-188px -78px; display:inline;}
	.onlineshopear .link span{float:left; width:65px; margin-top:20px; color:#FFF; font-size:14px;}
/*--[ SECTION : Slider ]--*/
	.slider-main{float:left; width:100%; margin-bottom:50px;}
	.slider-center{width:1170px; margin:0px auto; float:none !important;}
	.slider-main .slider{width:100%; overflow:hidden; max-height: 500px;}
	.slider-main .item{width:100%; position:relative;}
	.slider-main .item img{width:100%;}
	.slider-main .item .info{padding:20px 25px; width:320px; bottom:50px; right:65px; position:absolute; background:rgba(0,0,0,0.7);}
	.slider-main .item .info h1{color:#FFF; font-size:24px; font-weight:400; line-height:28px; margin-bottom:10px;}
	.slider-main .item .info p{float:left; color:#FFF; font-size:14px; opacity:0.8; font-weight:300;}
/*--[ SECTION : Blog - Duyuru - Firma ]--*/
	.news-main{float:left; width:100%;}
	.news-main .news-taba{width:100%; position:relative; overflow:hidden; margin-bottom:40px;}
	.news-main .news-taba ul{position:relative; left:50%;}
	.news-main .news-taba ul li{display:inline; margin:0px 25px; position:relative; right:50%;}
	.news-main .news-taba ul li a{color:#333333; font-weight:300; font-size:13px; border-bottom:solid 2px #FFF; padding:7px 0px;}
	.news-main .news-taba ul li a:hover{border-bottom:solid 2px #333; padding:7px 0px;}
	.news-main .news-taba ul li a.active{border-bottom:solid 2px #006FCB;}
	.news-main .news-tabcontent{width:100%;}
	.news-main .news-tabcontent .tabcontent{width:100%; display:none;}
	.news-main .news-tabcontent .tabcontent:first-child{display:inline;}
	/*--[ News Box ]--*/
		.news-main .news-box{width:100%; background:#F1F1F1; padding:8px 10px; position:relative; margin-bottom:30px;}
		.news-main .news-box .img{width:235px; position:absolute; left:10px; top:8px;}
		.news-main .news-box .img img{width:100%;}
		.news-main .news-box div{width:100%; min-height:235px; padding-left:255px; font-weight:300;}
		.news-main .news-box div span{width:100%; color:#656565; font-size:23px; margin:20px 0px;}
		.news-main .news-box div p{float:left; width:100%; color:#656565; font-size:13px; margin-bottom:20px;}
		.news-main .news-box div a{background:#A3A3A3; border-radius:20px; -webkit-border-radius:20px; -moz-border-radius:20px; color:#FFFFFF; font-size:14px; line-height:40px; padding:0px 20px;}
		.news-main .news-box div a:hover{background:#006FCB;}
		.news-main .news-box div a i{color:#FFF; font-size:14px; line-height:40px; padding-left:10px;}
/*--[ SECTION : Katalog Alanı ]--*/
	.catalog-main{float:left; width:100%; background:#006FCB; padding:50px 0px 60px;}
	.catalog-main .info{width:50%;}
	.catalog-main .info h2{width:100%; color:#FFF; font-weight:300; font-size:34px;}
	.catalog-main .info p{float:left; width:100%; font-weight:300; line-height:22px; font-size:14px; color:#FFF; margin:20px 0px; opacity:0.9}
	.catalog-main .info a{background:#FFF; border-radius:20px; -webkit-border-radius:20px; -moz-border-radius:20px; color:#006FCB; font-size:14px; line-height:40px; padding:0px 20px;}
	.catalog-main .info a:hover{background:#ED1C24; color:#FFF;}
	.catalog-main .list{width:25%;}
	.catalog-main .list li{width:100%; margin-top:20px;}
	.catalog-main .list li a{color:#FFF; font-size:15px; font-weight:300;}
	.catalog-main .list li a i{color:#FFF; font-size:20px; padding-right:25px;}
	.catalog-main .img{float:right !important; width:225px;}
/*--[ SECTION : Markalar ]--*/
	.brands-main{float:left; width:100%; padding:35px 0px;}
	.brands-main .item{width:100%; height:160px; padding:50px 0px; border:solid 2px #E9E9E9; background:#F5F5F5; text-align:center;}
	.brands-main .item img{float:none !important;}
/*--[ SECTION : Markalarımız ]--*/
	.product{float:left; width:100%;}
	.product .img{width:100%;}
	.product .info{width:100%; color:#006FCB; font-weight:300; font-size:14px; margin:5px 0px 20px; border-bottom:solid 1px #CECECE; padding-bottom:20px;}
	.product .desc{width:100%; color:#5E5E5E; font-weight:300; font-size:14px; margin-bottom:30px;}
	/*--[ Ürün Liste ]--*/
		.product-items{width:100%;}
		.product-items .item{width:100%; margin-bottom:30px;}
		.product-items .item div{transition:all 0.5s ease; width:100%; border:solid 1px #D5D5D5;}
		.product-items .item div img{width:100%;}
		.product-items .item span{transition:all 0.5s ease; width:100%; height:30px; overflow:hidden; color:#006FCB; font-size:13px; line-height:15px; margin-top:15px;}
		.product-items .item:hover div{border:solid 1px #ED1B23;}
		.product-items .item:hover span{color:#ED1B23;}
	/*--[ Sayfalama ]--*/
		.pages{width:100%; overflow:hidden; position:relative; margin-bottom:30px;}
		.pages ul{position:relative; left:50%;}
		.pages ul li{position:relative; right:50%;}
		.pages ul li a{float:left; width:40px; height:40px; color:#006FCB; font-weight:300; font-size:15px; line-height:40px; text-align:center;}
		.pages ul li a:hover{color:#FFF; background:#ED1B23;}
		.pages ul li a.active{background:#006FCB; color:#FFF;}
		.pages img, .dyk-content img, .post-content img, .product .desc img {max-width: 100%; height: auto;}
		.pages iframe {max-width: 100%;}
/*--[ SECTION : Marka Detay ]--*/
	.productdetail-main{float:left; width:100%; margin-bottom:40px;}
	.productdetail-title{width:100%; border-bottom:solid 1px #CECECE; padding-bottom:20px; margin:45px 0px 30px;}
	.productdetail-title h1{color:#006FCB; font-weight:300; font-size:27px; line-height:32px;}
	.productdetail-title img{float:right !important; height:60px;}
	.productdetail-left{width:100%;}
	.productdetail-left .bigimg{width:100%; border:solid 1px #CECECE; position:relative;}
	.productdetail-left .bigimg img{width:100%;}
	.productdetail-left .bigimg a{position:absolute; bottom:15px; right:15px;}
	.productdetail-left .bigimg a i{transition:all 0.5s ease; color:#CCCCCC; font-size:20px;}
	.productdetail-left .bigimg a:hover i{color:#ED1B23;}
	.productdetail-left .smallimg{width:100%; border-right:solid 1px #CECECE;}
	.productdetail-left .smallimg a{border-left:solid 1px #CECECE; border-bottom:solid 1px #CECECE; width:33.3333%;}
	.productdetail-left .smallimg a:hover{border-bottom:solid 1px #ED1B23;}
	.productdetail-left .smallimg a img{width:100%;}
	.productdetail-right{width:100%;}
	.productdetail-right .desc{width:100%; border:solid 1px #CECECE; padding:25px 25px 5px 25px;}
	.productdetail-right .desc h2{width:100%; font-weight:400; font-size:17px; color:#006FCB; margin-bottom:10px;}
	.productdetail-right .desc p{width:100%; margin-bottom:20px; font-size:14px; color:#5E5E5E; line-height:22px;}
	.productdetail-right .features{width:100%; border:solid 1px #CECECE; padding:25px 25px 5px 25px; margin-top:30px;}
	.productdetail-right .features h3{width:100%; font-weight:400; font-size:17px; color:#006FCB; margin-bottom:10px;}
	.productdetail-right .features p{width:100%; margin-bottom:20px; font-size:14px; color:#5E5E5E; line-height:22px;}
	.productdetail-right .features li{font-size:14px; color:#5E5E5E; line-height:22px;}
/*--[ SECTION : Bunları biliyor muydunuz? ]--*/
	.didyouknow-main{float:left; width:100%; background:#ED1C24; padding-top:50px;}
	.didyouknow-main .img{width:40%; padding-left:70px;}
	.didyouknow-main .info{width:40%; float:right; padding-top:20px;}
	.didyouknow-main .info h3{width:100%; width:100%; color:#FFF; font-weight:300; font-size:34px; margin-bottom:20px;}
	.didyouknow-main .info .item{width:100%; color:#FFF; font-size:16px; font-weight:300; margin-bottom:10px; opacity:0.9;}
	.didyouknow-main .info .item i{color:#FFF; font-size:25px; padding-right:20px;}
/*--[ SECTION : Bunları biliyor muydunuz? : SAYFA ]--*/
	.didyouknowpage-main{float:left; width:100%; background:#1B2838;}
	.didyouknowpage-ap{float:left; width:100%; background:url(../design/ap_new.png) no-repeat; background-size:cover;}
	.didyouknowpage{width:100%; padding:40px 0px 50px;}
	.didyouknowpage .img{width:100%; margin-bottom:30px;}
	.didyouknowpage .img img{width:100%;}
	.didyouknowpage .content{width:100%; padding:30px 30px 10px 30px; background:#131C27;}
	.didyouknowpage .content p{width:100%; color:#9EA6AC; font-size:14px; line-height:20px; margin-bottom:20px; font-weight:300;}
/*--[ SECTION : Üst Başlık Görsel Alanı ]--*/
	.banner-main{width:100%;}
	.banner-center{width:1170px; margin:0px auto; float:none !important;}
	.banner{position:relative;}
	.banner .image{position:relative; z-index:1;}
	.banner .image img{width:100%;}
	.banner .title{position:absolute; z-index:2; width:100%; height:100%; top:0px; left:0px;}
	.banner .title h1{position:absolute; bottom:20px; right:30px; color:#FFF; font-size:22px; font-weight:300; background-color: rgba(0,0,0,.7); padding: 5px;}
/*--[ SECTION : Sayfa Başlık ]--*/
	.pagetitle{width:100%; font-size:22px; font-weight:300; color:#5E5E5E; margin:17px 0px;}
	.pagetitle2{width:100%; font-size:22px; font-weight:300; color:#5E5E5E; margin:55px 0px 17px;}
/*--[ SECTION : Yan Menü ]--*/
	.left-menu{float:left; width:100%; margin-bottom:30px;}
	.left-menu ul{width:100%;}
	.left-menu ul li{width:100%; background:#F2F2F2; border-bottom:solid 2px #CECECE;}
	.left-menu ul li a{width:100%; padding:15px 0px 15px 27px; line-height:17px; color:#595959; font-size:13px;}
	.left-menu ul li a:hover{color:#ED1B23; background:#CECECE}
	.left-menu ul li a.active{border-left:solid 12px #ED1B23; padding-left:20px;}
	.left-menu ul li a.active_blue {border-left:solid 12px #006fcb; padding-left:20px;}
	.left-menu ul li.last{transition:all 0.5s ease; width:100%; height:33px; border-bottom:none;}
	.left-menu ul li.last a{width:100%; height:33px; padding:0px; background:#CECECE; }
	.left-menu ul li.last a:hover{background:#ED1B23;}
	.left-menu ul li.last a i{width:100%; line-height:33px; text-align:center; font-size:20px; color:#FFF; float:left; font-weight:bold;}
	.left-menu .opened {display: block;}
	.left-menu .closed {display: none;}
/*--[ SECTION : İçerik ]--*/
	.content-main{width:100%; margin-bottom:20px;}
	.content-main .title{width:100%; font-weight:300; font-size:22px; color:#5E5E5E; margin-bottom:15px;}
	.content-main .content{font-size:22px; font-weight:300; color:#5E5E5E;}
	.content-main .content p{width:100%; font-size:14px; color:#5E5E5E; font-weight:300; margin-bottom:20px; line-height:20px;}
/*--[ SECTION : Blog ]--*/
	.blog-main{float:left; width:100%; margin-bottom:20px;}
	.blog{width:100%; margin-bottom:30px;}
	.blog .title{width:100%; font-weight:300; font-size:22px; line-height:30px; color:#5E5E5E; margin:45px 0px 0px; padding-bottom:15px; border-bottom:solid 1px #D5D5D5;}
	.blog .title i{transition:all 0.5s ease; float:right !important; color:#5E5E5E; line-height:30px; font-size:20px;}
	.blog .item{margin-top:30px;}
	.blog .item a{width:100%; height:48px; padding:15px; font-size:14px; color:#5E5E5E; line-height:18px; background:#F0F0F0;}
	.blog .item a:hover{background:#006FCB; color:#FFF;}
	.blog .item i{transition:all 0.5s ease; float:right !important; color:#5E5E5E; line-height:18px; font-size:20px;}
	.blog .item a:hover i{color:#FFF;}
/*--[ SECTION : Blog Detay ]--*/
	.blogdetail-main{float:left; width:100%;}
	.blogdetail{width:100%;}
	.blogdetail .title{width:100%; margin:45px 0px 30px; padding-bottom:15px; border-bottom:solid 1px #D5D5D5;}
	.blogdetail .title h2{font-weight:300; font-size:22px; line-height:30px; color:#5E5E5E;}
	.blogdetail .title span{float:right !important; color:#5E5E5E; line-height:30px; font-size:14px; font-weight:300;}
	.blogdetail .content{width:100%;}
	.blogdetail .content p{width:100%; font-size:14px; color:#5E5E5E; font-weight:300; margin-bottom:20px; line-height:20px; text-align:justify;}
/*--[ SECTION : İletişim ]--*/
	.contact-main{width:100%; margin-bottom:20px;}
	.contact-main .info{width:100%; margin-bottom:30px;}
	.contact-main .info h3{width:100%; font-weight:300; font-size:22px; color:#5E5E5E; margin-bottom:20px;}
	.contact-main .info div{width:100%; margin-bottom:17px;}
	.contact-main .info div span{width:11%; font-size:14px; font-weight:600; color:#5E5E5E;}
	.contact-main .info div small{float:left; width:2%; font-size:14px; font-weight:600; color:#5E5E5E;}
	.contact-main .info div samp{width:83%; font-size:14px; font-weight:300; color:#5E5E5E;}
	.contact-main .shopimg{width:100%; margin-bottom:5px;}
	.contact-main .shopimg h4{width:100%; font-weight:300; font-size:22px; color:#5E5E5E; margin-bottom:20px;}
	.contact-main .shopimg img{display:inline; margin:0px 30px 30px 0px;}
	.contact-main .map{width:100%; height:360px; margin-bottom:20px;}
/*--[ SECTION : İletişim Formu ]--*/
	.contactform{float:left; width:100%; margin-bottom:20px;}
	.formdiv{width:100%; margin-bottom:20px; position:relative;}
	.formdiv label{float:left; width:100%; margin-bottom:15px; font-size:13px; font-weight:300; color:#595959;}
	.formdiv .text{transition:all 0.5s ease; width:100%; height:50px; font-size:12px; color:#333; padding:0px 10px; border:solid 1px #D5D5D5;}
	.formdiv .text:hover{background:#EEE;}
	.formdiv .file{transition:all 0.5s ease; width:100%; height:50px; font-size:12px; color:#333; padding:15px 10px; border:solid 1px #D5D5D5;}
	.formdiv .file:hover{background:#EEE;}
	.formdiv .textarea{transition:all 0.5s ease; width:100%; height:200px; font-size:12px; color:#333; padding:0px 10px; border:solid 1px #D5D5D5;}
	.formdiv .textarea:hover{background:#EEE;}
	.formdiv .button{transition:all 0.5s ease; height:40px; float:right !important; cursor:pointer; font-size:14px; font-weight:300; color:#FFF; padding:0px 20px; background:#006FCB; border-radius:20px; -webkit-border-radius:20px; -moz-border-radius:20px;}
	.formdiv .button:hover{background:#ED1B23;}
	.formdiv span{color:#F86B6B; font-size:14px; position:absolute; right:30px; bottom:0px; line-height:50px; font-weight:300;}
/*--[ SECTION : Satış Ağımız ]--*/
	.salesnetwork{width:100%; margin-bottom:20px;}
	.salesnetwork .map{width:100%; height:440px; margin-bottom:40px;}
	.salesnetwork .info{width:100%; margin-bottom:50px;}
	.salesnetwork .info h3{width:100%; font-weight:300; font-size:22px; color:#5E5E5E; margin-bottom:20px;}
	.salesnetwork .info div{width:100%; margin-bottom:17px;}
	.salesnetwork .info div span{width:11%; font-size:14px; font-weight:600; color:#5E5E5E;}
	.salesnetwork .info div small{float:left; width:2%; font-size:14px; font-weight:600; color:#5E5E5E;}
	.salesnetwork .info div samp{width:83%; font-size:14px; font-weight:300; color:#5E5E5E;}

/*--[ SECTION : İletişim error message ]--*/
.res-danger {border-radius: 5px; padding: 30px; background-color: #f2dede; color: darkred; margin-bottom: 20px; width: 100%;}
.res-danger h4 {margin-bottom: 10px; float: none; display: block;}
.res-danger ul {list-style: square; padding-left: 30px;}
.res-danger ul li {float: none; list-style-type: disc;}
.res-success {border-radius: 5px; padding: 30px; background-color: #aae0af; color: darkgreen; margin-bottom: 20px; width: 100%;}


/*--[ SECTION : issue index error message ]--*/
.issues {margin-bottom: 50px;}
.issues .e-col-3{float: left; margin-bottom: 30px; padding: 0 15px;}
.issues article a {height: 470px;}
.issues article h4 a {color: #5e5e5e; margin-top: 50px;}
.issues article img {width: 100%;}

/*--[ SECTION : activity show page ]--*/
.activities {padding: 30px; margin-bottom: 30px; background-color: #eee; border: 1px solid #ccc;}
.activities .e-col h2 {font-weight: 500;}
.activities .e-col strong {font-size: 16px;}
.section-titles {margin: 20px 0; color: #9b2929;}
.section-titles strong {font-size: 18px; font-weight: 700;}
#contactForm .feeds {font-size: 11px; font-weight: 100;}
#contactForm .feeds input {margin-left: 10px;}
#contactForm small {color: #ef0e0e; font-size: 13px;}

.pages .page-item .item-title {margin-bottom: 10px; font-weight: 500; font-size: 18px;}
.content-main .content p {color: #000;}

@charset "utf-8";

@media only screen and (max-width:1134px){
	/*--[ ENJEKTE ]--*/
		.e-center{width:100%; padding:0px 15px;}
	/*--[ HEADER ]--*/
		/*--[ HEADER : Middle ]--*/
			.header-middle{padding:20px 0px;}
		/*--[ HEADER : Bottom ]--*/
			.header-bottom{padding:10px 0px;}
			.header-bottom .mainmenu{width:80%;}
			.header-bottom .mainmenu ul li{margin-right:30px;}
			.header-bottom .search{width:20%;}
	/*--[ FOOTER : Middle ]--*/
		.bottommenu-1{width:180px;}
		.bottommenu-2{width:244px;}
		.bottommenu-3{width:200px;}
		.bottommenu-4{width:220px;}
		.bottommenu-5{width:160px;}
	/*--[ SECTION : Slider ]--*/
		.slider-center{width:100%;}
	/*--[ SECTION : Markalar ]--*/
		.brands-main .item{height:auto; padding:20px 0px;}
		.brands-main .item img{width:100%;}
	/*--[ SECTION : Üst Başlık Görsel Alanı ]--*/
		.banner-center{width:100%;}
}
@media only screen and (max-width:768px){
	/*--[ ENJEKTE ]--*/
		.e-center{width:100%; padding:0px 10px;}
		.e-col{margin:0px -10px;}
		.e-col-1, .e-col-2, .e-col-3, .e-col-4, .e-col-5, .e-col-6, .e-col-7, .e-col-8, .e-col-9, .e-col-10, .e-col-11, .e-col-12{padding:0px 10px;}
	/*--[ HEADER ]--*/
		/*--[ HEADER : Middle ]--*/
			.header-middle{padding:20px 0px;}
			.header-middle .logo{width:40%;}
			.header-middle .logo span{font-size:14px; padding:5px 0px 0px 0px; font-weight:300;}
			.header-middle .infolink{margin-top:-10px;}
		/*--[ HEADER : Bottom ]--*/
			.header-bottom{padding:10px 0px; position:relative;}
			.header-bottom .mainmenu{width:100%;}
			.header-bottom .mainmenu ul li{display:inline; margin-right:26px;}
			.header-bottom .search{position:absolute; right:10px; top:-45px; height:34px; width:246px; padding:2px; background:#EEE;}
			.header-bottom .search form .text{line-height:30px; background:#EEE; color:#333;}
			.header-bottom .search form .text:hover{background:#FFF;}
			.header-bottom .search form .button i{line-height:30px; color:#006FCB;}
	/*--[ FOOTER ]--*/
		.footer-main{padding:30px 0px;}
		/*--[ FOOTER : Top ]--*/
			.footer-top{width:100%; margin-bottom:40px;}
			.footer-top .infolink{margin-top:20px;}
			.footer-top .infolink .contact{margin-left:50px; margin-right:0px;}
			.footer-top .infolink .onlineshop{margin-left:50px; margin-right:0px;}
		/*--[ FOOTER : Middle ]--*/
			.bottommenu-1{width:30%;}
			.bottommenu-2{width:40%; min-height:283px;}
			.bottommenu-3{width:30%;}
			.bottommenu-4{width:50%;}
			.bottommenu-5{width:50%;}
		/*--[ FOOTER : Bottom ]--*/
			.category-ebulten{width:100%;}
			.footer-bottom address{width:100%; margin-top:20px;}
	/*--[ SECTION : Slider ]--*/
		.slider-main{margin-bottom:20px;}
		.slider-main .slider{overflow:hidden; max-height: 327px;}
		.slider-center{width:100%;}
		.slider-main .item .info{width:320px; bottom:20px; right:20px;}
		.slider-main .item .info h1{font-size:18px; line-height:24px; }
		.slider-main .item .info p{font-size:12px;}
	/*--[ SECTION : Blog - Duyuru - Firma ]--*/
		.news-main .news-taba{margin-bottom:20px;}
		/*--[ News Box ]--*/
			.news-main .news-box{margin-bottom:15px;}
			.news-main .news-box .img{width:40%; position:relative; left:0px; top:0px; float:left;}
			.news-main .news-box div{width:60%; min-height:auto; padding-left:10px;}
			.news-main .news-box div span{font-size:18px; margin:0px;}
			.news-main .news-box div p{font-size:13px; margin:10px 0px;}
			.news-main .news-box div a{font-size:12px; line-height:30px;}
			.news-main .news-box div a i{color:#FFF; font-size:12px; line-height:30px; padding-left:10px;}
	/*--[ SECTION : Katalog Alanı ]--*/
		.catalog-main{float:left; width:100%; background:#006FCB; padding:30px 0px;}
		.catalog-main .info{width:50%; margin-bottom:0px; padding-left:30px;}
		.catalog-main .info h2{font-size:24px;}
		.catalog-main .info p{margin:10px 0px;}
		.catalog-main .list{width:50%; padding-left:30px;}
		.catalog-main .img{display:none;}
	/*--[ SECTION : Markalar ]--*/
		.brands-main{padding:25px 0px;}
		.brands-main .item{height:auto; padding:20px 0px;}
	/*--[ SECTION : Bunları biliyor muydunuz? ]--*/
		.didyouknow-main{padding-top:20px;}
		.didyouknow-main .img{width:30%; padding-left:20px;}
		.didyouknow-main .img img{width:100%;}
		.didyouknow-main .info{width:60%; float:right; padding-top:10px;}
		.didyouknow-main .info h3{font-size:24px; margin-bottom:10px;}
		.didyouknow-main .info .item{font-size:14px; margin-bottom:5px;}
		.didyouknow-main .info .item i{font-size:20px; padding-right:10px;}
	/*--[ SECTION : Bunları biliyor muydunuz? : SAYFA ]--*/
		.didyouknowpage{padding:30px 0px;}
	/*--[ SECTION : Sayfa Başlık ]--*/
		.pagetitle{margin:15px 0px;}
		.pagetitle2{margin:25px 0px 15px;}
	/*--[ SECTION : Yan Menü ]--*/
		.left-menu ul li a{padding:10px 0px 10px 15px;}
		.left-menu ul li a.active{border-left:solid 5px #ED1B23; padding-left:10px;}
	/*--[ SECTION : Blog ]--*/
		.blog{width:100%; margin-bottom:20px;}
		.blog .title{margin:25px 0px 0px; padding-bottom:5px;}
		.blog .item{margin-top:20px;}
	/*--[ SECTION : Blog Detay ]--*/
		.blogdetail .title{margin:25px 0px 15px; padding-bottom:5px; }
}

@media only screen and (max-width:480px){
	/*--[ ENJEKTE ]--*/
		.e-center{width:100%; padding:0px 5px;}
		.e-col{margin:0px -5px;}
		.e-col-1, .e-col-2, .e-col-3, .e-col-4, .e-col-5, .e-col-6, .e-col-7, .e-col-8, .e-col-9, .e-col-10, .e-col-11, .e-col-12{padding:0px 5px;}
		.e-col-m-1, .e-col-m-2, .e-col-m-3, .e-col-m-4, .e-col-m-5, .e-col-m-6, .e-col-m-7, .e-col-m-8, .e-col-m-9, .e-col-m-10, .e-col-m-11, .e-col-m-12{padding:0px 5px;}
		.e-col-m-1{width:8.3333%;} .e-col-m-2{width:16.6666%;} .e-col-m-3{width:25%;} .e-col-m-4{width:33.3333%;} .e-col-m-5{width:41.6666%;} .e-col-m-6{width:50%;} .e-col-m-7{width:58.3333%;} .e-col-m-8{width:66.6666%;} .e-col-m-9{width:75%;} .e-col-m-10{width:83.3333%;} .e-col-m-11{width:91.6666%;} .e-col-m-12{width:100%;} 
	/*--[ HEADER ]--*/
		/*--[ HEADER : Top ]--*/
			.header-top .language a{width:30px; height:30px; line-height:30px; font-size:12px;}
			.header-top .sociallink a{font-size:15px; line-height:30px; width:30px;}
		/*--[ HEADER : Middle ]--*/
			.header-middle{padding:5px 0px;}
			.header-middle .logo{width:100%;}
			.header-middle .logo a{width:115px; height:35px; background:url(../design/sprite.png) no-repeat; background-position:0px -91px;}
			.header-middle .logo span{padding:15px 0px 0px 10px;}
			.header-middle .infolink{width:100%; margin-top:10px;}
			.header-middle .infolink .contact{width:45%; padding:4px 0px 4px 30px; position:relative;}
			.header-middle .infolink .contact span{width:100%; color:#595959; font-size:12px; line-height:12px; margin:5px 0px 2px;}
			.header-middle .infolink .contact samp{font-size:14px; line-height:16px;}
			.header-middle .infolink .onlineshop{width:55%; padding:4px 0px 4px 50px; margin-left:0px;}
			.header-middle .infolink .onlineshop samp{font-size:14px; line-height:16px;}
		/*--[ HEADER : Bottom ]--*/
			.header-bottom{padding:5px 0px; min-height:44px; position:relative;}
			.header-bottom .mobilmenu{display:inline;}
			.header-bottom .mainmenu{width:100%; display:none;}
			.header-bottom .mainmenu ul{margin-top:10px;}
			.header-bottom .mainmenu ul li{width:100%; border-top:solid 1px #188AE7;}
			.header-bottom .mainmenu ul li a{line-height:34px !important; width:100%;}
			.header-bottom .mainmenu ul li:first-child a{line-height:34px; color:#FFF;}
			.header-bottom .mainmenu ul li a i{font-size:25px; margin-top:7px;}
			.header-bottom .search{right:5px; top:5px; height:34px; width:204px; background:#188AE7;}
			.header-bottom .search form .text{background:#188AE7; color:#FFF;}
			.header-bottom .search form .text:hover{background:#1996FB;}
	/*--[ FOOTER ]--*/
		.footer-main{padding:15px 0px;}
		/*--[ FOOTER : Top ]--*/
			.footer-top{width:100%; margin-bottom:20px;}
			.footer-top .logo .slogan{margin:8px 0px;}
			.footer-top .sociallink{float:left !important; margin:10px 0px;}
			.footer-top .infolink{margin:0px; width:100%;}
			.footer-top .infolink .contact{margin-left:0px; margin-right:0px; width:50%;}
			.footer-top .infolink .onlineshop{margin-left:0px; margin-right:0px; width:50%;}
		/*--[ FOOTER : Middle ]--*/
			.footer-middle ul{margin-bottom:10px;}
			.footer-middle h6{margin-bottom:5px;}
			.bottommenu-1{width:100%;}
			.bottommenu-2{width:100%; min-height:auto;}
			.bottommenu-3{width:100%;}
			.bottommenu-4{width:100%;}
			.bottommenu-5{width:100%;}
		/*--[ FOOTER : Bottom ]--*/
			.category-ebulten .category{margin-bottom:15px;}
			.category-ebulten .category ul span{padding:0px 10px;}
			.footer-singature{margin-top:30px;}
	/*--[ ONLİNE SHOP ]--*/
		.onlineshopear{display:none;}
	/*--[ SECTION : Slider ]--*/
		.slider-main{margin-bottom:20px;}
		.slider-center{width:100%;}
		.slider-main .slider{overflow:hidden; max-height: 203px;}
		.slider-main .item .info{width:80%; bottom:10px; right:10px; padding:10px;}
		.slider-main .item .info h1{font-size:14px; line-height:24px; margin-bottom:2px;}
		.slider-main .item .info p{font-size:11px;}
	/*--[ SECTION : Blog - Duyuru - Firma ]--*/
		.news-main .news-taba{margin-bottom:10px;}
		.news-main .news-taba ul li{margin:0px 10px;}
		.news-main .news-box{margin-bottom:10px;}
	/*--[ SECTION : Katalog Alanı ]--*/
		.catalog-main{float:left; width:100%; background:#006FCB; padding:30px 0px;}
		.catalog-main .info{width:100%; margin-bottom:0px; padding-left:20px;}
		.catalog-main .info h2{font-size:24px;}
		.catalog-main .info p{margin:10px 0px;}
		.catalog-main .list{width:100%; padding-left:20px; margin-top:20px;}
		.catalog-main .list li{margin-top:5px;}
	/*--[ SECTION : Markalar ]--*/
		.brands-main{float:left; width:100%; padding:15px 0px;}
		.brands-main .item{width:100%; padding:10px 0px;}
	/*--[ SECTION : Markalarımız ]--*/
		.product .info{margin:5px 0px 10px; padding-bottom:10px;}
		.product .desc{margin-bottom:15px;}
	/*--[ SECTION : Marka Detay ]--*/
		.productdetail-main{margin-bottom:20px;}
		.productdetail-title{width:100%; padding-bottom:5px; margin:15px 0px;}
		.productdetail-title h1{width:100%; font-weight:400px; font-size:17px; line-height:20px;}
		.productdetail-title img{float:left !important;}
		.productdetail-left{width:100%; margin-bottom:15px;}
		.productdetail-right{width:100%;}
		.productdetail-right .desc{padding:10px 10px 5px 10px;}
		.productdetail-right .desc h2{font-size:16px;}
		.productdetail-right .desc p{font-size:12px; line-height:16px;}
		.productdetail-right .features{padding:10px 10px 5px 10px; margin-top:15px;}
		.productdetail-right .features h3{font-size:16px;}
		.productdetail-right .features p{font-size:12px; line-height:16px;}
		.productdetail-right .features li{font-size:12px; line-height:16px;}
	/*--[ SECTION : Bunları biliyor muydunuz? ]--*/
		.didyouknow-main{padding:10px 0px;}
		.didyouknow-main .img{display:none;}
		.didyouknow-main .info{width:100%; padding-top:0px;}
		.didyouknow-main .info h3{font-size:16px; margin-bottom:10px;}
		.didyouknow-main .info .item{font-size:12px; margin-bottom:2px;}
		.didyouknow-main .info .item i{font-size:20px; padding-right:10px;}
	/*--[ SECTION : Bunları biliyor muydunuz? : SAYFA ]--*/
		.didyouknowpage{padding:15px 0px;}
		.didyouknowpage .img{width:100%; margin-bottom:15px;}
		.didyouknowpage .content{padding:10px;}
	/*--[ SECTION : Sayfa Başlık ]--*/
		.pagetitle{font-size:16px; font-weight:400; margin:10px 0px;}
		.pagetitle2{font-size:16px; font-weight:400; margin:10px 0px 10px;}
	/*--[ SECTION : Yan Menü ]--*/
		.left-menu{margin-bottom:15px;}
		.left-menu ul li{border-bottom:solid 1px #CECECE;}
		.left-menu ul li a{padding:7px 0px 7px 17px; line-height:16px; font-size:12px;}
		.left-menu ul li a.active{border-left:solid 5px #ED1B23; padding-left:12px;}
	/*--[ SECTION : İçerik ]--*/
		.content-main .title{font-weight:400; font-size:16px; margin-bottom:5px;}
	/*--[ SECTION : Blog ]--*/
		.blog{margin-bottom:10px;}
		.blog .title{font-size:16px; line-height:30px; font-weight:400;}
		.blog .item{margin-top:5px;}
	/*--[ SECTION : Blog Detay ]--*/
		.blogdetail .title{margin:15px 0px 15px; padding-bottom:5px;}
		.blogdetail .title h2{font-size:16px; line-height:20px; font-weight:400;}
		.blogdetail .title span{line-height:20px; font-size:12px;}
	/*--[ SECTION : İletişim ]--*/
		.contact-main .info h3{font-weight:400; font-size:16px; margin-bottom:10px;}
		.contact-main .info div{margin-bottom:7px; width:100%;}
		.contact-main .info div span{width:20%; font-size:12px;}
		.contact-main .info div small{width:2%; font-size:12px;}
		.contact-main .info div samp{width:78%; font-size:12px;}
		.contact-main .shopimg{width:100%; margin-bottom:5px;}
		.contact-main .shopimg h4{font-weight:400; font-size:16px; margin-bottom:10px;}
		.contact-main .shopimg img{margin:0px 10px 10px 0px;}
		.contact-main .map{margin-bottom:10px;}
	/*--[ SECTION : İletişim Formu ]--*/
		.contactform{float:left; width:100%; margin-bottom:20px;}
		.formdiv{margin-bottom:10px;}
		.formdiv label{margin-bottom:2px; font-size:12px;}
		.formdiv .text{height:30px;}
		.formdiv .file{height:30px; padding:3px

			;}
		.formdiv .textarea{height:100px;}
		.formdiv .button{height:30px; font-size:12px;}
		.formdiv span{font-size:11px; right:10px; line-height:30px;}
	/*--[ SECTION : Satış Ağımız ]--*/
		.salesnetwork .map{height:300px; margin-bottom:20px;}
		.salesnetwork .info{margin-bottom:0px;}
		.salesnetwork .info h3{font-weight:400; font-size:16px; margin-bottom:10px;}
		.salesnetwork .info div{width:100%; margin-bottom:7px;}
		.salesnetwork .info div span{width:20%; font-size:12px;}
		.salesnetwork .info div small{width:2%; font-size:12px;}
		.salesnetwork .info div samp{width:78%; font-size:12px;}
}
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}

/* Owl Carousel - Core */
.owl-carousel{width:100%; -webkit-tap-highlight-color:transparent; position:relative; z-index:1;}
.owl-carousel .owl-stage{position:relative; -ms-touch-action:pan-Y;}
.owl-carousel .owl-stage:after{content:"."; display:block; clear:both; visibility:hidden; line-height:0; height:0;}
.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;/* fix for flashing background */-webkit-transform:translate3d(0px, 0px, 0px);}
.owl-carousel .owl-item{position:relative; min-height:1px; float:left; -webkit-backface-visibility:hidden; -webkit-tap-highlight-color:transparent; -webkit-touch-callout:none;}
.owl-carousel .owl-item img{display:block; width:100%; -webkit-transform-style:preserve-3d;}
.owl-carousel .owl-nav.disabled, .owl-carousel .owl-dots.disabled{display:none;}
.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-dot{cursor:pointer; cursor:hand; -webkit-user-select:none; -khtml-user-select:none; -moz-user-select:none; -ms-user-select:none; user-select:none;}
.owl-carousel.owl-loaded{display:block;}
.owl-carousel.owl-loading{opacity:0; display:block;}
.owl-carousel.owl-hidden{opacity:0;}
.owl-carousel.owl-refresh .owl-item{visibility:hidden;}
.owl-carousel.owl-drag .owl-item{-webkit-user-select:none; -moz-user-select:none; -ms-user-select:none; user-select:none;}
.owl-carousel.owl-grab{cursor:move; cursor:grab;}
.owl-carousel.owl-rtl{direction:rtl;}
.owl-carousel.owl-rtl .owl-item{float:right;}
/* No Js */
.no-js .owl-carousel{display:block;}
/* Owl Carousel - Animate Plugin*/
.owl-carousel .animated{ -webkit-animation-duration:1000ms; animation-duration:1000ms; -webkit-animation-fill-mode:both; animation-fill-mode:both;}
.owl-carousel .owl-animated-in{z-index:0;}
.owl-carousel .owl-animated-out{z-index:1;}
.owl-carousel .fadeOut{-webkit-animation-name:fadeOut; animation-name:fadeOut;}
@-webkit-keyframes fadeOut{0%{opacity:1;}100%{opacity:0;}}
@keyframes fadeOut{0%{opacity:1;}100%{opacity:0;}}
/* Owl Carousel - Auto Height Plugin */
.owl-height{transition:height 500ms ease-in-out;}
/* Owl Carousel - Lazy Load Plugin */
.owl-carousel .owl-item .owl-lazy{opacity:0; transition:opacity 400ms ease;}
.owl-carousel .owl-item img.owl-lazy{-webkit-transform-style:preserve-3d; transform-style:preserve-3d;}
/* Owl Carousel - Video Plugin  */
.owl-carousel .owl-video-wrapper{position:relative; height:100%; background:#000;}
.owl-carousel .owl-video-play-icon{position:absolute; height:80px; width:80px; left:50%; top:50%; margin-left:-40px; margin-top:-40px; background:url("owl.video.play.png") no-repeat; cursor:pointer; z-index:1; -webkit-backface-visibility:hidden; transition:-webkit-transform 100ms ease; transition:transform 100ms ease;}
.owl-carousel .owl-video-play-icon:hover{-webkit-transform:scale(1.3, 1.3); -ms-transform:scale(1.3, 1.3); transform:scale(1.3, 1.3);}
.owl-carousel .owl-video-playing .owl-video-tn, .owl-carousel .owl-video-playing .owl-video-play-icon{display:none;}
.owl-carousel .owl-video-tn{opacity:0; height:100%; background-position:center center; background-repeat:no-repeat; background-size:contain; transition:opacity 400ms ease;}
.owl-carousel .owl-video-frame{position:relative; z-index:1; height:100%; width:100%;}

.brands-main .owl-nav .owl-prev, .owl-next {position: absolute; top: 40%; background-color: rgba(0,0,0,0.5); padding: 3px;}
.brands-main .owl-nav .owl-prev {left: 13px;}
.brands-main .owl-nav .owl-next {right: 13px;}
.brands-main .owl-nav i {font-size: 25px; color: #eee;}

.slider-main .owl-nav .owl-prev, .owl-next {position: absolute; top: 40%; background-color: rgba(0,0,0,0.5); padding: 5px;}
.slider-main .owl-nav .owl-prev {left: 13px;}
.slider-main .owl-nav .owl-next {right: 13px;}
.slider-main .owl-nav i {font-size: 40px; color: #eee; font-weight: 100;}
/*# sourceMappingURL=global.css.map */
