/*************************************************************************************
* css/styles.css                                                                     *
**************************************************************************************
* Software Name: MvSoft Facturador                                                   *
* Software URL: https://www.facturador.mvsoft.me                                     *
* Software Support: soporte@facturador.mvsoft.me                                     *
* Software Version: 1                                                                *
* Software Release: 24/04/2023                                                       *
* Developer Name: MvSoft                                                             *
* Developer URL: https://www.mvsoft.ar                                               *
* Developer Support: soporte@mvsoft.ar                                               *
**************************************************************************************
*                   Copyright 2023 - Todos los derechos reservados                   *
*************************************************************************************/

/* GENERAL */
body {
    background: #fff;
    padding: 0;
    margin: 0;
}

* {
    font-family: 'Poppins', 'Open Sans', 'Ubuntu', Arial;
    font-weight: 400;
}

ul, li {
	list-style: none;
	padding: 0;
	margin: 0;
}

a {
	text-decoration: none;
	cursor: pointer;
}

input, select, textarea {
    outline: none;
    transition: 0.5s;
}

input:focus, select:focus, textarea:focus {
    border-color: #eee #eee #1793e6 #eee !important;
}

input:disabled, select:disabled, textarea:disabled {
    background: #eee !important;
}

/* LOGIN */
section#login {
    width: 100%;
    display: table;
}

section#login .slogan {
    float: right;
    width: 40%;
    margin: 12% 5% 0 0;
}

section#login .slogan h2, section#login .slogan h2 strong {
    font-weight: 100;
    color: #fff;
    font-size: 90px;
}

section#login .slogan h2 strong {
    font-weight: 600;
}

section#login .box {
    width: 40%;
    margin: 12% 0 0 5%;
    border-radius: 8px;
    float: left;
    -webkit-transition: -webkit-transform 0.4s;
    -moz-transition: -moz-transform 0.4s;
    -o-transition: -o-transform 0.4s;
    transition: transform 0.4s;
    display: table;
    background: #fff;
    padding: 15px 0 30px 0;
}

section#login .box .top {
    display: table;
    width: 100%;
}

section#login .box .top h2 {
    color: #333;
    font-size: 34px;
    text-align: center;
    width: 100%;
    font-family: 'Ubuntu', Arial;
}

section#login .box .top h2 img {
    width: 80px;
    margin-bottom: -25px;
}

section#login .box .content {
    width: 80%;
    margin: 0 auto;
}

section#login .box .content form li {
    margin: 20px 0;
    width: 100%;
    display: table;
    border: none;
    padding: 0;
    position: relative;
}

section#login .box .content form li label {
    position: absolute;
    top: 12px;
    left: 10px;
    background: #fff;
    transition: 0.5s;
    padding: 0 5px;
    color: gray;
    font-size: 13px;
}

section#login .box .content form li label.fade {
    top: -10px;
    left: 8px;
    z-index: 1;
    color: royalblue;
}

section#login .box .content form li input[type="text"], section#login .box .content form li input[type="email"], section#login .box .content form li input[type="password"] {
    float: left;
    width: 90%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 2px;
    color: gray;
    font-size: 13px;
    font-family: 'Open Sans', Arial;
    border-radius: 5px;
    background: transparent;
    transition: 0.7s;
    position: relative;
    outline: none;
}

section#login .box .content form li input:focus {
    border-color: royalblue;
}

section#login .box .content form li input[type="email"]:focus, section#login .box .content form li input[type="password"]:focus {
    background: #fff;
}

section#login .box .content form li a {
    float: right;
    padding: 11px 0;
    color: #333;
}

section#login .box .footer {
    width: 100%;
    display: table;
    margin: 40px 0 0 0;
    text-align: center;
}

section#login .box .footer a {
    color: royalblue;
    font-family: 'Poppins', Arial;
    font-weight: 400;
    text-align: center;
}

/* BOTONES */
.btn {
    padding: 10px 20px;
    display: inline-block;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    font-size: 14px;
    border-radius: 5px;
    font-family: 'Poppins', Arial;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn.primary {
    color: #fff;
    background: #1793e6;
}

.btn.secondary {
    color: #fff;
    background: #41B66F;
}

.btn.cancel {
    color: #fff;
    background: #dc3545;
}

.btn.transparent {
    color: gray;
    background: transparent;
}

/* HEADER */
header {
    width: 100%;
    position: fixed;
    background: #c5d9fe;
    top: 0;
    z-index: 9999;
    left: 0;
}

header .logo {
    float: left;
    display: block;
    width: auto;
    padding: 10px;
    width: 18%;
}

header .logo img {
    width: 310px;
    float: left;
    padding: 5px 0 0 0;
}

header nav {
    float: right;
    width: auto;
    padding: 25px 0;
}

header nav.resp {
    display: none;
}

header nav.no-resp {
    display: block;
    position: relative;
}

header nav a {
    float: left;
    margin-right: 20px;
    width: 28px;
    height: 28px;
    font-size: 15px;
    color: #1793e6;
    font-weight: bold;
}

header nav a.active {
    color: #333;
}

header nav a.active img {
    filter: brightness(0);
}

header nav a img {
    width: 100%;
}

header nav a .badge {
    background: orangered;
    color: #fff;
    top: -15px;
    font-size: 11px;
    font-weight: bold;
    border-radius: 50%;
    width: 30px;
    text-align: center;
    padding: 5px 0;
    position: absolute;
    right: -15px;
}

/* SIDENAV */
#sidenav {
    background: #e8eff8;
    position: fixed;
    top: 80px;
    left: 0;
    height: 100%;
    width: 80px;
    z-index: 9;
}

#sidenav .content {
    width: 70%;
    margin: 0 auto;
}

#sidenav ul {
    margin: 20px 0;
}

#sidenav ul li {
    margin: 8px 0;
}

#sidenav ul li a.active {
    background: #c5d9fe;
    border-radius: 5px;
}

#sidenav ul li a.active img {
    filter: invert(1);
}

#sidenav ul li a {
    display: table;
    text-align: center;
    width: 100%;
    padding: 12px 0;
}

#sidenav ul li a img {
    width: 24px;
    height: 24px;
}

/* TOOLTIP */
.tooltip {
    position: relative;
}
  
.tooltip .tooltiptext {
    visibility: hidden;
    width: 130px;
    background-color: #111;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    font-family: 'Open Sans', Arial;
    font-size: 13px;
    font-weight: 100;
}

.tooltip .right {
    top: 10px;
    left: 125%;
}

.tooltip .left {
    top: -5px;
    right: 165%;
}

.tooltip .top {
    bottom: 40px;
    left: 40%;
    margin-left: -60px;
}

.tooltip .bottom {
    top: 150%;
    left: 40%;
    margin-left: -60px;
}

.tooltip .right::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent #111 transparent transparent;
}

.tooltip .left::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #111;
}

.tooltip .top::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}

.tooltip .bottom::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent black transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

/* FACTURADOR */
section#facturador {
    width: 100%;
    display: table;
}

section#facturador nav {
    position: fixed;
    background: #333;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

section#facturador nav a {
    display: table;
    padding: 10px 20px;
    float: left;
    color: #fff;
    font-size: 13px;
    border-top: 3px solid #333;
}

section#facturador nav a.active {
    background: #000;
    border-color: orangered;
}

section#facturador nav a .box-agregar-venta, .box-mi-cuenta, .box-opciones {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.175);
    border-radius: 0.375rem;
    bottom: 50px;
}

.box-opciones {
    right: 0;
}

.box-mi-cuenta {
    bottom: inherit;
    right: 80px;
    border-width: 1px;
    border-radius: 10px;
    padding: 0;
}

.box-mi-cuenta .top {
    background-color: #1793e6;
    color: #fff;
    display: -webkit-inline-box;
    display: inline-flex;
    padding: 16px 0;
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.box-mi-cuenta .top img {
    width: 48px;
    float: left;
    margin-right: 15px;
}

.box-mi-cuenta .top h2 {
    max-width: 250px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 0 0 0.5rem 0;
    color: #fff;
    margin: 0;
}

.box-mi-cuenta .top h5 {
    font-size: 14px;
    color: #fff;
    max-width: 250px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin: 0;
    font-weight: 100;
}

.box-mi-cuenta .pie {
    border-top: 1px solid #ccc;
    padding: 12px 0;
    display: table;
    width: 100%;
}

.box-mi-cuenta .pie a {
    border: 1px solid #ccc;
    background: rgba(0,0,0,0);
    color: gray;
    font-size: 14px !important;
    padding: 8px 0 !important;
    line-height: 24px !important;
    text-align: center;
    border-radius: 8px;
    width: 90%;
    margin: 0 auto;
    display: table;
    float: none;
    font-weight: 100;
}

.box-mi-cuenta .pie a:hover {
    border-color: #333;
    color: #333;
}

section#facturador nav a .box-agregar-venta li, .box-mi-cuenta a, .box-opciones a {
    width: 100%;
    display: table;
}

