.location_buttons {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-height: 200px;
    overflow-y: auto;
    padding-right: 5px;
}

.location_btn {
    background-color: #469bb2;
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.location_btn:hover {
    background-color: #000000;
}
div.fixedr {
     position: fixed;
    bottom: 60px;
    margin-left: 10px;
    border: 2px solid #33c738;
    border-radius: 25px;
    height: 50px;
    width: 50px;
    z-index: 999;
    background-color:#00b116;
    cursor: pointer;
    font-size: 20px;
    display: inline-block;
    vertical-align: middle;
}
.phone-float {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border: 2px solid #469bb2;
    border-radius: 25px 0 0 25px;
    height: 50px;
    width: 50px;
    z-index: 999;
    background-color:rgb(255, 255, 255);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-float img {
    height: 30px;
}

.pblink {
    animation: blink-animation 1s steps(2, start) infinite;
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

.blink {
    animation: blinkEffect 1s infinite;
}

@keyframes blinkEffect {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}