﻿    [type=radio] {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
    }

    /* IMAGE STYLES */
    [type=radio] + img {
        cursor: pointer;
    }

    /* CHECKED STYLES */
        [type=radio]:checked + img {
            background-image: url("../../../Content/images/ezy/selected.png");
            background-size: 100% 100%;
            animation: mymove 1s both;
        }

    .btn-next {
        background: #E44365;
        min-width: 154px;
        padding: 7px 24px;
        color: white;
        border-radius: 200px;
    }

@keyframes mymove {
    20% {
          opacity:0.7;
        }

        100% {
          opacity:1;
        }
    }
body{
    width:100vw;
    height:100vh;
    overflow-y:hidden;
}