.hoopooe-icon {
    width: 55px;
    transform-origin: center bottom;
    /*animation: grow 2s ease-out forwards, sway 1s ease-in-out infinite alternate;*/
    margin-left: 5px;
    margin-right: 5px;
}

.hoopooe-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    .hoopooe-switch .switch-input {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .hoopooe-switch .switch-slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ccc;
        transition: .4s;
        border-radius: 34px;
    }



        .hoopooe-switch .switch-slider:before {
            position: absolute;
            content: "";
            height: 26px;
            width: 26px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }


    .hoopooe-switch .switch-input:checked + .switch-slider {
        background-color: #73d179;
    }

        .hoopooe-switch .switch-input:checked + .switch-slider:before {
            transform: translateX(26px);
        }

@keyframes grow {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

@keyframes sway {
    from {
        transform: rotate(-10deg);
    }

    to {
        transform: rotate(10deg);
    }
}