/* FIXED FOOTER */
section.fixed-footer {
	position: fixed;
	z-index: 100;
	bottom: 0;
	right: 0;
	width: fit-content;
	background: rgba(253, 96, 31, 0.9);
	transform: translateY(calc(100% + 25px));
	transition: all 0.3s;
	max-width: 640px;
	border-radius: 5px;
	padding: 0 10px;
	margin: 20px;
	box-shadow: 0 3px 12px rgba(0,0,0,0.25);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

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;
}

section.fixed-footer a.item:not(:last-child) {
	border-right: 1px solid var(--brand-orange-lighter);
}

section.fixed-footer a.item .icon {
	color: #fff;
	transition:all 0.3s;
}

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

section.fixed-footer a.item:hover .icon,
section.fixed-footer a.item:hover p{
	color:var(--brand-grey-darker);
}

section.fixed-footer .item p{
	margin: 0;
	font-weight: 500;
	line-height:1.375em;
	color:#fff;
	transition:all 0.3s;
}

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

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

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

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

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