.ssHead {
    position:relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    z-index: 100 !important;
}

    .ssHead a {
        text-decoration: none;
    }

.img-respon {
    width: 100%;
}

.hidden {
    display: none;
}

.seen {
    display: initial;
}

.unseen {
    display: none;
}

.logo {
    max-width: 85px;
    display: block;
}

.part2 {
    display: flex;
    width: 100%;
    max-width: 250px;
    justify-content: space-around;
}

.ssBtn {
    padding: 5px;
    font-size: 16px;
    border-radius: 6px;
    text-align: center;
    margin: 2px;
    height: 35px;
    width: 100%;
    max-width: 80px;
}

.playBtn {
    background-color: #33ff00;
    color: #000033;
}

.stdBtn {
    background-color: #0099ff;
    color: #FFF;
    cursor: pointer;
}


.promoTxtblk {
    text-align: center;
    padding: 5px;
    border-radius: 4px;
    border: 0;
    height: 40px;
    width: 200px;
}

.promoBtn {
    height: 40px;
    padding: 5px;
    border-radius: 4px;
    border: 0;
    width: 200px;
    background-color: #0199ff;
    color: #ffffff;
    font-weight: bold;
}

.promoFooter {
    position:relative;
    background-color: rgba(0,0,51,0.8);
    color: #FFF;
    padding: 5px;
    max-width: 800px;
    width: 97%;
    margin: 50px auto 10px;
    border-radius: 6px;
    z-index: 100 !important;
}

    .promoFooter a {
        text-decoration: underline;
    }

.starsInfo {
    background-color: rgba(0,0,51,0.8);
    padding: 5px;
    max-width: 300px;
    width: 97%;
    margin: auto;
    border-radius: 6px;
}

    .starsInfo h1 {
        font-size: 24px;
        line-height: 24px;
        color: #33ff00;
        margin: 0 auto 10px;
        text-align: center;
    }

.starsWrap {
    max-width: 300px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    margin: auto;
}

.star {
    max-width: 150px;
    width: 100%;
}

.star:hover {
    cursor: pointer;
    animation: pulse 0.9s infinite ease-out;
    -webkit-animation: pulse 0.9s infinite ease-out;
}

.tile-selected {
    z-index: 10;
    cursor: pointer;
    animation: pulse 0.9s infinite ease-out;
    -webkit-animation: pulse 0.9s infinite ease-out;
}

@-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);
    }
}

.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: #0099ff;
}

.promoModal .btn-secondary {
    color: #fff;
    background-color: #f42fad;
    border-color: #f42fad;
}

.promoModal .rewardBlk {
    background-color: rgba(0,0,51,0.6);
    color: #FFF;
    padding: 5px;
    border-radius: 6px;
}

    .promoModal .rewardBlk b {
        color: #33ff00;
    }


.promoTnc .modal-content {
    background-color: #03031f;
    font-size: 14px;
    color: #b2b2c8;
    padding: 10px;
}


.promoTnc ul {
    padding-inline-start: 20px;
}

.promoTnc h1 {
    font-size: 26px;
    color: #0099ff;
}

.promoTnc .btn-secondary {
    color: #fff;
    background-color: #f42fad;
    border-color: #f42fad;
}

.modal-backdrop.show {
    opacity: 0.8;
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-ellipsis div {
        position: absolute;
        top: 33px;
        width: 13px;
        height: 13px;
        border-radius: 50%;
        background: #fff;
        animation-timing-function: cubic-bezier(0, 1, 1, 0);
    }

        .lds-ellipsis div:nth-child(1) {
            left: 8px;
            animation: lds-ellipsis1 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(2) {
            left: 8px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(3) {
            left: 32px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(4) {
            left: 56px;
            animation: lds-ellipsis3 0.6s infinite;
        }

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}

.error {
    color: #dd1717;
    font-size: 16px;
    border-radius: 6px;
    text-align: center;
    width: 100%;
    display: block;
}

#textTogg {
    display: none;
}

.howto {
    background-color: #000333;
    color: #33fb01;
    max-width: 110px;
    width: 100%;
    margin: 20px auto;
    cursor: pointer;
    font-weight: bold;
}

.retogBtn {
    margin: 0px auto 10px;
    text-decoration: underline;
    cursor: pointer;
}


@media (min-width:481px) {
}

@media (min-width:768px) {

    .starsWrap {
        max-width: 600px;
    }

    .star {
        max-width: 200px;
    }

    .claimed::before {
        content: url(../img/claimed-200.png);
    }

    .starsInfo {
        max-width: 600px;
    }

    .clickswrap {
        display: flex;
        flex-direction: row;
    }

    .clicks {
        margin: 5px;
        width: 100%;
    }
}

@media (min-width:1000px) {
}

@media (min-width:1025px) {

}

@media (min-width:1441px) {
}