.box-mi-cuenta a {
    padding: 12px 0;
    transition: 0.5s;
}

section#facturador nav a .box-agregar-venta li:hover, .box-mi-cuenta a:hover, .box-opciones a:hover {
    background: royalblue;
}

.box-mi-cuenta a .content, .box-mi-cuenta .top .content {
    width: 90%;
    margin: 0 auto;
}

.box-mi-cuenta a .content img {
    width: 24px;
    float: left;
    filter: opacity(0.5);
    transition: 0.5s;
}

section#facturador nav a .box-agregar-venta li p, .box-mi-cuenta a .content p, .box-opciones a p {
    display: block;
    width: auto;
    padding: 0.25rem 1rem;
    float: left;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    margin: 0;
    font-size: 13px;
}

.box-mi-cuenta a .content p {
    color: gray;
    transition: 0.5s;
}

.box-mi-cuenta a:hover {
    background: transparent !important;
}

.box-mi-cuenta a:hover .content img {
    filter: none;
}

section#facturador nav a .box-agregar-venta li:hover p, .box-mi-cuenta a:hover .content p, .box-opciones a:hover p {
    color: #fff !important;
}

.box-mi-cuenta a:hover .content p {
    color: black !important;
}

section#facturador .lt {
    float: left;
    width: 68%;
}

section#facturador .lt .tab-recibo, .configuracion nav {
    margin: 20px auto 0 auto;
    width: auto;
    background: #eee;
    border-radius: 30px;
    padding: 5px 8px;
    display: table;
}

section#facturador .lt .tab-recibo a, .configuracion nav a {
    display: table;
    padding: 12px 20px;
    border-radius: 20px;
    float: left;
    font-size: 13px;
}

section#facturador .lt .tab-recibo a.active, .configuracion nav a.active {
    background: #333;
    color: #fff;
}

section#facturador .lt h2 {
    font-weight: bold;
}

section#facturador .lt ul {
    margin: 0 auto;
    float: none;
    padding: 15px 0;
}

section#facturador .lt ul li {
    position: relative;
}

section#facturador .lt form {
    position: relative;
    display: table;
    width: 100%;
    margin: 25px 0 0 0;
}

section#facturador .lt form li {
    margin: 0 0 0 20px;
    display: table;
    border: none;
    padding: 0;
    position: relative;
    float: left;
    width: 80%;
}

section#facturador .lt form li label {
    position: absolute;
    top: 12px;
    left: 10px;
    background: #fff;
    transition: 0.5s;
    padding: 0 5px;
    color: gray;
    font-size: 13px;
    text-transform: none;
    width: auto;
}

section#facturador .lt form li label.fade {
    top: -10px;
    left: 8px;
    z-index: 1;
    color: #1793e6;
}

section#facturador .lt form li input {
    float: left;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 2px;
    color: gray;
    font-size: 13px;
    font-family: 'Open Sans', Arial;
    border-radius: 5px;
    background: transparent;
    transition: 0.7s;
    position: relative;
    outline: none;
    width: 80%;
}

section#facturador .lt form li a {
    margin: 0 0 0 8px;
}

section#facturador .lt form .resultados-buscar-articulo {
    position: absolute;
    top: 60px;
    left: 130px;
    width: 70%;
    box-shadow: 2px 3px 10px 2px rgb(0 0 0 / 25%);
    border-radius: 8px;
    background: #fff;
}

section#facturador .lt form .resultados-buscar-articulo .top {
    width: 100%;
    display: table;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    margin: 0;
    background: #fff;
}

section#facturador .lt form .resultados-buscar-articulo .top h4 {
    padding: 0;
    margin: 0 auto;
    width: 95%;
    font-size: 16px;
    font-weight: bold;
    display: table;
    float: none;
}

section#facturador .lt form .resultados-buscar-articulo .top h4 a.close {
    float: right;
    padding: 0;
}

section#facturador .lt form .resultados-buscar-articulo li {
    width: 100%;
    border-top: 1px solid #eee;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

section#facturador .lt form .resultados-buscar-articulo  li:hover {
    background: #f5f5f5;
}

section#facturador .lt form .resultados-buscar-articulo li a {
    margin: 0 auto;
    display: table;
    width: 95%;
    padding: 12px 0;
}

section#facturador .lt form .resultados-buscar-articulo li a .info {
    float: left;
    width: auto;
}

section#facturador .lt form .resultados-buscar-articulo li a .info p {
    color: gray;
    font-size: 11px;
    font-weight: 100;
    margin: 0 0 5px 0;
}

section#facturador .lt form .resultados-buscar-articulo li a .info h4 {
    font-size: 13px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

section#facturador .lt form .resultados-buscar-articulo li a span {
    float: right;
    color: #1793e6;
    font-weight: bold;
    font-size: 15px;
    padding: 8px 0;
}

section#facturador .lt a.nuevo-resp {
    display: none;
}

section#facturador .lt .resultados {
    width: 100%;
    border: none;
    margin: 20px 0;
}

section#facturador .lt .articulos-nueva-factura .item {
    width: 98%;
    display: table;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
}

section#facturador .lt .articulos-nueva-factura .item .left {
    width: 35%;
    float: left;
    display: table;
}

section#facturador .lt .articulos-nueva-factura .item .left p {
    font-size: 13px;
    font-weight: 100;
    color: gray;
    margin: 0 0 5px 0;
}

section#facturador .lt .articulos-nueva-factura .item .left input {
    width: 60%;
    padding: 8px 0;
    font-size: 13px;
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: #ccc;
    transition: 0.5s;
}

section#facturador .lt .articulos-nueva-factura .item .left input:focus {
    width: 100%;
}

section#facturador .lt .articulos-nueva-factura .item .center {
    float: left;
    width: 40%;
    margin: 0 0 0 30px;
}

section#facturador .lt .articulos-nueva-factura .item .center .cantidad {
    width: auto;
    display: table;
    margin: 12px 15px 12px 0;
    float: left;
}

section#facturador .lt .articulos-nueva-factura .item .center .cantidad a {
    float: left;
    padding: 10px 12px;
    font-size: 15px;
    font-weight: bold;
    color: gray;
    font-family: 'Ubuntu', Arial;
    border-color: #ccc;
    border-style: solid;
}

section#facturador .lt .articulos-nueva-factura .item .center .cantidad input[type="tel"] {
    float: left;
    padding: 10px 12px;
    border-color: #ccc;
    border-width: 1px 0;
    border-style: solid;
    font-size: 15px;
    font-family: 'Ubuntu', Arial;
    font-weight: 100;
    color: gray;
    width: 30px;
}

section#facturador .lt .articulos-nueva-factura .item .center .cantidad p {
    float: left;
    margin: 8px 0 8px 12px;
    font-weight: bold;
}

section#facturador .lt .articulos-nueva-factura .item .center .precio {
    float: left;
    width: 50%;
}

section#facturador .lt .articulos-nueva-factura .item .center .precio p {
    font-size: 28px;
    font-weight: bold;
    float: left;
    margin: 10px 0;
    color: #1793e6;
}

section#facturador .lt .articulos-nueva-factura .item .center .precio input {
    float: left;
    margin: 0 0 0 5px;
    border-style: solid;
    border-color: #ccc;
    border-width: 0 0 1px 0;
    padding: 20px 0;
    font-size: 15px;
    width: 50%;
}

section#facturador .lt .articulos-nueva-factura .item .right {
    float: right;
    width: auto;
}

section#facturador .lt .articulos-nueva-factura .item .right a {
    float: left;
    padding: 15px 0;
    font-size: 24px;
    color: orangered;
}

section#facturador .lt .articulos-nueva-factura .item .right p {
    float: left;
    font-size: 18px;
    margin: 18px 8px 18px 0;
    font-weight: bold;
}

section#facturador .lt .sin-resultados, .sin-resultados {
    font-size: 15px;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    color: gray;
}

section#facturador .lt .resultados-rubros-factura {
    margin: 40px 0;
}

section#facturador .lt .resultados-rubros-factura li {
    float: left;
    width: 20%;
    border-radius: 10px;
    box-shadow: 0px 0px 13px 5px rgb(193 193 193 / 38%);
    margin: 0 5% 35px 0;
    position: relative;
}

section#facturador .lt .resultados-rubros-factura li.active {
    box-shadow: 0px 0px 13px 5px orangered;
}

section#facturador .lt .resultados-rubros-factura li .content {
    width: 90%;
    margin: 20px auto;
    display: table;
    text-align: center;
}

section#facturador .lt .resultados-rubros-factura li a.close {
    display: none;
    position: absolute;
    right: 10px;
    top: 5px;
}

section#facturador .lt .resultados-rubros-factura li.active a.close {
    display: block;
}

section#facturador .lt .resultados-rubros-factura li .content img {
    width: 48px;
    text-align: center;
}

section#facturador .lt .resultados-rubros-factura li .content h5 {
    color: #333;
    font-size: 13px;
    width: 100%;
    text-align: center;
    margin: 0 0 8px 0;
}

