.mobile-footer {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 0px 5%;
    height: 60px;
    background: #fff;
    box-shadow: 0px -1px 4px 0px #00000040;
    border-radius: 10px 10px 0px 0px;
    z-index: 999;
    overflow: hidden;
}

.footer-icon.active {
    position: relative;
}

.footer-icon.active::after{
    content: "";
    position: absolute;
    width: 50px;
    height: 6px;
    border-radius: 0px 0px 5px 5px;
    top: -13px;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--main-clr);
    z-index: -1;
}
.o-footer-icon.active::after{
    content: "";
    position: absolute;
    width: 60px;
    height: 6px;
    border-radius: 0px 0px 5px 5px;
    top: 2px;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--main-clr);
    z-index: -1;
}

.footer-icon img {
    width: 25px;
    height: 25px;
}
.footer-icon {
    cursor: pointer;
}

.offer-footer {
    width: 50px;
    height: 50px;
    border: 1px solid var(--main-clr);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.offer-footer p {
    
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    bottom: 50%; 
    font-size: 0; 
    transition: opacity 0.5s ease, transform 0.5s ease, font-size 0.5s ease;
}
.offer-footer p span{
   /* color: var(--main-clr);
   font-size: 14px;
   font-weight: 900; */
}

.offer-footer img {
    width: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    z-index: 10;
    top: 100%;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.show-text{
    opacity: 1;
    font-size: 8px!important; 
    transform: translateY(0); 
    /* color: black; */
}
.show-text span{
    color: var(--main-clr);
    font-size: 14px;
    font-weight: 900;
}

.show-image {
    top: 50%!important;
    opacity: 1!important;
    transform: translate(-50% ,-50%)!important; 
}