﻿.btnSpin {
}

    .btnSpin.spinning {
        padding-right: 40px;
        position: relative;
    }

        .btnSpin.spinning:after {
            content: "";
            right: 6px;
            top: 50%;
            width: 0;
            height: 0;
            box-shadow: 0px 0px 0 1px #080808;
            position: absolute;
            border-radius: 50%;
            -webkit-animation: rotate360 0.5s infinite linear, exist 0.1s forwards ease;
            animation: rotate360 0.5s infinite linear, exist 0.1s forwards ease;
        }

        .btnSpin.spinning:before {
            content: "";
            width: 0px;
            height: 0px;
            border-radius: 50%;
            right: 6px;
            top: 50%;
            position: absolute;
            border: 2px solid #000000;
            border-right: 3px solid #27ae60;
            -webkit-animation: rotate360 0.5s infinite linear, exist 0.1s forwards ease;
            animation: rotate360 0.5s infinite linear, exist 0.1s forwards ease;
        }
    
@-webkit-keyframes rotate360 {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate360 {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes exist {
    100% {
        width: 15px;
        height: 15px;
        margin: -8px 5px 0 0;
    }
}

@keyframes exist {
    100% {
        width: 15px;
        height: 15px;
        margin: -8px 5px 0 0;
    }
}

.btnTime {
    display: inline-block;
    color: #fff;
    background-color: #0094ff;
    border: 3px solid #808080;
    border-radius: 5px;
    width: 150px;
    height: 150px;
    font-size: 30px;
    line-height: 150px;
    text-align: center;
    vertical-align: middle;
    /*padding: 3px 3px;*/
    /*margin: 2px 2px 0px 0px;*/
    /*font-size: 12px;*/
    /*font-weight: normal;*/
    /*line-height: 1px;*/
    /*white-space: nowrap;*/
    /*-ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;*/
}