/* Kartenreservierung
========================================================================== */

.reservation{
    text-align: left;
    display:flex;
    flex-direction: column;
}



.reservation .eventInfo{
	font-size: 18px;
	font-family: latoregular;
	margin-bottom:40px;
}


.reservation .regAddr{
    /* background-color:#f2f2f2; */
    border: solid 1px #ddd;
    margin-top:10px;
    padding:8px 15px;
    border-radius:8px;
    font-size:15px;
    width: max-content;
}



.reservation .soldOut{
    display:inline-block;
    width:100%;
    padding-bottom: 50px;
    font-size: 22px;
    text-align: left;
    color: #ed2b2b;
    font-family: latosemibold;
    font-weight:normal;
}


.reservationForm{
    margin-top:30px;
    display:flex;
    flex-direction: column;
}

.reservationInfoTxt{
    margin-bottom:20px;
}

.reservationForm form{
    display:flex;
    flex-direction: column;
}

.reservationForm .daField{
    margin-bottom: 15px;
}

.reservationForm .daField input[type="text"] {
    padding: 4px 8px 2px;
    width: 100%;
    border: solid 1px #999;
    border-radius: 5px;
}


.reservationForm label{
    margin-right:5px;
}


.reservationForm .daField_text label, .reservationForm .daField_textarea label{
    display:none;
}

.reservationForm label{
    margin-right:10px;
}

.reservationForm .daField_checkbox label{
    margin-left:10px;
}




.reservationForm .daField_amount select{
    min-width:60px;
}

.reservationForm .daField_noticed{
  flex-direction: column;
  align-items: flex-start;
  margin-top:20px;
}

.reservationForm .daField_noticed select{
    max-width:300px;
}


.reservationForm .daField_anmerkung{
    margin-top:20px;
}

.reservationForm .daField_anmerkung textarea{
   width:100%;
   height:100px;
   padding: 6px;
    border-radius: 5px;
    border: solid 1px #999;
}


.reservationForm .regSubmitRow{
    margin-top: 20px;
    display:flex;
    flex-wrap: wrap;
    align-items: center;
}


.reservationForm .formSubmitButton{
    border:solid 1px #999;
    padding:6px 10px 4px 10px;
    border-radius:5px;
    width: max-content;
    text-decoration: none;
    font-size: 18px;
}

.reservationForm .formSubmitButton:hover{
    background-color: #444;
    color:#fff;
}

.reservationForm .regErrorInfo{
    color:#ea1c4d;
    margin-left:10px;
}



.reservationForm .daField_error{
    color:#ea1c4d;
    
}

.reservationForm .daField_error input::placeholder {
    color:#ea1c4d;
    opacity: 0.6;
}


.reservationSuccess{
    background-color:#f2f2f2;
    padding:30px;
    border-radius:10px;
    font-size: 18px;
    display: flex;
    flex-direction: column;
}

.reservationSuccessHL{
    font-size:20px;
    font-weight: bold;
}

.reservationSuccessTxt{
    font:normal;
}

.reservationSuccessButton{
    border: solid 1px #999;
    padding: 4px 20px;
    font-size: 16px;
    border-radius: 8px;
    margin-top: 20px;
    text-decoration: none;
    width:max-content;
}