*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--font-quantico: "Quantico", sans-serif;
	--font-pacifico: "Pacifico", cursive;
	--font-poppins: "Poppins", sans-serif;
	--color-background: #e3d8c5;
}

body {
	font-family: var(--font-poppins);
	background-color: var(--color-background);
	margin-left: 32px;
	margin-right: 32px;
	margin-bottom: 16px;
}

header {
	padding: 1rem 0rem;
	border-bottom: 1px solid #000;
}

.header-content {
	display: flex;
	margin: 0 auto;
	justify-content: space-between;
	align-items: center;
	max-width: 90rem;
	gap: 20px;
}

.header-left {
	background-color: #d39175;
	border-radius: 0.5rem;
}

.header-left .desktop {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 0.875rem;
	font-weight: 400;
	padding: 0.625rem;
}

.header-left .other {
	display: none;
}

.header-date {
	font-family: var(--font-pacifico);
	font-size: 1.5rem;
	font-weight: 400;
}

.header-center {
	font-family: var(--font-quantico);
	font-size: 1.5rem;
	font-weight: 400;
	text-align: center;
}

.header-center span {
	font-family: var(--font-pacifico);
	font-size: 1.25rem;
}

.header-cta {
	background: linear-gradient(to right, #e9e1cb, #d1ab95);
	padding: 0.75rem 1.5rem;
	display: flex;
	gap: 0.625rem;
	align-items: center;
	justify-content: center;
	border: 0.0625rem solid #000;
	border-radius: 0.5rem;
	cursor: pointer;
	font-size: 1.25rem;
	font-weight: 500;
}

.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

.modal-overlay.active {
	display: flex;
}

.modal-container {
	background-color: #fff;
	border-radius: 0.5rem;
	padding: 1.5rem 2rem;
	width: 90%;
	max-width: 500px;
	position: relative;
}

.modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: none;
	border: none;
	font-size: 2rem;
	cursor: pointer;
	color: #000;
}

.modal-title {
	font-family: var(--font-pacifico);
	font-size: 1.5rem;
	color: #000;
	margin-bottom: 0.5rem;
}

.modal-subtitle {
	color: #023047;
	text-align: center;
	margin-bottom: 0.5rem;
	font-size: 0.75rem;
}

.auth-form {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.form-group {
	display: flex;
	gap: 0.5rem;
	align-items: center;
}

.form-group label {
	min-width: 100px;
	font-size: 1.25rem;
	font-weight: medium;
	color: #023047;
}

.form-group input {
	flex: 1;
	padding: 0.75rem;
	border: 2px solid #757575;
	border-radius: 0.5rem;
	font-size: 1rem;
	font-family: var(--font-poppins);
	transition: border-color 0.3s ease;
}

.form-group input:focus {
	outline: none;
	border-color: #d39175;
}

.grant-access-btn {
	background-color: #22c55e;
	color: white;
	border: none;
	padding: 0.875rem 2rem;
	border-radius: 0.5rem;
	font-size: 1.125rem;
	cursor: pointer;
	margin-top: 1rem;
}

.milestone-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.milestone-form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	align-items: flex-start;
}

.milestone-form-group label {
	min-width: auto;
	font-size: 1.125rem;
	font-weight: 500;
	color: #000;
}

.milestone-form-group input[type="text"],
.milestone-form-group input[type="date"] {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid #ccc;
	border-radius: 0.375rem;
	font-size: 1rem;
	font-family: var(--font-poppins);
	background-color: #f8f8f8;
	transition: border-color 0.3s ease;
}

.milestone-form-group input:focus {
	outline: none;
	border-color: #118ab2;
}

.file-input-container {
	position: relative;
	width: 100%;
}

.file-input-container input[type="file"] {
	position: absolute;
	left: -9999px;
	opacity: 0;
}

.file-input-label {
	display: block;
	width: 100%;
	padding: 0.75rem;
	border: 1px solid #ccc;
	border-radius: 0.375rem;
	background-color: #f8f8f8;
	cursor: pointer;
	font-size: 1rem;
	font-family: var(--font-poppins);
	transition: border-color 0.3s ease;
}

