﻿.pyxis-section-wrapper {
	font-family: Helvetica, Arial, sans-serif;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2.5rem;
	margin-bottom: 20px;
}

.pyxis-card-wrapper {
	margin-bottom: 15px;
	max-width: 229px;
	width: 229px;
	border-radius: 10px;
	background-color: #F5F5F5;
	display: flex;
	flex-direction: column;
	transform: scale(1);
	transition: transform 0.2s ease-in-out, box-shadow 0.3s ease-in-out;
	box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.pyxis-card-wrapper:hover {
	transform: scale(1.02);
	transition: transform 0.2s ease-in-out, box-shadow 0.3s ease-in-out;
	box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
	cursor: pointer;
}

.pyxis-card-wrapper:active {
	transform: translateY(1px);
}

.pyxis-card-image-wrapper {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.date-wrapper p {
	text-align: center;
}

.pyxis-card-text-wrapper p {
	font-size: 15px !important;
	text-align: center;
	padding: 0 5px;
	line-height: 17px;
}

.pyxis-my-20 {
	margin-top: 20px;
	margin-bottom: 20px;
}

.pyxis-mb-20 {
	margin-bottom: 20px;
}

.pyxis-fs-20 {
	font-size: 20px;
}

.pyxis-fs-28 {
	font-size: 28px;
}


@media only screen and (min-width: 768px) {
	.pyxis-section-wrapper {
		justify-content: start;
	}
}

.pyxis-test {
	width: 40px;
	height: 40px;
	position: absolute;
	bottom: 10px;
	right: 27px;
}