body {
    -webkit-touch-callout: none;                /* prevent callout to copy image, etc when tap to hold */
    -webkit-text-size-adjust: none;             /* prevent webkit from resizing text to fit */
    -webkit-user-select: none;                  /* prevent copy paste, to allow, change 'none' to 'text' */
    -webkit-tap-highlight-color: rgba(0,0,0,0); /* make tap highlight transparent */
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#eaefb5+0,e1e9a0+100;Wax+Flat */
background: #fff; /* Old browsers */

    background-attachment:fixed;
    font-family: 'Source Sans Pro', sans-serif;
    font-size:14px;
    height:100%;
    margin:0px;
    padding:0px;
    width:100%;

}

a,
a:visited,
.link{
    
    color: #3B74F0;
}

a:hover{
    color: #3B74F0;
}
a:active{
    text-decoration: none;
    color: #9B99A9;
}

input:focus {
    outline: none;
    border-color: #3B74F0;
}

.link{
    text-decoration: underline;
    cursor: pointer;
}

.centred{
    text-align: center;
}

#preloader{
    display:none;
}

/* Markers displayed on the map = my marker, and everyone else's marker */
.marker{
    width:32px;
    height:32px;
    background-size: 100%;
    
    /*transition: transform 0.2s;*/
}


/* Used to hide map popups, mainly */
.hidden{
    display:none;
}



.msg{
    /* display: none */
    display:block;
    max-height:0;
    height: 0;
    padding: 0 10px;
    overflow-y: hidden;
    position:relative;
    width:100%;
    font-size: 13px;
    text-align: center;
    background-color:#fff;
    border-bottom: 1px solid #ddd;
    
    transition: max-height 0.5s, padding 0.5s;
}

.msg.show,
.online .hide-offline,
.show-offline{
    /* display:block; */
    height:auto;
    max-height:200px;
    padding:10px;
}


.hide-offline,
.online .show-offline,
.online .show-offline
{
    /* display:none; */
    max-height:0;
    height: 0;
    padding: 0 10px;
}




.msg.warning{
    background-color: #F01E14;
    color: #fff;
}



.msg-cancel{
    display: inline-block;
    background-image: url(../img/icon/closemsg.svg);
    width: 20px;
    height: 20px;
    float: right;
    margin-right: 23px;
    cursor: pointer;
    margin-left: 10px;
}

.msg.warning .msg-cancel{
    background-image: url(../img/icon/closemsg-white.svg);
}

/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fade-in {
  opacity:0;  /* make things invisible upon start */
  -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:0.3s;
  -moz-animation-duration:0.3s;
  animation-duration:0.3s;
}

.fade-in.fast {
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.fade-in.medium {
  -webkit-animation-delay: 0.7s;
  -moz-animation-delay:0.7s;
  animation-delay: 0.7s;
}

.fade-in.slow {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}




#loader{
    position:absolute;
    top:50px;
    text-align: center;
    width:100%;
    height:90%;
    color: #fff;
    background-color: #fff;
}

#loader h1{
    font-family: 'Arimo', sans-serif;
    font-size: 50px;
    color: #fff;
    font-weight:normal;
	
}

#loaderimage{
    width:100%;
    margin-top:40%;
}


#loaderimage img{
    height:100%;
    
}

#loader p.tagline{
   margin-top: 32px;
}

#interface{
    /*position: fixed;*/
    visibility: visible; 
    overflow: hidden;
    
    /*bottom: 0px;
    height: 100%;
    width: 100%;*/
}

#map { 
    position: absolute;
    top: 52px;
    bottom: 60px;
    width: 100%;
}

.map-toolbar {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 60px;
    background-color: rgba(255,255,255,1);
}

#comment-container{
    position:fixed;
    bottom:9px;
    left:0px;
    right:0px;
    width: calc(100%);
    
}

#comment{
    position: absolute;
    right: 53px;
    width: calc(100% - 250px);
    bottom: 0px;
    transition: width 0.2s ease-out;
    font-size: 16px;
    height: 37px;
    
}

