/******** Setup ********************************************************************************/
/***********************************************************************************************/

*, *:before, *:after {
  margin:0;
  padding:0;
  -moz-box-sizing:border-box;
  -webkit-box-sizing:border-box;
  box-sizing:border-box;
}
html {
  -ms-text-size-adjust:100%; 
  -webkit-text-size-adjust:100%;
}
body {
  font-family:'Roboto', Helvetica, Arial, sans-serif;
  font-weight:300;
  font-size:16px;
  line-height:22px;
  color:rgba(51, 51, 51, 1);
  background-color:rgba(95, 96, 95, 1);
}
@media all and (min-width: 480px) {
body {
  font-size:16px;
  line-height:24px;
}
}
img, header, nav, section, aside, article, footer {
  display:block;
}
img {
  border:0 none;
  height:auto;
  width:100%;
  max-width:100%;
}
button:focus,
button:active,
button:hover,
a:focus,
a:active,
a:hover {
  outline:0;
}
table {
  *border-collapse:collapse;
  border-spacing:0;
}

.min-md {
    display:none !important;
}
@media all and (min-width: 992px) {
.max-md {
    display:none !important;
}
.min-md {
    display:block !important;
}
}

/******** Cookie ********************************************************************************/

#cookie-message {
    position:relative;
    float:left;
    width:100%;
    font-weight:400;
    background-color:rgba(95, 96, 95, 1);
    color:rgba(255, 255, 255, 1);
    font-size:13px;
    line-height:18px;
}
#cookie-message-wrapper {
    max-width:1170px;
    margin:0 auto;
    padding:15px;
}
#cookie-message-wrapper:before,
#cookie-message-wrapper:after {
    content:"";
    display:table;
    clear:both;
}

#cookie-message-txt a {
    color:rgba(238, 239, 238, 1);
}
#cookie-message-txt a:hover {
    color:rgba(255, 255, 255, 1);
}
#cookie-message-txt {
    text-align:left;
}
#cookie-message-btn {
    padding-top:15px;
    text-align:left;
}
#cookie-message-btn a {
    font-size:14px;
    font-weight:500;
    line-height:1.33333;
    border-radius:0;
    color:rgba(238, 239, 238, 1);
    border:1px solid rgba(238, 239, 238, 1);
    cursor:pointer;
    display:inline-block;
    padding:5px 10px;
    position:relative;
    text-align:center;
    text-decoration:none;
}
#cookie-message-btn a:hover {
    color:rgba(255, 255, 255, 1);
    border:1px solid rgba(255, 255, 255, 1);
    transition: all 0.2s ease 0s;
}
@media all and (min-width: 640px) {
    #cookie-message-txt {
        float:left;
        text-align:left;
        width:80%;
    }
    #cookie-message-btn {
        padding-top:0;
        float:right;
        text-align:right;
        width:20%;
    }
}
@media all and (min-width: 1200px) {
#cookie-message-wrapper {
    padding:15px 0 15px 0;
}
}

/******** Fonts / Icons ************************************************************************/
/***********************************************************************************************/

@font-face{
    font-family:'Roboto';
    font-weight:300;
    font-style:normal;
    src: url('fonts/Roboto-Light.woff2') format('woff2'),
         url('fonts/Roboto-Light.woff') format('woff'),
         url('fonts/Roboto-Light.ttf') format('truetype');
}
@font-face{
    font-family:'Roboto';
    font-weight:400;
    font-style:normal;
    src: url('fonts/Roboto-Regular.woff2') format('woff2'),
         url('fonts/Roboto-Regular.woff') format('woff'),
         url('fonts/Roboto-Regular.ttf') format('truetype');
}
@font-face{
    font-family:'Roboto';
    font-weight:500;
    font-style:normal;
    src: url('fonts/Roboto-Medium.woff2') format('woff2'),
         url('fonts/Roboto-Medium.woff') format('woff'),
         url('fonts/Roboto-Medium.ttf') format('truetype');
}
@font-face {
    font-family:'icon';
    font-style:normal;
    font-weight: normal;
    src: url('fonts/icon2.woff2') format('woff2'),
         url('fonts/icon2.woff') format('woff'),
         url('fonts/icon2.ttf') format('truetype');
}
[class^="icon-"], [class*=" icon-"] {
    font-family:'icon';
    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;
}

.icon-product:before { content: "\e901"; }
.icon-dealer:before { content: "\e900"; }
.icon-sortup:before { content: "\e613"; }
.icon-sortdown:before { content: "\e614"; }
.icon-search:before { content: "\e610"; }
.icon-file:before { content: "\e611"; }
.icon-user:before { content: "\e603"; }
.icon-youtube:before { content: "\e600"; }
.icon-twitter:before { content: "\e60e"; }
.icon-facebook:before { content: "\e605"; }
.icon-googleplus:before { content: "\e609"; }
.icon-mail:before { content: "\e60f"; }
.icon-menu:before { content: "\e601"; }
.icon-checkmark-circle:before { content: "\e60a"; }
.icon-minus:before { content: "\e60c"; }
.icon-plus:before { content: "\e60d"; }
.icon-arrow-up:before { content: "\e602"; }
.icon-arrow-right:before { content: "\e604"; }
.icon-arrow-down:before { content: "\e606"; }
.icon-arrow-left:before { content: "\e615"; }

/******** Helpers ******************************************************************************/
/***********************************************************************************************/

.pt-30 { padding-top:30px; }
.pt-40 { padding-top:40px; }
.pt-60 { padding-top:60px; }
.pb-30 { padding-bottom:30px; }
.pb-60 { padding-bottom:60px; }

.center { text-align:center; }
.left { text-align:left; }
.right { text-align:right; }
.inline {margin-bottom:0;}

.mark:after {
  content:'';
  display:block;
  width:30px;
  padding-top:10px;
  border-bottom:3px solid rgba(235, 138, 0, 1);
}

