﻿
.wheelmenu {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 40px;
    height: 40px;
    margin-top: 20px;
    margin-left: 20px;
}

    .wheelmenu,
    .wheelmenu button {
        font-family: 'Oswald', sans-serif;
        font-weight: 300;
    }

.wheel_center_div {
    display: table;
    width: 66px;
    height: 66px;
    background-color: #464646;
    position: absolute;
    left: -54px;
    top: -23px;
    border-radius: 50%;
    /* border: 1px solid #484848; */
    color: white;
    font-size: 10px;
    text-align: center;
    background-image: linear-gradient(#757575, black);
    transform: scale(.1) rotate(-90deg);
    opacity: .1;
    transition: .5s cubic-bezier(.47,1.64,.41,1.2) all;
}

.wheel_label {
    letter-spacing: 1px;
    font-size: 9px;
    position: relative;
    font-family: Roboto;
    line-height: 10px;
    position: absolute;
    width: 100%;
    bottom: 0px;
}

#wheel_page_number {
    font-size: 10pt;
    position: absolute;
    width: 100%;
    top: 0px;
    text-align: center;
}


.wheelmenu-span {
    display: block;
    position: absolute;
    top: 9px;
    width: 100%;
    font-size: 12px;
}

.wheelmenu-icon {
    position: absolute;
    display: block;
    width: 100%;
    font-size: 24px;
    color: white;
    transform: rotate(4deg);
}

.wheelmenu ul {
    position: absolute;
    list-style: none;
    padding: 0;
    margin: 0;
    top: -26px;
    right: -20px;
    bottom: -20px;
    left: -21px;
    transform: rotate(-4deg);
}

.wheelmenu li {
    position: absolute;
    width: 0;
    height: 65px;
    margin: 0 auto;
    -webkit-transform: rotate(-360deg);
    transition: all 0.8s ease-in-out;
    box-shadow: 5px 10px 8px #1a1a1a;
}

    .wheelmenu li input {
        display: none;
    }

        .wheelmenu li input + label {
            position: absolute;
            left: 50%;
            bottom: 88%;
            width: 0;
            height: 0;
            line-height: 1px;
            margin-left: 0;
            background: #333333;
            border-radius: 50%;
            text-align: center;
            font-size: 1px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: none;
            transition: all 0.8s ease-in-out, color 0.1s, background 0.1s;
            box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4) !important;
        }

    .wheelmenu li label {
        background-color: #333333;
    }

    .wheelmenu li input:checked + label {
        background: #5cb85c;
        color: white;
    }

        .wheelmenu li input:checked + label:hover {
            background: #449d44;
        }

.wheelmenu.open li input + label {
    width: 42px;
    height: 42px;
    line-height: 42px;
    margin-left: -42px;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    display: block;
}
