.no-js .toggleButton {
    display: none !important;
}

.toggleButton {
    display: inline-block;
    width: 3em;
    padding: 0 !important;
    line-height: 3em !important;
    height: 3em !important;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    -webkit-transition: all 0.5s ease;
    transform: translateZ(0);
    transition: all 0.5s ease;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    margin-top: 0;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid #ccc;
    cursor: pointer;
    display: none;
    font-family: arial, sans-serif;
    line-height: 25px;
    padding: 0 10px;
    position: relative;
    text-align: center;
    top: 1em;
    right: -0.5em;
    z-index: 99;
}

.toggleButton:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.toggleButton:active {
    transform: scale(1.1, 1.1);
}

.toggleButton:focus {
    outline: 0;
    border: none;
    color: rgba(0, 0, 0, 0);
}

.toggleButton>span {
    display: block;
    position: relative;
    width: 2em;
    height: 2em;
    transition: transform 0.5s ease;
    overflow: hidden;
    margin: 0.5em;
}

.toggleButton>span>span {
    display: block;
    background-color: #9e9e9e;
    position: absolute;
    top: 0;
    left: 0;
    width: 2em;
    height: 2em;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.toggleButton>span>span {
    background-color: #cc0066;
}

.toggleButton.plus>span>span {
    background-color: #980c58;
}

.toggleButton.close>span {
    transform: rotate(45deg);
}

.toggleButton.close>span>span,
.toggleButton.plus>span>span {
    transform: scale(1, 0.2);
}

.toggleButton.close>span>span.s3,
.toggleButton.plus>span>span.s3 {
    transform: scale(0.2, 1);
}

.toggleContent {
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
}

.toggleButton.plus+.toggleContent {
    opacity: 0;
    visibility: hidden;
}

.toggleButton.close+.toggleContent {
    opacity: 1;
    visibility: visible;
}

@media screen and (min-width: 57em) {
    .home .toggleButton {
        display: inline-block;
    }
    .home .layer {
        padding: 2em 3em !important;
        background-color: rgba(255, 255, 255, 0.8);
        position: relative;
        z-index: 1;
        border: solid 1px #212739;
    }
    .home .wrap_map {
        bottom: 0;
        height: auto !important;
        left: 0;
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        position: absolute;
        right: 0;
        top: 0;
    }
    .home .embed-wrapper {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        bottom: 0;
        height: auto !important;
        padding-bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
    }
    .home #map_canvas {
        bottom: 0;
        height: auto !important;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
    }
}