@import "fonts.css";
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');

:root {
	--primary: #92421D; /* #D9114B; */
	--primary-gold: #E0BD7F;
	--primary-gold-light: #D6BE98;

	--color-text: #1C1519;
	--color-negative: #e4e9f2;
}

html, body {
	font-family: 'Merriweather', 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-image: url(../images/rhymil.png);
		background-position: center center;
		background-size: cover;	
		background-attachment: fixed;
	}

	.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.33em;
}

h1, h2, h3 {
	font-family: 'Cinzel', cursive;
	font-weight: 400;
	color: var(--primary);
	margin: 1.25em 0 0.75em;
}

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

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

b, strong {
	font-weight: 700;
}

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

.sidebar {
	margin-bottom: 2em;
}

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

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

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

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

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

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

ul li {
	margin-bottom:0.75em;
}

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.8em;
}

@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;
}

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

section.docs {
	margin-top: 1rem;
}
section.docs .docs-row {
	margin-top: 2rem;
}

/* site icon */
@media screen and (max-width: 768px) {
	#logo-text-white {
		display: none;
	}
}
@media screen and (min-width: 769px) {
	#logo-text-black {
		display: none;
	}
}

blockquote {
	font-family: 'Cinzel', cursive;
	font-size: 1.2rem;
	border-left: 4px solid gray;
	background: lightgray;
}

blockquote:before {
	content: "“";
	font-size: 2rem;
	display: inline;
	height: 0;
}
blockquote p {
	display: inline;
}
blockquote:after {
	content: "”";
	font-size: 2rem;
	display: inline;
	height: 0;
}

.doc {
    height: 100px;
}

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

.resize-vertical {
	resize: vertical;
}

.warning-pg {
	border: 1px solid darkred;
	margin-bottom: 2rem;
	padding: 1rem;
	background: indianred;
	font-weight: bold;
}

.warning-pg p {
	margin: 0;
}

fieldset {
	display: flex;
	gap: 1rem;
	margin-bottom: 2rem;
}

fieldset legend {
	font-size: 1rem;
	font-weight: bold;
}

fieldset .fieldset-field {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

fieldset .fieldset-field input,
fieldset .fieldset-field label {
	margin: 0;
}