:root {
    --primary-red:#b4002d;
    --secondary-red: #961619;
    --tertiary-red: #C82249;
    --quaternary-red: #EE1D23;
}

body {
    background-position: 100% 60px;
    margin: 0;
    width: auto;
    height: auto;
    overflow-x: hidden;
}

#topbar {
    position: fixed;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--tertiary-red);
    top: 0;
    z-index: 999999;
}

#topbar h3 {
    margin: 0 0 0 25px;
    padding: 0;
    font-style: normal;
    color: white;
    font-weight: 600;
}

#topbar button {
    margin: 0 25px 0 0;
}

#header {
    display: flex;
    justify-content: space-evenly;
    padding: 10px 20px;
}

#header img:nth-child(1) {
    height: 140px;
}

#header img:nth-child(2) {
    height: 160px;
}

#header img:nth-child(3) {
    height: 120px;
}

#main {
    max-width: 1000px;
    width: 100%;
    margin: 60px auto 0 auto;
}

#clearFormButton {
    min-width: 210px;
}

.tab { 
    display: none;
    padding: 20px;
}

.tab-heading {
    margin: 30px 0;
    font-style: normal;
    font-size: 26px;
    text-align: center;
} 

.survey-button {
    margin: 0 2px;
    color: #494949 !important;
    text-decoration: none;
    background: #f0f0f0;
    border: 2px solid #494949 !important;
    display: inline-block;
    padding: 14px;
    font-size: 18px;
    transition: all 0.4s ease 0s;
    cursor: pointer;
    border-radius: 4px;
    text-align: center;
}

.survey-button:hover {
    color: #ffffff !important;
    background: #b4002dad;
    border-color: #b4002dad !important;
    transition: all 0.4s ease 0s;
}

.question-container {
    margin: 40px 0;
    overflow: visible;
}

.question-title-container {
    border-radius: 4px 4px 0 0;
    overflow: visible;
}

.question-content-container {
    border-color: #cccccc;
    border-width: 0 1px 1px 1px;
    border-style: solid;
    padding: 20px;
    border-radius: 0 0 4px 4px;
    overflow: visible;   
}

.question-title {
    font-size: 17px;
    font-style: normal;
    padding: 20px;
    margin: 0;
    background-color: var(--tertiary-red);
    color: white;
    border-radius: 4px 4px 0 0;
}  */

.text-input-title {
    margin-bottom: 25px;
}

.radio-label {
    display: block;
    margin: 10px 0;
}

.help-container {
    padding: 20px 0;
    
}

.help-container>div {
    display: flex;
    align-items: center;
}

.help-text {
    display: inline-block;
    margin: 0;
}

.help-icon {
    margin-right: 10px;
}

.tab-hint-container {
    background-color: #ebebeb77;
    padding: 19px;
    border-radius: 5px;
    color: #2c3e50;
    font-size: 19px;
}

#filmeBuchungen {
    display: none;
}

#price-container {
    padding: 5px 0;
    font-size: 16px;
    font-weight: bold;
}

.centered-image {
    margin: 0 auto;
    display: block;
    height: 400px;
}

.custom-error {
    color: #F44336;
    font-size: 12px;
    display: none;
}


.row-container {
    display: flex;
}

.row-container a {
    margin-top: 15px;
    margin-left: 15px;
}

.row-container>div {
    flex-grow: 1;
}

.red {
    background-color: var(--primary-red) !important;
}

#veranstalterInfo, #identischRechnungAdr, #identischPostAdr {
    display: none;
    top: 60px;
}

#spinner-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80%;
    display: none;
}




@media screen and (max-width: 768px) {
    #header img { 
        margin-top: 0;
    }
}

@media screen and (max-width: 1068px) {
    #header img:nth-child(1), #header img:nth-child(3) { 
        display: none
    }
}

