footer{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: var(--footer-height);
    border-top: 0.1rem solid black;
    box-sizing: border-box;
    z-index: 9999;
    background-color: var(--footer-bg);

    .footer-container{
        position: relative;

        .footer-dropdown{
            width: fit-content;
            margin: 0 auto;
            padding: 0.75rem 0;
            display: flex;
            align-items: center;
            color: var(--app-color-3);
            font-weight: 400;
            font-size: 0.813rem;
            cursor: pointer;

            .footer-icon{
                margin-left: 0.5rem;
                width: 1rem;
                height: 1rem;
                pointer-events: none;

                svg{
                    width: 100%;
                    height: 100%;
                }
            }
        }
        .footer-panel{
            display: none;
            width: 100vw;
            position: absolute;
            bottom: 2rem;
            background-color: #fff;

            .img-container{
                display: flex;
                flex-wrap: wrap;
                padding: 1rem;

                div.img{
                    padding: 0.3rem;
                }

                img{
                    width: auto;
                    height: auto;
                    margin: 0.2rem;
                }

                .grow{
                    flex-grow: 1;
                }
            }
        }
    }
}
footer.show{
    .footer-container{
        .footer-dropdown{
            .footer-icon{
                svg{
                    transform: rotate(180deg);
                }
            }
        }
        .footer-panel{
            display: block;
        }
    }
}