﻿.spin-button {
    margin: 0;
    padding: 0;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

    .spin-button p.counterLayout {
        font-family: sans-serif;
        font-size: 1.7em;
        font-weight:bold;
        color: #fff;
        margin-top: 6px !important;
        padding: 0 !important;
    }

    .spin-button p.spin-text {
        font-family: sans-serif;
        font-size: 1.2em !important;
        letter-spacing:normal;
        color: #fff !important;
        margin-top: 0px !important;
    }

.spin-button-outer-container {
    margin: 45px auto;
    text-align: center;
}

.spin-button-inner-container {
    list-style: none;
    position: relative;
    display: inline-block;
    width: 100px;
    height: 100px;
}

@-moz-keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@-webkit-keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@-o-keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

.round {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 120%;
    height: 120%;
    padding-top: 5px;
    text-decoration: none;
    text-align: center;
    font-size: 1em;
    letter-spacing: -.065em;
    font-family: sans-serif;
    -webkit-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    box-shadow: 2px 2px 7px rgba(0,0,0,.2);
    border-radius: 300px;
    z-index: 1;
    border-width: 4px;
    border-style: solid;
    box-shadow:2px 2px 2px 2px rgb(60, 60, 60);
}

    .round:hover {
        width: 125%;
        height: 125%;
        left: -15%;
        top: -15%;
        font-size: 1.1em;
        padding-top: 38px;
        -webkit-box-shadow: 5px 5px 10px rgba(0,0,0,.5);
        -o-box-shadow: 5px 5px 10px rgba(0,0,0,.5);
        -moz-box-shadow: 5px 5px 10px rgba(0,0,0,.5);
        box-shadow: 5px 5px 10px rgba(0,0,0,.5);
        z-index: 2;
        border-size: 5px;
        -webkit-transform: rotate(-360deg);
        -moz-transform: rotate(-360deg);
        -o-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }

a.spin-bk-color {
    background-color: #ff4716;
    color: #fff !important;
    border-color: rgba(116, 41, 8, 0.30);
}

    a.spin-bk-color:hover {
        color: #fff;
        background-color: #ff4716;
    }

.round span.round {
    display: block;
    opacity: 0;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    font-size: 1px;
    border: none;
    padding: 40% 20% 0 20%;
    color: #fff;
    box-shadow:2px 2px 2px 2px rgb(60, 60, 60);
}

.round span:hover {
    color: #ff4716;
    opacity: 1;
    font-weight: 600;
    font-size: 1.2em;  
}

a.round:hover p {
    opacity: 0 !important;
}

.spin-bk-color span {
    background: #fff;
}

