html{
	height:100%
}
body {
	height: 100%;
    padding: 0;
    margin: 0;
}

h1,h2,h3{
	font-family: serif, sans-serif;
}

th{
	text-align: center;
}

td{
	text-align: center;
	padding: .2rem 1.5rem;
}
.table td, .table th{
	padding: .4rem;
}

.table-control{
	margin-bottom: 0rem;
	font-size: 1rem;
}

.table-control td{
	padding: 1rem;
}

div .bg-secondary{
	display: inline-flex;
    padding: .2rem 1.5rem;
    white-space: nowrap;

}

.table .btn-secondary{
	padding: .2rem 1.5rem;
    padding-right: 1.2rem;
}



input{
	background-color: #3498DB;
	color: white;
	padding: 1rem;
	font-size: 16px;
	border: none;
	cursor: pointer;
	font-weight: bold;
	/*display: block;*/
	margin-left: auto;
	margin-right: auto;
}


.btn-group-vertical{
	margin-top: -5rem;
 	margin-left: -1rem;
}
#map {
	position: relative;
	height: 100%;
	width: 100%;
	z-index: 0;  
}

.logo-container{
	margin-top: 10px;
	display: flex;
	align-items: flex-end;
}

.tile-right {
	text-align: left;
	height: 100%;
	width: 0;
	position: fixed;
	z-index : 1;
	top: 0;
	right: 0;
	padding-top: 0%;
	transition: 0.5s;
	border-style: inset;
	border-top: none;
	border-bottom: none;
	overflow: auto;
	/*display: none;*/
	background: none repeat scroll 0% 0% rgba(255, 255, 255, 0.7);
}

.tile-right-content {
	padding-top: 0;
	display: none;
}

.tile-text {
	//color: #20638f;
	text-align: left;
}
#show-hide-container{
	transition: 0.5s;
	right: 40%;
}
#show-hide {
	color: black;
	background-color: white;
	border-style: solid;
	padding: 5px 10px;
	border-color: gray;
}

#show-hide:hover {
	background-color: #F4EDED;
	cursor: pointer;
}

.dropdown-menu{
	min-width: fit-content;
}


#add-json{
	display: none !important;
}

label[for="add-json"]:hover {
	background-color: #2980B9;
}

label[for="add-json"]hover::before {
	background-color: #2980B9;
}

.start-json{
	max-height: 50px;
}

.group-a{
	display: flex;
	justify-content: center;
	align-items: baseline;
	margin-top: 5px;
}

.button-item{
	margin: 0 2px;
}

.bg-secondary{
	color: #fff;
    text-align: center;
    vertical-align: middle;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
}

.dot {
    height: 1.5rem;
    width: 1.5rem;
    border-radius: 50%;
    display: inline-block;
    border-color: black;
    border-style: inset;
    border-width: medium;
}


.leaflet-control-container .leaflet-routing-container-hide{
	display:none;
}

/* Cambiar segun celular
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}
*/

/*Loader*/

.loader-container{
	position: relative;
}
.loader-container h2{
	text-align: center;
	margin-bottom: 0;
}

.lds-ellipsis {
	display: inline-block;
	position: relative;
	width: 64px;
	height: 40px;
	margin-right: auto;
	margin-left: auto;
}
.lds-ellipsis div {
  position: absolute;
  top: 10px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #20638f;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 6px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 6px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 26px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 45px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(19px, 0);
  }
}