#btnSideDrawer {
    background: none;
    border: none;
    color: #fff;
    display: inline-flex;
    font-size: 1.5rem;
}
#btnSideDrawer.active span {
    transform: scaleX(-1);
}
#featureAddress.Attraction {
    display: none;
}
#featureDiv {
    border: 1px solid #eeebe8;
    color: #000;
    height: 100%;
    max-width: 400px;
    padding: 1rem;
    position: absolute;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    z-index: 500;
}
#featureDiv.active {
    box-shadow: 5px 0 5px 0 rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#featureDiv #featureDiv__close {
    background: transparent;
    border: 0;
    font-size: 2.5rem;
    padding: 0;
    position: absolute;
    right: 0;
    top: 8px;
}
#featureDiv .esri-feature__title {
    color: #000;
    font-size: 18px;
    margin-bottom: 0;
}
#featureDiv .featureLocation {
    color: #939393;
}
#featureDiv .featureDiv__legend {
    bottom: 1rem;
    order: 2;
    position: absolute;
}
#featureDiv .esri-feature__size-container {
    order: 1;
}
.featureDiv__legend h5 {
    color: #939393;
    font-size: .875rem;
}
.featureDiv__legend ul {
    list-style: none;
    padding-left: 0;
}
.featureDiv__legend ul li {
    align-items: center;
    display: inline-flex;
    width: 100%;
}
#mapContainer .featureLocationWrapper {
    align-items: center;
    display: flex;
}

#mapContainer .mapHeader {
    align-items: center;
    background-color: #77787B;
    color: #fff;
    display: inline-flex;
    font-size: 1rem;
    margin-bottom: 3rem;
    padding: 0.625rem;
    width: 100%;
}
#mapWrapper {
    overflow: hidden;
    position: relative;
}
#moreInfoButtonWrapper {
    display: none;
    text-align: center;
}
#moreInfoButtonWrapper.Attraction {
    display: block;
}
#viewDiv {
    height: 450px;
    width: 100%;
}
@media (min-width: 769px) {
    #viewDiv {
        height: 600px;
    }
}

.esri-expand__container {
    z-index: 500;
}
.esri-feature__content-element {
    padding: 0;
}
.esri-expand {
    z-index: 450;
}
.featureDiv__legend  .material-icons {
    background-color: #194984;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    margin-right: 3px;
    overflow: hidden;
    padding: 2px;
    position: relative;
}
.attributes  .material-icons {
    background-color: #194984;
    border-radius: 5px;
    color: #fff;
    font-size: 2rem;
    margin-right: 3px;
    overflow: hidden;
    padding: 2px;
    position: relative;
}
.attributes .material-icons:hover {
    cursor: help;
}
.attributes .material-icons.not-available {
    background-color: #77787B;
}
.attributes .material-icons.not-available:after {
    color: red;
    content: '\e930';
    height: 2px;
    left: 6px;
    position: absolute;
    top: 14px;
    transform: rotate(45deg) scaleX(1.6);
}
#mapContainer .mapHeader {
    margin-bottom: 0;
}
#mapContainer .esri-feature__last-edited-info {
    display: none;
}
#featureDiv .esri-feature__text .btn {
    background-color: #353535;
    color: #fff;
    font-size: 0.875rem;
}
#featureDiv .esri-feature__text .btn:focus, 
#featureDiv .esri-feature__text .btn:hover {
    background-color: #535353;
    color: #fff;
}
.esri-legend__layer-caption {
    display: none;
}
.esri-legend__layer-body {
    margin: 0;
}

.slide-in {
    animation: slide-in 0.5s forwards;
    -webkit-animation: slide-in 0.5s forwards;
}
.slide-out {
    animation: slide-out 0.5s forwards;
    -webkit-animation: slide-out 0.5s forwards;
}
@keyframes slide-in {
    100% { transform: translateX(0%); }
}
@-webkit-keyframes slide-in {
    100% { -webkit-transform: translateX(0%); }
}
@keyframes slide-out {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}
@-webkit-keyframes slide-out {
    0% { -webkit-transform: translateX(0%); }
    100% { -webkit-transform: translateX(-100%); }
}