:root {
  --a-missing-color: #ecbd34;
  --a-missing-bg-color: rgb(251, 218, 117);
}

button,input,optgroup,select,textarea {
  font-family:inherit;
  font-size:100%;
  line-height:1.15;
  margin:0
}
textarea {
  height: auto;
  min-height: 50px;
}
select {
  box-sizing: border-box;
  width: 100%;
}
select {
  height: 2.4375rem;
  margin: 0;
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;        
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid var(--a-grey2);
  border-radius: 0;
  background-color: #fefefe;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #0a0a0a;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%28138, 138, 138%29'></polygon></svg>");
  background-origin: content-box;
  background-position: left -1rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;  
  -webkit-transition: border-color .25s ease-in-out,-webkit-box-shadow .5s;
  transition: border-color .25s ease-in-out,-webkit-box-shadow .5s;
  transition: box-shadow .5s,border-color .25s ease-in-out;
  transition: box-shadow .5s,border-color .25s ease-in-out,-webkit-box-shadow .5s;
}
select * {
  font-family: "EuclidCircularB", "Arial", Sans-Serif !important; /*will not take EuclidCircularB for some reason */
}


#progress {
overflow: hidden; 
  padding: 0;
  list-style-type: none; 
  cursor:  default; 
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 0 5px;
}
#progress li { 
  background: white; 
  color: #353535;
  padding: var(--a-gap-small) var(--a-gap-small) var(--a-gap-normal) var(--a-gap-small);
  text-align: left;
}
#progress li:before {
  content: '';
}
#progress li {
  background: var(--a-grey5);
  color: white;    
}
#progress li.active {
  background: var(--a-primary-color);
  color: white;    
}

#progress span{
  display: inline !important;
}  

@media only screen and (min-width: 40em) and (max-width: 45em){
  #progress li svg{
    margin-left: 20px;
  }
}
/*@media only screen and (min-width: 40em){
  .notice_type_close, .notice, .notice_elite{
     border: 3px solid #353535; width:50%; min-height:300px; margin:0 auto; background:#e01918; color: white;  position:fixed; left:50%; top:50%; margin-left:-25%; margin-top:-250px; z-index: 999;
  }

}*/
@media only screen and (min-width: 600px){
  .notice_type_close, .notice, .notice_elite{
     border: 3px solid #000; width:50%; min-height:300px; margin:0 auto; background:var(--a-primary-color); color: white;  position:fixed; left:50%; top:50%; margin-left:-25%; margin-top:-250px; z-index: 999;
  }
}
@media only screen and (max-width: 600px){
  .notice_type_close, .notice, .notice_elite{
    padding-top: 40%; border: 3px solid #000; width:100%; min-height:100%; margin:0 auto; background:var(--a-primary-color); color: white;  position:fixed; left:0%; top:0%; margin-left:-0%; margin-top:-0px; z-index: 999;
  }
}

@media only screen and (min-width: 60em){
  /*#progress li {
      padding: 20px 0; 
  }*/
}
@media only screen and (max-width: 60em){
  #progress span{
    display: none !important;
  }
  #progress {
    line-height: 28px;
     margin-bottom: 30px;
  }


}


.grid_date{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: var(--a-gap-small); 
}


.grid_buttons{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: var(--a-gap-normal); 
}
.grid_buttons > :nth-child(1) {
  text-align: left;
}

.grid_buttons > :nth-child(2) {
  text-align: right;
}

.grid_mietradauswahl{
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 5px;
  text-align: left;
}
@media only screen and (max-width: 50em) {
  .grid_mietradauswahl{
    grid-template-columns: 1fr;
  }
  .mietradchoice_image_pit{
    display: none;
  }
} 
  .mietradchoice_image_pit img{
    align-self: flex-end;
  }
.loading_searchresults, .loading_data{
  padding: clamp(20px, calc(2 * (6px + 1vw)), 40px); 
  display: none; background: #e01918; color: white; font-weight: bold; text-align: center;
  margin: var(--a-gap-normal) auto auto auto;
  max-width: 620px;
}
.loading_searchresults.mini{
  display: block;
}