section#facturador .lt .resultados-rubros-factura li .content h2 {
    font-size: 15px;
    width: 100%;
    text-align: center;
    margin: 0;
}

section#facturador .lt .resultados-rubros-factura li .content p {
    margin: 8px 0;
    color: gray;
    font-size: 13px;
}

section#facturador .lt .resultados-rubros-factura li .content input {
    width: 100%;
    border: 1px solid #ccc;
    text-align: center;
    border-radius: 8px;
    padding: 8px 0;
    margin: 5px 0 0 0;
}

section#facturador .rt {
    width: 30%;
    background: #f5f5f5;
    border-left: 1px solid #eee;
    position: fixed;
    top: 80px;
    height: 100%;
    right: 0;
}

section#facturador .rt .top, section#facturador .rt .carrito {
    width: 90%;
    margin: 20px auto 0 auto;
    display: table;
}

section#facturador .rt .top h2 {
    padding: 0;
    margin: 0;
    font-size: 18px;
    float: left;
    width: auto;
    font-weight: bold;
}

section#facturador .rt .top .accesos {
    float: right;
    width: auto;
}

section#facturador .rt .top .accesos a {
    float: left;
    display: table;
    width: auto;
    width: 24px;
    height: 24px;
}

section#facturador .rt .top .accesos a img {
    width: 100%;
}

section#facturador .rt .top label.fade {
    bottom: -25px;
    top: auto;
}

section#facturador .rt .top .select2-container--default .select2-selection--single {
    background: #f5f5f5 !important;
}

section#facturador .rt .carrito .sin-resultados {
    font-size: 13px;
    color: gray;
    text-align: center;
    width: 100%;
}

section#facturador .rt .carrito .item, section#facturador .rt .carrito .datos {
    width: 100%;
    display: table;
    padding: 12px 0;
    border-top: 1px dashed #ccc;
}

section#facturador .rt .carrito .item .info, section#facturador .rt .carrito .datos .info {
    float: left;
}

section#facturador .rt .carrito .item .info h2, section#facturador .rt .carrito .datos .info h2 {
    font-weight: bold;
    font-size: 15px;
    margin: 12px 0;
}

section#facturador .rt .carrito .item .precio, section#facturador .rt .carrito .datos .precio {
    float: right;
}

section#facturador .rt .carrito .item .precio p, section#facturador .rt .carrito .datos .precio p {
    color: #1793e6;
    font-weight: bold;
    font-size: 18px;
    margin: 10px 0;
}

section#facturador .rt .carrito .datos .precio p {
    margin: 0;
}

section#facturador .rt .carrito .datos .precio p input {
    border-style: solid;
    border-color: #ccc;
    border-width: 0 0 2px 0;
    background-color: transparent;
    padding: 10px 0;
    text-align: right;
}

section#facturador .rt .bottom {
    position: fixed;
    bottom: 40px;
    width: 30%;
    background: #eee;
    padding: 20px 0;
}

section#facturador .rt .bottom .content {
    width: 90%;
    margin: 0 auto;
}

section#facturador .rt .bottom .content .general {
    float: left;
    width: 45%;
}

section#facturador .rt .bottom .content .general li {
    width: 100%;
    margin: 8px auto;
    display: table;
}

section#facturador .rt .bottom .content .general li p, section#facturador .rt .bottom .content .total li p {
    float: left;
    font-size: 13px;
    color: gray;
    margin: 0;
    width: auto;
}

section#facturador .rt .bottom .content .general li span, section#facturador .rt .bottom .content .total li span {
    float: right;
    font-weight: bold;
    font-size: 13px;
    width: auto;
}

section#facturador .rt .bottom .content .total {
    float: right;
    width: 45%;
    border-left: 1px solid #ccc;
    padding: 30px 0 30px 4%;
}

section#facturador .rt .bottom .content .total li p, section#facturador .rt .bottom .content .total li span {
    font-size: 18px;
    font-weight: bold;
    color: black;
}

section#facturador .rt .bottom .content a {
    width: 100%;
    padding: 10px 0;
    margin: 20px 0 0 0;
}

/* SELECTOR */
.cc-selector {
    float: left;
    width: auto;
}

.cc-selector input {
    margin: 0 8px 0 0;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.search-codigo {
    background-image: url("/images/search-codigo.png");
}

.search-nombre {
    background-image: url("/images/search-nombre.png");
}

.cc-selector input:active + .drinkcard-cc {
    opacity: 0.9;
}

.cc-selector input:checked + .drinkcard-cc {
    -webkit-filter: none;
    -moz-filter: none;
    filter: none;
}

.drinkcard-cc {
    cursor: pointer;
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    width: 40px;
    height: 40px;
    -webkit-transition: all 100ms ease-in;
    -moz-transition: all 100ms ease-in;
    transition: all 100ms ease-in;
    -webkit-filter: brightness(1.8) grayscale(1) opacity(.7);
    -moz-filter: brightness(1.8) grayscale(1) opacity(.7);
    filter: brightness(1.8) grayscale(1) opacity(.7);
}

.drinkcard-cc:hover {
    -webkit-filter: brightness(1.2) grayscale(.5) opacity(.9);
    -moz-filter: brightness(1.2) grayscale(.5) opacity(.9);
    filter: brightness(1.2) grayscale(.5) opacity(.9);
}

/* CONTENT SECTION */
#content-section {
    display: table;
    margin: 85px 40px 15px 120px;
    border-radius: 2px;
    background: #fff;
    float: right;
    width: 92%;
}

/* SEPARADORES */
ul.sp-1, ul.sp-1 li, ul.sp-2, ul.sp-2 li {
    display: table;
	float: left;
    position: relative;
}

ul.sp-1, ul.sp-2 {
    width: 100%;
    padding: 25px 0;
}

ul.sp-1 li {
    width: 100%;
    padding: 0;
}

ul.sp-2 li {
    width: 48%;
    padding: 0;
}

ul.sp-1 li label, ul.sp-2 li label {
    position: absolute;
    left: 35px;
    bottom: 14px;
    background: transparent;
    transition: 0.5s;
    padding: 0 5px;
    color: gray;
    font-size: 13px;
    text-transform: none;
    width: auto;
}

ul.sp-1 li label.fade, ul.sp-2 li label.fade {
    color: gray;
    bottom: -25px;
    left: 0;
}

ul.sp-1 li i, ul.sp-2 li i {
    left: 10px;
}

ul.sp-1 li input, ul.sp-1 li select, ul.sp-1 li textarea, ul.sp-2 li input, ul.sp-2 li select, ul.sp-2 li textarea, .buscador ul li input, .buscador ul li select {
    width: 95%;
	float: left;
    padding: 12px 0 12px 35px;
    color: gray;
    font-size: 13px;
    border-radius: 5px;
    background: transparent;
    transition: 0.7s;
    position: relative;
    outline: none;
    border-color: #eee;
    border-width: 1px 1px 3px 1px;
    border-style: solid;
}

ul.sp-1 li textarea, ul.sp-2 li textarea {
    padding: 12px 15px;
}

ul.sp-1 li input, ul.sp-1 li textarea {
    width: 97% !important;
}

ul.sp-2 li input, ul.sp-2 li textarea {
    width: 93% !important;
}

ul.sp-1 li select, ul.sp-2 li select {
    width: 100% !important;
}

ul.btn {
	width: 100%;
    display: inline-block;
    padding: 8px 0;
}

ul.btn input[type="submit"], ul.btn input[type="reset"] {
    float: right;
    margin: 0;
}

/* ICONOS */
i {
    float: left;
    width: 18px;
    height: 18px;
    background-position: center;
    background-size: 18px;
    background-repeat: no-repeat;
    position: absolute;
    top: 12px;
    left: 0;
    filter: brightness(0);
    transition: 0.5s;
    z-index: 2;
}

i.tipo {
    background-image: url("/images/icon-tipo.png");
}

i.razon-social {
    background-image: url("/images/icon-razon-social.png");
}

i.negocio {
    background-image: url("/images/icon-negocio.png");
}

i.respiva {
    background-image: url("/images/icon-respiva.png");
}

i.doccuit {
    background-image: url("/images/icon-doccuit.png");
}

i.pais {
    background-image: url("/images/icon-pais.png");
}

i.provincia {
    background-image: url("/images/icon-provincia.png");
}

i.localidad {
    background-image: url("/images/icon-localidad.png");
}

i.codigo-postal {
    background-image: url("/images/icon-codigo-postal.png");
}

i.domicilio {
    background-image: url("/images/icon-domicilio.png");
}

i.telefono {
    background-image: url("/images/icon-telefono.png");
}

i.correo {
    background-image: url("/images/icon-correo.png");
}

i.codigo {
    background-image: url("/images/icon-codigo.png");
}

i.nombre {
    background-image: url("/images/icon-nombre.png");
}

i.marca {
    background-image: url("/images/icon-marca.png");
}

