﻿ 
.button {
background-color: #6698FF;
border: none;
color: white;
padding: 1% 4%;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 1% 2%;
cursor: pointer;
width:45%;
}
#megaStore {
width: 100%;
margin: 0px;
padding-top: 5px;
float: right;
font-size: 14px;
}
#menu h2 {
font-size: 3em;
text-transform: uppercase;
/*padding: 2px 2px;*/
}
#template img {
margin: 2px 2px 0 0;
float: left;
}
#template {
width: 380px;
}
#template ol {
float: left;
margin: 0 0 0 2px;
padding: 2px 2px 0 2px;
}
#template:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
#template .k-button {
float: left;
clear: left;
margin: 2px 0 2px 2px;
}   
/* NOTE: The styles were added inline because Prefixfree needs access to your styles and they must be inlined if they are on local disk! */
* {
box-sizing: border-box;
}
img {
max-width: 100%;
/*display: block;*/
margin: auto;
}
.icon {
display: inline-block;
width: 1em;
height: 1em;
fill: currentColor;
}
body {
font-family: 'Open Sans', sans-serif;
background: #fff;
font-size: 16px;
}
.pen-wrapper {
display: flex;
width: 100%;
/*height: calc(100vh - 160px);
min-height: 500px;*/
/*justify-content: center;*/
align-items: center;
}
.pen-title {
text-align: center;
font-size: 20px;
line-height: 40px;
padding: 20px 0;
}
.nav {
position: relative;
width: 150px;
height: 71px;
}
.nav__inner {
position: absolute;
top: 3px;
left: 82%;
width: 54%;
height: 67px;
padding: 0px;
border-radius: 75px;
overflow: hidden;
background: #fff;
box-shadow: inset 0px 0px 12px rgba(0, 0, 0, 0.15);
transition: height .3s ease-in;
}

input:checked + .menu-button + .nav__inner {
height: 175px;
}

.nav__avatar {
position: relative;
overflow: hidden;
}
.nav__avatar, .nav__avatar img {
border-radius: 10%;
}
.menu-button__input {
display: none;
}
.menu-button {
position: absolute;
right: -35%;
top: 0;
z-index: 2;
display: block;
width: 28px;
height: 26px;
border-radius: 50%;
box-shadow: inset 0px 0px 11px 0px white;
background: linear-gradient(#ff4184 0%, #ff005a 100%, #ff005a 100%);
transform: scale(0.1);
opacity: 0;
transition: transform .3s ease-in, opacity .3s ease-in;
cursor: pointer;
}
.touch .menu-button, .nav:hover .menu-button, input:checked + .menu-button {
transform: scale(1);
opacity: 1;
}
.menu-button__icon {
position: absolute;
top: 50%;
left: 50%;
width: 25px;
height: 20px;
transform: translate3d(-50%, -50%, 0);
}
.menu-button__icon-strip {
top: 50%;
margin-top: -2px;
}
.menu-button__icon-strip, .menu-button__icon-strip:before, .menu-button__icon-strip:after {
position: absolute;
left: 0;
display: block;
width: 100%;
height: 4px;
border-radius: 4px;
background-color: #fff;
transition: transform .3s ease, top .3s ease, bottom .3s ease, opacity .3s ease;
}
.menu-button__icon-strip:before, .menu-button__icon-strip:after {
content: '';
transform-origin: center;
}
.menu-button__icon-strip:before {
top: -7px;
margin-top: -2px;
}
.menu-button__icon-strip:after {
bottom: -7px;
margin-bottom: -2px;
}
input:checked + .menu-button .menu-button__icon-strip {
background-color: rgba(255, 255, 255, 0);
}
input:checked + .menu-button .menu-button__icon-strip:before {
top: 50%;
transform: rotate(45deg);
}
input:checked + .menu-button .menu-button__icon-strip:after {
bottom: 50%;
transform: rotate(-45deg);
}
.nav-list {
width: 100%;
margin: auto;
margin-bottom: 20px;
}
.nav-list__item {
margin-top: 20px;
opacity: 0;
text-align: center;
transition: opacity .3s ease-in;
}
input:checked + .menu-button + .nav__inner .nav-list__item {
opacity: 1;
}
input:checked + .menu-button + .nav__inner .nav-list__item:nth-child(1) {
transition-delay: 0.1s;
}
input:checked + .menu-button + .nav__inner .nav-list__item:nth-child(2) {
transition-delay: 0.2s;
}
input:checked + .menu-button + .nav__inner .nav-list__item:nth-child(3) {
transition-delay: 0.3s;
}
input:checked + .menu-button + .nav__inner .nav-list__item:nth-child(4) {
transition-delay: 0.4s;
}
.nav-list__url {
color: #6d6e76;
transition: color .3s ease;
cursor: pointer;
}
.nav-list__url:hover {
color: #ff0b61;
}
.nav-list__icon {
font-size: 30px;
}
    
    
