.video-gif{
    box-shadow: 0 0 10px 5px #FFF;
    width: 100%;
    height: 100%;
}

#calculate-layer input::-webkit-outer-spin-button,
#calculate-layer input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#calculate-layer  input[type=number] {
    -moz-appearance: textfield;
}

.gender-control input {
    display: none;
}

.gender-control img {
    width: 70%;
}

.gender-control img.selected {
    display: none;
}

.gender-control input:checked + div > img.selected {
    display: inline-block;
}

.gender-control input:checked + div > img.unselected {
    display: none;
}

.cursor-pointer {
    cursor: pointer;
}

#numbers_area .numbers {
    width: 15%;
    text-align: center;
    font-weight: bold;
    color: #fff;
    font-size: 6rem;

    text-shadow: -3px -2px 0px #af159e,
    0px -3px 0 #af159e,
    2px -2px 0 #af159e,
    0px 3px 0 #af159e;
}

@media(max-width: 1001px){
    #numbers_area .numbers {
        font-size: calc(6vw + 20px)!important;
    }
}

.gender-form {
    text-align: center;
    padding-top: 7%;
}

.gender-form input {
    transform: scale(1.5);
    margin-right: 5px;
}

.gender-form label {
    margin-right: 5px;
}

.animateimgs .anm1 {
    animation-delay: -0.5s;
}

.animateimgs .anm2 {
    animation-delay: -1s;
}

.animateimgs .anm3 {
    animation-delay: -1.5s;
}

.animateimgs .anm4 {
    animation-delay: -2s;
}

.animateimgs .anm5 {
    animation-delay: -2.5s;
}

.animateimgs img {
    position: absolute;
    bottom: 0;
    animation: animationFrames ease-in-out 4s;
    animation-iteration-count: infinite;
    transform-origin: 50% 50%;
}

@keyframes animationFrames {
    0% {
        opacity: 0;
        transform: translate(-20%, -30%) rotate(0deg);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(0%, -1000%) rotate(-8deg);
    }
}
