.footer-container {
   	width: 100%;
    height: 64px;
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.15);
    position: fixed;
    bottom: 0;
}
.sub-footer-container {
    height: 100%;
    border: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}
.footer-btn{
	min-width: 130px;
	text-align: center;
	cursor: pointer;
	width: 33.33%;
}

@media screen and (max-width: 390px) {
	.sub-footer-container {
		width: 100%;
	}
	.footer-btn {
		min-width: 0;
		flex: 1;
	}
}