background: -moz-linear-gradient(top, #259ad1 -24%, #FFF 123%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#259ad1), color-stop(100%,#FFF));
background: -webkit-linear-gradient(top, #259ad1 -24%,#FFF 123%);
background: linear-gradient(to bottom, #259ad1 -24%,#FFF 123%);
border-radius: 100% 100% 90% 90%;
background: -webkit-radial-gradient(100px 50px, circle, $head-color, ($head-color - 100));
background: -moz-radial-gradient(100px 50px, circle, $head-color, ($head-color - 100));
background: radial-gradient(100px 50px, circle, $head-color, ($head-color - 100));
background-color: rgba(255, 255, 255, 0.85);
box-shadow: inset 0px -11px 24px -2px rgba(241, 111, 92, 0.44);
background-color: rgba(255, 255, 255, 0.85);
background-color: rgba(255, 255, 255, 0.85);
background-color: $face-color;
border-radius: 50% 50% 41% 41%;
box-shadow: inset 1px -6px 22px -7px rgba(0, 0, 0, .74),
inset 0px 7px 24px -7px rgba(207, 139, 53, 0.5),
inset 0px -28px 24px -7px rgba(207, 139, 53, 0.5);
border-top: 2px solid #7A121A;
background-color: $eyes-color;
background-color: rgba(255, 255, 255, 0.5);
background: -webkit-gradient(linear, left top, right top, color-stop(0%,#1B991B), color-stop(17%, rgba(149, 233, 149, 0.82)), color-stop(28%,#52b152), color-stop(49%,#008a00), color-stop(74%,#005700));
background: -webkit-linear-gradient(left, #1B991B 0%, rgba(149, 233, 149, 0.82) 17%,#52b152 28%,#008a00 49%,#005700 74%);
background: linear-gradient(to right, #1B991B 0%, rgba(149, 233, 149, 0.82) 17%,#52b152 28%,#008a00 49%,#005700 74%);
box-shadow:inset 0px 3px 1px 0px #165816, inset 0px -36px 54px 6px rgba(32, 83, 32, 0.27);
box-shadow: inset 0 4px 2px -2px rgba(39, 165, 39, 0.46),
inset 0 3px 2px 1px rgba(12, 85, 12, .74),
inset 0 1px 2px 1px rgba(39, 165, 39, 0.74);
border: 1px solid #7E5E2E;
background-color: #9E7537 ;
background-image: linear-gradient(45deg, #916B33 25%, transparent 25%, transparent 75%, #916B33 75%, #916B33),
linear-gradient(45deg, #916B33 25%, transparent 25%, transparent 75%, #916B33 75%, #916B33);
background-size:70px 70px;
background-position: 0 0, 35px 35px;
box-shadow: inset 0 2px 1px 2px #C09149,
inset 0 -31px 27px 5px rgba(109, 82, 42, 0.32);
border: 1px solid #7E5E2E;
background-color: #9C773D;
box-shadow: inset 0 4px 1px 2px #C09149;
@mixin animation-name($name) {
-webkit-animation-name: $name;
-moz-animation-name: $name;
-ms-animation-name: $name;
@mixin animation-duration($name) {
-webkit-animation-duration: $name;
-moz-animation-duration: $name;
-ms-animation-duration: $name;
animation-duration: $name;
@mixin animation-timing-function($name) {
-webkit-animation-timing-function: $name;
-moz-animation-timing-function: $name;
-ms-animation-timing-function: $name;
animation-timing-function: $name;
@mixin animation-iteration-count($name) {
-webkit-animation-iteration-count: $name;
-moz-animation-iteration-count: $name;
-ms-animation-iteration-count: $name;
animation-iteration-count: $name;
@mixin animation-direction($name) {
-webkit-animation-direction: $name;
-moz-animation-direction: $name;
-ms-animation-direction: $name;
animation-direction: $name;
@mixin animation-delay($name) {
-webkit-animation-delay: $name;
-moz-animation-delay: $name;
-ms-animation-delay: $name;
@mixin animation-play-state($name) {
-webkit-animation-play-state: $name;
-moz-animation-play-state: $name;
-ms-animation-play-state: $name;
animation-play-state: $name;
@mixin animation-fill-mode($name) {
-webkit-animation-fill-mode: $name;
-moz-animation-fill-mode: $name;
-ms-animation-fill-mode: $name;
animation-fill-mode: $name;
@mixin keyframes($name) {
@-webkit-keyframes $name { @content; }
@-moz-keyframes $name { @content; }
@-ms-keyframes $name { @content; }
@keyframes $name { @content; }
@include keyframes (walk) {
@include animation-direction(alternate);
@include animation-fill-mode(forwards);
@include animation-name(walk);
@include animation-duration(3s);
@include animation-timing-function (linear);
@include animation-iteration-count (infinite);