@media all and (min-width: 768px) {
  .mb-60 {margin-bottom:60px;}
}

/******** Text *********************************************************************************/
/***********************************************************************************************/

h1, h2, h3, h4, h5 {
    font-family:'Roboto'; 
    line-height:1;
    text-transform:uppercase;
    font-weight:500;
}
h1, h2, h3, h4, h5, p {
    display:block;
    margin-bottom:25px;
}
h1 { font-size:24px; }
h2 { font-size:20px; }
h3 { font-size:18px; }
h4 { font-size:16px; }
h5 { font-size:14px; }

.cat {
  color:rgba(167, 168, 166, 1);
}
@media all and (min-width: 992px) {
.cat {
  margin-bottom:50px;
} 
}
.topic, .date {
  display:block;
  font-weight:500;
  text-transform:uppercase;
  font-size:12px;
  color:rgba(167, 168, 166, 1);
  padding-bottom:5px;
}
strong { font-weight:500; }

@media all and (min-width: 768px) {
  h1 { font-size:36px; }
  h2 { font-size:24px; }
  h3 { font-size:20px; }
}

/******** Buttons / Links **********************************************************************/
/***********************************************************************************************/

/******** Links ********************************************************************************/

a {
    color:rgba(235, 138, 0, 1);
    text-decoration:none;
    transition:color 0.2s;
}
.title a {
  color:rgba(51, 51, 51, 1);
}
.title a:hover {
  color:rgba(235, 138, 0, 1);
}    

.social, .top {
   font-family:'icon';
   font-size:24px;
   transition: all 0.2s ease 0s;
}
.social-footer {
  display:flex;
  font-size:32px;
  height:32px;
  margin-bottom:5px;
}
.social span {
   font-family:'Roboto';
   font-weight:400;
   font-size:14px;
   padding-left:5px;
}
.top {
  color:rgba(160, 159, 154, 1);
  display:inline-block;
}
.facebook:before {content: "\e605"; }
.twitter:before {content: "\e60e"; }
.mail:before {content: "\e60f"; }
.google:before {content: "\e609"; }
.top:before {content: "\e602"; }
.linkedin:before {content: "\e903"; }
.xing:before {content: "\e902"; }

.product-link {
  display:block;
  height:50px;
  padding-left:60px;
  line-height:50px;
  color:rgba(255, 255, 255, 1);
  background-color:rgba(95, 96, 95, 0.6);
  background-image:url("../images/icons.png");
  background-position:0 0;
  background-size:50px;
  background-repeat:no-repeat;
  transition: background-color 0.2s ease;
}
.product-link:hover {
  background-color:rgba(95, 96, 95, 0.8);
  color:rgba(255, 255, 255, 1);
}
.raffstore            { background-position:0 0; }
.rollläden            { background-position:0 -50px; }
.fassadenmarkisen     { background-position:0 -100px; }
.freiflächenbeschattungen   { background-position:0 -150px; }
.wintergartenmarkisen { background-position:0 -200px; }
.jalousien            { background-position:0 -250px; }
.rollos               { background-position:0 -300px; }
.vertikalbehänge      { background-position:0 -350px; }
.plisees              { background-position:0 -400px; }
.fensterläden         { background-position:0 -450px; }
.unterglasbeschattungen { background-position:0 -500px; }
.related-link {
  display:block;
  position:relative;
  color:rgba(0, 0, 0, 1);
  font-weight:500;
  font-size:18px;
  line-height:20px;
  text-transform:uppercase;
  padding:10px 0 10px 50px;
  margin-top:-1px;
  border-top:1px solid rgba(227, 229, 226, 1);
  border-bottom:1px solid rgba(227, 229, 226, 1);
}
.related-link:hover {
  color:rgba(235, 138, 0, 1);
}
.related-link span {
  display:block;
  color:rgba(0, 0, 0, 1);
  font-weight:300;
  font-size:13px;
  text-transform:none;
}
.related-link:before {
  font-family:'icon';
  font-size:40px;
  position:absolute;
  left:0;
  top:16px;
  color:rgba(235, 138, 0, 1);
}
.related-link.dealer:before {
  content: "\e900";
}
.related-link.product:before {
  content: "\e901";
}

/******** Buttons ******************************************************************************/

.btn {
  font-family:'Roboto', Helvetica, Arial, sans-serif;
  font-weight:500;
  -moz-user-select:none;
  cursor:pointer;
  display:inline-block;
  line-height: 1.846;
  margin-bottom:0;
  text-align: center;
  border:0;
  vertical-align:middle;
  white-space:nowrap;
  position:relative;
  transition: all 0.2s;
  background-color:rgba(235, 138, 0, 1);
  color:rgba(255, 255, 255, 1);
}
.btn:hover {
  background-color:rgba(255, 153, 0, 1);
}
.btn-sm {
  font-size:13px;
  padding:4px 15px;
}
.btn-lg {
  font-size:16px;
  padding:6px 20px;
}
.btn:after {
  font-family:'icon';
  font-size:12px;
  content: "\e604";
  padding-left:10px;
}

/******** Header *******************************************************************************/
/***********************************************************************************************/

header {
  position:absolute;
  top:0;
  width:100%;
  height:50px;
  background-color:rgba(255, 255, 255, 1);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  z-index:100;
}
#logo {
  position:absolute;
  top:10px;
  left:15px;
  display:block;
  width:124px;
  height:30px;
  background-color:rgba(255, 255, 255, 1);
  background-image:url("../images/logo.png");
  background-position:0 0;
  background-size:124px;
  background-repeat:no-repeat;
}
@media all and (min-width: 992px) {
header {
  height:90px;
  background-image:url("../images/header.png");
  background-position:0 0;
  background-repeat:repeat-x;
}
.sticky {
  position:fixed;
  top:0;
}
#logo {
  top:0;
  left:0;
  width:225px;
  height:90px;
  background-position:center center;
  background-size:174px;
}
}
@media all and (min-width:1200px) {
#logo {
  width:272px;
  background-size:210px;
}
}

