/**
 * XC Contact Mobile – Frontend Styles
 *
 * @package XC_Contact_Mobile
 * @since   1.0.0
 */

/* =============================================
   Outer wrapper – hidden on desktop
   ============================================= */
#xc-contact-footer-outer {
    position: fixed;
    width: 100%;
    z-index: 100 !important;
    bottom: 0;
    display: none;
}

/* =============================================
   Inner bar
   ============================================= */
#xc-contact-footer {
    border-bottom: 15px solid #fff;
    display: flex;
    max-width: 1200px;
    margin: auto;
    position: relative;
    padding-top: 5px;
}

/* SVG background (image injected via inline style) */
#xc-contact-footer:after {
    content: "";
    position: absolute;
    pointer-events: none;
    background-color: unset;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100%;
    box-shadow: unset;
    height: 65px;
    width: 100%;
    margin-left: 0;
    margin-bottom: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
}

/* =============================================
   Each menu button
   ============================================= */
#xc-contact-footer>a {
    position: relative;
    display: block;
    width: 25%;
    text-align: center;
    padding: 11px 0 0 0;
    color: #313131;
}

#xc-contact-footer span {
    display: block;
}

#xc-contact-footer>a img {
    height: 30px;
    width: 30px;
}

/* Label */
.xc-contact-footer-btn-label {
    padding: 0 2px;
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: bold;
}

/* =============================================
   Center button (raised circle)
   ============================================= */
#xc-contact-footer-btn-center .xc-contact-footer-btn-label {
    position: absolute;
    left: 50%;
    bottom: 2px;
    transform: translateX(-50%);
}

#xc-contact-footer-btn-center .xc-contact-footer-btn-label>span {
    padding: 0 8px;
    background-image: linear-gradient(92.83deg, #0E68C8 0, #02A4A5 100%);
    border-radius: 30px;
    color: #fff;
    display: inline-block;
}

.xc-contact-footer-btn-center-icon {
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    background-image: linear-gradient(92.83deg, #f90000 0, #950099 100%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    top: -28px;
    text-align: center;
    box-shadow: rgb(0 0 0 / 15%) 0 -3px 10px 0;
    border: 2px solid #fff;
}

.xc-contact-footer-btn-center-icon img {
    max-width: 20px;
    height: auto !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* =============================================
   Pulse animation
   ============================================= */
.phone-vr-circle-fill {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    box-shadow: 0 0 0 0 #0E68C8;
    border: 2px solid transparent;
    transition: all .5s;
    animation: xccm-zoom 1.3s infinite;
}

@keyframes xccm-zoom {
    0% {}

    70% {
        box-shadow: 0 0 0 15px transparent;
    }

    100% {
        box-shadow: 0 0 0 0 transparent;
    }
}

/* =============================================
   Responsive: show on mobile only
   ============================================= */
@media only screen and (max-width: 850px) {
    #xc-contact-footer-outer {
        display: block;
    }
}