/* =========================================================
   OUISORTIES - BANDEAU INSTALLATION PWA
   MOBILE UNIQUEMENT
========================================================= */

.os-pwa-install-box {
    position: fixed !important;
    left: 8px !important;
    right: 90px !important;
    bottom: 12px !important;

    z-index: 2147483000 !important;

    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;

    box-sizing: border-box !important;

    font-family: Arial, Helvetica, sans-serif !important;
}


/* =========================================================
   CONTENU
========================================================= */

.os-pwa-install-content {
    position: relative;

    width: 100%;
    min-height: 58px;

    display: flex;
    flex-direction: row;
    align-items: center;

    gap: 8px;

    padding: 8px 10px;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #eeeeee;
    border-radius: 15px;

    box-shadow:
        0 7px 25px rgba(0, 0, 0, 0.20);
}


/* =========================================================
   LOGO
========================================================= */

.os-pwa-install-logo {
    display: block;

    flex: 0 0 40px;

    width: 40px;
    height: 40px;

    object-fit: cover;

    border-radius: 10px;
}


/* =========================================================
   TEXTE
========================================================= */

.os-pwa-install-text {
    flex: 1 1 auto;

    min-width: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 2px;
}

.os-pwa-install-text strong {
    display: block;

    margin: 0;
    padding: 0;

    color: #222222;

    font-size: 13px;
    font-weight: 700;

    line-height: 1.2;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.os-pwa-install-text span {
    display: block;

    margin: 0;
    padding: 0;

    color: #777777;

    font-size: 10px;
    line-height: 1.25;

    overflow: hidden;
}


/* =========================================================
   BOUTON INSTALLER
========================================================= */

.os-pwa-install-btn {
    flex: 0 0 auto;

    margin: 0;

    padding: 8px 11px;

    border: 0;
    border-radius: 20px;

    background: #BF0113;
    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;
    font-weight: 700;

    line-height: 1;

    white-space: nowrap;

    cursor: pointer;

    -webkit-appearance: none;
    appearance: none;
}

.os-pwa-install-btn:active {
    transform: scale(0.96);
}


/* =========================================================
   BOUTON FERMER
========================================================= */

.os-pwa-install-close {
    position: absolute !important;

    top: -9px !important;
    right: -8px !important;

    z-index: 20 !important;

    width: 24px !important;
    height: 24px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 50% !important;

    background: #ffffff !important;
    color: #666666 !important;

    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.20);

    font-family: Arial, Helvetica, sans-serif !important;

    font-size: 18px !important;
    font-weight: 400 !important;

    line-height: 24px !important;

    cursor: pointer !important;

    -webkit-appearance: none;
    appearance: none;
}


/* =========================================================
   PETITS T_L_PHONES
========================================================= */

@media (max-width: 380px) {

    .os-pwa-install-box {
        left: 6px !important;
        right: 82px !important;
        bottom: 10px !important;
    }

    .os-pwa-install-content {
        min-height: 54px;

        gap: 6px;

        padding: 7px 8px;
    }

    .os-pwa-install-logo {
        flex: 0 0 36px;

        width: 36px;
        height: 36px;
    }

    .os-pwa-install-text strong {
        font-size: 12px;
    }

.os-pwa-install-text span {
    display: block;
    font-size: 9px;
    line-height: 1.2;
}

    .os-pwa-install-btn {
        padding: 7px 9px;

        font-size: 10px;
    }
}


/* =========================================================
   PC / TABLETTE
   MASQU_ POUR LE MOMENT
========================================================= */

@media (min-width: 768px) {

    .os-pwa-install-box {
        display: none !important;
    }

}