@import "fonts.css";

:root {
	--primary-blue: #2F566B;
	--primary-gold: #bca769;
	--color-text: #1b2226;
	--color-negative: #e4e9f2;
}

html, body {
	font-family: 'NanumGothic', sans-serif;
	font-weight: 400;
	color: var(--color-text);
	width: 100%;
	height: 100%;
	font-size: 14px;
}

body {
	background-color: rgba(0,0,0,0.025);
}	

.background, .padded {
	margin-top: 15px;
	margin-bottom: 15px;
	padding-top: 15px;
	padding-bottom: 15px;
}

@media (min-width: 769px) {
	body {
		/*background: var(--primary); */
		background-image: url(../images/logo-aessigea.jpg);
		background-position: center center;
		background-size: cover;	
		background-attachment: fixed;

		background-color: rgba(63, 63, 63, 0.5);
		background-blend-mode: multiply;
	}
	
	.background {
		background-color: rgba(255, 255, 255, 0.9);
		border-radius: 3px;
	}	
}

.main {
	background-color: rgba(202, 213, 217, 0.5);
	padding: 15px;
	border-radius: 3px;
}

.pill {
	background-color: rgba(202,213,217,0.25);
	padding:15px;
	border-radius: 3px;
	margin-bottom: 5px;
}

.pill p {
	margin-bottom:0.33rem;
}

h1, h2, h3 {
	font-family: 'MedievalSharp', serif;
	font-weight: 400;
	color: var(--primary-gold);
	margin: 1.25rem 0 0.75rem;
}

h1:first-child, h2:first-child, h3:first-child {
	margin-top:0;
}

h1 {
	font-size: 2rrem;
}
h2 {
	font-size: 1.66rem;
}
h3 {
	font-size: 1.33rem;
}

b, strong {
	font-weight: 700;
}

p, label {
	margin-bottom:0.75rem;
}

.sidebar {
	margin-bottom: 2rem;
}

label {
	font-weight: normal;
	display:block;
}

input, textarea, button, select, .form-control, .btn {
	margin-bottom:1.25rem;
	height:auto;
}

.note-editor {
	margin-bottom:1.25rem;
}

input[type="checkbox"], input[type="radio"] {
	margin-right:10px;
	width: auto !important;
}

/*
input[type="checkbox"] + *, input[type="radio"] + * {
	vertical-align: middle;
}
*/

/*
#conditions_panel {
	margin-bottom:1.25rem !important;
	height:auto;
}

#conditions_panel select, #conditions_panel .form-control {
	margin-bottom:0;
	height:auto;
}
*/

.alert{
	display:block;
	margin:15px 0;
}

.fa, .fas {
	margin:0 5px;
}

ul li {
	margin-bottom:0.75rem;
}

table th {
	cursor: pointer;
}

table .btn, table .form-control {
	margin-bottom: 0;
}

.floating {
	position: fixed !important;
	top:10px;
	right:10px;
	display:none;
	z-index: 1000;
}

#footer {
	color:#888;
	font-size: 0.8rem;
}

@media (min-width: 769px){

	.input-inline {
		display:block;
	}
	
	.input-inline > :first-child {
		display:inline-block;
		width: 200px;
		vertical-align: top;
	}
	
	.input-inline > :last-child {
		display:inline-block;
		width: calc(100% - 210px);
		vertical-align: top;
	}
}

.form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
}

.event-image {
	aspect-ratio: 1;
	object-fit: cover;
}

.event {
	border: 1px solid lightgray;
	border-radius: 10px;
	padding: 1rem;
	margin-bottom: 1rem;
}

.website-version {
	width: 100%;
	text-align: center;
	margin-bottom: 2rem;
}


.btn-paypal:before {
	content: url('../images/paypal-icon.svg');
	display: inline-block;
	width: 12px;
	vertical-align: middle;
	margin-right: 0.4rem;
}