/* Ivan Milincic, lokomotivan@gmail.com.  http://www.kreativan.net */

/*
*   Clearfix
*/
.ivm-clearfix:before {
    content: "";
    display: table-cell;
}
.ivm-clearfix:after {
    content: "";
    display: table;
    clear: both;
}

/*
*   Map
*/

.ivm-gmap-location > div {
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;
    overflow:hidden;
}

/*
*   Navigation Right
*/

.ivm-gmap-location .ivm-gmap-left {
    float:left;
}
.ivm-gmap-location .ivm-gmap-nav-right {
    float:right;
}

/*
*   Navigation Left
*/
.ivm-gmap-location .ivm-gmap-right {
    float:right;
}
.ivm-gmap-location .ivm-gmap-nav-left {
    float:left;
}

/*
*   Navigation Items
*/
.ivm-gmap-location .ivm-map-nav-item {
    display:block;
}
.ivm-gmap-location .ivm-map-nav-item:hover {
    text-decoration:none;
    cursor:pointer;
}
.ivm-gmap-location .ivm-map-nav-item:last-child {
    /*border-bottom:none !important;*/
    position:relative;
    bottom:-1px;
}
.ivm-gmap-location .ivm-map-nav-item > div > h4 {
    margin:0;
    font-size:16px;
    line-height:20px;
}
.ivm-gmap-location .ivm-map-nav-item > div > p {
    margin:0;
    margin-top:5px;
    font-size:14px;
    line-height:18px;
}

/*
*   Info Window
*/
.ivm-info-window > p {
    font-size:13px;
    line-height:18px;
}


/*  Responsive
================================================================== */
.ivm-gmap-nav-button,
.ivm-gmap-nav-button-close {
    display:none;
}

.ivm-gmap-nav-button {
    position:absolute;
    top:10px;
    right:10px;
    height:60px;
    line-height:60px;
    width:60px;
    background: #fff;
    border:1px solid #ddd;
    border-radius:5px;
    text-align:center;
    box-shadow: 0px 1px 4px -1px rgba(0, 0, 0, 0.3);
    cursor:pointer;
}
.ivm-gmap-nav-button:hover {
    background: #f5f5f5;
}
.ivm-gmap-nav-button:focus,
.ivm-gmap-nav-button:active {
    box-shadow:none;;
}
.ivm-gmap-nav-button svg {
    position:absolute;
    display:block;
    top:50%;
    margin-top:-16px;
    left:50%;
    margin-left:-16px;
    width:32px;
    height:32px;
}

.ivm-nav-visible {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
