/*
 Theme Name: NTD SCSS
 Description: NTD SCSS WordPress Theme
 Version: 1.0
 Author: Daniel Geiser
 Tags: Blank, HTML5, CSS3, SCSS
 */
/*------------------------------------------------------------------------*\
 VARIABLES
 \*------------------------------------------------------------------------*/
/* mainnav styles --------------- */
/* content styles --------------- */
/* text colors ------------------ */
/* btn-primary ------------------ */
/* form styles ---------------- */
/* footer styles -------------- */
/*------------------------------------------------------------------------*\
 MAIN
 \*------------------------------------------------------------------------*/
*, *:after, *:before {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
*:focus {
  outline: none;
}
html {
  font-size: 62.5%;
}
body {
  overflow-y: scroll;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  font-family: 'Montserrat', sans-serif;
  color: #777;
  background: #fff;
  /* force proper rendering (js/scripts.js) */
  opacity: 0;
  transition: opacity 0.1s ease;
}
#page {
  transition: left 0.25s ease;
  position: absolute;
  overflow: hidden;
  width: 100%;
  left: 0;
  min-height: 100vh;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  background-color: #eee;
}
@media (min-width: 768px) {
  body {
    font-size: 14px;
  }
}
/* clear  -------------- */
.clear:before, .clear:after {
  content: ' ';
  display: table;
}
.clear:after {
  clear: both;
}
.clear {
  *zoom: 1;
}
.notop {
  margin-top: 0;
}
.nobot {
  margin-bottom: 0;
}
.text-center {
  text-align: center;
}
/*------------------------------------------------------------------------*\
 TYPOGRAPHY
 \*------------------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
  font-weight: 400;
  color: #555;
}
h1 {
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 20px 0;
}
h2 {
  font-size: 16px;
  margin: 20px 0;
}
h3 {
  font-size: 14px;
  letter-spacing: 1px;
  margin: 20px 0;
}
h4 {
  font-size: 14px;
  letter-spacing: 1px;
  margin: 15px 0;
}
h5 {
  font-size: 12px;
  letter-spacing: 1px;
  margin: 10px 0;
}
h6 {
  font-size: 10px;
  letter-spacing: 1px;
  margin: 5px 0;
}
@media (min-width: 768px) {
  h1 {
    font-size: 22px;
    margin: 0 0 30px 0;
  }
  h2 {
    font-size: 18px;
    margin: 25px 0;
  }
  h3 {
    font-size: 16px;
  }
}
p, ul, ol {
  line-height: 1.666666666;
  margin: 15px 0;
}
ul, ol {
  padding-left: 1.25em;
}
table {
  border-collapse: collapse;
}
table, th, td {
  border: 1px solid #e2e2e2;
  background: #f9f9f9;
}
th, td {
  font-size: 13px;
  padding: 5px 7px;
}
.small {
  font-size: 0.9em;
}
/* links  --------------- */
a, a:visited {
  color: red;
  text-decoration: none;
}
a:hover {
  color: #777;
}
a:focus {
  color: #777;
}
a:focus, a:hover, a:active {
  outline: 0;
}
input:focus, textarea:focus {
  outline: 0;
  border: 1px solid red;
}
a[href^="tel:"] {
  display: inline-block;
}
/*------------------------------------------------------------------------*\
 STRUCTURE
 \*------------------------------------------------------------------------*/
.container {
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
}
/* header --------------- */
#header {
  position: relative;
  padding: 20px 0 0px;
  color: #f5f5f5;
 /* background-image: url(img/weihnachten.jpg);*/
  /*background-image: url(img/banner5.jpg);*/
  /*background-image: url(img/winterbg.png)*/
  background-position: center;
  overflow: hidden;
 /* only winter1:*/
  background-size: cover;
}
.logotext {
  display: none;
}
@media (min-width: 992px) {
  .logotext {
    display: block;
    font-size: 15px;
    letter-spacing: 0.01625em;
    color: #fff;
    margin: 5px 0 0 0;
  }
}
@media (min-width: 1200px) {
  .logotext {
    font-size: 18px;
    letter-spacing: 0.0325em;
  }
}
 /*Oster-Hintergrund:
 #header:before{
 content: " ";
 display: block;
 width: 156px;
 position: absolute;
 top: -50px;
 bottom: 132px;
 left: 80%;
 margin-left: -100px;
 background-image: url(img/osterbg.png);
 background-position: center bottom;
 background-repeat: no-repeat;
 background-size: contain;
 }
 @media (min-width:768px) {
 #header:before{
 top: 0;
 bottom: 0;
 left: 28%;
 margin-left: 0;
 }
 }
 @media (min-width:992px) {
 #header:before{
 left: 33%;
 }
 }
 @media (min-width:1200px) {
 #header:before{
 left: 50%;
 margin-left: -78px;
 }
 }
 /**/
