/*
Theme Name: ImmoSuWe
Theme URI: http://www.marketport.de
Author: Paul Treubrodt
Author URI: http://www.marketport.de
Description: Build with Bootstrap CSS Framework
Version: 1.0
Text Domain: immosuwe
*/

/*** Header ***/


/* Lato-300 - latin */
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 300;
    src: url('./fonts/Lato-Light.ttf') format('truetype');
}

/* Lato-300italic - latin */
@font-face {
    font-family: 'Lato';
    font-style: italic;
    font-weight: 300;
    src: url('./fonts/Lato-LightItalic.ttf') format('truetype');
}

/* OpenSans-regular - latin */
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    src: url('./fonts/Lato-Regular.ttf') format('truetype');
}

/* OpenSans-italic - latin */
@font-face {
    font-family: 'Lato';
    font-style: italic;
    font-weight: 400;
    src: url('./fonts/Lato-Italic.ttf') format('truetype');
}

/* OpenSans-700 - latin */
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    src: url('./fonts/Lato-Bold.ttf') format('truetype');
}

/* OpenSans-700italic - latin */
@font-face {
    font-family: 'Lato';
    font-style: italic;
    font-weight: 700;
    src: url('./fonts/Lato-BoldItalic.ttf') format('truetype');
}



body {
  padding: 0;
  font-size: 14px;
  color: #5f5f5f;
  font-family: 'Lato', sans-serif;
  background: #f6f6f6;
}
a { color: #000; }
  a:hover { color: #E9811A; }

h1,
h2,
h3,
h4,
h5 {
  margin: 20px 0 10px 0;
  padding: 0;
  font-size: 26px;
  font-weight: 200;
  text-transform: uppercase;
}

h1 { 
  margin: 0 0 20px 0;
  color: #e9811a;
}
h2 { font-size: 20px; }
h3 { font-size: 20px; }

p {
  margin: 0 0 15px 0;
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto; 
}
  article p:last-child { margin: 0; }

img {
  max-width: 100%;
  height: auto;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}

.alignleft,
.alignright {
  display: block;
  margin: 10px 0;
}
.box {
  padding: 20px;
  background: #fff;
}
.sidebar-box {
  margin: 0 0 30px 0;
  padding: 25px;
  background: #fff;
}
  .sidebar-box h3 {
    margin: 0 0 20px 0;
    color: #e9811a;
    font-size: 20px;
    font-weight: 200;
    text-transform: uppercase;    
  }
  .sidebar-contact .row { margin-bottom: 6px; }
  .sidebar-contact i { color: #e9811a }
  .sidebar-box input,
  .sidebar-box select,
  .sidebar-box textarea {
    margin: 0 0 7px 0;
  }

.btn-red {
  background-color: #FF1C00;
  color: #fff;
}

.actions ul li {
  list-style-type: none;
}

/** Forms **/
.form-control {
  background: #f2f2f2;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border: 1px solid #f2f2f2;
  box-shadow: none;
}
.form-control:focus {
  border: 1px solid #FFAD5A;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(255,173,90,0.4);
  -moz-box-shadow: 0px 0px 5px 0px rgba(255,173,90,0.4);
  box-shadow: 0px 0px 5px 0px rgba(255,173,90,0.4);
}
.contact .form-control { margin: 0 0 5px 0; }

/** Buttons **/
.btn {
  padding: 10px 15px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border: none;
  -webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.25);
  -moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.25);
  box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.25);
}
  .btn-margin { margin: 40px 0; }
  .btn-green,
  .btn-primary {
    color: #fff;
    background: #62ad80; /* Old browsers */
    background: -moz-linear-gradient(top,  #62ad80 0%, #327f51 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #62ad80 0%,#327f51 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #62ad80 0%,#327f51 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#62ad80', endColorstr='#327f51',GradientType=0 ); /* IE6-9 */
  }
    .btn-green:hover,
    .btn-primary:hover {
      color: #fff;
      background: #c9de96; /* Old browsers */
      background: -moz-linear-gradient(top,  #c9de96 0%, #8ab66b 44%, #398235 100%); /* FF3.6-15 */
      background: -webkit-linear-gradient(top,  #c9de96 0%,#8ab66b 44%,#398235 100%); /* Chrome10-25,Safari5.1-6 */
      background: linear-gradient(to bottom,  #c9de96 0%,#8ab66b 44%,#398235 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c9de96', endColorstr='#398235',GradientType=0 ); /* IE6-9 */
    }
  .btn-orange {
    color: #fff;
    background: #ffad5b; /* Old browsers */
    background: -moz-linear-gradient(top,  #ffad5b 0%, #ea821c 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #ffad5b 0%,#ea821c 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #ffad5b 0%,#ea821c 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffad5b', endColorstr='#ea821c',GradientType=0 ); /* IE6-9 */
  }
  .btn-orange:hover {
    color: #fff;
    background: #fac695; /* Old browsers */
    background: -moz-linear-gradient(top,  #fac695 0%, #f5ab66 47%, #ef8d31 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #fac695 0%,#f5ab66 47%,#ef8d31 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #fac695 0%,#f5ab66 47%,#ef8d31 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fac695', endColorstr='#ef8d31',GradientType=0 ); /* IE6-9 */
  }

/* =Header
-------------------------------------------------------------- */
.page-header {
  margin: 0;
  padding: 0;
  border-bottom: 0;
}
.header-top {
  padding: 60px 0 20px 0;
  text-align: center;
  background: #fff;
}
  .header-top .logo {
    width: auto;
    max-height: 40px;
  }
.header-bottom {
  margin-bottom: 30px;
  padding: 20px 0;
  background: url('images/header_immosuwe.jpg') no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;  
}
  .header-slogan {
    margin: 0 0 20px 0;
    color: #fff;
    font-size: 16px;
    font-weight: 300;
  }
    .header-slogan div {
      display: bock;
      font-size: 20px;
      font-weight: 400;
    }
    
.header-bottom-small {
  margin-bottom: 30px;
  padding: 0;     
  background: url('images/header_immosuwe_small.jpg') no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;  
}
  
.ads {
  margin: 0 -15px 0;
  padding: 20px 0;
  background: #ddd;
}
  .ads h5 {
    margin: 0 0 20px 0;
    color: #000;
    font-size: 18px;
    text-transform: none;
  }
  .ads img {
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
  }
  
/* =Back to top
-------------------------------------------------------------- */

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  color: #fff !important;
  font-size: 12px;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  background: #E9811A;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.15);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.15);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.15); 
}
  .back-to-top:hover, 
  .back-to-top:focus {
    opacity: 0.7;
    color: inherit;
  }
  .back-to-top i { margin: 13px 0 0 0; }
  
/* =Footer
-------------------------------------------------------------- */
  
.footer-widgets {
  margin: 30px -15px 0 -15px; 
  padding: 30px 0;
  background: #fff; 
}
  .footer-widgets h5 {
    margin: 0 0 20px 0;
    color: #e98318;
    font-size: 18px;
}
  .footer-widgets .menu {
    margin: 0 !important;
    padding: 0 !important;
  } 
    .footer-widgets .menu li {
      position: relative;
      list-style-type: none;
      margin: 0;
      padding: 0 0 0 30px;
      border-bottom: 1px dotted #ddd;
    } 
      .footer-widgets .menu li:after {
        position: absolute;
        top: 8px;
        left: 2px;
        font-family: 'fontello';
        content: '\e80a';
        color: #E9811A;
      }
      .footer-widgets .menu li a {
        display: block;
        padding: 8px 0;
      }
        .footer-widgets .menu li a:hover { 
          color: #999;
          text-decoration: none;
        }
  .footer-widgets input,
  .footer-widgets textarea { 
    margin: 0 0 7px 0 !important;
  } 

.footer-contact {
  margin: 0 -15px;
  padding: 20px 0;
  color: #fff;
  font-size: 18px;
  background: #E9811A;
}
.footer-legal {
  margin-top: 20px;
  margin-bottom: 20px;
  color: #aeaeae; 
  font-size: 14px;
  text-align: center;
}
  .footer-legal ul li {
    display: inline-block;
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
    .footer-legal ul li a {
      display: inline-block;
      padding: 5px 10px;
      color: inherit;
    }

  
  
/* =Page-Template: page-index.php
-------------------------------------------------------------- */
#index-realestate { padding: 20px 0 0 0; }
#feed-container {
  padding: 40px 0;
  background: #fff;
}
#feed-container h3.feed-title {
  font-size: 24px;
}
  #feed-container h3 {
    margin: 0 0 30px 0;
    color: #e98318;
  }
  #feed-container h3 a { color: #e98318; }
    #feed-container h3 a:hover {
      color: #000;
      text-decoration: none;
    }

#welcome { padding: 30px 0 0 0; }
  .index-welcome .left { margin: 0 0 20px 0; }
  .index-welcome h1 { color: #000; }

.index-news {
  padding: 15px;
  background: #f6f6f6;
}
  .index-news .news-image { margin: 0 0 20px 0; }
  .index-news h3 {
    margin: 0 0 15px 0;
    font-size: 20px;
  }
  .index-news p:last-child { margin: 0; }
  
.home .immoport-archive-item-container h3 {
  margin: 20px 0 0 0;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
}
  .home .immoport-archive-item-container h3 a:hover { text-decoration: none; }
  

/* Search Function Header */
.search-container {
  padding: 20px;
  background: #fff;
}

/* Category */
.category .box { margin: 0 0 40px 0; }
.category .box h2 {
  margin: 0 0 20px 0;
  line-height: 26px;
}
  .category .box h2 a:hover { text-decoration: none; }
  
/* Single */
.article-meta { color: #999; }

/* Directory */
.directory-search {
  padding: 10px 20px;
  background: #f6f6f6;
}
  .directory-search input[type="text"] {
    margin: 2px;
    min-height: 22px;
    background: #fff;
  }
.directory { padding: 40px auto; }
  .directory h2,
  .directory h3 {
    margin: 0 0 25px 0;
    color: #d70000;
    font-size: 20px;
    line-height: 1.2;
    font-weight: normal;
  }
  .directory h4 {
    margin: 10px 0 10px 0; 
    color: #000;
    font-size: 20px;
    text-transform: none;
  }
    .directory h4 a {
      color: inherit;
      border: 0;
      text-decoration: none;
    }
    .directory h4 a:hover { color: #E9811A; }
  .directory-logo {
    margin: -40px 0 0 0;
    padding: 10px;
    background: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    width: 50px;
    height: 50px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
  }
.directory ul.directory-list { 
  margin: 0;
  padding: 0;
}  
  .directory ul.directory-list li {
    list-style-type: none;
    margin: 0 0 40px 0;
    padding: 20px;
    line-height: 22px;
    background: #fff;
    -webkit-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
  }
    .directory ul.directory-list li:hover {
      -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
      -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
      box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
    } 
  .directory ul.directory-list li img {
    max-width: 200px;
    height: auto;
  }
  .directory ul.directory-list li .directory-nologo {
    padding: 7px 20px;
    color: #666;
    font-size: 14px;
    text-transform: uppercase;
    background: #f6f6f6;
  }
    .directory ul.directory-list li .directory-nologo div {
      color: #E9811A;
      font-size: 14px;
    }
    
/* Single Directory */
.single-directory-top {
  padding: 15px;
  background: #e7e7e7;
}
  .single-directory-top img { margin: 0 0 10px 0; }
  .single-directory-top h2,
  .single-directory-top h3 {
    margin: 0 0 15px 0;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    text-transform: none;
    text-decoration: none;  
  }
.single-directory-bottom {
  padding: 15px;
  background: #fff;
}
  .single-directory-bottom h2,
  .single-directory-bottom h3 {
    margin: 0 0 15px 0;
    color: #e98318;
    font-size: 16px;
    font-weight: bold;
    text-transform: none;
    text-decoration: none;  
  }
  .single-directory-bottom p:last-child { margin: 0; }
  .sidebar-box h4 {
    margin: 0 0 15px 0;
    font-size: 18px;
  }
  .sidebar-box .form-group { margin: 0; }
  .sidebar-box .single-directory-contact p { margin: 0 !important; }

/* Plugin: mp immoport */
.immoport-search-container { margin: 0 0 30px 0; }
  .immoport-search { margin-bottom: 40px; }
    .immoport-search h1 {
      margin: 5px 0 10px 0;
      font-size: 20px;
      font-weight: 300;
    }
    .immoport-search hr { 
      margin-top: 0;
      border-top: 1px dotted #ddd;
    }
    .immoport-search-result { 
      color: #999;
      line-height: 30px;
    }
      .immoport-search-result i { 
        margin: 0 7px 0 0;
        opacity: 0.7;
      }
ul.immoport-archive-list {
    margin: 0;
    padding: 0;
}
  ul.immoport-archive-list > li {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
.immoport-archive-item-container {
  margin: 0 0 30px 0;
  background: #fff;
}
.immoport-archive-item-image { position: relative; }
.immoport-archive-item-image img {
    width: 100%;
    max-height: 228px;
  }
  .immoport-archive-item-image a { display: block; }
  .immoport-archive-item-image .immoport-archive-item-title {
    position: absolute;
    padding: 20px;
    left: 0;
    bottom: 0;
    width: 100%;
    background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.8) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.8) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#cc000000',GradientType=0 ); /* IE6-9 */
    -webkit-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;  
  }
    .immoport-archive-item-container:hover .immoport-archive-item-image .immoport-archive-item-title { opacity: 0.0; }
    .immoport-archive-item-image .immoport-archive-item-title h2 {
      margin: 0;
      color: #fff;
      font-size: 16px;
      font-weight: bold;
      text-transform: none;
    }
.immoport-archive-item-data { padding: 0 20px; }
  .immoport-archive-item-type {
    padding: 10px 0;
    font-size: 18px;
    color: #000;
  } 
  .immoport-archive-item-city {
    padding: 0 0 10px 0;
    color: #999;
    border-bottom: 1px dotted #ddd;  
  }
    .immoport-archive-item-city i {
      margin: 0 10px 0 -4px;
      color: #eb6909;
    } 
  .immoport-archive-item-details {
    padding: 10px 0;
    color: #999; 
    background: #fff;
    font-size: 13px; 
  } 
    .immoport-archive-item-details .price { color: green; }
  .import-archive-item-description { margin: 20px 0 0 0; }

.immoport-archive .immoport-archive-map {
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.20);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.20);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.20);
} 

ul.immoport-archive-item-details-item {
  margin: 0;
  padding: 0;
}
  ul.immoport-archive-item-details-item li {
    position: relative;
    list-style-type: none;
    float: left;
    margin: 0 20px 0 0;
  }
    ul.immoport-archive-item-details-item li span:after {
      position: absolute;
      content: "•";
      right: -12px;
      top: 0;
      opacity: 0.5;
    }
      ul.immoport-archive-item-details-item li:last-child span:after { content: ""; }

/* Archive Immobilien */  

.page-template-page-immobilien .price {
  position: absolute;
  padding: 2px 10px;
  color: #fff;
  font-size: 16px;
  left: 20px;
  bottom: 20px;
  background: #4C4646;
  border-radius: 3px;
}
.page-template-page-immobilien .immoport-archive-item-title h2 {
  margin: 30px 0 10px 0;
  color: #E9811A;
  font-size: 22px;
}
  .page-template-page-immobilien .immoport-archive-item-title h2 a { color: inherit; }
    .page-template-page-immobilien .immoport-archive-item-title h2 a:hover {
      text-decoration: none;
      opacity: 0.7;
    }

.single-immobilien h1 { 
  margin-bottom: 5px;
  font-size: 20px;
}
.single-immobilien .page-header { margin-bottom: 0; }
.single-immobilien .subheadline { margin-bottom: 20px; }

.single-immobilien .immoport-list-item {
  padding-top: 7px;
  padding-bottom: 7px;
  border-bottom: 1px solid #f0f0f0;  
}
.single-immobilien .single-immoport-contactform .panel-heading {
  color: #fff;
  background: #E88018;
  border-color: #E88018;  
}
.single-immobilien .panel-body p:last-child { margin: 0; }
.gm-style-iw div div img {
  margin: 5px 0 10px 0;
  width: 100%;
  height: auto; 
}

/* Energieausweis */
.epass {
    display: block;
    max-width: 600px;
    width: 100%;
    margin-top: 30px;
}
  .epass .arrow {
      background-repeat: no-repeat;
      background-size: auto 100%;
      height: 30px;
  }
  .epass .overlayarrowtop { height: 20px; }
  .epass .value-text {
      font-size: 13px;
      line-height: 1.1em;
      width: 45%;
  }
    .epass .value-text .endenergie_label { font-weight: bold; }
  .epass .move-right { margin-left: 55%; }
  .epass .scale-arrow {
      width: 55%;
      height: 10px;
      display: block;
      float: left;
  }
  .epass .scale-platz {
      width: 100%;
      height: 18px;
      display: block;
      margin-bottom: 10px;
  }
  .epass .glyphicon-arrow-down {
      width: 4%;
      display: block;
      float: left;
      font-size: 25px;
  }
  .epass-diagram {
      background-image: url('img/epass_skala.jpg');
      background-repeat: no-repeat;
      background-size: 100% 100%;
      border-radius: 4px;
      color: #000;
      height: 51px;
  }
    .epass-diagram .classes {
        font-size: 12px;
        height: 20px;
        line-height: 20px;
        top: 0;
        width: 100%;
    }
      .epass-diagram .classes span {
          border-right: 1px solid #000;
          float: left;
          text-align: center;
      }
        .epass-diagram .classes span:last-child { border-right: 0 none; }
    .epass-diagram .classes .a { width: 7.27%;}
    .epass-diagram .classes .b,
    .epass-diagram .classes .c { 
      width: 9.09%;
    }
    .epass-diagram .classes .aplus, 
    .epass-diagram .classes .d, 
    .epass-diagram .classes .e { 
      width: 10.91%;
    }
    .epass-diagram .classes .f { width: 14.52%; }
    .epass-diagram .classes .g { width: 18.18%; }
    .epass-diagram .classes .h { width: 7%; }
    .epass-diagram .classes .active {
      font-size: 1.5em;
      font-weight: bold;
    }
    .epass-diagram .scala {
      background-color: #fff;
      height: 12px;
      top: 20px;
      width: 100%;
    }
    .epass-diagram .scala span {
      float: left;
      font-size: 12px;
      height: 12px;
      line-height: 12px;
      text-align: left;
    }
    .epass-diagram .alt span { width: 11.1%; }
    .epass-diagram .neu span { width: 9.05%; }
    .epass-diagram .scala span:first-child { padding-left: 1%; }
    .epass-diagram .scala span:last-child {
      padding-left: 1%;
      width: 8%;
    }

/* Login/Registration Page */
#login-password-register input,
#login-password-reset input {
  margin-bottom: 15px;
}

