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;
}

html {font-family:'Share Tech Mono','Oxygen Mono',"Trebuchet MS",TrebuchetMS,sans-serif; background-color:#000;}
div.header{border-top:1px solid #404040; padding:2px 10px; line-height:1}
div.item {border-top:1px solid #202020; background:#000; color:#ffffff; padding:0.22em 0.6em; line-height:1.32;}
div.item.active {background:#1F5700;}
div.item_top {font-size:14pt; font-weight:bold;}
div.item_bott {font-size:10pt; font-weight:bold;}

header {
  color: white;
  background-color: #000;
}

.cards {
  display: grid;
  margin:0.2em 0;
  grid-gap: 0 0;
  }



@media all and (min-width:780px){
  .cards {
    grid-template-columns: repeat(8, 1fr);
  }
}

//@media all and (min-width:580px) and (max-width:939px){
//  .cards {
//    grid-template-columns: repeat(5, 1fr);
//    }
//  .cards article:nth-child(9) {
//    grid-column: span 2;
//    }
//  }

@media all and (min-width:400px) and (max-width:779px){
  .cards {
    grid-template-columns: repeat(4, 1fr);
  }
  //.cards article:nth-child(5) {
  //  grid-column: span 4;
  //  }
}

@media all and (min-width:320px) and (max-width:399px){
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .cards article:nth-child(8) {
    grid-column: span 2;
    }
}



@media all and (max-width:319px){
  .cards {
    grid-template-columns: repeat(2, 1fr);
    }
  //.cards article:nth-child(5) {
  //  grid-column: span 2;
  //  }
}


article {
  position: relative;
}

.button {
 display:inline-block;
 padding:0.5em 0.2em;
 border:0.1em solid #FFFFFF;
 margin:0.1em 0.1em 0.1em 0.1em;
 border-radius:0.25em;
 box-sizing: border-box;
 text-decoration:none;
 font-weight:300;
 font-size:75%;
 color:#FFFFFF;
 text-align:center;
 transition: all 0.2s;
 display: flex;
 justify-content: center;
}

.button.active {
 color:#000000;
 background:#ffffff;
}


.button:hover {
 color:#000000;
 background-color:#FFFFFF;
}

.followWrap {
  }

.followMeBar {
  background: #e64a19;
  border-radius:0.25em;
  font-weight:bold;
  padding:0.6em 0.6em;
  text-transform: uppercase;
  line-height:1.35;
  position: relative;
  z-index: 1;
  color: #fff;
  animation-duration: 20s;
}

.followMeBar.fixed {
  position: fixed;
  width: 100%;
  box-sizing: border-box;
  z-index: 1;
}

.followMeBar.fixed.absolute {
  position: absolute;
}

@keyframes up-right {
    0% {
        transform: scale(1);
        opacity: .25
    }
    50% {
        transform: scale (1, 5);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: .25;
    }
}
.circle {
    border-radius: 50%;
    width: 8px;
    height: 8px;
    opacity: .25;
}
.red {
    background-color: red;
    position:absolute;
    z-index:0;
    -webkit-animation: up-right 1s infinite;
    -moz-animation: up-right 1s infinite;
    -o-animation: up-right 1s infinite;
    animation: up-right 1s infinite;
}