/*! eifel, Compiled at 2019-09-03 09:08:58 */
/**
 * Eifel Tourismus - Hauptportal 2015
 *
 * LICENSE
 *
 * This software and its source code is protected by copyright law (Sec. 69a ff. UrhG).
 * It is not allowed to make any kinds of modifications, nor must it be copied,
 * or published without explicit permission. Misuse will lead to persecution.
 *
 * @copyright  2016 infomax websolutions GmbH
 * @link       http://www.infomax-it.de
 * @package    css
 * @subpackage fullMap
 * @author     gueldner
 * @since      07.01.2016
 * @version    $Id$
 **/
/*  =========================================================
general structure
image
text
loading animation
height profile
========================================================== */
/*  =========================================================
general structure
========================================================= */
@media screen {
  #fullMap__infoBoard {
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 100vw;
    z-index: 12;
    -webkit-transition: left 0.5s ease;
    transition: left 0.5s ease;
    /* arrow thingy */
  }
  #fullMap__infoBoard:before {
    content: '';
    display: block;
    width: 60px;
    height: 60px;
    margin: -30px -30px 0px 0px;
    position: absolute;
    top: 50%;
    right: 0%;
    -webkit-transform: rotateZ(45deg);
    -ms-transform: rotate(45deg);
        transform: rotateZ(45deg);
    background: #4c4c4c;
    -webkit-box-shadow: -5px 5px 5px rgba(0, 0, 0, 0.3);
    box-shadow: -5px 5px 5px rgba(0, 0, 0, 0.3);
    -webkit-transition: right 0.5s ease;
    transition: right 0.5s ease;
  }
}
/* show arrow only when infoboard is visible */
@media screen {
  body.infoBoardVisible #fullMap__infoBoard:before {
    right: 100%;
  }
}
/* different widths on different screen sizes */
@media screen and (min-width: 1401px) {
  #fullMap__infoBoard {
    width: 25vw;
  }
  body.infoBoardVisible #fullMap__infoBoard {
    left: 75vw;
  }
}
@media screen and (max-width: 1400px) and (min-width: 1001px) {
  #fullMap__infoBoard {
    width: 50vw;
  }
  body.infoBoardVisible #fullMap__infoBoard {
    left: 50vw;
  }
}
@media screen and (max-width: 1000px) and (min-width: 601px) {
  #fullMap__infoBoard {
    width: 75vw;
  }
  body.infoBoardVisible #fullMap__infoBoard {
    left: 25vw;
  }
}
@media screen and (max-width: 600px) {
  #fullMap__infoBoard {
    width: 100vw;
  }
  body.infoBoardVisible #fullMap__infoBoard {
    left: 0vw;
  }
}
/* closer button */
@media screen {
  #fullMap__infoBoard > a {
    position: absolute;
    top: 0px;
    right: 0px;
    background: #545454;
    color: #fff;
    text-align: center;
    text-decoration: none;
  }
}
@media screen and (min-width: 1001px) {
  #fullMap__infoBoard > a {
    width: 100px;
    height: 80px;
    font-size: 30px;
    line-height: 80px;
  }
}
@media screen and (max-width: 1000px) and (min-width: 601px) {
  #fullMap__infoBoard > a {
    width: 60px;
    height: 60px;
    font-size: 22px;
    line-height: 60px;
  }
}
@media screen and (max-width: 600px) {
  #fullMap__infoBoard > a {
    width: 50px;
    height: 50px;
    font-size: 20px;
    line-height: 50px;
  }
}
/* content wrapper */
@media screen {
  .fullMap__infoBoard__contentWrapper {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px;
    height: 100%;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    background: #fff;
  }
}
/*  =========================================================
image
========================================================= */
@media screen {
  .fullMap__infoBoard__image {
    width: 80.76923077%;
    height: 0px;
    padding-bottom: 57.69230769%;
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0px;
  }
  .fullMap__infoBoard__image > img {
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: auto;
  }
}
/*  =========================================================
text
========================================================= */
/* different top paddings if there is an image or not */
@media screen {
  .fullMap__infoBoard__text {
    padding-top: 100px;
  }
  .fullMap__infoBoard__image + .fullMap__infoBoard__text {
    padding-top: 25px;
  }
}
@media screen {
  .fullMap__infoBoard__text h3,
  .fullMap__infoBoard__text h4 {
    display: block;
    font: 700 40px/1em 'BebasNeue', Arial, sans-serif;
    color: #4c4c4c;
    text-transform: uppercase;
    margin: 0px 0px 20px 0px;
  }
  .fullMap__infoBoard__text h3 > .info {
    display: inline-block;
    font: 700 25px/1.25em 'BebasNeue', Arial, sans-serif;
    color: #545454;
    margin-bottom: 25px;
    position: relative;
    border-bottom: 3px solid #8e947d;
    border-top: 3px solid #8e947d;
  }
  .fullMap__infoBoard__text h3 > .info:after,
  .fullMap__infoBoard__text h3 > .info:before {
    content: '';
    position: absolute;
    left: 0px;
    right: 0px;
    border-top: 2px solid #8e947d;
  }
  .fullMap__infoBoard__text h3 > .info:after {
    top: -8px;
  }
  .fullMap__infoBoard__text h3 > .info:before {
    bottom: -8px;
  }
  .fullMap__infoBoard__text p {
    font: 300 20px/28px 'SourceSansPro', Arial, sans-serif;
    color: #4c4c4c;
    margin: 0px 0px 20px 0px;
  }
  .fullMap__infoBoard__text .subline {
    font-weight: 400;
    text-transform: uppercase;
    margin: -20px 0px 20px 0px;
  }
  .fullMap__infoBoard__text p strong {
    font-weight: 500;
  }
  .fullMap__infoBoard__text .tourInfo__route {
    margin-bottom: 20px;
  }
  .fullMap__infoBoard__text .tourInfo__route p {
    margin-bottom: 10px;
  }
  .fullMap__infoBoard__text .ghost-button {
    float: none;
    display: inline-block;
    margin: 0px 0px 20px 0px;
  }
  .fullMap__infoBoard__text ul {
    margin: 0px 0px 40px 0px;
    padding: 0px;
    list-style: none;
  }
  .fullMap__infoBoard__text ul > li {
    font: 300 20px/28px 'SourceSansPro', Arial, sans-serif;
    color: #4c4c4c;
    display: block;
    margin: 0px 0px 20px 0px;
    padding: 0px 0px 0px 40px;
  }
  .fullMap__infoBoard__text ul > li strong {
    font-weight: 500;
  }
  .fullMap__infoBoard__text ul > li:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    margin: 0px 20px 0px -40px;
    background: #8e947d;
  }
}
/*  =========================================================
height profile
========================================================= */
@media screen {
  .fullMap__infoBoard__heightProfil__container {
    position: relative;
    width: 100%;
    height: 215px;
    margin: 0 0 20px 0;
  }
  #fullMap__infoBoard__heightProfil {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

/**
 * Eifel Tourismus - Hauptportal 2015
 *
 * LICENSE
 *
 * This software and its source code is protected by copyright law (Sec. 69a ff. UrhG).
 * It is not allowed to make any kinds of modifications, nor must it be copied,
 * or published without explicit permission. Misuse will lead to persecution.
 *
 * @copyright  2016 infomax websolutions GmbH
 * @link       http://www.infomax-it.de
 * @package    css
 * @subpackage fullMap
 * @author     gueldner
 * @since      05.01.2016
 * @version    $Id$
 **/
/*  =========================================================
general structure
controls
markers
========================================================== */
/*  =========================================================
general structure
========================================================= */
@media screen {
  #fullMap__mapContainer {
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  }
}
/* offCanvas movement */
@media screen and (min-width: 1401px) {
  body.infoBoardVisible #fullMap__mapContainer {
    -webkit-transform: translateX(-25%);
    -ms-transform: translateX(-25%);
    transform: translateX(-25%);
  }
}
@media screen and (max-width: 1400px) and (min-width: 1001px) {
  body.infoBoardVisible #fullMap__mapContainer {
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 1000px) and (min-width: 601px) {
  body.infoBoardVisible #fullMap__mapContainer {
    -webkit-transform: translateX(-75%);
    -ms-transform: translateX(-75%);
    transform: translateX(-75%);
  }
}
@media screen and (max-width: 600px) {
  body.infoBoardVisible #fullMap__mapContainer {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
/*  =========================================================
controls
========================================================= */
@media screen {
  #fullMap__controls {
    position: absolute;
    bottom: 30px;
    right: 5.95238095%;
    -webkit-transition: margin 0.5s ease;
    transition: margin 0.5s ease;
  }
}
@media screen {
  #fullMap__controls > a {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #4c4c4c;
    text-decoration: none;
    text-align: center;
    border: 3px #4c4c4c solid;
  }
}
/* different sizes on different screen sizes */
@media screen and (min-width: 601px) {
  #fullMap__controls > a {
    width: 64px;
    height: 60px;
    font-size: 30px;
    line-height: 60px;
  }
  #fullMap__controls > a:not(:last-of-type) {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 600px) {
  #fullMap__controls > a {
    width: 50px;
    height: 50px;
    font-size: 25px;
    line-height: 50px;
  }
  #fullMap__controls > a:not(:last-of-type) {
    margin-bottom: 10px;
  }
}
/* offCanvas movement */
@media screen and (min-width: 1401px) {
  body.infoBoardVisible #fullMap__controls {
    margin-right: 25%;
  }
}
@media screen and (max-width: 1400px) and (min-width: 1001px) {
  body.infoBoardVisible #fullMap__controls {
    margin-right: 50%;
  }
}
@media screen and (max-width: 1000px) and (min-width: 601px) {
  body.infoBoardVisible #fullMap__controls {
    margin-right: 75%;
  }
}
@media screen and (max-width: 600px) {
  body.infoBoardVisible #fullMap__controls {
    margin-right: 100%;
  }
}
/*  =========================================================
markers
========================================================= */
@media screen {
  .imx-cluster > span {
    display: block;
    width: 60px;
    height: 60px;
    color: #fff;
    font: 700 26px/60px 'BebasNeue', Arial, sans-serif;
    text-align: center;
  }
  .imx-person > span {
    display: block;
    width: 40px;
    height: 40px;
    color: #545454;
    font-size: 40px;
    line-height: 40px;
    text-align: center;
  }
}
