/* blank */
* {
	box-sizing: border-box;
}

body {
	font-family: 'Barlow Semi Condensed', sans-serif;
	font-size: 16px;
	background: #f3f3f3;
	margin: 0;
	padding: 0;
	color: #333;
}

a {
	color: #333;
}

h1 {
	margin-top: 0;
}

strong {
	font-weight: bold;
}

.container {
	background: rgba(255,255,255,0.8);
	padding: 1px;
}

.header-container {
	margin-top: 1px;
}

.content-container {
	min-height: 500px;
}

.wrapper {
	max-width: 600px;
	margin: 0 auto 2em;
	padding: 0 1em;
}

.wide-wrapper {
	max-width: 1270px;
	margin: 0 auto 2em;
}

.greetings {
	padding: 20px 1em;
	border-bottom: 1px solid rgba(255,255,255,0.6);
}

.total > h2 {
	font-size: 28px;
	margin-top: 1.2em;
	text-align: center;
	color: white;
	text-shadow: 1px 1px 3px #333;
}

.greetingformbox {
	background: white;
	padding: 20px;
	border-radius: 5px;
}

.greetingformbox input, .greetingformbox textarea {
	display: block;
	width: 100%;
	margin-bottom: 10px;
}


.greetbox {
	width: 300px;
	padding: 10px;
	margin-bottom: 10px;
	border-radius: 5px;
	background: rgba(255,255,255,0.6);
}

.greetbox .sum {
	border-left: 1px solid rgba(0,0,0,0.1);
	font-size: 22px;
	padding-left: 10px;
}

.greetbox h2 {
	display: flex;
	width: 100%;
	margin-top: 0;
	margin-bottom: 5px;
	font-size: 22px;
	font-weight: normal;
}

.greetbox h2 > em:first-child {
	flex-grow: 1;
	font-style: normal;
}

.greetbox p {
	margin-top: 5px;
	margin-bottom: 5px;
}

.greetbox span {
	font-size: 12px;
}

.header {
	margin-top: 4em;
	text-align: center;
}

.logo {
	max-width: 100%;
}

.go-to-donation {
	display: inline-block;
	text-decoration: none;
    margin: 0 auto;
    border: none;
    border-radius: 6px;
    padding: 0.3em;
    color: white;
    font-family: 'Barlow Semi Condensed', sans-serif;
    cursor: pointer;
}

.summary {
	font-size: 2em;
	color: #444;
}

.campaign .summary {
	font-size: 1.5em;
}

.campaign .box-content img {
	width: 200px;
	float: right;
}


@media (max-width: 35em) {
	.campaign .box-content img {
		display: block;
		width: 100%;
		margin-left: 0;
		margin-bottom: 1em;
	}
	.campaign .summary {
		padding-top: 1em;
		clear: both;
	}
}


.summary p {
	margin-top: 0px;
}

.summary_list {
	font-size: 1.2em;
	color: #444;
}

.req {
	color: red;
}

.hidden {
	display: none;
}


.footer-container {
	background: #666;
}

.footer, .top-header-container, .top-header-container a, .footer a {
	color: #fff;
}

.top-header-container .wrapper {
	margin-top: 10px;
	margin-bottom: 10px;
}

.donation-form .smallprint {
	font-size: 13px;
}

form {
	max-width: 600px;
}

.box-header {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	border: 1px solid #dfdfd7;
	border-bottom: none;
	background: #eee;
	padding: 20px;
}

.box-content {
	padding: 20px 20px;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border: 1px solid #dfdfd7;
	overflow: hidden;
	background: white;
	margin-bottom: 1em;
}

.box-content img {
	float: right;
}

.box-content > p {
	margin-top: 0;
}

.box-row {
	overflow: hidden;
	display: flex;
	margin: 0 0 20px 0;
}


.box-elem-50 {
	flex-grow: 0.5;
	margin-right: 10px;
}

.box-elem-50:last-child {
	margin-right: 0;
}

.price_suggestions {
	overflow: hidden;
	clear: both;
	display: flex;
	width: 100%;
}



span.price_suggestion {
	background: #fff;
	border-radius: 4px;
	padding: 0.3em;
	border: 1px solid #dfdfd7;
	display: block;
	cursor: pointer;
	margin-right: 10px;
	flex-grow: 0.3;
	text-align: center;
	-webkit-transition: size 0.3s;
    transition: all 0.3s ease;
}


span.price_suggestion:last-child {
	margin-right: 0;
}

span.price_suggestion:hover {
	background: #eee;
}

span.price_suggestion.active {
	color: white;
	flex-grow: 1;
}

select,
input, textarea {
	border-radius: 3px;
	background: #eee;
	border: 1px solid #dfdfd7;
	padding: 0.3em 0.5em;
	font-size: 1.3em;
	font-family: 'Barlow Semi Condensed', sans-serif;
}

