.check-internet {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width:42%;
    border-radius: 0.8em;
    position: absolute;
    transition: ease-in-out 0.6s;
    top:-66%;
    background: #fff;
    z-index: 99999;
    margin-right:26%;
    cursor: pointer;
    padding: 0.8em;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.check-internet .title {
    width: 100%;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
}

.check-internet button {
    border: 0;
    border-radius: 0.5em;
    width: fit-content;
    padding: 0.5em;
    margin-top: 0.6em;
    background:#0d6efd;
    color: #fff;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.check-internet img {
    width: 36px;
    display: none;
}

.no-wi-fi, .wi-fi{
    top: 6% !important;
}

.no-wi-fi img.no, .wi-fi img.ok {
    display: block;
}

.install-app {
    width: 93%;
    padding: 0.4em;
    display: flex;
    justify-content: space-between;
    border-radius: 0.3em;
    position: absolute;
    background: #fff;
    z-index: 9999999999999;
    transition: ease-in-out 1s;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    margin: 1% 2%;
    top: -100px;
}

.show-install {
 top: 0;
}

.install-app span {
    font-weight: bold;
    font-size: 12px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.install-app span img {
    width: 30px;
    margin-left: 0.3em;
}

.install-app .install {
    border: 0;
    padding: 0.1em 0.7em;
    background: red;
    border-radius: 0.5em;
    color: #fff;
    cursor: pointer;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .check-internet {
        width:18%;
        margin-right: 40%;
    }
}


@media (min-width: 992px) and (max-width: 1199.98px) {
    .check-internet {
        width:18%;
        margin-right: 40%;
    }
}


@media (min-width: 1200px) {
    .check-internet {
        width:18%;
        margin-right: 40%;
    }
}