body {    
    min-height: 100vh;        
    margin-top:50px;
    background-color:#bb0000;
   
}

.i-large,
.i-medium,
.i-small {
	position : fixed;
	top: 0; right: 0; bottom: 0; left: 0;
  z-index:1;
}

.i-medium {
	background: url("img/particules_medium.png") repeat 0px 0px;
	-webkit-animation: dropFlowParticles 12s linear infinite;
	-o-animation: dropFlowParticles 12s linear infinite;
	animation: dropFlowParticles 12s linear infinite;
}
.i-small {
	background:url("img/particules_small.png") repeat 0px 0px;
	-webkit-animation: dropFlowParticles 27s linear infinite;
    -o-animation: dropFlowParticles 27s linear infinite;
	animation: dropFlowParticles 27s linear infinite;
}

@-webkit-keyframes dropFlowParticles {
	from { background-position: 0 0; }
	to { background-position: 0 413px; }
}
@keyframes dropFlowParticles {
	from { background-position: 0 0; }
	to { background-position: 0 413px; }
}

.container {
  z-index: 2;
  position: relative;
}


.header-content h3 {
    font-size: 40px;
    font-family: Great Vibes;  
    letter-spacing:3px; 
    color:#fff;
}
.header-content h4 {
    font-size: 22px;
    font-family: Arial;
    letter-spacing:1px; 
    color:#fff;
}
.header-content p, .gallery-container .header p, .footer-content p {
    font-size: 13px;
    font-family:Arial,sans-serif;	
	letter-spacing:1px; 
    color:#fff;    
    
}

.footer-content a, .footer-block a {
    color:#fff;
    text-decoration:underline;    
}

.gallery-container .header {padding-top:30px;}
.gallery-container .header h4 {color:#fff;}



.footer-block {
	        width: 100%;	        
	        background: #bb0000;
	        /*padding: 30px 0 0 10px;*/
	        padding: 30px 10px 1.5rem;
	        color: #fff;
	        font-size: 13px;
        }    

.navbar .navbar-brand {
	        height: 50px; /*!*/
	        margin: auto; /*!*/
	        padding-top: 5px;
	        border: 0px solid red;
        }
.modal { top: 50px; }


.tz-gallery .lightbox img {
    width: 100%;
    margin-bottom: 30px;
    transition: 0.2s ease-in-out;
    box-shadow: 0 2px 3px rgba(0,0,0,0.2);
}


.tz-gallery .lightbox img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}

.tz-gallery img {
    border-radius: 4px;
}


@media (max-width: 992px) {
    body {
        padding: 0;margin-top:50px;
    }
    
}

@media (max-width:768px) {
      .header-content h3 {
        font-size: 30px;    
    }  
      .header-content p {
        font-size: 12px;    
    }  
}

.thumbnail-container p { font-size:10px;text-align:center; }
.thumbnail-container h4 { margin-top:0px; }


/**
* The CSS shown here will not be introduced in the Quickstart guide, but shows
* how you can use CSS to style your Element's container.
*/
.StripeElement, .form-control {
    background-color: white;
    height: 40px;
    padding: 10px 12px;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-shadow: 0 1px 3px 0 #e6ebf1;
    -webkit-transition: box-shadow 150ms ease;
    transition: box-shadow 150ms ease;
}

.StripeElement--focus { box-shadow: 0 1px 3px 0 #cfd7df; }
.StripeElement--invalid { border-color: #fa755a; }
.StripeElement--webkit-autofill {background-color: #fefde5 !important; }

       
.form-control::-moz-placeholder {  color: #aab7c4; }
.stripeContainer.submitted .myform,
.stripeContainer.submitting .myform {       
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
    display:none;
}
.stripeContainer.submitted .success,
.stripeContainer.submitting .success {
    pointer-events: all;
}
.stripeContainer.submitted .success > * {
    opacity: 1;
    transform: none !important;
    display:block;
}
.stripeContainer .success > * {
    transition-property: opacity, transform;
    transition-duration: 0.35s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    transform: translateY(50px);
    display:none;
}       
.stripeContainer .success .title { color: #707070; padding-top:20px; }


.stripeContainer .circle-loader {
    margin: 30px 0 30px 10px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-left-color: #5cb85c;
    animation-name: loader-spin;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    position: relative;  
    vertical-align: top;
    display:none;
}


.stripeContainer .showme { display:inline-block; }
.stripeContainer .circle-loader,
.stripeContainer .circle-loader:after {
    border-radius: 50%;
    width: 8em;
    height: 8em;
}
.stripeContainer .load-complete {
    -webkit-animation: none;
    animation: none;
    border-color: #5cb85c;
    transition: border 500ms ease-out;
}

.stripeContainer .checkmark { display: none;  }
.stripeContainer .checkmark.draw:after {
    animation-duration: 800ms;
    animation-timing-function: ease;
    animation-name: checkmark;
    transform: scaleX(-1) rotate(135deg);
}

.stripeContainer .checkmark:after {
    opacity: 1;
    height: 4em;
    width: 2em;
    transform-origin: left top;
    border-right: 2px solid #5cb85c;
    border-top: 2px solid #5cb85c;
    content: '';
    left: 2em;
    top: 4em;
    position: absolute;
}

@keyframes loader-spin {
    0% {  transform: rotate(0deg);  }
    100% { transform: rotate(360deg);      }
}
@keyframes checkmark {
    0% {
    height: 0;
    width: 0;
    opacity: 1;
    }
    20% {
    height: 0;
    width: 2em;
    opacity: 1;
    }
    40% {
    height: 4em;
    width: 2em;
    opacity: 1;
    }
    100% {
    height: 4em;
    width: 2em;
    opacity: 1;
    }
}

.myform .btn { padding: 12px 12px; }
.text-invalid {color:#fa755a;}
input.boxed { border:1px solid #fa755a;}
.btn-group.fullWidth {  display: flex;}
.fullWidth .btn {  flex: 1; padding:10px; }

      

#modalDonate .modal-dialog{
    overflow-y: initial !important
}
#modalDonate .modal-body{
    min-height: 700px;
    max-height: 700px;
    overflow-y: auto;
}

 .stripeContainer .donation-banner {background: url("img/MISSIO-Donation-Popup-V2.jpg"); background-position: center; -webkit-background-size: cover; -moz-background-size: cover; background-size: cover; -o-background-size: cover; }      
 .stripeContainer .donation-banner .section  {  height:150px; }


@media (max-width:768px) {
    #modalDonate .modal-body{
        min-height: 500px;
        max-height: 500px; 
    }
    .donation-banner .section  {  height:200px; }

}

 .stripeContainer.submitted .donation-banner .section, .stripeContainer.submitting .donation-banner .section{
            height:0px;
        }                
 
 
 .header-content.banner {background: url("img/header-bg-v2.jpg"); background-position: top; -webkit-background-size: cover; -moz-background-size: cover; background-size: cover; -o-background-size: cover; }      
 .header-content .section  {  height:250px;padding:50px; }                                 
 
 .footer-content.banner {background: url("img/footer-bg.jpg"); background-position:bottom; -webkit-background-size: cover; -moz-background-size: cover; background-size: cover; -o-background-size: cover; position:relative; }      
 .footer-content .section  {  height:250px;padding:50px; }                                 
 .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.5);
}

@media (max-width:768px) {
   .header-content .section  { padding-top:5px; } 
   .footer-content .section  {  height:330px;padding:20px 15px; }    
   .footer-block {text-align:center; }
   .footer-block .pull-right {clear:both!important;float:none!important;margin:auto;}
}