/*!*************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/index.scss ***!
  \*************************************************************************************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Teko:wght@600&display=swap);
/*!*****************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/index.scss (1) ***!
  \*****************************************************************************************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Roboto&display=swap);
/*!****************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./src/style/reset.scss ***!
  \****************************************************************************************************/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*!****************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./src/style/stats.scss ***!
  \****************************************************************************************************/
.stats_container {
    #stats {
        display: flex;
        flex-direction: column;
        color: #29DEF2;
        box-sizing: border-box;

        #stats-ul {
            padding: 0em 0.5em;
            box-sizing: border-box;

            .stats-item {
                display: grid; /* enables grid layout */
                grid-template-columns: 30% 15% 30%; /* sets the width of the two columns to be 50% each */

                padding: 3%;
                border-bottom: 1px outset #3B848C;
                margin-right: 10px;
                font-size: 1vw;
            }

            li :first-child {
                text-align: right;
                margin-right: 20%;
                font-weight: 700;
            }
        }
    }
}

@media only screen and (max-width: 390px) {
    .stats_container #stats #stats-ul .stats-item {
        grid-template-columns: 3fr 2fr 1fr;
        font-size: 2vw;
    }
}

.selectable {
    cursor: pointer;
}

.selectable:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/*!***************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./src/style/body.scss ***!
  \***************************************************************************************************/
body {
    background-color: #010D00;
    font-family: 'Inconsolata', monospace;
}

#container {
    display: flex;
    width: 100vw;
    height: 100vh;
}

@media only screen and (max-width: 390px) {
    #container {
        flex-direction: column;
    }
}

.state-name {
    opacity: 0; /* start with 0 opacity (fully transparent) */
    transition: opacity 3.5s; /* this will give a 0.5-second transition effect for the opacity */
}

h2 {
    font-size: 2vw;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    border-left: 5px solid #29DEF2;
    background-color: rgba(255,255,255,0.01);
    padding: 2%;
    margin-left: 0px;
    border-bottom: 1px groove #3B848C;
    color: #29DEF2;
}

/*!****************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./src/style/chart.scss ***!
  \****************************************************************************************************/
#chart {
    color: #29DEF2;
    font-family: 'Inconsolata', monospace;
    width: 100%;
}

/*!**************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./src/style/right-container.scss ***!
  \**************************************************************************************************************/
#map {
    width: 65vw;
    height: 100vh;
    position: relative;
}

@media only screen and (max-width: 390px) {
    #map {
        width: 100vw;
        height: 40vh;
    }
}

#chart_stats_container {
    color: #D9D9D9;
    display: grid;
    grid-template-rows: 3fr 3fr 1fr; /* Fixed row definitions */
    width: 35vw;
    height: 100vh;
    max-height: 100vh !important;
    box-sizing: border-box;


    .chart_container {
        width: 100%;
    }

    #links {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
        width: 100%;
        max-width: 100%;
        padding-left: 5px;
        padding-right: 15px;
        gap: 1%;
        box-sizing: border-box;
        flex-wrap: wrap;

        #logos_container {
            display: flex;
            justify-content: flex-end;
            gap: 1%;

            .logo_network {
                align-self: center;
                width: 5vw;
                height: 5vw;
                margin: 0em 1em;

                .logo_image {
                    width: 100%;
                    height: 100%;
                }
            }
        }
    }
}

@media only screen and (max-width: 390px) {
    #chart_stats_container {
        width: 100vw;
        height: 60vh;
    }
}

#chart_stats_container__container h1 {
    justify-self: flex-start;
    color: #25292e;
}

/*!****************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./src/style/model.scss ***!
  \****************************************************************************************************/
#info_button {
    position: absolute; /* Change this to absolute for positioning inside #map */
    right: 30px;
    top: 10px;
    color: gray;
    display: flex;
    align-items: flex-end;
    gap: 0.2rem;
    font-size: 0.5rem;
    cursor: pointer;
}