/* TRIPLE SPINNER */
/****************************************************************************/
#res_form .triple-spinner {
  display: block;
  position: relative;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top: 5px solid #fff; //#e62a32;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  margin: 0 auto;
}
#res_form .triple-spinner.red{
  border-top-color: #e01918;
}
#res_form .triple-spinner::before,
#res_form .triple-spinner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top: 5px solid;
}
#res_form .triple-spinner::before {
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-top-color: #000; /*#FF9800;*/
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3.5s linear infinite;
}
#res_form .triple-spinner::after {
  top: 16px;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border-top-color: #fff; /*#bc955a; /*#FFC107;*/
  -webkit-animation: spinibe 1.5s linear infinite;
  animation: spinibe 1.75s linear infinite;
}
#res_form .triple-spinner.red::after {
  border-top-color: #e01918;
}
@-webkit-keyframes spinibe {
    from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    }
    to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    }
}
@keyframes spinibe {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
    to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*END TRIPLE SPINNER */


a.add_bicycle.active,a.add_bicycle.active:focus,a.add_bicycle.active:hover,
a.remove_bicycle.active,a.remove_bicycle.active:focus,a.remove_bicycle.active:hover,
a.forward,a.forward:focus,a.forward:hover,
a.backward,a.backward:focus,a.backward:hover
 {
  /*background-size: 20px;
  background-repeat: no-repeat;
  background-position: right 20% center;
  padding: 12px calc( 20% + 40px) 12px 20%; 
  max-width: 100%;
  background-color: #e01918;
  cursor: pointer;
  text-align: center;
  color: white;
  display: inline-block;
  margin-top: 20px;*/
}

a.add_bicycle.active,a.add_bicycle.active:focus,a.add_bicycle.active:hover {
  background-image: url("/application/themes/bicycle2020/images/icons/icon-circle-plus.svg");
}
a.remove_bicycle.active,a.remove_bicycle.active:focus,a.remove_bicycle.active:hover {
  background-image: url("/application/themes/bicycle2020/images/icons/icon-circle-minus.svg");
}
a.forward,a.forward:focus,a.forward:hover {
  background-image: url("/application/themes/bicycle2020/images/icons/icon-circle-right_white.svg");
}
a.backward,a.backward:focus,a.backward:hover {
  background-image: url("/application/themes/bicycle2020/images/icons/icon-circle-left_white.svg");
  background-color: #353535;
}
#res_form a.add_bicycle:not(.active), #res_form a.remove_bicycle:not(.active){
  display: none;
}
a.forward.locked, a.choose_bicycle.nextbutton_small.locked{
  background: #ddd !important;
  cursor: default !important;  
  pointer-events: none;
} 

input.cal,input:focus.cal, input.cal:focus {
  background-image: url("/application/themes/bicycle2020/images/icons/calendar_dark.svg") !important;
  background-position: left 10px center !important;
  padding-left: 40px !important;
  background-size: 20px !important;
  background-repeat: no-repeat !important;
  background-color: #fafafa;
}


 /*[type="text"], [type="password"], [type="date"], [type="datetime"], [type="datetime-local"], [type="month"], [type="week"], [type="email"], [type="number"], [type="search"], [type="tel"], [type="time"], [type="url"], [type="color"], textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
    padding-left: 0.5rem;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: #0a0a0a;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  appearance: none;
}*/ 