#comment:focus{
    width: calc(100% - 135px);
    padding-right:50px;
    position: relative;
    left:10px;
}
#comment-counter{
    display:none; /* change to 'none' in final code */
    
    position: absolute;
    right: 69px;
    bottom: 13px;
    color:#6E6D77;
}
#charcount{
    font-weight:bold;
}
#comment:focus + #comment-counter{
    display:block;
}

#commentSubmitButton{
    position:fixed;
    right:10px;
    bottom:8px
}

.btn {
    display: block;
    height: 18px;
    width: 48px;
    /* margin: auto; */
    margin: 0;
    cursor: pointer;
    background-size: 25px;
    background-position: center top;
    background-repeat: no-repeat;
    text-align: center;
    padding-top: 24px;
    color: #6E6D77;
}


.btn.toggle{
    background-image: url(../img/btn-expand.svg);
    background-size:contain;
    width: 10px;
    height: 10px;
    display: block;
    vertical-align: middle;
    top: 17px;
    position: absolute;
    right: 10px;
}
#compass-bar.active .btn.toggle{
    background-image: url(../img/btn-contract.svg);
}

.btn.follow, .btn.follow-disabled{
    background-image: url(../img/spinner.svg);
    position: fixed;
    bottom:10px;
    left:19px;
}

#label-following{
    display:none;
}

.btn.follow.following #label-following{
    margin-top: -22px;
    display: block;
    position: relative;
    background-color: #fff;
    padding: 5px;
    width: 47px;
    margin-left: -12px;
}

.foundClientLocation .btn.follow{
    animation: pulse 0.2s ease-out;
    background-image: url(../img/icon/followme.svg);

}
.foundClientLocation .btn.follow.following{
    animation: pulse2 0.2s ease-out;
    background-image: url(../img/icon/followme-on.svg);
    
}

.blockedClientLocation .btn.follow{
    display:none;

}




.btn.follow-disabled{
    display:none;

}
.blockedClientLocation .btn.follow-disabled{
    display:inline;
    animation: pulse 0.2s ease-out;
    background-image: url(../img/icon/followme-disabled.svg);
    opacity:0.3;
}

.blockedClientLocation #comment-container{
    display:none;
}


@keyframes pulse {
  0% {
    background-size:30%;
  }
  100% {
    background-size:auto;
  }
}
@keyframes pulse2 {
  0% {
    background-size:80%;
  }
  100% {
    background-size:auto;
  }
}

.btn.say{
    animation: pulse 0.2s ease-out;
    background-image: url(../img/icon/send.svg);
    position: absolute;
    bottom:10px;
    right:13px;
    background-position: center;
}



.btn.mapchooser{
    animation: pulse 0.2s ease-out;
    display:block;
    bottom: 10px;
    left:62px;
    position: fixed;

    background-image: url(../img/icon/day.svg);
    
    display:none;
}
.btn.mapchooser.active{
    animation: pulse2 0.2s ease-out;
    background-image: url(../img/icon/night.svg);
}

.btn.profile{
    animation: pulse 0.2s ease-out;
    display:block;
    bottom: 10px;
    left:80px;
    position: fixed;
    width:auto;

    background-image: url(../img/icon/profile.svg);
}
.btn.profile.active{
    animation: pulse2 0.2s ease-out;
    background-image: url(../img/icon/profile-on.svg);
}





.btn.share{
    animation: pulse 0.2s ease-out;
    display:block;
    top: 5px;
    position: absolute;
    right: 30px;
    background-image: url(../img/icon/share.svg); 
}
.btn.share.active{
    animation: pulse2 0.2s ease-out;
}

.btn.mapchooser > span,
.btn.follow > span,
.btn.share > span
{
    text-align: center;
    display: block;
    margin-top: 44px;
    font-size: 10px;
    text-shadow: 0px 0px 2px rgba(255, 255, 255, 1);
}



.btn.follow > span

