
.noImageCard {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  padding: 2rem;
  color: #aaa;
}

.imageCard {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.rowContainer {
  width: 100%;
  display: flex;
}

.imageContainer {
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  flex: 1;
  margin: 0.5rem;
  padding: 0.5rem;
}

.cardContainer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  z-index: 4;
}

.card {
  background: #fff;
  border-radius: 0.5rem;
  padding: 0 1rem 1rem 1rem;
  overflow: auto;
  max-width: 60rem;
  min-width: 20rem;
  position: relative;
}

.cardCloseButton {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  height: 1rem;
  width: 1rem;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
}

.cardTitle {
  display: flex;
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.9);
  padding: 1.5rem 0.5rem 0.5rem 0.5rem;
  margin-top: 0;
}

.countryName {
  flex: 1 0 auto;
  padding-left: 2rem
}

.visitText {
  flex: 0 1 auto;
  padding-right: 2rem;
}

.visitTextHighlight {
  color: #ccc;
  font-size: 0.7rem;
}

.countryTextHighlight {
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.7);
  background: rgba(0,0,0,0.5);
  padding: 0.5rem;
  border-radius: 0.2rem;
}

.header {
  height: 3rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.1);
  z-index: 2;
  display: flex;
  align-items: center;
}

.navSpacer {
  flex: 1;
}

.navItem {
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  position: relative;
  text-transform: capitalize;
}

.navItem.selected {
  color: #ff850c;
}

.navItem::after {
   right: 0;
   position: absolute;
   height: 50%;
   content: '';
   width: 2px;
   background: rgba(255,255,255,0.3);
}

.navItem:hover {
  color: rgba(255,255,255,0.3);
}

.navItem:last-child {
  margin-right: 3rem;
}

.navItem:last-child::after {
  visibility: hidden;
}

@media (max-width: 900px) {
  .rowContainer {
    flex-direction: column;
  }
}