i.costo {
    background-image: url("/images/icon-costo.png");
}

i.precio {
    background-image: url("/images/icon-precio.png");
}

i.impuestos {
    background-image: url("/images/icon-impuestos.png");
}

i.nro {
    background-image: url("/images/icon-nro.png");
}

i.fecha {
    background-image: url("/images/icon-fecha.png");
}

i.pass {
    background-image: url("/images/icon-pass.png");
}

/* VENTANA MODAL */
.modal, #ventana-bloqueo {
    display: none;
    position: fixed;
    z-index: 9999;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

#ventana-bloqueo {
    background: rgba(0, 0, 0, 0.2);
}

.modal .modal-content .modal-header .content, .modal .modal-content .modal-body .content {
    width: 90%;
    margin: 0 auto;
}
  
.modal-content {
    position: relative;
    background-color: #fff;
    padding: 0;
    width: 45%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
    float: right;
    height: 100%;
}

.modal .modal-content .modal-header {
    margin: 0;
    padding: 30px 0 0 0;
    width: 100%;
    display: table;
}

.modal .modal-content .modal-header .content h2 {
    margin: 0;
    padding: 0;
    font-family: 'Lato', Arial;
    font-size: 38px;
    font-weight: 100;
    color: orangered;
    float: left;
}

.modal .modal-content .modal-header .content a {
    float: right;
    color: gray;
    font-weight: bold;
    font-size: 35px;
    padding: 8px 0;
}

.modal .modal-content .modal-body {
    width: 100%;
    display: table;
    background: #fff;
}

.modal .modal-content .modal-body .content form h4 {
    font-size: 15px;
    font-weight: bold;
    margin: 0;
    padding: 0;
}

.modal .modal-content .modal-body .content form ul.sp-1 input {
    width: 94% !important;
}

.modal .modal-content .modal-body .content ul.list {
    width: 100%;
    display:  table;
}

.modal .modal-content .modal-body .content ul.list li {
    width: 100%;
    display: table;
    border-bottom: 1px dotted #eee;
    padding: 12px 0;
    margin: 8px 0;
}

.modal .modal-content .modal-body .content ul.list li .lt {
    float: left;
    width: auto;
}

.modal .modal-content .modal-body .content ul.list li p, .modal .modal-content .modal-body .content ul.list li .lt p {
    font-size: 13px;
    color: gray;
    margin: 0;
}

.modal .modal-content .modal-body .content ul.list h4, .modal .modal-content .modal-body .content ul.list li .lt h4 {
    font-size: 15px;
    color: #333;
    font-weight: 100;
    margin: 0;
}

.modal .modal-content .modal-body .content ul.list li .rt {
    float: right;
}

.modal .modal-content .modal-body .content ul.list li .rt h3 {
    font-weight: bold;
    margin: 20px 0;
}

.modal .modal-content .modal-body .content ul.totales li {
    width: 100%;
    display: table;
}

.modal .modal-content .modal-body .content ul.totales li p {
    float: right;
    font-size: 15px;
    margin: 12px 0;
}

.modal .modal-content .modal-body .content ul.totales li p strong {
    font-weight: bold;
}

.modal .modal-content .modal-body .content ul.btn {
    margin: 20px 0;
}

@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0;
    } 

    to {
        top: 0;
        opacity: 1;
    }
}
  
@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0;
    }

    to {
        top: 0;
        opacity: 1;
    }
}

/* BUSCADOR */
.buscador {
    display: table;
    width: 100%;
    margin: 60px auto;
}

.buscador .lt {
    float: left;
}

.buscador .lt img {
    width: 48px;
}

.buscador .lt h2 {
    font-size: 24px;
    width: 100%;
    text-align: left;
    margin: 15px 0;
    font-weight: bold;
    padding: 0;
}

.buscador .lt p {
    margin: 0 0 15px 0;
    padding: 0;
    font-size: 15px;
    line-height: 25px;
    font-weight: 100;
    color: gray;
    width: 60%;
}

.buscador .lt hr {
    border-color: #1793e6;
    width: 80px;
    float: left;
}

/* RESULTADOS */
.resultados {
    width: 100%;
    display: table;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin: 0 auto;
}

.resultados .filtros {
    position: relative;
    display: table;
    width: 100%;
    background: #eee;
    padding: 8px 0;
    border-bottom: 1px solid #ccc;
    border-radius: 8px 8px 0 0;
}

.resultados .filtros a, .resultados .filtros form {
    float: left;
    margin: 0 0 0 8px;
}

.resultados .filtros a.btn.filtro {
    background: #fff;
    color: #333;
    border-color: #ccc;
}

.resultados .filtros a.btn img {
    width: 18px;
    margin: 0 5px -3px 0;
}

.resultados .filtros form {
    width: 30%;
}

.resultados .filtros form input[type="text"] {
    background-color: white;
    background-image: url("/images/search.png");
    background-position: 10px 7px;
    background-repeat: no-repeat;
    padding: 10px 12px 10px 40px;
    border: 1px solid #ccc;
    border-radius: 8px;
    float: left;
    font-size: 13px;
    margin: 0;
    width: 30%;
    transition: 0.5s;
}

.resultados .filtros form input[type="text"]:focus {
    width: 100%;
}

.resultados .filtros .botones {
    float: right;
    margin: 0 8px 0 0;
}

.resultados .filtros .botones.no-resp {
    display: block;
}

.resultados .filtros .botones.resp {
    display: none;
}

.resultados .filtros .box {
    position: absolute;
    box-shadow: 2px 3px 10px 2px rgb(0, 0, 0, 0.25);
    background: #fff;
    top: 65px;
    width: 30%;
    border-radius: 8px;
    left: 8px;
    z-index: 9;
}

.resultados .filtros .box .top, section#facturador .lt form .resultados-buscar-articulo .top {
    width: 100%;
    display: table;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    margin: 0;
    background: #fff;
}

.resultados .filtros .box .top {
    border-radius: 8px 8px 0 0;
}

.resultados .filtros .box .top h4, section#facturador .lt form .resultados-buscar-articulo .top h4 {
    padding: 0;
    margin: 0 auto;
    width: 95%;
    font-size: 16px;
    font-weight: bold;
    display: table;
    float: none;
}

.resultados .filtros .box .top h4 a.close, section#facturador .lt form .resultados-buscar-articulo .top h4 a.close {
    float: right;
    padding: 0;
}

.resultados .filtros .box .content {
    width: 95%;
    margin: 12px auto;
    display: table;
}

.resultados .filtros .box .content label {
    width: 100%;
    display: table;
    font-size: 15px;
    margin: 15px 0;
}

.resultados .filtros .box .content label span.checkmark {
    background: #fff !important;
}

.resultados .filtros .box .content label span.checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid #1793e6;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.resultados .filtros .box .content li {
    float: left;
    width: 49%;
    margin: 8px 0;
}

.resultados .filtros .box .content li label {
    margin: 0 0 8px 0;
}

.resultados .filtros .box .content li input, .resultados .filtros .box .content li select {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 12px 8px;
    width: auto;
    font-size: 13px;
    color: gray;
}

.resultados .filtros .box .content li select {
    width: 100%;
}

.resultados .filtros .box .pie {
    width: 100%;
    padding: 5px 0;
    border-top: 1px solid #eee;
    background: #f5f5f5;
    display: table;
    border-radius: 0 0 8px 8px;
}

.resultados .filtros .box .pie a {
    margin: 0 8px 0 0;
    float: right;
    font-size: 12px;
}

.resultados .sin-resultados, .box-home .content .sin-resultados {
    font-size: 15px;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    color: gray;
}

.resultados table tr.encabezado {
    background: #eee;
    border-style: solid;
    border-color: #ccc;
    border-width: 0 0 1px 0;
    border-radius: 0;
    margin: 0;
}

.resultados table tr.encabezado td, .resultados table tr.detalles td {
    color: #333;
    font-family: 'Poppins', Arial;
    font-weight: bold;
    padding: 12px;
}

.resultados table tr.encabezado td a {
    float: right;
    margin-right: 5px;
}

.resultados table tr.encabezado td a img {
    width: 6px;
    height: 6px;
    filter: contrast(0);
}

.resultados table tr.detalles td {
    font-weight: 100;
    border-color: #f5f5f5;
    border-width: 0 0 1px 0;
    padding: 20px 12px;
}

.resultados .paginador {
    width: 100%;
    display: table;
    margin: 0;
    padding: 12px 0;
    background: #eee;
    border-top: 1px solid #ccc;
    border-radius: 0 0 8px 8px;
}

.resultados .paginador a {
    font-weight: bold;
    float: left;
    font-size: 13px;
    margin: 0;
    color: gray;
}

.resultados .paginador p {
    width: auto;
    color: gray;
    font-size: 13px;
    margin: 0;
    display: table;
    margin: 0 auto;
}

