.zoom {
  position: fixed;
  bottom: 10px;
  right: 15px;
  /* height: 70px; */
  z-index: 120;
}

.zoom-fab {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: #002355;
  vertical-align: middle;
  text-decoration: none;
  text-align: center;
  transition: 0.2s ease-out;
  /* box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2); */
  cursor: pointer;
  color: #fff;
}

.zoom-fab:hover {
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -1px rgba(0, 0, 0, 0.2);
}

.zoom-btn-large {
  width: 60px;
  height: 60px;
  /* line-height: 60px; */
  font-size: 30px;
  font-weight: 200;
  color: #fff !important;
  border: 1px solid #fff;
}
.zoom-btn-large.opened{
    transform: rotate(135deg);
}

.zoom-btn-green { background-color: #4CAF50; }
.zoom-btn-grey { background-color: #777; color: #fff }
.zoom-btn-light { background-color: #e2e2e2; color: #222 }
.zoom-btn-blue { background-color: #1E90FF; color: #fff }

.zoom-fab + span{
    position: absolute;
    right: 65px;
    color: #333;
    top: 15px;
    transition: opacity .4s;
    font-size: 16px;
    font-weight: 400;
}
.zoom-fab.scale-out + span{
    opacity: 0;
}
.zoom-fab.scale-transition span{ opacity: 1; transition-delay: .4s; }
.zoom-menu {
    position: absolute;
    display: none;
    right: 5px;
    left: auto;
    bottom: 80px;
    list-style: none;
    text-align: right;
    margin-bottom: 0;
}
.zoom-menu li {
  margin-bottom: 20px;
  position: relative;
}
.zoom-overlay{
    position: fixed;
    background-color: rgba(255,255,255,0.95);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 119;
}

.scale-transition { transition: transform 0.3s cubic-bezier(0.53, 0.01, 0.36, 1.63) !important; }
.scale-transition.scale-out {
  transform: scale(0);
  transition: transform 0.2s !important;
}

.scale-transition.scale-in { transform: scale(1); }
