#wpcsp_donation_form{

	position:relative;

}

.wpcsp_loader-wapper {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  z-index: 999999;

  background: rgba(0, 0, 0, 0.1);

  overflow: hidden;

  display:none;

  cursor: wait;

}

.wpcsp_loader {

  display: block;

  position: relative;

  left: 50%;

  top: 50%;

  width: 100px;

  height: 100px;

  margin: -50px 0 0 -50px;

  border-radius: 50%;

  border: 5px solid transparent;

  border-top-color: #e12b2b;

  -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */

  animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */

}

.wpcsp_loader:before {

  content: "";

  position: absolute;

  top: 5px;

  left: 5px;

  right: 5px;

  bottom: 5px;

  border-radius: 50%;

  border: 5px solid transparent;

  border-top-color: #e12b2b;

  -webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */

	animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */

}

.wpcsp_loader:after {

  content: "";

  position: absolute;

  top: 15px;

  left: 15px;

  right: 15px;

  bottom: 15px;

  border-radius: 50%;

  border: 5px solid transparent;

  border-top-color: #e12b2b;

  -webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */

	animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */

}

@-webkit-keyframes spin {

	0%   { 

		-webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */  /* IE 9 */

		transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */

	}

	100% {

		-webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */  /* IE 9 */

		transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */

	}

}

@keyframes spin {

	0%   { 

		-webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */  /* IE 9 */

		transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */

	}

	100% {

		-webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */  /* IE 9 */

		transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */

	}

}

.wpcsp_errors {

	color: #721c24;

    background-color: #f8d7da; 

	position: relative;

    padding: .75rem 1.25rem;

    margin-bottom: 1rem;

    border: 1px solid #f5c6cb;

    border-radius: .25rem;

}



.alert-primary {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}
.alert-secondary {
    color: #383d41;
    background-color: #e2e3e5;
    border-color: #d6d8db;
}
.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}
.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}
.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.text-danger {
    color: #dc3545!important;
}

.numberinput {
    
}
.numberinput input {
    border: 0;
}

.checkbox-list{
	margin-bottom:20px;
}

.checkbox-list label {
	position:relative;
	cursor:pointer;
}
.checkbox-list label + label {
	margin-left:20px;
}
.checkbox-list label span::before {
	content: "";
    border: 1px solid #cfd8e5;
    height: 30px;
    width: 30px;
    display: block;
    border-radius: 30px;
    left: 0;
    top: -6px;
    position: absolute;
	-webkit-transition: all 0.2s ease-in-out; 
	transition: all 0.2s ease-in-out;
}

.checkbox-list label input[type="radio"]{
	position:absolute;
	opacity:0;
}

.checkbox-list label span {
    font-size: 20px;
	padding-left: 40px;
    font-weight: 600;
	color: #000000
}

.checkbox-list label span::after {
	content: "";
    display: block;
    border-radius: 30px;
    background-color: #e12b2b;
    height: 18px;
    width: 18px;
    position: absolute;
    top: 0;
    left: 6px;
	transform: scale(0);
	-webkit-transform: scale(0);
	-webkit-transition: all 0.2s ease-in-out; 
	transition: all 0.2s ease-in-out;
} 
.checkbox-list label input[type="radio"]:checked + span::before {
	border-color: #e12b2b;
}
.checkbox-list label input[type="radio"]:checked + span::after {
	transform: scale(1);
	-webkit-transform: scale(1);
}
#login_form {
	margin-bottom:0;
}
.payment-button{
	margin-bottom:20px;
}
.payment-button label {
	cursor:pointer;
}
.payment-button label input[type="radio"]{
	position:absolute;
	opacity:0;
}
.payment-button label span { 
	border: 2px solid #e1e1e1;
    display: inline-block;
    padding: 8px 10px;
    border-radius: 4px;
	font-size: 18px;
    font-weight: 500;
    color: #000000;
}
.payment-button label span img{
	height: 30px;
	width:auto;
}
.payment-button label input[type="radio"]:checked + span{
	border-color:#e12b2b;
	background-color: #f1f3f5;
	color: #e12b2b;
}

.donation-box {
	margin-top: 10px;
}
.donation-box .donation-box-label {
	position: relative;
	    vertical-align: text-top;
    cursor: pointer;
    display: inline-block; 
    margin-bottom: 20px; 
}
.donation-box-label.monthly-show .per_month {
    display: inline-block; 
}
.donation-box-label .per_month{
    display: none;
    font-size: 100%;
    font-weight: 600;
}
.donation-box-label input[type="radio"]{
	position:absolute;
	opacity:0;
}
.donation-box-label span {
	background-color: #333333;
    color: #ffffff;
    padding: 10px 30px;
	display: inline-block; 
    font-size: 18px;
    font-weight: 600;
}
.donation-box-label input[type="radio"]:checked + span {
	background-color:#e12b2b;
}
.donation-box .donation-box-label .form-control {
	height: 41px !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    color: #000000 !important;
}

.form-group .input-group {
	display: -ms-flexbox;
	display: flex;
}
.form-group .input-group .input-group-prepend {
	background-color: #e1e1e1;
    color: #000000;
    font-weight: 600;
    width: auto;
    text-align: center;
    font-size: 15px;
    padding: 15px 20px; 	
} 
.input-group .input-group-prepend .input-group-text {
    display: flex;
    align-items: center;
	justify-content: center;
	white-space: nowrap;
}
.input-group .input-group-prepend .input-group-text img {
    height: 20px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	appearance: none;
} 

.cmsmasters_button {
	box-shadow:inset 0 -3px 0 0 rgb(0 0 0 / 20%);
	-webkit-box-shadow:inset 0 -3px 0 0 rgb(0 0 0 / 20%); 
}
.cmsmasters_button:hover {
	background-color:#b42222 !important;
	color:#ffffff !important;
}

/* Responsive */
@media (max-width: 640px) {
	#wpcsp_payment_form.form-box {
		padding:20px;
	}
	.donation-box-label span {
		font-size: 16px;
		padding:10px 20px;
		font-weight: 600;
	}
	.payment-button label span {
		padding:8px 10px;
	}
}