{

    margin-top: 66px;

}


/*
#panel-share{
    display:none;
    position: absolute;
    width: 30px;
    bottom: 80px;
    right: 87px;
}
#panel-share.active{
    display: block;
    z-index: 100;
}*/
#mapContainer{
    /*bottom: 0;
    height: 100%;
    width: 100%;
    position: absolute;*/
    overflow: hidden;
}
.mapboxgl-canvas{
    position:relative !important;
}


/* SHARING */
.resp-sharing-button__link,
.resp-sharing-button__icon {
  display: inline;
      cursor:pointer;
}

.resp-sharing-button__link {
  text-decoration: none;
  color: #fff;
  margin: 0.5em
}

.resp-sharing-button {
    display:inline;
  border-radius: 5px;
  transition: 25ms ease-out;
  padding: 10px 5px;
  font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-size:1.5em;
}

.resp-sharing-button__icon svg {
  width: 1em;
  height: 1em;
  margin-right: 0.4em;
  vertical-align: top
}

.resp-sharing-button--small svg {
  margin: 0;
  vertical-align: middle
}

/* Non solid icons get a stroke */
.resp-sharing-button__icon {
  stroke: #fff;
  fill: none
}

/* Solid icons get a fill */
.resp-sharing-button__icon--solid,
.resp-sharing-button__icon--solidcircle {
  fill: #fff;
  stroke: none
}

.resp-sharing-button--twitter {
  background-color: #55acee
}

.resp-sharing-button--twitter:hover {
  background-color: #2795e9
}

.resp-sharing-button--pinterest {
  background-color: #bd081c
}

.resp-sharing-button--pinterest:hover {
  background-color: #8c0615
}

.resp-sharing-button--facebook {
  background-color: #3b5998
}

.resp-sharing-button--facebook:hover {
  background-color: #2d4373
}

.resp-sharing-button--tumblr {
  background-color: #35465C
}

.resp-sharing-button--tumblr:hover {
  background-color: #222d3c
}

.resp-sharing-button--reddit {
  background-color: #5f99cf
}

.resp-sharing-button--reddit:hover {
  background-color: #3a80c1
}

.resp-sharing-button--google {
  background-color: #dd4b39
}

.resp-sharing-button--google:hover {
  background-color: #c23321
}

.resp-sharing-button--linkedin {
  background-color: #0077b5
}

.resp-sharing-button--linkedin:hover {
  background-color: #046293
}

.resp-sharing-button--email {
  background-color: #777
}

.resp-sharing-button--email:hover {
  background-color: #5e5e5e
}

.resp-sharing-button--xing {
  background-color: #1a7576
}

.resp-sharing-button--xing:hover {
  background-color: #114c4c
}

.resp-sharing-button--whatsapp {
  background-color: #25D366
}

.resp-sharing-button--whatsapp:hover {
  background-color: #1da851
}