.offerte {
  display: inline-block;
  width: 125px;
  height: 125px;
  background: url(img/gratis-reinigungsofferte.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.offerte:hover, .offerte:focus {
  background: url(img/gratis-reinigungsofferte_hover.png),  url(img/gratis-reinigungsofferte.png);
  background-size: contain, contain;
  background-repeat: no-repeat, no-repeat;
}
/* content -------------- */
#maincontent {
  padding: 20px 0 20px;
  background: #eee;
  border-top: 5px solid #f9f9f9;
}
#main {
  margin-bottom: 30px;
}
#sidebar {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  #maincontent {
    padding: 45px 0 30px;
  }
  #header {
    padding: 20px 0 30px;
  }
}
/* footer ---------------- */
#footerwrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
#prefooter {
  background: #333;
  color: #ccc;
  border-top: 2px solid #222;
  text-align: center;
}
.site-data {
  margin: 15px 0;
}
.site-data .data {
  font-size: 12px;
  display: block;
}
.site-data .data.title {
  display: block;
  margin-bottom: 5px;
}
.site-data .data.line-after:after {
  display: none;
}
.gp-like, .gp-like:visited {
  display: inline-block;
  vertical-align: bottom;
  /*
   float: left;
   margin-right: 3px;
   */
  color: #fff;
  padding: 0 8px 0 6px;
  line-height: 20px;
  border-radius: 2px;
  text-shadow: none;
  font-size: 11px;
  background: #da4f30;
  background: -moz-linear-gradient(top, #da4f30 0%, #d24429 100%);
  background: -webkit-linear-gradient(top, #da4f30 0%, #d24429 100%);
  background: linear-gradient(to bottom, #da4f30 0%, #d24429 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#da4f30', endColorstr='#d24429',GradientType=0);
}
.gp-like:hover, .gp-like:focus {
  color: #fff;
  background: #e35643;
  background: -moz-linear-gradient(top, #e35643 0%, #db5031 100%);
  background: -webkit-linear-gradient(top, #e35643 0%, #db5031 100%);
  background: linear-gradient(to bottom, #e35643 0%, #db5031 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e35643', endColorstr='#db5031',GradientType=0);
}
@media (min-width: 768px) {
  .gp-like {
    vertical-align: top;
  }
}
#footer {
  color: #ddd;
  text-shadow: 0 0.1em 0.15em #222;
  background: #444;
  background: -moz-linear-gradient(top, #444 0%, #333 100%);
  background: -webkit-linear-gradient(top, #444 0%, #333 100%);
  background: linear-gradient(to bottom, #444 0%, #333 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#444', endColorstr='#333',GradientType=0);
  padding: 5px 0;
  font-size: 12px;
  text-align: center;
  line-height: 2;
}
#footernav {
  display: inline-block;
  text-align: center;
}
#footernav ul li {
  display: inline-block;
  margin: 0 5px;
}
#footernav ul li a {
  color: #ddd;
  text-decoration: underline;
}
#footernav ul li a:hover {
  color: #ccc;
}
#footernav ul li a:focus {
  color: #aaa;
}
.copyright {
  display: inline-block;
  margin: 10px 0 0 0;
  text-align: center;
}
@media (min-width: 768px) {
  #prefooter {
    background: #333;
    color: #ccc;
    border-top: 2px solid #222;
  }
  .site-data .data {
    display: inline-block;
  }
  .site-data .data.line-after:after {
    display: inline-block;
    content: "|";
    margin: 0 7px 0 10px;
  }
  #footer {
    line-height: 1.5;
    text-align: left;
    padding: 10px 0;
    background: rgba(79, 79, 79, 1);
    background: -webkit-(left top, left bottom, color-stop(0%, rgba(79, 79, 79, 1)), color-stop(50%, rgba(56, 56, 56, 1)), color-stop(51%, rgba(43, 43, 43, 1)), color-stop(73%, rgba(28, 28, 28, 1)), color-stop(100%, rgba(19, 19, 19, 1)));
    background: -webkit-linear-gradient(top, rgba(79, 79, 79, 1) 0%, rgba(56, 56, 56, 1) 50%, rgba(43, 43, 43, 1) 51%, rgba(28, 28, 28, 1) 73%, rgba(19, 19, 19, 1) 100%);
    background: linear-gradient(to bottom, rgba(79, 79, 79, 1) 0%, rgba(56, 56, 56, 1) 50%, rgba(43, 43, 43, 1) 51%, rgba(28, 28, 28, 1) 73%, rgba(19, 19, 19, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4f4f4f', endColorstr='#131313', GradientType=0);
  }
  #footernav {
    margin: 0;
    display: inline-block;
    float: right;
    margin-left: 10px;
  }
  #footernav ul {
    text-align: left;
  }
  #footernav ul li {
    margin: 0 10px 0 0;
  }
  .copyright {
    margin: 0;
    float: right;
    display: inline-block;
  }
}
@media (min-width: 991px) {
  .site-data .data.title {
    display: inline-block;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  #prefooter {
    text-align: left;
  }
  .site-data .data {
    font-size: 14px;
  }
}
/*------------------------------------------------------------------------*\
 Navigation
 \*------------------------------------------------------------------------*/
