@charset "UTF-8";
/**
 * Media Query Breakpoints:
 *
 * Named Breakpoints
 *
 *     $screen-small-min (576px - Nexus 5, Iphone 5 portrait)
 *     $screen-medium-min (768px - iPad portrait)
 *     $screen-large-min (1024px - iPad landscape)
 *     $screen-xlarge-min (1140px - desktop only/mainly)
 */
/* tiny-up basically means "every screen size" */
/**
 * Media Query Breakpoint Helpers:
 *
 *  Commonly used media query conditions.
 *
 *     $std-tiny-only
 *     $std-tiny-up
 *     $std-small-only
 *     $std-small-up
 *     $std-medium-only
 *     $std-medium-up
 *     $std-large-only
 *     $std-large-up
 *
 *     Example:
 *     .productImage {
 *         max-height: 200px;
 *
 *         @media only screen and (min-width: 48em) {
 *             max-height: 300px;
 *         }
 *     }
 */
.opentip-container,
.opentip-container * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.opentip-container {
  position: absolute;
  max-width: 300px;
  -webkit-transition: -webkit-transform 1s ease-in-out;
  -moz-transition: -moz-transform 1s ease-in-out;
  -o-transition: -o-transform 1s ease-in-out;
  -ms-transition: -ms-transform 1s ease-in-out;
  transition: transform 1s ease-in-out;
  pointer-events: none;
  -webkit-transform: translateX(0) translateY(0);
  -moz-transform: translateX(0) translateY(0);
  -o-transform: translateX(0) translateY(0);
  -ms-transform: translateX(0) translateY(0);
  transform: translateX(0) translateY(0);
}

.opentip-container.ot-fixed.ot-hidden.stem-top.stem-center,
.opentip-container.ot-fixed.ot-going-to-show.stem-top.stem-center,
.opentip-container.ot-fixed.ot-hiding.stem-top.stem-center {
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}

.opentip-container.ot-fixed.ot-hidden.stem-top.stem-right,
.opentip-container.ot-fixed.ot-going-to-show.stem-top.stem-right,
.opentip-container.ot-fixed.ot-hiding.stem-top.stem-right {
  -webkit-transform: translateY(-5px) translateX(5px);
  -moz-transform: translateY(-5px) translateX(5px);
  -o-transform: translateY(-5px) translateX(5px);
  -ms-transform: translateY(-5px) translateX(5px);
  transform: translateY(-5px) translateX(5px);
}

.opentip-container.ot-fixed.ot-hidden.stem-middle.stem-right,
.opentip-container.ot-fixed.ot-going-to-show.stem-middle.stem-right,
.opentip-container.ot-fixed.ot-hiding.stem-middle.stem-right {
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
  -o-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}

.opentip-container.ot-fixed.ot-hidden.stem-bottom.stem-right,
.opentip-container.ot-fixed.ot-going-to-show.stem-bottom.stem-right,
.opentip-container.ot-fixed.ot-hiding.stem-bottom.stem-right {
  -webkit-transform: translateY(5px) translateX(5px);
  -moz-transform: translateY(5px) translateX(5px);
  -o-transform: translateY(5px) translateX(5px);
  -ms-transform: translateY(5px) translateX(5px);
  transform: translateY(5px) translateX(5px);
}

.opentip-container.ot-fixed.ot-hidden.stem-bottom.stem-center,
.opentip-container.ot-fixed.ot-going-to-show.stem-bottom.stem-center,
.opentip-container.ot-fixed.ot-hiding.stem-bottom.stem-center {
  -webkit-transform: translateY(5px);
  -moz-transform: translateY(5px);
  -o-transform: translateY(5px);
  -ms-transform: translateY(5px);
  transform: translateY(5px);
}

.opentip-container.ot-fixed.ot-hidden.stem-bottom.stem-left,
.opentip-container.ot-fixed.ot-going-to-show.stem-bottom.stem-left,
.opentip-container.ot-fixed.ot-hiding.stem-bottom.stem-left {
  -webkit-transform: translateY(5px) translateX(-5px);
  -moz-transform: translateY(5px) translateX(-5px);
  -o-transform: translateY(5px) translateX(-5px);
  -ms-transform: translateY(5px) translateX(-5px);
  transform: translateY(5px) translateX(-5px);
}

.opentip-container.ot-fixed.ot-hidden.stem-middle.stem-left,
.opentip-container.ot-fixed.ot-going-to-show.stem-middle.stem-left,
.opentip-container.ot-fixed.ot-hiding.stem-middle.stem-left {
  -webkit-transform: translateX(-5px);
  -moz-transform: translateX(-5px);
  -o-transform: translateX(-5px);
  -ms-transform: translateX(-5px);
  transform: translateX(-5px);
}

.opentip-container.ot-fixed.ot-hidden.stem-top.stem-left,
.opentip-container.ot-fixed.ot-going-to-show.stem-top.stem-left,
.opentip-container.ot-fixed.ot-hiding.stem-top.stem-left {
  -webkit-transform: translateY(-5px) translateX(-5px);
  -moz-transform: translateY(-5px) translateX(-5px);
  -o-transform: translateY(-5px) translateX(-5px);
  -ms-transform: translateY(-5px) translateX(-5px);
  transform: translateY(-5px) translateX(-5px);
}

.opentip-container.ot-fixed .opentip {
  pointer-events: auto;
}

.opentip-container.ot-hidden {
  display: none;
}

.opentip-container .opentip {
  position: relative;
  font-size: 13px;
  line-height: 120%;
  padding: 9px 14px;
  color: #4f4b47;
  text-shadow: -1px -1px 0px rgba(255, 255, 255, 0.2);
}

.opentip-container .opentip .header {
  margin: 0;
  padding: 0;
}

.opentip-container .opentip .ot-close {
  pointer-events: auto;
  display: block;
  position: absolute;
  top: -12px;
  left: 60px;
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
  text-decoration: none;
}

.opentip-container .opentip .ot-close span {
  display: none;
}

.opentip-container .opentip .ot-loading-indicator {
  display: none;
}

.opentip-container.ot-loading .ot-loading-indicator {
  width: 30px;
  height: 30px;
  font-size: 30px;
  line-height: 30px;
  font-weight: bold;
  display: block;
}

.opentip-container.ot-loading .ot-loading-indicator span {
  display: block;
  -webkit-animation: otloading 2s linear infinite;
  -moz-animation: otloading 2s linear infinite;
  -o-animation: otloading 2s linear infinite;
  -ms-animation: otloading 2s linear infinite;
  animation: otloading 2s linear infinite;
  text-align: center;
}

.opentip-container.style-dark .opentip,
.opentip-container.style-alert .opentip {
  color: #f8f8f8;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.2);
}

.opentip-container.style-glass .opentip {
  padding: 15px 25px;
  color: #317cc5;
  text-shadow: 1px 1px 8px rgba(0, 94, 153, 0.3);
}

.opentip-container.ot-hide-effect-fade {
  -webkit-transition: -webkit-transform 0.5s ease-in-out, opacity 1s ease-in-out;
  -moz-transition: -moz-transform 0.5s ease-in-out, opacity 1s ease-in-out;
  -o-transition: -o-transform 0.5s ease-in-out, opacity 1s ease-in-out;
  -ms-transition: -ms-transform 0.5s ease-in-out, opacity 1s ease-in-out;
  transition: transform 0.5s ease-in-out, opacity 1s ease-in-out;
  opacity: 1;
  -ms-filter: none;
  filter: none;
}

