

/*=========================
    WHEEL
=========================*/

.wheel-wrapper{
    position:relative;
    width:420px;
    height:420px;
    margin:30px auto;
}

.pointer{
    position:absolute;
    top:-20px;
    left:50%;
    transform:translateX(-50%);
    width:0;
    height:0;
    border-left:25px solid transparent;
    border-right:25px solid transparent;
    border-top:55px solid #e53935;
    z-index:999;
}

.wheel{

    width:400px;

    height:400px;

    border-radius:50%;

    border:10px solid #333;

    overflow:hidden;

    position:relative;

    background:#fff;

    transition:transform 6s cubic-bezier(.17,.67,.2,.99);

    box-shadow:
    0 0 20px rgba(0,0,0,.3),
    inset 0 0 20px rgba(255,255,255,.5);

}

/*=========================
    ITEMS
=========================*/




.item span{

position:absolute;

left:50px;

top:35px;

width:120px;

text-align:center;

transform:rotate(30deg);

font-size:28px;

font-weight:bold;

}

/*=========================
    BUTTON
=========================*/

#spinButton{

    width:220px;

    height:55px;

    font-size:20px;

    border-radius:10px;

    margin-top:30px;

}

/*=========================
    MODAL
=========================*/

.modal-content{

    border-radius:20px;

    border:none;

}

.modal-header{

    border:none;

}

.modal-body{

    padding:30px;

}

#phone{

    height:55px;

    font-size:18px;

    border-radius:10px;

}

#savePrize{

    height:55px;

    border-radius:10px;

    font-size:18px;

}

#prizeText{

    font-size:34px;

    color:#ff5722;

    font-weight:bold;

    text-align:center;

    margin-bottom:20px;

}

/*=========================
    RESPONSIVE
=========================*/

@media(max-width:768px){

    .wheel-wrapper{

        width:320px;

        height:320px;

    }

    .wheel{

        width:300px;

        height:300px;

    }

    .item{

        font-size:14px;

    }

    .pointer{

        border-left:18px solid transparent;

        border-right:18px solid transparent;

        border-top:45px solid red;

    }

    #spinButton{

        width:180px;

        font-size:18px;

    }

}

/* ===========================
   GLASS MODAL
=========================== */

.modal-content{
    background: rgba(20,20,20,.45) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:30px;
    box-shadow:0 20px 60px rgba(0,0,0,.5);
    color:#fff;
}

.modal-header{
    border:none;
    justify-content:center;
}

.modal-body{
    padding:35px;
}

.modal-backdrop.show{
    opacity:.75;
}

/* ===========================
   TITLE
=========================== */

h2{

    color:#ffffff;

    font-size:34px;

    font-weight:bold;

    margin-bottom:25px;

}

/* ===========================
   WHEEL
=========================== */

.wheel{

    border:12px solid #D4AF37;

    box-shadow:
        0 0 25px rgba(212,175,55,.4),
        0 10px 40px rgba(0,0,0,.4);

}

/* ===========================
   POINTER
=========================== */

.pointer{

    border-left:22px solid transparent;

    border-right:22px solid transparent;

    border-top:55px solid #D4AF37;

}

/* ===========================
   BUTTON
=========================== */

#spinButton{

    background:#D4AF37;

    color:#111;

    border:none;

    border-radius:50px;

    width:240px;

    height:60px;

    font-size:20px;

    font-weight:bold;

    transition:.3s;

}

#spinButton:hover{

    transform:scale(1.05);

}

/* ===========================
   PHONE
=========================== */

#phone{

    border-radius:15px;

    height:55px;

    border:none;

}

/* ===========================
   SAVE BUTTON
=========================== */

#savePrize{

    background:#D4AF37;

    color:#111;

    border:none;

    border-radius:15px;

    height:55px;

    font-weight:bold;

}

/* ===========================
   PRIZE
=========================== */

#prizeText{

    color:#D4AF37;

    font-size:34px;

    font-weight:bold;

    margin-bottom:25px;

}

/* ===========================
   MOBILE
=========================== */

@media(max-width:768px){

    .wheel-wrapper{

        width:330px;

        height:330px;

    }

    .wheel{

        width:320px;

        height:320px;

    }

}