#footer{
    width: 600px;
    height: 103px;
    background-color: #006bd3;
    border-radius: 0 0 30px 30px;
    display: block;
    margin: 0 auto;
}
#frame{
    position: relative;
    display: block;
    margin: 0 auto;
}
#drawing1{
    top: 200px;
    position: absolute;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}
#drawing2{
    top: 200px;
    position: absolute;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}
#play{
    display: initial;
    width:300px;
    height:95px;
    background-color:#006bd3;
    border:0;
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 40px;
    border-radius: 0 0 0 30px;
    border-right: 3px solid white;
}

#check.show{
    display: initial !important;
}
#check.hide{
    display: none !important;
}
#play.hide{
    display: none !important;
}
#play.show{
    display: initial !important;
}
#sex-form.hide{
    display: none !important;
}
#sex-form.show{
    display: inline-block !important;
}
#reset.show{
    display: initial !important;
}
#reset.hide{
    display:none !important;
}
#check{
    display: none;
    width:600px;
    height:95px;
    background-color:#006bd3;
    border:0;
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 40px;
    border-radius: 0 0 30px 30px;
}
#reset{
    display: none;
    width:600px;
    height:95px;
    background-color:#006bd3;
    border:0;
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 40px;
    border-radius: 0 0 30px 30px;
}
[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    margin-top: 3px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline;
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin-right: 30px;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 3px;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: rgb(253, 63, 130);
    position: absolute;
    top:6px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    transform: scale(1);
}