/******** Menu Main ****************************************************************************/
/***********************************************************************************************/

#menu-main {
  display:none; 
  position:absolute;
  top:50px;
  left:0;
  width:100%;
  z-index:20;
  box-shadow:0px 1px 2px rgba(0, 0, 0, 0.3);
}
#menu-main li {
  list-style-type:none;
  display:block;
  text-align:left;
}

/******** Menu Level **************************************************************************/

#menu-main > ul {
   background-color:rgba(238, 239, 238, 1);
}
#menu-main .level1 > ul {
  display:none;
  background-color:rgba(242, 243, 242, 1);
}
#menu-main .level2 > ul {
  display:none;
  background-color:rgba(245, 246, 245, 1);
}

/******** Menu Separator *********************************************************************/

#menu-main .level3.separator {
  display:block;
  font-weight:500;
  text-transform:uppercase;
  font-size:12px;
  padding:10px;
  color:rgba(167, 168, 166, 1);
  border-top:1px solid rgba(227, 229, 226, 1);
}

/******** Menu Links ************************************************************************/

#menu-main .level1,
#menu-main .level2 {
  position:relative;
}
#menu-main .level1 > a,
#menu-main .level2 > a,
#menu-main .level3 > a {
  display:block;
  position:relative;
  padding:10px;
  color:rgba(51, 51, 51, 1);
}
#menu-main .level1 > a {
  font-weight:500;
  font-size:16px;
  text-transform:uppercase;
  padding:10px;
  box-shadow:inset 0px 2px 2px -2px rgba(0,0,0,0.3);
}
#menu-main .level2 > a {
  font-weight:400;
  font-size:14px;
  border-top:1px solid rgba(227, 229, 226, 1);
}
#menu-main .level3 > a {
  font-weight:300;
  font-size:14px;
  border-top:1px solid rgba(227, 229, 226, 1);
}

/******** Menu Toggle **********************************************************************/

#menu-main .toggle-btn {
  position:absolute;
  cursor:pointer;
  top:0;
  right:0;
  height:44px;
  padding:10px 15px 0 15px;
  border-left:1px solid rgba(227, 229, 226, 1);
  font-size:16px;
  color:rgba(167, 168, 166, 1);
  font-family:'icon';
}
#menu-main .toggle-btn:before {
  content: "\e614";
}
#menu-main .toggle-btn.active:before {
  content: "\e613";
}
#menu-main.active,
#menu-main .level1 > ul.active,
#menu-main .level2 > ul.active {
  display:block;
}

@media all and (min-width: 992px) {

#menu-main { 
  display:block;
  top:30px;
  right:0;
  left:auto;
  width:745px;
  box-shadow:none;
}

/******** Menu Level **************************************************************************/

#menu-main .level1.active > ul,
#menu-main .level2.active > ul {
  display:none;
}
#menu-main > ul {
   background-color:rgba(255, 255, 255, 1);
}
#menu-main .level1 > ul {
  position:absolute;
  top:60px;
  left:0;
  width:249px;
  border-bottom:1px solid rgba(227, 229, 226, 1);
  background-color:rgba(238, 239, 238, 1);
}
#menu-main .level2 > ul {
  position:absolute;
  width:249px;
  top:1px;
  left:248px;
  padding:10px 10px 10px 20px;
  min-height:100%;
  background-color:rgba(245, 246, 245, 1);
  border-bottom:1px solid rgba(227, 229, 226, 1);
  border-right:1px solid rgba(227, 229, 226, 1);
  border-left:1px solid rgba(227, 229, 226, 1);
  z-index:-1;
}

/******** Menu Separator *********************************************************************/

#menu-main .level3.separator {
  padding:0 0 5px 0;
  border-top:none;
}

/******** Menu Links ************************************************************************/

#menu-main .level1 {
  float:left;
  margin-left:-1px;
  width:249px;
}
#menu-main .level1:first-child {
  margin-left:0;
}
#menu-main .level2 {
  position:static;
}
#menu-main .level1 > a {
  height:60px;
  font-size:16px;
  line-height:60px;
  padding:0;
  text-align:center;
  border-right:1px solid rgba(227, 229, 226, 1);
  box-shadow:none;
}
#menu-main .level1.active > a {
  color:rgba(235, 138, 0, 1);
}
#menu-main .level1:first-child > a {
  border-left:1px solid rgba(227, 229, 226, 1);
}
#menu-main .level1:hover > a {
  background-color:rgba(238, 239, 238, 1);
}
#menu-main .level2 > a {
  border-top:none;
  border-left:1px solid rgba(227, 229, 226, 1);
  border-right:1px solid rgba(227, 229, 226, 1);
  box-shadow:inset 0px 2px 2px -2px rgba(0,0,0,0.3);
}
#menu-main .level2:hover > a {
  border-top:none;
  border-right:1px solid rgba(245, 246, 245, 1);
  background-color:rgba(245, 246, 245, 1);
}
#menu-main .level2.active > a {
  color:rgba(235, 138, 0, 1);
}
#menu-main .level3 > a {
  font-weight:400;
  padding:0 0 5px 0;
  border-top:none;
}
#menu-main .level3:hover > a,
#menu-main .level3.active > a {
  color:rgba(235, 138, 0, 1);
}
#menu-main .level1:hover > ul,
#menu-main .level2:hover > ul {
    display:block;
}
}

@media all and (min-width:1200px) {
#menu-main { 
  width:898px;
}
#menu-main .level1 {
  width:300px;
}
#menu-main .level1 > ul {
  width:300px;
}
#menu-main .level2 > ul {
  width:300px;
  left:299px;
}
}

