* {box-sizing: border-box;}

body { 
  font-size: 16px;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  display: block;
}
@media screen and (max-width: 500px) {
  body{
    font-size: 14px
  }
}

.header {
  overflow: hidden;
  padding: 8px 16px;
  position: absolute;
  display: flex;
  align-items: center;
  width: 100%;
  background: #9E0B10;
  background: linear-gradient(180deg,rgba(158, 11, 16, 1) 0%, rgba(112, 8, 11, 1) 100%);
  justify-content: space-between;
}
@media screen and (max-width: 500px) {
  .header{
    padding: 4px 16px;
  }
}

.logo{
  height: 56px;
  display: inline-block;
}
.title-wrapper{
  color: #ffffff;
}
.title{
  font-size: 32px;
  font-family:"Lobster Two";
  font-weight: 700;
  margin: 0 0 2px 0;
}
@media screen and (max-width: 500px) {
  .title{
    font-size: 28px;
  }
}


.subtitle{
 font-size: 18px;
}
@media screen and (max-width: 500px) {
  .subtitle{
    font-size: 16px;
  }
}
.header .logo{
  margin-right: 4px;
}
.header .logo:last-of-type{
  margin-right: 0;
}
.powered-by{
  justify-content: right;
  color: #ffffff;
  text-align: right;
  display: flex;
  align-items: center;
  font-size: 12px;;
}
.powered-by img{
  margin-left: 6px;
  width: 20px;
}
.footer{
  display: none;
}

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

.treemarker {
  background-image: url('/assets/tree.png');
  background-size: cover;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
}

.firestation {
  background-image: url('/assets/firestation.png');
  background-image: url('/assets/santaEngine.png');
  background-image: url('/assets/firestation.png');
  background-size: cover;
  width: 48px;
  height: 48px;
/*  border-radius: 50%;*/
  cursor: pointer;
}
.mapboxgl-popup {
  max-width: 200px;
}
.mapboxgl-popup-content {
  text-align: center;
  font-family: 'Open Sans', sans-serif;
}
.santaIcon {
  background-image: url('/assets/santaEngine.png');
  background-size: cover;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
}

.footer{
  overflow: hidden;
  padding: 8px 16px;
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #9E0B10;
}

/* Social Share */
#share-btn{
  position: absolute;
    z-index: 999;
    bottom: 10%;
    background: #9E0B10;
    left: 0;
    border: none;
    color: #ffffff;
    padding: 12px 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.icon-share{
  width: 16px;
  margin-right: 6px;
}


    .countdown-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 999;
    }
    .countdown-wrapper {
        font-family: "Roboto", Arial, Helvetica, sans-serif;
        background: #ffffff;
        border-radius: 12px;
        color: #171717;
        text-align: center;
        font-weight: 300;
    }
    .countdown-wrapper h2{
        margin: 0 0 8px 0;
        padding: 24px 32px 0 32px;
        font-size: 36px;
        font-weight: 300;
        color: #171717;
    }
    .countdown-target-date{
        font-size: 18px;
        margin-bottom: 24px;
    }
    .countdown {
        padding: 24px;
        border-top: 1px solid #ccc;
        display: flex;
        gap: 24px;
        justify-content: center;
        align-items: center;
    }
    .countdown-item {
        text-align: center;
    }
    .countdown-item .value {
        color: #9E0B10;
        font-weight: 400;
        font-size: 36px;
        line-height: 1;
    }
    .countdown-item .label {
        margin-top: 4px;
        font-size: 18px;
    }