.file-input-label:hover {
	border-color: #118ab2;
}

.file-status {
	color: #999;
	margin-left: 0.5rem;
}

.file-info {
	font-size: 0.875rem;
	color: #666;
	margin: 0;
}

.upload-progress {
  width: 100%;
  height: 6px;
  background: rgba(0,0,0,0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 10px;
  display: none; /* hidden until uploading */
}

.upload-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #4facfe, #00f2fe);
  transition: width 0.2s ease;
}


.save-milestone-btn {
	background-color: #000;
	color: white;
	border: none;
	padding: 0.875rem 2rem;
	border-radius: 0.375rem;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	align-self: flex-end;
	transition: background-color 0.3s ease;
}

/* Hero Section */
main,
section {
	max-width: 90rem;
	margin: 2rem auto;
}

.bento-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-auto-rows: minmax(10.9375rem, 12.5rem);
	gap: 1rem;
}

.bento-photo {
	background-color: #b3a388;
	overflow: hidden;
}

.bento-item {
	border-radius: 0.5rem;
	padding: 1rem;
	border: 1px solid #000;
}

.bento-item > div {
	background-color: #fff;
	border-radius: 0.5rem;
	padding: 0.75rem;
	height: 100%;
}

.bento-item > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0.5rem;
	transition: transform 0.3s ease;
}

.bento-photo:hover img {
	transform: scale(1.05);
}

.bento-1 {
	grid-column: 1 / 5;
	grid-row: 1 / 3;
}

.bento-2 {
	grid-column: 5 / 10;
	grid-row: 1;
}

.bento-2 > div {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}

.bento-2 p {
	font-size: 1.5rem;
	text-align: center;
}

.bento-2 .name {
	font-size: 3rem;
	font-family: var(--font-pacifico);
	text-align: center;
}

.bento-3 {
	grid-column: 5 / 10;
	grid-row: 2;
	line-height: 1.5;
	display: grid;
	place-items: center;
}

.bento-3 .name {
	font-size: 1.5rem;
	font-family: var(--font-pacifico);
}

.bento-4 {
	grid-column: 10/ 13;
	grid-row: 1 / 4;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.bento-4 > div {
	border: 1px solid #000;
	flex-shrink: 1;
	height: auto;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.blue-heading {
	color: #118ab2;
	font-family: var(--font-pacifico);
	font-size: 1.5rem;
}

.countdown-timer-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.625rem;
}

.grid-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0.5rem 0.75rem;
	gap: 0.5rem;
	background-color: #f5e7da;
	border: 1px solid #000000;
	border-radius: 0.5rem;
}

.grid-item .number {
	font-weight: 600;
	font-size: 1.5rem;
}

.upcoming-milestones {
	flex-grow: 1;
}

.milestone-item {
	background-color: #989898;
	border-radius: 0.5rem;
	color: #fff;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	flex-direction: column;
}

.milestone-title {
	font-weight: 600;
}

.milestone-date {
	font-size: 0.875rem;
}