.resp-sharing-button--hackernews {
background-color: #FF6600
}
.resp-sharing-button--hackernews:hover, .resp-sharing-button--hackernews:focus {   background-color: #FB6200 }

.resp-sharing-button--vk {
  background-color: #507299
}

.resp-sharing-button--vk:hover {
  background-color: #43648c
}

.resp-sharing-button--facebook {
  background-color: #3b5998;
  border-color: #3b5998;
}

.resp-sharing-button--facebook:hover,
.resp-sharing-button--facebook:active {
  background-color: #2d4373;
  border-color: #2d4373;
}

.resp-sharing-button--twitter {
  background-color: #55acee;
  border-color: #55acee;
}

.resp-sharing-button--twitter:hover,
.resp-sharing-button--twitter:active {
  background-color: #2795e9;
  border-color: #2795e9;
}

.resp-sharing-button--google {
  background-color: #dd4b39;
  border-color: #dd4b39;
}

.resp-sharing-button--google:hover,
.resp-sharing-button--google:active {
  background-color: #c23321;
  border-color: #c23321;
}

.resp-sharing-button--email,
.resp-sharing-button--link
{
  background-color: #777777;
  border-color: #777777;
}

.resp-sharing-button--email:hover,
.resp-sharing-button--email:active, 
.resp-sharing-button--link:hover,
.resp-sharing-button--link:active{
  background-color: #5e5e5e;
  border-color: #5e5e5e;
}

.resp-sharing-button--whatsapp {
  background-color: #25D366;
  border-color: #25D366;
}

.resp-sharing-button--whatsapp:hover,
.resp-sharing-button--whatsapp:active {
  background-color: #1DA851;
  border-color: #1DA851;
}

/* HACK the mapbox standard interface elements */
.mapbox-directions-instructions{
    display:none !important;
}

.mapboxgl-ctrl-icon.mapboxgl-ctrl-zoom-in,
.mapboxgl-ctrl-icon.mapboxgl-ctrl-zoom-out {
    display:none;
}
.float-right{
    float:right;
}

/* Compass override */
.mapboxgl-ctrl-group {
    border-radius: 20px;
}


.mapboxgl-ctrl-top-right{
    top:5px;
    right:40px;
}



.mapboxgl-ctrl-top-right .mapboxgl-ctrl {
    margin-top: 0;

}
.mapboxgl-ctrl-group > button {
        margin-right: 0;
    background-color:none;
}
.mapboxgl-ctrl-icon.mapboxgl-ctrl-compass > span.arrow {
   
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%0A%09%3Cpolygon%20fill%3D%27%23ff3333%27%20points%3D%276%2C9%2010%2C1%2014%2C9%27%2F%3E%0A%09%3Cpolygon%20fill%3D%27%23333333%27%20points%3D%276%2C11%2010%2C19%2014%2C11%20%27%2F%3E%0A%3C%2Fsvg%3E");

}

.mapboxgl-ctrl-geocoder{
    max-width: 100%;
    min-width: 0px;
}

.mapboxgl-ctrl-geocoder.mapboxgl-ctrl{
    position: fixed;
    left: 0px;
    top: 0px;
    width: auto;
    margin-top: 0px;
    border-radius: 0px;
}


.geocoder-icon-search{
    background-image:none;
    display:none;
}



.mapboxgl-ctrl-geocoder input[type='text']{
    transition: width 0.2s ease-out;
    width: 50px;
    padding: 0;
    background-image: url(../img/button-search.svg);
    background-repeat: no-repeat;
    background-position: 17px;
    height: 50px;
    font-size: 16px;
}

.mapboxgl-ctrl-geocoder input[type='text']::-webkit-input-placeholder {

    color:rgba(255,255,255,0);
    
}


.mapboxgl-ctrl-geocoder input[type='text']:focus{
    width: 320px;
    padding: 10px 10px 10px 40px;
}

.mapboxgl-ctrl-geocoder ul {
    font-size: 14px;   
}
.mapboxgl-ctrl-geocoder ul > li > a {
    padding: 10px 10px
}


.mapboxgl-ctrl-attrib.mapboxgl-compact, .mapboxgl-ctrl.mapboxgl-ctrl-attrib{
    display:none;
}

.mapboxgl-popup, .mapboxgl-popup-content, .mapboxgl-popup-tip{
    pointer-events: none !important;
}

.mapboxgl-popup {
  max-width: 200px;
}



.mapboxgl-popup-content {
  text-align: center;
}
.mapboxgl-popup-content b{
    background-color: #3B74F0;
    border-radius: 10px;
    padding: 2px 4px 3px 17px;
    color: #fff;
    font-weight: normal;
    margin-left: 3px;
    background-image: url(../img/icon/poi-marker.svg);
    background-position: 2px center;
    background-size: 13px;
    background-repeat: no-repeat;
}
#header-bar{
    display: block;
    position:relative;
    width:100%;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
    -webkit-transition: height 0.3s; /* Safari */
    transition: height 0.3s;
    overflow:hidden;
    text-align:center;
    
    padding: 10px 10px 0 10px;
    height: 42px;
    font-size:16px;
}