#login-password-register input[type="number"] {
  -moz-appearance: textfield;
  -webkit-appearance: none;
}

#mp-userlogin_forgotlink { cursor: pointer; }

/* Immobilienform */
#immobilienform .immo-detail-wrapper {
  background-color: #fff;
  margin: 0 15px;
  padding: 30px;
}

#immobilienform .immo-detail-wrapper .form-item {
  width: 100%;
  float: left;
  clear: left;
  margin-bottom: 10px;
}

#immobilienform .immo-detail-wrapper .form-item .label {
  color: #000;
  font-size: 15px;
  text-align: left;
  padding-left:0;
}

#immobilienform .immo-detail-wrapper .first .form-item .label {
  float: left;
  width: 150px;
}

#immobilienform .immo-detail-wrapper .form-item .form-fields { width: 100%; }

#immobilienform .immo-detail-wrapper .form-item .form-fields input[type="text"],
#immobilienform .immo-detail-wrapper .form-item .form-fields input[type="number"],
#immobilienform .immo-detail-wrapper .form-item .form-fields select,
#immobilienform .immo-detail-wrapper .form-item .form-fields textarea {
  padding: 5px;
  background-color: #f6f6f6;
  border: 1px solid grey;
}

/* Conversion Break */
.conversion-break {
  margin: 40px 0; 
  padding: 10px 15px;
  color: #999;
  font-size: 16px;
  background: #fff;
}
  .conversion-break h5 {
    margin: 0 0 10px 0;
    color: #000;
    font-size: 20px;
    text-transform: uppercase;
  }
  
