/* Absolute Center Spinner */
.loading {
    position: fixed;
    z-index: 999;
    height: 2em;
    width: 2em;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

/* Transparent Overlay */
.loading:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(20, 20, 20, .8), rgba(0, 0, 0, .8));

    background: -webkit-radial-gradient(rgba(20, 20, 20, .8), rgba(0, 0, 0, .8));
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
    /* hide "loading..." text */
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.loading:not(:required):after {
    content: '';
    display: block;
    font-size: 10px;
    width: 1em;
    height: 1em;
    margin-top: -0.5em;
    -webkit-animation: spinner 150ms infinite linear;
    -moz-animation: spinner 150ms infinite linear;
    -ms-animation: spinner 150ms infinite linear;
    -o-animation: spinner 150ms infinite linear;
    animation: spinner 150ms infinite linear;
    border-radius: 0.5em;
    -webkit-box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
    box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*Calculadora*/

.calculadora {
    display: block;
    margin: 0 auto;
    padding: 20px;
    background-color: #2980b9;
    width: 335px;
    height: 500px;
    border-radius: 25px;
}

.calculadora td button {
    display: block;
    width: 70px;
    height: 70px;
    font-size: 25px;
}

#creditos {
    display: block;
    padding-top: 20px;
    color: #fff;
    text-align: center;
    width: 300px;
}

#resultado {
    display: block;
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    width: 300px;
    height: 100px;
    line-height: 100px;
    background-color: #fff;
    /*border-radius: 25px;*/
    overflow-y: scroll;
}


.kards {

    position: relative;
    /*transform: translate(-50%,-50%);*/
    width: 260px;
    height: 300px;
    background: #000;
    float: left;
    margin-left: auto;
    margin-right: auto;
    margin: 5px 5px;
}

.kards .image {
    width: 100%;
    height: 100%;
    overflow: hidden;

}

.kards .image h2 {
    z-index: 100;
    position: absolute;
    color: white;
    font-size: 24px;
    font-weight: bold;
    left: 30%;
}

.kards .image img {
    width: 100%;
    height: 100%;
    transition: .5s;
}

.kards:hover .image img {
    opacity: .5;
    transform: translateX(30%);
    /*100%*/
}

.kards .details {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    /*100%*/
    height: 100%;
    background: #fff;
    transition: .5s;
    transform-origin: left;
    transform: perspective(2000px) rotateY(-90deg);
}

.kards:hover .details {
    transform: perspective(2000px) rotateY(0deg);
}

.kards .details .center {
    padding: 20px;
    text-align: center;
    background: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.kards .details .center h1 {
    margin: 0;
    padding: 0;
    color: #ff3636;
    line-height: 20px;
    font-size: 20px;
    text-transform: uppercase;
}

.kards .details .center h1 span {
    font-size: 14px;
    color: #262626;
}

.kards .details .center p {
    margin: 10px 0;
    padding: 0;
    color: #262626;
}

.kards .details .center ul {
    margin: 10px auto 0;
    padding: 0;
    display: table;
}

.kards .details .center ul li {
    list-style: none;
    margin: 0 5px;
    float: left;
}

.kards .details .center ul li a {
    display: block;
    background: #262626;
    color: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    transform: .5s;
}

.kards .details .center ul li a:hover {
    background: #ff3636;
}

.contenido {
    padding-left: 12%;
    padding-right: 12%;
}

/*vendedores*/
.box {
    width: 70%;
    background: #a83dff;
    margin-left: auto;
    margin-right: auto;
    padding: 40px
}

.caja_boton {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    padding-left: auto;
    padding-right: auto;

}

.box input {
    color: rgb(236, 92, 236);
    font-weight: bold;
    text-align: center;
}

.box h3 {
    text-align: center;
    position: relative;
    font-family: Arial;
    color: #fff;

}

.sell {
    font-size: 30px;
    width: 100%;
    border: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.sell:focus {
    font-size: 30px;
    width: 100%;
    border: 0;
}

.sell:active {
    font-size: 30px;
    width: 100%;
    border: 0;
}

.innertext {
    padding: 10px;
}

#sellTab tr th {
    width: 160px;
}

.card-numero {
    max-width: 500px;
    min-width: 250px;
    margin-left: auto;
    margin-right: auto;
}

.table-numero {
    background-image: radial-gradient(circle at 48.39% 50.28%, #e263c0 0, #bf59b1 12.5%, #9a4c9e 25%, #733c85 37.5%, #4d2b67 50%, #2b1a49 62.5%, #11072e 75%, #000019 87.5%, #000000 100%);
    -webkit-box-shadow: 9px 9px 5px 4px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 9px 9px 5px 4px rgba(0, 0, 0, 0.75);
    box-shadow: 9px 9px 5px 4px rgba(0, 0, 0, 0.75);
    max-width: 500px;
    min-width: 250px;
}

.table-numero th, .table-numero td {
    padding: 5px;
}



.table-shadow{
    -webkit-box-shadow: 9px 9px 5px 4px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 9px 9px 5px 4px rgba(0, 0, 0, 0.75);
    box-shadow: 9px 9px 5px 4px rgba(0, 0, 0, 0.75);
    border-style: inset;
}