input,button{
    width: auto;
    height: 28px;
    border-radius: 16px;
    border: 2px solid #9B99A9;
    margin-right: 5px;
    padding: 0 10px;
    font-size: 12px;
    font-weight:300;
}

    
#header-bar input, #header-bar button{
    margin-bottom:10px;
}


.page-body h2{
    font-size:20px;
    font-size:20px;
}
#tag{
    width: calc(100% - 23px);
    font-size: 16px;
    vertical-align: top;
    padding-left: 23px;
}

.hashinthebox{
    position: absolute;
    left: 28px;
}

.hashtag-input{
    font-size: 24px;
}


#mapHistoryList > p{
    margin:0;
    font-size: 20px;
}

#mapHistoryList > p > a {
    color: #3B74F0;
    padding: 10px;

    border-bottom: 1px solid #ccc;
    line-height: inherit;
    display: block;
}

#mapHistoryList > p > a:hover{
    background-color: #f9f9f9;
}

#mapHistoryList > p > a:active{
    background-color: #f1f1f1;
}


#nickname{
    width:calc(100% - 40px);
    font-size:16px;
    vertical-align: top;
}
#shareURL {
    width: calc(100% - 170px);
    font-size: 16px;
    vertical-align: top;
}


button{
    height:33px;
    background-color: #3B74F0;
    border:none;
    color:#fff;
    padding:0 10px;
    cursor:pointer;
}

button:active{
    background-color: #9B99A9;

}

#header-bar button{
    
}


#compass-bar{
    position:relative;
    width:100%;
    top:0px;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
    
    overflow:hidden;
    cursor: pointer;
    height: 0px; /* hides this bar iby default. Only to be revelaed if device has compass features */
    transition: height 0.4s; /* height set to auto later on which reveals the compass */

}

.hasCompass #compass-bar{
    /* if the device has compass avialablility, show the compass */

    height:36px;
}

.hasCompass.deviceorientation-landscape #compass-bar{
    /* always hide the compass in landscape mode on any device */
    height:0px; 
    transition: height 0s; 
}

#compass-bar.active{
    
    
}

#compass{
    
    width:100%;
    background-image: url("../img/compass/compass.png");
    background-size: auto 33px;
    background-repeat: repeat-x;
    background-position-x: 0px;
    height:35px;
    transition: height 0.5s; 
    
}






#compass-needle{
    height:33px;
    transition: height 0.5s; 
    transition: background-position-x 0.1s;
    width: 100%;
    background-image: url(../img/compass/compass-needle.png);
    background-position-x: center;
    background-repeat: no-repeat;
    background-size: 19px auto;
    position: absolute;
    
    
}





#compass-accuracy {
    position: absolute;
    width: 0px;
    background-color: rgba(255,0,0,0.15);
    height: 38px;
    transform: translate(-50%, -50%);
    left: 50%;
    transition: width 0.4s;
    top:0px;
}

#compassAccuracyLabel,
#positionAccuracyLabel{
    font-size: 14px;
    font-weight: normal;
}

#locate{
    transition: height 0.2s, font-size 0.2s;
    text-align: center;
    display: block;
    margin: 0 0 3px 0;
    font-size: 10px;
    line-height: 2em;
    height: 0px;
}

#compass-bar.active{
    height:auto;
}

#compass-bar.active #locate{
    height: 180px;
    font-size: 18px;
}

#gridrefs span{
    /* font-weight:bold;*/
}
#gridrefs span#dms{
    font-weight:normal;
}

#gridrefs .title.little{
    font-size:10px;
    color:#999;
    font-weight:normal;
}


#gridrefs,#degrees{
    display:inline-block;
}
#degrees{
    margin-left: 20px;
    font-size: 36px;
    font-weight: normal;
}





.switch-field {
  padding: 0;
    overflow: hidden;
}

.switch-title {
  margin-bottom: 6px;
}

.switch-field input {
    position: absolute !important;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden;
}

