/**
 * The Container
 */
#map-container{
    width: 580px;
    height: 330px;
    overflow: hidden;
}

#map{
    height: 330px;
    overflow: hidden;
}

/**
 * Popup Card
 */
.popup-card{
    background-color: rgba(27, 53, 120, .9);
    border-bottom: 2px solid #2c3e50;
    border-radius: 3px;
    padding: 15px 15px 10px;
    position: fixed;
    opacity: 0;
    width: 230px;
    margin-left: -130px;
    z-index: 999999;
    display: block;
    cursor: pointer;
    text-decoration: none !important;

    text-transform: uppercase;
    font-size: 12px;
    line-height: 16px;

    -webkit-transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;

    -webkit-animation: fadeUp 500ms cubic-bezier(0.51, 0.01, 0.37, 0.98);
       -moz-animation: fadeUp 500ms cubic-bezier(0.51, 0.01, 0.37, 0.98);
        -ms-animation: fadeUp 500ms cubic-bezier(0.51, 0.01, 0.37, 0.98);
         -o-animation: fadeUp 500ms cubic-bezier(0.51, 0.01, 0.37, 0.98);
            animation: fadeUp 500ms cubic-bezier(0.51, 0.01, 0.37, 0.98);

    -webkit-animation-fill-mode: forwards;
       -moz-animation-fill-mode: forwards;
        -ms-animation-fill-mode: forwards;
         -o-animation-fill-mode: forwards;

    -webkit-transition: none;
       -moz-transition: none;
        -ms-transition: none;
         -o-transition: none;
            transition: none;
}

.popup-card.compatible{
    opacity: 1;
    -ms-transform: translateY(-100%);
}

/**
 * Popup Card Bottom Arrow
 */
.popup-card:after, .popup-card:before {
    top: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    margin-top: 2px;
}

.popup-card:after {
    border-color: transparent;
    border-top-color: rgba(44, 62, 80, .9);
    border-width: 6px;
    left: 50%;
    margin-left: -6px;
}
.popup-card:before {
    border-color: transparent;
    border-top-color: #2c3e50;
    border-width: 9px;
    left: 50%;
    margin-left: -9px;
}

/**
 * Popup Card Elements
 */
.popup-card span{
    display: block;
    color: #d4dbe2;
}

.popup-card span.country{
    font-size: 14px;
    margin-bottom: 8px;
    color: #fff;
}

.popup-card em{
    font-style: normal;
    display: inline-block;
    color: #a3b1bf;
    margin-right: 3px;
}

/**
 * Fade Up Animations
 */
@-webkit-keyframes fadeUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-80%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(-100%);
    }
}

@-moz-keyframes fadeUp {
    0% {
        opacity: 0;
        -moz-transform: translateY(-80%);
    }
    100% {
        opacity: 1;
        -moz-transform: translateY(-100%);
    }
}

@-ms-keyframes fadeUp {
    0% {
        opacity: 0;
        -ms-transform: translateY(-80%);
    }
    100% {
        opacity: 1;
        -ms-transform: translateY(-100%);
    }
}

@-o-keyframes fadeUp {
    0% {
        opacity: 0;
        -o-transform: translateY(-80%);
    }
    100% {
        opacity: 1;
        -o-transform: translateY(-100%);
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(-80%);
    }
    100% {
        opacity: 1;
        transform: translateY(-100%);
    }
}