html,body{
    background: #feffb8;
    color: #3c2389;
    padding: 0;
    margin:0;
    font-family: 'Roboto','Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
}
button,
button:hover,
button:focus{
    background: none;
    border:none;
    outline:none;
    border-radius: 0;
    padding:0;
    margin:0;
    cursor: pointer;
}
img,
button,
label{
    user-select: none;
}

body{
    padding-top: 50px;
}

mark{
    background: none;
    color:#f5277a;
}

header{
    height: 50px;
    display: block;
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    background: #f5297adb;
}

.header-funcon{
    position: absolute;
    right: 10px;
    width: 27px;
    top: 5px;
}

#menu{
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    top: 6px;
    left: 5px;
    border-radius: 100%;
    
}
#menu:focus,
#menu:hover{
    border: solid 2px #3c2389;
}
#menu[data-open="true"]{
    background: #feffb8
}
#menu img{
    height:75%;
    width:75%;
}

nav{
    display: block;
    position: fixed;
    transition: all ease-in-out 500ms;
    width: 100%;
    height: 100%;
    height: calc( 100vh - 50px);
    margin-left: -100vw;

    background:#3c2389;
    color: #feffb8;
    overflow: hidden;

}
@media only screen and (min-width: 400px) {
    nav{
        width: 400px;
        margin-left:-400px; 
    }
}
nav[data-open="true"]{ margin-left:0;}


nav div.form{
    margin:20px 10px 0 10px;
    display: block;
    width:calc(100% - 20px);
}
nav label{
    font-size: 1em;
    display: block;
    letter-spacing: 1px;
    padding:0;
    margin:0 0 10px 0;
}
nav label::after{
    content:':';
}

nav div.form div.input-and-controls{
    display: flex;
    flex-wrap: wrap-reverse;
    align-items: center;
    justify-content: space-between;
}

nav input{
    background: inherit;
    color:inherit;
    border:none;
    display: block;
    font-size: 2em;
    width:45%;
    -moz-appearance: textfield;
    /* border-right: #feffb8 solid 1px; */
}
nav input:hover,
nav input:focus{
    outline:none;
}
nav input::-webkit-outer-spin-button,
nav input::-webkit-inner-spin-button{
    margin:0; display: none;
}

nav div.form div.input-and-controls div{
    width: 45%;
    min-width: 105px;
    text-align: right;
}

nav div.form div.input-and-controls button{width: 50px;height: 50px;}
nav div.form div.input-and-controls button img[data-clicked]{ display: none; }
nav div.form div.input-and-controls button:active img{ display: none; }
nav div.form div.input-and-controls button:active img[data-clicked]{ display: inline; }

nav div.form div.input-and-controls button img{
    width:50px;
}


#butInstall{
    color:inherit;
    position: absolute;
    bottom: 65px;
    left:calc(10% - 2px);
    padding: 10px 20px;
    border: #feffb8 2px solid;
    display: block;
    width: 80%;
    font-size: 1em;
    text-transform: uppercase;
    font-weight: bold;
}
#butInstall:hover,
#butInstall:focus{
    outline: 5px #feffb8 solid;
}
#butInstall:active{
    background-color: #f5277a;
}

#butInstall img{
    width: 0.7em;
}



main{
    padding-bottom: 50px;
}

#controls{
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

#roll{
    color:#3c2389;
    border:#3c2389 solid 2px;
    height: 125px;
    width: 125px;
    border-radius: 100%;
    text-transform: uppercase;
    font-size: 1.5em;
    font-weight: 600;
}
#roll:hover,
#roll:focus{
    border-width: 5px;
    height: 130px;
    width:130px;
    font-weight: 1000;
}
#roll:active{
    background-color: #f5277a;
    color:#feffb8;
    border-color: #f5277a;
}

div.roll::before{
    content:"";
    display: block;
    height: 0;
    border-top:solid 1px #dcd6ec;
    width:80%;
    margin: auto auto 15px auto;
}
div.roll{
    margin-top: 15px;
    
}
div.roll div{
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}
div.roll div img{
    width:250px;
}
div.roll div div{
    display:block;
    text-align: center;
}
div.roll div div img{
    width:10px;
    margin: 0 5px;
}