.installContainer{
    visibility: hidden;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background-color: rgba(0, 0, 0, .75);
    z-index: 9999;
}

.installBox {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #dee2e6;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    border-radius: 2rem 2rem 0 0;
    padding: 2rem 0 1rem 0;
}

.installBoxRow {
    display: flex;
    flex-direction: row;
    height: 3rem;
}

.installBoxIcon{
    height: 3rem;
}

.installBoxTxt{
    width: 14rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.installBtn{
    border-radius: 10rem;
    width: 6rem;
    height: 3rem;
    border: none;
    font-weight: 600;
}

.validInstallBtn{
    background: var(--color-primary);
    color: var(--color-tertiary);
}

.refuseInstallBtn{

}