.opentip-container.ot-hide-effect-fade.ot-hiding {
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.opentip-container.ot-show-effect-appear.ot-going-to-show,
.opentip-container.ot-show-effect-appear.ot-showing {
  -webkit-transition: -webkit-transform 0.5s ease-in-out, opacity 1s ease-in-out;
  -moz-transition: -moz-transform 0.5s ease-in-out, opacity 1s ease-in-out;
  -o-transition: -o-transform 0.5s ease-in-out, opacity 1s ease-in-out;
  -ms-transition: -ms-transform 0.5s ease-in-out, opacity 1s ease-in-out;
  transition: transform 0.5s ease-in-out, opacity 1s ease-in-out;
}

.opentip-container.ot-show-effect-appear.ot-going-to-show {
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.opentip-container.ot-show-effect-appear.ot-showing {
  opacity: 1;
  -ms-filter: none;
  filter: none;
}

.opentip-container.ot-show-effect-appear.ot-visible {
  opacity: 1;
  -ms-filter: none;
  filter: none;
}

@-moz-keyframes otloading {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes otloading {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes otloading {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-ms-keyframes otloading {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes otloading {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/**
 * Media Query Breakpoints:
 *
 * Named Breakpoints
 *
 *     $screen-small-min (576px - Nexus 5, Iphone 5 portrait)
 *     $screen-medium-min (768px - iPad portrait)
 *     $screen-large-min (1024px - iPad landscape)
 *     $screen-xlarge-min (1140px - desktop only/mainly)
 */
/* tiny-up basically means "every screen size" */
/**
 * Media Query Breakpoint Helpers:
 *
 *  Commonly used media query conditions.
 *
 *     $std-tiny-only
 *     $std-tiny-up
 *     $std-small-only
 *     $std-small-up
 *     $std-medium-only
 *     $std-medium-up
 *     $std-large-only
 *     $std-large-up
 *
 *     Example:
 *     .productImage {
 *         max-height: 200px;
 *
 *         @media only screen and (min-width: 48em) {
 *             max-height: 300px;
 *         }
 *     }
 */
.opentip-container .opentip {
  background-color: #0c1011;
  color: #fff;
  text-shadow: none;
  margin-right: -1px;
}
.opentip-container .opentip .ot-header {
  margin: 0 0 0.61rem 0;
  font-weight: bold;
  color: #1cdcb5;
}
.opentip-container .opentip .ot-header a.ot-close {
  color: #fff;
  font-size: 1.2rem;
  padding: 2px 2px 0 0;
}
.opentip-container .opentip .ot-header a.ot-close:hover {
  opacity: 0.7;
}
.opentip-container .opentip .ot-header a.ot-close:before {
  content: '✖';
}
.opentip-container .opentip .ot-content a {
  transition: color .2s ease-in-out;
  color: #1cdcb5;
  text-decoration: underline;
}
.opentip-container .opentip .ot-content a:visited {
  color: #1cdcb5;
  text-decoration: underline;
}
.opentip-container .opentip .ot-content a:hover, .opentip-container .opentip .ot-content a:visited:hover, .opentip-container .opentip .ot-content a:focus {
  color: #f54a2b;
  text-decoration: underline;
}

/**
 * Media Query Breakpoints:
 *
 * Named Breakpoints
 *
 *     $screen-small-min (576px - Nexus 5, Iphone 5 portrait)
 *     $screen-medium-min (768px - iPad portrait)
 *     $screen-large-min (1024px - iPad landscape)
 *     $screen-xlarge-min (1140px - desktop only/mainly)
 */
/* tiny-up basically means "every screen size" */
/**
 * Media Query Breakpoint Helpers:
 *
 *  Commonly used media query conditions.
 *
 *     $std-tiny-only
 *     $std-tiny-up
 *     $std-small-only
 *     $std-small-up
 *     $std-medium-only
 *     $std-medium-up
 *     $std-large-only
 *     $std-large-up
 *
 *     Example:
 *     .productImage {
 *         max-height: 200px;
 *
 *         @media only screen and (min-width: 48em) {
 *             max-height: 300px;
 *         }
 *     }
 */
.std-siteSecionOrientationTeaser {
  background-color: #1cdcb5;
  margin-top: 2.5rem;
}
.std-siteSecionOrientationTeaser__section {
  background-color: #fff;
  color: #f54a2b !important;
  display: block;
  min-height: 10rem;
  padding: 1rem;
  transition: background-color 0.3s ease 0s;
}
.std-siteSecionOrientationTeaser__section--active, .std-siteSecionOrientationTeaser__section:hover {
  background-color: #f54a2b;
  color: #fff !important;
}

.std-siteSecionOrientationTeaserFooter {
  background-color: #19c5a2;
  padding: 1rem;
}
.std-siteSecionOrientationTeaserFooter__link {
  color: #fff !important;
}
.std-siteSecionOrientationTeaserFooter__link--active, .std-siteSecionOrientationTeaserFooter__link:hover {
  color: #000 !important;
}

/**
 * Media Query Breakpoints:
 *
 * Named Breakpoints
 *
 *     $screen-small-min (576px - Nexus 5, Iphone 5 portrait)
 *     $screen-medium-min (768px - iPad portrait)
 *     $screen-large-min (1024px - iPad landscape)
 *     $screen-xlarge-min (1140px - desktop only/mainly)
 */
/* tiny-up basically means "every screen size" */
/**
 * Media Query Breakpoint Helpers:
 *
 *  Commonly used media query conditions.
 *
 *     $std-tiny-only
 *     $std-tiny-up
 *     $std-small-only
 *     $std-small-up
 *     $std-medium-only
 *     $std-medium-up
 *     $std-large-only
 *     $std-large-up
 *
 *     Example:
 *     .productImage {
 *         max-height: 200px;
 *
 *         @media only screen and (min-width: 48em) {
 *             max-height: 300px;
 *         }
 *     }
 */
.std-separator {
  border-top: none;
  height: 1px;
}

/*Farbe weiß*/
a.std-link:hover .std-icon {
  color: #f54a2b;
}

.std-modal__dialog.widthAuto {
  width: auto;
}

.std-scrollable.scrollWidth {
  overflow-x: scroll;
  width: auto;
}

/*Placeholder*/
::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  opacity: 0.5;
}

::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 0.5;
}

:-ms-input-placeholder {
  /* IE 10+ */
  opacity: 0.5;
}

:-moz-placeholder {
  /* Firefox 18- */
  opacity: 0.5;
}

.bigUnderline {
  border-bottom: 4px solid #1cdcb5;
}

.std-button--primary.std-buttonFacebook:hover:not(.std-button--stateless) {
  background-color: #0c1011;
  background-image: url("/che2016/images/2016/facebook.png");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto 40px;
}

.std-buttonFacebook {
  color: #3b5998;
  border-color: #3b5998;
  margin-left: 1rem;
  background-image: url("/che2016/images/2016/facebook.png");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto 40px;
}
.std-buttonFacebook a {
  margin-left: 30px;
}

.tie_business_dress {
  background: transparent url("/che2016/images/2016/svg/icons/basic2-220_tie_business_dress.svg") no-repeat scroll left 0/100% auto;
  height: 40px;
  margin-left: -6px;
  width: 40px;
}

.starIcon {
  background: transparent url("/che2016/images/2016/svg/icons/basic1-131_star.svg") no-repeat scroll left 0/100% auto;
  height: 26px;
  width: 26px;
}

.lock_security {
  background: transparent url("/che2016/images/2016/svg/icons/basic1-106_lock_security.svg") no-repeat scroll left 0/100% auto;
  height: 26px;
  width: 26px;
}

.std-col-bigIcon {
  margin-right: 0.25rem;
}

.std-input--stateful {
  color: #F10815;
}

.selectTeaser {
  margin: 1.875rem 0 3.75rem;
}
.selectTeaser .std-region {
  padding: 1.875rem;
}
.selectTeaser .std-region .std-grid {
  margin-top: 1.25rem;
}
.selectTeaser .std-region .std-grid .posLeft {
  padding-left: 1.25rem;
}
.selectTeaser .std-region .std-grid select,
.selectTeaser .std-region .std-grid .std-button {
  height: 2.7em;
  padding: 0.5em;
  width: 100%;
}
.selectTeaser .std-region .std-grid .std-button {
  height: 2.7em;
}

hr.halfLine {
  height: 0.25rem;
  width: 4rem;
  text-align: left;
}

#chelogosmall {
  width: 5.5rem;
  height: auto;
}

.posCenter {
  text-align: center;
}

.posLeft {
  text-align: left;
}

.posRight {
  text-align: right;
}

.floatright {
  float: right;
}

.backLink {
  margin-top: 0.5rem;
}

.introductionText {
  margin: 0 0 2rem;
  text-align: center;
}
.introductionText.posLeft {
  text-align: left;
}

.linkWithIcon {
  cursor: pointer;
  display: inline-flex;
  letter-spacing: 0.05em;
  line-height: 1em;
}
.linkWithIcon.bold {
  font-weight: 700;
}

/**Headline bei Umlauten*/
.std-grid__cell .std-headline--h4, .std-grid__cell .std-wysiwyg h4 {
  padding-top: 0.3rem;
}

/*Werbeblock*/
.std-grid.textblockAd {
  /*  min-height: 300px;*/
}
.std-grid.textblockAd .std-grid__cell--medium-9of12 {
  width: 38.75rem;
}
.std-grid.textblockAd .std-grid__cell--medium-3of12 {
  width: 18.75rem;
  margin-left: 1.15rem;
  overflow: visible;
}
.std-grid.textblockAd.margTop .std-grid__cell--medium-3of12 {
  margin-top: -1.375rem;
}
.std-grid.textblockAdSmall {
  margin-right: -7.25rem;
}
.std-grid.textblockAdSmall .std-grid__cell--medium-9of12 {
  width: 31.5rem;
}
.std-grid.textblockAdSmall .std-grid__cell--medium-3of12 {
  width: 18.75rem;
  margin-left: 1.15rem;
  overflow: visible;
}

#main {
  font-size: 0.9rem;
  z-index: 0;
  padding: 0;
}

.marginContent {
  margin: 0 1.25rem;
}

.marginContentExtra {
  margin: 0 8.75rem 0 8.75rem;
}

.marginTopSmall {
  margin-top: 1.25rem;
  /*20px*/
}

.marginTopMiddle {
  margin-top: 2.5rem;
  /*40px*/
}

.marginTopLarge {
  margin-top: 5rem;
  /*80px*/
}

#breadcrumb {
  padding: 0.875em 0 1.073em;
  text-transform: uppercase;
}

#heroAll {
  position: relative;
}

.std-hero--withMenu {
  z-index: 1;
}
.std-hero--withMenu .std-selectMenu__item.che-login-code {
  border-top: 1px solid white;
  background-color: #0cd0b0;
}
.std-hero--withMenu svg.std-selectMenu__titleIcon.std-col.std-icon.larger {
  width: 1.5rem;
  height: 1.5rem;
}

/*Rankingsuche*/
.rankingSearch {
  width: 100%;
  background-color: #e6edee;
  margin-top: 1.25rem;
  padding: 0.94rem 1.25rem;
}
.rankingSearch .std-grid {
  /*height: 2.7em;*/
}
.rankingSearch .std-grid img {
  height: 3em;
}
.rankingSearch .std-grid .std-grid__cell + .std-grid__cell {
  padding-left: 0.625em;
}
.rankingSearch .std-grid .std-input--big {
  height: 2.7em;
  padding: .5em 2.8em .5em .5em;
}
.rankingSearch .std-grid select, .rankingSearch .std-grid a.std-button {
  width: 100%;
  height: 2.7em;
}
.rankingSearch .std-grid select.std-input.is-disabled, .rankingSearch .std-grid select.std-input--big:focus {
  border-color: #1cdcb5;
  background-color: #fff;
}

/*Karte Startseite*/
.placesEntryTeaser {
  margin-top: 2.5rem;
}
.placesEntryTeaser .std-row {
  margin-bottom: 0;
}
.placesEntryTeaser .content {
  background-color: #e6edee;
  padding-bottom: 1.25rem;
  margin-top: -1px;
}
.placesEntryTeaser .content .abcList .std-col {
  margin: 0.625rem 0 0;
  padding: 0 0.35rem 0 0.3rem;
}
.placesEntryTeaser .content .abcList .std-col--withSeparator {
  border-color: #d0d2df;
}
.placesEntryTeaser .content .abcList .std-col--withSeparator a.active {
  color: #1cdcb5 !important;
}
.placesEntryTeaser .content .abcKey h3 {
  padding-left: 0.1rem;
}
.placesEntryTeaser .content .listResult {
  margin-top: 0.625rem;
}
.placesEntryTeaser .content .listResult h3 {
  line-height: 0.5;
}
.placesEntryTeaser .content .listResult .std-col {
  vertical-align: bottom;
  margin-top: 0.625rem;
}
.placesEntryTeaser #map {
  border: 2px solid #d0d2df;
  height: 380px;
}

