.footer-modal {
    display: none;
    flex-direction: column;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 24px 24px 0px 0px;
    background-color: white;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    
    /* Animation properties */
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

/* Class to show the modal */
.footer-modal.show {
    transform: translateY(0);
    opacity: 1;
}

.app-container{
    height: 70px;
    display: flex;
    align-items: center;
    margin: 4% 4%;
    justify-content: space-between;
}

.divider{
    width: 90%; border: 0.5px solid #dbdad2; margin: auto;
}

.navigator-container{
    height: 70px;
    display: flex;
    align-items: center;
    margin: 4% 4%;
    justify-content: space-between;
}

.right-arrow{
    width: 24px;
}

#browser-icon{
    width: 50px;
    border: 1px solid #dbdad2;
    padding: 6px; 
    border-radius: 12px;
    display: flex;
}

.icon-label{
    margin-left: 24px;
    font-weight: 600;
}

.app-logo-img{
    width: 62px;
    height: 62px;
    border-radius: 12px;
}

.app-container-info{
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 800px) {
    .footer-modal{
        display: flex;
    }
}