body {
    background-color: #eee;
    font-size: .875rem;
}
  
#map {
    height: 325px;
    width: 100%;
    z-index: 0;
}

.footer {
    height: 20px;
}

.legendCircle {
    width: 5px;
    height: 5px;
    -webkit-border-radius: 2.5px;
    -moz-border-radius: 2.5px;
    border-radius: 2.5px;
    background: red;
}

.leaflet-legend-title {
    padding-bottom: 0;
}

.leaflet-legend-item, .leaflet-legend-column {
    margin: 0;
}

.bigButton {
    border-radius: 30px;
    width: 100%;
    height: 80px;
    border-style: dashed;
    background-color: #648FFF;
}

#removeRecyclerButton {
    color: white;
    background-color: #96182f;
}

.component-details-icon {
    cursor: pointer;
    color: #648FFF;
}

#calculateCostButton {
    background-color: #54E854;
    border-style: solid;
}

.stepCard {
    background-color: #fff;
    border: 2px solid #54E854;
    border-radius: 15px;
}

.removeRow {
    text-align: center;
    margin: auto;
}

.removeX {
    cursor: pointer;
}

.editOrigSelection, .editDestSelection {
    text-align: center;
    cursor: pointer;
    border: 1px solid rgba(100, 143, 255, 1);
    background-color: rgba(100, 143, 255, 0.2);
    border-radius: 2px;
}

.empty, .emptyDetails {
    border: 2px dashed #648FFF;
}

.results-dropdown {
    color: #000000;
    background-color: #eee;
    border-color: #efefef;
    padding: 0;
}
.results-no-dropdown {
    color: #000000;
    background-color: #eee;
    border-color: #efefef;
    pointer-events: none;
    padding: 0;
}

.pointer {
    width: 80%;
    margin: 10px;
    height: 40px;
    position: relative;
    background: black;
}
.pointer:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 20px solid #eee;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
}
.pointer:before {
    content: "";
    position: absolute;
    right: -20px;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 20px solid black;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
}
/*
* Sidebar
*/
  
.sidebar {
    position: fixed;
    top: 0;
    /* rtl:raw:
    right: 0;
    */
    bottom: 0;
    /* rtl:remove */
    left: 0;
    z-index: 100; /* Behind the navbar */
    padding: 48px 10px 0; /* Height of navbar */
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}
  
@media (max-width: 767.98px) {
    .sidebar {
        top: 5rem;
    }
}
  
.sidebar-sticky {
    position: relative;
    top: 0;
    height: calc(100vh - 48px);
    padding-top: .5rem;
    overflow-x: hidden;
    overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
}
  
.sidebar .nav-link {
    font-weight: 500;
    color: #333;
}
  
.sidebar .nav-link .feather {
    margin-right: 4px;
    color: #727272;
}
  
.sidebar .nav-link.active {
    color: #2470dc;
}
  
.sidebar .nav-link:hover .feather,
.sidebar .nav-link.active .feather {
    color: inherit;
}
  
.sidebar-heading {
    font-size: .75rem;
    text-transform: uppercase;
}
  
/*
* Navbar
*/
  
.navbar-brand {
    padding-top: .75rem;
    padding-bottom: .75rem;
    font-size: 1rem;
    background-color: rgba(0, 0, 0, .25);
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25);
}
  
.navbar .navbar-toggler {
    top: .25rem;
    right: 1rem;
}
  
.navbar .form-control {
    padding: .75rem 1rem;
    border-width: 0;
    border-radius: 0;
}
  
.form-control-dark {
    color: #fff;
    background-color: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .1);
}
  
.form-control-dark:focus {
    border-color: transparent;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
}
  
.leaflet-grab {cursor: auto;}