select {
	display: block;
	width: 100%;
	padding-right: 1rem;
}

input[type="tel"],
input[type=text],
input[type=email] {
	width: 100%;

}

input[type=number] {
	border: 0;
	text-align: right;
}

.currencyinput {
	border: 1px solid #dfdfd7;
	background: #eee;
	border-radius: 3px;
	display: block;
	width: 100px;
	position: relative;
	height: 40px;
	overflow: hidden;
}

.currencyinput-hidden {
	display: none;
}

.currencyinput-readonly {
	background: transparent;
	border-color: transparent;
}

.currencyinput input {
	width: 85%;
}

.currencyinput input[readonly] {
	padding-left: 0;
	padding-right: 0;
	outline: none;
	background: transparent;
}

.currencyinput .currency {
	position: absolute;
	right: 8px;
	top: 5px;
	font-size: 22px;
}

.currencyinput-readonly .currency {
	right: 0;
}

@media (max-width: 30em) {
	.currencyinput {
		width: 100%;
	}
}


.currencyinput input {
	position: absolute;
	right: 12px;
	top: 0;
}


label {
	display: block;
	margin-bottom: 4px;
}

.box-header h1 {
	margin: 0;
	padding: 0;
	font-size: 1.4em;
	font-weight: 700;
}

h1 a {
	text-decoration: none;
}

form button {
	width: 50%;
	margin: 0 auto;
	border: none;
	border-radius: 6px;
	padding: 0.3em;
	color: white;
	font-size: 2em;
	font-family: 'Barlow Semi Condensed', sans-serif;
	cursor: pointer;
}



input[type='number'] {
    -moz-appearance:textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.resp-sharing-button__link,
.resp-sharing-button__icon {
  display: inline-block
}

.resp-sharing-button__link {
  text-decoration: none;
  color: #fff;
  margin: 0.5em
}

.resp-sharing-button {
  border-radius: 5px;
  transition: 25ms ease-out;
  padding: 0.5em 0.75em;
  font-family: Helvetica Neue,Helvetica,Arial,sans-serif
}

.resp-sharing-button__icon svg {
  width: 1em;
  height: 1em;
  margin-right: 0.4em;
  vertical-align: top
}

.resp-sharing-button--small svg {
  margin: 0;
  vertical-align: middle
}

/* Non solid icons get a stroke */
.resp-sharing-button__icon {
  stroke: #fff;
  fill: none
}

/* Solid icons get a fill */
.resp-sharing-button__icon--solid,
.resp-sharing-button__icon--solidcircle {
  fill: #fff;
  stroke: none
}

.resp-sharing-button--twitter {
  background-color: #55acee
}

.resp-sharing-button--twitter:hover {
  background-color: #2795e9
}

.resp-sharing-button--pinterest {
  background-color: #bd081c
}

.resp-sharing-button--pinterest:hover {
  background-color: #8c0615
}

.resp-sharing-button--facebook {
  background-color: #3b5998
}

.resp-sharing-button--facebook:hover {
  background-color: #2d4373
}

.resp-sharing-button--tumblr {
  background-color: #35465C
}

.resp-sharing-button--tumblr:hover {
  background-color: #222d3c
}

.resp-sharing-button--reddit {
  background-color: #5f99cf
}

.resp-sharing-button--reddit:hover {
  background-color: #3a80c1
}

.resp-sharing-button--google {
  background-color: #dd4b39
}

.resp-sharing-button--google:hover {
  background-color: #c23321
}

.resp-sharing-button--linkedin {
  background-color: #0077b5
}

.resp-sharing-button--linkedin:hover {
  background-color: #046293
}

.resp-sharing-button--email {
  background-color: #777
}

.resp-sharing-button--email:hover {
  background-color: #5e5e5e
}

.resp-sharing-button--xing {
  background-color: #1a7576
}

.resp-sharing-button--xing:hover {
  background-color: #114c4c
}

.resp-sharing-button--whatsapp {
  background-color: #25D366
}

.resp-sharing-button--whatsapp:hover {
  background-color: #1da851
}

.resp-sharing-button--hackernews {
background-color: #FF6600
}
.resp-sharing-button--hackernews:hover, .resp-sharing-button--hackernews:focus {   background-color: #FB6200 }

.resp-sharing-button--vk {
  background-color: #507299
}

.resp-sharing-button--vk:hover {
  background-color: #43648c
}

.resp-sharing-button--facebook {
  background-color: #3b5998;
  border-color: #3b5998;
}

.resp-sharing-button--facebook:hover,
.resp-sharing-button--facebook:active {
  background-color: #2d4373;
  border-color: #2d4373;
}

.resp-sharing-button--twitter {
  background-color: #55acee;
  border-color: #55acee;
}

.resp-sharing-button--twitter:hover,
.resp-sharing-button--twitter:active {
  background-color: #2795e9;
  border-color: #2795e9;
}

