/* FIXED FOOTER */
section.fixed-footer {
	position: fixed;
	z-index: 400;
	bottom: 0;
	right: 0;
	width: fit-content;
	background: rgba(44, 62, 74, 0.55);
	transform: translateY(calc(100% + 25px));
	transition: all 0.3s;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
	max-width: 640px;
	border-radius: 5px;
	padding: 0 10px;
	margin: 20px;
	backdrop-filter: blur(4px);
}

section.fixed-footer.visible{
	transform:translateY(0);
}

section.fixed-footer .row{
	display:flex;
	justify-content:center;
}

section.fixed-footer a.item {
	margin: 0.75rem 0;
	text-align: center;
	display: flex;
	padding: 0 1rem;
	transition: all 0.3s;
	border-bottom: none;
	width: fit-content;
	min-width: 100px;
	align-items: center;
	gap: 0.75rem;
	position: relative;
	color: #fff;
	font-size:.875rem;
}

section.fixed-footer a.item:not(:last-child) {
	border-right: 1px solid rgba(255,255,255,0.235);
}

section.fixed-footer a.item .icon {
	color: #fff;
}

section.fixed-footer a.item:last-of-type{
	border:none;
}

section.fixed-footer a.item:hover{
	color:var(--brand-light-color);
}

section.fixed-footer .item p {
	margin: 0;
	line-height: 1.375em;
	font-size: .875rem;
}

section.fixed-footer .item p.smaller{
	font-size:0.6em;
}

section.fixed-footer .icon i{
	font-size:1.5em;
}

.modal-dialog-centered {
	justify-content: center;
}

.modal-content {
	max-width: 800px;
}

@media screen and (max-width:600px){
	section.fixed-footer a.item{
		padding:0 0.75rem;
	}
}

@media screen and (max-width:960px){
	footer#footer{
		padding-bottom:6rem!important;
	}
	
	section.fixed-footer{
		margin:0;
		border-radius:0;
		max-width:none;
		width:100%;
	}
}

@media screen and (max-width:720px){
	footer#footer{
		padding-bottom:8rem!important;
	}
	section.fixed-footer a.item {
		flex-direction:column;
		gap:5px;
		padding:0 0.75rem;
	}
	section.fixed-footer .item p{
		font-size:0.75em;
	}
}