html, body, #country-map {
  height: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.h-100{
  height: 100%;
}

.nopadding {
  padding: 0 !important;
  margin: 0 !important;
}

.country-map{
  min-height: 100%;
  height: 100%;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

ul, li{
  list-style: none;
  margin: 0;
  padding: 0;
}

#menu{
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
  overflow-y: scroll;
  background-color: #303419;
}

#menu h4{
  background-color: #303419;
  margin: 0;
  padding: 15px;
  color: #fff;
  font-weight: bold;
  text-decoration:underline;
}

#menu li:hover{
  cursor: pointer;
  background-color: #f8f8f8;
}

#menu li.active{
  background-color: inherit;
}

#menu li div{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px;
  color: #fff;
}

#menu li ul{
  display: none;
  padding-left: 20px;
  padding-right: 20px;
}

#menu li ul li{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
}

#menu li ul li:hover{
  background-color: #eeeeee;
}

#menu li ul li .badge{
  background-color: transparent;
  color: black
}

.menu-logo{
    padding: 15px;
    width: 90%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/*
  * MAP MAKERS
  * Custom, more simple map markers
  * This way, you don't need to offset the map location in the Javascript.
  *
-----------------------------------------*/

.map-location {
    font-size: 1rem;
    cursor: pointer;
}

.map-location div{
  -moz-transition: 0.5s cubic-bezier(0, 0.28, 0.45, 1.01);
  -webkit-transition: 0.5s cubic-bezier(0, 0.28, 0.45, 1.01);
  transition: 0.5s cubic-bezier(0, 0.28, 0.45, 1.01);
  transform-style: preserve-3d;
}

.map-location,
.map-location div {
    width: 25px;
    height: 25px;
}

.map-location div {
  position: absolute;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(225,0,25,.8);
  background-color: rgba(241, 94, 36, 0.8);
  border-radius: 50%;
}

.map-location div:after,
.map-location div:before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 100%;
  height: 100%;
  border: 3px solid rgba(241, 94, 36, 0.3);
  border-radius: 50%;
  box-sizing: content-box;
}

.map-location div span.count{
  width: 100%;
  height: 100%;
  display:  flex;
  justify-content: center;
  align-items: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  opacity: 1;
  color: white;
  font-size: 15px;
}

.map-location div i{
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: none;
  opacity: 0;
  color: white;
  font-size: 15px;
}

.map-location.current-emergency div:after
/*.spot:hover div:after */
{
    animation: over 2s ease-out 1s infinite;
}

.map-location div:after {
    transform: scale(.7);
}

.map-location.hover{
  z-index: 1;
}

.map-location.hover div{
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.map-location.hover div i{
  display: flex;
  opacity: 1;
}

.map-location.hover div span.count{
  display: none;
  opacity: 0;
  transform: rotateY(180deg);
}

.map-location .title{
  position: absolute;
  width: max-content;
  background-color: white;
  padding: 3px;
  border-radius: 6px;
  left: 35px;
  font-size: 13px;
  opacity: 0;
  transform: translateX(10px);
  -moz-transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  visibility: hidden;
}

.map-location .title:after{
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 6px 4px 0;
  border-color: transparent #fff transparent transparent;
  content: "";
  position: absolute;
  left: -6px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.map-location.hover .title{
  display: block;
  opacity: 1;
  transform: translateX(0px);
  visibility: visible;
}


@keyframes over {
  0% {
    opacity:1;
    transform:scale(.8);
    border:3px solid rgba(225,0,25,.5);
    border: 3px solid rgba(241, 94, 36, 0.5);
  }
  25%{
    opacity:1
  }
  50%{
    border: 3px solid rgba(0,30,75,.5);
  }
  75% {
    opacity:.1 } to {
    opacity:0;
    transform:scale(2.6);
    }
}



 /* Custom => Modal */

#closebt-container {
	position: relative;
	width:100%;
	text-align:center;
	margin-top:40px;
}

.closebt {
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
	cursor:pointer;

  width: 52px;
  height: 52px;
}

.closebt:hover {
	transform:rotate(90deg);
}