/* CHECKBOX Y RADIO BUTTOM */
.container {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
  
.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
  
.checkmark {
    position: absolute;
    top: -5px;
    left: 4px;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

.container:hover input ~ .checkmark {
    background-color: #ccc;
}
  
.container input:checked ~ .checkmark {
    background-color: #2196F3 !important;
}
  
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
  
.container input:checked ~ .checkmark:after {
    display: block;
}
  
.container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* APPLE SWITCH */
span.apple-switch {
    width: 100% !important;
    margin-right: 3% !important;
    float: left;
}

span.apple-switch p {
    float: left;
    width: auto;
    margin-right: 10px;
    font-size: 13px;
    color: gray;
}

span.apple-switch input, ul.sp-1 li span.apple-switch input, ul.sp-2 li span.apple-switch input {
    position: relative;
    appearance: none;
    outline: none;
    width: 65px !important;
    height: 35px;
    background-color: #ccc;
    border: none !important;
    border-radius: 50px !important;
    box-shadow: inset -20px 0 0 0 #ccc;
    transition: 0.7s !important;
    cursor: pointer;
    float: left;
}

span.apple-switch input:after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 25px;
    height: 25px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 2px 4px 6px rgba(0,0,0,0.2);
}

span.apple-switch input:checked {
    border: none !important;
    box-shadow: inset 34px 0 0 0 #4ED164 !important;
    background-color: #4ed164 !important;
}

span.apple-switch input:checked:after {
    left: 34px;
    box-shadow: -2px 4px 3px rgba(0,0,0,0.05);
}

/* BUSCADOR CLIENTES */
.razonsocial-clientes, .correo-clientes {
    width: 20%;
}

.domicilio-clientes, .doccuit-clientes, .telefono-clientes {
    width: 15%;
}

.acciones-clientes, .acciones-articulos, td.acciones-descripciones-rapidas {
    width: auto;
    float: right;
    padding: 15px 20px 15px 0 !important;
}

/* BUSCADOR ARTICULOS */
td.codigo-articulos, td.tipo-articulos, td.precio-articulos, td.marca-articulos {
    width: 15%;
}

td.nombre-articulos {
    width: 28%;
}

/* BUSCAR DESCRIPCIONES RAPIDAS */
td.codigo-descripciones-rapidas {
    width: 8%;
}

td.concepto-descripciones-rapidas {
    width: 70%;
}

td.total-descripciones-rapidas {
    width: 10%;
}

/* TABLE RESULTADOS */
table {
    border-spacing: 0;
    width: 100%;
}

table tr {
    width: 100%;
    display: table;
}

table tr.encabezado {
    background: #1793e6;
    border: 1px solid #1793e6;
    border-radius: 8px 8px 0 0;
}

table tr.detalles, table tr.sin-resultados {
    transition: 0.5s;
    display: table;
    width: 100%;
}

table tr.sin-resultados, table tr.detalles {
    border-width: 0 1px 1px 1px;
    border-style: solid;
    border-color: #ddd;
    padding: 0;
}

.resultados table tr.detalles {
    border: none;
}

table tr.sin-resultados td {
    text-align: center;
    font-size: 13px;
    font-family: 'ubuntu', arial;
    color: #444;
    width: 100%;
    padding: 14px 10px;
    line-height: 24px;
}

table tr.detalles:hover {
    background: #EBF5FB !important;
}

table tr td {
    padding: 8px 10px;
    font-size: 13px;
    font-family: 'Ubuntu', Arial;
    font-weight: 100;
    color: #333;
    float: left;
}

table tr.encabezado td {
    color: #fff;
    padding: 15px 10px;
}

table tr.detalles td {
    font-size: 12px !important;
}

table td a img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

/* MODIFICACION RAPIDA */
td.codigo-modificacionrapida {
    width: 15%;
}

td.nombre-modificacionrapida {
    width: 20%;
}

td.costo-modificacionrapida, td.precio-modificacionrapida, td.impuestosinternos-modificacionrapida {
    width: 12%;
}

td.baseexenta-modificacionrapida, td.nogravado-modificacionrapida {
    width: 8%;
}

tr.articulo-modificacion-rapida td input {
    border: none;
    padding: 5px 0;
    font-size: 13px;
    color: #333;
    background: transparent;
    width: 100%;
    border-bottom: 1px solid transparent;
}

.btn-mr {
    width: 100%;
    display: table;
}

.btn-mr .lt {
    float: left;
    margin: 0 0 0 12px;
}

.btn-mr .lt li {
    float: left;
    width: auto;
    margin-right: 15px;
    padding: 10px 0;
}

.btn-mr .lt li .checkmark {
    background: #ccc;
}

.btn-mr .lt li label, .btn-mr .lt li input {
    float: left;
    color: gray;
    font-size: 13px;
}

.btn-mr .lt li input {
    width: 80px;
    border: 1px solid #eee;
    border-radius: 5px;
    color: #333;
    margin-left: 8px;
    padding: 10px 5px;
}

.btn-mr .rt {
    float: right;
    margin: 0 12px 0 0;
}

.btn-mr .rt a.btn {
    float: right;
    font-weight: 100;
    color: #fff;
}

/* BUSCADOR FACTURAS */
td.fecha-facturas, td.fecha-caea {
    width: 12%;
}

td.comprobante-facturas, td.nro-facturas, td.total-facturas, td.comprobante-caea, td.nro-caea, td.total-caea, td.afip-caea, td.limite-caea {
    width: 14%;
}

td.razonsocial-facturas {
    width: 30%;
}

td.acciones-facturas, td.acciones-caea {
    width: auto;
}

/* ESTADISTICAS */
.menu-estadisticas {
    width: 25%;
    float: right;
    position: sticky;
    top: 100px;
    margin: 20px 0 0 0;
}

.menu-estadisticas a {
    width: 100%;
    display: table;
    margin: 12px 0;
    transition: 0.5s;
    border-radius: 8px;
    padding: 15px 0;
}

.menu-estadisticas a.active {
    background: #eee;
}

.menu-estadisticas a .content {
    width: 90%;
    margin: 0 auto;
    display: table;
}

.menu-estadisticas a .content .pic {
    width: 10%;
    float: left;
}

.menu-estadisticas a .content .pic img {
    width: 38px;
    height: 38px;
}

.menu-estadisticas a .content .info {
    float: right;
    width: 85%;
}

.menu-estadisticas a .content .info h4 {
    font-weight: bold;
    font-size: 18px;
    color: #000;
    margin: 0%;
}

.menu-estadisticas a .content .info p {
    margin: 8px 0 0 0;
    font-weight: 100;
    font-size: 13px;
    color: gray;
}

.content-estadisticas {
    width: 70%;
    float: left;
    margin: 20px 0 0 0;
}

/* CONFIGURACION */
.configuracion .list {
    width: 100%;
    display: table;
    border-bottom: 1px dotted #eee;
    padding: 12px 0;
}

.configuracion .list p {
    float: left;
    font-size: 15px;
    color: #333;
}

.configuracion .list a {
    float: right;
    width: auto;
    font-size: 15px;
    font-weight: bold;
    color: orangered;
    margin: 15px 0;
}

/* PIC */
.pic {
    width: 100%;
    display: table;
}

.pic img {
    width: 100%;
    height: 140px;
}

/* TUTORIALES */
#tutoriales {
    width: 100%;
    display: table;
    border-radius: 20px;
    background: #eee;
    margin: 20px 0;
}

#tutoriales .content form {
    background: url("/images/fondo.jpg");
    width: 100%;
    display: table;
    padding: 40px 0;
    border-radius: 20px 20px 0 0;
}

#tutoriales .content form h2 {
    font-size: 48px;
    text-align: center;
    font-weight: bold;
    color: #fff;
}

#tutoriales .content form input {
    width: 80% !important;
    margin: 0 auto;
    padding: 20px 0 20px 70px;
    border-radius: 10px;
    background: #fff;
    display: table;
    float: none;
    font-size: 15px;
    background-image: url("../images/buscar.png");
    background-size: 48px;
    background-position: 12px 8px;
    background-repeat: no-repeat;
    filter: grayscale(1);
    transition: 0.5s;
}

#tutoriales .content form input:focus {
    filter: none;
}

#tutoriales .index-tutoriales, #tutoriales .index-tutoriales .categorias-tutoriales, #tutoriales .index-tutoriales .categorias-tutoriales .categoria-tutoriales, #tutoriales .index-tutoriales .categorias-tutoriales .categoria-tutoriales ul {
    width: 100%;
    display: table;
}

#tutoriales .index-tutoriales .categorias-tutoriales .categoria-tutoriales {
    margin: 50px 0;
}

#tutoriales .index-tutoriales .categorias-tutoriales .categoria-tutoriales h2 {
    color: #333;
    font-family: 'Ubuntu', Arial;
    font-size: 24px;
    width: 100%;
    text-align: center;
    font-weight: 700;
}

#tutoriales .index-tutoriales .categorias-tutoriales .categoria-tutoriales a {
    width: 100%;
    display: table;
    text-align: center;
    font-size: 15px;
    color: royalblue;
}