/* toggling -> js/scripts.js */
.menu-toggle {
  display: block;
  position: absolute;
  cursor: pointer;
  top: 30px;
  right: 15px;
  width: 25px;
  height: 25px;
  z-index: 2;
}
span.bar {
  display: block;
  height: 4px;
  background: #f5f5f5;
}
span.bar + span.bar {
  margin-top: 6px;
}
#mainnav {
  background: #333;
  overflow: hidden;
  height: auto;
  right: 0;
}
#mainnav:before {
  background: #333;
  content: " ";
  display: block;
  position: fixed;
  top: -100px;
  bottom: 0;
  left: 0;
  right: 0;
}
#mainnav > .container {
  padding: 0;
}
/* basic reset */
nav ul {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  display: block;
}
/* menu style */
#mainnav ul {
  line-height: 1;
}
#mainnav ul li {
  cursor: pointer;
}
#mainnav ul > li > a {
  display: block;
  padding: 14px 15px;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: normal;
  background: #f00;
  color: #fff;
  border-top: 1px solid #ff2626;
  border-bottom: 1px solid #d90000;
  opacity: 1;
  transition: all 0.25s ease;
  margin-right: 0;
  text-shadow: 0 0.1em 0.1em rgba(0, 0, 0, .1);
}
#mainnav ul > li > a:hover {
  background: #d50000;
  color: #fff;
  border-top-color: #bc0000;
  border-bottom-color: transparent;
}
#mainnav ul > li > a:focus {
  background: #d50000;
  color: #fff;
  border-top-color: #bc0000;
  border-bottom-color: transparent;
}
#mainnav ul > li.menu-item-has-children > a:focus, #mainnav ul > li.menu-item-has-children > a:hover {
  background: #f00;
  color: #fff;
  border-top: 1px solid #ff2626;
  border-bottom: 1px solid #d90000;
}
/* sub-menu style */
#mainnav ul.sub-menu > li > a {
  text-transform: none;
  font-weight: normal;
  line-height: 1.25;
  padding: 12px 15px 12px 30px;
  margin-right: 0;
}
/* level 2 & 3 */
/*
 #mainnav ul.sub-menu ul.sub-menu > li > a {
 padding: 12px 15px 12px 45px;
 }
 #mainnav ul.sub-menu ul.sub-menu ul.sub-menu > li > a {
 padding: 12px 15px 12px 60px;
 }
 */
#mainnav ul.sub-menu > li > a:before {
  content: "\f105";
  font-family: "Fontawesome";
  display: inline-block;
  width: 15px;
  margin-left: -15px;
}
/* active state */
#mainnav ul > li.current-menu-item > a {
  background: #d50000;
  border-top-color: #bc0000 !important;
  border-bottom-color: transparent !important;
}
/* submenu toggling icon */
#mainnav ul > li.menu-item-has-children > a:after {
  font-size: 1.25em;
  content: "\f13a";
  font-family: "Fontawesome";
  display: inline-block;
  float: right;

  margin-left: 5px;
  margin-top: -2px;
  color: #d50000;
  text-shadow: none;
}
@media (min-width: 768px) {
  /* toggling */
  /* left align / first level */
  /* second level */
  /* third level
   #mainnav ul.sub-menu ul.sub-menu {
   padding-top: 0;
   left: 120%;
   top: 0;
   }
   #mainnav ul.sub-menu li:hover > ul.sub-menu {
   left: 100%;
   padding-left: $nav_submenusub_offset;
   } */
  /* active state */
  .menu-toggle {
    display: none;
  }
  #mainnav {
    overflow: visible;
    height: auto;
    padding: 8px 0 10px 0;
    background: #333;
    background-image: -webkit-linear-gradient(#444, #333);
    background-image: linear-gradient(#444, #333);
    border-top: 2px solid #333;
  }
  #mainnav:before {
    display: none;
  }
  #mainnav > .container {
    padding: 0 15px;
  }
  #mainnav ul > li {
    position: relative;
    float: left;
  }
  #mainnav ul > li > a {
    margin-right: 5px;
    border-radius: 5px;
    font-size: 13px;
  }
  #mainnav ul:first-child > li > a {
    box-shadow: 0 0.1em 0.25em rgba(0, 0, 0, 0.3);
    border-top: 2px solid #f33;
    border-bottom: 2px solid #c00;
    padding: 9px 10px !important;
  }
  #mainnav ul:first-child > li > a:hover, #mainnav ul:first-child > li > a:focus, #mainnav ul:first-child > li.current-menu-item > a, #mainnav ul:first-child > li.current-menu-ancestor > a, #mainnav ul > li.menu-item-has-children > a:focus, #mainnav ul > li.menu-item-has-children > a:hover {
    background: #d50000;
    color: #fff;
    box-shadow: 0 0.1em 0.25em rgba(0, 0, 0, 0.3);
    border-top: 2px solid #e20000;
    border-bottom: 2px solid #a20000;
    padding: 9px 15px;
  }
  #mainnav ul > li.menu-item-has-children > a:after {
    display: none;
  }
  #mainnav ul.sub-menu {
    position: absolute;
    left: 0;
    top: 120%;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    padding-top: 15px;
  }
  #mainnav li:hover > ul.sub-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
  #mainnav ul.sub-menu > li {
    width: 200px;
    float: none;
  }
  #mainnav ul.sub-menu > li > a {
    font-size: 12px;
    overflow: hidden;
    border-radius: 0;
    border: none !important;
    padding: 10px 15px 10px 30px;
  }
  #mainnav ul.sub-menu > li:first-child > a {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }
  #mainnav ul.sub-menu > li:last-child > a {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  #mainnav ul > li.current-menu-ancestor > a, #mainnav ul > li.current-menu-item > a {
    background: #d50000;
    box-shadow: 0 0 15px #bc0000 inset !important;
    border-top-color: #bc0000 !important;
    border-bottom-color: #bc0000 !important;
  }
}
@media (min-width: 992px) {
  #mainnav ul:first-child > li > a, #mainnav ul:first-child > li > a:hover, #mainnav ul:first-child > li > a:focus {
    padding: 9px 15px !important;
  }
}
/*------------------------------------------------------------------------*\
 POSTS & PAGES
 \*------------------------------------------------------------------------*/
