body {
	text-align:center;
	padding:0;
	width:100%;
	/*overflow-x: hidden;*/
}

#dataTable tr td input{
	width:100%;
}

th {
	text-align: center;
}
#map {
    width: 100%;
    height: 100%;
}
svg {
    position: relative;
}
path {
    fill: yellow;
    stroke-width: 2px;
    stroke: red;
    stroke-opacity: 1;
}
.travelMarker {
    fill: yellow;
    opacity: 0.75;
}
.waypoints {
    fill: black;
    opacity: 0;
}
.drinks {
    stroke: black;
    fill: red;
}
.lineConnect {
    fill: none;
    stroke: black;
    opacity: 1;
}
.locnames {
    fill: black;
    text-shadow: 1px 1px 1px #FFF, 3px 3px 5px #000;
    font-weight: bold;
    font-size: 13px;
}

.viewinstructions{
    background: #f1f3f4;
    padding: 5px;
}
.list_container ul li{
    text-align: left;
    background: #f1f3f4;
    list-style-type: decimal;
    margin: 5px;
}
.section{
        margin-bottom: 20px;
    padding: 15px;
    border-bottom: 1px solid #25365426;
    width: 80%;
}


/* Custom Allow/Deny Checkbox CSS */
.al_de_switch {
    position: relative;
    display: inline-block;
    width: 76px;
    height: 32px;
    margin: 0;
    vertical-align: middle;
  }
  
  .al_de_switch input {
    display: none;
  }
  
.al_de_slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ca2222;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 6px;
  }
  
  .al_de_slider:before {
    position: absolute;
    content: "";
    height: 28px;
    width: 24px;
    top: 2px;
    left: 2px;
    right: 1px;
    bottom: 1px;
    background-color: white;
    transition: 0.4s;
    border-radius: 6px;
  }
  
  .al_de_switch > input:checked + .al_de_slider {
    background-color: #2ab934;
  }
  
  .al_de_switch > input:focus + .al_de_slider {
    box-shadow: 0 0 1px #2196f3;
  }
  
  .al_de_switch > input:checked + .al_de_slider:before {
    -webkit-transform: translateX(22px);
    -ms-transform: translateX(22px);
    transform: translateX(48px);
  }
  
  .al_de_slider:after {
    content: "DENY";
    color: white;
    display: block;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 46%;
    left: 64%;
    font-size: 12px;
    font-family: Verdana, sans-serif;
  }
  .al_de_switch > input:checked + .al_de_slider:after {
    content: "ALLOW";
    transform: translate(-100%, -54%);
  }