#tutoriales .index-tutoriales .categorias-tutoriales .categoria-tutoriales ul li {
    float: left;
    width: 50%;
    text-align: center;
    font-size: 15px;
    font-family: 'Ubuntu', Arial;
    min-height: 120px;
}

#tutoriales .index-tutoriales .categorias-tutoriales .categoria-tutoriales ul li a {
    width: 60%;
    margin: 0 auto;
    display: table;
}

#tutoriales .index-tutoriales .categorias-tutoriales .categoria-tutoriales ul li a img {
    float: left;
    width: 15%;
}

#tutoriales .index-tutoriales .categorias-tutoriales .categoria-tutoriales ul li a .info {
    float: right;
    width: 80%;
}

#tutoriales .index-tutoriales .categorias-tutoriales .categoria-tutoriales ul li a .info h4 {
    font-size: 18px;
    font-family: 'Ubuntu', Arial;
    font-weight: bold;
    color: #333;
    text-align: left;
    margin: 0;
}

#tutoriales .index-tutoriales .categorias-tutoriales .categoria-tutoriales ul li a .info p {
    font-size: 15px;
    font-family: 'Ubuntu', Arial;
    font-weight: 100;
    color: gray;
    text-align: left;
    line-height: 25px;
}

.tutoriales-articulos ul {
    margin: 0 0 20px 0;
}

.tutoriales-articulos ul h2 {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 12px 0;
}

.tutoriales-articulos ul li {
    background: #f5f5f5;
    border-radius: 12px;
    margin: 0 0 20px 0;
    cursor: pointer;
    padding: 15px 0;
    transition: 0.5s;
}

.tutoriales-articulos ul li:hover {
    background: #eee;
}

.tutoriales-articulos ul li .content {
    width: 90%;
}

.tutoriales-articulos ul li .content h5 {
    font-size: 13px;
    font-weight: bold;
    margin: 0;
}

.tutoriales-articulos ul li .content h4 {
    font-size: 15px;
    font-weight: bold;
    margin: 8px 0;
}

.tutoriales-articulos ul li .content p {
    font-size: 13px;
    color: gray;
    margin: 0;
}

.ver-articulo h5 {
    color: gray;
    margin: 0;
    font-size: 13px;
}

.ver-articulo h4 {
    font-size: 15px;
    margin: 18px 0;
}

.ver-articulo h2 {
    font-size: 18px;
    font-weight: bold;
    margin: 8px 0;
}

.ver-articulo p {
    font-size: 15px;
    font-weight: 100;
    margin: 0;
    line-height: 34px;
    color: gray;
}

.ver-articulo .info {
    width: 100%;
    display: table;
    border-top: 1px dashed #ccc;
    margin: 25px 0;
    padding: 25px 0;
}

.ver-articulo .info .lt {
    float: left;
    width: auto;
}

.ver-articulo .info .lt p {
    margin: -3px 5px 0 0;
    font-size: 15px;
    font-weight: bold;
    width: auto;
    float: left;
    color: #000;
}

.ver-articulo .info .lt a {
    float: left;
    width: 24px;
    height: 24px;
    display: table;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    margin: 0 5px;
}

.ver-articulo .info .lt a.ayuda-si {
    background-image: url("/images/ayuda-si.png");
}

.ver-articulo .info .lt a.ayuda-si-active {
    background-image: url("/images/ayuda-si-active.png");
}

.ver-articulo .lt a.ayuda-no {
    background-image: url("/images/ayuda-no.png");
}

.ver-articulo .lt a.ayuda-no-active {
    background-image: url("/images/ayuda-no-active.png");
}

.ver-articulo .info .rt {
    float: right;
    width: auto;
}

.ver-articulo .info .rt p {
    margin: 0;
    font-size: 15px;
    color: gray;
}

/* MI CUENTA */
#sidebar {
    background: #eee;
    position: sticky;
    height: 100%;
    width: 18%;
    float: left;
    top: 100px;
    left: 95px;
    border-radius: 8px;
    margin-top: 20px;
}

#sidebar a {
    display: table;
    width: 100%;
    padding: 18px 0;
    font-family: 'Ubuntu', Arial;
    font-size: 13px;
    color: #444;
}

#sidebar a.active {
    background: rgba(0, 0, 0, 0.1);
}

#sidebar a .content {
    width: 90%;
    margin: 0 auto;
}

#sidebar a .content img {
    float: left;
    width: 18px;
}

#sidebar a .content p {
    font-size: 13px;
    margin: 0 0 0 12px;
    padding: 0;
    width: auto;
    float: left;
}

#content-sub-section {
    background: #fff;
    width: 80%;
    float: right;
    margin: 10px auto 65px auto;
}

/* PLANES */
.planes nav {
    margin: 0 auto 120px auto;
    width: auto;
    background: #eee;
    border-radius: 30px;
    padding: 5px 8px;
    display: table;
}

.planes nav a {
    display: table;
    padding: 12px 20px;
    border-radius: 20px;
    float: left;
    font-size: 13px;
}

.planes nav a.active {
    background: #333;
    color: #fff;
}

.planes li {
    float: left;
    width: 30%;
    margin-right: 2%;
    border: 3px solid #eee;
    border-radius: 20px;
}

.planes li.active {
    border-color: #0e6251;
}

.planes li img {
    margin: -70px auto 0 auto;
    width: 100px;
    display: table;
    background: #fff;
    padding: 8px;
}

.planes li h5 {
    font-size: 18px;
    font-weight: bold;
    margin: 40px 0 0 0;
    width: 100%;
    text-align: center;
}

.planes li h2 {
    font-size: 48px;
    margin: 5px 0;
    font-weight: 700;
    color: #333;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
}

.planes li.active h2 {
    color: #0e6251;
}

.planes li p {
    font-weight: 400;
    color: gray;
    font-size: 14px;
    width: 60%;
    margin: 0 auto;
    text-align: center;
    line-height: 28px;
}

.planes .items {
    width: 100%;
    display: table;
    margin: 40px 0 0 0;
}

.planes .items p {
    width: 100%;
    text-align: center;
    font-size: 13px;
    color: gray;
    margin: 0;
    padding: 8px 0;
}

.planes a.btn {
    margin: 40px auto;
    width: auto;
    display: table;
}

/* PAGAR PLAN */
.pagar-plan .rt {
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 12px;
    float: right;
    width: 30%;
}

.pagar-plan .rt .content {
    width: 90%;
    margin: 0 auto;
    display: table;
}

.pagar-plan .rt .content h2 {
    font-size: 24px;
    margin: 12px 0;
    padding: 0;
    font-weight: bold;
}

.pagar-plan .rt .content li {
    margin: 15px 0;
    display: table;
    width: 100%;
    padding: 0;
}

.pagar-plan .rt .content li h4 {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    padding: 0;
}

.pagar-plan .rt .content li p {
    font-size: 13px;
    color: gray;
    margin: 5px 0 0 0;
    padding: 0;
}

.pagar-plan .lt {
    float: left;
    width: 65%;
}

.pagar-plan .lt h4 {
    font-size: 15px;
    color: #333;
    margin: 8px 0;
    padding: 0;
    font-weight: bold;
}

.pagar-plan .lt .items {
    width: 100%;
    display: table;
}

.pagar-plan .lt .items a {
    border-radius: 20px;
    background: #eee;
    padding: 20px;
    width: 95%;
    display: table;
    cursor: pointer;
    margin: 18px 0;
}

.pagar-plan .lt .items a img {
    float: left;
    width: 60px;
    margin-right: 20px;
}

.pagar-plan .lt .items a .info {
    float: left;
    width: 65%;
}

.pagar-plan .lt .items a .info h4 {
    margin: 0;
    padding: 0;
    font-size: 13px;
    font-weight: 600;
    color: #000;
}

.pagar-plan .lt .items a .info h2 {
    margin: 10px 0;
    padding: 0;
    font-size: 15px;
    font-weight: bold;
    color: #000;
}

.pagar-plan .lt .items a .info p {
    margin: 0;
    padding: 0;
    font-size: 13px;
    font-weight: 400;
    color: gray;
}

.pagar-plan .lt .items a .botones {
    float: right;
    width: auto;
    padding: 25px 0;
}

.pagar-plan .lt .items a .botones span {
    font-weight: bold;
    font-size: 22px;
    color: darkslateblue;
}

/* TITULO */
.titulo {
    width: 100%;
    display: table;
    border-bottom: 3px dotted #eee;
    margin: 0 0 20px 0;
}

.titulo h4 {
    float: left;
    width: auto;
    margin: 0 0 -3px 0;
    padding: 15px 0;
    border-bottom: 3px dotted orangered;
    font-weight: bold;
    font-family: 'Open Sans', Arial;
    font-size: 18px;
}

/* PROCESO DE CARGA */
#barra-proceso {
    border: none;
    padding: 2px 0;
    background: #1793e6;
    position: fixed;
    top: 0;
    z-index: 99999;
}

