/*Buttons*/

blm-button {
position: relative;
float: left;
display: inline-block;
height: 35px;
margin: 45px 30px 0 0;
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: 12px;
font-family: 'Open Sans', Arial, Sans-Serif;
font-size: 13px;
line-height: 13px;
letter-spacing: normal;
font-weight: 700;
font-style: normal;
vertical-align: baseline;
z-index: 1;
}

blm-button:after {
content: "";
position: absolute;
top: 0;
right: 0;
width: 35px;
height: 35px;
z-index: 2;
}

blm-button span {
position: absolute;
top: 0;
right: 0;
width: 35px;
height: 35px;
text-align: center;
z-index: 3;
}

blm-button span svg {
position: relative;
top: 7px;
width: auto;
height: 60%;
}

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

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

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

blm-button[data-style="dark"] span svg {
color: #fff;
}

blm-button[data-style="light"]:after {
background-color: #f1f1f1;
}

blm-button[data-style="dark"]:after {
background-color: #2f945e;
}

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

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

blm-button[data-type="search"] span svg {
position: relative;
top: 8px;
left: 2px;
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
}

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

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

/*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;
}
