/*Buttons*/

blm-button {
position: relative;
display: inline-block;
height: 35px;
margin: 0 5px;
padding: 0;
border: 0;
overflow: hidden;
outline: 0;
cursor: pointer;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: none;
-ms-text-size-adjust: none;
-webkit-transition: all 500ms ease;
-moz-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
-webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
}

blm-button:hover {
-webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.4);
-moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.4);
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.4);
}

blm-button:before {
position: absolute;
top: 12px;
left: 11px;
font-family: Arial, sans-serif !important;
font-size: 13px !important;
line-height: 13px !important;
letter-spacing: normal !important;
font-weight: 700 !important;
font-style: normal !important;
vertical-align: baseline;
}

blm-button:after {
content: "";
position: absolute;
top: 0;
right: 0;
width: 35px;
height: 35px;
-webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2);
box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2);
}

blm-button[data-type="search"] {
width: 165px;
}

blm-button[data-style="light"] {
background: #fff;
color: #37ae6e;
}

blm-button[data-style="dark"] {
background: #37ae6e;
color: #fff;
}

blm-button[data-type="search"]:before {
content: "SEARCH NEARBY";
}

blm-button[data-type="search"][data-style="light"]:after {
background: #f1f1f1 url('../../images/blm-icon-search-green.png') center center no-repeat;
}

blm-button[data-type="search"][data-style="dark"]:after {
background: #2f945e url('../../images/blm-icon-search-white.png') center center no-repeat;
}

blm-button[data-type="search"][data-style]:after {
background-size: 16px 20px;
}

blm-button[data-type="map"] {
width: 128px;
}

blm-button[data-type="map"]:before {
content: "OPEN MAP";
}

blm-button[data-type="map"][data-style="light"]:after {
background: #f1f1f1 url('../../images/blm-icon-geotag-green.png') center center no-repeat;
}

blm-button[data-type="map"][data-style="dark"]:after {
background: #2f945e url('../../images/blm-icon-geotag-white.png') center center no-repeat;
}

blm-button[data-type="map"][data-style]:after {
background-size: 11px 20px;
}

/*Banners and Ads*/

blm-link {
cursor: pointer;
}

/*Map popup*/

#blm-map-screen {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
text-align: center;
z-index: 999999;
display: none;
}

#blm-map-screen[data-display="1"] {
display: block;
}

#blm-map-screen-content {
position: relative;
top: 50%;
width: 100%;
max-width: 600px;
height: auto;
background: transparent;
padding: 30px;
margin: 0 auto;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}

#blm-map-screen-close {
position: absolute;
top: 15px;
right: 15px;
width: 30px;
height: 30px;
cursor: pointer;
background: #fff;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
z-index: 10;
}

#blm-map-screen-close svg[data-icon="times"] {
position: absolute;
top: 6.5px;
left: 6.5px;
width: 18px;
height: 18px;
}
