/* --- module: petition --- */

.petition #spenden_box {
    min-height: auto !important;
}

.petition a.button[rel="prettyPhoto"] {
    background-color: #D3D0C7;
    box-shadow: 0px 0px 0px transparent;
    color: #000000 !important;
}

.petitionDetail .petitionImage .headerImage {
    height: 200px;
    background-size: cover;
    background-position: center center;
	position: relative;
}

.petitionDetail .petitionImage .modTitleImage {
    color: #fff !important;
    padding: 10px 20px 10px 20px;
    font-size: 2.5rem;
    line-height: 2.8rem;
	bottom: 0;
	position: absolute;
	background-image: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
	width: 100%;
}

.petitionImage .progressStatus {
    padding: 30px 0px 0px 0px !important;
}

.formBox {
    padding: 8px 8px 8px 8px !important;
    background-color: #ed082e;
    border-radius: 16px;
}

.form_container {
    padding: 8px 8px 8px 8px;
    background-color: #F0F0F1;
    border-radius: 0px 0px 10px 10px;
}


/* --- detail --- */

.petitionDetail .row {
    padding: 30px 0px 0px 0px;
}

.petitionDetail .progressStatus .modTitle {}

.petitionDetail .header .modTitle {
    color: #ffffff;
	padding: 0px 8px 8px 8px;
}
.petitionDetail .copyright {
    padding: 8px 0px 8px 0px;
}

.petitionDetail #progressbar, .petitionDetail #progressbar_spenden {
	width: auto;
	background-color: #ffffff;
	overflow: hidden;
    border-radius: 8px;
}
.petitionDetail #progressbar .bar, .petitionDetail #progressbar_spenden .bar {
	width: 0px;
	overflow: hidden;
}
.petitionDetail #progressbar .progress, .petitionDetail #progressbar_spenden .progress { /* progressindicator */
	background-color: #ed082e;
	display: table;
	width: 100%;
}
.petitionDetail #progressbar .progress span, .petitionDetail #progressbar_spenden .progress span { /* progressindicator text */
	height: 30px;
	color: #ffffff;
	display: table-cell;
	vertical-align: middle;
	text-align:	center;
	overflow: hidden;
}

.petitionDetail .submitButton {
    width: 100%;
    box-shadow: none;
    background-color: #FEE11D;
    color: #000000 !important;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 0px !important;
}

.petitionDetail .supporter_box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.petitionDetail .supporter_box .swTableRow {
    opacity: 0;
    transform: translateX(-16px);
    animation: supporterFadeIn 250ms ease-out forwards;
}

.petitionDetail .supporter_box .swTableRow:nth-child(2) {
    animation-delay: 400ms;
}

.petitionDetail .supporter_box .swTableRow:nth-child(3) {
    animation-delay: 800ms;
}

.petitionDetail .supporter_box .swTableRow:nth-child(4) {
    animation-delay: 1200ms;
}

.petitionDetail .supporter_box .swTableRow:nth-child(5) {
    animation-delay: 1600ms;
}

@keyframes supporterFadeIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .petitionDetail .supporter_box .swTableRow {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

.progressStatus .modSubTitleSlim{
    font-size: 16px;
    float: left;
    margin-right: 10px;
    font-weight: 600;
}
.modSubTitleSlim{
    font-size: 14px;
    margin-top: 8px;
    margin-bottom: 8px;
    font-weight: 800;
}

/* --- gestapeltes Layout: Bild, Formular, Text --- */

@media screen and (max-width: 991px) {
    .petitionDetail {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .petitionDetail > .topIcons {
        order: 1;
    }

    .petitionDetail > .petitionHeader {
        order: 2;
        padding-bottom: 0 !important;
    }

    .petitionDetail > .petitionForm {
        order: 3;
    }

    .petitionDetail > .petitionText {
        order: 4;
    }
}