/********  Toggles **************************************************************************/

#toggle-menu,
#toggle-search {
  position:absolute;
  top:0;
  display:block;
  height:50px;
  width:50px;
  color:rgba(51, 51, 51, 1);
  text-align:center;
  text-decoration:none;
}
#toggle-menu {
  right:0;
}
#toggle-search {
  right:50px;
}
#toggle-menu.active,
#toggle-search.active {
  color:rgba(235, 138, 0, 1);
}
#toggle-menu:before,
#toggle-search:before {
  font-size:24px;
  line-height:50px;
  font-family:'icon';
}
#toggle-menu:before {
  content: "\e601";
}
#toggle-search:before {
  content: "\e610";
}
@media all and (min-width: 992px) {
#toggle-menu,
#toggle-search {
  display:none;
}
}

/******** Menu Sec *****************************************************************************/
/***********************************************************************************************/

#menu-sec {
  display:none;
}
@media all and (min-width: 992px) {
#menu-sec { 
  display:block;
  position:absolute;
  top:0;
  right:249px;
  width:496px;
}
#menu-sec li {
  list-style-type:none;
  display:block;
  text-align:left;
  width:20%;
}
#menu-sec .level1 {
  float:left;
}
#menu-sec .level1 > a {
  display:block;
  font-weight:500;
  font-size:12px;
  text-align:center;
  text-transform:uppercase;
  line-height:30px;
  height:30px;
  color:rgba(255, 255, 255, 1);
  border-right:1px solid rgba(211, 124, 0, 1);
  background-color:transparent;
}
#menu-sec .level1:hover > a,
#menu-sec .level1.active > a {
  background-color:rgba(211, 124, 0, 1);
}
}
@media all and (min-width:1200px) {
#menu-sec { 
  right:300px;
  width:598px;
}
}

/******** Menu Sub *****************************************************************************/
/***********************************************************************************************/

#menu-sub   {
  padding-right:20px;
}
#menu-sub li {
  list-style-type:none;
  display:block;
  text-align:left;
  border-bottom:1px solid rgba(227, 229, 226, 1);
  border-top:1px solid rgba(227, 229, 226, 1);
  margin-top:-1px;
}
#menu-sub .level2 > a,
#menu-sub .level3 > a {
  display:block;
  font-weight:500;
  font-size:14px;
  padding:5px 0 5px 0;
  color:rgba(51, 51, 51, 1);
}
#menu-sub .level2:hover > a,
#menu-sub .level3:hover > a,
#menu-sub .active > a {
  color:rgba(235, 138, 0, 1);
}
#menu-sub .separator {
  display:block;
  font-weight:500;
  text-transform:uppercase;
  font-size:12px;
  padding:15px 0 15px 0;
  color:rgba(167, 168, 166, 1);
}
#menu-sub .separator:first-child {;
  padding:1px 0 15px 0;
  border-top:0;
}



/******** Search *******************************************************************************/
/***********************************************************************************************/

#search {
  position:absolute;
  display:none; 
  width:100%;
  padding:15px;
  top:50px;
  left:0;
  background-color:rgba(238, 239, 238, 1);
  box-shadow:inset 0px 2px 2px -2px rgba(0,0,0,0.3), 0px 1px 2px rgba(0, 0, 0, 0.3);
  z-index:20;
}
#search.active {
  display:block;
}
@media all and (min-width: 992px) {
#search { 
  display:block;
  top:0;
  right:0;
  left:auto;
  width:249px;
  height:30px;
  padding:0;
  background-color:transparent;
  box-shadow:none;
}
}
@media all and (min-width:1200px) {
#search { 
  width:300px;
}
}

/**********************************************************************************************/
/******** Content *****************************************************************************/
/**********************************************************************************************/

#page-wrapper {
  position:relative;
  float:left;
  width:100%;
}
#content-wrapper {
  float:left;
  position:relative;
  width:100%;
  margin-top:50px;
  background-color:rgba(255, 255, 255, 1);
}
@media all and (min-width:992px) {
  #content-wrapper {
    margin-top:90px;
  }
}
.wrapper {
  position:relative;
  margin-right:auto;
  margin-left:auto;
  padding-left:15px;
  padding-right:15px;
}
.row {
  margin-left:-15px;
  margin-right:-15px;
}
@media all and (min-width:992px) {
  .wrapper {
    width:970px;
  }
}
@media all and (min-width:1200px) {
  .wrapper {
    width:1170px;
  }
}

/******** Header *****************************************************************************/

.row-header {
  width:100%;
  padding:30px 0 10px 0;
  border-bottom:1px solid rgba(227, 229, 226, 1);
}
.row-header p:first-of-type {
  font-size:18px;
}
@media all and (min-width:768px) {
.row-header p:first-of-type {
  font-size:24px;
  line-height:30px;
}
}

/******** Content *****************************************************************************/
/**********************************************************************************************/

.row-content {
  width:100%;
  padding:30px 0 35px 0;
  margin-top:-1px;
  border-top:1px solid rgba(227, 229, 226, 1);
}
@media all and (min-width:992px) {
.row-header, .row-content {
  padding:60px 0 35px 0;
}
}
.content-leadin p:first-of-type {
  font-size:18px;
  line-height:30px;
  margin-bottom:30px;
}
@media all and (min-width:480px) {
.content-leadin p:first-of-type {
  font-size:24px;
  line-height:36px;
}
}
.content .topic {
  padding-bottom:25px;
}
.content .mark:after {
  padding-top:5px;
}
.content-img {
  margin-bottom:30px;
  background-color:rgba(238, 239, 238, 1);
}
.img-caption {
  font-size:14px;
  line-height:20px;
  padding:5px 0 5px 0;
  background-color:rgba(255, 255, 255, 1);
  border-bottom:1px solid rgba(227, 229, 226, 1);
}
.content-txt {
  padding-bottom:25px;
}
@media all and (min-width:992px) {
}
.additional h5 {
  color:rgba(167, 168, 166, 1);
  margin-bottom:10px;

}