.taggedImageContent {
  margin-bottom: 0.3125rem;
}
.taggedImageContent .taggedImage {
  display: inline-block;
  position: relative;
  width: 100%;
  text-transform: uppercase;
}
.taggedImageContent .taggedImage .taggedImageImage {
  width: 100%;
  height: 130px;
  background-color: #000;
}
.taggedImageContent .taggedImage .taggedImageCaption {
  background-color: #fff;
  color: #1cdcb5;
  padding: 0.1rem 0.5rem 0.1rem 0.1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}

/*Fachinfo*/
.startProlog .std-headline--h1 {
  margin-bottom: 0;
}
.startProlog .std-grid.rightMedium {
  margin-right: -3.75rem;
}
.startProlog .std-grid.rightMedium .startPrologImg {
  width: 100%;
  height: 260px;
  background: no-repeat center/cover;
}
.startProlog .std-grid.rightMedium .startPrologRank {
  background-color: #e6edee;
  margin-left: 1.25rem;
  padding: 1.25rem;
}
.startProlog .std-grid.rightMedium .startPrologRank select {
  margin-top: 0.625rem;
  width: 100%;
}

.borderTeaser {
  margin: 1.25rem 0;
  clear: both;
}

.linkTip .std-row {
  height: 100%;
}
.linkTip .std-col--withSeparator {
  border-color: #d0d2df;
}
.linkTip .std-col--withSeparator:last-child {
  border: none;
}
.linkTip .std-ad {
  margin-top: 1.3rem;
}

.vergleichTeaser3 .std-grid .std-grid__cell {
  padding: 1.25rem;
  background-color: white;
  border: 3px solid #1cdcb5;
}
.vergleichTeaser3 .std-grid .std-grid__cell.full {
  background-color: #1cdcb5;
}
.vergleichTeaser3 .std-grid .std-grid__cell.reco__cell {
  max-width: 305px;
}
.vergleichTeaser3 .std-grid .std-grid__cell.reco__cell h4, .vergleichTeaser3 .std-grid .std-grid__cell.reco__cell p {
  text-overflow: ellipsis;
  overflow: hidden;
}
.vergleichTeaser3 .std-grid .std-grid__cell.reco__cell + .reco__cell {
  margin-left: 1rem;
}
.vergleichTeaser3 .teaserBtn {
  border-top: 1px solid #d0d2df;
  margin-top: 1.25rem;
}
.vergleichTeaser3 .teaserBtn > a {
  margin-top: 1rem;
}

.teaserFloatLeft {
  float: left;
  width: 240px;
  background-color: #e6edee;
  margin: 0 1.25rem 1.25rem -3.75rem;
  padding: 1.25rem;
}
.teaserFloatLeft img {
  margin-bottom: 1.25rem;
}

.std-modal label .std-grid__cell {
  padding: 0;
}
.std-modal label .std-grid__cell.additionText {
  font-weight: normal;
  text-align: right;
}

.linkcursor {
  cursor: pointer;
}

.shareLinkBox {
  margin-top: 3rem;
}
.shareLinkBox .std-link.std-link--light {
  color: #777;
}

#searchButton {
  -webkit-animation: slide 0.5s forwards;
  animation: slide 0.5s forwards;
}
#searchButton:hover {
  opacity: 0.75;
}

#searchInput {
  -webkit-animation: slide 0.5s forwards;
  animation: slide 0.5s forwards;
}

.subheadline {
  margin-bottom: -44px;
}

.preserveWhitespace {
  white-space: pre-wrap;
}

.cheSlidingBtn {
  background-color: white;
  border-radius: 20px;
  cursor: pointer;
  display: inline-block;
  float: left;
  outline: 0 none;
  padding: 0 10px;
  text-align: center;
}
.cheSlidingBtn a, .cheSlidingBtn button {
  display: inline-block;
  padding: 5px 0;
  position: relative;
}

#gfxCriterienbox {
  background: transparent url("/che2016/images/2016/pfeilBottom_gray-base.png") no-repeat scroll 23px bottom;
  padding-bottom: 6px;
  position: relative;
}
#gfxCriterienbox .close {
  cursor: pointer;
  position: absolute;
  right: 23px;
  top: 8px;
}
#gfxCriterienbox .gfxBoxContent {
  background-color: #0c1011;
  padding: 0.625rem 1rem 0.625rem;
}

.kriterienloader {
  background: url(/che2016/images/loader.gif) center center no-repeat;
  height: 64px;
  width: 64px;
  position: absolute;
  top: 200px;
  left: 270px;
  z-index: 9999999999;
}

.position-relative {
  position: relative;
}

#chesearchresult .resultGroup {
  padding: 1.25rem 0;
}
#chesearchresult .resultGroup .specialHits {
  margin-top: 0.5rem;
}
#chesearchresult #ajaxSuche {
  padding: 1.25rem;
}
#chesearchresult #ajaxSuche .suchOptionen {
  padding: 0.675rem;
  background-color: white;
  margin-bottom: 1.25rem;
}
#chesearchresult #ajaxSuche .suchOptionen > div {
  display: flex;
}
#chesearchresult #ajaxSuche .suchOptionen > div > div {
  margin-right: 1.875rem;
}
#chesearchresult #ajaxSuche .suchOptionen > div > div input {
  margin-top: 2px;
}
#chesearchresult #ajaxSuche .suchOptionen > div > div label {
  padding-left: 0.3125rem;
}
#chesearchresult #ajaxSuche #ajaxSucheErgebnis .additionalInfo {
  display: block;
  line-height: 16px;
  margin-top: 3px;
}

.adSpacer {
  width: 0;
  margin-top: 40%;
}

.spacedAd {
  clear: both;
}

#chepremiumreg #chemyfavs,
#chepremiumreg #cheaccount {
  padding: 0.5rem 0 1.25rem;
}
#chepremiumreg #chemychoose .profilSection {
  padding: 0.5rem 0 1.25rem;
}
#chepremiumreg #chemychoose .profilSection .profilKriteriumTable td, #chepremiumreg #chemychoose .profilSection .profilKriteriumTable th {
  text-align: center;
  border-left: 1px solid #e6edee;
}
#chepremiumreg #chemychoose .profilSection .profilKriteriumTable td:nth-child(1), #chepremiumreg #chemychoose .profilSection .profilKriteriumTable th:nth-child(1) {
  text-align: left;
  border-left: none;
}
#chepremiumreg #chemychoose .profilSection .profilKriteriumTable th {
  padding: .3rem 1rem;
}
#chepremiumreg #chemychoose .profilSection .woStudierenTable {
  width: 100%;
}
#chepremiumreg #chemychoose .profilSection .woStudierenTable td {
  width: 33%;
  padding-bottom: 1rem;
}
#chepremiumreg #chemychoose .profilSection .only_fiveTable {
  width: 100%;
}
#chepremiumreg #chemychoose .profilSection .only_fiveTable td {
  width: 50%;
  padding-bottom: 1rem;
}

