﻿/*
 * MENU BUTTON
 */
@import url("https://fonts.googleapis.com/css?family=Raleway:100i,400");

.menu__toggler {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 999;
  height: 28px;
  width: 28px;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center; 
}

.menu__toggler span,
.menu__toggler span::before,
.menu__toggler span::after {
  position: absolute;
  content: "";
  width: 28px;
  height: 2.5px;
  background: #fafafa;
  border-radius: 20px;
  transition: 500ms cubic-bezier(0.77, 0, 0.175, 1);
}
.menu__toggler span::before {
  top: -8px;
}
.menu__toggler span::after {
  top: 8px;
}
.menu__toggler.active > span {
  background: transparent;
}
.menu__toggler.active > span::before, .menu__toggler.active > span::after {
  7878background: #005c9c;  background: #ffff00; 
  top: 0px;
}
.menu__toggler.active > span::before {
  transform: rotate(-225deg);
}
.menu__toggler.active > span::after {
  transform: rotate(225deg);
}

/*
 * SLIDING MENU PANEL
 */
.menu {
  	font-family: "Raleway";
  position: absolute; top: 0; margin-top: 0px;
  left: -30%;
  z-index: 998;
  7878color: #005c9c;    777text-shadow: 0 1px 10px #000;  
  7878background: rgba(250, 250, 250, 0.7);    background: rgba(23, 21, 29, 0.7);
  -webkit-clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  width: 30%;
  height: 100%;
  padding: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 300ms left cubic-bezier(0.77, 0, 0.175, 1);
  	box-shadow: -1px 0px 3px 0px rgba(0, 0, 0, 0.75);
}

.menu a {
	color: #FFFFFF !important;
	}

.menu a:hover {
	color: #ffff00 !important;
	text-decoration: none;
	}

@media only screen and (max-width: 600px) {
  .menu {
    width: 250px;
    left: -250px;
    padding: 50px;
  }
}
.menu.active {
  left: 0;
}
.menu p { font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/*
 * BASIC STYLES
 */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}




/** STAMP **/

#miniature-stamp {
	display:flex; flex-direction: row; justify-content: center; align-items: center;
	}




/**********/

.visitor-counter {
	bottom: 0; 
	margin-bottom: 0px; 
	position: absolute;
	}