/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

/* CSS Per la Progress Bar delle Donazioni nella view del dettaglio donazione */
.progress-bg {
    margin: 0 auto;
    width: 70%;
    height: 50px;
    border-radius: 10px;
    text-align: center;
    box-shadow: inset 0 0 10px #ccc;
    padding: 0;
    overflow: hidden;
}

.progress-bar {
    height: 50px;
    border-radius: 10px 0 0 10px;
    float: left;
    width: 0;
    background-color: #5b9a68;
    margin: 0;
    transition: width 2s ease;
}

.progress-bg h3.goal, .progress-bg h3.raised {
    font-family: Arial,sans-serif;
    font-size: 1.2em;
    font-weight: 600;
    line-height: 78px;
    margin: 0;
    padding: 0;
    text-align: center;
    display: inline;
}


.progress-bg h3.raised {
    color: #fff;
    margin: 14px 25px 0 50px;
    padding: 0 25px 0 0;
}

.progress-bg h3.goal {
    color: #0d6efd;
    text-align: center;
}

body .progress-bg h3.raised {
    -webkit-animation: fadein 4s; /* Safari and Chrome */
    animation: fadein 4s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari and Chrome */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}​

/* Opera */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}​

 .progress-bg h3.goal {
     float: right;
     display: inline;
     padding: 0 25px 0 0;
     text-align: center;
 }

body .progress-bg div {
    -webkit-animation: progress-bar 2s ease forwards;
    -moz-animation: progress-bar 2s ease forwards;
    -o-animation: progress-bar 2s ease forwards;
    animation: progress-bar 2s ease forwards;
}

@-webkit-keyframes progress-bar {
    from { width: 0%; }
    to { width: 50%; }
}

@-moz-keyframes progress-bar {
    from { width: 0%; }
    to { width: 50%; }
}

@-o-keyframes progress-bar {
    from { width: 0%; }
    to { width: 100%; }
}

@keyframes progress-bar {
    from { width: 0%; }
    to { width: 100%; }
}


/** CSS ORA **/

.red-lilt {
    color: #f6191c !important;
}

.red-button-lilt {
    background:#f6191c;
}

.progress-bar {
    background: linear-gradient(135deg, #B1CBE4,#0A487A);
    height: 30px;
}
.progress-bg {
    height:30px;
    border-radius: 30px;
}
.progress-bg h3.raised {
    color: #fff;
    font-weight: normal;
    margin: 0;
    padding:0;
}