﻿
.tc-btn {
    display: inline-block;
    height: 25px;
    width: 150px;
    line-height: 25px;
    _color: white;
    font-size: 12px;
    border-radius: 5px;
    padding: 0;
    text-align: left;
    border: 1px solid #aaa;
    background-color: #CCC;
    text-decoration: none;
    vertical-align: central;
    cursor: pointer;
}

    .tc-btn:focus {
        outline: none;
    }

    .tc-btn-text {
        display: inline-block;
        text-align: center;
        width: 35%;
        height:100%;
        background-color: rgba(0, 255, 33,0.6);
        margin-left: 0;
        border-radius: 5px 10px 10px 5px;
        border-right: 1px solid #868686;
        margin: 0 5px 0 0;
    }

    .tc-btn:hover:enabled {
        box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
    }

        .tc-btn:hover:enabled .tc-btn-text {
            background-color: rgba(0, 255, 33,1);
        }

.tc-btn-tooltip {
    position: relative;
    right: -100px;
    width: 100px;
    height: auto;
    line-height: 20px;
    padding: 5px;
    margin-left: -60px;
    pointer-events: none;
    opacity: 0;
    text-shadow: 1px -1px 2px rgba(34,163,24,0.5);
    font-weight: bold;
    color: #22A318;
    text-align: center;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.tc-show {
    opacity: 1;
    font-size: 1.5em;
}

@media only screen and (max-width:450px) {
    .tc-btn{
        font-size:1.3em;
        height: 10vh;
        width: 100%;
        line-height: 10vh;
    }
}


.tc-spinner > .rect {
    background-color: #666;
    height: 40%;
    width: 7%;
    display: inline-block;
    -moz-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    -o-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.tc-spinner .rect:nth-child(2) {
    -moz-animation-delay: -1.1s;
    -o-animation-delay: -1.1s;
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.tc-spinner .rect:nth-child(3) {
    -moz-animation-delay: -1.0s;
    -o-animation-delay: -1.0s;
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

.tc-spinner .rect:nth-child(4) {
    -moz-animation-delay: -0.9s;
    -o-animation-delay: -0.9s;
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}


@-webkit-keyframes sk-stretchdelay {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.4);
        -moz-transform: scaleY(0.4);
        -ms-transform: scaleY(0.4);
        -o-transform: scaleY(0.4);
        transform: scaleY(0.4);
    }

    20% {
        -webkit-transform: scaleY(2.0);
        -moz-transform: scaleY(2.0);
        -ms-transform: scaleY(2.0);
        -o-transform: scaleY(2.0);
        transform: scaleY(2.0);
    }
}

@-moz-keyframes sk-stretchdelay {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.4);
        -moz-transform: scaleY(0.4);
        -ms-transform: scaleY(0.4);
        -o-transform: scaleY(0.4);
        transform: scaleY(0.4);
    }

    20% {
        -moz-transform: scaleY(2.0);
        -ms-transform: scaleY(2.0);
        -o-transform: scaleY(2.0);
        -webkit-transform: scaleY(2.0);
        transform: scaleY(2.0);
    }
}

@keyframes sk-stretchdelay {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.4);
        -moz-transform: scaleY(0.4);
        -ms-transform: scaleY(0.4);
        -o-transform: scaleY(0.4);
        transform: scaleY(0.4);
    }

    20% {
        -moz-transform: scaleY(2.0);
        -ms-transform: scaleY(2.0);
        -o-transform: scaleY(2.0);
        -webkit-transform: scaleY(2.0);
        transform: scaleY(2.0);
    }
}
