/*-------------------------------------------------- Custom Font -----------------------*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,600,700');
@import url('https://fonts.googleapis.com/css?family=Lato:300,400,700');
@import url('https://fonts.googleapis.com/css?family=Indie+Flower');
@import url('https://fonts.googleapis.com/css?family=Varela+Round');

/*-------------------------------------------------- Reset CSS -----------------------*/

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	margin: 0;
	padding: 0;
}
img {
	max-width: 100%;
	border: none;
}
li{
	list-style: none;
}
a, a:hover, a:focus {
	text-decoration: none;
}
h1, h2, h3, h4, h5, h6, p, a, b, ul, li {
	margin: 0;
	padding: 0;
}
button:focus,
input:focus,
textarea:focus {
    outline: none;
}
::selection {
    color: #fff;
    background: #000;
}



/*-------------------------------------------------- Body CSS -----------------------*/

body{
    font-family: 'Lato', sans-serif;
}



/*-------------------------------------------------- Header CSS -----------------------*/

header {
    background: #000;
    text-align: center;
}
.logo img {
    max-height: 70px;
    padding: 10px;
}



/*-------------------------------------------------- Donate CSS -----------------------*/

#donate {
    overflow: hidden;
    padding-bottom: 80px;
}
#donate h3 {
    font-size: 18px;
    font-weight: 500;
    padding: 0 10px;
    text-align: center;
}
#donate form {
    width: 600px;
    margin: 50px auto;
}
#donate p {
    text-align: center;
    font-size: 10px;
    color: #6f7c82;
}
#donate p a {
    color: #000;
}
#donate p a:hover {
    text-decoration: underline;
}
.box {
    background: #f2f2f2;
    border: 1px solid #d9d9d9;
    display: table;
    padding: 30px;
    margin: 50px auto;
    width: 100%;
    border-radius: 10px;
}
.box h2 {
    display: block;
    padding-left: 5px;
    color: #6f7c82;
    font-size: 22px;
    font-weight: 300;
}
.radio {
    position: relative;
    overflow: hidden;
    float: left;
    padding: 25px;
    text-align: center;
    border-radius: 5px;
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    border: 1px solid #24aed7;
    background: #24aed7;
    width: 23%;
    margin: 20px 1% 0;
    cursor: pointer;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    -ms-transition: .3s;
}
.radio span {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(-25%);
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}
.box input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
	visibility:hidden;
    z-index: 2;
}
#donate button:hover,
#donate button:focus,
.radio:hover,
.radio.active {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
}
#donate button:focus,
.radio.active {
    background: #ff5100;
    border-color: #ff5100;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.25), inset 0 3px 3px 0 rgba(0,0,0,.25);
}
#donate button {
    font-family: 'Montserrat', sans-serif;
    background: #FF5100;
    border: 1px solid #FF5100;
    color: #fff;
    padding: 1rem 3.5rem;
    font-size: 20px;
    border-radius: 7px;
    text-transform: uppercase;
    text-shadow: 0 0 1px rgba(0,0,0,.5);
    font-weight: 600;
    cursor: pointer;
    display: table;
    margin: 0 auto 30px;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    -ms-transition: .3s;
}



/*-------------------------------------------------- Footer CSS -----------------------*/

footer {
    overflow: hidden;
    width: 100%;
    background: #000;
    color: #fff;
}
footer.mobile_footer {
    position: fixed;
    left: 0;
    bottom: 0;
}
.copyright {
    float: left;
    line-height: 50px;
    padding-left: 20px;
    font-size: 14px;
}
footer a {
    color: #fff;
    border: 1px solid #fff;
    padding: 5px 20px;
    float: right;
    margin: 10px 20px;
    border-radius: 1px;
    font-weight: 700;
}
footer a:hover {
    background: #fff;
    color: #333;
}
footer img {
    float: right;
    max-height: 60px;
    padding: 10px 30px;
}



/*-------------------------------------------------- Terms Page CSS -----------------------*/
#terms {
    padding: 10px;
}
#terms h1 {
    font-size: 40px;
    font-weight: 300;
    margin: 30px auto;
    text-align: center;
}
#terms p {
    margin-bottom: 10px;
}
#terms li {
    list-style: inherit;
    margin-left: 30px;
}



/*-------------------------------------------------- ThankYou Page CSS -----------------------*/

#thankyou {
    /*
    background: url(../img/bg/thankyou.png)no-repeat;
    background-size: cover;
    */
    text-align: center;
    padding: 40px 0;
}
/*
#thankyou img {
    max-height: 525px;
}
*/
#thankyou h4 {
    font-size: 20px;
    max-width: 350px;
    display: table;
    margin: 0 auto;
    padding-top: 15px;
    font-family: 'Varela Round', sans-serif;
}




