#modal {
    backdrop-filter: blur(40px);
    z-index: 1;
    height: 100vh;
    width: 100vw;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;

    #box-modal {
        background-color: #010D00;
        border: 1px groove #29DEF2;
        border-radius: 10px;
        width: 80vw;
        height: 85vh;
        position: fixed;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-shrink: initial;

        #box_mode__app_name_title {
            font-size: 60px;
            font-weight: 700;
            font-family: 'Inter', sans-serif;
            color: red;
            margin-top: 2%;
            font-family: 'Teko', sans-serif;

        }

        #modal_content {
            display: flex;
            flex-direction: row;
            height: 77% !important;

            #modal_imgs {
                width: 40%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                flex-wrap: nowrap;
                flex-shrink:initial;
                gap: 10%;
                box-sizing: border-box;


                #modal_map_image {
                    width: 70%;
                    border-radius: 10px;
                    box-shadow: 0 0 10px 0 #29DEF2;
                    box-sizing: border-box;
                    overflow: hidden;
                    display: flex;
                    align-items: center; /* Align items vertically in the center */
                    justify-content: center; /* Align items horizontally in the center */

                    .foobarr {
                        width: 70%;
                        height: 100%;
                    }
                }

                #modal_stats_image {
                    width: 70%;
                    border-radius: 10px;
                    box-shadow: 0 0 10px 0 #29DEF2;
                    box-sizing: border-box;
                    object-fit: contain;  /* Keeps the image's aspect ratio */
                    overflow: hidden;
                    display: flex;
                    align-items: center; /* Align items vertically in the center */
                    justify-content: center; /* Align items horizontally in the center */
                    margin: auto; /* Centers the container within its parent */

                    .foobarr {
                        width: 70%;
                        height: 100%;
                    }
                }


                #modal_chart_image {
                    width: 70%;
                    border-radius: 10px;
                    box-shadow: 0 0 10px 0 #29DEF2;
                    box-sizing: border-box;
                    overflow: hidden;
                    display: flex;
                    align-items: center; /* Align items vertically in the center */
                    justify-content: center; /* Align items horizontally in the center */
                    margin: auto; /* Centers the container within its parent */

                    .foobarr {
                        width: 70%;
                        height: 100%;
                    }
                }
            }

            #modal_text {
                display: flex;
                flex-direction: column;
                justify-content: space-around;
                align-items: start;
                width: 60%;
                font-family: 'Roboto', sans-serif;
                font-size: 1.5rem;
                padding-right: 6%;
                color: #29DEF2;


                #modal_inner_text {
                    display: flex;
                    flex-direction: column;

                    .first_word {
                        color: black;
                        padding: 5px;
                        border-radius: 2px;
                        background-color: #29DEF2;
                        margin-bottom: 5px;
                        width: fit-content;
                    }
                }
            }
        }

        #modal_button {
            font-size: 40px;
            border-radius: 5px;
            width: 20%;
            border: 1px groove #29DEF2;
            background-color: #010D00;
            color: #29DEF2;
            display: none;
            margin: 65px;

            &:hover {
                background-color: #29DEF2;
                color: #010D00;
            }
        }



    }
}

@media only screen and (max-width: 1400px) {
    #modal {
        #box-modal{
            #modal_content {
                #modal_text {
                    font-size: 0.8rem;
                }
            }
        }
    }
}

@media only screen and (max-width: 1300px) {
    #modal {
        #box-modal{
            #modal_button {
                font-size: 35px;
                margin: 60px;
            }
        }
    }
}


@media only screen and (max-width: 1300px) {
    #modal {
        #box-modal{
            #modal_button {
                font-size: 25px;
                margin: 50px;
            }
        }
    }
}

@media only screen and (max-width: 1000px) {
    #modal {
        #box-modal{
            #modal_content {
                #modal_text {
                    #modal_inner_text p {
                            display: none;
                    }
                }
            }
        }
    }
}

/*!******************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./src/style/loading.scss ***!
  \******************************************************************************************************/
.loading {
    color: #29DEF2;
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    margin: 50px;
    box-sizing: border-box;
  }

  .loading div {
    transform-origin: 40px 40px;
    animation: loading 1.2s linear infinite;
  }

  .loading div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3px;
    left: 37px;
    width: 6px;
    height: 18px;
    border-radius: 90%;
    background: #29DEF2;
  }

@media only screen and (max-width: 1400px) {
  .loading {
    width: 40;
    height: 30;

  }

  .loading div {
        transform-origin: 40px 30px;

        &:after{
          width: 3px;
          height: 15px;

        }
      }

}

  .loading div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
  }
  .loading div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
  }
  .loading div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
  }
  .loading div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
  }
  .loading div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
  }
  .loading div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
  }
  .loading div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
  }
  .loading div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
  }
  .loading div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
  }
  .loading div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
  }
  .loading div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
  }
  .loading div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
  }
  @keyframes loading {
    10% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }


/*!*****************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/index.scss (2) ***!
  \*****************************************************************************************************************************************/

