//
// Gmaps Plugin
//




// Mixins
@mixin kt-gmaps-base() {
    // Spinner markup
    .kt-gmaps {
        /* important!  bootstrap sets max-width on img to 100% which conflicts with google map canvas*/
        img {
            max-width: none; 
        }

        &.kt-gmaps--static{
            > div {
                background-repeat: no-repeat ;
                background-position: 50% 50% ;
                display:block;
            }
        }
    }
}

// Build
@include kt-gmaps-base();