/* Categpory Directory */
.tax-branchenbuchcat .tag-search { margin: 20px 0 0 0; } 
  
/* Pagination */
.pagination > li > a, 
.pagination > li > span {
  color: #888;
}
  .pagination > .active > a, 
  .pagination > .active > a:focus, 
  .pagination > .active > a:hover, 
  .pagination > .active > span, 
  .pagination > .active > span:focus, 
  .pagination > .active > span:hover {
    background-color: #E9811A;
    border-color: #E9811A;
  }
    .pagination > li:first-child > a, 
    .pagination > li:first-child > span,
    .pagination > li:last-child > a, 
    .pagination > li:last-child > span {
      border-radius: 0;
      -webkit-border-radius: 0;
      -moz-border-radius: 0;
    }

/* Tabs jQuery UI Tabs */
.ui-tabs-nav {
  margin: 0 0 20px 0;
  padding: 0;
}
  .ui-tabs-nav > li {
    display: inline-block;
  } 
    .ui-tabs-nav > li a {
      display: block;
      padding: 6px 40px;
      background: #fff;
    }
    .ui-tabs-nav > li.ui-tabs-active a,
    .ui-tabs-nav > li a:hover {
      color: #fff;
      background: #4B4646;
    }
    
.login-menu {
    padding-left: 0;
    margin-bottom: 30px;
}
  .login-menu li {
      float: left;
      margin: 0 3px 0 0;
      list-style-type: none;
  }
    .login-menu li a {
        display: inline-block;
        padding: 10px 20px;
        background: #E9811A;
        color: #fff;
    }