#hs-vergleich-tabelle,
#chewrapper_table {
  margin-top: 2.5rem;
}
#hs-vergleich-tabelle table td, #hs-vergleich-tabelle table th,
#chewrapper_table table td,
#chewrapper_table table th {
  border-left: 1px solid #e6edee;
  vertical-align: top;
}
#hs-vergleich-tabelle table td:nth-child(1), #hs-vergleich-tabelle table th:nth-child(1),
#chewrapper_table table td:nth-child(1),
#chewrapper_table table th:nth-child(1) {
  border-left: none;
}
#hs-vergleich-tabelle table td.cell_title, #hs-vergleich-tabelle table th.cell_title,
#chewrapper_table table td.cell_title,
#chewrapper_table table th.cell_title {
  vertical-align: bottom;
}
#hs-vergleich-tabelle .rankingCellContent,
#chewrapper_table .rankingCellContent {
  display: flex;
}

.introductionText p a {
  text-decoration: underline;
}

.pull-follower {
  margin-bottom: -1.5rem;
}

.std-modal__footer {
  text-align: center;
}

#loginForm-error {
  text-align: center;
  margin-bottom: 1rem;
}

a.force-normal.std-button {
  color: #0c1011;
  font-weight: normal;
}
a.force-normal.std-button:visited:not(:hover):not(:focus) {
  color: #0c1011;
  font-weight: normal;
}
a.force-normal.std-button:hover, a.force-normal.std-button:active, a.force-normal.std-button:focus {
  font-weight: bold;
}
a.force-normal.std-button:focus {
  color: #fff;
}

img.fixedWidth {
  max-width: none;
}

.margin1 {
  margin-top: 1rem;
}

.margin-bottom-05 {
  margin-bottom: .5rem !important;
}

.che-faecher-list ul {
  padding: 0.5rem 1.2rem 1.5rem 0;
}
.che-faecher-list ul li {
  /*  margin-top: 1.2rem;*/
}
.che-faecher-list ul li a {
  display: inline-block;
  line-height: 1.2rem;
  top: -.2rem;
  position: relative;
}
.che-faecher-list ul li:first-child {
  margin-top: 0;
}

.hsIndikatorInfoLink {
  display: block;
}

a.indikatorInfoLink {
  background-image: url("/che2016/images/2016/svg/icons/basic2-088_question.svg");
  background-size: 1rem;
  height: 1rem;
  width: 1rem;
  background-position: right;
  display: inline-block;
  background-repeat: no-repeat;
  top: .2rem;
  position: relative;
  left: .1rem;
}

.chelist li.std-row.smallPadding {
  padding-bottom: 0.625rem;
  margin-bottom: 0.4rem;
}

#hochschule-adresse img#chehslogo {
  max-width: 270px;
  margin-bottom: 1rem;
}

.std-breadcrumb {
  width: 58.75rem;
}

.bigCheckmark {
  background: transparent url("/che2016/images/2016/svg/icons/haken.svg") no-repeat scroll center center/150% auto;
  height: 9rem;
  width: 100%;
}

iframe.fachad {
  overflow: hidden;
  border: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.pullout {
  margin-right: -3.8rem;
}

.share-link.std-alert.std-alert--info {
  text-align: center;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: bold;
}

.std-modal__dialog .share-link.std-alert.std-alert--info {
  color: inherit;
  text-decoration: none;
}
.std-modal__dialog .share-link.std-alert.std-alert--info > a {
  background-size: auto 100%;
  background-repeat: no-repeat;
  padding-left: 2rem;
}
.std-modal__dialog .share-link.std-alert.std-alert--info > a.socialicons-gp {
  padding-left: 2.8rem;
}

.ratingBox {
  margin-top: 1rem;
  padding: 1rem;
}

.std-readingBlock .pullOut-both {
  margin: auto -3.75rem auto -3.75rem;
}

.ranking-fachad-block .fachad-container {
  width: 300px;
  float: right;
}

.std-table--fixed {
  table-layout: fixed;
}

/**
 * Media Query Breakpoints:
 *
 * Named Breakpoints
 *
 *     $screen-small-min (576px - Nexus 5, Iphone 5 portrait)
 *     $screen-medium-min (768px - iPad portrait)
 *     $screen-large-min (1024px - iPad landscape)
 *     $screen-xlarge-min (1140px - desktop only/mainly)
 */
/* tiny-up basically means "every screen size" */
/**
 * Media Query Breakpoint Helpers:
 *
 *  Commonly used media query conditions.
 *
 *     $std-tiny-only
 *     $std-tiny-up
 *     $std-small-only
 *     $std-small-up
 *     $std-medium-only
 *     $std-medium-up
 *     $std-large-only
 *     $std-large-up
 *
 *     Example:
 *     .productImage {
 *         max-height: 200px;
 *
 *         @media only screen and (min-width: 48em) {
 *             max-height: 300px;
 *         }
 *     }
 */
#markers {
  display: none;
}

.gmapsInfoWindow {
  background-color: #0c1011;
  padding: 12px 10px 12px 20px;
  height: 100%;
  min-width: 200px;
  margin-bottom: -4px;
}
.gmapsInfoWindow .lat, .gmapsInfoWindow .long, .gmapsInfoWindow .icon {
  display: none;
}

.gmapsLinkList {
  overflow: auto;
  height: 100%;
}

#map .closeButton {
  position: absolute;
  top: 8px !important;
  right: 8px !important;
  cursor: pointer;
  color: #fff;
  opacity: 1;
  transition: opacity .2s ease-in-out;
}
#map .closeButton:hover {
  opacity: 0.7;
}

/**
 * Media Query Breakpoints:
 *
 * Named Breakpoints
 *
 *     $screen-small-min (576px - Nexus 5, Iphone 5 portrait)
 *     $screen-medium-min (768px - iPad portrait)
 *     $screen-large-min (1024px - iPad landscape)
 *     $screen-xlarge-min (1140px - desktop only/mainly)
 */
/* tiny-up basically means "every screen size" */
/**
 * Media Query Breakpoint Helpers:
 *
 *  Commonly used media query conditions.
 *
 *     $std-tiny-only
 *     $std-tiny-up
 *     $std-small-only
 *     $std-small-up
 *     $std-medium-only
 *     $std-medium-up
 *     $std-large-only
 *     $std-large-up
 *
 *     Example:
 *     .productImage {
 *         max-height: 200px;
 *
 *         @media only screen and (min-width: 48em) {
 *             max-height: 300px;
 *         }
 *     }
 */
.std-carouselWrapper .std-alert__title.with-legalFlag {
  margin-bottom: -1rem;
}

