@font-face {
  font-family: "Blackjack";
  src: url("../fonts/font.woff2") format("woff2"), url("../fonts/font.woff") format("woff");
}
/* open-sans-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/open-sans-v40-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-300italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 300;
  src: url("../fonts/open-sans-v40-latin-300italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/open-sans-v40-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/open-sans-v40-latin-italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/open-sans-v40-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-500italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 500;
  src: url("../fonts/open-sans-v40-latin-500italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/open-sans-v40-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-600italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 600;
  src: url("../fonts/open-sans-v40-latin-600italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/open-sans-v40-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-700italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 700;
  src: url("../fonts/open-sans-v40-latin-700italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/open-sans-v40-latin-800.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-800italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 800;
  src: url("../fonts/open-sans-v40-latin-800italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/**
* Color settings
*/
/**
* Font settings
*/
/**
* Generating aspect-ratio for elements.
**/
.media.media-cover {
  position: relative;
}
.media.media-cover img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.ratio-16x9:before {
  display: block;
  content: "";
  width: 100%;
}

.ratio-16x10:before {
  display: block;
  content: "";
  width: 100%;
}

.ratio-4x3:before {
  display: block;
  content: "";
  width: 100%;
}

.ratio-1x1:before {
  display: block;
  content: "";
  width: 100%;
}

/**
* helpers
*/
.d-flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-start {
  justify-content: start;
}

.justify-content-end {
  justify-content: end;
}

.align-items-center {
  align-items: center;
}

.align-items-start {
  align-items: start;
}

.align-items-end {
  align-items: end;
}

