/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : May 30, 2017, 10:17:52 AM
    Author     : Stam4
*/

@import 'leaflet-custom.css';


a {
    cursor: pointer;
}

html, body, #root{
    height: 100%;
    font-family: "Segoe UI";
}

main {
    height: calc(100% - 86px);
}

.height-100 {
    height: 100%;
}

.flex-content{
    height: 100%;
}

.overflow{
    overflow: auto;
}
.overflow-y{
    overflow-y: overlay;
}

.resetButton{
    position:fixed;
    z-index:2;
    margin-top: 0px;
    right:30px;
    min-width: 150px;
    max-width: 150px;
    width: 150px;
}

.detailSelectLabel{
    margin-left: 10px;
    margin-right: 5px;
}

img.d-inline-block.align-top{
    display: inline-block;
}

.node.pointer, .label.pointer {
    cursor: pointer;
}

.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: -0.125em;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: .75s linear infinite spinner-border;
    animation: .75s linear infinite spinner-border;
}

@-webkit-keyframes spinner-border {
    to {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  
  @keyframes spinner-border {
    to {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .spinner-border,
    .spinner-grow {
      -webkit-animation-duration: 1.5s;
      animation-duration: 1.5s;
    }
  }  