.switch-field label {
  float: left;
}

.switch-field label {
  display: inline-block;
  width: 45px;
  background-color: #e4e4e4;
  color: rgba(0, 0, 0, 0.6);
  
  font-weight: normal;
  text-align: center;
  text-shadow: none;
  padding: 6px 14px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition:    all 0.1s ease-in-out;
  -ms-transition:     all 0.1s ease-in-out;
  -o-transition:      all 0.1s ease-in-out;
  transition:         all 0.1s ease-in-out;
}

.switch-field label:hover {
    cursor: pointer;
}

.switch-field input:checked + label {
  background-color: #A5DC86;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.switch-field label:first-of-type {
  border-radius: 4px 0 0 4px;
}

.switch-field label:last-of-type {
  border-radius: 0 4px 4px 0;
}
.mapboxgl-popup{
  pointer-events: none;
}
.mapboxgl-popup-content{
    padding:3px 5px;
}
.mapboxgl-popup-content > p{
    margin: 0;
    line-height: 1.3em;
}
.mapboxgl-popup-close-button{
    display: none;
}
.mapboxgl-popup-tip {
    border: 3px solid transparent;
}




.page{
    
    position:absolute;
    width:100%;
    min-height:100%;
    top:0px;
    left:0px;
    background-color:#fff;
    z-index: 100;
    
    left:-100%;
    transition: left 0.3s ease;
}

.page.active{
    
    left:0px;
    
}
.page .page-header{
    display:block;
    position:fixed;
    width:100%;
    background-color: #fff;
    border: 1px solid #ccc;
    border-width: 0 0 1px 0;
    z-index: 10;
    
    
}
.page .page-header .cancel{
    float:left;
    padding:20px 20px;
    font-size:15px;
    color: #3B74F0;
    cursor: pointer;
}

.page .page-header .ok{
    float: right;
    padding: 10px 15px;
    font-size: 15px;
    color: #fff;
    cursor: pointer;
    background-color: #3B74F0;
    border-radius: 7px;
    margin: 10px 5px;
}

.page .page-header h2{
    margin:0px;
    text-align: center;
    margin:10px;
    padding-top:8px;
}

.page .page-body{
    margin:70px 20px;
}
.page .note{
    color: #6E6D77;
}

#btn-maphashtag{
    font-size: 24px;
}

.sharebutton{
        text-decoration: none;
    display: inline-block;
    width: 100px;
    padding: 10px 13px 10px 40px;
    font-size: 16px;
    background-repeat: no-repeat;
    margin-top: 20px;
    border: 2px solid #9B99A9;
    background-position-x: 10px;
    background-position-y: center;
    border-radius: 5px;
}

.sharebutton:hover{
    background-color:#3B74F0;
    color:#fff;
}
.sharebutton.facebook{
    background-image: url(../img/shareicon-facebook.svg);
}
.sharebutton.twitter{
    background-image: url(../img/shareicon-twitter.svg);
}

.sharebutton.email{
    background-image: url(../img/shareicon-email.svg);
}

.sharebutton.whatsapp{
    background-image: url(../img/shareicon-whatsapp.svg);
}

#people{
    position:relative;
    padding:10px;
    display: inline;
    top:5px;
}
.p-me{
    animation: pulse 0.2s ease-out;
    background-image: url(../img/icon/p-you.svg);
    background-repeat: no-repeat;
    background-position: center top;
    width: 34px;
    height: 29px;
    display: inline-block;
    padding-top: 36px;
    text-align: center;
    cursor:pointer;
    vertical-align: top;
    margin-right:5px;
    font-size: 10px;
    overflow: hidden;
}

#others{
    max-width: calc(100% - 108px);
    height: 80px;
    overflow: hidden; /* Con only use HIDDEN with dragcroll.js working well */
    overflow-y: hidden; 
    /* scroll-behavior: smooth;  */ /* Stops dragcroll.js from working */
    -webkit-overflow-scrolling: touch; /* momentum scrolling on iOS */
    display: inline-block;
    white-space: nowrap;
}