.profile-edit .input-Group { margin-bottom: 15px; }

#immobilienform { margin-top: 30px; }
    #immobilienform .item {
        margin: 0 0 30px 0; 
        padding: 30px;
        background: #fff;
    }

.inserat-bearbeiten .form-control {
    width: 100%;
    margin-bottom: 15px;
}
.inserat-bearbeiten .form-item .input-group { width: 100%; }
.inserat-bearbeiten .label { padding-left: 0; }

.inserat-bearbeiten .label img {
  float: left;
  clear: left;
  max-width: 100%;
}
.inserat-bearbeiten .label label {
  color: #555;
  font-size: 14px;
  float: left;
  clear: left;
  width: 100%;
  text-align: left;
}
.inserat-bearbeiten h3 { font-size: 22px; }

/* New Inserat form */
#immobilienform input,
#immobilienform select,
#immobilienform textarea,
.profile-edit input,
.profile-edit select,
.profile-edit textarea {
  background-color: #f6f6f6;
}

.page-template-page-immobilienform-php #immobilienform {
    background-color: transparent;
    padding: 0;
}

#immobilienform #immoform-type input,
#immobilienform #immoform-choose-usetype input {
  width: 1px;
  height: 1px;
  position: relative;
  top: -30px;
  left: 20px;
  z-index: -1;
}
#immobilienform #immoform-type label {
  border: 2px solid #fff;
  padding: 20px 0;
  background-color: #fff;
  cursor: pointer;
  width: 100%;
  text-align: center;
}
#immobilienform #immoform-type .active label { border-color: #E9811A; } 
#immobilienform #immoform-choose-usetype { margin-bottom: 35px; }
#immobilienform #immoform-choose-usetype label {
    border: 2px solid #fff;
    text-align: center;
    padding: 10% 30%;
    width: 100%;
    background-color: #fff;
    cursor: pointer;
    min-height: 191px;
    font-weight: 100;
    font-size: 18px;
    line-height: 60px;
}
#immobilienform #immoform-choose-usetype label img {
  width: 70%;
  margin: 0 auto;
}
#immobilienform #immoform-choose-usetype .active label { border-color: #E9811A; }
#immobilienform h2 {
  color: #E9811A;
  margin-bottom: 30px;
}
#immobilienform #immoform-more-details-wrapper .form-control { max-width: 500px; }
#immobilienform .form-control,
#immobilienform .input-group-addon,
.profile-edit .form-control {
    border: none !important;
    border-radius: 0;
    box-shadow: none;
}
#immobilienform #immoform-more-details-wrapper .first input[name="geo_strasse"],
#immobilienform #immoform-more-details-wrapper .first input[name="kontaktperson_strasse"] {
    float: left;
    max-width: 195px;
    margin-right: 5px;
    width: 100%;
    margin-bottom: 10px;
}
#immobilienform #immoform-more-details-wrapper .first input[name="geo_hausnummer"],
#immobilienform #immoform-more-details-wrapper .first input[name="kontaktperson_hausnummer"] {
    float: left;
    max-width: 95px;
    margin-right: 5px;
    width: 100%;
    margin-bottom: 10px;
}
#immobilienform #immoform-more-details-wrapper .first input[name="geo_ort"],
#immobilienform #immoform-more-details-wrapper .first input[name="kontaktperson_ort"]{
  float: left;
  max-width: 150px;
  margin-bottom: 10px;
}
#immobilienform #immoform-more-details-wrapper .first input[name="geo_plz"],
#immobilienform #immoform-more-details-wrapper .first input[name="kontaktperso_plz"] {
  float: left;
  max-width: 45px;
  margin-right: 5px;
  width: 100%;
  margin-bottom: 10px;
}
#immobilienform #immoform-more-details-wrapper .first input[name="preise_kaufpreis"],
#immobilienform #immoform-more-details-wrapper input[name="flaechen_wohnflaeche"],
#immobilienform #immoform-more-details-wrapper input[name="flaechen_grundstuecksflaeche"],
#immobilienform #immoform-more-details-wrapper input[name="flaechen_gartenflaechen"],
#immobilienform #immoform-more-details-wrapper input[name="flaechen_nutzflaeche"],
#immobilienform #immoform-more-details-wrapper input[name="volumen"] {
    max-width: 450px;
    float: left;
}
#immobilienform #immoform-more-details-wrapper .input-group-addon {
  float: left;
  width: 50px;
  padding: 10px 0;
}

