body {
    width: 100%;
    height: 100%;
    background: #ccc;
    font-family: Roboto;
}
.page-wrap {
    padding: 20px;
    padding-top: 85px;
    padding-bottom: 130px;
}
.page-wrap.thin {
    padding: 10px;
}
.page-wrap .card:first-of-type {
    margin-top: 0 !important;
}
p {
    line-height: 1.5;
    padding: 0 0 10px;
}
.buttons {
    display: flex;
    flex-wrap: wrap;
}
.buttons .button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: orange;
    width: calc(50% - 30px);
    text-align: center;
    margin: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}
.buttons .button select {
    background: none;
    border: none;
    color: #fff;
}
.buttons .button select option {
    background: none;
    border: none;
    color: #000;
}
.card {
    padding: 10px;
    background: white;
    margin-top: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.card .card-header {
    padding: 5px 0;
    border-bottom: 1px solid #ccc;
}
.location-list input {
    width: calc(100% - 10px);
    padding: 5px;
}
.location-list .list {
    overflow-y: scroll;
    max-height: 300px;
}
.list {
    display: block;
}
.list .location {
    display: flex;
    background: #ededed;
    margin-top: 10px;
    color: #000;
    align-items: center;
}
.list .location a {
    text-decoration: none;
    color: #000;
}
.list .location .name {
    flex: 1;
    padding: 20px;
}
.list .location i {
    padding: 20px;
}

/* Text Direcitons Page Styles */
.list .direction {
    display: flex;
    flex-direction: column;
    background: #ededed;
    margin-top: 10px;
    text-decoration: none;
    color: #000;
    padding: 10px;
    line-height: 20px;
}

/* End Text Direction Page Styles

/* Settings Page Styles */
.page-wrap.settings .card {
    margin-top: 10px;
}
.page-wrap.settings .card.setting {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.page-wrap.settings .card .toggles {
    padding: 10px 0;
}
.page-wrap.settings .card .toggles.radio {
    display: flex;
    flex-wrap: wrap;
}
.page-wrap.settings .card .toggles.radio label {
    flex: 50%;
}
.page-wrap.settings .card.setting .switch-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}
.page-wrap.settings .card.setting i {
    padding: 0 15px 0 5px;
    font-size: 24px;
}
/* End Settings Page Styles */

/* Recon Page Styles */
.page-wrap.recon {
}
.navigation-map {
    padding: 10px 20px 10px 10px;
    background: white;
    margin-top: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.navigation-image {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px;
    width: 100%;
    height: auto;
}
.recon-map {
    /* background: url(placeholder-map.jpeg) no-repeat center / cover; */
    /* height: calc(100% - 181px); */
    height: calc(100vh - 201px);
}
.recon-map .recon-image {
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    height: 100%;
}
/* End Recon Page Styles */

/* Footer (App Tab Bar) */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    background: #fff;
    box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.12), 0 -1px 2px rgba(0, 0, 0, 0.24);
}
.footer .menu-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    flex: 20%;
    text-decoration: none;
    color: #000;
}
.footer .menu-item.selected {
    background: orange;
    color: white;
}
.footer .menu-item i {
    font-size: 30px;
}
.footer .menu-item span {
    font-size: 12px;
    margin-top: 5px;
}
/* End Footer (App Tab Bar) */

/* ~~~~ Mobile style toggle switch ~~~~ */
/* The box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}
/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
input:checked + .slider {
    background-color: #2196f3;
}
input:focus + .slider {
    box-shadow: 0 0 1px #2196f3;
}
input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}
/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}
.slider.round:before {
    border-radius: 50%;
}
/* ~~~~ End Mobile style toggle switch ~~~~ */

/* ~~~~ Mobile Style Checkbox ~~~~ */
/* Styling Checkbox Starts */
.checkbox-label {
    display: block;
    position: relative;
    cursor: pointer;
    font-size: 16px;
    line-height: 28px;
    height: 24px;
    clear: both;
    margin: 10px 0;
}
.checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.checkbox-label .checkbox-custom {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 22px;
    width: 22px;
    background-color: transparent;
    border-radius: 5px;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    border: 2px solid #ccc;
}
.checkbox-label .checkbox-custom-title {
    margin-left: 40px;
}
.checkbox-label input:checked ~ .checkbox-custom {
    background-color: #ffffff;
    border-radius: 5px;
    -webkit-transform: rotate(0deg) scale(1);
    -ms-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
    opacity: 1;
    border: 2px solid #ccc;
}
.checkbox-label .checkbox-custom::after {
    position: absolute;
    content: "";
    left: 12px;
    top: 12px;
    height: 0px;
    width: 0px;
    border-radius: 5px;
    border: solid #009bff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(0deg) scale(0);
    -ms-transform: rotate(0deg) scale(0);
    transform: rotate(0deg) scale(0);
    opacity: 1;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}
.checkbox-label input:checked ~ .checkbox-custom::after {
    -webkit-transform: rotate(45deg) scale(1);
    -ms-transform: rotate(45deg) scale(1);
    transform: rotate(45deg) scale(1);
    opacity: 1;
    left: 8px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid #009bff;
    border-width: 0 2px 2px 0;
    background-color: transparent;
    border-radius: 0;
}

/* For Ripple Effect */
.checkbox-label .checkbox-custom::before {
    position: absolute;
    content: "";
    left: 10px;
    top: 10px;
    width: 0px;
    height: 0px;
    border-radius: 5px;
    border: 2px solid #ccc;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}
.checkbox-label input:checked ~ .checkbox-custom::before {
    left: -3px;
    top: -3px;
    width: 24px;
    height: 24px;
    border-radius: 5px;
    -webkit-transform: scale(3);
    -ms-transform: scale(3);
    transform: scale(3);
    opacity: 0;
    z-index: 999;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}
/* Style for Circular Checkbox */
.checkbox-label .checkbox-custom.circular {
    border-radius: 50%;
    border: 2px solid #ccc;
}
.checkbox-label input:checked ~ .checkbox-custom.circular {
    background-color: #ffffff;
    border-radius: 50%;
    border: 2px solid #ccc;
}
.checkbox-label input:checked ~ .checkbox-custom.circular::after {
    border: solid #0067ff;
    border-width: 0 2px 2px 0;
}
.checkbox-label .checkbox-custom.circular::after {
    border-radius: 50%;
}
.checkbox-label .checkbox-custom.circular::before {
    border-radius: 50%;
    border: 2px solid #ccc;
}
.checkbox-label input:checked ~ .checkbox-custom.circular::before {
    border-radius: 50%;
}
/* ~~~~ End Mobile Style Checkbox ~~~~ */

/* Material Toolbar */
.paper-shadow {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
}
.paper-toolbar {
    color: #fff;
    background: orange;
}
.app-bar,
.navdrawer-container,
main {
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}
.promote-layer {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.app-bar-container {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 64px;
    position: relative;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin: 0 auto;
}
.app-bar {
    display: block;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 40px;
}
.app-bar .logo {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 1.3em;
    margin: 0 16px;
    padding: 0;
    color: #fefefe;
    float: none;
    max-width: none;
    font-weight: 400;
    line-height: 64px;
}
.app-bar button {
    width: 64px;
    height: 64px;
    background-image: none;
    background-color: transparent;
    border: none;
    padding: 0;
    -webkit-transition: background-color 0.2s ease-out;
    transition: background-color 0.2s ease-out;
    -webkit-tap-highlight-color: transparent;
}
button.menu i {
    font-size: 24px;
    color: #fff;
}
/* End Material App Bar */
