/* style.css */

/* code added form here */
.customer-support{
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 20px;
    right: 30px;
    width: 90px;
    background-color: #333333;
    color: #ffffff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
} 
.customer-support.active{
    display: block;
}
.customer-support .dot{
    position:absolute;
    bottom: 20px;
    right: 10px;
    z-index: 999;
}
#fixed-phone-number {
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: -50px; /* Start off screen */
    left: 0;
    width: 100%;
    color: #ffffff;
    align-items: center;
    justify-content: center;
    transition: bottom 0.9s ease-in-out; /* Transition effect for bottom position */
    z-index: 1000; /* Adjust z-index as needed */
}

#fixed-phone-number .active{
    bottom: 50px;
}
#fixed-phone-number .phone-number-container{
    /* width: 40%;
    background-color: lightgoldenrodyellow;
    margin: auto; */
    display: none;
    position: relative;
    width: 40%;
    transition: 0.9s ease-in-out;
    border-radius: 10px;
    background-color: #16305C;
    color:white;
    margin: auto;
    transition: 0.9s ease-in-out;
    z-index: 999;
}
#fixed-phone-number .phone-number-container.active{
    display: flex;
}
#fixed-phone-number .phone-number-container a{
    width: 96%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
#fixed-phone-number .phone-number-container .closeButton{
    position: absolute;
    cursor: pointer;
    top: 8px;
    right: 4px;
}

#fixed-phone-number .phone-number-container .mobile-number{
    padding-left: 10px;
    font-size:1.1rem;
    color:white;
    text-align: left;
}
#fixed-phone-number .phone-number-container .call-us img{
    width: 100px;
}
#fixed-phone-number .special{
    font-size: 1.2rem;
    color: #74A953;
    font-weight: 800;
}
.customer-support img{
    width: 60%;
    margin:auto;
    animation: pop-out 2s ease-out infinite;
    cursor: pointer;
}
@keyframes pop-out {
    0% {
        transform: scale(0.91) translateZ(0); /* Start smaller and closer to the screen */
        opacity: 1;
    }
    50% {
        transform: scale(1.1) translateZ(0); /* Scale up a bit */
        opacity: 1;
    }
    100% {
        transform: scale(0.91) translateZ(0); /* End at original size */
        opacity: 1;
    }
}

.fpn-show-on-mobile{
    display: none;
}
@media screen and (max-width: 769px){
    #fixed-phone-number .phone-number-container {
        width: 80%;
    }
    #fixed-phone-number .phone-number-container .mobile-number {
        font-size: 0.99rem;
    }
}
@media screen and (max-width: 441px){
    .customer-support img{
        display: none;
        background-color: #336cf5;
    }
    .fixed-phone-number{
        display: none;
    }
    #fixed-phone-number .phone-number-container a{
        display: none;
    }
    .fpn-show-on-mobile{
        display: flex;
    }
    .fpn-show-on-mobile .call-wrapper{
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .fpn-show-on-mobile .call-wrapper .icon{
        background-color: #336cf5;
        border-radius: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    /* .fpn-show-on-mobile .call-wrapper figure{
        width: 80%;
    } */
    .fpn-show-on-mobile.sliderOn{
        transition: all .5s ease-out;
        transform: translate(3%);
    }
    .fpn-show-on-mobile.sliderOff{
        transition: all .5s ease-out;
        transform: translate(100%);
        margin-left: -32px;
        width: 100%;
    }
    .fpn-show-on-mobile.sticky-banner{
        position: fixed;
        bottom: 8px;
        z-index: 99;
        width: 99%;
    }
    .fpn-show-on-mobile .call-wrapper .cta{
        background: #063160;
        border-radius: 8px 0 0 8px;
        width: 32px;
        display: flex;
        align-items: center;
    }
    .fpn-show-on-mobile .call-wrapper .link{
        background-color: #012144;
        text-decoration: none;
        border-left: 0;
        padding: 15px 10px 11px;
        display: flex;
        align-items: center;
    }
}