/* Bewertungspopup */
.bewertungspopup {
  position: fixed;
  top: 25vh;
  left: 15px;
  z-index: 999;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  animation: fadeIn 0.3s linear 2s forwards;
}

@media screen and (min-width: 992px) {
  .bewertungspopup {
    top: 40%;
    transform: translateY(-40%);
  }
}
.bewertungspopup.hide {
  display: none;
}
.bewertungspopup__header {
  cursor: pointer;
  background-color: #5f4c3e;
  color: #fff;

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}
.bewertungspopup__header.rounded {
  border-radius: 10px 10px 0 0;
}
.bewertungspopup__header p {
  font-weight: bold;
  padding: 0 10px;
}
.bewertungspopup__header img {
  height: 13px;
  transform: rotate(90deg);
  margin: 0 10px;
  transition: transform 0.2s;
}
.bewertungspopup__header.closed img {
  transform: rotate(0);
}
.bewertungspopup__body {
  background-color: #fff;
  color: #1d1d1d;
  text-align: center;
  transition: height 0.2s;
  overflow: hidden;
}
.bewertungspopup__body--content {
  padding: 0 15px;
}

@media screen and (min-width: 768px) {
  .bewertungspopup__body--content {
    padding: 15px;
  }
}
.bewertungspopup__body button {
  background-color: transparent !important;
  color: #1d1d1d !important;
  font-weight: 400 !important;
  text-decoration: underline;
  font-size: 14px !important;

  display: inline-flex;
  align-items: center;
}
.bewertungspopup__body p:first-child {
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 15px;
}
.bewertungspopup__body p:nth-child(2) {
  font-size: 12px;
}
.bewertungspopup__body p:last-child {
  font-size: 11px;
}
.bewertungspopup__body p span:first-child {
  font-size: 21px;
}
.bewertungspopup__body p span:nth-child(2) {
  font-size: 12px;
}
.bewertungspopup__body p span:last-child {
  font-size: 13px;
}
.bewertungspopup__body p:nth-of-type(2) span {
  color: forestgreen;
  font-weight: bold;
}
.bewertungspopup__body p:last-of-type {
  margin-top: 13px;
}

.bewertungspopup__footer {
  background-color: #fff;
  color: #1d1d1d;
  font-size: 14px;
  height: 0;
  overflow: hidden;
  transition: height 0.2s;
  display: none;
}

.bewertungspopup__body--details {
  display: none;
}

@media screen and (min-width: 768px) {
  .bewertungspopup__footer,
  .bewertungspopup__body--details {
    display: block;
  }
}

.bewertungspopup__footer ul {
  border-top: 1px solid lightgray;
  padding: 15px;
}
.bewertungspopup__footer ul li {
  display: flex;
  justify-content: space-between;
}

.bewertungspopup__footer ul li p:last-child {
  font-size: 12px;
}
.bewertungspopup__footer ul li p span {
  font-size: 16px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.liverate {
  position: fixed;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);

  width: 250px;
  z-index: 999;

  animation: fadeIn 0.3s linear 1s forwards;
  opacity: 0;
  display: none;

  overflow: hidden;
}

/* Liverate popup */
.liverate__slides {
  transition: height 0.2s;
}

.liverate.hide {
  opacity: 0;
  visibility: hidden;
}

@media screen and (min-width: 768px) {
  .liverate {
    display: block;
  }
}

.liverate .owl-nav {
  display: none;
}

.liverate .owl-stage {
  display: flex;
}

.liverate .owl-stage-outer {
  overflow: hidden;
}

.liverate__offer {
  display: none;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

@media screen and (min-width: 768px) {
  .liverate__offer.desktop {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .liverate__offer.mobile {
    display: block;
  }
}

.liverate__offer--header {
  position: relative;
  height: 150px;
}

.liverate__offer--header img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.liverate__offer--body {
  padding: 15px;
  background-color: #fff;
  color: #1d1d1d;
}
.liverate__offer--body p:first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}
.liverate__offer--body p:first-child span:last-child {
  color: #5f4c3e;
  font-size: 24px;
}
.liverate__offer--body p:last-child {
  font-size: 13px;
  margin-top: 5px;
}

.liverate__offer--footer {
  background-color: #5f4c3e;
  text-align: center;
  border-radius: 0 0 10px 10px;
}
.liverate__offer--footer a {
  display: inline-block;
  font-weight: bold;
  padding: 15px;
}

.liverate__controls {
  position: absolute;
  width: 100%;
  top: 105px;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.liverate__controls img {
  width: 30px;
  height: 30px;
  border-radius: 60px;
  background-color: #fff;
  padding: 8px;

  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

.liverate__controls img[data-liverate-prev] {
  transform: rotate(180deg);
}

.liverate__closer {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  background-color: #5f4c3e;
  padding: 7px;

  border-radius: 0 0 0 10px;
}
.liverate__closer img {
  width: 25px;
  display: block;
}
.liverate__offer.special {
  background-color: #fff;
  color: #1d1d1d;
}

.liverate__offer .headline {
  border-bottom: 1px solid #ccc;
  padding: 15px;
  padding-bottom: 23px;
  font-weight: bold;
  text-align: center;
}
.liverate__offer .list {
  padding: 15px;
  padding-top: 35px;
}
.liverate__offer .list li {
  display: flex;
  justify-content: space-between;
}
.liverate__offer .cta a {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  background-color: #5f4c3e;
  color: #fff;
  font-weight: bold;
}
.liverate__offer .cta span:last-child {
  font-size: 18px;
}

/* Leaving Popup */
.leaving-popup {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);

  display: none;
  justify-content: center;
  align-items: center;

  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-out;
}

.leaving-popup.show {
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 768px) {
  .leaving-popup {
    display: flex;
  }
}

.leaving-popup__wrapper {
  position: relative;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;

  background-color: #fff;

  max-width: 700px;

  display: flex;
}

@media screen and (min-width: 992px) {
  .leaving-popup__wrapper {
    min-width: 910px;
    max-width: 910px;
  }
}

@media screen and (min-width: 1400px) {
  .leaving-popup__wrapper {
    max-width: 1200px;
  }
}

.leaving-popup__closer {
  cursor: pointer;
  position: absolute;
  top: -15px;
  right: 15px;

  color: #5f4c3e;
  font-size: 50px;
}

.leaving-popup__image {
  flex: 0 0 50%;
  position: relative;
}

.leaving-popup__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.leaving-popup__text {
  flex: 0 0 50%;
  padding: 50px;
  text-align: center;

  display: flex;
  flex-flow: column wrap;
  justify-content: center;
}

.leaving-popup__text > * {
  color: #1d1d1d !important;
  margin-bottom: 30px;
}

.leaving-popup__text--button {
  display: inline-block;
  padding: 1rem;
  background-color: #5f4c3e;
  color: #fff !important;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}
