@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;600&display=swap');

@font-face {
    font-family: "Gilroy";
    src: url("../assets//fonts//Gilroy/Gilroy-Light.otf") format("truetype");
    font-weight: 300;
}

@font-face {
    font-family: "Gilroy";
    src: url("../assets//fonts//Gilroy/Gilroy-ExtraBold.otf") format("truetype");
    font-weight: 800;
}

@font-face {
    font-family: "Gilroy";
    src: url("../assets//fonts//Gilroy/Gilroy-Medium.ttf") format("truetype");
    font-weight: 500;
}

* {
    box-sizing: border-box;
}

body,
html {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Gilroy';
    margin: 0px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    width: calc(100vw - 15px);
    margin: auto;
    height: 100vh;
}

.title {
    position: absolute;
    left: calc(50% - 215px);
    width: 430px;
    text-align: center;
    bottom: 0px;
    z-index: 1000;
    opacity: .7;
    pointer-events: none;
}

.map-action-zoom {
    position: absolute;
    z-index: 100;
    left: 5px;
    top: 5px;
    display: flex;
    align-items: center;
    flex-direction: column;
    background: rgba(255, 255, 255, .5);
    padding: 4px;
}

.map-action-zoom>img {
    margin: 3px 0px;
    width: 25px;
    height: 25px;
    border-radius: 7px;
    overflow: hidden;
}

.map-container svg {
    overflow: auto;
    width: 100%;
    height: 100%;
}

.map-container svg g {
    stroke: yellow;
    stroke-width: 2px;
    overflow: auto;
}

.zoom_action {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 1000;
}

.map-container svg {
    background: rgba(255, 69, 73, 0);
}

.map-container svg path {
    stroke: rgba(0, 0, 0, .5);
    stroke-width: 1px;
    cursor: pointer;
    fill: rgba(0, 0, 0, .3);
}




.active {
    fill: #f9b300 !important;
}


/****** WIDGETS *******/
#allCategories-pie-chart {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.country-name {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    color: #000000;
}

.key,
.value {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #797979;
}

.value {
    color: #000;
    font-weight: bold;
    font-size: 30px;
    margin-left: 10px;
}


.d-column-2 {
    display: grid;
    grid-template-columns: auto auto;
}

.chart-container {
    position: relative;
}

.chart-title {
    color: #000;
    font-weight: bold;
    font-size: 25px;
    margin-left: 10px;
}

.d-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.widget-container {
    display: flex;
    border: 1px solid #eee;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 7px;
    background: #fff;
    border-radius: 10px;
    height: 100px;
}

.country-detail-info {
    text-align: center;
}

.info {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around !important;
}


.grid-widgets {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 10%;
    column-gap: 3%;
    width: 100%;
    justify-content: space-between;
}

.chart-circle {
    width: 100px;
    height: 100px;
}

.label {
    font-family: 'Source Sans Pro', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 13px;
    display: flex;
    align-items: center;
    letter-spacing: 1px;

    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    color: #797979;

}


.info .value {
    font-size: 17px;
}

#no-data {
    display: none;
}

#chart-no-data {
    text-align: center;
    padding: 40px 0px;
}

.keyval{
    color:#000;
    font-size: 20px;
}

/*** Footer ***/
footer{
    font-size: 17px;
    line-height: 30px;
}
footer > *{
    margin:7px 0px;
}
.redirect-to-home-page{
    text-align: center;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    margin-top: 30px;
}

.red{
    color:#FF5733;
    font-weight: bold;
}
.blue{
 color:#0096FF;
 font-weight: bold;
}

footer a {
    margin:0px 3px;
    color: rgb(26, 13, 171);

}
@media screen and (max-width: 800px) {
    .title {
        font-size: 20px;
        position: static;
        text-align: left;
        padding:0px 10px;
    }

    .grid-widgets {
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .label {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: normal;
    }

    .value {
        font-size: 20px;
        text-align: right;
    }

    .d-flex {
        flex-direction: column;
        justify-content: flex-start;
    }

    .country-name {
        font-size: 18px;
    }

    .country-detail-info {
        width: 100%;
        display: flex;
        align-items: center;
    }

    .country-detail-info .value {
        font-size: 15px;
    }

    .chart-title {
        text-align: center;
        margin-top: 30px;
        margin-bottom: 0px;
        font-size: 17px;
    }

    .map-container {
        height: 300px !important;
    }

    .map-container svg {
        height: 300px !important;
    }
}

/*** SHARED ***/

.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}