/*---------------------------------@media display settings----------------------------------*/

@media only screen and (max-width: 600px) {
  .wider{
    width: 100% !important;
  }
}

/*----------------------------------------------Loading Spinner------------------------------------------------*/

#loader {
    border: 12px solid #f3f3f3;
    border-radius: 50%;
    border-top: 12px solid #444444;
    width: 70px;
    height: 70px;
    animation: spin 1s linear infinite;
}
  
@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}
  
.center {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

/*----------------------------------------------Map Sizing------------------------------------------------*/

html, body{
    margin: 0;
    padding: 0;
}

html, body { 
    height: 100%;
    width: 100%;
    overflow: hidden;
    } 

h3 {
    padding-left: 10%;
    padding-right: 10%;
    color: whitesmoke;
}

#map{
    z-index: 0;
    height:100%;  /* needs adjusting along with body height to fit nav and map perfectly */
    width: 100%;
}

/*----------------------------------------------Navbar------------------------------------------------*/
nav{
    z-index: 1000;
    position:fixed;
}
#mynavbar{
    justify-content: center;
}
.navbar-brand{
    font-family: fantasy;
    letter-spacing: .5rem;
    padding-left: 5px;
}

#country-select{
  z-index: 1000;
  margin:auto;
  width: 25%;
  /* position:fixed; */
  
}

/*---------------------------------General Card Styling----------------------------------*/

#cardycard, #topCard, #cardycardNews{
    /* text-align: left; */
    margin: .5rem;
    background-color: white;
    color:black;
}

/*---------------------------------Card 1 Styling----------------------------------*/

/* .card-title{
    text-decoration: underline;
    text-align: center;
}

#flag{
    text-align: center;
} */
/*---------------------------------Card 2 Styling----------------------------------*/

/* #icon{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 30%;
}
h5, h6{
    color: black;
    text-align: center;
} */
/*---------------------------------News Card Styling----------------------------------*/
/* #cardycardNews {
  text-align: center;
}

#author, #author2, #author3{
  text-align: left;
  color: darkgrey;
}

.but {
  border-radius: 4px;
} */

/*--------------------------------- Modal General ----------------------------------*/

.modal{
  margin: auto;
}

/*--------------------------------- Table & Modal One --------------------------------------*/
#modal-title{
  text-align: center !important;
} 

.col3{
   text-align: right;
 }

 /*--------------------------------- Table Two --------------------------------------*/
#icon0{
  height: 80%;
  width: 80%;
}
#t2r1c2{
  display: table-cell;
  vertical-align: middle;
}

.wIcon{
  text-align: right;
}

.wIcon2{
  text-align: center;
}

#modalTwoTitle{
  text-align: center;
}
/*--------------------------------- Table Three --------------------------------------*/
.newsImage{
  max-width: 70%;
}

img.newsImage:hover {
  transition-timing-function: ease-in-out;
  transition-duration: 1.5s;
  transform: scale(1.1);
  }
/*--------------------------------- Table Four --------------------------------------*/

.wikiLinks{
  text-decoration: none;
}
/* unvisited link */
a:link {
  color: black;
}
/* visited link */
a:visited {
  color: black;
}
/* mouse over link */
a:hover {
  color: grey;
}
/* selected link */
a:active {
  color: black;
}

