body {
    font-family: monospace;
    color: white;
}

#terminal{
    position: relative;
    top: 1vh;
    display: flex;
    height: 97.5vh;
    width: 98vw;
    margin: 0 auto;
    background: radial-gradient(rgba(45,103,149,0.5), rgba(2,16,39, 1) 80%), repeating-linear-gradient(rgba(255,255,255,0.15), rgba(255,255,255,0.15) 1px, transparent 1px, transparent 3px);
    border: 1px solid rgb(45,103,149);
    border-radius: 25px;
}

#terminal1{
    cursor: pointer;
}

.terminals{
    flex: 1 1 0;
    width: 0;
    margin: 20px;
}

.terminals div {
    font-family: monospace;
    color: white;
    margin-left: 15px;
    margin-top: 15px;
}

.mapedges{
    margin: auto;
    margin-top: 18px;
    width: 90%;
    border: 1px solid rgb(45,103,149);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0px 0px 55px 55px rgba(2,16,39, 1) inset;
}

}

#map{
    visibility: visible;
    height: auto;
}

#tableBottom{
    display: block;
}

table tr td{
    width:120px;
    vertical-align: top;
}

.zoomButton{
    display: none;
}

#flag{
width: 60px;
    height: 40px;
    margin-left: 0px;
    background-repeat: no-repeat;
    background-size: 60px;
    background-position: center;
    box-shadow: 0px 0px 8px 5px rgba(2,16,39, 1);
}

/*#countryflag{
    display: inline-block;
    margin: auto;
    width: 30%;
}

#cityflag{
    display: inline-block;
    margin: auto;
    width: 30%;
}*/

#countrydescription{
    display: inline-block;
    margin: auto;
    width: 50%;
    font-size: 8px;
}

#wikiInfoModal{
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    margin-top: -20vh;
    margin-left: -25vw;
    height: 45vh;
    width: 50vw;
    background: radial-gradient(rgba(45,103,149,0.5), rgba(2,16,39, 1) 80%), repeating-linear-gradient(rgba(255,255,255,0.15), rgba(255,255,255,0.15) 1px, transparent 1px, transparent 3px);
    border: 1px solid rgb(45,103,149);
    border-radius: 25px;
    overflow: hidden;
}

#closeButton {
    position: absolute;
    font-family: monospace;
    color: white;
    top: 15px;
    right: 15px;
    font-weight: bold;
}

#closeButton:hover{
    cursor: pointer;
}

#wikiInfoTitle{
    margin-top: 25px;
    margin-bottom: 25px;
}

#infoimg{
    height: 35vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 8px 5px rgba(2,16,39, 1);
}

#wikiInfoDescription{
    padding-right: 10px;
}

#modaldescription{
    height: 32vh;
    width: 20vw;
    padding:15px;
    overflow-x: hidden;
    overflow-y: scroll;
    font-size: medium;
}


/* width */
::-webkit-scrollbar {
  width: 5px;
  opacity: 0.5;
}

/* Track */
::-webkit-scrollbar-track {
  /*background: rgb(0,255,0);*/
  opacity: 0; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(45, 103, 149); 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgb(2,16,39); 
}

.showColumn{
    max-width:0vw;
    overflow: hidden;
   -webkit-animation: slidein 2.5s ease 0s forwards;
   -o-animation: slidein 2.5s ease 0s forwards;
   -ms-animation: slidein 2.5s ease 0s forwards;
    animation: slidein 2.5s ease 0s forwards;
}

.hideColumn{
    max-width:20vw;
    overflow: hidden;
   -moz-animation: hide 1.25s ease 0s forwards;
   -webkit-animation: slide 1.25s ease 0s forwards;
   -o-animation: slide 1.25s ease 0s forwards;
   -ms-animation: slide 1.25s ease 0s forwards;
    animation: slide 1.25s ease 0s forwards;
}

.fadein {
    visibility: visible;
    opacity: 1;
    transition: opacity 2.5s linear;
}

.fadeout {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 2s, opacity 2s linear;
}

.displayBlock{
    display: block;
}

.displayNone{
    display: none;
}

.growImg{
    max-width:40vw;
    width: 40vw;
    overflow: hidden;
   -webkit-animation: growimg 2.5s ease 0s forwards;
   -o-animation: growimg 2.5s ease 0s forwards;
   -ms-animation: growimg 2.5s ease 0s forwards;
    animation: growimg 2.5s ease 0s forwards;
}

.shrinkImg{
    max-width:20vw;
    width: 40vw;
    overflow: hidden;
   -webkit-animation: shrinkimg 1.25s ease 0s forwards;
   -o-animation: shrinkimg 1.25s ease 0s forwards;
   -ms-animation: shrinkimg 1.25s ease 0s forwards;
    animation: shrinkimg 1.25s ease 0s forwards;
}

/* Safari and Chrome */
@-webkit-keyframes slide
{
    from {max-width: 20vw;}
    to {max-width: 0vw;}
}

/* Safari and Chrome */
@-moz-keyframes slide
{
    from {max-width: 20vw;}
    to {max-width: 0vw;}
}

@keyframes slide
{
    from {max-width: 20vw;}
    to {max-width: 0vw;}
}

@-webkit-keyframes slidein
{
    from {max-width: 0vw;}
    to {max-width: 20vw;}
}

/* Safari and Chrome */
@-moz-keyframes slidein
{
    from {max-width: 0vw;}
    to {max-width: 20vw;}
}

@keyframes slidein
{
    from {max-width: 0vw;}
    to {max-width: 20vw;}
}

/* Safari and Chrome */
@-webkit-keyframes growimg
{
    from {max-width: 20vw;}
    to {max-width: 40vw;}
}

/* Safari and Chrome */
@-moz-keyframes growimg
{
    from {max-width: 20vw;}
    to {max-width: 40vw;}
}

@keyframes growimg
{
    from {max-width: 20vw;}
    to {max-width: 40vw;}
}

@-webkit-keyframes shrinkimg
{
    from {max-width: 40vw;}
    to {max-width: 20vw;}
}

/* Safari and Chrome */
@-moz-keyframes shrinkimg
{
    from {max-width: 40vw;}
    to {max-width: 20vw;}
}

@keyframes shrinkimg
{
    from {max-width: 40vw;}
    to {max-width: 20vw;}
}