#immobilienform .immo-detail-wrapper.last { padding: 45px; }
#immobilienform #immoform-more-details-wrapper .address .form-item .label {
  float: left;
  clear: left;
  width: 100%;
}

#immobilienform .action .btn {
  float: right;
  margin-top: 20px;
}

.header-bottom .form-tab p {
  margin-bottom: 0;
  color: #E9811A;
  font-weight: 600;
  text-transform: uppercase;
}
.header-bottom .form-tab {
  background-color: #fff;
  padding: 10px 20px 7px 20px;
  display: inline-block;
}

/* Header Search-Forms */
.search-tabs { 
  margin: 0;
  padding: 0;
}
  .search-tabs li {
    display: inline-block;
    text-transform: uppercase;
    background: #ddd;
  }
    .search-tabs li label {
      margin: 0;
      padding: 10px 20px 7px 20px;
      font-weight: 600;
      cursor: pointer;
    }
    .search-tabs li.active {
      color: #E9811A;
      background: #fff;
    } 
    .search-tabs li input { display: none; }  
    
.search-container {
    margin-bottom: 25px;
    padding: 20px;
    background: #fff;
}  
  .search-container .form-control { margin-bottom: 10px; }
  .search-container .tag-search a {
    display: inline-block;
    margin: 0 0 3px 0;
    padding: 2px 5px;
    color: #000;
    background: #ddd;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
  }
    .search-container .tag-search a:hover {
      text-decoration: none;
      opacity: 0.7;
    }