.carouselTeaser {
  margin-top: 2.5rem;
  position: relative;
}
.carouselTeaser .std-carouselWrapper {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.carouselTeaser .std-carouselWrapper .std-carousel__nav {
  z-index: 100;
}
.carouselTeaser .std-carouselWrapper .std-grid__cell {
  height: 13.25rem;
}
.carouselTeaser .std-carouselWrapper .std-grid__cell .std-row {
  background: no-repeat center/cover;
  text-align: center;
  height: 100%;
  text-align: center;
  padding: 0 5rem;
}
.carouselTeaser .std-carouselWrapper .std-alert__content {
  height: 212px;
  overflow: hidden;
}
.carouselTeaser .carouselFooter {
  background-color: #e6edee;
  padding-top: 0.5rem;
}
.carouselTeaser .carouselFooter .carouselBtn {
  text-align: center;
  border-top: 1px solid #d0d2df;
  padding: 1rem;
}

.std-carousel__slide a.std-stampedImage {
  max-height: 100%;
}

.std-carousel--imageAndText img.logo {
  max-height: 3.8rem;
  margin-bottom: 0;
  max-width: 12rem;
}
.std-carousel--imageAndText .std-carousel__image {
  position: relative;
  overflow: hidden;
  margin: .4375rem .5rem;
}
.std-carousel--imageAndText .std-carousel__image .background-container {
  background-position: center;
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
}

/**
 * Media Query Breakpoints:
 *
 * Named Breakpoints
 *
 *     $screen-small-min (576px - Nexus 5, Iphone 5 portrait)
 *     $screen-medium-min (768px - iPad portrait)
 *     $screen-large-min (1024px - iPad landscape)
 *     $screen-xlarge-min (1140px - desktop only/mainly)
 */
/* tiny-up basically means "every screen size" */
/**
 * Media Query Breakpoint Helpers:
 *
 *  Commonly used media query conditions.
 *
 *     $std-tiny-only
 *     $std-tiny-up
 *     $std-small-only
 *     $std-small-up
 *     $std-medium-only
 *     $std-medium-up
 *     $std-large-only
 *     $std-large-up
 *
 *     Example:
 *     .productImage {
 *         max-height: 200px;
 *
 *         @media only screen and (min-width: 48em) {
 *             max-height: 300px;
 *         }
 *     }
 */
.teaser-margin {
  margin: 2.5rem auto;
}

.std-ctaTeaser.std-ctaTeaser--primary.che-rankingTeaser {
  padding-top: 1.75rem;
}

.portraitTeaser-right {
  border: 3px solid #1cdcb5;
  background-repeat: no-repeat;
  background-size: 100% 6.7rem;
  padding-top: 7rem;
  padding: 7rem .5rem 2rem;
  position: relative;
  min-height: 250px;
  margin-bottom: 1rem;
}
.portraitTeaser-right img {
  width: 100%;
  height: 130px;
}
.portraitTeaser-right a.teaser-link {
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  position: absolute;
  bottom: .5rem;
}
.portraitTeaser-right a.teaser-link .std-icon {
  top: .1rem;
  position: relative;
  right: 5px;
  height: .8rem;
}

.sumaTeaser-right {
  background-image: url("/che2016/images/2016/green-bg-big.png");
  padding: 1.2rem;
  margin-bottom: 1rem;
}
.sumaTeaser-right.sumaTeaser-right--half {
  background-image: url("/che2016/images/2016/green-bg-klein.png");
}
.sumaTeaser-right.sumaTeaser-right--half .std-headline.std-headline--h5.head {
  text-align: center;
}
.sumaTeaser-right.sumaTeaser-right--topImg {
  border: 3px solid #1cdcb5;
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: 7rem;
  padding: 7rem .5rem 2rem;
  position: relative;
  min-height: 250px;
}
.sumaTeaser-right.sumaTeaser-right--topImg img {
  width: 100%;
  height: 130px;
}
.sumaTeaser-right.sumaTeaser-right--topImg a.teaser-link {
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  position: absolute;
  bottom: .5rem;
}
.sumaTeaser-right.sumaTeaser-right--topImg a.teaser-link .std-icon {
  top: .1rem;
  position: relative;
  right: 5px;
  height: .8rem;
}
.sumaTeaser-right .std-headline.std-headline--h5.head {
  text-align: left;
}
.sumaTeaser-right .std-separator--big {
  background-color: #fff;
}
.sumaTeaser-right .border-white {
  border: 3px solid #fff;
  padding: .2rem;
  margin-top: .8rem;
  color: #fff;
  position: relative;
  text-decoration: none;
  font-size: .9rem;
  text-align: center;
}
.sumaTeaser-right .border-white .std-icon {
  top: 3px;
  position: relative;
}
.sumaTeaser-right .std-button--inverted {
  width: 100%;
  background-color: transparent;
  border: 3px solid #fff;
  margin-top: 1.2rem;
}

.studfuhrer img {
  margin-bottom: -1.6rem;
}
.studfuhrer .subhead {
  text-transform: uppercase;
  font-size: 1rem;
  background-color: white;
  display: inline-block;
  padding: .5rem .5rem 0 0;
  position: relative;
  letter-spacing: 2px;
}
.studfuhrer .head {
  margin-top: .6rem;
  margin-bottom: .5rem;
}

.sitTeaser-right {
  border: 3px solid #1cdcb5;
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: 7rem;
  padding: 7rem .5rem 2rem;
  position: relative;
  min-height: 250px;
}
.sitTeaser-right img {
  width: 100%;
  height: 130px;
}
.sitTeaser-right a.teaser-link {
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  position: absolute;
  bottom: .5rem;
}
.sitTeaser-right a.teaser-link .std-icon {
  top: .1rem;
  position: relative;
  right: 5px;
  height: .8rem;
}

.teaserRight {
  background-color: rgba(230, 237, 238, 0.6);
  padding: 1.2rem;
  margin-bottom: 1rem;
}

/**
 * Media Query Breakpoints:
 *
 * Named Breakpoints
 *
 *     $screen-small-min (576px - Nexus 5, Iphone 5 portrait)
 *     $screen-medium-min (768px - iPad portrait)
 *     $screen-large-min (1024px - iPad landscape)
 *     $screen-xlarge-min (1140px - desktop only/mainly)
 */
/* tiny-up basically means "every screen size" */
/**
 * Media Query Breakpoint Helpers:
 *
 *  Commonly used media query conditions.
 *
 *     $std-tiny-only
 *     $std-tiny-up
 *     $std-small-only
 *     $std-small-up
 *     $std-medium-only
 *     $std-medium-up
 *     $std-large-only
 *     $std-large-up
 *
 *     Example:
 *     .productImage {
 *         max-height: 200px;
 *
 *         @media only screen and (min-width: 48em) {
 *             max-height: 300px;
 *         }
 *     }
 */
/*Claim-Leiste mit Logo*/
#claim-strip {
  margin-top: 2.5rem;
}
#claim-strip .std-grid .std-grid__cell {
  font-size: 1rem;
  padding: 0.6rem 0 0.8rem;
  text-align: center;
  border-top: 1px solid #d0d2df;
  border-bottom: 1px solid #d0d2df;
  border-left: 1px solid #d0d2df;
}
#claim-strip .std-grid .std-grid__cell:nth-child(1) {
  border-left: none;
  padding: 0;
}
#claim-strip .std-grid .std-grid__cell .std-usps__headline {
  color: #1cdcb5;
  font-size: 1.1em;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}

.ranking-stats {
  margin-top: 1rem;
  margin-bottom: -1rem;
}
.ranking-stats .std-grid__cell .std-alert .std-alert__title,
.ranking-stats .std-grid__cell .std-alert .std-alert__content {
  text-align: center;
}
.ranking-stats .std-grid__cell .std-alert .std-alert__title h4,
.ranking-stats .std-grid__cell .std-alert .std-alert__content h4 {
  margin-top: -.8rem;
  margin-bottom: .5rem;
}
.ranking-stats .std-grid__cell .std-alert .std-alert__title a.stat-link,
.ranking-stats .std-grid__cell .std-alert .std-alert__content a.stat-link {
  font-weight: bold;
  font-size: 1rem;
  margin-left: 1rem;
}
.ranking-stats .std-grid__cell .std-alert .std-alert__title a.stat-link .std-icon,
.ranking-stats .std-grid__cell .std-alert .std-alert__content a.stat-link .std-icon {
  top: .1rem;
  position: relative;
  right: 5px;
  height: .8rem;
}

/*Blöcke*/
.teaserTextBlock3 .std-grid__cell,
.teaserTextImgBlock3 .std-grid__cell {
  padding-left: 1.25rem;
}
.teaserTextBlock3 .std-grid__cell:nth-child(1),
.teaserTextImgBlock3 .std-grid__cell:nth-child(1) {
  padding-left: 0;
}

.std-textBlock {
  padding-bottom: 1px;
}

.startTeaserImageAd .ad-desktop--9 {
  margin: 0 auto;
}
.startTeaserImageAd .std-stampedImage__image {
  height: 250px;
}

.about-block a.more-about-link {
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
}
.about-block a.more-about-link .std-icon {
  top: .1rem;
  position: relative;
  right: 5px;
  height: .8rem;
}
.about-block .std-ad {
  margin: -1.4rem 0 0 auto;
}

.placesEntryTeaser .std-ad {
  margin: -1.4rem 0 0 auto;
}

.inhouse-teaser {
  margin-top: 3.75rem;
}
.inhouse-teaser .flagged-container {
  border: 1px solid #7c7c7c;
  padding: .5rem;
}
.inhouse-teaser .std-grid__cell + .std-grid__cell {
  padding-left: .5rem;
}
.inhouse-teaser .taggedImageContent .taggedImage .taggedImageImage {
  background-color: transparent;
}

#irgendwasmit .subjectsEntryTeaser {
  margin-top: 3.75rem;
  background-color: #2ec79b;
  background-repeat: no-repeat;
  background-size: cover;
}
#irgendwasmit .subjectsEntryTeaser .subjectsEntryTeaserContainer {
  padding: 0.1rem 0 1.25rem;
}
#irgendwasmit .iwm_cloud {
  margin: 0 0 2.5rem;
}
#irgendwasmit .iwm_cloud a {
  margin: 0 10px 0 0;
}
#irgendwasmit .iwm_cloud a.tagSize1 {
  font-size: 12px;
  opacity: 0.55;
}
#irgendwasmit .iwm_cloud a.tagSize2 {
  font-size: 16px;
  opacity: 0.7;
}
#irgendwasmit .iwm_cloud a.tagSize3 {
  font-size: 20px;
  opacity: 0.85;
}
#irgendwasmit .iwm_cloud a.tagSize4 {
  font-size: 30px;
}
#irgendwasmit .svgContainer {
  margin-top: 1rem;
}
#irgendwasmit .iwm_headlineContainer {
  margin-bottom: 1rem;
}

