/* Simple reset */

html {
	box-sizing: border-box;
	font-size: 16px;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
	margin: 0;
	padding: 0;
	font-weight: normal;
}

ol,
ul {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
}

/* Custom styles for public page */

body {
	font-family: Helvetica, sans-serif;
	font-size: .9rem;
	font-weight: 400;
	line-height: 1.6;
	color: #212529;
	text-align: left;
}

.container {
	margin: 0 auto;
	max-width: 1140px;
}

header {
	color: #fff;
	font-weight: bold;
}

header h1 {
	margin: 0;
}
.h1,
h1 {
	font-size: 2.25rem;
}

.mt-5 {
	margin-top: 3rem;
}

/* .card {
	background: #fff;
	padding: 20px;
	border-radius: 10px;
}

.card-body > div {
	display: flex;
	gap: 25px;
}


h2 {
	margin: 15px 0 10px;
}
.h2,
h2 {
	font-size: 1.8rem;
} */

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: .5rem;
	font-weight: 500;
	line-height: 1.2;
}

h2.title {
	font-size: 1.25rem;
	margin-top: 40px;
	border-radius: 5px;
	padding: 12px 14px;
}

.schedulePdf {
	background-color: white;
	font-weight: bold;
}

.ml-2,
.mx-2 {
	margin-left: .5rem !important;
}

a {
	text-decoration: none;
}

p {
	font-size: 1.15em;

	margin-top: 0;
	margin-bottom: 1rem;
}

.programma {
	border: 1px solid #666;
}
.table {
	width: 100%;
	margin-bottom: 1rem;
	color: #212529;
}
table {
	border-collapse: collapse;
}
.programma td,
.programma th {
	text-align: center;
	width: 12.5%;
	border: 1px solid #666 !important;
}
.table td,
.table th {
	padding: .75rem;
	vertical-align: top;
	border-top: 1px solid #dee2e6;
}

.public footer {
	padding: 10px;
	position: fixed;
	bottom: 0;
	width: 100%;
	z-index: 100;
	background-color: rgb(225, 231, 238);
	border-top: 1px solid rgb(160, 175, 175);
}

footer a,
footer a:visited {
	color: #53598f;
}

footer a:hover {
	text-decoration: underline;
}

.navigation {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

nav ul {
	display: flex;
	gap: 10px;
	padding: 0 !important;
	margin: 0 !important;
}

nav li a {
	display: block;
	padding: 3px 6px;
	color: #fff;
	border-radius: 5px;
	transition: all 0.3s;
	font-weight: bold;
}

.post-gallery {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.post-gallery > a {
	border: 1px solid #333;
}

.post-gallery img {
	width: 160px;
}

.post-gallery a {
	height: 162px;
	width: 162px;
	/* background: red; */
}

.share_options {
	margin: 20px 0;
}

/* MEDIA QUERIES */

@media only screen and (max-width: 992px) {
	.container {
		padding: 20px;
	}

	header .container {
		padding: 0 10px;
	}

	header h1 {
		font-size: 2rem;
	}

	footer .container {
		padding: 0;
	}

	.card-body > div {
		flex-direction: column;
		gap: 16px;
	}
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
	.container {
		max-width: 960px;
	}
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
	.container {
		max-width: 1140px;
	}
}

@media screen and (max-width: 800px) {
	nav ul:not(.pagination) {
		flex-direction: column;
		gap: 6px;
	}

	header.sticky {
		position: relative;
	}

	header:not(.sticky) {
		display: none;
	}
}
