* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #5d5d5d;
    background-color: #e8e1db;
    background-image: url(/static/images/donate-form.png);
    background-size: 110%;
    background-position: 60% 0px;
}

.containter {
    width: 900px;
    max-width: 100%;
    background-color: #fff;
    margin: 30px auto;
    padding: 40px;
    border-radius: 12px;
}

.logo {
    width: 300px;
    max-width: 100%;
    margin: auto;
    display: block;
}

.top {
    text-align: center;
    direction: rtl;
}

.top h1 {
    font-size: 24px;
}

.packages {
    background-color: #f7e4c8;
    padding: 20px;
    margin: 40px 0 20px 0;
    border-radius: 3px;
}

.packages h2 {
    text-align: center;
    font-weight: 400;
    margin: 10px 0 20px 0;
}

.packages h3 {
    text-align: center;
    font-weight: 400;
    margin: 30px 0 20px 0;
}

.packages-plans {
    display: flex;
}

.packages .package {
    flex: 1 1 0%;
    text-align: center;
    padding: 1px 10px;
}
.packages .package input{
	display:none;
}
.packages .package input:checked + .package-button{
	background-color: #2e60dd;
    color: #fff;
    border: 2px solid #2e60dd;
}
.packages .package-label {
}

.packages .package-button {
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    border-radius: 3px;
    margin-top: 6px;
    cursor: pointer;
    background-color: #fff;
    border: 2px solid #c6c6c6;
    transition: all 300ms;
}

.packages .package-button:hover {
    background-color: #dedede;
}

.packages .package-button.selected {
    background-color: #2e60dd;
    color: #fff;
    border: 2px solid #2e60dd;
}
.package-message{
    font-size: 0.70em;
    padding: 6px;
    text-align: left;
}
.form{
	background-color: #f4f4f4;
    padding: 30px 20px;
    border-radius: 4px;
}
.form h3{
	font-weight: 400;
	margin-bottom: 10px;
    margin-top: 20px;
}
.form-row{
    display: flex;
    justify-content: space-between;
    margin: 0 -10px;
}
.form-row > div {
    flex: 1 1 0%;
    padding: 0 10px;
}
.form-row input,
.form-row select{
	height: 50px;
    border: 1px solid #c6c6c6;
    margin-bottom: 20px;
    border-radius: 4px;
    padding: 0 0 0 10px;
    font-size: 16px;
    display: block;
    width: 100%;
}
.submit{
	height: 50px;
    line-height: 50px;
    font-size: 18px;
    border-radius: 3px;
    margin-top: 6px;
    cursor: pointer;
    background-color: #2e60dd;
    color: #fff;
    border: 2px solid #2e60dd;
    transition: all 300ms;
    display: block;
    width: 300px;
    margin: auto;
    max-width: 100%;
    margin-top: 20px;
}
.cc-number{
	position: relative;
}
.cc-number .fa{
	position: absolute;
	top: 14px;
    right: 24px;
    font-size: 24px;
}
.success{
	text-align: center;
    margin: 40px 0;
    font-weight: 400;
}

@media screen and (max-width: 600px) {
    .containter{
    	margin: 0;
        padding: 10px;
    	border-radius: 0;
    }
    .packages-plans{
        display: block;
    }
    .form-row{
    	display: block;
    }
    .submit{
    	width: 100%;
    }
    .packages h2 {
        font-size: 20px;
        margin-bottom: 0;
    }
    .packages .package-button{
        margin: 0;
    }
}


