:root {
    --yes: #00C896;
    --maybe: #c8b700;
    --no: #c80017;
}

/* montserrat-200 - latin */
@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 200;
    src: url('../font/montserrat-v26-latin-200.woff2') format('woff2');
}

/* montserrat-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('../font/montserrat-v26-latin-regular.woff2') format('woff2');
}

/* montserrat-600 - latin */
@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    src: url('../font/montserrat-v26-latin-600.woff2') format('woff2');
}

/* montserrat-800 - latin */
@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    src: url('../font/montserrat-v26-latin-800.woff2') format('woff2');
}

body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #222;
    /* linear-gradient(0deg, #182848ff, #2980b955);*/
    overflow: hidden;
}

svg {
    width: 100%;
    transition: transform .2s;
    width: 100%;
    height: 100svh;
    display: block;
    margin: 0 auto;
    user-select: none;
    cursor: grab;
}

.zooms {
    position: absolute;
    bottom: 1rem;
    right: 18%;
}

#zoomIn,
#zoomOut,
#zoomAll {
    font-size: 18px;
    margin: 3px;
    background: #666;
    border: 1px solid #666;
    color: #fff;
    width: 2rem;
    height: 2rem;
}

#zoomAll {
    font-size: 16px;
    width: 2.1rem;
}

path {
    fill: #555;
    cursor: pointer;
    transition: 0.3s all;
}

title {
    display: inherit;
}

.info {
    background-color: #333;
    height: 100svh;
    padding: 1rem;
    color: #fff;
    font-family: 'Montserrat';
    z-index: 1000;
}

.info h1 {
    font-size: 28px;
    text-align: center;
    font-weight: 600;
}

.country {
    background: #555;
    padding: .5rem;
    margin-top: .5rem;
    font-size: .9rem;
}

.country:first-child {
    margin-top: 0;
}

.country strong {
    border-bottom: 1px solid #fff;
    width: 87%;
    display: inline-block;
    margin-bottom: .5rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
}

.country span.fi {
    float: right;
    width: 10%;
}



path.yes {
    fill: var(--yes);
}

path.no {
    fill: var(--no);
}

path.maybe {
    fill: var(--maybe);
}

path:hover,
path.active {
    fill: #ade5f8;
}

.country a[target="_blank"] {
    color: #fff;
}

.bi {
    font-size: 23px;
    margin: -4px;
    display: inline-block;
}

.bi-check {
    color: lime;
}

.bi-x {
    color: red;
}