/**
* Reset
*/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
.clearfix {
  clear: both;
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html, body {
  box-sizing: border-box;
}
html *, body * {
  box-sizing: border-box;
}

i.circle {
  width: 0.6125rem;
  height: 0.6125rem;
  display: block;
  border-radius: 0.875rem;
}

/**
* Styling
*/
small, .detail-trip-item-body-footer-info {
  font-size: 0.75rem;
}

svg {
  width: 1rem;
  height: 1rem;
  color: #d90016;
}

h1, .h1 {
  font-size: 1.5rem;
}

h2, .detail-element-toggle {
  font-size: 1.125rem;
}

h3, h4, .h2, .h3, .h4 {
  font-size: 1.125rem;
}

.Head_1 {
  font-size: 1rem;
}

h4, h5, .h4, .h5 {
  font-size: 1rem;
}

strong, b {
  font-weight: 600;
}

ul, ol, p {
  margin: 0;
}
ul + ol, ul + ul, ul + p, ul + h1, ul + h2, ul + h3, ul + h4, ul + h5, ul + h6, ul + .h1, ul + .h2, ul + .h3, ul + .h4, ul + .h5, ul + .h6, ol + ol, ol + ul, ol + p, ol + h1, ol + h2, ol + h3, ol + h4, ol + h5, ol + h6, ol + .h1, ol + .h2, ol + .h3, ol + .h4, ol + .h5, ol + .h6, p + ol, p + ul, p + p, p + h1, p + h2, p + h3, p + h4, p + h5, p + h6, p + .h1, p + .h2, p + .h3, p + .h4, p + .h5, p + .h6 {
  margin: 0.5rem 0 0 0;
}

h1 + ol, h1 + ul, h1 + p, h2 + ol, h2 + ul, h2 + p, h3 + ol, h3 + ul, h3 + p, h4 + ol, h4 + ul, h4 + p, h5 + ol, h5 + ul, h5 + p, h6 + ol, h6 + ul, h6 + p, .h1 + ol, .h1 + ul, .h1 + p, .h2 + ol, .h2 + ul, .h2 + p, .h3 + ol, .h3 + ul, .h3 + p, .h4 + ol, .h4 + ul, .h4 + p, .h5 + ol, .h5 + ul, .h5 + p, .h6 + ol, .h6 + ul, .h6 + p {
  margin: 0.5rem 0 0 0;
}

h1, h2 {
  margin: 1rem 0 0.5rem 0 !important;
}

ul li {
  margin: 0.25rem 0;
}
ul li svg {
  margin-top: 0.25rem;
}

body {
  width: 28cm;
  margin-left: auto;
  margin-right: auto;
  font-family: "Open Sans", sans-serif;
}

.ts-print-template {
  padding: 1.5rem 0;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

i.circle.green {
  background-color: #28a745;
}

.slider-controls,
.page-share,
.breadcrumb-wrapper,
.detail-thumbnails-slider,
.add-to-wishlist,
.detail-booking-entrypoint,
.detail-section-crossselling,
.detail-mobile-bar,
.detail-header-info-top-attributes,
.detail-header-info-top-body h1,
.detail-header-info-top-body h4.m-0 {
  display: none !important;
}

.example-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -8px;
}
.example-row > .col-lg-8 {
  padding: 0 8px;
  width: 100%;
}
.example-row > .col-lg-4 {
  padding: 0 8px;
  width: 100%;
}

.detail-header-gallery-slider--inner .detail-header-gallery-slider-item {
  display: none;
}
.detail-header-gallery-slider--inner .detail-header-gallery-slider-item img {
  width: 100%;
  height: auto;
}
.detail-header-gallery-slider--inner .detail-header-gallery-slider-item:first-child {
  display: block;
}

.Reiseverlauf_Head {
  font-size: 1rem;
  font-weight: bold;
  color: #d90016;
}

.hotline-link {
  display: flex;
  align-items: center;
}
.hotline-link .hotline-info .hotline-number.h5 {
  text-decoration: none;
}

.ts-print-template .print-template-header {
  position: relative;
  margin-bottom: 35px;
}
.ts-print-template .print-template-header .hotline_phone {
  position: relative;
  display: inline-block;
  color: #2e2e2e;
  font-size: 24px;
  font-weight: 600;
}
.ts-print-template .print-template-header .hotline_email {
  position: relative;
  display: block;
  color: #2e2e2e;
  font-size: 18px;
  font-weight: 600;
  margin: 15px 0px 10px;
}
.ts-print-template .print-template-header .hotline_text {
  position: relative;
  display: inline-block;
  color: #808080;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
}
.ts-print-template .detail-header-gallery-slider {
  position: relative;
}
.ts-print-template .detail-header-gallery-slider .detail-header-gallery-slider--counter {
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: 1;
  border-radius: 3px;
  padding: 2px 7px 4px;
  background-color: white;
}
.ts-print-template .detail-header-gallery-slider .detail-header-gallery-slider-item {
  position: relative;
}
.ts-print-template .detail-header-gallery-slider .detail-header-gallery-slider-item .detail-header-gallery-slider-item--image {
  position: relative;
}
.ts-print-template .detail-header-gallery-slider .detail-header-gallery-slider-item .detail-header-gallery-slider-item--image img {
  width: 100%;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.ts-print-template .detail-header-gallery-slider .detail-header-gallery-slider-item .detail-header-gallery-slider-item--copyright {
  position: absolute;
  left: 30px;
  top: 30px;
  z-index: 1;
  color: white;
  border-radius: 5px;
  padding: 8px 14px 8px;
  text-transform: uppercase;
  background-color: #2e2e2e;
}
.ts-print-template .detail-header-gallery-slider {
  position: relative;
}
.ts-print-template .detail-header-gallery-slider .detail-footer-slider {
  position: absolute;
  left: 30px;
  bottom: 15px;
  right: 30px;
  width: auto;
}
.ts-print-template .detail-header-gallery-slider .detail-header-gallery-slider--counter {
  font-size: 1rem;
  background-color: white;
  color: #808080;
  padding: 0.25rem 0.438rem 0.25rem;
}
.ts-print-template .detail-header-gallery-slider .detail-header-gallery-slider-item {
  position: relative;
}
.ts-print-template .detail-header-gallery-slider .detail-header-gallery-slider-item .detail-header-gallery-slider-item--image {
  position: relative;
}
.ts-print-template .detail-header-gallery-slider .detail-header-gallery-slider-item .detail-header-gallery-slider-item--image img {
  border-radius: 0.25rem;
}
.ts-print-template .detail-header-gallery-slider .slider-controls button {
  width: 2.75rem !important;
  height: 2.75rem;
  color: #d90016;
}
.ts-print-template .detail-section.detail-section-header {
  position: relative;
}
.ts-print-template .detail-section.detail-section-header .left-column {
  position: relative;
  width: 65%;
  padding: 0px 15px;
}
.ts-print-template .detail-section.detail-section-header .left-column .detail-gallery-overlay {
  position: relative;
  display: none;
}
.ts-print-template .detail-section.detail-section-header .right-column {
  position: relative;
  width: 35%;
  padding: 0px 15px;
}
.ts-print-template .detail-footer-slider {
  width: 100%;
  height: 8rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  border: none;
  position: relative;
}
.ts-print-template .detail-footer-slider .detail-footer-slider-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.ts-print-template .detail-footer-slider .detail-footer-slider-container .detail-footer-gallery-slider-item {
  width: 11.75rem;
}
.ts-print-template .detail-footer-slider .detail-footer-slider-container .detail-footer-gallery-slider-item .detail-footer-gallery-slider-item--image {
  border-radius: 5px;
  border: 2px solid transparent;
}
.ts-print-template .detail-footer-slider .detail-footer-slider-container .detail-footer-gallery-slider-item .detail-footer-gallery-slider-item--image img {
  width: 100%;
  display: block;
  border-radius: 5px;
  overflow: hidden;
}
.ts-print-template .detail-footer-slider .detail-footer-slider-container .detail-footer-gallery-slider-item .detail-footer-gallery-slider-item--image:hover {
  border-color: white;
}
.ts-print-template .detail-header-info {
  position: relative;
  padding: 1.6rem 1.6rem;
  background-color: #F1F1F1;
  border-radius: 0.25rem;
}
.ts-print-template .detail-header-info .detail-header-info-top {
  position: relative;
}
.ts-print-template .detail-header-info .detail-header-info-top .detail-page_options {
  position: relative;
}
.ts-print-template .detail-header-info .detail-header-info-top .detail-page_options .detail-header-info-top-attributes {
  position: relative;
  margin: 0rem;
  padding: 0.2rem 1.5rem 0.2rem 0rem;
}
.ts-print-template .detail-header-info .detail-header-info-top .detail-page_options .detail-header-info-top-attributes::before {
  position: absolute;
  content: "";
  right: 0px;
  top: 0px;
  bottom: 0px;
  left: -1.875rem;
  background-color: white;
  border-radius: 0.25rem;
}
.ts-print-template .detail-header-info .detail-header-info-top .detail-page_options .detail-header-info-top-attributes .teaser-location-box {
  color: #808080;
  font-size: 0.875rem;
  text-transform: uppercase;
}
.ts-print-template .detail-header-info .detail-header-info-top .detail-page_options .detail-header-info-top-attributes .teaser-location-box .teaser-location-icon.top-badge-teaser {
  position: relative;
}
.ts-print-template .detail-header-info .detail-header-info-top .detail-page_options .detail-header-info-top-attributes .teaser-location-box .teaser-location-icon.top-badge-teaser svg {
  width: 1rem;
  height: 1rem;
}
.ts-print-template .detail-header-info .detail-header-info-top .detail-page_options .right-box {
  position: relative;
  gap: 1.2rem;
}
.ts-print-template .detail-header-info .detail-header-info-top .detail-page_options .right-box .detail-print_box {
  position: relative;
}
.ts-print-template .detail-header-info .detail-header-info-top .detail-page_options .right-box .detail-print_box .icon svg {
  cursor: pointer;
  width: 1.5rem;
  height: 1.5rem;
  color: #2e2e2e;
}
.ts-print-template .detail-header-info .detail-header-info-top .detail-page_options .right-box .page-share {
  position: relative;
  top: 2px;
}
.ts-print-template .detail-header-info .detail-header-info-top .detail-page_options .right-box .page-share svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #2e2e2e;
}
.ts-print-template .detail-header-info .detail-header-info-top .detail-page_options .right-box .add-to-wishlist {
  right: 0rem !important;
  top: 0rem;
  width: 2.5rem;
  height: 2.5rem;
  color: #d90016;
  border-radius: 50rem;
  background-color: white;
}
.ts-print-template .detail-header-info .detail-header-info-top .detail-card-subtitle {
  position: relative;
  color: #2e2e2e;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.125rem;
}
.ts-print-template .detail-header-info .detail-header-info-top h1 {
  margin-bottom: 1.8rem;
  font-size: 1.5rem;
  font-weight: 700;
}
.ts-print-template .detail-header-info .detail-header-info-top .detail-highlights {
  position: relative;
}
.ts-print-template .detail-header-info .detail-header-info-top .detail-highlights ul.checklist {
  position: relative;
}
.ts-print-template .detail-header-info .detail-header-info-top .detail-highlights ul.checklist li {
  position: relative;
  color: #2e2e2e;
  margin-top: 0rem;
  line-height: 1.8rem;
  margin-bottom: 0.8rem;
  font-size: 1rem;
  padding-left: 1.5rem;
}
.ts-print-template .detail-header-info .detail-header-info-top .detail-highlights ul.checklist li svg {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 1rem;
  height: 1rem;
}
.ts-print-template .detail-header-info .detail-header-info-bottom {
  position: relative;
  margin-top: 7rem;
}
.ts-print-template .detail-header-info .detail-header-info-bottom .detail-page-tags {
  position: relative;
  margin-bottom: 1.2rem;
}
.ts-print-template .detail-header-info .detail-header-info-bottom .detail-header-info-duration {
  position: relative;
  color: #2e2e2e;
  margin-right: 0.9rem;
  font-size: 1rem;
}
.ts-print-template .detail-header-info .detail-header-info-bottom .detail-header-info-chosen-date {
  position: relative;
  color: #2e2e2e;
  font-size: 1rem;
}
.ts-print-template .detail-header-info .detail-header-info-bottom .detail-header-info-chosen-date .detail-header-info-chosen-date-info {
  position: relative;
}
.ts-print-template .detail-header-info .detail-header-info-bottom .detail-header-info-chosen-date .detail-header-info-chosen-date-info .detail-header-info-chosen-date-data {
  position: relative;
}
.ts-print-template .detail-header-info .detail-header-info-bottom .detail-header-info-chosen-date .detail-header-info-chosen-date-info .detail-header-info-chosen-date-data .circle.green {
  position: relative;
  margin-right: 0.7rem;
}
.ts-print-template .detail-header-info .detail-header-info-bottom .discount-box {
  position: relative;
  color: #d90016;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.4rem 0.8rem;
  background-color: white;
  text-transform: capitalize;
  border-radius: 0.25rem;
}
.ts-print-template .detail-header-info .detail-header-info-bottom .discount-box span {
  position: relative;
  display: block;
  color: #808080;
  font-weight: 400;
  font-size: 0.6125rem;
  text-transform: uppercase;
}
.ts-print-template .detail-header-info .detail-header-info-bottom .discount-box .discount-price {
  position: relative;
  color: #d90016;
  font-weight: 700;
  font-size: 1.125rem;
}
.ts-print-template .detail-header-info .detail-header-info-bottom .price-row {
  padding-top: 0rem;
}
.ts-print-template .detail-header-info .detail-header-info-bottom .price-row a {
  border-radius: 0rem;
  margin-top: 0rem !important;
  background-color: #2e2e2e;
  border-color: #2e2e2e;
  font-size: 1.5rem;
  padding: 1rem 1rem;
  text-align: left;
  display: flex;
  color: white;
  text-decoration: none;
  align-items: center;
  border-radius: 0.25rem;
}
.ts-print-template .detail-header-info .detail-header-info-bottom .price-row a .discounted-price {
  font-size: 1.25rem;
}
.ts-print-template .detail-header-info .detail-header-info-bottom .price-row a .original-price.discount-on {
  position: relative;
  font-weight: 400;
  text-decoration: line-through;
  text-transform: uppercase;
  font-size: 0.875rem;
}
.ts-print-template .detail-header-info .detail-header-info-bottom .price-row a small {
  font-size: 0.875rem;
}
.ts-print-template .detail-header-info .detail-header-info-bottom .price-row a .wrapper-btn {
  position: relative;
  font-weight: 700;
  font-size: 0.875rem;
}
.ts-print-template .detail-header-info .detail-header-info-bottom .price-row a .wrapper-btn img {
  display: none;
}
.ts-print-template .detail-header-info .detail-header-info-bottom .price-row .visit-detail {
  font-weight: 600;
  font-size: 0.875rem;
}
.ts-print-template .detail-section.detail-section-content {
  position: relative;
}
.ts-print-template .detail-section.detail-section-content .detail-left-sidebar {
  position: relative;
  padding: 0px 15px;
  width: 65%;
}
.ts-print-template .detail-section.detail-section-content .detail-sidebar {
  position: relative;
  padding: 0px 15px;
  width: 35%;
}
.ts-print-template .detail-section.detail-section-content .container {
  position: relative;
}
.ts-print-template .detail-section.detail-section-content .container .detail-info-section.detail-info-section--intro {
  position: relative;
  padding-top: 2rem;
}
.ts-print-template .detail-section.detail-section-content .container .detail-info-section.detail-info-section--intro h2 {
  position: relative;
  color: #2e2e2e;
  line-height: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 2rem;
}
.ts-print-template .detail-section.detail-section-content .container .detail-info-section.detail-info-section--intro p {
  position: relative;
  color: #2e2e2e;
  margin-top: 1rem;
  line-height: 1.813rem;
  font-weight: 400;
  font-size: 1.125rem;
}
.ts-print-template .detail-section.detail-section-content .container .detail-info-section.detail-info-section--intro p strong {
  color: #2e2e2e;
}
.ts-print-template .detail-info-section--itinerary {
  position: relative;
}
.ts-print-template .detail-info-section--itinerary .h3 {
  position: relative;
  color: #2e2e2e;
  line-height: 2rem;
  font-weight: 700;
  font-size: 1.5rem;
}
.ts-print-template .detail-info-section--itinerary .accordion-toggle-all {
  display: none;
}
.ts-print-template .detail-info-section--itinerary .accordion-wrapper .accordion-item .accordion-toggle {
  border: 0;
  outline: none;
  box-shadow: none;
  background: rgba(0, 0, 0, 0);
  padding: 0;
  color: inherit;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  background-color: #f1f2f5;
  transition: background-color 0.3s;
  width: 100%;
  gap: 0.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.ts-print-template .detail-info-section--itinerary .accordion-wrapper-boxed {
  position: relative;
}
.ts-print-template .detail-info-section--itinerary .accordion-wrapper-boxed .accordion-item {
  margin-bottom: 1rem;
  border-radius: 0.25rem;
}
.ts-print-template .detail-info-section--itinerary .accordion-wrapper-boxed .accordion-item .accordion-numbering {
  position: relative;
  color: #d90016;
  font-weight: 700;
  font-size: 1.125rem;
}
.ts-print-template .detail-info-section--itinerary .accordion-wrapper-boxed .accordion-item button.accordion-toggle {
  gap: 0.8rem;
  padding: 1.36rem 1.5rem;
  background: inherit;
  font-size: 1.125rem;
  justify-content: left;
  border: 0px;
}
.ts-print-template .detail-info-section--itinerary .accordion-wrapper-boxed .accordion-item button.accordion-toggle .h5 {
  font-size: 1.125rem;
}
.ts-print-template .detail-info-section--itinerary .accordion-wrapper-boxed .accordion-item .accordion-content {
  position: relative;
}
.ts-print-template .detail-info-section--itinerary .accordion-wrapper-boxed .accordion-item .accordion-content .accordion-content--inner.stripe-accordion-slider {
  padding-top: 0rem;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.ts-print-template .detail-info-section--itinerary .accordion-wrapper-boxed .accordion-item .accordion-content .accordion-content--inner.fullwidth-content {
  position: relative;
  padding-bottom: 0rem;
}
.ts-print-template .detail-info-section--itinerary .accordion-wrapper-boxed .accordion-item .accordion-content .accordion-content--inner.fullwidth-content .accordion-block.accordion-block-text {
  position: relative;
  max-width: 100%;
}
.ts-print-template .detail-info-section--itinerary .accordion-wrapper-boxed .accordion-item .accordion-content .accordion-block-gallery {
  width: 19.7rem;
  overflow: hidden;
}
.ts-print-template .detail-info-section--itinerary .accordion-wrapper-boxed .accordion-item .accordion-content .accordion-block-gallery .slider-controls {
  left: 1rem !important;
  right: 1rem !important;
}
.ts-print-template .detail-info-section--itinerary .accordion-wrapper-boxed .accordion-item .accordion-content .accordion-block-gallery .slider-controls .prev-button {
  color: #d90016 !important;
  background-color: white !important;
}
.ts-print-template .detail-info-section--itinerary .accordion-wrapper-boxed .accordion-item .accordion-content .accordion-block-gallery .slider-controls .next-button {
  color: #d90016 !important;
  background-color: white !important;
}
.ts-print-template .detail-info-section--itinerary .accordion-wrapper-boxed .accordion-item .accordion-content .accordion-block-gallery .zoom-indicator,
.ts-print-template .detail-info-section--itinerary .accordion-wrapper-boxed .accordion-item .accordion-content .accordion-block-gallery .accordion-gallery-item--copyright {
  display: none;
}
.ts-print-template .detail-info-section--itinerary .accordion-wrapper-boxed .accordion-item .accordion-content .accordion-block-gallery .accordion-block-gallery--inner {
  position: relative;
}
.ts-print-template .detail-info-section--itinerary .accordion-wrapper-boxed .accordion-item .accordion-content .accordion-block-gallery .accordion-block-gallery--inner .accordion-gallery-item:nth-child(2),
.ts-print-template .detail-info-section--itinerary .accordion-wrapper-boxed .accordion-item .accordion-content .accordion-block-gallery .accordion-block-gallery--inner .accordion-gallery-item:nth-child(3) {
  position: relative;
  display: none;
}
.ts-print-template .detail-info-section--itinerary .accordion-wrapper-boxed .accordion-item .accordion-content .accordion-block-gallery .tns-nav {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 1rem;
  text-align: center;
}
.ts-print-template .detail-info-section--itinerary .accordion-wrapper-boxed .accordion-item .accordion-content .accordion-block-gallery .tns-nav button {
  position: relative;
  width: 0.625rem;
  height: 0.625rem;
  margin: 0rem 0.3rem;
  border-radius: 50rem;
  background-color: rgba(255, 255, 255, 0.5);
}
.ts-print-template .detail-info-section--itinerary .accordion-wrapper-boxed .accordion-item .accordion-content .accordion-block-gallery .tns-nav button.tns-nav-active {
  background-color: white;
}
.ts-print-template .detail-info-section--itinerary .accordion-wrapper-boxed .accordion-item .accordion-content .accordion-block-gallery .accordion-gallery-item--image {
  border-radius: 0rem;
}
.ts-print-template .detail-info-section--itinerary .accordion-wrapper-boxed .accordion-item .accordion-content .accordion-block-gallery .accordion-gallery-item--image img {
  border-radius: 0rem;
}
.ts-print-template .detail-info-section--itinerary .accordion-wrapper-boxed .accordion-item .accordion-content .accordion-block.accordion-block-text {
  position: relative;
  max-width: 38.125rem;
  padding: 1.3rem 0rem;
  border-top: 1px solid rgba(46, 46, 46, 0.15);
}
.ts-print-template .detail-info-section--itinerary .accordion-wrapper-boxed .accordion-item .accordion-content .accordion-block.accordion-block-text p {
  position: relative;
  color: #2e2e2e;
  line-height: 1.6rem;
  font-size: 1rem;
}
.ts-print-template .detail-info-section--itinerary .accordion-wrapper-boxed .accordion-item .accordion-content .accordion-block.accordion-block-text .accordion-lists {
  position: relative;
  margin-top: 1rem;
  color: rgba(46, 46, 46, 0.8);
}
.ts-print-template .detail-box-services {
  position: relative;
}
.ts-print-template .detail-box-services .detail-box-title {
  position: relative;
}
.ts-print-template .detail-box-services .detail-box-title .h5 {
  position: relative;
  color: #2e2e2e;
  line-height: 2rem;
  font-weight: 700;
  font-size: 1.5rem;
}
.ts-print-template .detail-box-services .detail-box-body {
  position: relative;
}
.ts-print-template .detail-box-services .detail-box-body ul.checklist {
  position: relative;
  margin-top: 1.5rem;
}
.ts-print-template .detail-box-services .detail-box-body ul.checklist li {
  position: relative;
  color: #2e2e2e;
  margin-top: 0rem;
  line-height: 26px;
  margin-bottom: 1rem;
  font-size: 1rem;
  padding-left: 1.5rem;
}
.ts-print-template .detail-box-services .detail-box-body ul.checklist li svg {
  position: absolute;
  left: 0px;
  top: 6px;
  width: 1rem;
  height: 1rem;
  margin-top: 0rem;
}
.ts-print-template .detail-box-contact {
  position: relative;
  margin-top: 2rem;
  padding: 1.5rem 1.5rem;
  background: inherit;
  margin-bottom: 2rem;
  border-radius: 0.25rem;
  border: 1px solid rgba(46, 46, 46, 0.15);
}
.ts-print-template .detail-box-contact .detail-contact-wrapper {
  gap: 0.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.ts-print-template .detail-box-contact .detail-contact-hotline {
  position: relative;
  column-gap: 1rem;
  display: flex;
}
.ts-print-template .detail-box-contact .detail-contact-hotline .chat-icon {
  position: relative;
}
.ts-print-template .detail-box-contact .detail-contact-hotline .chat-icon svg {
  color: #d90016;
}
.ts-print-template .detail-box-contact .detail-contact-hotline .header-contact_phone {
  display: inline-block;
  color: #2e2e2e;
  font-size: 1.5rem;
  font-weight: 600;
}
.ts-print-template .detail-box-contact .detail-contact-hotline .header-contact_email {
  position: relative;
  display: block;
  width: auto;
  margin: 1rem 0rem;
  color: #2e2e2e;
  font-size: 1.125rem;
  font-weight: 600;
}
.ts-print-template .detail-box-contact .detail-contact-hotline .header-timing {
  display: block;
  color: #808080;
  max-width: 16rem;
  line-height: 1.063rem;
  font-size: 0.75rem;
  margin-top: 0.5rem;
}
.ts-print-template .detail-box-contact .detail-contact-whatsapp {
  position: relative;
  font-size: 0.75rem;
  color: #2e2e2e;
  font-weight: 700;
}
.ts-print-template .detail-box-contact .detail-contact-whatsapp .whatsapp-link {
  width: auto;
  display: block;
  position: relative;
  padding: 1rem 0rem 1rem 2rem;
  color: #2e2e2e !important;
  border-left: 1px solid rgba(46, 46, 46, 0.15);
}
.ts-print-template .detail-box-contact .detail-contact-whatsapp .whatsapp-link svg {
  position: relative;
  color: #04D239 !important;
  margin-bottom: 1.1rem !important;
  text-align: center;
  margin: 0 auto;
  display: block;
}
.ts-print-template .tour-guide-box {
  position: relative;
  padding: 1.7rem 1.8rem;
  border-radius: 0.25rem;
  border: 1px solid rgba(46, 46, 46, 0.15);
}
.ts-print-template .tour-guide-box .guide-heldine-title {
  color: #2e2e2e;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.ts-print-template .tour-guide-box .guides-box_inner {
  position: relative;
  padding-left: 7rem;
  min-height: 5.75rem;
}
.ts-print-template .tour-guide-box .guides-box_inner .guider-name {
  position: relative;
  color: #d90016;
  padding-top: 2rem;
  font-size: 1.125rem;
  font-weight: 700;
}
.ts-print-template .tour-guide-box .guides-box_inner .show-guides {
  position: absolute;
  left: 0rem;
  top: 0rem;
  overflow: hidden;
  border-radius: 50rem;
  border: 1px solid rgba(46, 46, 46, 0.15);
}
.ts-print-template .tour-guide-box .guides-box_inner .show-guides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ts-print-template .tour-guide-box .guides-box {
  position: relative;
}
.ts-print-template .tour-guide-box .guides-box .modal-forms.modal-wrapper {
  display: none !important;
}
.ts-print-template .video-box-popup-widget {
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
  border-radius: 0.25rem;
}
.ts-print-template .video-box-popup-widget .video-impression_video {
  position: relative;
}
.ts-print-template .video-box-popup-widget .video-impression_video .video-box.video-box-modal-trigger {
  position: relative;
}
.ts-print-template .video-box-popup-widget .video-impression_video .video-box.video-box-modal-trigger img {
  position: relative;
  width: 100%;
  display: block;
}
.ts-print-template .video-box-popup-widget .video-impression_video .video-box.video-box-modal-trigger .video-one_play {
  position: absolute;
  left: 0rem;
  top: 0rem;
  right: 0rem;
  bottom: 0rem;
  text-align: center;
}
.ts-print-template .video-box-popup-widget .video-impression_video .video-box.video-box-modal-trigger .video-one_play:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  background-color: rgba(46, 46, 46, 0.45);
}
.ts-print-template .video-box-popup-widget .video-impression_video .video-box.video-box-modal-trigger .video-one_play svg {
  position: absolute;
  left: 50%;
  top: 50%;
  color: #d90016;
  width: 5rem;
  height: 5rem;
  transform: translateX(-50%) translateY(-50%);
}
.ts-print-template .video-box-popup-widget .custom-video-modal {
  display: none;
}
.ts-print-template .detail-info-section.detail-info-section--descriptions {
  display: none;
}
.ts-print-template .detail-section-iconsteaser,
.ts-print-template .detail-section.detail-section-booking {
  position: relative;
  display: none;
}/*# sourceMappingURL=print-template.css.map */