// ----------------- footer
.footer{
	display: flex;
	justify-content: center;
	align-items: center;
	color: $text-color;
	font-size: 14px;
	height: 40px;
	padding: 0 20px;
	.remain-days{
		float: right;
		padding: 0 20px 0 10px;
	}
	&::before{
		content: "";
		position: absolute;
		background: #000000;
		opacity: 0;
		width: 100%;
    height: 46px;
		bottom: 0;
		pointer-events: none;
	}
	&.fakeCover{
		&::before{
			opacity: 0.5;
		}
	}
}