#book .moustache {
    width: 100%;
    height: 30px;
    /*border: 1px solid black;*/
    position: relative;
    top: 40px;
}

#book .eggers:hover {
    animation: wiggle 0.3s;
}

@keyframes wiggle {
    0% {
        transform: rotate( 0deg );
    }

    20% {
        transform: rotate( -10deg );
    }

    40% {
        transform: rotate( 10deg );
    }

    60% {
        transform: rotate( 5deg );
    }

    80% {
        transform: rotate( -5deg );
    }

    90% {
        transform: rotate( 0deg );
    }
}

#book .moustache__left {
    position: absolute;
    left: -10%;
    top: -40%;
    
    width: 48px;
    height: 24px;
    background-color: transparent;
    
    /*transform: rotate(-30deg);*/
    border-color: #0e0e0e;
    border-style: solid;
    border-width: 0px 0px 25px 0px;
    border-radius: 100%;
    transform: scale(-1, 1) rotate(-30deg);
    margin-right: -10px;
    z-index: -1;
    
    /*overflow: hidden;*/
}

#book .moustache__left.last-child {
    position: absolute;
    left: 40%;
    top: -40%;
    transform: rotate(-30deg);
}

#book .moustache__right:before,
#book .moustache__left:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    background: #0e0e0e;
    border: 9px solid #0e0e0e;
    border-radius: 100%;
    width: 6px;
    height: 6px;
}

#book .moustache__right:before {
    left: 50%;
}

#book .moustache__left:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #fff;
    border-radius: 100%;
    width: 25px;
    height: 25px;
}


#book .glasses {
    /*border: 1px solid green;*/
    position: relative;
    top: 20px;
    left: 0;
    width: 100%;
    height: 20px;
}

#book .glasses__left {
    position: absolute;
    width: 40%;
    height: 120%;
    
    left: -10%;
    top: 0;
    
    border: 5px solid black;
    /*border-radius: 50%;*/
    background-color: white;
    z-index: 1;
}

#book .glasses__right {
    position: absolute;
    width: 40%;
    height: 120%;
    
    right: -10%;
    top: 0;
    
    border: 5px solid black; 
    /*border-radius: 50%;*/
    background-color: white;
}

#book .glasses__middle {
    width: 80%;
    height: 0;
    border: 5px solid black;
    
    position: absolute;
    top: 65%;
}

#book .glasses__eye {
    height: 5px;
    width: 5px;
    border-radius: 50%;
    background-color: black;
    border: 1px solid black;
    
    position: absolute;
    top: 40%;
    left: 40%;
}
#book .eggers {
    position: relative;
    height: 200px;
    width: 200px;
    /*border: 1px solid black;*/
    background: transparent;
}

#book .eggers * {
    box-sizing: content-box !important;
}

#book .eggers__rotate {
    width: 0px;
    height: 45px;
    border: 1px solid black;
    position: relative;
    top: 23px;
    left: 87px;
    border-radius: 5px;
    transform: rotate(75deg);
    background-color: white;
    z-index: 9;
}

#book .eggers__face {
    background-color: transparent;
    width: 70px;
    height: 90px;
    border: 1px solid black;
    border-bottom: 1px solid transparent;
    border-radius: 5px;
    top: 50px;
    left: 65px;
    position: absolute;
}

#book .eggers__chin {
    border: 1px solid transparent;
    border-bottom: 1px solid black;
    border-right: 1px solid black;
    width: 60px;
    height: 50px;
    background-color: transparent;
    transform: rotate(45deg);
    
    position: absolute;
    left: 0px;
    top: 60%;
    border-radius: 30%;
}





