/* GOOGLE PREFERRED SOURCE */

.gps-wrap{
    width:100%;
    margin:20px 0;
}

.gps-card{
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:18px;
    padding:18px;
    text-align:center;
}

.gps-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    min-width:460px;
    max-width:100%;

    background:#3b6edc;
    color:#fff;
    text-decoration:none;

    padding:14px 24px;
    border-radius:12px;

    position:relative;
    transition:background-color .3s ease;
}

.gps-btn:hover{
    background:#2f5fc9;
    color:#fff !important;
}

.gps-google-icon{
    width:22px;
    height:22px;
    flex:0 0 22px;
}

.gps-text{
    display:inline-block !important;
    color:#fff !important;
    font-size:16px !important;
    font-weight:600 !important;
    line-height:1.4 !important;

    white-space:normal !important;
    visibility:visible !important;
    opacity:1 !important;
}

.gps-pulse{
    position:absolute;
    top:-4px;
    right:-4px;
    width:12px;
    height:12px;
    border-radius:50%;
    background:#34a853;
}

.gps-pulse:after{
    content:'';
    position:absolute;
    inset:-4px;
    border-radius:50%;
    background:rgba(52,168,83,.3);
    animation:gps-pulse 1.8s infinite;
}

@keyframes gps-pulse{
    from{
        transform:scale(1);
        opacity:.8;
    }
    to{
        transform:scale(2.5);
        opacity:0;
    }
}

@media (max-width:768px){

    .gps-btn{
        min-width:100%;
        width:100%;
        padding:16px;
    }

    .gps-text{
        font-size:15px !important;
    }
}