body:has(.fixed-top){
	margin-top: 70px;
}
.navbar {
	background-color: #32424A;
}
.navbar form {
	display: flex;
	align-items: center;
}
.navbar form input {
	background-color: #DBE3E6;
	border-color: #DBE3E6;
	height: 2rem;
	line-height: 2;
	border-radius: 4px;
	width: 90%;
	padding-right: 0;
	height: 1.75rem;
}
.navbar form input::placeholder {
	color: #32424A;
	font-weight: 500;
	font-style: italic;
}
.navbar form input:focus {
	background-color: #32424A;
	box-shadow: none;
}

.navbar span {
	color: #eee;
	line-height: 1.2;
}

/*Matherial Button*/
.btn {
	position: relative;
	overflow: hidden;
}
.btn-link {
	color: #eee;
}
.btn:hover::before {
	animation: ripple 1s ease;
}

.btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.7);
	border-radius: 50%;
	transform: scale(0);
}

@keyframes ripple {
	from {
		transform: scale(0);
		opacity: 1;
	}
	to {
		transform: scale(3);
		opacity: 0;
	}
}