[type="color"], [type="date"], [type="datetime-local"], [type="datetime"], [type="email"], [type="month"], [type="number"], [type="password"], [type="search"], [type="tel"], [type="text"], [type="time"], [type="url"], [type="week"], textarea {
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 2.4375rem;
  margin: 0;
  padding: .5rem;
  border: 1px solid var(--a-grey2);
  border-radius: 0;
  background-color: white;
  -webkit-box-shadow: inset 0 1px 2px rgba(10,10,10,.1);
  box-shadow: inset 0 1px 2px rgba(10,10,10,.1);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #0a0a0a;
  -webkit-transition: border-color .25s ease-in-out,-webkit-box-shadow .5s;
  transition: border-color .25s ease-in-out,-webkit-box-shadow .5s;
  transition: box-shadow .5s,border-color .25s ease-in-out;
  transition: box-shadow .5s,border-color .25s ease-in-out,-webkit-box-shadow .5s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
[type="color"]:focus, [type="date"]:focus, [type="datetime-local"]:focus, [type="datetime"]:focus, [type="email"]:focus, [type="month"]:focus, [type="number"]:focus, [type="password"]:focus, [type="search"]:focus, [type="tel"]:focus, [type="text"]:focus, [type="time"]:focus, [type="url"]:focus, [type="week"]:focus, textarea:focus {
  outline: 0;
  border: 1px solid var(--a-grey3);
  background-color: white;
  -webkit-box-shadow: 0 0 5px #cacaca;
  box-shadow: 0 0 5px #cacaca;
  -webkit-transition: border-color .25s ease-in-out,-webkit-box-shadow .5s;
  transition: border-color .25s ease-in-out,-webkit-box-shadow .5s;
  transition: box-shadow .5s,border-color .25s ease-in-out;
  transition: box-shadow .5s,border-color .25s ease-in-out,-webkit-box-shadow .5s;
}

a.nextbutton_small {
  background-image: url("/application/themes/bicycle2020/images/icons/icon-circle-right_white.svg");
  background-size: 16px;
  background-repeat: no-repeat;
  padding-right: 30px !important;
  background-position: right 20px center;
  padding: 6px 65px !important;
  background-color: #e01918;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: var(--a-font-size-normal);
  text-transform: uppercase;
  font-style: normal;
}


input.shapeshifter[type="radio"],  
input.shapeshifter[type="checkbox"]{
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
}

input.shapeshifter[type="radio"] + label,
input.shapeshifter[type="checkbox"] + label {
    cursor: pointer;
    padding-left: 30px !important;
    position: relative; /* set positioning context */
    min-height: 17px;
    min-width: 17px;
    margin-top: 5px;
    line-height: 22px; 
} 

input.shapeshifter[type="radio"] + label::before {
    content: "";
    position: absolute; /* absolutely position this pseudo-element */
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    width: 17px;
    height: 17px;
    background-size: 17px 17px;
    background-repeat: no-repeat;
    background-image: url("/application/themes/bicycle2020/images/icons/radiobutton.svg");
}

input.shapeshifter[type="radio"]:checked + label::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 10px; 
    transform: translateY(-50%);
}

/* Style for checked state */
input.shapeshifter[type="radio"]:checked + label::before {
   background-image: url("/application/themes/bicycle2020/images/icons/radiobutton_checked.svg");
}

input.shapeshifter[type="checkbox"] + label::before {
    content: "";
    position: absolute; /* absolutely position this pseudo-element */
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    width: 17px;
    height: 17px;
    background-size: 17px 17px;
    background-repeat: no-repeat;
    background-image: url("/application/themes/bicycle2020/images/icons/checkbox.svg");
}

input.shapeshifter[type="checkbox"]:checked + label::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 10px; 
    transform: translateY(-50%);
}

/* Style for checked state */
input.shapeshifter[type="checkbox"]:checked + label::before {
   background-image: url("/application/themes/bicycle2020/images/icons/checkbox_checked.svg");
}

/********* BEGIN calendar styling *********************/
.rd-container {
  display: none;
  padding: 0px;
  text-align: center;
  border: 0;
  background: transparent;
}
.rd-container:before {
  content: '';
  /*font-family: FontAwesome;  */
  position: absolute;
  color: #e2001a; 
  font-size: 40px;
  text-align: center;
  margin: 0 auto;
  left: calc(50% - 10px);
  top: 4px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #e2001a;
}
.rd-date{
  border: 1px solid #ccc;
  background-color: #fff;
  margin-top: 13px;
  padding-bottom: 15px;
}
.rd-container-attachment {
  position: absolute;
}
.rd-month {
  display: inline-block;
  margin-right: 25px;  
}
.rd-month:last-child {
  margin-right: 0;
}
.rd-days{
  width: 100%;
  background: white;
  padding-bottom: 10px;
  padding-top: 10px;
}
.rd-days-head{
  padding-top: 10px;
}
button.rd-back,
button.rd-next {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  /*padding: 10px 10px;*/
  margin: 0;
  color: #fff;
}
button.rd-back[disabled],
button.rd-next[disabled] {
  cursor: default;
}
button.rd-back {
  float: left;
}
button.rd-next {
  float: right;
}
.rd-back:before {
  display: block;
  content: '';
  /*font-family: FontAwesome;*/
  width: 0; 
  height: 0; 
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right:8px solid white;
}
button.rd-next:before {
  display: block;
  content: '';
  /*font-family: FontAwesome;*/
  width: 0; 
  height: 0; 
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;  
  border-left: 8px solid white;
}

