.noselect {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.container {
    overflow: hidden;
    position: relative;
    width: 600px;
    height: 600px;
    margin: 0 auto;
    cursor: crosshair;
    cursor: -webkit-crosshair;
}

.canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.winner-box {
    position: relative;
    visibility: hidden;
    text-align: center;
    color: #fff;
}

@-moz-keyframes blinker {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

@-webkit-keyframes blinker {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

@keyframes blinker {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

/* 抽獎輪盤 */

#wheelOfFortune {
    position: relative;
}

#wheel {
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.wheelDiv{
    position: absolute;
    left: 50%;
    bottom: 1rem;
    transform: translate(-50%,0);
    width: 80%;
}

#spin {
    font: 1.5em/0 sans-serif;
    user-select: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 25%;
    height: 25%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.8s;
    background-size: cover;
    background-position: center;
}

#rewardWheel {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font: 1.5em/0 sans-serif;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 50%;
}

#rewardWheel::after {
    content: "";
    position: absolute;
    top: -17px;
    border-bottom-color: currentColor;
    border-top: none;
}

.rewardCard {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 0;
    height: 50%;
    padding: 1rem 5px 15%;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font: 1.5em/0 sans-serif;
    user-select: none;
    cursor: pointer;
    transform-origin: 50% 100%;
}

.rewardCard::after {
    content: "";
    position: absolute;
    top: -17px;
    border-bottom-color: currentColor;
    border-top: none;
}

.rewardCard .rewardTitle {
    font: bold calc(1.2vh + 1.5vw) sans-serif;
    text-align: center;
    width: 80px;
    padding-bottom: 1px;
    word-break: break-all;
    /*white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;*/
}

.rewardCard .noReward {
    font: bold 6vw sans-serif;
    writing-mode: vertical-lr;
}

.rewardImg {
    height: auto;
}


/* 輪盤POPUP預覽 */
#wheelWinnerPopup {
    z-index: 10;
    width: 90%;
    padding: 15px;
    margin: 15px;
    margin-top: -170px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0px 0px 0px 600px rgba(0, 0, 0, 0.4);
    position: absolute;
}

#wheelWinnerText {
    color: #575757;
    text-align: center;
    font-weight: 600;
    margin: 5px;
    margin-bottom: 30px;
    padding: 0;
    font-size: 20px;
}

#slotWinnerPopup {
    z-index: 10;
    width: 90%;
    padding: 15px;
    margin: 15px;
    margin-top: -170px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0px 0px 0px 600px rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 60%;
}

#slotText {
    color: #575757;
    text-align: center;
    font-weight: 600;
    margin: 5px;
    margin-bottom: 30px;
    padding: 0;
    font-size: 20px;
}

#slotImg {
	width: 100%;
}

/* 置底的區塊(擺放回到官方帳號按鈕等.....) */

.floorDiv {
    width: 60%;
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    margin: auto;
}

.floorDiv button{
    margin-top:0.4rem;
}

.site-title {
    height: 4rem;
    margin-bottom: 0;
    padding: .8rem 0
}

.site-title img {
    display: block;
    height: 100%;
    width: auto;
    margin: 0 auto
}

#shareButtonDiv .share-button img {
    display: block !important;
    width: 40% !important;
}