#immobilienform {
  background-color: #fff;
  padding: 20px;
}


.form-progress ul {
  padding-left: 0;
  margin-bottom: 30px;
}
.form-progress ul li {
  display: inline;
  margin: 0 10px;
  padding: 10px;
}
.form-progress ul li.seperator {
  margin: 0;
  color: #ddd;
}
.form-progress ul li a { color: #E9811A; }
.form-progress ul li.active { color: #E9811A; }

@media (max-width: 1200px) {

    #immobilienform #immoform-choose-usetype label { min-height: 169px; } 
    #immobilienform #immoform-more-details-wrapper .first input[name="preise_kaufpreis"], 
    #immobilienform #immoform-more-details-wrapper input[name="flaechen_wohnflaeche"], 
    #immobilienform #immoform-more-details-wrapper input[name="flaechen_grundstuecksflaeche"], 
    #immobilienform #immoform-more-details-wrapper input[name="flaechen_gartenflaechen"] {
        max-width: 360px;
    } 
    #immobilienform #immoform-choose-usetype label { padding: 10% 19%; }
    
}

@media (max-width: 992px) {

    #immobilienform #immoform-choose-usetype label { margin-bottom: 25px; }
    #immobilienform .address-field .label,
    #immobilienform .number-field .label {
        width: 100% !important;
    }
}

