html {
    font-family: "Quicksand", sans-serif;
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body 
{
    width:100%;
    position: relative;
    float:left;
    padding:0;
    margin:0;
    background: rgb(102,55,151);
background: linear-gradient(356deg, rgba(102,55,151,1) 44%, rgba(56,29,98,1) 100%);
}
button {font-family: "Quicksand", sans-serif;}


/* ====================================================================== */
/* ============================== GAMEPLAY ============================== */
/* ====================================================================== */

.container 
{
    max-width:640px;
    width:100%;
    height:100%;
    position: relative;
    left:50%;
    transform:translateX(-50%);
    -webkit-transform:translateX(-50%);
    -moz-transform:translateX(-50%);
    -o-transform:translateX(-50%);
    
}

.gameplay_bg {
    width: 100%;
    height: 100vh;
    display: block;
    position: relative;
    top: 0;
    float: left;
}

#container > svg > path:nth-child(1) {
    stroke: rgba(255,255,255,0.2);
}


.gameplay_title_container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top:20px;
}

.gameplay_title {
    text-align: center;
    font-size: 25px;
    color: #ffffff;
    font-weight: bold;
}

.gameplay_title p
{
    font-weight: 400;
}
.gameplay_title h3
{
    display: block;
    color:#e288d3;
    font-size:38px;
    margin:0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.gameplay_title h3::after
{
    content:'';
    color:#e288d3;
    border-bottom:1px solid #e288d3;
    position: relative;
    width: 140px;
    display: block;
    padding-top: 20px;
}

.gameplay_game_box_list {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    margin: -5px auto 0px auto;
    position: relative;
    text-align: center;
    padding:10px 0;
}

.wheel {
    /* width: 300px;
    height: 300px; */
    width:80%;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 2s ease-out;
    margin: 0 auto;
}

#spin {
    max-width: 80px;
    max-height: 80px;
    width: 16%;
    height: 16%;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    box-shadow: rgba(0,0,0,0.1) 0px 3px 0px;
    z-index: 1000;
    background: #c72cae;
    cursor: pointer;
    transform: translate(-50%, -50%);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

#spin:after {
    content: "SPIN";
    text-align: center;
    line-height: 80px;
    color: #fff;
    position: relative;
    z-index: 100000;
    max-width: 80px;
    max-height: 80px;
    display: block;
    font-size: 20px;
    font-weight: bold;
}

#spin:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 20px 28px 20px;
    border-color: transparent transparent #c72cae transparent;
    top: -21px;
    left: 51%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}


@media only screen and (min-width: 1700px)
{
    .gameplay_bg {height:100vh;}
}

@media only screen and (max-width: 1699px) {

    .gameplay_bg {height:100%; background-size: 100%; padding-bottom: 0px;}

    
}

@media only screen and (max-width: 590px) {
    .container {width:80%;}
    .gameplay_bg 
    {
        height: 100%;
        background-size: 100%;
        padding-bottom: 0px;
    }

    .gameplay_btns_row {justify-content: center;}
    .gameplay_btn {min-width:auto; width:100% !important; font-size:20px;}
    #spin
    {
        max-width: 60px;
        max-height: 60px;
    }
    #spin:after {font-size: 14px; line-height: 60px; }
    #spin:before {border-width: 0 15px 20px 15px; top: -15px;}
}

@media only screen and (max-width: 480px) {
    #spin:after {font-size: 14px; line-height: 55px;}
}

@media only screen and (max-width: 390px) {
    .gameplay_btn {margin: 5px; min-width: 130px;}
    .wheel {width:100%;}
    #spin
    {
        max-width: 60px;
        max-height: 60px;
        width: 60px;
        height: 60px;
    }
    #spin:after {font-size: 14px; line-height: 60px !important; }
    #spin:before {border-width: 0 15px 20px 15px; top: -15px;}
}
@media only screen and (max-width: 280px) {
    
}
