/* 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;
}
/* 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;
}


/* My custom stylesheet */

body {
  background-color: rgb(75, 10, 10);
  color: #fff;
  display: flex;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  flex-direction: column;
}

.title {
  display: flex;
  flex-direction: column;
  padding: 20px;
  margin: 0 auto;
  max-width: 680px;
}

.title h1 {
  font-size: 16pt;
}

.title h3 {
  color: #ccc;
  font-size: 13pt;
  padding-top: 14px;
}

.display-checked-container {
  padding-top: 14px;
}

.sticker-control {
  display: flex;
  flex-direction: column;
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
}

.country {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.country__top-bar {
  align-items: center;
  background-color: #004747;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  height: 36px;
  padding-left: 8px;
  z-index: 10;
}

.country__top-bar h5:before {
  padding-inline-end: 4px;
  content: '▼';
}

.country__top-bar.active h5:before {
  content: '▲';
}

.country__stickers {
  background-color: #006464;
  border-radius: 5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 10px 5px 5px 5px;
  margin-top: -5px;
}

.country__stickers.hidden {
  display: none;
}

.country__stickers span {
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
  color: #006464;
  cursor: pointer;
  display: flex;
  justify-content: center;
  margin: 4px;
  width: 48px;
  height: 48px;
}

.country__stickers span.active {
  background-color: #00acac;
  color: #fff;
}
