html{
  min-height: 100%;
}

body  {
  /*background-image: url("./images/TreeLinedPath.jpg");*/
  /* background-image: url("./images/punch-clock.gif"); */
  /*background-position: center center;*/
  /* background-position: center; */
  /*background-repeat: no-repeat;*/
  /* background-repeat: repeat-y; */
  /*background-attachment: fixed*/
  /* background-size: cover; */
  /* background-size: contain; */
  /* background-color: #464646; */
  
  background: #ffffff;
  /* background: -webkit-linear-gradient(#ffffff, #ffffff);
  background:    -moz-linear-gradient(#ffffff, #ffffff);
  background:         linear-gradient(#ffffff, #ffffff); */
 
 
  /*  background-image: linear-gradient(#red, yellow); */
 /* height: 100% !important;
  min-height: 100% !important;
  height: max(100%, vh);
  margin: 0;*/
  background-repeat: no-repeat;
  /*background-attachment: fixed;*/
  font-size:11pt;
}

a {
  color:  rgba(88,124,160);
  font-weight: bolder;
  text-decoration: none;
}
.box
{
  background: rgba(#ffffff);

  width: 90%;
  border-radius: 5px;
  border-color: black;
  border-width: 1px;
  margin: auto;
  color: black;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11pt;
  
}

.box:hover{
  background: #eeeeee;
}

.box2{
  background: rgba(#ffffff);

  width: 90%;
  border-radius: 25px;
  border-color: black;
  border-width: 1px;
  margin: auto;
  color: black;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11pt;
}

@media only screen and (max-width: 400px) {
  .box{
    font-size: 9pt;
  }
  .toast{
    width: 80%;
  }
}

@media print{
  button{
    display: none;
  }
}

.toast {
  position: absolute;
  top: 25px;
  left: 50%;
  border-radius: 12px;
  background: #9f9;
  padding: 20px 35px 20px 25px;
  box-shadow: 0 6px 20px -5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transform: translate(-50%,-500px);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
  font-family: Arial, Helvetica, sans-serif;
}

.toast.active {
  transform: translate(-50%,0%);
}

.toast .toast-content {
  display: flex;
  align-items: center;
}

.toast-content .check {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  min-width: 35px;
  background-color: #4070f4;
  color: #fff;
  font-size: 20px;
  border-radius: 50%;
}

.toast-content .message {
  display: flex;
  flex-direction: column;
  margin: 0 20px;
}

.message .text {
  font-size: 16px;
  font-weight: 400;
  color: #666666;
}

.message .text.text-1 {
  font-weight: 600;
  color: #333;
}

.toast .close {
  position: absolute;
  top: 10px;
  right: 15px;
  padding: 5px;
  cursor: pointer;
  opacity: 0.7;
}

.toast .close:hover {
  opacity: 1;
}

.toast .progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;

}

.toast .progress:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: #4070f4;
}

.progress.active:before {
  animation: progress 2s linear forwards;
}

@keyframes progress {
  100% {
    right: 100%;
  }
}

/* The Modal (background) */
.PopUpModal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  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/Box */
.PopUpContent {
  background-color: #fefefe;
  margin: 3% auto; /* 3% from the top and centered */
  padding: 30px 20px;
  border: 1px solid #888;
  width: 85%; /* Could be more or less, depending on screen size */
  font-family: sans-serif;
  max-width: 650px;
  position: relative;
}
.PopUpContent h2{
	margin-top: 0;
}

/* The Close Button */
.close {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  right: 10px;
  top: 0px;
  position: absolute;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
} 
 
#mapdiv{
  margin: auto;
  border: 1px black solid;
  width: 100%; 
  height: 350px;
}

.zoom{
	transition: transform .2s;
}

.opaque
{
  background: rgba(255, 0, 0, 1);
}

h1{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16pt;
  text-align: center;
}

label {
    display: block;
    font-family: .Arial, Helvetica, sans-serif;
}

input{
  opacity: 100%;
  border-radius: 10px;
  width: 92%;
  padding-left: 10px;
  padding-right: 10px;
  outline: none;
  font-size: 18pt;
}

button{
  border-radius: 5px;
  opacity: 100%;
  background: rgba(88,124,160);
  color: white;
  height: 40px;
  float: center;
  padding-left: 5px;
  padding-right: 5px;
  outline: none;
}
