

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}
button{
    background-color: #81B839;
}

#countryFlag {
    border-radius: 100px;
    height: 100px;
    width: 100px;
    object-fit: cover;
}

svg path{
    cursor:pointer
}
/* svg path:hover{
    fill: red;
} */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.popup {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    position: relative;
}

.popup h2 {
    margin-top: 0;
}

.popup p {
    margin: 25px 0 25px 0px;
}

.popup .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

body.no-scroll {
    overflow: hidden;
}








.ag-canvas {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;

    position: relative;
    visibility: visible;

    width: 100%;
    height: 100%;
    padding: 3rem 1rem;
    opacity: 1;
    transition: opacity 0.5s;
}

.ag-canvas_svg {
    display: block;
    width: 100%;
    height: auto;
    max-height: 100%;
    margin-left: 1rem;
}

.ag-canvas_svg path {
    fill: #383d46;
    fill-opacity: 1;
    stroke: #21252b;
    stroke-opacity: 1;
    stroke-width: 0.5;
    transition: 0.5s;
}

@media screen and (max-width: 767px) {
    .ag-canvas {
        -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        height: auto;
        padding: 4rem 1rem 1rem;
    }

    .ag-canvas_svg {
        max-height: calc(100% - 6rem);
        margin-left: 0;
    }
}

