.modal-overlay{
	display: none;
	position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background-color: rgba(255, 255, 255, 1);
    top: 0;
    left: 0;
    overflow: auto;
}
.modal-container{
	position: relative;
	margin: 20px auto;
    width: 100%;
    padding: 10px;
    max-width: 500px;
}
.modal-container .modal-input,
.modal-container .div--donationSelect,
.modal-container .div--donationInput{
	position: relative;
	height: 55px;
	line-height: 55px;
	margin-top: -1px;
	margin-bottom: -1px;
	overflow: hidden;
	border-top: solid 1px #DEE2E5;
    border-bottom: solid 1px #DEE2E5;
}

.div--modal-button button{
	padding: 10px 20px;
	border-radius: 3px;
}
.modal-container .modal-input input{
	width: 100%;
	border: none;
	box-shadow: none;
	background: transparent;
}
.modal-container input:focus{
	border: none;
	background: none;
}
.donation_overlay .modal-container #donation_container{
	width: 100%;
}
.modal-container .modal-button{
	overflow: hidden;
}
.modal-container .modal-button span{
	float: right;
	margin-right: 10px;
	cursor: pointer;
	color: #3D95CE;
	font-size: 14px;
}
.modal-submit-donation{
	padding: 10px;
}
.modal-container .errorMessages{
	color: #D0021B;
	margin: 5px 0px;
}
.overlay-payment-processing{
	display: none;
	background-color: rgba(255, 255, 255, 0.2);
	z-index: 9999;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-webkit-transition: background-color 300ms linear;
	transition: background-color 300ms linear;
}
.overlay-payment-processing.active{
	display: block;
	background-color: rgba(255, 255, 255, 0.8);
}
@keyframes input-invalid-animation{
0%{-webkit-transform:matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,10,0,1);transform:matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,10,0,1)}
25%{-webkit-transform:matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,8.5,0,1);transform:matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,10,0,1)}
50%{-webkit-transform:matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,5.5,0,1);transform:matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,5.5,0,1)}
62.5%{-webkit-transform:matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,9.7,0,0,1);transform:matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,9,0,1)}
75%{-webkit-transform:matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,7.5,0,1);transform:matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,9,0,1)}
85%{-webkit-transform:matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,9,0,1);transform:matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,9,0,1)}
100%{-webkit-transform:matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,8.5,0,1);transform:matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,8.5,0,1)}
}
.invalid-input-field{
	position: absolute;
	display: none;
	bottom: 0;
	width: 100%;
	height: 10px;
	background-color: #D0021B;
	-webkit-transform: matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,8,0,1);
    -moz-transform: matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,8,0,1);
    -ms-transform: matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,8,0,1);
    -o-transform: matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,8,0,1);
    transform: matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,8,0,1); */
}
.invalid-input-field.active{
	-webkit-animation: input-invalid-animation 500ms linear both;
    animation: input-invalid-animation 500ms linear both;
}
.overlay-payment-processing .loader{
	position: absolute;
    z-index: 5;
    left: 0;
    width: 100%;
    overflow: hidden;
    max-width: 500px;
}
.indicator{
	position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid rgba(0,0,0,.3);
    border-radius: 50%;
    height: 52px;
    width: 52px;
    margin-left: -26px;
    margin-top: -26px;
}
.indicator:before{
	content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-top-color: #414141;
    border-radius: 50%;
    -webkit-animation: cw 512ms infinite cubic-bezier(.645,.045,.355,1);
    -moz-animation: cw 512ms infinite cubic-bezier(.645,.045,.355,1);
    -o-animation: cw 512ms infinite cubic-bezier(.645,.045,.355,1);
    animation: cw 512ms infinite cubic-bezier(.645,.045,.355,1);
    -moz-transition: all 512ms cubic-bezier(.645,.045,.355,1);
    -o-transition: all 512ms cubic-bezier(.645,.045,.355,1);
    -webkit-transition: all 512ms cubic-bezier(.645,.045,.355,1);
    transition: all 512ms cubic-bezier(.645,.045,.355,1);
}
@keyframes cw{from{transform:rotate(0deg)}to{transform:rotate(359deg)}}
#loader-svg-icon{
	position: absolute;
    left: 50%;
    top: 50%;
    margin: -9px 0 0 -7px;
}
.loader svg * {
	fill: rgba(0,0,0,.7);
}
.indicator svg * {
    fill: rgba(0,0,0,.7);
}
.accepted-payment-methods div.payment-method{
	max-width: 25px !important;
	display: inline-block !important;
}
.accepted-payment-methods .payment-method img{
	width: 100%;
	padding: 0px;
}
.div--donationSelect select{
	min-width: 60px;
	font-size: 14px;
}
.div--donationSelect span{
	margin-right: 15px;
}