.nav-bubble{
    position: fixed;
    right: 16px;
    bottom: 60px;
    z-index: 1500;
}
.nav-bubble__button{
    
    right: 0;
    bottom: 0;
    position: relative;
        
    width: 56px;
    height: 56px;
    border-radius: 50%;
    z-index: 1500;
    border: 1px solid #2b3e65;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5)!important;
    background: #F6F6F6;
    /*background: #00549F;*/
    color: #fff;
    overflow: hidden;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.nav-bubble__buttons{
    position: absolute;
    width: 40px;
    left: 40%;
    margin-left: -20px;
    bottom: 100%;
    margin-bottom: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    visibility: hidden;
    pointer-events: none;
}
.nav-bubble__buttons a{
    width: 50px;
    height: 50px;
    opacity: 0;
    color: #fff;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color: #2196f3;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-transform: translate3d(0, 8px, 0) scale(.3);
    transform: translate3d(0, 8px, 0) scale(.3);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5)!important;
}
.nav-bubble__buttons a:nth-child(2){
    -webkit-transition-delay: 50ms;
    transition-delay: 50ms;
}
.nav-bubble__buttons a:nth-child(3){
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
}
.nav-bubble__buttons a+a{
    margin-bottom: 16px;
}
.nav-bubble--opened .nav-bubble__buttons{
    visibility: visible;
    pointer-events: auto;
}
.nav-bubble--opened a{
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) scaleY(1);
    transform: translate3d(0, 0, 0) scaleY(1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .19), 0 6px 6px rgba(0, 0, 0, .23);
}
#datepicker{
    border:0px; 
    color:rgba(0,0,0,0);
    background-color: rgba(0,0,0,0); /* Black w/ opacity */
  }
  
  .modal {
      display: none; /* Hidden by default */
      position: fixed; /* Stay in place */
      z-index: 1; /* Sit on top */
      padding-top: 100px; /* Location of the box */
      left: 0;
      top: 0;
      width: 100%; /* Full width */
      height: 100%; /* Full height */
      overflow: auto; /* Enable scroll if needed */
      background-color: rgb(0,0,0); /* Fallback color */
      background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    }
    
    /* Modal Content */
    .modal-content { 
      margin: auto;
      padding: 20px; 
      width: 290px;
      height: 235px;
    }
    
    /* The Close Button */
    .close {
      color: #aaaaaa;
      float: right;
      font-size: 28px;
      font-weight: bold;
    }
    
    .close:hover,
    .close:focus {
      color: #000;
      text-decoration: none;
      cursor: pointer;
    }