#eggTemplate, #prizeTemplate {
    display: none;
}

.eggs, .prizes {
    display: flex;
    width: 100%;
    align-content: start;
    justify-content: space-evenly;
    flex-wrap: wrap;
    flex: 1 0 auto;
}

.prizes {
    //gap: 0px;
}

.eggInv {
    display: flex;
    align-items: center;
    align-content: space-around;
    position: relative;
    width: 20%;
    height: auto;
    overflow: hidden;
}

.prizes .eggInv {
    width: 25%;
}

.eggInv img {
    width: 100%;
    height: auto;
}

.eggImg, .prizeImg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/eggs.svg");
    background-repeat: no-repeat;
    background-size: auto 500%;
    overflow: hidden;
    filter: grayscale(100%) brightness(0%);
    -webkit-filter: grayscale(100%) brightness(0%);
}

.prizeImg {
    background-image: url("../images/prizes.svg");
}

.eggNum {
    position: absolute;
    width: 100%;
    color: white;
    text-align: center;
    font-size: min(48px, 8vw);
}

.eggInv.found .eggNum {
    //color: black;
    text-shadow: 2px 2px black;
}

.eggInv.found .eggImg, .eggInv.found .prizeImg {
    filter: none;
    -webkit-filter: none;
}

.invHead {
    width: 100%;
    text-align: center;
    border-bottom: 2px solid black;
    padding-bottom: 10px;
}

.invHead.raffle {
    padding-top: 30px;
}