@media only screen and (min-width: 40em) {
  .rd-day-body {
    cursor: pointer;
    text-align: center;
    line-height: 1;
    padding: 10px;
    text-decoration: none;
  }
  .rd-month-label{
    background-color: #e2001a;
    /*height: 20px;*/
    padding: 10px 50px;
   /* position: relative; */
    text-align: center;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 40em) {
  .rd-day-body {
    cursor: pointer;
    text-align: center;
    line-height: 1;
    padding: 10px 3px;
    text-decoration: none;
  }
  .rd-month-label{
    background-color: #e2001a;
    /*height: 35px;*/
    padding: 10px 50px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
  }
  .rd-container.small .rd-month-label{
    font-size: 10px !important; 
  }
  .hide-for-small-only{
    display: none;
  }
  .grid_box_hotels{
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 5px;
    text-align: center;
  }
}
.rd-day-body:not(.rd-day-disabled):hover {
  color: #fff;
  background: #e2001a;
}
.rd-day-selected,
.rd-time-selected,
.rd-time-option:hover {
  cursor: pointer;
  background-color: #333;
  color: #fff;
}
.rd-day-prev-month,
.rd-day-next-month {
  color: #999;
}
.rd-day-disabled {
  cursor: default;
  color: #ffe9e9;
}
.rd-time {
  position: relative;
  display: inline-block;
  margin-top: 5px;
  min-width: 80px;
}
.rd-time-list {
  display: none;
  position: absolute;
  overflow-y: scroll;
  max-height: 160px;
  left: 0;
  right: 0;
  background-color: #fff;
  color: #333;
}
.rd-time-selected, .rd-time-option {
  padding: 5px;
}
.rd-day-concealed {
  visibility: hidden;
}
/********* END calendar styling *********************/

@media only screen and (max-width: 64.2em){

  .ccm-page .grid_regionauswahl{
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1px;
    text-align: left;
  }
  #form_step2 .regionboxes, a.regionboxes:focus{  
    background: #777; width: 100%; height: 120px;
    color: #fff; text-align: center;
    padding-top: 145px; 
    transition: all 700ms; 
    position: relative;
    font-weight: bold;
    font-size: 24px;
    display: block;  
  }
}
.newsletterchoice{
  margin-top: var(--a-gap-small);
}
.grid_regionauswahl{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 10px;
  text-align: left;
}

#form_step2 .regionboxes, a.regionboxes:focus{  
  background: #777; width: 100%; height: 320px;
  color: #fff; text-align: center;
  padding-top: 145px; 
  transition: all 700ms; 
  position: relative;
  font-weight: bold;
  font-size: 24px;
  display: block;  
}
#form_step2 .regionboxes.region6{ 
  background: url(/application/themes/bicycle2020/images/booking/r_thailand.jpg);
  background-size: cover;
}
#form_step2 .regionboxes.region5{ 
  background: url(/application/themes/bicycle2020/images/booking/r_greece.jpg);
  background-size: cover;
}
#form_step2 .regionboxes.region4{
  background: url(/application/themes/bicycle2020/images/booking/r_lanzarote.jpg);
  background-size: cover;
}
#form_step2 .regionboxes.region2{
  background: url(/application/themes/bicycle2020/images/booking/r_andalusia.jpg);
  background-size: cover;
}
#form_step2 .regionboxes.region1{
  background: url(/application/themes/bicycle2020/images/booking/r_mallorca.jpg);
  background-size: cover;
}
#form_step2 .regionboxes h5{ color: #fff; }
#form_step2 .regionboxes:not(.active):hover{  
  cursor: pointer;  
  box-shadow: inset 0px 0px 400px 110px rgba(0, 0, 0, .4);
  color: #fff; 
  font-weight: bold;
}
#form_step2 .regionboxes.active, #form_step2 .regionboxes.active:hover{
  padding-top: 160px;
  transition: all 700ms; 
  box-shadow: inset 0px 0px 400px 110px rgba(0, 0, 0, .6);
  color: #fff; 
  font-weight: bold;
}
#form_step2 .regionboxes.active:before{ 
  content: " ";
  background: url('/application/themes/bicycle2020/images/icons/tick-inside-circle.svg');
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px; 
  height: 40px;
  /*font-family: FontAwesome; */
  position: absolute;
  color: #fff; 
  font-size: 40px;
  text-align: center;
  margin: 0 auto;
  left: calc(50% - 20px);
  top: 110px;
  display: inline-block;
}
#form_step2 .regionboxes:not(.open), #form_step2 .regionboxes:not(.open):hover {
  padding-top: 160px;
  transition: all 700ms;
  box-shadow: inset 0px 0px 400px 110px rgba(0, 0, 0, 0.82);
  color: #fff;
  font-weight: bold;
}