/******** Article List ************************************************************************/

.article-list li {
    list-style:none;
    float:left;
    width:100%;
    padding:30px 0 30px 0;
    margin-top:-1px;
    border-top:1px solid rgba(227, 229, 226, 1);
    border-bottom:1px solid rgba(227, 229, 226, 1);
}
.article-list-img {
    padding-bottom:30px;
}
@media all and (min-width:768px) {
.article-list-img {
    padding-bottom:0;
}
}

/******** Related Links ************************************************************************/

.related-links {
  margin-bottom:30px;
}
.related-link-item  {
  margin-top:-1px;
}

/******** Teaser ******************************************************************************/
/**********************************************************************************************/

#hero {
  padding-top:40px;
  padding-bottom:100px;
  background-color:rgba(250, 249, 246, 1);
  background-size:cover;
  background-position:bottom right;
  background-repeat:no-repeat;
  background-image:url("../images/index-sm.jpg");
}
@media all and (min-width: 768px) {
#hero {
  padding-top:60px;
  background-size:cover;
  background-position:bottom center;
  background-repeat:no-repeat;
  background-image:url("../images/index.jpg");
}
}

/******** Box **********************************************************************************/
/***********************************************************************************************/

.box {
  width:100%;
  position:relative;
  margin-bottom:15px;
  background-color:rgba(255, 255, 255, 1);
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
}
.box:hover {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
}
@media all and (min-width: 768px) {
.box  {
  margin-bottom:30px;
}
}

/******** Box Image ****************************************************************************/

.box-img  {
  border-bottom:3px solid rgba(235, 138, 0, 1);
}

/******** Box Content *************************************************************************/

.box-content  {
  padding:15px;
}
@media all and (min-width: 992px) {
.box-content  {
  padding:30px;
}
}

/******** Lists ********************************************************************************/
/***********************************************************************************************/

.editor ul,
.editor ol {
    margin:0 0 25px 18px;
}

/******** Product List *************************************************************************/

.product-list li {
  list-style-type:none;
  display:block;
  margin-bottom:1px;
  text-align:left;
}

/******** Img List ****************************************************************************/

.img-list {
    width:100%;
    float:left;
    margin-bottom:30px;
}
.img-list li {
    list-style:none;
    float:left;
    width:50%;
    margin:-1px 0 0 -1px ;
}
.img-list-item {
    width:100%;
    position:relative;
    padding:7px;
    background:#ffffff;
    border:1px solid rgba(227, 229, 226, 1);
}
.img-list-item:hover {
    border:1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    z-index:20;
}
@media all and (min-width: 480px) {
.img-list li {
    width:33.333%;
}
}

/******** FAQ List *****************************************************************************/

.faq-list {
    float:left;
    width:100%;
    margin-bottom:30px;
    border-top:1px solid rgba(227, 229, 226, 1);
}
.faq-list li {
    list-style:none;
    float:left;
    width:100%;
    padding:10px;
    border-bottom:1px solid rgba(227, 229, 226, 1);
}
.faq-list li li {
    list-style:disc;
    float:none;
    width:100%;
    padding:0;
    border-bottom:none;
}
.faq-list li ul,
.faq-list li ol {
    margin:0 0 25px 18px;
}
.faq-list .toggle-heading {
    font-family:'Roboto';
    font-weight:400;
}
.faq-list .toggle-content {
    padding:20px 20px 0 25px;
}
.toggle-heading {
    width:100%;
    position:relative;
    padding-left:25px;
    cursor:pointer;
    color:rgba(235, 138, 0, 1);
}
.toggle-heading:before {
    font-family:'icon';
    content: "\e60d";
    color:rgba(235, 138, 0, 1);
    position:absolute;
    left:0;
}
.toggle-heading.active:before {
    content: "\e60c";
}
.toggle-content {
    display:none;
}

/******** File List *************************************************************************/

.file-list {
    width:100%;
    float:left;
    margin-bottom:30px;
    border-top:1px solid rgba(227, 229, 226, 1);
}
.file-list li {
    font-weight:500;
    font-size:14px;
    width:100%;
    padding:5px 0 5px 0;
    border-bottom:1px solid rgba(227, 229, 226, 1);
    list-style-type:none;
}
.file-list li:before {
    font-family:'icon';
    content: "\e611";
    font-size:16px;
    color:rgba(235, 138, 0, 1);
    margin-right:5px;
    float:left;
}

/******** Share List ****************************************************************************/

#share {
  float:left;
  width:100%;
  text-align:center;
  border-top:1px solid rgba(227, 229, 226, 1);
}
.share-list  {
  display:table;
  margin:0 auto;
}
.share-list li {
  display:table-cell;
  list-style:none;
  padding:10px;
  vertical-align:middle;
  line-height:1;
  border-right:1px solid rgba(227, 229, 226, 1);
}
.share-list .share-title {
  padding:0 10px 0 0;
  text-transform:uppercase;
  font-size:13px;
  font-weight:500;
  color:rgba(167, 168, 166, 1);
}
.share-list li a {
  color:rgba(167, 168, 166, 1);
}
.share-list li a:hover {
  color:rgba(235, 138, 0, 1);
}
@media all and (min-width:768px) {
.share-list  {
  float:right;
}
}

/******** Search List ***************************************************************************/

.search-list {
    float:left;
    width:100%;
    margin-bottom:30px;
    border-top:1px solid rgba(227, 229, 226, 1);
}
.search-list li {
    list-style:none;
    float:left;
    width:100%;
    padding:10px;
    border-bottom:1px solid rgba(227, 229, 226, 1);
}
.search-list .topic {
    padding-bottom:0;
}