.friend{
    animation: pulse 0.2s ease-out;
    background-image: url(../img/icon/p-friend.svg);
    background-repeat: no-repeat;
    background-position: center top;
    width: 34px;
    height: 29px;
    display: inline-block;
    padding-top: 36px;
    text-align: center;
    cursor:pointer;
    vertical-align: top;
    margin-right:5px;
    font-size: 10px;
    overflow: hidden;
}

.invite{
    animation: pulse 0.2s ease-out;
    background-image: url(../img/icon/p-invite-others.svg);
    background-repeat: no-repeat;
    background-position: center top;
    width: 34px;
    height: 29px;
    display: inline-block;
    padding-top: 36px;
    text-align: center;
    cursor:pointer;
    vertical-align: top;
    margin-right:5px;
    font-size: 10px;
    overflow: hidden;
}

.p-me.lastclicked, .friend.lastclicked {
    animation: pulse2 0.2s ease-out;
}


#btn-gen-secure-hashtag{
    background-image: url(../img/icon/shield.svg);
    background-repeat: no-repeat;
    background-position: 10px center;
    padding-left: 30px;
    padding-right: 12px;
    left: calc(100% - 80px);
    position: relative;
    height: 23px;
    top: -35px;
}



.marker {
  background-position: center;
    background-size: 16px;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    cursor: pointer;
    border: 3px solid #3B74F0;
    border-radius: 15px;
    background-color: #fff;
    padding: 0px;
}



.marker:before {
    content: "";
    position: absolute;
    right: 3px;
    top: 24px;
    border-left: 9px solid transparent;
    border-top: 9px solid #3B74F0;
    border-right: 9px solid transparent;
}
  

.mapboxgl-popup-content{
    padding: 8px;
}

.mapboxgl-popup-content h4{
    margin: 0;
    font-weight: normal;
}

.mapboxgl-popup-content .isOpen{
    color: #9B99A9;
    margin-bottom: 3px;
}

#places-indicator{
    /* hidden automatically, add .show to show this on the interface */
    position: fixed;
    bottom: -100px;
    right: 10px;
    opacity: 0;
    transition: opacity 0.5s, bottom 0s 0.5s; /* immediately fade over 0.5s, but delay move away for 0.5 seconds (clever!) */

}
#places-indicator.show{
    bottom: 70px;
    opacity: 1;
    transition: opacity 0.5s;
    
}

#places-label{
    background-image: url(../img/spinner.svg);
    background-size: 20px;
    background-position: 9px 7px;
    
    background-repeat: no-repeat;
    /* position: fixed; */
    /* bottom: 70px; */
    /* right: 43px; */
    padding-left: 33px;
    display: inline-block;
    vertical-align: middle;
}

#places-label.found{
    
    background-image: url(../img/icon/poi-marker.svg);
    background-position: 11px center;
    background-size: auto;
}
#places-label.no-results{
    
    background-image: url(../img/icon/poi-marker-none.svg);
    background-position: 11px center;
    background-size: auto;
}



#places-clear-button{ 
    background-image: url(../img/icon/close-circle.svg);
    background-size: contain;
    background-repeat: no-repeat;
    /* position: fixed; */
    /* bottom: 70px; */
    /* right: 10px; */
    width: 33px;
    height: 33px;
    display: inline-block;
    vertical-align: middle;
}

#compass-mini{
    background-image: url(../img/icon/compass-mini.svg);
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    float: right;
    width: 28px;
    height: 28px;
    margin-right: 20px;
    margin-top:2px;
    opacity: 0;
    transition: opacity 1s;
    
}

#help-icon{
    background-image: url(../img/icon/help.svg);
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    float: left;
    width: 28px;
    height: 28px;
    margin-top:2px;
    opacity: 1;
    transition: opacity 1s;
    cursor: pointer;
}

#compass-mini.active{
    opacity: 1;
    cursor:pointer;
}