.grid_rechnungsinfo{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: var(--a-gap-normal);
}

.grid_teilnehmer{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: var(--a-gap-normal);
}

@media only screen and (max-width: 64.2em) {
  .grid_teilnehmer, .grid_rechnungsinfo{
    grid-template-columns: 1fr;
  }
}


#res_form .field_error{
  background-color: var(--a-missing-bg-color);
}
#res_form .field_error_box{
  background-color: var(--a-missing-bg-color);
  padding: 10px;
  margin-bottom: 15px;
}
#res_form .error_report{
  /*margin-top: -15px;*/
  font-size: var(--a-font-size-small); 
  color: var(--a-missing-color);
  text-align: center;
  position: relative;  /* Allows positioning of the pseudo-element relative to this element */
}
/*#res_form .error_report::before {
  content: "⚠ ";  
  font-size:  var(--a-font-size-normal); 
  
}*/
.information{
  padding: 10px; 
  border: 1px solid var(--a-grey2); 
  margin: 5px 0;
  font-size: var(--a-font-size-normal);
}

.flexbox_container{
  display: flex;
  align-items: center; 
}
#advertoverlaycontent,
#advertoverlaycontent a,
#advertoverlaycontent a:hover{
  color: white;
  text-decoration: none;
}
#advertoverlaycontent ul li{
  font-size: var(--a-font-size-normal);
}
 .advert-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }
    .advert-overlay-content {
        background: white;
        padding: var(--a-gap-small);
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    }

/********* BEGIN calendar styling *********************//*

/********* END calendar styling *********************/


ul.hotelauswahl, ul.radsportstationfremdhotelauswahl{
  padding-left: 0; 
}
ul.hotelauswahl li:before, ul.radsportstationfremdhotelauswahl li:before{
  content: "";
}
/*******BEGIN Mietradbuchung ***********/
ul.hotelauswahl li.bk_closed{
  display: none !important; 
}
ul.hotelauswahl li.bk_gesperrt{
  display: none !important; 
}
#res_form ul{
  margin-bottom: 0;
}
/*******END Mietradbuchung ***********/

ul.hotelauswahl li:not(.init), ul.radsportstationfremdhotelauswahl li:not(.init) {
  background: #b1b1b1 none repeat scroll 0 0;
}
ul.hotelauswahl li:hover:not(.init), ul.hotelauswahl li.selected:not(.init), ul.radsportstationfremdhotelauswahl li:hover:not(.init), ul.radsportstationfremdhotelauswahl li.selected:not(.init) {
  background: #f598a2 none repeat scroll 0 0;
}

ul li.hotelid0{
	background: #797676 !important;
}
ul li.hotelid0:hover{
  background: #f598a2 !important;
}

.rd-container{
	z-index: 3;
}


/*******BEGIN Radsportferienbuchung / Radfernfahrtenbuchung***********/

