#mapWrap, .credit {
    width:100%;
    display: block;
    font-family: sans-serif;
    color:#555;
    max-width:1200px;
    margin-left: auto;
    margin-right: auto;
}

#mapWrap h2 {
    color:#111;
    line-height: 1.3em;
}

#map {
    width:100%;
    height:100%;
}

#mapBtn {
    position: absolute;
    margin: auto;
    display: block;
    width: 181px;
    border-radius: 3px;
    left: 0;
    right: 0;
    text-align: center;
    top: 245px;
    padding: 15px 30px;
    z-index:10;
    background-color: #fff;
    border:1px solid #d3d3d3;
    border-radius:3px;
    text-align: center;
    transition: all 0.2s linear;
    -webkit-box-shadow: 3px 3px 13px 1px rgba(211,211,211,0.1);
    -moz-box-shadow: 3px 3px 13px 1px rgba(211,211,211,0.1);
    box-shadow: 3px 3px 13px 1px rgba(211,211,211,0.1);
}

#map .mapboxgl-ctrl-top-right{
  position:absolute;
  display: none;
}

.credit {
    line-height: 6px;
    font-size: 12px;
    margin-top:20px;
    color:#888;
}

.credit a {
    text-decoration:none;
    color: coral;
}

#clipLabels {
    width:80%;
    padding:15px;
    margin-top: 25px;
    border:1px solid #d3d3d3;
    border-radius:3px;
    text-align: center;
    transition: all 0.2s linear;
    pointer-events: none;
    opacity:0;
    -webkit-box-shadow: 3px 3px 13px 1px rgba(211,211,211,0.1);
    -moz-box-shadow: 3px 3px 13px 1px rgba(211,211,211,0.1);
    box-shadow: 3px 3px 13px 1px rgba(211,211,211,0.1);
}

#clipLabels:hover, #mapBtn:hover {
    border:1px solid coral;
    cursor: pointer;
}

.column {
    float: left;
    height:600px;
    line-height: 1.3em;
}

.left {
    width: 23%;
    padding: 0 1%;
}

.right {
    width: 75%;
    position: relative;
}


@media (max-width:1000px) {
    .column {
        float:none;
        display:block;
    }

    .left {
        width: 100%;
        text-align: left;
        display: block;
        height: 100%;
        padding-bottom: 20px;
    }

    .right {
        width:100%;
        height:400px;
        /* margin:auto; */
    }

    #clipLabels {
        margin-left: auto;
        margin-right: auto;
    }

    #mapBtn {
        top: 50px;
    }

}