/* =Media queries
-------------------------------------------------------------- */

/* Does the same thing as <meta name="viewport" content="width=device-width">,
* but in the future W3C standard way. -ms- prefix is required for IE10+ to
* render responsive styling in Windows 8 "snapped" views; IE10+ does not honor
* the meta tag. See https://core.trac.wordpress.org/ticket/25888.
*/
@-ms-viewport {
  width: device-width;
}
@viewport {
  width: device-width;
}

/* Minimum width of 300 pixels. */
@media screen and (min-width: 300px) {
  .immoport-archive-item-button {
    position: absolute;
    right: 20px;
    bottom: 0;
  }
    .immoport-archive-item-button a {
      padding: 15px 20px;
      font-size: 12px;
      box-shadow: none;
      -moz-box-shadow: none;
      -webkit-box-shadow: none;
    }
}

/* Minimum width of 500 pixels. */
@media screen and (min-width: 500px) {
  .alignleft {
    float: left;
    margin: 5px 40px 20px 0;
  }
  .index-news { padding: 30px; }
  .btn { padding: 10px 30px; }
  .conversion-break { padding: 20px 40px; }
  .single-directory-top { padding: 40px; }
  .single-directory-bottom { padding: 40px; }
}

/* Minimum width of 600 pixels. */
@media screen and (min-width: 600px) {
  .header-bottom { padding: 40px 0; }
  .header-bottom-small {
    padding: 40px 0;     
    min-height: 100px;
  }
  .header-slogan { margin: 0 0 40px 0; }
  .footer-widgets .menu li {
    float: left;
    width: 47.5%;
  }
  .footer-widgets .menu li:nth-child(2n) { margin: 0 0 0 5%; }
  
  /* Directory Single */
  .conversion-break h5 {
    margin: 0;
    color: #000;
    font-size: 24px;
    text-transform: uppercase;
  }
  
  /* mp immoport */
  .single-immobilien h1 { 
    margin-bottom: 30px;
    font-size: 24px;
  }
  .page-template-page-immobilien .immoport-archive-item-image { 
    float: left;
    width: 30%;
  }
  .page-template-page-immobilien .immoport-archive-item-data {
    float: right;
    width: 68%;
  }
}

