
.eyes-wrapper {
    width: 80%;
    display: flex;
    justify-content: space-around;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.eyes-wrapper__inner {
    width: 40%;
    height: 125px;
    position: relative;
}
.eyes-wrapper__inner__eye--inner-wrapper {
    width: 75%;
    height: 75%;
}
.eyes-wrapper__inner__eye {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    background: #fff;
    background: radial-gradient(circle at 50% 40%, #fcfcfc, #efeff1 66%, #9b5050 100%);
    box-sizing: border-box;
}
.eyes-wrapper.angry .eyes-wrapper__inner__eye {
    background: radial-gradient(circle at 50% 40%, #fcfcfc, #ec8c98 66%, #9b5050 100%);
}
.eyes-wrapper__inner__eye__eyelid {
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    width: 100%;
    border-bottom: 1.5px solid rgba(50, 50, 50, 0.7);
    border-radius: 25%;
    height: 25%;
    animation-iteration-count: 10;
    z-index: 1;
    -webkit-box-shadow: inset 0px -8px 46px -13px rgba(204, 179, 151, 0.7);
    -moz-box-shadow: inset 0px -8px 46px -13px rgba(204, 179, 151, 0.7);
    box-shadow: inset 0px -8px 46px -13px rgba(204, 179, 151, 0.7);
    background: radial-gradient(circle at 50% 40%, green, darkseagreen 66%, darkgreen 100%);
    overflow: hidden;
}

.left {
    -ms-transform: rotate(20deg); /* IE 9 */
    transform: rotate(20deg); /* Standard syntax */
}

.right {
    -ms-transform: rotate(-20deg); /* IE 9 */
    transform: rotate(-20deg); /* Standard syntax */
}

.eyes-wrapper__inner__eye__eyelid.blink {
    animation: blink 0.1s cubic-bezier(0, 0.02, 0, 1.74);
}
.eyes-wrapper__inner__eye__eyelid-lower {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 50%;
    height: 10%;
    box-shadow: inset 0px 8px 46px -13px rgba(204, 179, 151, 0.7);
    background: radial-gradient(circle at 50% 40%, green, darkseagreen 66%, darkgreen 100%);
    border-top: 1.5px solid rgba(50, 50, 50, 0.7);

}
@keyframes blink {
    from {
        height: 20%;
    }
    to {
        height: 100%;
    }
}
.eyes-wrapper__inner__eye__iris-boundaries {
    height: 50%;
    width: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.eyes-wrapper__inner__eye__iris {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 40%, darkred, firebrick);
    z-index: 0;
    border: 0.5px solid rgba(54, 81, 102, 0.5);
    transition: all 0.1s linear;
}
.eyes-wrapper__inner__eye__iris::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 17.5px;
    height: 17.5px;
    background-color: #000;
    border-radius: 50%;
}
.eyes-wrapper__inner__eye__iris::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 7.5px;
    height: 7.5px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: 1;
}

