#worldmap-svg {
    margin-left:5%;
    margin-top:2%;
}

.countryhover {
    cursor:pointer;
}
.countryhover:hover {
    fill:rgb(39, 119, 168);
}

#countryInfoBox {
    width:390px;
    height:130px;
    display:none;
    border-radius:10px;
    position: absolute;
    top:18%;
    left:0;
    right:0;
    margin-left: auto;
    margin-right: auto;
}

#countryInfoBox #header {
    width:100%;
    /*border-bottom:4px solid #1D5F89;*/
    background-color:rgb(39, 119, 168);
    color:white;
    letter-spacing: 1px;
    text-align: center;
    padding-top:7px;
    padding-bottom:7px;
}

#countryInfoBox #content {
    border-right:1px solid gray;
    border-left:1px solid gray;
    border-bottom:1px solid gray;
    min-height:70px;
    font-family: Arial, Helvetica, sans-serif;
    padding:15px;
    background-color:white;
}

#countryInfoBox #closebtn {
    position:absolute;
    bottom:10px;
    right:3%;
    color:#1D5F89;
    letter-spacing: 1px;
    font-size:17px;
    cursor: pointer;
    background-color:transparent;
    border:none;
}