body{
	background: #eee!important;
}

#main{
	margin-bottom: 60px;
	padding: 5px;
}

#main #anreise, #main #abreise{
	background-color: white;
	cursor: pointer;
}

#main #buchen .card.full .form-floating, #main #buchen .card.full .form-floating{
	padding: 5px;
}

/*.mc-calendar{
	top: 100px!important;
}*/


svg text{
	font: bold 30px sans-serif;
	cursor: pointer;
}

svg circle, svg ellipse{
  /*fill: #c42708;
  stroke: #c42708;
  stroke-width: 1px;
  cursor: not-allowed;*/
  fill-opacity: 0;
}
svg .available, svg .available-zinipi {
	fill: #B9EDD3; /*#6ad58c;*/
	fill-opacity: 0.9;
  stroke: white;
  stroke-width: 2px;
  cursor: pointer;
}
svg .available-zinipi{
	fill-opacity: 0.5;
}
svg .available.wasserstellplatz{
	fill: #8DD6EA; /*#6ad58c;*/
}
svg .available.xxlstellplatz{
	fill: #B8699A; /*#6ad58c;*/
}
svg .available.mietunterkunft{
	fill: #FFE4C4; /*#6ad58c;*/
}
svg .mietbad{
	fill: lightgray;
}
svg .notavailable {
	/*fill: #c42708;
  stroke: #c42708;
  stroke-width: 1px;
  cursor: not-allowed;
  fill-opacity: 1;*/
  fill-opacity: 0;
}
svg .available:hover {
	stroke: white;
  stroke-width: 3px;
}
svg .selected {
	fill: #FFB932!important;
}





.card svg{
	max-height: 50vh;
	background-image: url('./plan-20240131.jpg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
}
.card svg.full{
	max-height: 80vh;
}
.hidden{
	display: none!important;
}
.cards{
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: center;
	justify-content: center;
}
.card{
	border-bottom: 5px solid transparent;
	border-radius: 3px;
	background: #fff;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	min-width: 300px;
	width: 95%;
	max-width: 400px;
	vertical-align: top;
	transition: box-shadow .2s ease-in-out;
	box-shadow: 0 0 2px 0 rgba(0,0,0,.15),0 0 4px 0 rgba(0,0,0,.2),0 12px 12px 0 rgba(0,0,0,.15);

	text-align: left;
	padding: 5px;
	margin: 5px;
}
.card.date{
	display: flex;
	min-width: 100%;
	width: 100%;
	margin: 0;
	margin-bottom: 10px;
}
.card.date>div{
	display: inherit;
    margin: 0 auto;
}
.card.date .anreise{
	margin-right: 10px;
}
.card.date .abreise{
	margin-left: 10px;
}
.card.svg{
	min-width: 100%;
	width: 100%;
	margin: 0;
	margin-bottom: 10px;
}

.card--active, .card:hover {
    box-shadow:0 0 18px 0 rgba(0, 0, 0, .1), 0 0 36px 0 rgba(0, 0, 0, .15), 0 36px 36px 0 rgba(0, 0, 0, .2)
}


.icon{
	/*height: 30px;*/
	background-repeat: no-repeat;
	background-size: contain;
}
.icon.Ferienhaus{
	background-image: url("./images/ferienhaus.png");
}
.icon.Wohnmobil{
	background-image: url("./images/wohnmobil.png");
}
.icon.Wohnwagen{
	background-image: url("./images/wohnwagen.png");
}
.icon.Zelt{
	background-image: url("./images/zelt.png");
}

.card span {
	cursor: pointer;
}
.card span.desc {
    color: #999;
    font-size: 14px;
    margin-top: -5px;
}
.card .fcenter{
	margin: 0 auto;
	margin-bottom: 30px;
	/*cursor: ns-resize;*/
	text-align: center;
}
.card .fcenter h4{
	line-height: 30px;
	margin: 0;
}
.card .fleft{
	float: left;
	max-width: 60%;
	line-height: 44px;
}
.card .fright{
	float: right;
}
.card .btndelete{
	max-width: 150px;
	margin: 20px auto;
}
.card.closeCard{
	height: 44px;
    overflow: hidden;
}

.card .deleteNow{
	margin: 20px auto;
}



.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin-right: 13px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #007353;
}

input:focus + .slider {
  box-shadow: 0 0 1px #007353;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.checkbox .form-group{
	display: flex;
}
.checkbox .flex100{
	flex: 0 1 100%
}
/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}









input,
textarea {
  border: 1px solid #eeeeee;
  box-sizing: border-box;
  margin: 0;
  outline: none;
  padding: 10px;
}

input[type="button"] {
  -webkit-appearance: button;
  cursor: pointer;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.input-group {
  clear: both;
  position: relative;
  display: block;
}

.input-group input[type='button'] {
  background-color: #eeeeee;
  min-width: 38px;
  width: auto;
  transition: all 300ms ease;
}

.input-group .button-minus,
.input-group .button-plus {
  font-weight: bold;
  height: 38px;
  padding: 0;
  width: 38px;
  position: relative;
}

.input-group .quantity-field {
  position: relative;
  height: 38px;
  left: -6px;
  text-align: center;
  width: 62px;
  display: inline-block;
  font-size: 13px;
  margin: 0 0 5px;
  resize: vertical;
  top: -2px; /* TSK 14.2.22 warum ist das so?! */
}

.button-plus {
  left: -13px;
}

input[type="number"] {
  -moz-appearance: textfield;
  -webkit-appearance: none;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance:textfield;
}




#booking .payment{
	margin: 0 auto;
  max-width: 60%;
}


/*
.reservierungsdaten{
	max-width: 1000px;
    margin: 0 auto;
    padding : 10px;
}*/
.modal-dialog{
	max-width: 90%;
	max-width: 750px;
}
#platzInfo .modal-dialog{
	max-width: 90%;
	max-width: 1050px;
}
.form-floating>.form-select {
    padding-top: 0;
    padding-bottom: 0;
}
.modal-dialog form .switch{
	margin-left: 10px;
}

footer{
		width: 100%;
    height: 62px;
    position: fixed;
    bottom: 0;
    background: #FFB932;
    color: white;
    text-align: center;
}
footer p{
	top: 6px;
  position: relative;
  line-height: 1!important;
}