#iwm_ergebnis {
  margin: 1.25rem 0 2.5rem;
}
#iwm_ergebnis .bucketBlock {
  padding: 1.25rem;
  margin-bottom: 1.875rem;
}
#iwm_ergebnis .bucketTitle {
  display: flex;
  margin-bottom: 0.5rem;
}
#iwm_ergebnis .bucketTitle h3,
#iwm_ergebnis .bucketTitle .gradListRanklink {
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
#iwm_ergebnis .bucketTitle h3 .fontSizeSmall,
#iwm_ergebnis .bucketTitle .gradListRanklink .fontSizeSmall {
  font-size: 0.5rem;
}
#iwm_ergebnis .bucketTitle .gradListRanklink {
  text-align: right;
}
#iwm_ergebnis .sgGroup ul {
  margin-top: 0.3125rem;
}
#iwm_ergebnis .gradList {
  display: none;
}

/**
 * Media Query Breakpoints:
 *
 * Named Breakpoints
 *
 *     $screen-small-min (576px - Nexus 5, Iphone 5 portrait)
 *     $screen-medium-min (768px - iPad portrait)
 *     $screen-large-min (1024px - iPad landscape)
 *     $screen-xlarge-min (1140px - desktop only/mainly)
 */
/* tiny-up basically means "every screen size" */
/**
 * Media Query Breakpoint Helpers:
 *
 *  Commonly used media query conditions.
 *
 *     $std-tiny-only
 *     $std-tiny-up
 *     $std-small-only
 *     $std-small-up
 *     $std-medium-only
 *     $std-medium-up
 *     $std-large-only
 *     $std-large-up
 *
 *     Example:
 *     .productImage {
 *         max-height: 200px;
 *
 *         @media only screen and (min-width: 48em) {
 *             max-height: 300px;
 *         }
 *     }
 */
.legendColor {
  width: 12px;
  height: 12px;
  margin: 2px 4px 0 0;
  float: left;
}

.teaserlist .block-margin {
  margin-bottom: 0.875rem;
}
.teaserlist .padding-tablecell {
  padding: .5rem 0;
}

/**
 * Media Query Breakpoints:
 *
 * Named Breakpoints
 *
 *     $screen-small-min (576px - Nexus 5, Iphone 5 portrait)
 *     $screen-medium-min (768px - iPad portrait)
 *     $screen-large-min (1024px - iPad landscape)
 *     $screen-xlarge-min (1140px - desktop only/mainly)
 */
/* tiny-up basically means "every screen size" */
/**
 * Media Query Breakpoint Helpers:
 *
 *  Commonly used media query conditions.
 *
 *     $std-tiny-only
 *     $std-tiny-up
 *     $std-small-only
 *     $std-small-up
 *     $std-medium-only
 *     $std-medium-up
 *     $std-large-only
 *     $std-large-up
 *
 *     Example:
 *     .productImage {
 *         max-height: 200px;
 *
 *         @media only screen and (min-width: 48em) {
 *             max-height: 300px;
 *         }
 *     }
 */
.about-detail p {
  margin: 0 0 0.61rem 0;
}
.about-detail a {
  transition: color .2s ease-in-out;
  color: #1cdcb5;
  text-decoration: underline;
}
.about-detail a:visited {
  color: #1cdcb5;
  text-decoration: underline;
}
.about-detail a:hover, .about-detail a:visited:hover, .about-detail a:focus {
  color: #f54a2b;
  text-decoration: underline;
}
.about-detail b {
  font-weight: bold;
}

/**
 * Media Query Breakpoints:
 *
 * Named Breakpoints
 *
 *     $screen-small-min (576px - Nexus 5, Iphone 5 portrait)
 *     $screen-medium-min (768px - iPad portrait)
 *     $screen-large-min (1024px - iPad landscape)
 *     $screen-xlarge-min (1140px - desktop only/mainly)
 */
/* tiny-up basically means "every screen size" */
/**
 * Media Query Breakpoint Helpers:
 *
 *  Commonly used media query conditions.
 *
 *     $std-tiny-only
 *     $std-tiny-up
 *     $std-small-only
 *     $std-small-up
 *     $std-medium-only
 *     $std-medium-up
 *     $std-large-only
 *     $std-large-up
 *
 *     Example:
 *     .productImage {
 *         max-height: 200px;
 *
 *         @media only screen and (min-width: 48em) {
 *             max-height: 300px;
 *         }
 *     }
 */
.profil-radio {
  padding: 2em 0 3em;
}
.profil-radio--inline {
  display: inline-block;
  margin: 0 1em 1em 0;
}
.profil-radio__label {
  display: inline-block;
  position: relative;
  padding-left: 1.7em;
  vertical-align: middle;
  cursor: pointer;
}
.profil-radio__label:before {
  content: '';
  position: absolute;
  margin-top: 0.1em;
  left: 0;
  width: 1em;
  height: 1em;
  border: 1px solid #1cdcb5;
  border-radius: 1em;
  padding: 0.2em;
  color: #fff;
  line-height: 0.4em;
  text-indent: -0.1em;
}
.profil-radio__label:hover {
  color: #1cdcb5;
}
.profil-radio__control {
  display: none;
}
.profil-radio.is-checked .profil-radio__label:before, .profil-radio__control:checked + .profil-radio__label:before {
  background-color: #1cdcb5;
  content: '✓';
}
.profil-radio--big .profil-radio__label {
  padding-left: 2.2em;
}
.profil-radio--big .profil-radio__label:before {
  margin-top: 0em;
  border-width: 3px;
  line-height: 0.4em;
  text-indent: -0.2em;
  font-size: 1.4em;
}
.profil-radio--small .profil-radio__label {
  font-size: 0.8em;
}
.profil-radio--small .profil-radio__label:before {
  margin-top: 0.2em;
}
.profil-radio.is-checked .profil-radio__label:before, .profil-radio__control:checked + .profil-radio__label:before {
  background-color: #1cdcb5;
  content: '';
}
.profil-radio--big .profil-radio__label {
  padding-left: 1.4em;
}

.std-checkbox.is-disabled {
  border-color: #e6edee;
  color: #d0d2df;
  cursor: not-allowed;
}
.std-checkbox.is-disabled .std-checkbox__label {
  color: #d0d2df;
  cursor: not-allowed;
}
.std-checkbox.is-disabled .std-checkbox__label:before {
  border: 1px solid #e6edee;
}

/**
 * Media Query Breakpoints:
 *
 * Named Breakpoints
 *
 *     $screen-small-min (576px - Nexus 5, Iphone 5 portrait)
 *     $screen-medium-min (768px - iPad portrait)
 *     $screen-large-min (1024px - iPad landscape)
 *     $screen-xlarge-min (1140px - desktop only/mainly)
 */
/* tiny-up basically means "every screen size" */
/**
 * Media Query Breakpoint Helpers:
 *
 *  Commonly used media query conditions.
 *
 *     $std-tiny-only
 *     $std-tiny-up
 *     $std-small-only
 *     $std-small-up
 *     $std-medium-only
 *     $std-medium-up
 *     $std-large-only
 *     $std-large-up
 *
 *     Example:
 *     .productImage {
 *         max-height: 200px;
 *
 *         @media only screen and (min-width: 48em) {
 *             max-height: 300px;
 *         }
 *     }
 */
#rateit {
  padding: 0 0.5em 0 2em;
}

/*RANKINGTABELLE*/
.chehide {
  display: none;
}

.rankingHeadline {
  position: relative;
}
.rankingHeadline #layoutSwitcher {
  position: absolute;
  right: 0;
  bottom: 0;
}
.rankingHeadline #layoutSwitcher a {
  display: none;
}
.rankingHeadline #layoutSwitcher a.active {
  display: block;
}

#rk2012_table_text,
#rk2012_grafik_text {
  margin-bottom: 1.25rem;
}

