html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, [type=button], [type=reset], [type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner, [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring, [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden; /* fix firefox animation glitch */
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

.edm-info-tabs {
  background: white;
  padding: 30px 60px;
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-150%);
  -ms-transform: translateY(-150%);
  transform: translateY(-150%);
  -webkit-transition: 400ms;
  transition: 400ms;
  z-index: 999;
}
@media (max-width: 992px) {
  .edm-info-tabs {
    position: relative;
    padding: 30px;
    display: none;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    background: transparent;
    padding: 30px 15px;
  }
}
.edm-info-tabs h1 {
  margin-top: -90px;
  margin-bottom: 60px;
  color: white;
  font-weight: 400;
  font-size: 40px;
}
@media (max-width: 992px) {
  .edm-info-tabs h1 {
    display: none;
  }
}
.edm-info-tabs.active {
  -webkit-transform: translateY(120px);
  -ms-transform: translateY(120px);
  transform: translateY(120px);
}
@media (max-width: 992px) {
  .edm-info-tabs.active {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.edm-info-tabs::after, .edm-info-tabs::before {
  content: "";
  width: 100%;
  height: 4px;
  background: var(--p-brand-color-s);
  left: 0;
  display: block;
  position: absolute;
}
@media (max-width: 992px) {
  .edm-info-tabs::after, .edm-info-tabs::before {
    display: none;
  }
}
.edm-info-tabs::before {
  bottom: 0px;
}
.edm-info-tabs::after {
  top: 0px;
}
@media (max-width: 992px) {
  .edm-info-tabs .edm-info-tabs-header {
    display: none;
  }
}
.edm-info-tabs .edm-info-tabs-header h3 {
  font-weight: 400;
  font-size: 44px;
  margin: 0;
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .edm-info-tabs .edm-info-tabs-header h3 {
    font-size: 30px;
    margin-bottom: 15px;
  }
}
.edm-info-tabs .edm-info-tabs-header .edm-info-tabs-close {
  position: absolute;
  top: -28px;
  right: 30px;
  z-index: 1;
  cursor: pointer;
}
@media (max-width: 992px) {
  .edm-info-tabs .edm-info-tabs-header .edm-info-tabs-close {
    display: none;
  }
}
.edm-info-tabs .edm-info-tabs-header .edm-info-tabs-close svg {
  width: 60px;
  height: auto;
}
.edm-info-tabs .edm-info-tabs-header .edm-info-tabs-close svg .color-svg-fill {
  fill: var(--p-brand-color-s);
}
.edm-info-tabs .edm-info-tabs-header .edm-info-tabs-close .cc {
  stroke: var(--p-brand-color-s);
}
.edm-info-tabs .edm-info-tabs-wrapper {
  display: none;
}
@media (max-width: 992px) {
  .edm-info-tabs .edm-info-tabs-wrapper {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    padding: 0 20%;
    margin-top: 5px;
    display: none;
  }
}
.edm-info-tabs .edm-info-tabs-wrapper ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style: none;
  margin: 15px 0;
  padding: 0;
  gap: 15px;
  color: white;
}
@media (max-width: 992px) {
  .edm-info-tabs .edm-info-tabs-wrapper ul {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.edm-info-tabs .edm-info-tabs-wrapper ul li {
  width: 33.33333%;
  background: #b3b3b3;
  font-family: "Rubik";
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  padding: 15px;
  border-radius: 150px;
  font-size: 16px;
  line-height: 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: 400ms;
  transition: 400ms;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .edm-info-tabs .edm-info-tabs-wrapper ul li {
    height: 7px;
    padding: 0;
    border-radius: 0;
  }
}
.edm-info-tabs .edm-info-tabs-wrapper ul li.hotel-button {
  background: #FED732;
  color: #265ba7;
}
.edm-info-tabs .edm-info-tabs-wrapper ul li.hotel-button svg {
  width: 30px;
  margin-right: 15px;
  height: auto;
  margin: initial;
  margin-right: 15px;
  -webkit-transition: 400ms;
  transition: 400ms;
}
.edm-info-tabs .edm-info-tabs-wrapper ul li.hotel-button span {
  font-weight: 600;
}
.edm-info-tabs .edm-info-tabs-wrapper ul li.hotel-button.active {
  background: #265ba7;
  color: #FED732;
}
.edm-info-tabs .edm-info-tabs-wrapper ul li.hotel-button.active svg path {
  fill: #FED732;
}
.edm-info-tabs .edm-info-tabs-wrapper ul li.active {
  background: var(--p-brand-color-s);
}
@media (max-width: 992px) {
  .edm-info-tabs .edm-info-tabs-wrapper ul li.active {
    height: 10px;
    padding: 0;
    border-radius: 0;
  }
}
.edm-info-tabs .edm-info-tabs-wrapper ul li span {
  font-family: "Rubik";
  font-weight: 400;
}
@media (max-width: 992px) {
  .edm-info-tabs .edm-info-tabs-wrapper ul li span {
    display: none;
  }
}
.edm-info-tabs .edm-info-tabs-wrapper ul li strong {
  font-weight: bold;
}
.edm-info-tabs .edm-info-tabs-content .edm-info-content {
  border: 1px solid #b3b3b3;
  border-radius: 24px;
  overflow: hidden;
}
.edm-info-tabs .edm-info-tabs-content .edm-info-content#desktop {
  display: block;
}
@media (max-width: 992px) {
  .edm-info-tabs .edm-info-tabs-content .edm-info-content#desktop {
    display: none;
  }
}
.edm-info-tabs .edm-info-tabs-content .edm-info-content#mobile {
  display: none;
  border: 0;
  border-radius: 0px;
}
@media (max-width: 992px) {
  .edm-info-tabs .edm-info-tabs-content .edm-info-content#mobile {
    display: block;
  }
}
.edm-info-tabs .edm-info-tabs-content .edm-info-content#mobile .edm-info-content-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #b3b3b3;
  border-radius: 24px;
  overflow: hidden;
}
.edm-info-tabs .edm-info-tabs-content .edm-info-content#mobile .owl-dots button span {
  width: 20px;
  height: 4px;
  border-radius: 0;
  margin: 5px;
}
.edm-info-tabs .edm-info-tabs-content .edm-info-content#mobile .owl-dots button.active span {
  background: var(--p-brand-color);
}
.edm-info-tabs .edm-info-tabs-content .edm-info-content .edm-info-content-wrapper {
  display: none;
}
@media (max-width: 992px) {
  .edm-info-tabs .edm-info-tabs-content .edm-info-content .edm-info-content-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.edm-info-tabs .edm-info-tabs-content .edm-info-content .edm-info-content-wrapper.active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.edm-info-tabs .edm-info-tabs-content .edm-info-content .edm-info-content-wrapper .edm-tab-content {
  padding: 30px 60px;
  width: 55%;
}
@media (max-width: 1400px) {
  .edm-info-tabs .edm-info-tabs-content .edm-info-content .edm-info-content-wrapper .edm-tab-content {
    width: 70%;
  }
}
.edm-info-tabs .edm-info-tabs-content .edm-info-content .edm-info-content-wrapper .edm-tab-content.edm-full {
  width: 100%;
}
@media (max-width: 992px) {
  .edm-info-tabs .edm-info-tabs-content .edm-info-content .edm-info-content-wrapper .edm-tab-content {
    width: 100%;
    padding: 15px;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    background: white;
  }
}
.edm-info-tabs .edm-info-tabs-content .edm-info-content .edm-info-content-wrapper .edm-tab-content .edm-tab-content-wrapper h4 {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 26px;
  margin: 0;
  display: none;
}
@media (max-width: 992px) {
  .edm-info-tabs .edm-info-tabs-content .edm-info-content .edm-info-content-wrapper .edm-tab-content .edm-tab-content-wrapper h4 {
    display: block;
    margin-top: 10px;
  }
}
.edm-info-tabs .edm-info-tabs-content .edm-info-content .edm-info-content-wrapper .edm-tab-content .edm-tab-content-wrapper > div {
  margin: 30px 0;
  white-space: pre-wrap;
}
.edm-info-tabs .edm-info-tabs-content .edm-info-content .edm-info-content-wrapper .edm-tab-content .edm-tab-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
}
@media (max-width: 992px) {
  .edm-info-tabs .edm-info-tabs-content .edm-info-content .edm-info-content-wrapper .edm-tab-content .edm-tab-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.edm-info-tabs .edm-info-tabs-content .edm-info-content .edm-info-content-wrapper .edm-tab-content .edm-tab-links .edm-tab-link a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.edm-info-tabs .edm-info-tabs-content .edm-info-content .edm-info-content-wrapper .edm-tab-content .edm-tab-links .edm-tab-link a img {
  width: 50px;
}
.edm-info-tabs .edm-info-tabs-content .edm-info-content .edm-info-content-wrapper .edm-tab-content .edm-tab-links .edm-tab-link a strong {
  color: #265ba7;
  font-size: 14px;
}
.edm-info-tabs .edm-info-tabs-content .edm-info-content .edm-info-content-wrapper .edm-tab-image {
  position: relative;
  width: 45%;
  min-height: 420px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 1400px) {
  .edm-info-tabs .edm-info-tabs-content .edm-info-content .edm-info-content-wrapper .edm-tab-image {
    width: 35%;
  }
}
.edm-info-tabs .edm-info-tabs-content .edm-info-content .edm-info-content-wrapper .edm-tab-image.align-top {
  background-position: top;
}
.edm-info-tabs .edm-info-tabs-content .edm-info-content .edm-info-content-wrapper .edm-tab-image.align-left {
  background-position: left;
}
@media (max-width: 992px) {
  .edm-info-tabs .edm-info-tabs-content .edm-info-content .edm-info-content-wrapper .edm-tab-image {
    width: 100%;
    min-height: auto;
    height: 250px;
  }
}
.edm-info-tabs .edm-info-tabs-content .edm-info-content .edm-info-content-wrapper .edm-tab-image .edm-trigger-video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}
.edm-info-tabs .edm-info-tabs-content .edm-info-content .edm-info-content-wrapper .edm-tab-image .edm-trigger-video svg {
  width: 50px;
  height: 50px;
}
.edm-info-tabs .edm-info-tabs-content .edm-info-content .edm-info-content-wrapper .edm-tab-image .edm-close-video {
  position: absolute;
  top: 15px;
  right: 15px;
  display: none;
  cursor: pointer;
  z-index: 9;
}
.edm-info-tabs .edm-info-tabs-content .edm-info-content .edm-info-content-wrapper .edm-tab-image .edm-close-video svg {
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.edm-info-tabs .edm-info-tabs-content .edm-info-content .edm-info-content-wrapper .edm-tab-image .edm-tab-video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
}
.edm-info-tabs .edm-info-tabs-content .edm-info-content .edm-info-content-wrapper .edm-tab-image .edm-tab-video video {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
@media (max-width: 992px) {
  .edm-info-tabs .edm-info-tabs-nav {
    display: none;
  }
}
.edm-info-tabs .edm-info-tabs-nav > div {
  position: absolute;
  top: 55%;
  cursor: pointer;
}
.edm-info-tabs .edm-info-tabs-nav > div img {
  width: 20px;
}
.edm-info-tabs .edm-info-tabs-nav > div svg {
  width: 25px;
  height: auto;
}
.edm-info-tabs .edm-info-tabs-nav .edm-info-tab-prev {
  left: 15px;
}
.edm-info-tabs .edm-info-tabs-nav .edm-info-tab-next {
  right: 15px;
}

.gv .edm-info-tabs-wrapper ul li.active {
  background: var(--p-brand-color);
}
.gv .edm-info-tabs::after, .gv .edm-info-tabs::before {
  background: var(--p-brand-color-s);
}

.edm-info-extra-c {
  background: white;
  padding: 30px 60px;
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: 400ms;
  transition: 400ms;
  z-index: 999;
}
@media (max-width: 992px) {
  .edm-info-extra-c {
    position: relative;
    padding: 30px;
    display: none;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    background: transparent;
  }
}
.edm-info-extra-c.active {
  -webkit-transform: translateY(60px);
  -ms-transform: translateY(60px);
  transform: translateY(60px);
}
@media (max-width: 992px) {
  .edm-info-extra-c.active {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.edm-info-extra-c::after, .edm-info-extra-c::before {
  content: "";
  width: 100%;
  height: 4px;
  background: rgba(var(--p-brand-color), 1);
  left: 0;
  display: block;
  position: absolute;
}
@media (max-width: 992px) {
  .edm-info-extra-c::after, .edm-info-extra-c::before {
    display: none;
  }
}
.edm-info-extra-c::before {
  bottom: 0px;
}
.edm-info-extra-c::after {
  top: 0px;
}
.edm-info-extra-c .edm-info-extra-c-header h3 {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 44px;
  margin: 0;
}
@media (max-width: 992px) {
  .edm-info-extra-c .edm-info-extra-c-header h3 {
    font-size: 30px;
    margin-bottom: 15px;
  }
}
.edm-info-extra-c .edm-info-extra-c-header .edm-info-extra-c-close {
  position: absolute;
  top: -28px;
  right: 30px;
  z-index: 1;
  cursor: pointer;
}
@media (max-width: 992px) {
  .edm-info-extra-c .edm-info-extra-c-header .edm-info-extra-c-close {
    display: none;
  }
}
.edm-info-extra-c .edm-info-extra-c-header .edm-info-extra-c-close img {
  width: 60px;
}
@media (max-width: 992px) {
  .edm-info-extra-c .edm-info-extra-c-wrapper {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    padding: 0 20%;
    margin-top: 5px;
    display: none;
  }
}
.edm-info-extra-c .edm-info-extra-c-wrapper ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 15px 0;
  padding: 0;
  gap: 15px;
  color: white;
}
@media (max-width: 992px) {
  .edm-info-extra-c .edm-info-extra-c-wrapper ul {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.edm-info-extra-c .edm-info-extra-c-wrapper ul li {
  width: 33.33333%;
  background: #b3b3b3;
  font-family: "Rubik";
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  padding: 15px;
  border-radius: 150px;
  font-size: 16px;
  line-height: 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: 400ms;
  transition: 400ms;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .edm-info-extra-c .edm-info-extra-c-wrapper ul li {
    height: 7px;
    padding: 0;
    border-radius: 0;
  }
}
.edm-info-extra-c .edm-info-extra-c-wrapper ul li.hotel-button {
  background: #FED732;
  color: #265ba7;
}
.edm-info-extra-c .edm-info-extra-c-wrapper ul li.hotel-button svg {
  width: 30px;
  margin-right: 15px;
  height: auto;
  margin: initial;
  margin-right: 15px;
  -webkit-transition: 400ms;
  transition: 400ms;
}
.edm-info-extra-c .edm-info-extra-c-wrapper ul li.hotel-button span {
  font-weight: 600;
}
.edm-info-extra-c .edm-info-extra-c-wrapper ul li.hotel-button.active {
  background: #265ba7;
  color: #FED732;
}
.edm-info-extra-c .edm-info-extra-c-wrapper ul li.hotel-button.active svg path {
  fill: #FED732;
}
.edm-info-extra-c .edm-info-extra-c-wrapper ul li.active {
  background: #5faffc;
}
@media (max-width: 992px) {
  .edm-info-extra-c .edm-info-extra-c-wrapper ul li.active {
    height: 10px;
    padding: 0;
    border-radius: 0;
  }
}
.edm-info-extra-c .edm-info-extra-c-wrapper ul li span {
  font-family: "Rubik";
  font-weight: 400;
}
@media (max-width: 992px) {
  .edm-info-extra-c .edm-info-extra-c-wrapper ul li span {
    display: none;
  }
}
.edm-info-extra-c .edm-info-extra-c-wrapper ul li strong {
  font-weight: bold;
}
.edm-info-extra-c .edm-info-extra-c-content .edm-info-content {
  overflow: hidden;
}
.edm-info-extra-c .edm-info-extra-c-content .edm-info-content#desktop {
  display: block;
}
@media (max-width: 992px) {
  .edm-info-extra-c .edm-info-extra-c-content .edm-info-content#desktop {
    display: none;
  }
}
.edm-info-extra-c .edm-info-extra-c-content .edm-info-content#mobile {
  display: none;
  border: 0;
  border-radius: 0px;
}
@media (max-width: 992px) {
  .edm-info-extra-c .edm-info-extra-c-content .edm-info-content#mobile {
    display: block;
  }
}
.edm-info-extra-c .edm-info-extra-c-content .edm-info-content#mobile .edm-info-content-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #b3b3b3;
  overflow: hidden;
}
.edm-info-extra-c .edm-info-extra-c-content .edm-info-content#mobile .owl-dots button span {
  width: 70px;
  height: 10px;
  border-radius: 0;
}
.edm-info-extra-c .edm-info-extra-c-content .edm-info-content#mobile .owl-dots button.active span {
  background: #5faffc;
}
.edm-info-extra-c .edm-info-extra-c-content .edm-info-content .edm-info-content-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 992px) {
  .edm-info-extra-c .edm-info-extra-c-content .edm-info-content .edm-info-content-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.edm-info-extra-c .edm-info-extra-c-content .edm-info-content .edm-info-content-wrapper.active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.edm-info-extra-c .edm-info-extra-c-content .edm-info-content .edm-info-content-wrapper .edm-extra-c-content {
  white-space: pre-wrap;
}
.edm-info-extra-c .edm-info-extra-c-content .edm-info-content .edm-info-content-wrapper .edm-extra-c-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 30px;
}
.edm-info-extra-c .edm-info-extra-c-content .edm-info-content .edm-info-content-wrapper .edm-extra-c-link a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 150px;
  padding: 10px 15px;
  color: white;
  text-transform: uppercase;
  background: #265ba7;
  font-weight: 900;
}
.edm-info-extra-c .edm-info-extra-c-content .edm-info-content .edm-info-content-wrapper .edm-extra-c-link img {
  width: 30px;
}
.edm-info-extra-c .edm-info-extra-c-content .edm-info-content .edm-info-content-wrapper .edm-tab-content {
  padding: 0px 0px 30px 60px;
  width: 60%;
}
@media (max-width: 1400px) {
  .edm-info-extra-c .edm-info-extra-c-content .edm-info-content .edm-info-content-wrapper .edm-tab-content {
    width: 70%;
  }
}
@media (max-width: 1200px) {
  .edm-info-extra-c .edm-info-extra-c-content .edm-info-content .edm-info-content-wrapper .edm-tab-content {
    width: 90%;
    padding: 0px 0px 30px 30px;
  }
}
.edm-info-extra-c .edm-info-extra-c-content .edm-info-content .edm-info-content-wrapper .edm-tab-content.edm-full {
  width: 100%;
}
@media (max-width: 992px) {
  .edm-info-extra-c .edm-info-extra-c-content .edm-info-content .edm-info-content-wrapper .edm-tab-content {
    width: 100%;
    padding: 15px;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    background: white;
  }
}
.edm-info-extra-c .edm-info-extra-c-content .edm-info-content .edm-info-content-wrapper .edm-tab-content .edm-extra-c-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}
.edm-info-extra-c .edm-info-extra-c-content .edm-info-content .edm-info-content-wrapper .edm-tab-content .edm-extra-c-title img {
  width: 70px;
}
.edm-info-extra-c .edm-info-extra-c-content .edm-info-content .edm-info-content-wrapper .edm-tab-content .edm-extra-c-title h4 {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 36px;
  margin: 0;
  color: #265ba7;
}
.edm-info-extra-c .edm-info-extra-c-content .edm-info-content .edm-info-content-wrapper .edm-tab-content .edm-extra-c-title h3 {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 24px;
  margin: 0;
  color: #5faffc;
}
.edm-info-extra-c .edm-info-extra-c-content .edm-info-content .edm-info-content-wrapper .edm-tab-image {
  position: relative;
  width: 40%;
  background-size: cover;
  background-position: center;
}
.edm-info-extra-c .edm-info-extra-c-content .edm-info-content .edm-info-content-wrapper .edm-tab-image.align-top {
  background-position: top;
}
@media (max-width: 992px) {
  .edm-info-extra-c .edm-info-extra-c-content .edm-info-content .edm-info-content-wrapper .edm-tab-image {
    width: 100%;
    min-height: auto;
  }
}
* {
  box-sizing: border-box;
}

