﻿/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

strong {
	font-weight: bold;
}

p {
	margin-bottom: 10px;
}

a {
	color: #00BEC1;
}

/* Global Styles */
html, body {
	padding: 0;
	margin: 0;
	height: 100%;
}

body {
	background-color: #f5f5f5;
	font-family: Arial, sans-serif;
	font-size: 12px;
	line-height: 18px;
}

header {
	background-color: #333;
	padding-top: 60px;
}

.container {
	margin: 0 auto;
	width: 600px;
	max-width: 90%;
}

.content-wrapper {
	background-color: white;
	padding: 20px;
}

.event-info {
	padding-bottom: 0;
}

.event-info h1 {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 5px;
}

.event-info h3 {
	font-size: 18px;
	font-weight: bold;
}

.event-info h3 small {
	font-size: 12px;
}

.event-info img {
	width: 100px;
}

.footer-content {
	color: #999;
	margin-top: 60px;
	text-align: center;
}

/* Form */

.stripe-button-el.stripe-button-el {
	-webkit-animation: 1ms void-animation-out;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	border-style: none;
	border-radius: 0;
}

.stripe-button-el.stripe-button-el {
	display: block;
	width: 100%;
	height: 60px;
	margin: 20px 0 0;
	background-image: none;
	background-color: #00BEC1;
	border-radius: 6px;
	color: white;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s ease;
	box-shadow: none;
}

.stripe-button-el.stripe-button-el span {
	background: none;
	box-shadow: none;
	text-shadow: none;
}

.stripe-button-el.stripe-button-el:hover,
.stripe-button-el.stripe-button-el:active {
	background: #333 !important;
}

.stripe-button-el.stripe-button-el:hover span,
.stripe-button-el.stripe-button-el:active span,
.stripe-button-el:disabled span {
	background: transparent !important;
}

/* Components */

.error {
	text-align: center;
	color: white;
	background-color: #e74c3c;
	padding: 10px;
	margin-top: 20px;
}

.media {
	display: flex;
	align-items: flex-start;
}

.media--middle {
	align-items: center;
}

.media__figure {
	margin-right: 20px;
}

.media__body {
	flex: 1;
}

.row {
	display: flex;
	margin: 0 -10px;
}

.row > .col {
	flex: 1;
	margin: 0 10px;
}