/* =========================================================
   LOCATION ACTIONS
   ========================================================= */

.location-actions {
    display: flex;
    gap: 16px;
}

.location-actions > * {
    flex: 1 1 0;
}

/* Wrapper */
.rlg-location-action {
    width: 100%;
}

/* Button */
.rlg-location-action .wp-block-button__link {
    width: 100%;
    min-height: 48px;

    display: flex;
    align-items: center;
	justify-content: center;

    gap: 8px;
	
    line-height: 1.4em;
}

/* Icon */
.rlg-location-action__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 20px;
    height: 20px;

    flex: 0 0 20px;
	
    margin-left: -4px;
}

.rlg-location-action__icon svg {
    width: 20px;
    height: 20px;
    display: block;
}


/* =========================================================
   OUTLINE BUTTON
   ========================================================= */

.rlg-location-save-contact .wp-block-button__link {
    border: 2px solid var(--wp--preset--color--accent-1);
    color: var(--wp--preset--color--accent-1);
    background: transparent;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {
    .location-actions {
        flex-direction: column;
    }
}