/*==========| ==> Custom border Animaion CSS Sytyle Here <== |==========*/
/*==========| ==> Custom border Animaion CSS Sytyle Here <== |==========*/
.border-container {
    width: 100px;
    height: 5px;
    background-color: #d7ac5d;
    position: relative;
    border-radius: 5px;
}

.circle {
    width: 10px;
    height: 10px;
    background-color: #fcb229;
    border-radius: 50%;
    position: absolute;
    top: -3px; /* Adjust to place the circle on top of the border */
    left: 0;
    animation: move 3s infinite alternate;
}

@keyframes move {
    from {
        left: 0;
    }
    to {
        left: 90px;
    }
}




.address-icon{
    display: inline-block;
    position: relative;
    height: 70px;
    width: 70px;
    line-height: 70px;
    border-radius: 100%;
    text-align: center;
    background: #ffffff;
}
.address-icon{
    color: #007bff;
}
.address-icon:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
    background: #fcb229;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}
