#gluecksrad
{
    width: 100%;
}
#gluecksrad *, #gluecksrad :before, #gluecksrad :after
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
#gluecksrad #won
{
    min-height: 100px;
}
#gluecksrad button#start
{
    display: flex;
    cursor: pointer;
    margin: 30px auto 20px auto;
    font-size: 16px;
    font-weight: 600;
    transition-duration: .3s;
    border: 2px #002b7f solid;
    border-radius: 0;
    border-top-width: 2px;
    border-right-width: 2px;
    border-bottom-width: 2px;
    border-left-width: 2px;
    color: #002b7f;
    background-color: transparent;
    font-size: 18px;
    padding: 10px;
    outline: none;
    transition: .3s;
}
#gluecksrad button#start:hover
{
    opacity: .5;
}
#spin_wrapper
{
    width: 500px;
    height: 500px;
    margin: 0 auto;
    position: relative;
    border-radius: 50%;
    background: #fff;
    border: 5px solid #fff;
    box-shadow: 0 4px 10px 0 rgb(0 0 0/30%);
}
@media(max-width: 769px)
{
    #spin_wrapper
    {
        width: 250px;
        height: 250px;
    }
}
#spin_wrapper:after
{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 100%;
    width: 14px;
    height: 30px;
    margin-left: -7px;
    margin-bottom: -5px;
    border-style: solid;
    border-color: transparent;
    border-width: 7px;
    border-bottom: 0;
    border-top: 30px solid #f00;
}
#spin
{
    transform-origin: 50% 50%;
}