#cheranking table {
  position: relative;
}
#cheranking table#cherankingtable {
  width: 100%;
}
#cheranking table tr.rklist td:first-child {
  border-bottom: 1px solid #d7d7d7;
  padding: 4px 5px 3px;
}
#cheranking table tr.rklistLineBottom {
  height: 46px;
}
#cheranking table tr.favHeadlineRow td, #cheranking table tr.sortHeadlineRow td {
  border-bottom: 1px solid #d7d7d7;
}
#cheranking table tr.fav td {
  border-bottom: 1px solid #d7d7d7;
}
#cheranking table tr.fav td.rkcol_left_5 {
  border-left: 1px solid #d7d7d7;
}
#cheranking table tr.sortSelection td {
  border-bottom: 1px solid #d7d7d7;
  padding: 3px 0 4px;
}
#cheranking table tr.sortSelection td.sortIcon {
  background: transparent url("/che2016/images/2015/icon_sort.png") no-repeat scroll center center;
  cursor: pointer;
}
#cheranking table tr.sortSelection td.sortIcon.active {
  background: transparent url("/che2016/images/2015/icon_sort_active.png") no-repeat scroll center center;
}
#cheranking table tr.sortSelection td span.active a {
  background: transparent url("/che2016/images/2015/icon_sort_active.png") no-repeat scroll left center;
  font-weight: bold;
}
#cheranking table tr.sortSelection td span a {
  background: transparent url("/che2016/images/2015/icon_sort.png") no-repeat scroll left center;
  color: #333333;
  margin: 0 5px;
  padding-left: 20px;
}
#cheranking table tr.trbg0.trbgtop10false, #cheranking table tr.trbg0.trbgtop10true {
  background: #fff none repeat scroll 0 0;
  padding: 3px 0;
}
#cheranking table tr.trbg1.trbgtop10false, #cheranking table tr.trbg1.trbgtop10true {
  background: #f2f2f2 none repeat scroll 0 0;
  padding: 3px 0;
}
#cheranking table tr td {
  padding: 2px 0;
  vertical-align: middle;
}
#cheranking table tr td.rkcol_middle {
  border-right: 1px solid #d7d7d7;
  text-align: center;
  width: 6%;
}
#cheranking table tr td.rkcol_left_, #cheranking table tr td.rkcol_left_1, #cheranking table tr td.rkcol_left_2, #cheranking table tr td.rkcol_left_3, #cheranking table tr td.rkcol_left_4, #cheranking table tr td.rkcol_left_5, #cheranking table tr td.rkcol_left_6, #cheranking table tr td.rkcol_right {
  border-right: 1px solid #d7d7d7;
  padding-left: 7px;
  padding-right: 7px;
  width: auto;
}
#cheranking table tr td .cheIndikNumber.active {
  font-weight: bold;
}
#cheranking table tr td .selectUni {
  position: relative;
}
#cheranking table tr td .selectUni input {
  position: absolute;
  top: 4px;
}
#cheranking table tr td .selectUni .unis {
  margin-left: 1.5rem;
}
#cheranking table tr td .rkCompareContainer {
  background-color: #0c1011;
  margin: 10px 10px 50px 0;
  max-width: 245px;
  padding: 4px 15px 10px;
}
#cheranking table tr td .rkCompareContainer #comparePfeilContainer {
  background: transparent url("/che2016/images/2016/pfeilTop_gray-base.png") no-repeat scroll 0 0;
  height: 8px;
  position: relative;
  top: -10px;
  width: 16px;
}
#cheranking table tr td .rkCompareContainer .cheSlidingBtn {
  background-position: 0 5px;
  padding: 0;
  width: 100%;
}
#cheranking table tr td #gfxCriterienbox {
  background-position: 10px bottom;
}
#cheranking table tr td #gfxCriterienbox .gfxBoxContent {
  margin: 0;
  max-width: 225px;
}
#cheranking table .fspDiagramm {
  height: 10px;
  margin: 10px 5px;
  width: 70px;
}
#cheranking table .fspDiagramm.sw {
  display: none;
}

.chelegendcontainer {
  margin-top: -1rem;
  background: #f2f2f2 none repeat scroll 0 0;
}
.chelegendcontainer .chelegenddescription {
  border-top: 1px solid #fff;
  padding: 13px;
}

.chefootservice {
  background: #fff none repeat scroll 0 0;
  margin-left: -1px;
  margin-right: -1px;
}
.chefootservice li {
  float: left;
  margin: 12px 0 0 0;
}
.chefootservice.cheicons li {
  padding: 3px 15px 3px 18px;
}
.chefootservice.cheicons li.print {
  background: transparent url("/che2016/images/2016/svg/icons/basic1-049_print.svg") no-repeat scroll left center/16px auto;
}
.chefootservice.cheicons li.pdf {
  background: transparent url("/che2016/images/2016/svg/icons/basic1-046_file_pdf.svg") no-repeat scroll left center/16px auto;
}
.chefootservice.cheicons li.favs {
  background: transparent url("/che2016/images/2016/svg/icons/basic1-131_star.svg") no-repeat scroll left center/16px auto;
}
.chefootservice.cheicons li.bookmark {
  background: transparent url("/che2016/images/2016/svg/icons/basic3-124_open_new_window_share_dark.svg") no-repeat scroll left center/16px auto;
}
.chefootservice.cheicons li.toggle-legend-icons {
  background: transparent url("/che2016/images/2016/icons/eye.gif") no-repeat scroll 0 8px;
}
.chefootservice.cheicons li.chetoggle-numbers {
  background: transparent url("/che2016/images/2016/icons/zeit-miniicons_and_che.png") no-repeat scroll 0 3px;
}

.ranking_tabcontainer.std-grid {
  margin-bottom: 1.25rem;
}
.ranking_tabcontainer.std-grid .std-grid__cell {
  border: 1px solid #d7d7d7;
  padding: 0.625rem;
}
.ranking_tabcontainer.std-grid .std-grid__cell:nth-child(1) {
  border-bottom: 0;
}
.ranking_tabcontainer.std-grid .std-grid__cell:nth-child(2) {
  flex: 0 1 auto;
  padding: 0;
  width: 20px;
  border-left: none;
  border-right: none;
  border-top: none;
}
.ranking_tabcontainer.std-grid .std-grid__cell:nth-child(3) {
  background-color: #f2f2f2;
}
.ranking_tabcontainer.std-grid .std-grid__cell #subfachSelect {
  width: 100%;
}

#union_table .legendBg,
#union_gfx .legendBg {
  background: #f2f2f2 none repeat scroll 0 0;
}
#union_table #rankingTableArea,
#union_gfx #rankingTableArea {
  margin-bottom: 2rem;
}
#union_table #tableSortOptions,
#union_gfx #tableSortOptions {
  bottom: -5px;
  text-align: right;
  position: relative;
  z-index: 100;
}

#quickrankingContainer {
  background: #f2f2f2 none repeat scroll 0 0;
  clear: both;
  margin: 1.25rem 0 0;
  overflow: hidden;
  position: relative;
  z-index: 50;
}
#quickrankingContainer #qrInfoWrapper {
  margin: 1.25rem;
}

#gfxAreaNew {
  position: relative;
}
#gfxAreaNew #favGfxOptions {
  background-color: white;
  height: 40px;
  overflow: hidden;
  margin: 1rem 0 1.25rem;
}
#gfxAreaNew #favGfxOptions div {
  float: left;
  height: 40px;
}
#gfxAreaNew #favGfxOptions div.favGfxLabel {
  background-attachment: scroll, scroll;
  background-clip: border-box, border-box;
  background-color: white;
  background-image: url("/che2016/images/2015/icon_eye.png"), url("/che2016/images/2016/favGfxPfeil.png");
  background-origin: padding-box, padding-box;
  background-position: left 15px, right top;
  background-repeat: no-repeat;
  background-size: auto auto, auto auto;
  height: 40px;
  margin-left: 1rem;
  margin-right: 1rem;
  width: 170px;
}
#gfxAreaNew #favGfxOptions div.favGfxLabel span {
  left: 40px;
}
#gfxAreaNew #favGfxOptions div.favGfxAll {
  border-right: 1px solid #f2f2f2;
  margin-right: 1rem;
  padding-top: 12px;
  vertical-align: middle;
  width: 240px;
}
#gfxAreaNew #favGfxOptions div.favGfxOnly {
  padding-top: 12px;
}
#gfxAreaNew #favGfxOptions div input {
  margin-right: 5px;
}
#gfxAreaNew #favGfxOptions div span {
  position: absolute;
  top: 9px;
}

.chekriterien_sidebar {
  position: relative;
  padding: 1.25rem;
}
.chekriterien_sidebar.bggrey {
  background: #f2f2f2 none repeat scroll 0 0;
}
.chekriterien_sidebar #criterienbox_rightcol {
  background: transparent url("/che2016/images/2016/pfeilBottom_gray-base.png") no-repeat scroll 20px bottom;
  margin-bottom: 10px;
  padding-bottom: 5px;
}
.chekriterien_sidebar #criterienbox_rightcol div {
  background-color: #0c1011;
  border-radius: 2px;
  color: #fff;
  padding: 10px;
}
.chekriterien_sidebar .maxIndikatorenWarnung {
  background: transparent url("/che2016/images/2014/obacht.png") no-repeat scroll 0 4px;
  font-weight: 700;
  margin: 15px 0;
  padding-left: 20px;
}
.chekriterien_sidebar .maxIndikatorenWarnung .errorFont {
  color: #f54a2b;
}
.chekriterien_sidebar #indikatorenBox {
  margin-left: 10px;
  padding-top: 20px;
  position: relative;
}
.chekriterien_sidebar #indikatorenBox.no_padding_top {
  padding-top: 0;
}
.chekriterien_sidebar #indikatorenBox #indikatorenListe .indikatorBausteinBox {
  margin: 0 0 20px;
  overflow: hidden;
}
.chekriterien_sidebar #indikatorenBox #indikatorenListe .indikatorBausteinBox .indikator_row {
  display: table;
}
.chekriterien_sidebar #indikatorenBox #indikatorenListe .indikatorBausteinBox .indikator_row .indikatorIndexNumber {
  display: table-cell;
  width: 1rem;
}
.chekriterien_sidebar #indikatorenBox #indikatorenListe .indikatorBausteinBox .indikator_row .checkboxContent {
  display: table-cell;
  width: 1.25rem;
}
.chekriterien_sidebar #indikatorenBox #indikatorenListe .indikatorBausteinBox .indikator_row .checkboxContent .indikatorCheckbox {
  vertical-align: middle;
}
.chekriterien_sidebar #indikatorenBox #indikatorenListe .indikatorBausteinBox .indikator_row .labelBox {
  display: table-cell;
}
.chekriterien_sidebar #indikatorenBox #indikatorenListe .indikatorBausteinBox .indikator_row .labelBox .indikatorLabel {
  padding-right: 3px;
}
.chekriterien_sidebar #indikatorenBox #indikatorenListe .indikatorBausteinBox .indikator_row .labelBox .indikatorLabel.active {
  color: #222;
  font-weight: 700;
}
.chekriterien_sidebar #indikatorenBox #indikatorenListe .indikatorBausteinBox .indikator_row .labelBox .info {
  color: #990000;
  cursor: pointer;
}