/******** Pagination ***************************************************************************/

#paging {
  float:left;
  width:100%;
  text-align:center;
  padding-top:30px;
}
.pagination li {
  display:none;
}
.pagination li.button {
  float:left;
  display:block;
}
.pagination a {
  font-weight:500;
  float:left;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none;
  padding:7px 14px;
  font-size:14px;
}
.pagination a {
  color:rgba(255, 255, 255, 1);
  background-color:rgba(167, 168, 166, 1);
}
.pagination a:hover {
  color:rgba(255, 255, 255, 1);
  background-color:rgba(95, 96, 95, 0.8);
}
.pagination a.disabled {
  color:rgba(255, 255, 255, 0.5);
  background-color:rgba(167, 168, 166, 0.5);
  pointer-events:none;
}
.pagination .current {
  background-color:rgba(95, 96, 95, 1);
  color:rgba(255, 255, 255, 1);
  pointer-events:none;
}
@media all and (min-width:768px) {
.pagination li {
  display:block;
  float:left;
}
}

/******** Footer *******************************************************************************/
/***********************************************************************************************/

footer {
  width:100%;
  float:left;
  font-size:14px;
  font-weight:400;
  color:rgba(255, 255, 255, 1);

}
footer a {
  color:rgba(255, 255, 255, 1);
}
footer a:hover {
  color:rgba(235, 138, 0, 1);
}
footer li {
  list-style-type:none;
}
@media all and (min-width: 768px) {
.toplink {
  display:none;
}
}

/******** Forms ********************************************************************************/
/************************************************************************************************/

.form-content {
  padding:15px;
  background-color:rgba(238, 239, 238, 1);
}
form {
    width:100%;
}
.input-row {
    margin-bottom:5px;
}
.button-row {
    padding-top:10px;
    padding-bottom:10px;
}
.checkbox-row,
.radio-row {
    padding-top:10px;
    padding-bottom:10px;
} 
.input-group-inline {
    display:inline-block;
    margin-right:5px;
}
.input-group {
    border-collapse:separate;
    display:table;
    position:relative;
}
.input-group .form-input  {
    float:left;
    border-radius:0;
    display:table-cell;
    margin-bottom:0;
    position:relative;
    width:100%;
    z-index:2;
}
.input-group-btn {
    vertical-align:middle;
    white-space:nowrap;
    width:1%;
    display:table-cell;
}
.btn-addon {
    position:relative;
    margin-left:-2px;
    z-index:2;
    width:50px;
    height:35px;
    background-color:rgba(255, 255, 255, 1);
    color:rgba(167, 168, 166, 1);
    border:1px solid rgba(227, 229, 226, 1);
    cursor:pointer;
}
.btn-addon:hover {
    color:rgba(235, 138, 0, 1);
}
.btn-addon.search:before {
  font-size:18px;
  line-height:30px;
  font-family:'icon';
  content: "\e610";
}
.btn-addon.go:before {
  font-size:14px;
  line-height:30px;
  font-family:'icon';
  content: "\e604";
}
.form-input,
.form-input-search {
    width:100%;
    height:35px;
    display:block;
    font-family:'Roboto';
    font-weight:400;
    color:rgba(51, 51, 51, 1);
    font-size:14px;
    line-height:1.42857;
    padding-left:10px;
    vertical-align:middle;
    background-color:rgba(255, 255, 255, 1);
    border:1px solid rgba(227, 229, 226, 1);
    border-radius:0;
    -webkit-border-radius:0;
    -webkit-appearance:none;
    -moz-appearance:none;
}
textarea.form-input {
     height:auto;
     min-height:100px;
}
textarea.noresize {
     resize:none;
}
select::-ms-expand {
    display:none;
}
select.form-input {
    background-image: url("../images/form-select.png");
    background-position: right 50%;
    background-repeat: no-repeat;
    background-size: 22px 40px;
}
.form-input:focus {
    border:1px solid rgba(167, 168, 166, 1);
    outline: 0 none;
}
label {
    display:block;
    position:relative;
    margin-bottom:5px;
    font-family:'Roboto';
    font-weight:500;
    font-size:13px;
    color: rgba(167, 168, 166, 1);
}
input[type="checkbox"], input[type="radio"] {
    height: 0;
    width: 0;
    opacity: 0;
    position: absolute;
}
input[type="checkbox"] + label, input[type="radio"] + label {
    cursor:pointer;
    padding-left:27px;
}
input[type="checkbox"] + label span, input[type="radio"] + label span {
    display:inline-block;
    position:absolute;
    left:0;
    top:2px;
    width:20px;
    height:20px;
    background-image:url("../images/form-check-radio.png");
    background-size:80px 20px;
    background-repeat:no-repeat;
    cursor:pointer;
}
input[type="checkbox"] + label span {
    background-position: -40px top !important;
}
input[type="radio"] + label span {
    background-position: 0 top !important;
}
input[type="radio"]:checked + label span, input[type="radio"] + label span.checked {
    background-position: -20px top !important;
}
input[type="checkbox"]:checked + label span, input[type="checkbox"] + label span.checked {
    background-position: -60px top !important;
}
@media all and (min-width: 992px) {
.form-input-search {
    height:30px;
    border:none;
    color:rgba(255, 255, 255, 1);
    border-left:1px solid rgba(211, 124, 0, 1);
    background-color:rgba(221, 130, 0, 1);
}
#search .btn-addon {
    width:50px;
    height:30px;
    border:none;
    border-left:0;
    border-right:1px solid rgba(211, 124, 0, 1);
    background-color:rgba(221, 130, 0, 1);
}
#search .btn-addon.search:before {
  color:rgba(255, 255, 255, 1);
  line-height:25px;
}
}
#newsletter .form-input {
  border:0;
  border-radius:0;
  -webkit-border-radius:0;
  -webkit-appearance:none;
  -moz-appearance:none;
}
#newsletter .btn-addon  {
  border:0;
  border-radius:0;
  -webkit-border-radius:0;
  -webkit-appearance:none;
  -moz-appearance:none;
  border-left:1px solid rgba(227, 229, 226, 1);

}


