.starsWrap {
    max-width: 300px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    gap: 5px;
}

.screen02 p:first-of-type {
    width: 400px;
    text-align: center;
    margin: auto;
    background-color: #000033d4;
    border-radius: 6px;
    font-size: 16px;
    line-height: 22px;
    padding: 10px 5px;
}

.replay {
    background-color: #0099ff;;
    color:#FFFFFF;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 6px;
    margin: 5px 0;
    text-align: center;
    font-weight:bold;
}

.replay:hover {
    background-color: #000033;
    color: #FFFFFF;
    cursor: pointer;
}

.clickswrap {
    max-width: 300px;
    margin: auto;
}

.star {
    position: relative;
    max-width: 95px;
    width: 100%;
}

    .star:hover {
        cursor: pointer;
        animation: pulse 0.9s infinite ease-out;
        -webkit-animation: pulse 0.9s infinite ease-out;
        z-index: 10;
    }

    .star img {
        border-radius: 10px;
    }

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.tile-disabled {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    cursor: not-allowed;
    opacity: 0.3;
    z-index: 5;
}

    .tile-disabled:hover {
        cursor: not-allowed;
        animation: none;
    }

.tile-selected {
    display: flex;
    align-items: center;
}

    .tile-selected img {
        /*opacity: 0.7;
        -webkit-filter: sepia(100%);
        filter: sepia(100%);*/
    }

    .tile-selected::after {
        content: "you've won";
        position: absolute;
        cursor: pointer;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 87%;
        background-color: #000033;
        color: #fff;
        font-size: 11px;

        text-transform: uppercase;
        border-radius: 0px 0px 60px 60px;
        top: 0;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;

    }

.clicks {
    color: #000;
    font-size: 16px;
    padding: 5px;
    border-radius: 6px;
    margin: 5px 0;
    text-align: center;
    font-weight:bold;
}

.avail {
    background-color: #f42fad;
    color: #FFFFFF;
}

.comp {
    background-color: #33ff00;
    color: #000033;
}

.promoModal .modal-content {
    background-image: url('../img/rewards-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 10px;
    background-color: #050f3e;
}

.promoModal .rewardInfo {
    min-height: 200px;
}

.promoModal h1 {
    font-size: 26px;
    color: #FFF;
}

.promoModal .btn-secondary {
    color: #fff;
    background-color: #8014a0;
    border-color: #8014a0;
}

.promoModal .rewardBlk {
    background-color: rgb(0 0 0 / 60%);
    color: #FFF;
    padding: 5px;
    border-radius: 10px;
    margin: 0 auto 10px;
}

    .promoModal .rewardBlk b, .promoModal .rewardBlk strong {
        color: #febf0d;
    }

.keyInfo {
    display: flex;
    width: 100%;
    background-color: rgba(0,0,51,0.8);
    padding: 10px;
    border-radius: 0 10px 10px 0;
    align-items: center;
}

    .keyInfo p {
        margin: 0;
    }

.rewardIcon {
    max-width: 200px;
    margin: 10px auto;
}

    .rewardIcon img {
        border-radius: 50%;
    }

@media (min-width:481px) {
}

@media (min-width:768px) {

    .starsWrap {
        max-width: 600px;
    }

    .clickswrap {
        max-width: 600px;
    }

    .star {
        max-width: 195px;
    }

    .clickswrap {
        display: flex;
        flex-direction: row;
    }

    .clicks {
        margin: 5px;
        width: 100%;
    }

    .tile-selected::after {
        font-size: 16px;
    }
}

@media (min-width:1000px) {
}

@media (min-width:1025px) {
}

@media (min-width:1441px) {
}