body {
  font-family: "Rubik";
}

.edm {
  position: relative;
  color: #272727;
}
.edm .edm-map-routes {
  position: relative;
  padding: 50px;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.edm .edm-map-routes.gv::after {
  background: var(--p-brand-color-s);
}
@media (max-width: 992px) {
  .edm .edm-map-routes.gv .edm-map-routes-wrapper::after {
    background: var(--p-brand-color-s) !important;
  }
}
.edm .edm-map-routes.op::after {
  -webkit-animation: removeGradientBackground 150ms forwards;
  animation: removeGradientBackground 150ms forwards;
}
.edm .edm-map-routes.op.grdnt::after {
  -webkit-animation: gradientBackground 400ms forwards;
  animation: gradientBackground 400ms forwards;
}
@media (max-width: 992px) {
  .edm .edm-map-routes.op .edm-map-routes-wrapper::after {
    background: rgba(0, 0, 0, 0.5) !important;
  }
}
.edm .edm-map-routes.op .country-click:hover path, .edm .edm-map-routes.op .country-click.active path {
  stroke: var(--p-brand-color);
}
.edm .edm-map-routes::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--p-brand-color);
  opacity: 0.8;
}
@media (max-width: 992px) {
  .edm .edm-map-routes::after {
    display: none;
  }
}
@media (max-width: 992px) {
  .edm .edm-map-routes {
    padding: 0;
    background-image: none !important;
  }
}
.edm .edm-map-routes#it_map {
  background-image: url("map_back.jpg");
}
@media (max-width: 992px) {
  .edm .edm-map-routes#it_map .edm-map-routes-wrapper {
    background-image: url("map_back.jpg");
  }
  .edm .edm-map-routes#it_map .edm-map-routes-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--p-brand-color);
    opacity: 0.8;
    z-index: 0;
  }
}
.edm .edm-map-routes#it_map .edm-routes.active {
  background: rgba(0, 93, 173, 0.9);
}
.edm .edm-map-routes .edm-map-routes-wrapper {
  position: relative;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
@media (max-width: 992px) {
  .edm .edm-map-routes .edm-map-routes-wrapper {
    padding: 30px;
    min-height: 500px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 120px;
  }
}
@media (max-width: 544px) {
  .edm .edm-map-routes .edm-map-routes-wrapper {
    min-height: 550px;
    padding: 15px;
    padding-bottom: 120px;
  }
}
.edm .edm-map-routes .edm-map-routes-wrapper .edm-routes-mobile-trigger {
  position: absolute;
  width: 100%;
  bottom: 15px;
  right: 0;
  padding: 0 15px;
  display: none;
  cursor: pointer;
  z-index: 999;
}
@media (max-width: 992px) {
  .edm .edm-map-routes .edm-map-routes-wrapper .edm-routes-mobile-trigger {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
  }
}
.edm .edm-map-routes .edm-map-routes-wrapper .edm-routes-mobile-trigger .t {
  display: none;
}
.edm .edm-map-routes .edm-map-routes-wrapper .edm-routes-mobile-trigger svg {
  width: 40px;
  height: 40px;
}
.edm .edm-map-routes .edm-map-routes-wrapper .edm-routes-mobile-trigger .edm-routes-select {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
}
.edm .edm-map-routes .edm-map-routes-wrapper .edm-routes-mobile-trigger .edm-routes-select select {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  height: 40px;
  border: 2px solid white;
  background: white;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: white;
  padding: 5px 15px;
  font-size: 18px;
  text-transform: uppercase;
  outline: none;
  padding-right: 45px;
}
.edm .edm-map-routes .edm-map-routes-wrapper .edm-routes-mobile-trigger .edm-routes-select .angle {
  position: absolute;
  top: 2px;
  right: 2px;
}
.edm .edm-map-routes svg {
  height: 600px;
  margin: 0px auto;
}
@media (max-width: 1400px) {
  .edm .edm-map-routes svg {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .edm .edm-map-routes svg {
    height: auto;
    width: 100%;
  }
}
.edm .edm-map-routes svg text {
  letter-spacing: 0px !important;
}
.edm .edm-map-routes svg text tspan {
  letter-spacing: 0px !important;
}
.edm .edm-map-routes .country-click {
  cursor: pointer;
  -webkit-transition: 400ms;
  transition: 400ms;
}
.edm .edm-map-routes .country-click:hover path, .edm .edm-map-routes .country-click.active path {
  -webkit-transition: 500ms;
  transition: 500ms;
  stroke: var(--p-brand-color);
  stroke-width: 5;
}
@media (max-width: 992px) {
  .edm .edm-map-routes .country-click:hover, .edm .edm-map-routes .country-click.active {
    stroke-width: 0;
  }
}
.edm .edm-map-routes .country-elegible {
  -webkit-transition: 400ms;
  transition: 400ms;
}
.edm .edm-map-routes .country-elegible.active {
  opacity: 1;
  stroke: #787878;
  stroke-width: 5;
}
.edm .edm-header {
  color: white;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 45px;
  font-size: 24px;
}
@media (max-width: 992px) {
  .edm .edm-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    font-size: 18px;
    margin-top: 15px;
    opacity: 1 !important;
  }
}
.edm .edm-header .edm-it-id {
  background: rgba(255, 255, 255, 0.3);
  padding: 5px 20px;
  border: 2px solid white;
  border-radius: 150px;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .edm .edm-header .edm-it-id {
    margin-bottom: 15px;
  }
}
.edm .edm-header h3 {
  margin: 0;
  font-size: 30px;
  font-weight: 400;
}
@media (max-width: 992px) {
  .edm .edm-header h3 {
    font-size: 22px;
  }
}
.edm .edm-map {
  text-align: center;
  margin: 60px 0px;
  z-index: 1;
}
@media (max-width: 992px) {
  .edm .edm-map {
    margin-bottom: 0;
    margin-top: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.edm .edm-extra-links {
  color: white;
  text-transform: uppercase;
  font-weight: 600;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  gap: 10px;
}
@media (max-width: 544px) {
  .edm .edm-extra-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
  }
}
.edm .edm-extra-links .edm-extra-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.edm .edm-extra-links .edm-extra-link img {
  width: 100px;
}
.edm .edm-extra-links .edm-extra-link-b {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid white;
  padding: 10px 25px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 150px;
  height: 55px;
}
@media (max-width: 544px) {
  .edm .edm-extra-links .edm-extra-link-b {
    height: 35px;
    font-size: 14px;
    padding: 5px 25px;
  }
}
.edm .edm-extra-links .edm-extra-link-b img {
  height: 55px;
  margin-right: 15px;
  width: auto;
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
}
@media (max-width: 544px) {
  .edm .edm-extra-links .edm-extra-link-b img {
    height: 35px;
  }
}
.edm .edm-routes {
  color: white;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 45px 45px 30px;
  -webkit-transition: 200ms;
  transition: 200ms;
  display: none;
}
@media (max-width: 992px) {
  .edm .edm-routes {
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 45px;
    display: none;
    height: 500px;
    top: 0;
  }
}
@media (max-width: 544px) {
  .edm .edm-routes {
    height: 450px;
  }
}
@media (max-width: 992px) {
  .edm .edm-routes .edm-routes-wrapper {
    height: 80%;
    border: 1px solid white;
    border-radius: 15px 0px 0 15px;
    overflow: hidden;
    overflow: auto;
    padding: 30px 0;
    text-align: center;
  }
  .edm .edm-routes .edm-routes-wrapper::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  .edm .edm-routes .edm-routes-wrapper::-webkit-scrollbar-track {
    -webkit-box-shadow: #4bb667;
    border-radius: 5px;
  }
  .edm .edm-routes .edm-routes-wrapper::-webkit-scrollbar-track-piece {
    background-color: #efefef;
  }
  .edm .edm-routes .edm-routes-wrapper::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #ccc;
    -webkit-box-shadow: inset 0 0 0px rgb(0, 0, 0);
  }
  .edm .edm-routes .edm-routes-wrapper::-webkit-scrollbar-thumb:window-inactive {
    background: #efefef;
  }
}
@media (max-width: 992px) {
  .edm .edm-routes.active {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.edm .edm-routes.active .edm-route.toggle-route {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.edm .edm-routes.active .edm-route-toggle {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  bottom: auto;
  top: 45px;
}
@media (max-width: 992px) {
  .edm .edm-routes.active .edm-route-toggle {
    display: none;
  }
}
.edm .edm-routes .edm-route {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media (max-width: 992px) {
  .edm .edm-routes .edm-route {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
  }
}
.edm .edm-routes .edm-route:not(:last-child) {
  margin-bottom: 5px;
}
@media (max-width: 992px) {
  .edm .edm-routes .edm-route:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media (max-width: 544px) {
  .edm .edm-routes .edm-route:not(:last-child) {
    margin-bottom: 15px;
  }
}
.edm .edm-routes .edm-route.toggle-route {
  display: none;
}
.edm .edm-routes .edm-route > div:first-child {
  width: 40%;
}
.edm .edm-routes p {
  margin: 0;
}
@media (max-width: 544px) {
  .edm .edm-routes p {
    font-size: 14px;
  }
}
.edm .edm-routes .edm-route-toggle {
  position: absolute;
  bottom: 45px;
  right: 45px;
  -webkit-transition: 400ms;
  transition: 400ms;
  cursor: pointer;
}
.edm .edm-routes .edm-route-toggle svg {
  width: 40px;
  height: auto;
}

.edm-container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
  z-index: 1;
}

@media (min-width: 768px) {
  .edm-container {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .edm-container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .edm-container {
    width: 1227px;
  }
}
@-webkit-keyframes gradientBackground {
  from {
    background: rgba(0, 0, 0, 0.5);
  }
  to {
    background: rgb(255, 102, 0);
    background: -webkit-linear-gradient(0deg, rgba(255, 102, 0, 0.9) 0%, rgba(128, 51, 1, 0.8) 100%);
    background: -webkit-linear-gradient(bottom, rgba(255, 102, 0, 0.9) 0%, rgba(128, 51, 1, 0.8) 100%);
    background: linear-gradient(0deg, rgba(255, 102, 0, 0.9) 0%, rgba(128, 51, 1, 0.8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff6600", endColorstr="#803301", GradientType=1);
    opacity: 1;
  }
}
@keyframes gradientBackground {
  from {
    background: rgba(0, 0, 0, 0.5);
  }
  to {
    background: rgb(255, 102, 0);
    background: -webkit-linear-gradient(0deg, rgba(255, 102, 0, 0.9) 0%, rgba(128, 51, 1, 0.8) 100%);
    background: -webkit-linear-gradient(bottom, rgba(255, 102, 0, 0.9) 0%, rgba(128, 51, 1, 0.8) 100%);
    background: linear-gradient(0deg, rgba(255, 102, 0, 0.9) 0%, rgba(128, 51, 1, 0.8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff6600", endColorstr="#803301", GradientType=1);
    opacity: 1;
  }
}
@-webkit-keyframes removeGradientBackground {
  from {
    background: rgb(255, 102, 0);
    background: -webkit-linear-gradient(0deg, rgba(255, 102, 0, 0.9) 0%, rgba(128, 51, 1, 0.8) 100%);
    background: -webkit-linear-gradient(bottom, rgba(255, 102, 0, 0.9) 0%, rgba(128, 51, 1, 0.8) 100%);
    background: linear-gradient(0deg, rgba(255, 102, 0, 0.9) 0%, rgba(128, 51, 1, 0.8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff6600", endColorstr="#803301", GradientType=1);
  }
  to {
    background: rgba(0, 0, 0, 0.7);
  }
}
@keyframes removeGradientBackground {
  from {
    background: rgb(255, 102, 0);
    background: -webkit-linear-gradient(0deg, rgba(255, 102, 0, 0.9) 0%, rgba(128, 51, 1, 0.8) 100%);
    background: -webkit-linear-gradient(bottom, rgba(255, 102, 0, 0.9) 0%, rgba(128, 51, 1, 0.8) 100%);
    background: linear-gradient(0deg, rgba(255, 102, 0, 0.9) 0%, rgba(128, 51, 1, 0.8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff6600", endColorstr="#803301", GradientType=1);
  }
  to {
    background: rgba(0, 0, 0, 0.7);
  }
}