/* Minimum width of 700 pixels. */
@media screen and (min-width: 700px) {

  .footer-widgets { padding: 50px 0; }
  .index-news .news-image { margin: 0; }
  #feed-container {
    padding: 50px 0;
    background: #fff;
  }
  #welcome { padding: 50px 0 20px 0; }
  .index-welcome .left {    
    float: left;
    width: 54%;
  }
  .index-welcome .right {    
    float: right;
    width: 40%;
  }
  
  .box {
    padding: 40px;
    background: #fff;
  }
  
}

/* Minimum width of 770 pixels. */
@media screen and (min-width: 770px) { 

  .header-top { 
    margin: 0 0 40px 0;
    padding: 20px 0;
  }
  .home .header-top { margin: 0; }
  .immoport-archive-index ul.immoport-archive-list > li {
    float: left; 
    width: 31.3333333333333333333333%;
  }
  .immoport-archive-index ul.immoport-archive-list > li:nth-child(2n) { margin: 0 3%; }
  .immoport-archive-index ul.immoport-archive-list > li:nth-child(3n) { margin: 0; }     
  .alignright {
    float: right;
    margin: 3px 0 30px 30px;
  }
  .footer-contact .text { line-height: 36px; }
  .footer-legal { text-align: right; }

}

/* Minimum width of 1000 pixels. */
@media screen and (min-width: 1000px) {

  /* Header */
  .header-slogan { font-size: 22px; }
  .header-slogan div { font-size: 28px; }  

  .ads { padding: 30px 0; }

    /* Categpory Directory */
  .tax-branchenbuchcat .tag-search { margin: 10px 0 0 0; }

  /* Footer Widgets */
  .footer-widgets .menu li {
    float: left;
    margin: 0;
    width: 30%;
  }
  .footer-widgets .menu li:nth-child(2) { margin: 0 0 0 5%; }
  .footer-widgets .menu li:nth-child(3) { margin: 0 0 0 5%; }
  .footer-widgets .menu li:nth-child(4) { margin: 0; }
  .footer-widgets .menu li:nth-child(5) { margin: 0 0 0 5%; }
  .footer-widgets .menu li:nth-child(6) { margin: 0 0 0 5%; }
  .footer-widgets .menu li:nth-child(7) { margin: 0; }
  .footer-widgets .menu li:nth-child(8) { margin: 0 0 0 5%; }
  .footer-widgets .menu li:nth-child(9) { margin: 0 0 0 5%; }
  .footer-widgets .menu li:nth-child(10) { margin: 0; }
  .footer-widgets .menu li:nth-child(11) { margin: 0 0 0 5%; }
  .footer-widgets .menu li:nth-child(12) { margin: 0 0 0 5%; }
  .footer-widgets .menu li:nth-child(13) { margin: 0; }
  .footer-widgets .menu li:nth-child(14) { margin: 0 0 0 5%; }
  .footer-widgets .menu li:nth-child(15) { margin: 0 0 0 5%; }
  .footer-widgets .menu li:nth-child(16) { margin: 0; }
  .footer-widgets .menu li:nth-child(17) { margin: 0 0 0 5%; }
  .footer-widgets .menu li:nth-child(18) { margin: 0 0 0 5%; }
    
}


/* =Print
----------------------------------------------- */

@media print {
  body {
  background: none !important;
  color: #000;
  font-size: 10pt;
  }
}

.immoport-archive-item-container .image {
  padding-left: 0;
}

.immoport-archive-item-image {
  position: relative;
}

.immoport-archive-item-container .content h2 {
  color: #E9811A;
}

.immoport-archive-item-image .price {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: #4C4646;
  padding: 5px;
  color: #fff;
  border-radius: 5px;
}

.immoport-search .search-wrapper {
  background-color: #fff;
  float: left;
  clear: left;
  padding: 25px;
}

.immoport-archive .search-wrapper .form-control {
  width: 100%;
  margin-bottom: 20px;
}

.immoport-archive .search-wrapper .searchtype {
  text-align: right;
}

.immoport-archive .search-wrapper .page-title {
  font-size: 20px;
}
