@charset "utf-8";
/* CSS Document */
.jconfirm.jconfirm-light .jconfirm-bg{
	opacity:0.8;
}
.donate-form-sec {
	/* width: 70%; */
	/* margin: 0 auto; */
	border: 1px solid #cccccc;
	width: 100%;
	padding: 0 1%;
	border-radius: 2px;
	margin-bottom: 20px;
}
/* Customize the label (the container) */
.container {
	position: relative;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 22px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	margin-right: 5px;
	border: 1px solid #ccc;
	padding:25px;
	border-radius: 4px;
	font-weight:500;
	display:inline-block;
}
.container:hover{
	background-color: #f5f5f5;
}
.container.selected{
	background:#59118e;
	color: #fff;
}
/* Hide the browser's default radio button */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
input[type="submit"] {
	padding: 25px 0;
	text-transform: none;
	letter-spacing: 2px;
	margin-top: 20px;
	width: 225px;
	font-size: 20px;
	text-align: center;
}
.other_amount, .add_fee_amount {
	/*width: 50%;*/
	margin: 10px auto;
}
.add_fee_amount label{
	cursor:pointer;
}
.paypal_fee_amount{
	font-weight:bold;
}
.other_amount{
	font-size: 22px;
}
.other_amount input {
	padding: 8px;
	height: 60px;
	font-size: inherit;
	width:80%;
}

/* The container */
.checkbox_container {
  display: block;
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: transparent;
  border:2px solid #666;
  border-radius:4px;
}

/* On mouse-over, add a grey background color */
.checkbox_container:hover input ~ .checkmark {
  background-color: #2196F3;
  border:2px solid #2196F3;
}

/* When the checkbox is checked, add a blue background */
.checkbox_container input:checked ~ .checkmark {
  background-color: #2196F3;
  border:2px solid #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox_container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox_container .checkmark:after {
  left: 7px;
  top: 2px;
  width: 8px;
  height: 14px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.charity_info_icon {
	font-size: 16px;
	color: #333;
	cursor:pointer;
	vertical-align:top;
}
.textMain h2 span.charity_popup_info {
	position: absolute;
	background: #000000;
	color: #fff;
	right: 24%;
	top: 23%;
	padding: 2px 5px;
	font-size: 11px;
	border-radius: 2px;
	display:none;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 40px;
    cursor: pointer;
    line-height: 24px;
    display: inline-block;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    border: 2px solid #2196F3;
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 16px;
    height: 16px;
    background: #2196F3;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.orgs-list{
	border:1px solid #ccc;
	border-bottom:none;
}
.orgs-list .org_logo{
	height:160px;
}
.orgs-list .org_logo, .orgs-list .org_details{
	border-right:1px solid #ccc;
	padding:10px;
	vertical-align:middle;
	min-height:150px;
}
.orgs-list .org_details{
	border:none;
}
.orgs-list:last-child{
	border-bottom:1px solid #ccc;
}
/*.textMain ul.orgs-list {
	padding: 0;
	text-align: left;
	margin-top: 20px;
}
.textMain ul.orgs-list li{
	background:none;
	padding:0;
	margin-bottom:20px;
	padding-bottom:10px;
	border-bottom:1px dotted #333;
}
.textMain ul.orgs-list li:last-child{
	border:none;
}
.textMain ul.orgs-list li h3{
	color:#59118e;
}
.textMain ul.orgs-list li img{
	margin:10px 0;
}
.textMain ul.orgs-list li .org_logo{
	width:200px;
	display:inline-block;
}
.textMain ul.orgs-list li .org_details{
	width:calc(100% - 210px);
	display:inline-block;
}*/
@media screen and (max-width : 640px) {
.donate-form-sec, .add_fee_amount {
	width:100%;
}
.container {
	margin-bottom: 8px;
	font-size: 16px;
	margin-right: 5px;
	padding: 15px;
}
input[type="submit"] {
	padding: 15px 0;
	width: 200px;
	font-size: 15px;
}
.orgs-list .org_logo, .orgs-list .org_details {
	display: block;
	border: none;
	min-height: 0;
	height:auto;
}
.jconfirm.jconfirm-white .jconfirm-box, .jconfirm.jconfirm-light .jconfirm-box{
	width:90% !important;
}
}