.bento-5 {
	grid-column: 1 / 4;
	grid-row: 3 / 5;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.bento-5 > div {
	border: 1px solid #000;
	flex-shrink: 1;
	height: auto;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.recent-milestones {
	flex-grow: 1;
}

.bento-6 {
	grid-column: 4 / 6;
	grid-row: 3;
}

.bento-7 {
	grid-column: 4 / 6;
	grid-row: 4;
}

.bento-8 {
	grid-column: 6 / 10;
	grid-row: 3 / 5;
}

.calendar-container {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.calendar-header {
	margin-bottom: 0.5rem;
}

.calendar-wrapper {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.calendar-month-header {
	background-color: #000;
	color: white;
	text-align: center;
	padding: 0.15625rem 0;
	border-radius: 0.25rem;
	margin-bottom: 0.75rem;
}

.days-grid {
	flex: 1;
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 0.5rem;
}

.day-header {
	background-color: #000;
	color: white;
	text-align: center;
	padding: 0.25rem 0.125rem;
	font-size: 0.75rem;
	border-radius: 0.25rem;
	height: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.day-cell {
	border: 1px solid #ddd;
	text-align: center;
	padding: 0.25rem;
	font-size: 0.875rem;
	border-radius: 0.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.day-cell:hover {
	background-color: #f0f0f0;
}

.day-cell.inv-month {
	color: #ccc;
	background-color: #f8f8f8;
}

.day-cell.colored {
	color: #118ab2;
}

.day-cell.current-day {
	background-color: #118ab2;
	color: white;
	font-weight: bold;
}

.bento-9 {
	grid-column: 10 / 13;
	grid-row: 4;
}

.bento-9 > div {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.bento-9 > div > :last-child {
	align-self: flex-end;
}

.carousel-container {
	display: flex;
	align-items: center;
	background-color: #ffc1cc;
	border-radius: 8px;
	padding: 32px 20px;
	display: flex;
	gap: 16px;
	align-items: center;
}

.carousel-control {
	background-color: #fff;
	border: none;
	cursor: pointer;
	padding: 12px;
	border-radius: 8px;
}

.carousel-items {
	display: flex;
	overflow-x: auto;
	scroll-behavior: smooth;
	gap: 16px;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.carousel-items::-webkit-scrollbar {
	display: none;
}

.carousel-card {
	padding: 12px 16px;
	background-color: #fff;
	border: 1px solid #000;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.image-wrapper {
	overflow: hidden;
	border-radius: 8px;
	width: 360px;
	height: 180px;
	background-color: #989898;
}

.image-wrapper img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.3s ease;
}

.image-wrapper:hover img {
	transform: scale(1.1);
}

.carousel-control img {
	width: 24px;
	height: 24px;
}

/* La Familia Hover Styles */
.pacifico {
	font-family: var(--font-pacifico);
}

.divider-top {
	width: 100%;
	height: 1px;
	background-color: #333;
	margin-bottom: 20px;
}

.divider-bottom {
	width: 100%;
	height: 1px;
	background-color: #333;
	margin-top: 20px;
}

.overlay-dark {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1;
}

.image-wrapper1:hover .overlay-dark,
.image-wrapper2:hover .overlay-dark,
.image-wrapper3:hover .overlay-dark,
.image-wrapper4:hover .overlay-dark,
.image-wrapper5:hover .overlay-dark {
	opacity: 1;
}

.image-wrapper1:hover .pacifico,
.image-wrapper2:hover .pacifico,
.image-wrapper3:hover .pacifico,
.image-wrapper4:hover .pacifico,
.image-wrapper5:hover .pacifico {
	position: absolute;
	opacity: 1;
	color: #fff;
	z-index: 10;
	transform: scale(1.05);
	transition: transform 0.2s ease;
	transform: translate(-50%, -50%);
}

.image-wrapper1:hover img,
.image-wrapper2:hover img,
.image-wrapper3:hover img,
.image-wrapper4:hover img,
.image-wrapper5:hover img {
	transform: scale(1.05);
	z-index: 10;
	transition: transform 0.2s ease;
}
.image-wrapper1:hover,
.image-wrapper2:hover,
.image-wrapper3:hover,
.image-wrapper4:hover,
.image-wrapper5:hover {
	transform: scale(1.05);
	z-index: 10;
	transition: transform 0.2s ease;
}

.La-Familia {
	text-align: center;
	margin-top: 24px;
}

.lafamilia-img-container {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin-top: 20px;
	flex-wrap: nowrap;
	overflow: visible;
}

.image-wrapper1,
.image-wrapper5 {
	position: relative;
	display: inline-block;
	overflow: hidden;
	width: 180px;
	height: 180px;
	border: solid 8px #1e90ff;
	border-radius: 1000px;
	margin-left: -20px;
}
.image-wrapper2,
.image-wrapper4 {
	position: relative;
	overflow: hidden;
	width: 216px;
	height: 216px;
	border: solid 8px #ffb703;
	border-radius: 1000px;
	margin-left: -20px;
}
.image-wrapper3 {
	position: relative;
	overflow: hidden;
	width: 338px;
	height: 338px;
	border: solid 16px #ff69b4;
	border-radius: 1000px;
	margin-left: -20px;
}

.image-wrapper1 img,
.image-wrapper5 img {
	width: 100%;
	object-fit: cover;
	height: 100%;
	display: block;
	transition: transform 0.3s ease;
}
.image-wrapper2 img,
.image-wrapper4 img {
	width: 100%;
	object-fit: cover;
	height: 100%;
	display: block;
	transition: transform 0.3s ease;
}
.image-wrapper3 img {
	width: 100%;
	object-fit: cover;
	height: 100%;
	display: block;
	transition: transform 0.3s ease;
}

.image-wrapper1 .pacifico,
.image-wrapper2 .pacifico,
.image-wrapper3 .pacifico,
.image-wrapper4 .pacifico,
.image-wrapper5 .pacifico {
	position: absolute;
	opacity: 0;
	transform: translate(-50%, -50%);
	font-size: 32px;
	text-align: center;
	white-space: nowrap;
	pointer-events: none;
	top: 40%;
	left: 50%;
	z-index: 2;
}

.image-wrapper1 {
	z-index: 0;
}
.image-wrapper2 {
	z-index: 1;
}
.image-wrapper3 {
	z-index: 4;
}

.image-wrapper4 {
	z-index: 1;
}
.image-wrapper5 {
	z-index: 0;
}

.footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #e3d8c5;
	color: #000;
	padding: 0px, 16px;
	margin-top: 12px;
}

.social-icon {
	width: 24px;
	height: 24px;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.social-link :hover {
	transform: scale(1.1);
}
.footer-item {
	width: auto;
	display: flex;
	gap: 16px;
}

.footer-item a {
	color: white; /* Ensure links are visible */
	text-decoration: none; /* Remove underline */
}

.footer-item :hover {
	text-decoration: underline; /* Add underline on hover */
}

.page {
	display: none;
	position: relative;
}

.page.active {
	display: block;
}

.milestones-container {
	background-color: #ffc1cc;
	border-radius: 0.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 1.5rem 1rem;
}

.milestones-container-title {
	font-family: var(--font-pacifico);
	font-size: 1.5rem;
	color: #000;
}

.milestone-card {
	background-color: #fff;
	border: 1px solid #000;
	border-radius: 0.5rem;
	padding: 1rem 1.5rem;
	display: flex;
	gap: 0.5rem;
}

.milestone-image {
	width: 360px;
	height: 180px;
	border-radius: 0.5rem;
	overflow: hidden;
	background-color: #989898;
}

.milestone-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.milestone-image:hover img {
	transform: scale(1.1);
}

.delete-milestone {
	background-color: #ff6b6b;
	color: white;
	border: none;
	padding: 0.5rem 1rem;
	border-radius: 0.25rem;
	cursor: pointer;
	font-size: 0.875rem;
	transition: background-color 0.3s ease;
	margin-left: auto;
}

.delete-milestone:hover {
	background-color: #ff2b6b;
	color: white;
	border: none;
	padding: 0.5rem 1rem;
	border-radius: 0.25rem;
	cursor: pointer;
	font-size: 0.875rem;
	transition: background-color 0.3s ease;
	margin-left: auto;
}

/* Floating Add Milestone Button */
.add-milestone-btn {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	background-color: #ffc0cc;
	color: #118ab2;
	border: none;
	padding: 0.75rem;
	border-radius: 0.5rem;
	cursor: pointer;
	font-family: var(--font-poppins);
	font-weight: 500;
	font-size: 1.25rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
	z-index: 1000;
	display: none;
}

.add-milestone-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.add-milestone-btn:active {
	transform: translateY(0);
}

#milestones-page.active .add-milestone-btn {
	display: block;
}

/* Breakpoints are desktop first */
/* you can change the tablet breakpoint if you want */
@media (max-width: 1024px) {
	.header-left .desktop {
		display: none;
	}

	.header-left .other {
		display: block;
		padding: 0.5rem;
		font-family: var(--font-pacifico);
		font-size: 0.875rem;
		font-weight: 400;
	}

	.header-center {
		font-size: 0.875rem;
	}

	.header-center span {
		font-size: 0.875rem;
	}

	.header-cta {
		padding: 0.25rem;
	}
	.header-cta .desktop {
		display: none;
	}

	.carousel-control {
		display: none;
	}

	.bento-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem 1rem;
	}

	.bento-1 {
		grid-column: 1 / 3;
		grid-row: 1 / 3;
	}

	.bento-2 {
		grid-column: 1 / 2;
		grid-row: 3 / 4;
	}

	.bento-2 p {
		font-size: 1rem;
	}

	.bento-2 .name {
		font-size: 2rem;
	}

	.bento-3 {
		grid-column: 1 / 2;
		grid-row: 4 / 6;
		font-size: 1.5rem;
		text-align: center;
	}

	.bento-3 .name {
		font-size: 1.75rem;
	}

	.bento-4 {
		grid-column: 2 / 3;
		grid-row: 3 / 6;
		display: flex;
		flex-direction: column;
		gap: 0.75rem;
	}

	.blue-heading {
		text-align: center;
	}

	.grid-item .number {
		font-size: 1.25rem;
	}

	.bento-5 {
		grid-column: 1 / 2;
		grid-row: 6 / 8;
	}

	.bento-5 > div {
		gap: 0.5rem;
	}

	.overview-stat {
		text-align: center;
	}

	.bento-6 {
		grid-column: 2 / 3;
		grid-row: 6;
	}

	.bento-7 {
		grid-column: 2 / 3;
		grid-row: 7;
	}

	.bento-8 {
		grid-column: 1 / 3;
		grid-row: 8 / 10;
	}

	.bento-9 {
		grid-column: 1 / 3;
		grid-row: 10;
	}

	.bento-9 > div {
		align-items: center;
		text-align: center;
	}

	.bento-9 > div > :last-child {
		align-self: center;
	}

	.carousel-control {
		display: none;
	}
}

@media (max-width: 640px) {
	.bento-grid {
		grid-template-columns: 1fr;
	}

	.bento-1 {
		grid-row: 1 / 3;
	}

	.bento-2 {
		grid-row: 3 / 4;
	}

	.bento-3 {
		grid-row: 7 / 9;
		line-height: 1.5;
	}

	.bento-4 {
		grid-column: 1;
		grid-row: 4 / 7;
	}

	.bento-5 {
		grid-row: 9 / 11;
	}

	.bento-6 {
		grid-column: 1;
		grid-row: 11;
	}

	.bento-7 {
		grid-column: 1;
		grid-row: 14;
	}

	.bento-8 {
		grid-row: 12 / 14;
	}

	.bento-9 {
		grid-row: 15;
	}

	/* Modal responsive styles */
	.modal-container {
		width: 95%;
		padding: 1.5rem;
	}

	.modal-title {
		font-size: 1.5rem;
	}

	.modal-subtitle {
		font-size: 0.9rem;
	}

	.form-group label {
		font-size: 1rem;
	}

	.grant-access-btn {
		font-size: 1rem;
		padding: 0.75rem 1.5rem;
	}

	.milestone-card {
		flex-direction: column;
		align-items: center;
	}

	.milestone-image {
		width: 100%;
	}
}

/* Lightbox Scrim */
.lightbox-scrim {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 15px;
}

.lightbox-scrim.active {
  display: flex;
  overflow: auto;
}

.lightbox-content {
  position: relative;
  max-width: 80%;
  max-height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Lightbox Media */
.lightbox-content img,
.lightbox-content video {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);

}

.lightbox-close {
  position: absolute;
  top: -25px;
  right: -50px;
  font-size: 2rem;
  font-weight: bold;
  color: white;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: #ffc0cc; /* pink hover */
}


/* Navigation arrows */
#lightbox-prev,
#lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  /* font-weight: bold; */
  color: black;
  cursor: pointer;
  user-select: none;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: white;
  transition: color 0.2s ease;
}

#lightbox-prev:hover,
#lightbox-next:hover {
  background: #ccc
}

#lightbox-prev {
  left: -60px;
}

#lightbox-next {
  right: -60px;
}

/* Lightbox Spinner */
.lightbox-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  z-index: 1002;
  display: none; /* hidden by default */
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}


/* Initial state for lazy-loaded images */
.lazy-thumb {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

/* When loaded, fade them in */
.lazy-thumb.loaded {
  opacity: 1;
}
