/* FIXED FOOTER */
section.fixed-footer {
	position: fixed;
	z-index: 100;
	bottom: 0;
	right: 0;
	width: fit-content;
	background: rgba(203, 109, 81, 0.9);
	transform: translateY(calc(100% + 25px));
	transition: all 0.3s;
	box-shadow: 0 0 0 2px rgba(203, 109, 81,1),0 4px 16px rgba(0,0,0,0.1);
	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;
}

section.fixed-footer a.item:not(:last-child) {
	border-right: 1px solid var(--copper-color-bright);
}

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(--font-color);
}

section.fixed-footer .item p{
	margin: 0;
	font-weight: 500;
	line-height:1.375em;
}
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;
	}
}