/* Contact css */

.location-tabs .nav-link {
    font-weight: 600;
    border-radius: 25px;
    margin-right: 10px;
    padding: 8px 18px;
    background: #f5f5f5;
    color: #333;
}

.location-tabs .nav-link.active {
    background: #46aadc;
    color: #fff;
}

.map-frame iframe {
    width: 100%;
    height: 500px;
    border: 0;
    border-radius: 10px;
}

.nav-item::after {
    content: none !important;
}

@media(max-width: 576px) {
    .map-frame iframe {
        height: 300px;
    }
}

button.loading {
    opacity: 0.7;
    pointer-events: none;
}

button.loading::after {
    content: "";
    width: 16px;
    height: 16px;
    margin-left: 8px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    display: inline-block;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}