/******** Tables ********************************************************************************/
/************************************************************************************************/

.table-info {
  border-top:1px solid rgba(227, 229, 226, 1);
}
.table-info td {
  text-align:left;
  padding:5px 10px 5px 0;
  font-size:14px;
  border-bottom:1px solid rgba(227, 229, 226, 1);
}
.table-header-rotated {
  margin: 0 auto 30px auto;
  width:100%;
}
.table-header-rotated {
  border-collapse: collapse;
}
.table-header-rotated th {
  display:none;
}
.table-header-rotated td {
    float:left;
    width:100%;
    border-bottom:1px solid rgba(227, 229, 226, 1);
}
.table-header-rotated td:before {
    float:left;
    width:85%;
    display:table-cell;
    white-space:nowrap;
    text-align:left;
    font-weight:300;
    font-size:14px;
    content: attr(data-title);
}
.table-header-rotated .row-main-header {
  font-size:18px;
  font-weight:500;
  text-transform:uppercase;
  padding:10px 0 10px 0;
}
.table-header-rotated .row-sub-header,
.table-header-rotated .row-sum-header {
  font-size:14px;
  line-height:18px;
  font-weight:500;
  padding:10px 0 10px 0;
}
.table-header-rotated .data {
  padding:5px;
  background-color:rgba(245, 246, 245, 1);
}
.table-header-rotated .data-sum {
  font-size:14px;
  font-weight:500;
  padding:5px;
  background-color:rgba(255, 243, 224, 1);
}

@media all and (min-width: 768px) {

.table-header-rotated td:before {
    display:none;
}
.table-header-rotated td {
    float:none;
    width:auto;
}
.table-header-rotated td {
  width:30px;
  border:1px solid rgba(227, 229, 226, 1);
}
.table-header-rotated th {
  display:table-cell;
  padding:5px 10px;
  font-weight:500;
}
.table-header-rotated td {
  padding:10px 5px;
}
.table-header-rotated th.rotate {
  height:180px;
  white-space:nowrap;
  border-left: 1px solid rgba(227, 229, 226, 1);
  border-right: 1px solid rgba(227, 229, 226, 1);
}
.table-header-rotated th.rotate > div {
  -webkit-transform: translate(0, 0) rotate(270deg);
          transform: translate(0, 0) rotate(270deg);
  width:30px;
}
.table-header-rotated th.rotate > div > div {
  font-size:14px;
  padding: 5px 10px;
  position: absolute;
  bottom: -15px; /* 40 cos(45) = 28 with an additional 2px margin*/
  left: -70px; /*Because it looked good, but there is probably a mathematical link here as well*/
  display: inline-block;
}
.table-header-rotated .data,
.table-header-rotated .data-sum {
  text-align:center;
}
.table-header-rotated .data-sum {
  font-size:12px;
}
.table-header-rotated .row-main-header {
  padding:5px 10px 5px 10px;
  color: rgba(167, 168, 166, 1);
}
.table-header-rotated .row-sub-header,
.table-header-rotated .row-sum-header {
  width:400px;
  padding:10px;
}
.table-header-rotated .row-sum-header {
  background-color:rgba(255, 243, 224, 1);
}
.table-header-rotated .row-data {
  background-color:rgba(245, 246, 245, 1);
}
}

/***********************************************************************************************/
/******** Components ***************************************************************************/
/***********************************************************************************************/

/******** Blazy ********************************************************************************/
/***********************************************************************************************/

.b-lazy-wrapper {
  background-color:transparent;
  background-image:url("../images/loader.gif");
  background-size:30px 30px;
  background-position:center center;
  background-repeat:no-repeat;
  width: 100%
}
.ratio {
  padding-bottom:56.25%; 
  height:0;
}
 .b-lazy {
  max-width:100%;
  -webkit-transition: opacity 500ms ease-in-out;
  -moz-transition: opacity 500ms ease-in-out;
  -o-transition: opacity 500ms ease-in-out;
  transition: opacity 500ms ease-in-out;
  max-width: 100%;
  opacity: 0;
}
.b-lazy.b-loaded {
  opacity:1;
}

/******** Slider ********************************************************************************/
/************************************************************************************************/

/******** CellHeight **************************************************************************/

.img-wrapper {
  width:100%;
  background-color:rgba(255, 255, 255, 1);
  padding-bottom:56.25%;
}
.img-wrapper.no-slide {
  padding-bottom:0;
}
.img-wrapper .flickity-viewport {
  width:100%;
  position:absolute;
}
.img-item  {
  width:100%;
}
.img-item img {
  max-height:100%;
  height:100%;
  width:auto;
  margin:0 auto;
}


/******** Basic *******************************************************************************/

.flickity-enabled {
    position:relative;
}
.flickity-enabled:focus { outline: none; }
.flickity-viewport {
    overflow:hidden;
    position:relative;
    height:100%;
}
.flickity-slider {
    position:absolute;
    width:100%;
    height:100%;
}
.flickity-page-dots {
    position:absolute;
    width:100%;
    bottom:15px;
    padding:0 !important;
    margin:0 !important;
    list-style:none;
    text-align:center;
    line-height:1;
}
.flickity-rtl .flickity-page-dots { direction: rtl; }
.flickity-page-dots .dot {
    display:inline-block;
    width:30px;
    height:5px;
    margin:0 1px;
    background-color:#ffffff;
    opacity:0.6;
    cursor:pointer;
}
.flickity-page-dots .dot.is-selected {
    background:#ffffff;
    opacity:1;
}
.flickity-prev-next-button {
    display:none;
    position:absolute;
    top:0;
    width:40px;
    height:40px;
    cursor:pointer;
    border:none;
    background-color:rgba(235, 138, 0, 1);
}
.flickity-prev-next-button:before {
  font-family:'icon';
  font-size:18px;
  color:rgba(255, 255, 255, 1);
}
.flickity-prev-next-button.previous {
    right:41px;
}
.flickity-prev-next-button.next {
    right:0;
}
.flickity-prev-next-button.previous:before {
    content: "\e615";
}
.flickity-prev-next-button.next:before {
    content: "\e604";
}
.flickity-prev-next-button:disabled {
    opacity:0.3;
    cursor:auto;
}
.flickity-prev-next-button svg {
    display:none;
}
@media all and (min-width: 768px) {
.flickity-prev-next-button {
    display:block;
}
}