.blog .post, .home .post, .archive .post {
  border: 1px solid #e2e2e2;
  padding: 20px;
  margin-bottom: 20px;
  background: #f9f9f9;
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
}
main .post:last-of-type, main .page:last-of-type {
  margin-bottom: 0;
}
.single-title, .page-title {
  margin: 0 0 30px;
}
.featured-image {
  margin: 0 0 25px;
}
.entry-title {
  margin: 0 0 15px;
}
/* post-images */
@media (min-width: 768px) {
  .blog .post, .home .post, .archive .post, .search .post, .search .page {
    text-align: left;
  }
  .archive .wp-post-image, .home .wp-post-image, .blog .wp-post-image, .search .wp-post-image {
    float: left;
  }
}
/* post meta */
.entry-meta {
  margin-bottom: 15px;
}
.meta {
  display: inline-block;
  line-height: 1;
  font-size: 14px;
  color: #919191;
  background: #f9f9f9;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
}
.meta i, .meta b {
  display: block;
  text-align: center;
  padding: 7px 8px;
  font-weight: normal;
  float: left;
}
.meta i {
  width: 30px;
}
.meta b {
  border-left: 1px solid #e2e2e2;
}
/* meta footer */
.meta-footer {
  font-size: 13px;
  color: #919191;
  margin: 25px 0 0;
  padding: 10px 15px;
  background: #f9f9f9;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
}
/* excerpt */
.entry-summary p {
  margin-bottom: 0;
}
p.more {
  clear: both;
}
p.more + p {
  display: none;
}
/* pagination */
.pagination {
  display: block;
  overflow: hidden;
}
.page-numbers {
  display: inline-block;
  margin-top: 30px;
  font-size: 12px;
  line-height: 14px;
  padding: 7px 12px;
  border: 1px solid #e2e2e2;
  background-color: #f9f9f9;
}
/*------------------------------------------------------------------------*\
 ALIGNMENTS, IMAGES & CAPTIONS
 \*------------------------------------------------------------------------*/
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
.alignnone {
  margin: 0 0 20px 0;
}
.aligncenter, div.aligncenter {
  display: block;
  margin: 0 auto 5px auto;
}
.alignright {
  float: right;
  margin: 0 0 20px 20px;
}
.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}
a img.alignright {
  float: right;
  margin: 0 0 20px 20px;
}
a img.alignnone {
  margin: 0 0;
}
a img.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 100%;
  padding: 5px;
  text-align: center;
}
.wp-caption.alignnone {
  margin: 0 20px 20px 0;
}
.wp-caption.alignleft {
  margin: 0 20px 20px 0;
}
.wp-caption.alignright {
  margin: 0 0 20px 20px;
}
.wp-caption img {
  border: 0 none;
  margin: 0;
  padding: 0;
  width: auto;
}
.wp-caption .wp-caption-text, .gallery-caption {
  font-size: 12px;
  line-height: 20px;
  margin: 0;
  padding: 5px;
}
.n2-ss-slider {
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}
/*--------------------------------------------------------------
 ## Galleries
 --------------------------------------------------------------*/
.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.gallery-item {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-line-pack: center;
  align-content: center;
  width: 100%;
  margin: 0;
  padding: 5px;
}
.gallery-item .gallery-icon {
  margin: auto;
}
.gallery-item img {
  border: none !important;
}
.gallery-columns-2 .gallery-item {
  max-width: 50%;
}
.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
  max-width: 25%;
}
.gallery-columns-5 .gallery-item {
  max-width: 20%;
}
.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}
/*------------------------------------------------------------------------*\
 WIDGETS
 \*------------------------------------------------------------------------*/
