/* figtree-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Figtree';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/figtree-v6-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

body {
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.5 !important;
    color: #1e1e2d;
    text-align: left;
}

strong {
    font-weight: 600 !important;
}

.bg-beige {
    background-color: #f5f5f0 !important;
}

.btn {
    width: fit-content;
    display: inline-block;
    font-weight: 400;
    color: #1e1e2d;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .75rem 2rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: 0;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.text-primary {
    color: #c52929 !important;
}

.text-qundo {
    color: #006692;
}

.btn-primary {
    color: #fff;
    background-color: #c52929 !important;
    border-color: #c52929 !important;
}

.btn-secondary {
    color: #fff;
    background-color: #801b1b !important;
    border-color: #801b1b !important;
}

.btn-secondary.active {
    color: #fff;
    background-color: #c52929 !important;
    border-color: #c52929 !important;
}

.btn-qundo {
    padding: .5rem 2rem .4rem 2rem;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    background-color: #008ec9;
    border-color: #008ec9;
}

.btn-qundo:hover {
    border-radius: 50px;
    color: #fff;
    background-color: #006692;
    border-color: #006692;
}

.btn-qundo img {
    margin-right: 10px;
    max-height: 30px;
}

.btn-primary.focus, .btn-primary:focus, .btn-primary:hover {
    color: #fff;
    background-color: rgb(166.3117154812,34.4382845188,34.4382845188);
    border-color: rgb(155.7489539749,32.2510460251,32.2510460251);
}

input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    display: inline-block;
    position: relative !important;
    background: #fff;
    border: 1px solid #8c8c8c;
    height: 1rem;
    width: 1rem;
    margin: 0 0.2rem 0;
    border-radius: 100%;
    cursor: pointer;
    vertical-align: middle;
    box-sizing: content-box;
}
input[type="radio"]:checked {
    background: #c62929;
    border: none;
    box-shadow: none;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(2.8125rem + 2px);
    padding: .75rem;
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #8c8c8c;
    border-radius: 0;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    display: none; /* Standardmäßig versteckt */
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.progress-container {
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 20px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
    overflow: hidden;
    margin: 20px 0;
}

.progress-bar {
    height: 30px;
    width: 0%;
    background-color: #FF005F;
    text-align: center;
    line-height: 30px;
    color: white;
    font-weight: bold;
    font-family: Arial, sans-serif;
    transition: width 0.4s ease-in-out;
}