.hotelauswahl li, .radsportstationauswahl li, .radsportstationfremdhotelauswahl li{
  background: #e2001a none repeat scroll 0 0;
  cursor: pointer;
  padding: 0.4em 0.4em 0.4em 1.5em;
  margin-bottom: 1px;
}
.hotelauswahl li:hover, .radsportstationauswahl li:hover, .radsportstationfremdhotelauswahl li:hover{
  background: #f598a2;
}
.hotelauswahl li h5, .radsportstationauswahl li h5, .radsportstationfremdhotelauswahl li h5{
  color: #fff;
  margin-top: 2px;
  margin-bottom: 2px;
}
ul.hotelauswahl, ul.radsportstationauswahl, ul.radsportstationfremdhotelauswahl {
    list-style: outside none none;
    margin-left: 0;
}
.destination_box{
  background: #fafafa; /*#e2001a; */
  border: 1px solid #cccccc;
  color: rgba(0, 0, 0, 0.75); /*color: #fff; */
  cursor: default; 
  text-transform: uppercase; 
  text-align: center; 
  padding: 13px;
}
.destination_box.open, .flug_box, .svg_boxes, .radrundfahrt_box, .fremdhotelauswahl_box{
  background: #fafafa; /*#e2001a; */
  border: 1px solid #cccccc;
  color: rgba(0, 0, 0, 0.75); /*color: #fff; */
  cursor: pointer; 
  text-transform: uppercase; 
  text-align: center; 
  padding: 13px;
}

#zimmer_pit .svg_boxes{
  background: #fafafa; /*#e2001a; */
  border: 1px solid #cccccc;
  color: rgba(0, 0, 0, 0.75); /*color: #fff; */
  cursor: pointer; 
  text-transform: uppercase; 
  text-align: left; 
  padding: 3px 20px;
}#zimmer_pit .svg_boxes h5{
  margin: 0;
}
.svg_boxes.big{
  min-height: 25px; 
}
.svg_boxes.small{
  min-height: 25px;
}
.destination_box h5, .flug_box h5, .svg_boxes h5, .radrundfahrt_box h5, .fremdhotelauswahl_box h5{
  color: rgba(0, 0, 0, 0.75); 
}
.destination_box.open:hover, .flug_box:hover, .svg_boxes:hover, .radrundfahrt_box:hover, .fremdhotelauswahl_box:hover{
  background: #f3f3f3; 
  border: 1px solid #999999;
}
#res_form .destination_box.active, #res_form .flug_box.active, #res_form .svg_boxes.active, #res_form .radrundfahrt_box.active, .fremdhotelauswahl_box.active {
  background: #777 !important; 
}
#res_form .destination_box.active h5, #res_form .flug_box.active h5, #res_form .svg_boxes.active h5, .radrundfahrt_box.active h5, .fremdhotelauswahl_box.active h5{
  color: #fff;
}

.svg_boxes_passive{
  background: #fafafa; /*#e2001a; */
  border: 1px solid #cccccc;
  color: rgba(0, 0, 0, 0.75); /*color: #fff; */
 
  text-transform: uppercase; 
  text-align: center; 
  padding: 13px;
}



.mitreisender_parent:not(:last-child){
  border-bottom: 1px solid #cccccc; 
  margin-bottom: 20px !important; 
  padding-bottom: 10px;
}

/*******END Radsportferienbuchung / Radfernfahrtenbuchung***********/

li.init {
    cursor: pointer;
}

.billing_grid_first_div:not(:first-of-type) {
    padding-top: var(--a-gap-small);
}
/*begin agb alert*/
.alertbg{
  color: red !important;
  transition: color ease-in 1s;
}
.alertbg2{
  color: #353535 !important;
  transition: color ease-in 1s;
}
/*end agb alert*/



