/* styles-main-appeal.css */
/* Include styles-main.css /*

/* ////////////////////////////// */
/* Form Progress Bar */
/* ////////////////////////////// */
@media only screen and (min-width: 768px) {
  /* 2018-09-11 Added by Hero */
  .progress-bar-container .h1 {
    font-size: 2rem;
    /* 32px */
  }
}

/* ////////////////////////////// */
/* Custom Amount Radio Buttons */
/* ////////////////////////////// */

/* "Other" Button, Left of Donation Amount Input Field */
.custom-radio-buttons .en__field--radio .en__field__element--radio .en__field__item:nth-of-type(5n){
  /* 2018-09-11 Added by Hero */
  margin-right: 0;
  width: 80px;
}

.custom-radio-buttons .en__field__item:nth-of-type(5n) input[type="radio"] + .en__field__label {
  /* 2018-09-11 Added by Hero */
  border-radius: 8px 0 0 8px;
}

.en__field--withOther .en__field__element--radio .en__field__item--other input {
  border-radius: 0 8px 8px 0;
}

.custom-radio-buttons .en__field--withOther .en__field__element--radio .en__field__item.en__field__item--other {
  display: inline-block;
  margin-left: -1px;
  left: 0;
  width: calc(100% - 80px - 1em);
}

@media only screen and (min-width: 768px) {
  /* 2018-09-11 Added by Hero */
  .custom-radio-buttons .en__field--radio .en__field__element--radio .en__field__item:nth-of-type(5n){
    width: 25%
  }

  /* Hiding the fourth on Desktop */
  .custom-radio-buttons .en__field__element--radio .en__field__item:nth-of-type(4n) {
    display: none;
  }
  
  .custom-radio-buttons .en__field--withOther .en__field__element--radio .en__field__item.en__field__item--other {
    width: 45%;
  }
}

/* ////////////////////////////// */
/* Form Button Styles */
/* ////////////////////////////// */

/* 2018-09-11 Added by Hero */
.step-1 .en__submit {
  padding-top: 20px;
}

/* ////////////////////////////// */
/* Template Layout */
/* ////////////////////////////// */

@media only screen and (max-width: 1023px) {
  .en__component--row.en__component--row--1:first-of-type > .en__component--column {
    color: #fff;
  	margin: auto;
  	max-width: 600px;
  	padding: 20px;
  }
} 

@media only screen and (min-width: 1024px) {
  .en__component--row.en__component--row--1:first-of-type {
    padding-top: 115px;
    margin-right: 0;
    height: 100%;
    max-height: inherit;
    overflow: hidden;
    position: fixed;
    right: 0;
    top: 0;
    width: 50%;
  }

  /* Background Image gradient overlay */
  .en__component--row--1:first-of-type::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0) 80%); 
  }
}

/* ////////////////////////////// */
/* Text on Image */
/* ////////////////////////////// */
@media only screen and (min-width: 1024px) {
	.en__component--row--1:nth-of-type(2) {
		margin: 0;
	}
}

.en__component--copyblock.text-for-image.mobile-only {
  color: #333;
  margin: 1.5em 0;
  text-shadow: none;
}

/* ////////////////////////////// */
/* Footer */
/* ////////////////////////////// */
.footer-container p {
  margin: 0 0 .75rem 0;
}

.footer-container .footer-contact {
  padding-top: 0;
}

.footer-appeal-text {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #c0c0c0;
}

.footer-appeal-text p {
    font-size: 16px;
    font-weight: 600;
}

.footer-appeal-text p:last-of-type {
    margin-bottom: 0;
}

@media only screen and (min-width: 1024px) {
	footer {
		width: 50%;
		margin: 0;
	}
	
	.footer-container {
		width: 100%;
		padding: 1em 0 0 0;
		max-width: 540px;
		margin-left: auto;
	}
}

/* styles-main-appeal.css */