@charset "utf-8";
body {
    overflow-y: scroll;
	overflow-x: hidden;
	background-color: #f8f8f8;
}
html, body {
}
body, div, p, h1, h2, h3, h4, ul, figure ,dl,dt,dd{
	margin: 0;
	padding: 0;
}

ol,ul,li{
  list-style: none;
  text-align: center;
  margin: 0 auto;
}

a{
	text-decoration: none;
	color: inherit;
}
p{
	flex-grow: 1;
}
h1{
	margin: 0;
	padding: 0;
}




.container {
  width: 100%;
  margin: 0 auto;
  text-align: center;
	max-width: 1170px;
    box-sizing: border-box;
}




@keyframes change-color-anim {
	0%,100%{
		background-color: #E62D82;
	}
	50%{
		background-color: #FF8600;
	}
}

dl.now dt{
	display: inline-block;
	color: #A7A7A7;
	margin-right: 1em;
}

dl.now dd{
	display: inline-block;
}


/* FILTERS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.filters {
  text-align: center;
  margin-bottom: 0.35rem;
	padding: 0;
}

.filters * {
  display: inline-block;
}

.filters label {
  padding: 0.5rem 1rem;
  margin-bottom: 0.25rem;
  border-radius: 2rem;
  min-width: 50px;
  line-height: normal;
  cursor: pointer;
  transition: all 0.2s;
	box-shadow: inset 1px 1px 1px #c6c6c6,
            inset -1px -1px 1px #ffffff;
}

.filters label:hover {
  background: #ffaa66;
  color: #fff;
}


/* FILTERED ELEMENTS (POSTS)
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.posts {
  margin: 0 auto;
	padding : 0 20px;
  width:100%;
  max-width: 1000px;
	display:flex;
flex-direction:column;
}
.posts h2{
	width: 100%;
	margin: 50px auto 10px auto;
	font-size: 2em;
}

p.date{
	color: #666;
	font-weight: bold;
	font-size: 1.2em;
	margin: 30px auto 10px auto;
}
p.info{
	color: #333;
	font-weight: normal;
	font-size: 0.8em;
	margin-bottom: 0px;
}



.yearblock{
display: inline-block;
	flex-direction: row;
	width: 100%;
	margin: 0 auto;
}
.history_img{
	max-width: 300px;
	margin: 10px auto;
}
.history_img img{
	width: 100%;
}

.toggle_wrap{
	height:auto;
	text-align: right;
	display: flex;
	justify-content: flex-end;
	margin-bottom: 20px;
background: #4F64AE;
box-shadow:  inset 3px 3px 2px #4F64AE,
             inset -3px -3px 2px #4F64AE;
	border-radius: 50px;
	margin: 0 auto 2rem ;
	max-width: 90%;
}
.toggle_wrap h2 {
text-align: center;
	
}
 
.toggle_wrap h2 span{
position: relative;
display: inline-block;
padding: 0 10px;
font-size: .8em;
color: #fff;
	margin-top: 10px;
}
      
.toggle_wrap h2 span::before{
position: absolute;
content: '';
top: 0;
right: 5px;
width: 5px;
height: 100%;
border: 1px solid #fff;
border-left: none;
}
 
.toggle_wrap h2 span::after{
position: absolute;
content: '';
top: 0;
left: 5px;
width: 5px;
height: 100%;
border: 1px solid #fff;
border-right: none;
}


.toggle_re{
  position: relative;
  width: 58px;
  height: 28px;
  margin: 5px 10px;
  border-radius: 50px;
  overflow: hidden;
  cursor: pointer;
box-shadow:  1px 1px 2px #888888,
             -1px -1px 2px #aaaaaa;
}
.toggle_re input[type=checkbox] {
  display: block;
}

.toggle_re:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #e9e9eb;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.toggle_re:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  display: block;
  border-radius: 50px;
  background: #f2f2f2;
box-shadow:  1px 1px 2px #888888,
             -1px -1px 2px #aaaaaa;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.toggle_re.checked:before {
  background: #E62F82;
}
.toggle_re.checked:after {
  left: 33px;
box-shadow:  1px 1px 2px #FFaa66,
             -1px -1px 2px #FFaa66;
}

