	.form--abstract-submission {
		overflow: visible;
		p {
		    font-size: 1rem;
		}
	}
	.author-grid {
	    /*background: #fff;*/
	    box-shadow: 0px 0px 16px #aaa;
	    border-radius: 16px;
	    overflow: visible;
	    padding: 15px;
	    margin-bottom: 2rem;
	}
	.author-grid legend {
	    /*position: relative;
	    top: 20px;*/
	    margin-bottom: 1rem;
	    font-size: 1.125rem;
        background: #fff;
        border-radius: 8px;
        padding: 0.25rem 1rem;
	}
	
	/* Abstract Submission */
.form--abstract-submission {
    h2 {
        margin-bottom: .5rem;
        font-weight: 400;
        font-size: 1.375rem;
    }
    h3 {
        margin-bottom: .5rem;
        font-weight: 400;
        font-size: 1.25rem;
    }
    .widget-explanation {
        margin-top: 0;
    }
    .widget-explanation.author__section {
        margin-top: 3rem;
    }
    .widget-pageswitch {
        display: flex;
        gap: 30px;
        margin-top: 2rem;
        justify-content: space-between;
    }
    .widget-pageswitch button {
        color: #fff;
        background-color: rgba(19, 88, 255, 1);
        padding: .375rem 2rem;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border: none;
        border-radius: .25rem;
        min-width: 100px;
    }
    button[value="continue"] {
        order: 2;
    }
}

.form-grid {
    display: grid;
}

.flex-span {
    .radio_container {
        display: flex;
        gap: 30px;
    }
}

fieldset .widget:last-of-type {
    margin-bottom: 0;
}

legend {
    margin-bottom: 0.5rem;
}

.legend__headline legend {
    font-size: 1.125rem;
}

.legend__headline + .legend__headline {
    margin-top: 2rem;
}

.grid--2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
}

.grid--2--33-66 {
    display: grid;
    grid-template-columns: 1fr 2fr
    gap: 15px 30px;
}

.grid--3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 30px;
}

.grid--4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px 30px;
}

.author-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 30px;
    .widget-authorsearch, .affiliation-grid, .duplication-button {
        grid-column: 1 / -1;
    }
}

.affiliation-grid {
    grid-column: 1 / 3;
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    gap: 0 30px;
    position: relative;
    legend {
        background: transparent;
        padding: 0;
    }
}

.duplication-buttons {
    margin-top: 1rem;
    display: flex;
    flex-direction: row-reverse;
    gap: 15px;
    justify-content: start;
}

.oral-grid {
    margin-top: 1rem;
}

.grid-columns-all {
    grid-column: 1 / -1;
}

.widget-summary legend {
    font-size: 1.125rem;
}

.widget-summary label {
    font-weight: bold;
}

span[data-ff-name*="author_institution_1"]::before, span[data-ff-name*="author_institution_2"]::before, span[data-ff-name*="affiliation_id_1"]::before, span[data-ff-name*="affiliation_id_2"]::before, span[data-ff-name*="presenting_author"]::before {
    content: "\a";
    white-space: pre;
}

.presenting-author-hint {
    color: red;    
}

input[name="oral_presenter_familyname"]:read-only, input[name="oral_presenter_firstname"]:read-only {
    opacity: 0.5;
}
.widget-pageswitch button:disabled {
    opacity: 0.25;
    cursor: not-allowed;
}
span.char-counter__over-limit {
    color: red;
    font-weight: bold;
}

.keywords__hint {
    color: inherit;
}

#main .inside ul.progress-bar {
    list-style: none;
}

#main .inside .progress-bar li {
    display: inline;
    margin: 0;
    padding: 0;
}

#main .inside .progress-bar li.current {
    font-weight: bold;
}

.tooltip {
	position: relative; /* Bezugspunkt für den Hint */
	display: inline-block;
	cursor: pointer;
}

.tooltip svg {
    width: 16px;
    height: 16px;
    fill: #174173;
}

.tooltip--abstract-title {
    position: relative;
    top: 26px;
    left: 100px;
}

.tooltip--affiliation {
    position: absolute;
    top: -40px;
    left: 100px;
}

.tooltip--conclusion {
    top: 2px;
    left: 82px;
    position: absolute;
}

.tooltip__hint {
	display: none;
	position: absolute;
    width: 300px;
    z-index: 10;
    background: #eee;
    padding: 16px;
    left: 0;
    box-shadow: 0px 0px 16px #aaa;
}

.tooltip__hint.is-visible {
	display: block;
}