/*step2*/
  .hotelentry, .stationentry {
        padding: 10px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #ddd;
        font-family: Arial, sans-serif;
        text-decoration: none;
        color: #333;
    }
    .hotelentry.background, .hotelentry:hover, .stationentry.background, .stationentry:hover {
        background-color: #f0f0f0 !important;
    }
    .pit_box_hotels, .pit_box_stations {
        position: relative;
        display: none;
        background: white;
        max-height: 300px;
        overflow-y: auto;
        border: 1px solid #ddd;
    }
    .hotel-info, .station-info {
        display: flex;
        flex-direction: column;
    }
    .hotel-name, .station-name {
        font-weight: bold;
        font-size: 16px;
        color: #333;
    }
    .hotel-stars {
        color: #000;
        font-size: 14px;
        margin-left: 0px;
        margin-right: 15px;
    }
    .hotel-station {
        font-size: 14px;
        color: #666;
    }
    .hotel_seeker_holder {
        text-align: left;
        position: relative;
    }
    input.hotel {
        width: 100%;
        padding: 10px;
        margin: 0;
        border: 1px solid #ddd;
        border-radius: 4px;
        position: relative;
    }
    .custom-message {
        display: none;
    }
    .btn_nohotel, .btn_nostation {
        width: 15px;
        height: 15px;
        border: 1px solid grey;
        cursor: pointer;
        background: white;
        font-size: var(--a-font-size-small);
        line-height: normal;
        text-align: center;
    }
    .btn_nohotel {
        position: absolute;
        right: 15px;
        top: 15px;
    }
    .locked-hotel-info, .locked-station-info {
        padding: 7px 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: 1px solid #ddd;
        text-decoration: none;
        color: #333;
        background-color: #f9f9f9;
        margin: 0; /* To prevent jumpiness */
    }
    .locked-hotel-info .hotel-name, .locked-station-info .station-name {
        display: flex;
        align-items: center;
        font-weight: bold;
        font-size: var(--a-font-size-normal);
    }
    .locked-hotel-info .hotel-stars {
        font-size: var(--a-font-size-normal);
        margin-left: 5px;
    }
    .locked-hotel-info .hotel-station {
        font-size: var(--a-font-size-normal);
        color: #666;
        margin-right: 30px; /* Provide space for the close button */
    }
    #selectedHotel, #selectedStation {
        margin-top: 0; /* To prevent jumpiness */
        position: relative;
    }
    #selectedHotel .btn_nohotel, #selectedStation .btn_nostation {
        position: absolute;
        top: 12px;
        right: 10px;
    }
    #stationDropdown {
        position: relative;
        display: none;
        background: white;
        max-height: 300px;
        overflow-y: auto;
        border: 1px solid #ddd;
        margin-top: 5px; /* Spacing from the hotel dropdown */
    }
    input.readonly, input.readonly:focus{
      background: var(--a-grey2);
      cursor: default;
    }

    /* Additional styles */
.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Style for the select element when the placeholder is selected */
.fakeplaceholder, .fakeplaceholder option:disabled {
    color: grey;
}

/* Style for the select element when a real option is selected */
.fakeplaceholder.selected, .fakeplaceholder option {
    color: black;
}


#step1{
    margin-top: 0px;
    display: block;
  }
  .steps h4{
   /*text-align: center; */
   margin: var(--a-gap-normal) 0 var(--a-gap-small) 0;
  }
  .steps p{
   font-size: var(--a-font-size-normal);
  }
  #step4 h4{
    text-align: left;
  }
  #step4 h5{
    font-size: var(--a-font-size-normal);
  }
   #step4{
    font-size: var(--a-font-size-normal);
  }
  .greyarea{
    background: var(--a-grey1);
    padding: var(--a-gap-small) calc(4*var(--a-gap-big)) var(--a-gap-normal) calc(4*var(--a-gap-big));
  }
  .flexbox_container {
  display: flex;
  justify-content: space-between; /* This will push the 'Edit' text to the right */
  align-items: center; /* This will vertically align the items */
}
.flexbox_container h4{
  margin-top: 0;
}

.hotel-title {
  flex-grow: 1;
  padding-left: var(--a-gap-normal);
}

.edit-text {
  margin-bottom: var(--a-gap-small);
}


@media only screen and (max-width: 700px) {
  .greyarea{
    background: var(--a-grey1);
    padding: var(--a-gap-normal) 4%;
    margin-left: -4%;
    margin-right: -4%;
  }
  #progress{
    grid-gap: 1px;
  }
  #progress svg{
    max-width: 30px;
  }
  #progress h4{
    font-size: var(--a-font-size-small);
  }
}
  @media only screen and (max-width: 900px) {
  .rd-month{
    min-width: 300px !important; 
  }
  .rd-container{
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
    width: 90vw;
  }
}

  .error {
    background-color: #f8d7da; /* Light red background */
    color: #721c24; /* Dark red text color */
    border: 1px solid #f5c6cb; /* Light red border */
    padding: 15px; /* Padding around the text */
    border-radius: 5px; /* Slightly rounded corners */
    font-size: var(--a-font-size-normal);
    font-weight: bold; /* Make the text bold */
    text-align: center; /* Center align the text */
    margin: var(--a-gap-text) 0; /* Add some margin above and below the box */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Add a subtle shadow */
  }