.projects-map {
    width: 100%;
    height: 100%;
}


.projects-map .project {
    position: relative;
    cursor:pointer;
}

.projects-map .project .icon {
    align-items: center;
    display: flex;
    justify-content: center;
    color: #FFFFFF;
  }
  
.projects-map .project .icon img {
    width: 30px;
}


.projects-map .project .details {
    display:none;
    text-align: center;
    font-weight: bold;
    bottom: calc(100% + 5px);
    background: var(--awb-color3);
    padding: 10px;
    font-size: 16px;
    border-radius: 20px;
    position: absolute;
    width:200px;
    left: -50%;
}

.projects-map .project.hover .details {
    display:block;
}

.map-popup {
    transition: opacity 0.2s ease;
    position: absolute;
    background: white;
    padding: 16px 14px;
    border: 1px solid rgb(204, 204, 204);
    font-size: 12px;
    pointer-events: none;
    display: block;
    z-index: 1000;
    white-space: nowrap;
    color: rgb(14, 50, 82);
    text-align: center;
}

.map-popup p:first-of-type {
    font-family: 'Georgia', 'serif';
    font-weight: 700;
    font-size: 21px;
	margin-bottom: 0;
}

.map-popup p:nth-of-type(2) {
	margin-top: 16px;
    margin-bottom: 0;
    font-size: 14px;
}