#rk2012_infobubble .rk2012_infobubble_inner {
  background: #f8f8f8 none repeat scroll 0 0;
  box-shadow: 1px 1px 3px 2px #d5d5d5;
  overflow: hidden;
  padding: 10px 10px 0;
  position: relative;
}
#rk2012_infobubble .cheSlidingBtn {
  float: right;
  margin-right: 4px;
  margin-top: 5px;
}

/* FACHBEREICH*/
.cheHasSocialMenu {
  margin: 1rem 0 0;
}
.cheHasSocialMenu .subjectHeadline {
  margin-bottom: 0.5rem;
}

.teaserlist {
  padding-top: 1.25rem;
  margin-bottom: 2rem;
  clear: both;
}
.teaserlist > div.chelimargin {
  padding: 0 0 1.25rem;
}
.teaserlist > div.chelimargin.no_margin_bottom {
  padding: 0 0 0;
}
.teaserlist > div.chelimargin .chetable.che3cols {
  width: 100%;
  margin-bottom: 0.875rem;
}
.teaserlist > div.chelimargin .chetable.che3cols th.headline {
  padding: 1 0 1rem;
}
.teaserlist > div.chelimargin .chetable.che3cols th.headline .std-icon--open {
  display: none;
}
.teaserlist > div.chelimargin .chetable.che3cols th.headline.aufklappbar {
  background-color: rgba(230, 237, 238, 0.6);
  cursor: pointer;
}
.teaserlist > div.chelimargin .chetable.che3cols th.headline.aufklappbar h3 {
  display: inline-flex;
  vertical-align: top;
}
.teaserlist > div.chelimargin .chetable.che3cols td {
  border-bottom: 1px solid #e6edee;
  transition: all 0.3s ease 0s;
}
.teaserlist > div.chelimargin .chetable.che3cols td.checol1 {
  vertical-align: top;
  padding: 0.5rem 0;
}
.teaserlist > div.chelimargin .chetable.che3cols td.checol1.rank, .teaserlist > div.chelimargin .chetable.che3cols td.checol1.balken {
  width: 70%;
}
.teaserlist > div.chelimargin .chetable.che3cols td.checol2_rank, .teaserlist > div.chelimargin .chetable.che3cols td.checol3_balken {
  width: 23%;
  text-align: right;
}
.teaserlist > div.chelimargin .chetable.che3cols td.checol2_rank.colSpan2, .teaserlist > div.chelimargin .chetable.che3cols td.checol3_balken.colSpan2 {
  padding: 0.5rem 0;
  width: 30%;
}
.teaserlist > div.chelimargin .chetable.che3cols td.checol3_balken {
  text-align: left;
}
.teaserlist > div.chelimargin .chetable.che3cols td.checol3_rank, .teaserlist > div.chelimargin .chetable.che3cols td.checol2_balken {
  width: 7%;
  text-align: right;
}
.teaserlist > div.chelimargin .chetable.che3cols td.checolSingle_rank {
  border-bottom: none;
  padding: 0.5rem 0 1.25rem;
}
.teaserlist > div.chelimargin .chetable.che3cols td .scaleBg {
  background-color: #e6edee;
  height: 9px;
  width: 95%;
  line-height: 0;
}
.teaserlist.fachbereich .std-collapsible__statefulVisibility--collapsed .std-icon,
.teaserlist.fachbereich .std-collapsible__statefulVisibility--open .std-icon {
  font-size: 1em;
  margin-left: 0.2rem;
  padding-top: 0.2rem;
}

#singleInfoContainer {
  font-size: 0.9rem;
  background-color: #0c1011;
  display: none;
  position: absolute;
  width: 432px;
  z-index: 2147483647;
}
#singleInfoContainer #comparePfeilContainer {
  background: transparent url("/che2016/images/2016/pfeilTop_gray-base.png") no-repeat scroll 0 0;
  height: 8px;
  margin: -6px auto 0;
  left: 213px;
  position: relative;
}
#singleInfoContainer .infoContainerContent {
  padding: 4px 15px 0;
}
#singleInfoContainer .infoContainerContent .closeTooltip {
  color: #fff;
  position: absolute;
  right: 15px;
  text-decoration: none;
  top: 4px;
}
#singleInfoContainer .infoContainerContent .fbname a {
  color: #1cdcb5;
}
#singleInfoContainer .infoContainerContent .indikatoren {
  margin: 5px 0;
}
#singleInfoContainer .infoContainerContent .indikatoren .indikator_wert {
  padding: 3px 20px;
}
#singleInfoContainer .infoContainerContent .indikatoren .indikator_wert.indikator_wert_1 {
  background: transparent url("/che2016/images/icons/kreis1.png") no-repeat scroll left 2px;
}
#singleInfoContainer .infoContainerContent .indikatoren .indikator_wert.indikator_wert_2 {
  background: transparent url("/che2016/images/icons/kreis2.png") no-repeat scroll left 2px;
}
#singleInfoContainer .infoContainerContent .indikatoren .indikator_wert.indikator_wert_3 {
  background: transparent url("/che2016/images/icons/kreis3.png") no-repeat scroll left 2px;
}
#singleInfoContainer .infoContainerContent .indikatoren .indikator_wert.indikator_wert_100 {
  background: transparent url("/che2016/images/icons/kreis100.png") no-repeat scroll left 2px;
}
#singleInfoContainer .qrInfoLegende {
  border-top: 1px solid #d0d2df;
  display: flex;
  margin: 0 15px;
  padding: 5px 0 10px;
}
#singleInfoContainer .qrInfoLegende .indikator_wert {
  padding: 0 10px 0 15px;
}
#singleInfoContainer .qrInfoLegende .indikator_wert.indikator_wert_1 {
  background: transparent url("/che2016/images/icons/kreis1.png") no-repeat scroll left -3px;
}
#singleInfoContainer .qrInfoLegende .indikator_wert.indikator_wert_2 {
  background: transparent url("/che2016/images/icons/kreis2.png") no-repeat scroll left -3px;
}
#singleInfoContainer .qrInfoLegende .indikator_wert.indikator_wert_3 {
  background: transparent url("/che2016/images/icons/kreis3.png") no-repeat scroll left -3px;
}
#singleInfoContainer .qrInfoLegende .indikator_wert.indikator_wert_100 {
  background: transparent url("/che2016/images/icons/kreis100.png") no-repeat scroll left -3px;
}

.sgsLink {
  margin-top: 1.25rem;
}
.sgsLink a {
  background: transparent url("/che2016/images/sgs_icon_darkgrey.png") no-repeat scroll 0 3px;
  display: block;
  margin-bottom: 1.25rem;
  padding-left: 1.25rem;
}

.borderNoOpen {
  border-bottom: 1px solid #e6edee;
  padding-bottom: 0.3rem;
}

.ranking_text_oben {
  background-color: #f2f2f2;
  overflow: hidden;
  padding: 15px;
  margin-bottom: 1.25rem;
}

.chefilter_row {
  margin: 1.25rem 0;
}
.chefilter_row label {
  margin-right: 1rem;
}

.std-modal__dialog-wide {
  width: auto;
}

#noRegisterRankingBlock {
  background-color: #1cdcb5;
  padding: 1rem;
}

.chestripesbg {
  margin-top: 1.25rem;
  position: relative;
}
.chestripesbg .rankingblocked_message {
  position: absolute;
}
.chestripesbg .rankingblocked_message.rk, .chestripesbg .rankingblocked_message.qr, .chestripesbg .rankingblocked_message.fachinfo {
  left: 1.25rem;
  top: 1rem;
  width: 580px;
}
.chestripesbg img.big {
  width: 620px;
}

/*Bubbles*/
circle.over {
  stroke: #f54a2b;
  stroke-width: 2;
}

circle.selected {
  stroke: #f54a2b;
  stroke-width: 2;
}

.circle {
  fill: white;
  stroke-width: 2;
}

.circleIndik {
  stroke: white;
  stroke-width: 0.05em;
}

.bgcircle {
  stroke: white;
  stroke-width: 0.1em;
}

/*# sourceMappingURL=ranking.css.map */
