::selection {
  background: #a69d97;
  /* WebKit/Blink Browsers */
  color: #ffffff;
}
::-moz-selection {
  background: #a69d97;
  /* Gecko Browsers */
  color: #ffffff;
}
::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #111111 !important;
  opacity: 0.5 !important;
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: #111111 !important;
  opacity: 0.5 !important;
}
:-ms-input-placeholder {
  /* IE 10+ */
  color: #111111 !important;
  opacity: 0.5 !important;
}
:-moz-placeholder {
  /* Firefox 18- */
  color: #111111 !important;
  opacity: 0.5 !important;
}
input[type=text]::-webkit-input-placeholder {
  color: #111111 !important;
  opacity: 0.5 !important;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: none;
  -webkit-text-fill-color: #1E572A;
  -webkit-box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0) inset;
  transition: background-color 5000s ease-in-out 0s;
}
html {
  font-size: 100%;
  /* 100% ~ 16px (Browserstandard) */
}
[data-container-link] {
  cursor: pointer;
}
/*--------------------------------------------------------
Typography
---------------------------------------------------------*/
h3 {
  margin: 0;
  padding: 0;
  font-weight: 400;
}
.fs-12 {
  font-size: 0.75rem !important;
}
.fs-14 {
  font-size: 0.875rem !important;
}
.fs-italic {
  font-style: italic;
}
.bg-white {
  background-color: #ffffff;
}
.bg-white-75 {
  background-color: rgba(255, 255, 255, 0.75);
}
.bg-grey-1 {
  background-color: #f1f1f1;
}
.alert {
  z-index: 999999999999 !important;
}
/*--------------------------------------------------------
Anchor
---------------------------------------------------------*/
/*--------------------------------------------------------
Preloader
---------------------------------------------------------*/
.preload-wrapper {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 999999999;
  background: #ffffff;
}
.preload-wrapper .preloader {
  position: relative;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  border-right: 3px solid #1E572A;
  border-radius: 100%;
  -webkit-animation: spinRight 800ms linear infinite;
  animation: spinRight 800ms linear infinite;
}
.preload-wrapper .preloader:before,
.preload-wrapper .preloader:after {
  content: "";
  width: 26px;
  height: 26px;
  display: block;
  position: absolute;
  top: calc(50% - 13px);
  left: calc(50% - 13px);
  border-left: 2px solid #1E572A;
  border-radius: 100%;
  -webkit-animation: spinLeft 800ms linear infinite;
  animation: spinLeft 800ms linear infinite;
}
.preload-wrapper .preloader:after {
  width: 16px;
  height: 16px;
  top: calc(50% - 8px);
  left: calc(50% - 8px);
  border: 0;
  border-right: 1px solid #1E572A;
  -webkit-animation: none;
  animation: none;
}
@-webkit-keyframes spinLeft {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(720deg);
  }
}
@keyframes spinLeft {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(720deg);
  }
}
@-webkit-keyframes spinRight {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@keyframes spinRight {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
/*--------------------------------------------------------
Loader
---------------------------------------------------------*/
.ajax-loading,
.ajax-loading-text {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 100%;
  z-index: 99999;
  padding-top: 20%;
  top: 0;
}
.ajax-loading .progress-circle-indeterminate,
.ajax-loading-text .progress-circle-indeterminate {
  background: url(../../assets/images/progress-circle-master.svg) no-repeat top left;
  width: 50px;
  height: 50px;
  background-size: 100% auto;
  margin: 100px auto auto auto;
}
.ajax-loading-inline {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.5);
  width: 100%;
  height: 100%;
  z-index: 99999;
  top: 0;
  left: 0;
  color: #1E572A;
}
.ajax-loading-inline div {
  font-size: 1.125rem !important;
  color: #ffffff;
}
.ajax-loading-inline .progress-circle-indeterminate {
  background: url(../../assets/images/progress-circle-master.svg) no-repeat top left;
  width: 50px;
  height: 50px;
  background-size: 100% auto;
  margin: 100px auto auto auto;
}
/*--------------------------------------------------------
Photo Swiper
---------------------------------------------------------*/
.open-img {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  opacity: 1;
}
.open-img i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  transition: 0.4s;
  color: var(--white-color);
  font-size: 1.25rem;
}
.open-img div {
  position: relative;
  display: inline-block;
  transition: all 0.3s ease 0s;
  opacity: 1;
}
.open-img div:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  inset: 10px;
  background-color: var(--theme-color);
  border-radius: 0px;
  transition: 0.4s;
  opacity: 0;
  transform: scale(0);
}
.open-img:hover div:after {
  opacity: 0.7;
  transform: scale(1);
}
.open-img:hover div i {
  opacity: 1;
}
.cursor-pointer {
  cursor: pointer;
}
.switch-lang {
  position: relative;
  top: 2px;
  margin-right: 5px !important;
}
.switch-lang img {
  width: 20px;
  height: 15px;
}
.op-50 {
  opacity: 0.5;
}
/*--------------------------------------------------------
Map
---------------------------------------------------------*/
#contact-map {
  min-height: 500px;
  box-shadow: 0 8px 12px rgba(51, 51, 51, 0.3);
}
#contact-map a {
  text-decoration: none;
}
.logo-invert {
  display: none;
}
.font-line-through {
  text-decoration: line-through;
}
/*--------------------------------------------------------
PAYMENT
---------------------------------------------------------*/
.payment-icon {
  width: 30px;
  height: auto;
}
.logo_busfinder {
  width: 30%;
}
@media only screen and (max-width: 1023px) {
  .logo_busfinder {
    width: 50%;
  }
}
/*# sourceMappingURL=Base.css.map */