.widget {
  /*
   margin-bottom: 20px;
   padding: 20px;
   background: $contentbox_bg;
   border: 1px solid $contentbox_border_color;
   border-radius: $contentbox_brad;
   */
}
.widget.widget_text .widget-title {
  display: none;
}
/* contentbox */
.contentbox {
  margin-bottom: 20px;
  padding: 20px;
  background: #f9f9f9;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
}
.contentbox-heading {
  margin: 0 -20px 20px -20px;
  padding: 0 20px 20px 20px;
  border-bottom: 1px solid #e2e2e2;
  overflow: hidden;
}
.contentbox-heading.bordertop {
  border-top: 1px solid #e2e2e2;
  margin-top: 0;
  padding-top: 20px;
}
.contentbox-topbox {
  margin: -20px -20px 20px -20px;
  padding: 0;
  border-bottom: 1px solid #e2e2e2;
  overflow: hidden;
}
.contentbox.opentop {
  border-top: none;
  border-radius: 0 0 4px 4px;
}
.thumbnailbox {
  width: 210px;
  height: 210px;
  margin: 0 auto;
  overflow: hidden;
  border: 5px solid #f9f9f9;
  border-radius: 50%;
  background-size: cover;
  background-position: center center;
  box-shadow: 0 0 0 1px #e2e2e2;
  position: relative;
  z-index: 99;
}
.thumbnailbox + .contentbox {
  padding-top: 120px;
  margin-top: -100px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .contentbox.home-feature {
    height: 430px;
  }
}
@media screen and (min-width: 1200px) {
  .contentbox.home-feature {
    height: 360px;
  }
}
/* facebook button */
.facebook-button {
  display: block;
  position: relative;
  background-color: #3b5998;
  border-bottom: 2px solid #29487d;
  border-radius: 4px;
  color: #fff !important;
  padding: 15px 15px 15px 70px;
  transition: all 0.25s ease;
  max-width: 100%;
  width: 270px;
}
.facebook-button:before {
  content: "\f09a";
  font-family: "Fontawesome";
  display: block;
  position: absolute;
  left: 15px;
  line-height: 2.5;
  font-size: 1.15em;
  width: 2.5em;
  height: 2.5em;
  text-align: center;
  vertical-align: middle;
  border-radius: 4px;
  background-color: #274482;
  transition: all 0.5s ease;
}
.facebook-button:hover, .facebook-button:focus {
  background-color: #274482;
  border-color: #203a73;
}
.facebook-button:hover:before, .facebook-button:focus:before {
  background-color: #3b5998;
}
/* phoneheader */
.mobilephoneheader {
  display: block;
  background: #666;
  background: -moz-linear-gradient(left, #666 0%, #222 100%);
  background: -webkit-linear-gradient(left, #666 0%, #222 100%);
  background: linear-gradient(to right, #666 0%, #222 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#666666', endColorstr='#222',GradientType=1);
  position: relative;
  margin-top: 15px;
  margin-left: -15px;
  margin-right: -15px;
}
.mobilephoneheader .top {
  padding: 15px;
  height: 85px;
  position: relative;
}
.mobilephoneheader .bottom {
  padding: 15px;
}
.mobilephoneheader:after {
  display: none;
}
.mobilephoneheader .top:after {
  position: absolute;
  content: " ";
  display: block;
  background: url(img/iphone.png) no-repeat;
  background-size: cover;
  width: 100px;
  height: 100px;
  right: 15px;
  top: -15px;
}
.mobilephoneheader .title {
  text-transform: uppercase;
  display: block;
  letter-spacing: 0.1em;
  font-size: 13px;
}
.mobilephoneheader .number {
  font-size: 22px;
  letter-spacing: 0.1em;
}
.mobilephoneheader .number a {
  color: #fff;
}
.mobilephoneheader .bottom {
  font-size: 13px;
  background: #e32f2e;
}
@media (min-width: 768px) {
  .mobilephoneheader {
    border-radius: 5px;
    margin-left: 0;
    margin-right: 0;
  }
  .mobilephoneheader .bottom {
    border-radius: 0 0 5px 5px;
  }
}
@media (min-width: 991px) {
  .mobilephoneheader:after {
    position: absolute;
    content: " ";
    display: block;
    background: url(img/ipad.png) no-repeat;
    background-size: cover;
    width: 100px;
    height: 100px;
    right: 15px;
    top: -15px;
  }
  .mobilephoneheader .top:after {
    width: 75px;
    height: 75px;
    right: 100px;
    top: 10px;
  }
}
/*------------------------------------------------------------------------*\
 COMMENTS
 \*------------------------------------------------------------------------*/
.comments {
  font-size: 13px;
}
.comments ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.depth-1 {
  margin: 15px 0 15px;
  overflow: hidden;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.depth-1 > ul.children {
  margin-left: 15px;
  margin-right: 15px;
}
ul.children {
  overflow: hidden;
  margin-left: 20px;
}
.comment-body {
  padding: 15px;
}
.children .comment-body {
  margin-bottom: 15px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.comment-meta {
  font-size: 12px;
  margin-top: 1.5rem;
}
.comment-content a {
  word-wrap: break-word;
}
.reply {
  margin-top: 15px;
}
/* author vcard */
.comment-author {
  line-height: 50px;
  margin: 0 -15px 15px -15px;
  padding: 0 15px 15px 15px;
  border-bottom: 1px solid #ddd;
}
.comment-author .avatar {
  width: 50px;
  height: 50px;
  margin-right: 15px;
  border-radius: 50%;
}
.comment-author .fn {
  font-style: normal;
  font-weight: bold;
}
/* Respond wrapper */
#respond {
  margin: 15px 0;
  padding: 15px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}
.depth-1 > #respond {
  margin: 0 15px 15px 15px;
}
#reply-title {
  margin: 0 -15px 15px -15px;
  padding: 0 15px 15px 15px;
  border-bottom: 1px solid #ddd;
}
/* comment-form */
.comment-form label {
  display: inline-block;
  min-width: 118px;
  line-height: 35px;
}
.comment-form .comment-notes, .comment-form .logged-in-as {
  margin: 0;
  padding-bottom: 10px;
}
.comment-form .comment-form-email, .comment-form .comment-form-author {
  margin: 5px 0 0;
}
.comment-form .comment-form-url, .comment-form .comment-form-comment {
  margin: 5px 0 15px;
}
.comment-form .form-submit {
  margin: 0;
  clear: both;
}
.comment-form textarea {
  width: 400px;
  min-height: 185px;
}
@media (min-width: 768px) {
  .comment-form {
    margin-left: -15px;
    margin-right: -15px;
  }
  .comment-form label {
    display: block;
  }
  .comment-form > p {
    padding: 0 15px;
  }
  .comment-form .comment-form-comment, .comment-form .comment-form-author, .comment-form .comment-form-email, .comment-form .comment-form-url {
    max-width: 50%;
    float: left;
  }
}
/*------------------------------------------------------------------------*\
 BUTTONS
 \*------------------------------------------------------------------------*/
.btn, button, input[type="reset"], input[type="submit"] {
  display: inline-block;
  font-size: 14px;
  line-height: 17px;
  padding: 6px 14px;
  font-weight: normal !important;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  border-left: none;
  border-right: none;
  border-radius: 4px !important;
  transition: all 0.25s ease;
}
button:disabled{
  color: #fff !important;
}
.btn:focus, button:focus, input[type="reset"]:focus, input[type="submit"]:focus {
  outline: none !important;
  box-shadow: inset 0px 1px 5px -1px rgba(0, 0, 0, 0.1) !important;
}
.btn.sm, button.sm, input[type="reset"].sm, input[type="submit"].sm {
  font-size: 12px;
  line-height: 14px;
  padding: 7px 12px;
}
/* btn-primary  ---------- */
.btn-primary, input[type="reset"], input[type="submit"] {
  color: #fff !important;
  border-top-color: #f33 !important;
  border-bottom-color: #c00 !important;
  background-color: red !important;
}
.btn-primary:hover, .btn-primary:active, input[type="reset"]:hover, input[type="reset"]:active, input[type="submit"]:hover, input[type="submit"]:active {
  color: #fff !important;
  border-top-color: #e20000 !important;
  border-bottom-color: #a20000 !important;
  background-color: #d50000 !important;
}
.btn-primary:focus, input[type="reset"]:focus, input[type="submit"]:focus {
  color: #fff !important;
  border-top-color: #e20000 !important;
  border-bottom-color: #a20000 !important;
  background-color: #d50000 !important;
}
/* btn-default  --------- */
.btn-default {
  color: red !important;
  border-color: #ddd;
  background-color: #f9f9f9;
}
.btn-default:hover, .btn-default:active {
  color: #777 !important;
  border-color: #ddd;
  background-color: #fff;
}
.btn-default:focus {
  color: #777 !important;
  border-color: #ddd;
  background-color: #f5f5f5;
}
/*------------------------------------------------------------------------*\
 FORMS
 \*------------------------------------------------------------------------*/
input[type="text"], input[type="date"], input[type="password"], input[type="email"], input[type="tel"], input[type="url"], input[type="search"], input[type="number"], textarea, select {
  color: #919191 !important;
  padding: 7px 10px;
  display: inline-block;
  font-size: 14px;
  transition: all 0.25s ease;
  -webkit-appearance: none;
  max-width: 100%;
  border: 2px solid #d3d3d3 !important;
  background: #f9f9f9 !important;
  font-family: inherit;
  line-height: 17px;
  border-radius: 3px !important;
  box-shadow: none !important;
}
select {
  position: static;
  height: 33px;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #f9f9f9 inset !important;
  -webkit-text-fill-color: #919191 !important;
}
.form-control:focus, input[type="text"]:focus, input[type="date"]:focus, input[type="password"]:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="number"]:focus, textarea:focus, select:focus {
  color: #777 !important;
  border: 2px solid red !important;
  background: #fff !important;
  box-shadow: inset 50px #fff !important;
}
/* search form  ------------------ */
.searchform {
  margin-bottom: 30px;
  /* equal to .page-title */
  overflow: hidden;
}
input.search-input {
  overflow: hidden;
  float: left;
  padding-right: 35px;
  width: 280px;
  max-width: 100%;
}
button.search-submit {
  color: #aaa;
  width: 35px;
  margin-left: -36px;
  margin-top: 1px;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  border: none;
  border-radius: 0;
  background: none;
  float: left;
}
button.search-submit:hover, button.search-submit:focus {
  color: #919191;
  box-shadow: none;
}
/* contactform7 */
iframe {
  max-width: 100%;
}
div.wpcf7-response-output {
  margin: 20px 0 0 0;
}
.wpcf7 .row {
  display: block;
  margin-bottom: 10px;
  line-height: 35px;
}
.wpcf7 label {
  line-height: 35px;
}
.wpcf7 textarea {
  width: 100%;
  margin-bottom: 10px;
}
.wpcf7 .info {
  display: block;
  font-size: 12px;
  border-bottom: 1px solid #e2e2e2;
  margin: -20px -20px 20px -20px;
  padding: 20px 20px 20px 20px;
}
.wpcf7 input[type="file"] {
  display: block;
  width: 100%;
  font-size: 12px;
  margin-bottom: 20px;
}
.wpcf7 input[type="file"]:focus, .wpcf7 input[type="file"]:active {
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: none;
}
.wpcf7 hr {
  margin: 20px -20px 20px -20px;
  display: block;
  height: 1px;
  border: none;
  background: #e2e2e2;
}
.wpcf7 .uhr {
  display: block;
  float: right;
  max-width: 68px;
  position: relative;
}
.wpcf7 .uhr:before {
  position: absolute;
  display: inline-block;
  left: -1.5em;
  content: "\f017";
  color: #999;
  font-family: "Fontawesome";
}
.wpcf7-form-control-wrap.m2, .wpcf7-form-control-wrap.zimmeranzahl {
  display: block;
  width: 100% !important;
}
.wpcf7-form-control-wrap.m2 input, .wpcf7-form-control-wrap.zimmeranzahl input {
  width: 100%;
}
/* wpcf7 checkboxes */
.wpcf7-checkbox .wpcf7-list-item {
  display: block;
  margin-left: 0;
  margin-right: 0;
}
.wpcf7-checkbox label {
  width: 100%;
  line-height: 25px;
  display: inline-block;
  padding-left: 25px;
  position: relative;
}
.wpcf7-checkbox .wpcf7-list-item-label {
  display: inline;
  margin-left: -3px;
}
.wpcf7-checkbox input[type="checkbox"] {
  display: block;
  float: left;
  margin-right: 0;
  margin-left: -20px;
  margin-top: 5px;
  width: 15px;
}
/*------------------------------------------------------------------------*\
 WOOCOMMERCE
 \*------------------------------------------------------------------------*/
.woocommerce ul.products {
  margin-left: -10px;
  margin-right: -10px;
}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product, .woocommerce-page[class*=columns-] ul.products li.product, .woocommerce[class*=columns-] ul.products li.product {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.woocommerce ul.products li.product:last-child {
  margin-bottom: 0;
}
.woocommerce ul.products .product p.wc-gzd-additional-info {
  display: none;
}
@media (min-width: 360px) {
  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product,
  .woocommerce-page[class*=columns-] ul.products li.product,
  .woocommerce[class*=columns-] ul.products li.product {
    width: 50%;
  }

  .woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
    display: block;
  }

}
@media (min-width: 768px) {
  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product,
  .woocommerce-page[class*=columns-] ul.products li.product,
  .woocommerce[class*=columns-] ul.products li.product {
    width: 33.33%;

  }
  .woocommerce ul.products.columns-4 li.product,
  .woocommerce-page ul.products.columns-4 li.product,
  .woocommerce-page[class*=columns-] ul.products.columns-4 li.product,
  .woocommerce[class*=columns-] ul.products.columns-4 li.product {
    width: 25%;

  }
  .woocommerce ul.products li:nth-last-child(-n+3) {
    margin-bottom: 0;
  }
}
/*
@media (min-width: 992px) {
  .woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
    min-height: 355px;
  }
}
*/
@media (min-width: 1200px) {
  .woocommerce ul.products {
    margin-left: -15px;
    margin-right: -15px;
  }
  .woocommerce ul.products li.product, .woocommerce-page ul.products li.product, .woocommerce-page[class*=columns-] ul.products li.product, .woocommerce[class*=columns-] ul.products li.product {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.single-product #content[role="main"] {
  border-top: none;
  padding: 0;
}
.single-product .up-sells ul.products {
  margin-bottom: 0;
}
.single-product .up-sells .type-product {
  border: none;
}
.woocommerce div.product h1.product_title {
  padding-top: 20px;
}
.woocommerce div.product .woo-social-buttons span.nocount, .woocommerce div.product .woo-social-buttons span.hcount, .woocommerce div.product .woo-social-buttons {
  margin-bottom: 0 !important;
}
.single-product .type-product .entry-summary, .single-product .type-product .panel, .single-product .type-product .up-sells {
  padding: 0 20px 20px 20px !important;
  background: #f9f9f9;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  margin-bottom: 20px !important;
}
.single-product .type-product .up-sells {
  margin-bottom: 0 !important;
  margin-top: 20px;
}
.woocommerce > h2, .woocommerce > h3, .woocommerce > h4, .woocommerce > h5, .woocommerce > h6 {
  margin-top: 0;
}
.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
  margin: 0;
  padding: 0;
  border: none;
}
.woocommerce form.checkout_coupon .form-row, .woocommerce form.login .form-row, .woocommerce form.register .form-row {
  padding-left: 0;
  padding-right: 0;
}
.woocommerce-Button.button[name="login"] {
  margin-right: 10px;
}
@media (min-width: 992px) {
  .woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
    max-width: 48%;
  }
}
.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
  float: none;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  margin-bottom: 0;
}
.woocommerce-message {
  border-top-color: #666;
}
.woocommerce-message::before {
  color: #666;
}
.woocommerce-error, .woocommerce-info {
  border-top-color: #e32f2e;
}
.woocommerce-error:before, .woocommerce-info::before {
  color: #e32f2e;
}
a.edit::after {
  content: "\f040";
  font-family: "Fontawesome";
  display: inline-block;
  margin-left: 6px;
}
.select2-container--default .select2-selection--single {
  border: 2px solid #d3d3d3;
  height: 36px;
  background: #f9f9f9;
  line-height: 1.5;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #919191;
  line-height: 33px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 4px;
}
#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
  background: none;
}
#add_payment_method #payment ul.payment_methods, .woocommerce-cart #payment ul.payment_methods, .woocommerce-checkout #payment ul.payment_methods, #add_payment_method #payment div.form-row, .woocommerce-cart #payment div.form-row, .woocommerce-checkout #payment div.form-row {
  padding: 0;
  border: none;
}
#add_payment_method #payment div.payment_box p:last-child, .woocommerce-cart #payment div.payment_box p:last-child, .woocommerce-checkout #payment div.payment_box p:last-child {
  margin-top: 0;
}
#add_payment_method #payment div.payment_box, .woocommerce-cart #payment div.payment_box, .woocommerce-checkout #payment div.payment_box {
  background: #e32f2e;
  color: #fff;
}
#add_payment_method #payment div.payment_box::before, .woocommerce-cart #payment div.payment_box::before, .woocommerce-checkout #payment div.payment_box::before {
  border: 1em solid #e32f2e;
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
}
.woocommerce #payment .terms, .woocommerce #payment .wc-terms-and-conditions, .woocommerce-page #payment .terms, .woocommerce-page #payment .wc-terms-and-conditions {
  margin-bottom: 1em;
}
.woocommerce .quantity .qty {
  line-height: 22px;
}
.woocommerce div.product .summary p.price {
  margin-top: 0 !important;
}
.woocommerce div.product p.price del, .woocommerce div.product span.price del {
  display: block;
  clear: both;
}
@media (min-width: 786px) {
  .single-product #content[role="main"] {
    padding: 0;
  }
  .woocommerce-checkout-review-order-table, #add_payment_method #payment div.payment_box, .woocommerce-cart #payment div.payment_box, .woocommerce-checkout #payment div.payment_box {
    max-width: 48%;
  }
}
.woocommerce fieldset {
  border: none;
  padding: 15px 0 0 0;
  margin-top: 15px;
  border-top: 1px solid #e2e2e2;
}
.woocommerce fieldset legend {
  display: inline-block;
  clear: both;
  font-weight: bold;
  background: #f9f9f9;
  padding-right: 10px;
}
.woocommerce fieldset .form-row {
  padding: 0;
}
.woocommerce ul.products li.product .price, .woocommerce div.product p.price, .woocommerce div.product span.price {
  color: red;
}
.woocommerce div.product p.price {
  margin: 1.5em 0;
}
.woocommerce span.onsale {
  color: #fff;
  background: red;
}
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
  font-weight: normal;
  color: #fff;
  background: red;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  border: 1px solid red;
  border-top-color: #f33 !important;
  border-bottom-color: #c00 !important;
  border-radius: 4px;
}
.woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover {
  color: #fff;
  background: #e60000;
  border-color: #e60000;
  border-top-color: #e20000 !important;
  border-bottom-color: #a20000 !important;
}
.woocommerce #respond input#submit:focus, .woocommerce a.button:focus, .woocommerce button.button:focus, .woocommerce input.button:focus {
  color: #fff;
  background: #c00;
  border-color: #c00;
  border-top-color: #e20000 !important;
  border-bottom-color: #a20000 !important;
}
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
  background-color: red;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  border: 2px solid red;
  border-top-color: #f33 !important;
  border-bottom-color: #c00 !important;
  border-radius: 5px;
}
.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
  background-color: #e60000;
  border-color: #e60000;
  border-top-color: #e20000 !important;
  border-bottom-color: #a20000 !important;
}
.woocommerce #respond input#submit.alt:focus, .woocommerce a.button.alt:focus, .woocommerce button.button.alt:focus, .woocommerce input.button.alt:focus {
  background-color: #c00;
  border-color: #c00;
  border-top-color: #e20000 !important;
  border-bottom-color: #a20000 !important;
}
.woocommerce div.product form.cart .button.single_add_to_cart_button {
  line-height: 1.3;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
  width: 100%;
  margin-bottom: 20px;
}
.woocommerce-account .woocommerce-MyAccount-navigation li a {
  display: block;
  padding: 5px 0;
  border-bottom: 1px solid #e2e2e2;
}
.woocommerce-account .woocommerce-MyAccount-navigation li a::before {
  content: "\f0da";
  display: inline-block;
  font-family: "Fontawesome";
  margin-right: 10px;
}
.woocommerce-account .woocommerce-MyAccount-content {
  width: 100%;
}
.woocommerce-account .woocommerce-MyAccount-content > p {
  margin-top: 0;
}
@media (min-width: 768px) {
  .woocommerce-account .woocommerce-MyAccount-navigation {
    width: 25%;
  }
  .woocommerce-account .woocommerce-MyAccount-content {
    width: 72%;
  }
}
.woocommerce table.my_account_orders .button.view {
  margin-right: 10px;
}
a.invoice {
  border: none !important;
  background: none !important;
  color: red !important;
  padding: 0.618em 0 !important;
}
a.invoice:before {
  content: "\f1c1";
  font-family: "Fontawesome";
  display: inline-block;
  margin-right: 5px;
}
a.invoice:hover {
  color: #777 !important;
}
a.invoice:focus {
  color: #777 !important;
}
#rating, #tab-reviews {
  display: block !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: 1px solid #e2e2e2;
    background-color: #f2f2f2;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:before,
