﻿/* Location Start */
.fy-map-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin: 2rem 2rem;
    justify-content: center;
}

.fy-map-btn {
    display: block;
    width: 100%;
    max-width: 280px;
    padding: 0;
    background: none;
    border: none;
}

    .fy-map-btn img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform .25s ease;
        padding: 10px;
    }

    .fy-map-btn:hover img {
        transform: scale(1.03);
    }
/* Location End */

@media (max-width: 768px) {
    .fy-map-actions {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 540px) {
    /* Location Start */
    .fy-map-actions {
        display: flex;
        flex-direction: column;
    }

    /* Location End */
}

@media (max-width: 430px) {
    .fy-map-btn {
        max-width: 240px;
    }
}