/* TITLE */
h4.title {
    font-size: 15px;
    font-weight: bold;
    margin: 20px 0 0 0;
}

/* SUBNAV */
.sub-nav {
    background: #fff;
    position: relative;
    width: 100%;
    margin: 20px auto;
    padding: 15px 0;
    z-index: 1;
    border-radius: 5px;
    font-size: 24px;
    font-weight: bold;
}

.sub-nav img {
    width: 35px;
    margin-bottom: -8px;
    margin-right: 12px;
    filter: brightness(0);
}

/* MENSAJES */
.msj {
    width: 100%;
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    font-weight: 100;
    border-radius: 2px;
}

.msj.yellow {
    background: #fff8dd;
    color: gray;
}

.msj.blue {
	background: #D8E3F9;
	color: #2E92CF;
}

/* ALERT */
.alert {
    padding: 20px 40px;
    min-width: 420px;
    position: fixed;
    right: 10px;
    top: 10px;
    border-radius: 4px;
    border-left: 8px solid transparent;
    overflow: hidden;
    display: none;
    z-index: 99999;
}

.alert.success {
    background: #d4edda;
    border-color: #c3e6cb;
}

.alert.warning {
    background: #ffdb9b;
    border-color: #ffa502;
}

.alert.error {
    background: #f8d7da;
    border-color: #f5c6cb;
}

.alert.show {
    animation: show_slide 1s ease forwards;
    display: block;
}

@keyframes show_slide {
    0% {
        transform: translateX(100%);
    }
    
    40% {
        transform: translateX(-10%);
    }

    80% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-10px);
    }
}

.alert.hide {
    animation: hide_slide 1s ease forwards;
}

@keyframes hide_slide {
    0% {
        transform: translateX(-10px);
    }

    40% {
        transform: translateX(0%);
    }

    80% {
        transform: translateX(-10%);
    }

    100% {
        transform: translateX(100%);
    }
}
 
.alert.success .fa-circle {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("/images/success.png");
    width: 24px;
    background-size: 100%;
    font-size: 30px;
    background-position: 0;
    height: 24px;
}

.alert.warning .fa-circle {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("/images/warning.png");
    width: 24px;
    background-size: 100%;
    font-size: 30px;
    background-position: 0;
    height: 24px;
}

.alert.error .fa-circle {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("/images/error.png");
    width: 24px;
    background-size: 100%;
    font-size: 30px;
    background-position: 0;
    height: 24px;
}

.alert .msj {
    padding: 0 55px;
    font-size: 16px;
    font-weight: 400;
}

.alert.success .msj {
    color: #155724;
}

.alert.warning .msj {
    color: #ce8500;
}

.alert.error .msj {
    color: #721c24;
}

.alert .close-btn {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    padding: 20px 18px;
    cursor: pointer;
}

.alert .close-btn:hover {
    color: rgba(0, 0, 0, 0.5);
}

.alert .close-btn .fas {
    font-size: 28px;
    line-height: 40px;
}

.alert.success .close-btn .fas {
    color: #155724;
}

.alert.warning .close-btn .fas {
    color: #ce8500;
}

.alert.error .close-btn .fas {
    color: #721c24;
}

/* CONFIRM */
.confirm {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    margin: 0px auto;
    padding: 0px auto;
    left: 0;
    top: 0;
    overflow: hidden;
    position: fixed;
    background: rgb(0, 0, 0, 0.3);
    z-index: 99999;
}

.confirm .box {
    background: #fff;
    min-height: 400px;
    width: 300px;
    box-shadow: 5px 5px 10px rgb(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 0;
    margin: 0;
    animation: open-frame 1s ease forwards;
}

.confirm .box .top {
    display: flex;
    background: url("/images/fondo.jpg");
    flex-direction: row;
    height: 175px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-size: 100%;
    background-position: 0 0;
    background-repeat: no-repeat;
    position: relative;
}
  
.confirm .box .top .close {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Dosis', sans-serif;
    font-weight: 700;
    cursor: pointer;
    line-height: 30px;
    color: #fff;
    font-size: 48px;
    position: absolute;
    top: 10px;
    right: 10px;
}

.confirm .box .body {
    padding: 30px 30px;
    display: flex;
    flex-direction: column;
    text-align: center;
}
  
.confirm .box .body .title {
    font-size: 18px !important;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 5px;
    color: #222;
    align-self: center;
}
  
.confirm .box .body .msj {
    font-size: 15px !important;
    color: #666;
    font-weight: 400;
    font-size: 15px;
    text-align: center;
    margin-bottom: 5px;
    line-height: 1.6;
    align-self: center;
}

.confirm .box .body #input {
    padding: 8px;
    font-size: 13px;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 98%;
    margin-bottom: 20px;
}
  
.confirm .box .body .buttons {
    width: 100%;
    display: table;
}

.confirm .box .body .buttons .btn {
    color: #fff;
    margin: 0 5px;
}

.confirm .box .body .buttons .btn.yes {
    background: #50cd89;
}

.confirm .box .body .buttons .btn.no {
    background: #dc3545;
}

.confirm.show {
    display: flex !important;
}
  
@keyframes open-frame {
    0% {
      transform: scale(1);
    }

    50% {
      transform: scale(0.97);
    }

    100% {
      transform: scale(1);
    }
}

/* VER MAS */
a.btn-ver-mas {
    width: 18px;
    padding: 12px 8px 0 0;
}

a.btn-ver-mas img {
    width: 100%;
}

.ver-mas {
    right: 0;
    left: unset !important;
}

.ver-mas a.close {
    position: absolute;
    top: 5px;
    right: 10px;
}

.ver-mas .content li {
    border-bottom: 1px dashed #eee;
    margin: 0 !important;
}

.ver-mas .content li a {
    text-align: left;
    padding: 12px 0;
}

.ver-mas .content li a img {
    width: 16px;
    float: left;
    filter: brightness(0);
}

.ver-mas .content li a p {
    padding: 0;
    margin: 0 0 0 8px;
    float: left;
    font-size: 13px;
    color: black;
}

/* LIBRO DE IVA */
.totales-libro-iva, .totales-caea, .totales-informes, .totales-facturas {
    float: right;
    width: 30%;
}

.totales-libro-iva li, .totales-caea li, .totales-informes li, .totales-facturas li {
    width: 100%;
    margin: 15px 0;
    display: table;
}

.totales-libro-iva li p, .totales-caea li p, .totales-informes li p, .totales-facturas li p {
    float: left;
    font-weight: bold;
    font-size: 13px;
    margin: 10px 0;
    text-align: right;
    width: 30%;
}

.totales-libro-iva li input, .totales-caea li input, .totales-informes li input, .totales-facturas li input {
    float: right;
    width: 60%;
    padding: 12px 5px;
    font-size: 13px;
    border: 1px solid #ccc;
    box-shadow: none;
    border-radius: 8px;
}

/* SELECCIONAR DESCRIPCION RAPIDA */
.box-items li {
    transition: 0.5s;
    display: table;
    width: 100%;
    cursor: pointer;
    padding: 20px 0;
    border-width: 1px 1px 1px 5px;
    border-color: #eee;
    border-style: solid;
    margin: 12px 0;
}

.box-items li:hover, .box-items li.active {
    border-color: #333;
}

.box-items .content {
    width: 95%;
    margin: 0 auto;
}

.box-items li .content .lt {
    float: left;
    width: 70%;
}

.box-items li .content .lt h5 {
    margin: 0;
    padding: 0;
    font-size: 13px;
    color: gray;
}

.box-items li .content .lt p {
    margin: 8px 0 0 0;
    padding: 0;
    font-size: 15px;
    color: black;
}

.box-items li .content span {
    float: right;
    padding: 8px 0;
    font-weight: bold;
    font-size: 18px;
    color: #333;
}

/* RADIO GROUP */
.radio-group input[type=radio] {
    position: absolute;
    visibility: hidden;
    display: none;
}
  
.radio-group label {
    color: #332f35;
    display: inline-block;
    cursor: pointer;
    font-weight: bold;
    padding: 5px 14px;
    font-size: 13px;
}
  
.radio-group input[type=radio]:checked + label{
    color: #fff;
    background: #332f35;
}
  
.radio-group {
    border: solid 3px #332f35;
    display: inline-block;
    margin: 20px;
    border-radius: 10px;
    overflow: hidden;
    position: fixed;
    bottom: 40px;
    left: 80px;
    z-index: 1000;
}

/* FACTURA RAPIDA */
.box-rapida {
    display: table;
    width: 40%;
    margin: 40px auto 0 auto;
}

.box-rapida .box {
    display: table;
    box-shadow: 0px 0px 13px 5px rgb(193 193 193 / 38%);
    background: #fff;
    width: 100%;
    border-radius: 8px;
    padding: 0;
}

.box-rapida .box h4 {
    width: 100%;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
}

.box-rapida .box li {
    width: 100%;
    border-top: 1px solid #eee;
    padding: 20px 0;
    display: table;
    margin: 0;
}