.woocommerce div.product .woocommerce-tabs ul.tabs li:after {
    display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  color: #777;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:focus {
  color: #999;
}
#tab-reviews {
  margin-bottom: 0;
}
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
  position: relative;
}
.woocommerce ul.products li.product .star-rating {
  font-size: 1em;
  position: absolute;
  top: 5px;
  left: 5px;
}
.woocommerce .star-rating::before, .woocommerce .star-rating span {
  color: red !important;
}
@media (min-width: 768px) {
  .woocommerce ul.products li.product .star-rating {
    top: 10px;
    left: 10px;
  }
}
.woocommerce div.product .woocommerce-product-rating {
  margin-bottom: 1em;
}
.woocommerce #reviews #comments ol.commentlist {
  padding-left: 0;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text {
  margin-left: 0;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
  border: none;
}
.woocommerce #reviews #reply-title {
  color: #555;
  font-size: 1.2em;
  border-bottom: none;
}
.woocommerce #reviews #comment {
  height: 70px;
  min-height: 70px;
}
.woocommerce #review_form #respond p.form-submit {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .comment-form-rating, .comment-form-comment {
    width: 50%;
    float: right;
    margin-top: 10px !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}
#billing_state_field {
  display: none !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
  position: relative;
  top: 1px;
  margin-bottom: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: #f9f9f9;
  border-color: #e2e2e2;
  border-bottom-color: #f9f9f9;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active:before,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active:after,
.woocommerce div.product .woocommerce-tabs ul.tabs:before {
  display: none;
}
/*------------------------------------------------------------------------*\
 MISC
 \*------------------------------------------------------------------------*/
::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #c4c4c4;
}
:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #c4c4c4;
  opacity: 1;
}
::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #c4c4c4;
  opacity: 1;
}
:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #c4c4c4;
}
::selection {
  background: #d50000 !important;
  color: #fff !important;
  text-shadow: none;
}
::-webkit-selection {
  background: #d50000 !important;
  color: #fff !important;
  text-shadow: none;
}
::-moz-selection {
  background: #d50000 !important;
  color: #fff !important;
  text-shadow: none;
}
/*------------------------------------------------------------------------*\
 PRINT
 \*------------------------------------------------------------------------*/
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a, a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
    content: "";
  }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2, h3 {
    page-break-after: avoid;
  }
}
/*------------------------------------------------------------------------*\
 RESPONSIVE
 \*------------------------------------------------------------------------*/
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