/******** Modal *******************************************************************************/
/**********************************************************************************************/

/******** Animation ***************************************************************************/

.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.95;
}
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

/******** Basic *******************************************************************************/

.mfp-bg {
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:1000;
    overflow:hidden;
    position:fixed;
    background-color:rgba(95, 96, 95, 1);
    opacity:0.95;
    filter:alpha(opacity=95);
  }
.mfp-wrap {
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:1100;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}
.mfp-container {
    height:100%;
    text-align:center;
    position:absolute;
    width:100%;
    height:100%;
    left:0;
    top:0;
}
.mfp-container:before {
    content:'';
    display:inline-block;
    height:100%;
    vertical-align:middle;
}
.mfp-align-top .mfp-container:before {
    display: none;
}
.mfp-container {
    padding: 0 8px;
}
.mfp-content {
    position:relative;
    display:inline-block;
    vertical-align:middle;
    margin:0 auto;
    text-align:left;
  }
.mfp-preloader {
    color:rgba(255, 255, 255, 1);
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
}
.mfp-preloader a {
    color:rgba(255, 255, 255, 1);
}
.mfp-s-ready .mfp-preloader,
.mfp-s-error .mfp-content {
    display:none;
}
.mfp-close {
    overflow:visible;
    cursor:pointer;
    background:transparent;
    border:0;
    display:block;
    width:44px;
    height:44px;
    line-height:44px;
    position:absolute;
    right:0;
    top:0;
    text-decoration:none;
    text-align:center;
    padding:0 0 18px 10px;
    color:rgba(235, 138, 0, 1);
    font-style:normal;
    font-size:28px;
    font-family:Arial, monospace;
}
.mfp-arrow {
    cursor:pointer;
    border:0;
    display:block;
    position:absolute;
    top:50%;
    margin-top:-20px;
    width:40px;
    height:40px;
    background-color:rgba(235, 138, 0, 1);
}
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width:100%;
    cursor:auto;
}
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    right:-6px;
    text-align: right;
    padding-right:6px;
    width:100%;
  }
.mfp-close:hover,
.mfp-close:focus {
    color:rgba(211, 124, 0, 1);
}
.mfp-arrow:hover,
.mfp-arrow:focus {
    background-color:rgba(211, 124, 0, 1);
}
.mfp-counter {
    font-weight:500;
    font-size:14px;
    line-height: 20px;
    color:rgba(255, 255, 255, 1);
    position: absolute;
    top: 0;
    right: 0;
  }
.mfp-arrow-left,
.mfp-arrow-right {
    display:block;
    text-decoration:none;
    text-align:center;
}
.mfp-arrow-left {
    left:10px;
}
.mfp-arrow-right {
    right:10px;
}
.mfp-arrow-left:before,
.mfp-arrow-right:before {
    font-family:'icon';
    font-size:18px;
    color:rgba(255, 255, 255, 1);
}
.mfp-arrow-right:before {
    content: "\e604";
}
.mfp-arrow-left:before {
    content: "\e615";
}
.mfp-ajax-cur {
    cursor: progress;
}
.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
}
.mfp-auto-cursor .mfp-content {
    cursor: auto;
  }
.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.mfp-loading.mfp-figure {
    display: none;
}
.mfp-hide {
  display: none;
}
.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
  }
.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
  }
.mfp-iframe-scaler iframe {
    position: absolute;
    top: -3px;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
}
.mfp-iframe-holder .mfp-close {
  top: -43px;
}
img.mfp-img {
    width: auto;
    max-width:100%;
    height: auto;
    display: block;
    line-height: 0;
    padding: 40px 0 40px;
    margin: 0 auto;
}
.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
}
.mfp-figure {
    line-height: 0;
}
.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}
.mfp-title {
    font-weight:300;
    font-size:14px;
    text-align: left;
    line-height: 20px;
    color:rgba(255, 255, 255, 1);
    width: 80%;
}
.mfp-figure small {
    font-weight:300;
    color:rgba(255, 255, 255, 1);
    display: block;
    font-size: 12px;
    line-height: 14px;
}
.mfp-image-holder .mfp-content {
    max-width: 100%;
}
.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {

.mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
}
.mfp-img-mobile img.mfp-img {
    padding: 0;
}
.mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
.mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
}
.mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
}
.mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
}

.mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
}
}

@media all and (max-width: 800px) {

.mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
}
.mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
}
.mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
}
.mfp-container {
    padding-left: 6px;
    padding-right: 6px;
}
}

@media all and (min-width: 1024px) {

img.mfp-img {
    max-width:848px;
}
}


/******** Columns *****************************************************************************/
/**********************************************************************************************/

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position:relative;
  min-height:1px;
  padding-left:15px;
  padding-right:15px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media all and (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media all and (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
.clearfix:before,
.clearfix:after,
.row:before,
.row:after {
  content: " ";
  display: table;
}
.clearfix:after,
.row:after {
  clear: both;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.no-gutter > [class*='col-'] {
    padding-right:0;
    padding-left:0;
}