.box-rapida .box li .content {
    width: 90%;
    margin: 0 auto;
}

.box-rapida .box li .content label {
    float: left;
    width: 30%;
    font-size: 15px;
    padding: 12px 0;
    margin: 0;
}

.box-rapida .box li .content input, .box-rapida .box li .content select {
    border: none;
    outline: none;
    width: 65%;
    float: right;
    border-bottom: 3px solid #eee;
    padding: 12px 0;
}

.box-rapida .box li .content .select2-container {
    width: 68% !important;
    float: right;
}

.box-avanzada .select2-container {
    width: 100% !important;
}

.box-rapida .box li .content .select2-container--default .select2-selection--single {
    padding: 12px 0 !important;
}

.box-rapida a {
    float: right;
    margin: 20px 0;
}

/* METODOS DE PAGO */
ul.metodo-de-pago {
    width: 100%;
    display: table;
}

ul.metodo-de-pago li {
    width: 100%;
    display: table;
    margin: 20px 0;
    padding: 15px 0;
    border-radius: 8px;
    background: #f5f5f5;
    transition: 0.5s;
    cursor: pointer;
}

ul.metodo-de-pago input {
    display: none;
}

ul.metodo-de-pago input:checked + label li {
    background: #ccc;
}

ul.metodo-de-pago li .content {
    margin: 90%;
    margin: 0 auto;
}

ul.metodo-de-pago li .content img {
    float: left;
    width: 6%;
}

ul.metodo-de-pago li .content .info {
    float: right;
    width: 90%;
}

ul.metodo-de-pago li .content .info h4 {
    font-weight: bold;
    font-size: 16px;
    color: #333;
    margin: 0;
}

ul.metodo-de-pago li .content .info p {
    color: gray;
    font-size: 13px;
    font-weight: 100;
    margin: 5px 0 0 0;
}

/* ALTA CUENTA */
nav.alta-cuenta {
    margin: 40px 0;
    width: 100%;
    display: table;
}

nav.alta-cuenta a {
    float: left;
    display: table;
    margin: 0 20px 0 0;
}

nav.alta-cuenta a .content {
    width: 90%;
    margin: 0 auto;
    display: contents;
}

nav.alta-cuenta a .content span {
    font-size: 20px;
    color: #fff;
    display: table;
    background: gray;
    padding: 5px 15px;
    float: left;
    border-radius: 50%;
}

nav.alta-cuenta a .content p {
    float: left;
    margin: 8px 12px;
    display: table;
    color: gray;
    font-size: 18px;
    font-family: 'Open Sans', Arial;
}

nav.alta-cuenta a.active .content span {
    background: royalblue;
    color: #fff;
}

nav.alta-cuenta a.active .content p {
    color: royalblue;
    font-weight: bold;
}

.items-tipo-comprobante {
    width: 100%;
    display: table;
    margin: 0 0 40px 0;
}

.items-tipo-comprobante h4 {
    margin: 0 0 20px 0;
}

.items-tipo-comprobante li input {
    display: none;
}

.items-tipo-comprobante li label {
    float: left;
    width: 30%;
    margin-right: 3%;
    border-radius: 8px;
    border: 1px solid #eee;
    padding: 40px 0;
    cursor: pointer;
}

.items-tipo-comprobante li label .content {
    width: 90%;
    margin: 0 auto;
}

.items-tipo-comprobante li input:checked + label {
    background: royalblue;
}

.items-tipo-comprobante li label .content img {
    width: 80px;
    padding: 8px;
    border-radius: 50%;
    display: table;
    margin: 0 auto;
    background: #fff;
}

.items-tipo-comprobante li label .content h2 {
    text-align: center;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    margin: 20px 0 8px 0;
}

.items-tipo-comprobante li input:checked + label .content h2 {
    color: #fff;
}

.items-tipo-comprobante li label .content p {
    text-align: center;
    width: 100%;
    font-size: 15px;
}

.items-tipo-comprobante li input:checked + label .content p {
    color: #fff;
}

/* PREFERENCIAS */
.top-preferencias {
    display: table;
    width: 100%;
    margin: 0 0 40px 0;
}

.top-preferencias h2, .top-preferencias h2 span {
    font-family: 34px;
    font-weight: bold;
    color: #333;
    margin: 0;
    text-align: center;
}

.top-preferencias h2 span {
    color: royalblue;
}

.top-preferencias p {
    text-align: center;
    font-size: 15px;
    color: gray;
    
}

/* CALCULADORA */
.calculadora {
    width: 480px;
    height: auto;
    padding: 10px 0;
    margin: auto;
    background: #232323;
    border: #000 1px solid;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    box-shadow: rgba(0,0,0,0.4) 0px 2px 5px, inset rgba(255,255,255,0.9) 0px 1px 1px -1px;
    -webkit-box-shadow: rgba(0,0,0,0.4) 0px 2px 5px, inset rgba(255,255,255,0.9) 0px 1px 1px -1px;
    -moz-box-shadow: rgba(0,0,0,0.4) 0px 2px 5px, inset rgba(255,255,255,0.9) 0px 1px 1px -1px;
    background-image: -moz-linear-gradient(top, #333333, #1f1f1f);
    background-image: -webkit-linear-gradient(top, #333333, #1f1f1f);
    background-image: linear-gradient(top, #333333, #1f1f1f);
    overflow: hidden;
    text-align: center;
}

.calculadora .visor {
    width: 424px;
    height: 93px;
    margin: 12px auto 30px;
    padding: 0 20px 20px 20px;
    color: #c0c0c0;
    text-align: right;
    font-size: 3em;
    letter-spacing: 3px;
    overflow: hidden;
    border: #000 1px solid;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    box-shadow: inset rgba(0,0,0,1) 0px 1px 4px, inset rgba(225,225,225,0.3) 0px -2px 4px -2px;
    -webkit-box-shadow: inset rgba(0,0,0,1) 0px 1px 4px, inset rgba(225,225,225,0.3) 0px -2px 4px -2px;
    -moz-box-shadow: inset rgba(0,0,0,1) 0px 1px 4px, inset rgba(225,225,225,0.3) 0px -2px 4px -2px;
    background-image: -moz-linear-gradient(top, #3e3e3e 0%, #303030 100%);
    background-image: -webkit-linear-gradient(top, #3e3e3e 0%, #303030 100%);
    background-image: linear-gradient(top, #3e3e3e 0%, #303030 100%);
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: table;
}

.calculadora .visor .outcome {
    background: transparent !important;
    width: 100% !important;
    color: gray;
    font-size: 15px;
    border-bottom: 1px solid #444;
    padding: 0 0 20px 0;
    border: none;
    text-align: right;
    margin: 0;
    padding: 0;
}

.calculadora .buttons, .calculadora .footer {
    padding: 0;
    width: 423px;
    margin: auto;
    overflow: hidden;
    list-style: none;
}

.calculadora .buttons li {
    display: inline;
    float: left;
    padding: 0px;
    margin-right: 13px;
    margin-bottom: 10px;
}

.calculadora .buttons li:nth-child(4n) {
    margin-right: 0;
}

.calculadora .buttons a {
    display: block;
    width: 95px;
    height: 68px;
    padding: 18px 0 12px;
    color: #c0c0c0 !important;
    font-family: "Myriad Pro", Arial, sans-serif;
    font-size: 1.6em;
    font-weight: 500;
    letter-spacing: -2px;
    background-color: #2f2f2f;
    border: #000 1px solid;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    text-align: center;
    text-decoration: none;
    text-shadow: #000 0px -1px 0px;
    box-shadow: inset rgba(255,255,255,0.1) 0px 1px 0px, inset rgba(0,0,0,0.2) 0px -2px 2px;
    -webkit-box-shadow: inset rgba(255,255,255,0.1) 0px 1px 0px, inset rgba(0,0,0,0.2) 0px -2px 2px;
    -moz-box-shadow: inset rgba(255,255,255,0.1) 0px 1px 0px, inset rgba(0,0,0,0.2) 0px -2px 2px;
    background-image: -moz-linear-gradient(top, #363636 0%, #313234 40%, #2f2f2f 100%);
    background-image: -webkit-linear-gradient(top, #363636 0%, #313234 40%, #2f2f2f 100%);
    background-image: linear-gradient(top, #363636 0%, #313234 40%, #2f2f2f 100%);
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}

.calculadora .buttons a:active {
    box-shadow: inset rgba(0,0,0,0.5) 0px 2px 8px;
    background-image:-moz-linear-gradient(top, #2f2f2f 0%, #363636 100%);
    background-image:-webkit-linear-gradient(top, #2f2f2f 0%, #363636 100%);
    background-image:linear-gradient(top, #2f2f2f 0%, #363636 100%);
}

.calculadora .footer {
    margin: 20px auto;
}

.calculadora .footer a.click {
    padding: 20px 0;
    width: 48%;
    background: #000;
    border-radius: 10px;
    font-size: 15px;
    text-align: center;
    float: left;
    color: #fff;
}