@charset "UTF-8";

/* RESET CSS */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* CUSTOM RESET*/
a {
    text-decoration: none;
    cursor: pointer;
}
* {
    box-sizing: border-box;
}
*:focus {
    outline: 0;
}
* {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
body {
    -webkit-touch-callout: none; /* prevent callout to copy image, etc when tap to hold */
    -webkit-text-size-adjust: none; /* prevent webkit from resizing text to fit */
    -webkit-user-select: text; /* prevent copy paste, to allow, change 'none' to 'text' */
    user-select: text;
}

/* JQUERY MOBILE RESET */
.ui-loader {
    display: none !important;
}

/* DISABLE 300MS TAP Delay*/
html {
    touch-action: manipulation;
}

/* ---------- ------------------------ ----------- */
/* ---------- ------------------------ ----------- */
/* ---------- ------------------------ ----------- */
/* ----------    GENERAL APP STYLES    ----------- */

/* GENERALES */
body {
    width: 100%;
    height: 100%;
}
.app {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    min-height: 100%;
}
[data-role="page"] {
    z-index: 10;
    min-height: 100% !important;
}

/* LOADING */
#loading {
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    z-index: 100;
    display: none;
    opacity: 0;
}
#loading_gif {
    position: fixed;
    top: 50%;
    left: 50%;
    background: url(../images/loading.gif) no-repeat center;
    background-size: contain;
}

/* ALERTAS */
#alert {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1000;
    display: none;
    opacity: 0;
}
#alert_msg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    padding: 10px;
    margin: -160px 0px 0px -150px;
}
#alert_title {
    float: left;
    width: 100%;
    text-align: center;
}
#alert_text {
    float: left;
    width: 100%;
    margin-top: 20px;
    text-align: center;
}
#alert_buttons {
    float: left;
    width: 100%;
    margin-top: 30px;
    text-align: center;
}

/* PAGE CONTENT */
.page_content {
    position: absolute;
    left: 0;
    right: 0;
    overflow: auto;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    z-index: 1;
}

/* ---------- ------------------------- ----------- */
/* ---------- ------------------------- ----------- */
/* ---------- ------------------------- ----------- */
/* ---------- COMPLETAR ESTILOS PROPIOS ----------- */

/* FONTS */
@font-face {
    font-family: 'font_regular';
    src: url('fonts/font_regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'login';
    src: url('fonts/login.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'olivier';
    src: url('fonts/olivier.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* COMPLETAR ESTILOS INICIALES */
body {
    background-color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #1d1d1b;
}
::-webkit-input-placeholder { 
    font-family: 'Open Sans', sans-serif;
    color: rgba(255,255,255,0.6);
}
#loading {
    background: rgba(255,255,255,0.85);
}
#loading_gif {
    width: 100px;
    height: 100px;
    margin: -50px 0px 0px -50px;
}
#alert {
    background: rgba(0,0,0,0.8);
}
#alert_msg {
    background: #fff;
    border: 2px solid #932d1d;
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
}
#alert_title {
    font-size: 16px;
    color: #932d1d;
}

/* PAGE CONTENT */
.page_content {
    top: 50px;
    bottom: 0px;
    left: 250px;
    padding: 30px 0px;
}
.page_content_full {
    top: 0px;
    left: 0px;
    padding: 0px;
}

/* TAMAÑO CONTENIDO */
.page_content_1024 {
    width: 960px;
    margin: 0 auto;
}

/* ---------- ------------------------- ----------- */
/* ---------- ------------------------- ----------- */
/* ---------- ------------------------- ----------- */
/* ----------         ESTRUCTURA        ----------- */

/* LAYOUT */
.full {
    float: left;
    width: 100%;
}
.full_10 {
    float: left;
    width: 100%;
    padding: 0px 10px;
}
.responsive_large {
    float: left;
    width: 100%;
}
.half {
    float: left;
    width: 50%;
}
.half_10 {
    float: left;
    width: 50%;
    padding: 0px 10px;
}
.half_5_l {
    float: left;
    width: 50%;
    padding: 0px 5px 0px 0px;
}
.half_5_r {
    float: left;
    width: 50%;
    padding: 0px 0px 0px 5px;
}
.thirty_10 {
    float: left;
    width: 30%;
    padding: 0px 10px;
}
.third_10 {
    float: left;
    width: 33.33%;
    padding: 0px 10px;
}
.hepta_10 {
    float: left;
    width: 70%;
    padding: 0px 10px;
}
.forth_10 {
    float: left;
    width: 25%;
    padding: 0px 10px;
}
.forth_10_right {
    float: right;
}
.penta_10 {
    float: left;
    width: 20%;
    padding: 0px 10px;
}
.penta_10_right {
    float: right;
}
.hexa_5 {
    float: left;
    width: 16.6666%;
    padding: 0px 5px;
}
.section_title {
    position: relative;
    font-family: 'olivier';
    text-align: center;
    font-size: 30px;
    color: #932d1d;
    margin: 20px 0px 10px 0px;
}
.btn_toggleSection {
    position: absolute;
    top: 0px;
    right: 0px;
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    background: #668532;
    color: #fff;
    text-align: center;
    padding-top: 2px;
}
.section_subTtitle {
    font-family: 'olivier';
    text-align: center;
    font-size: 20px;
    color: #668532;
    margin: 20px 0px 10px 0px;
}
.section_form {
    margin-bottom: 20px;
}
.nuevo_item_form {
    margin-top: 20px;
    width: 100% !important;
}
.nuevo_item_row {
    margin-bottom: 10px;
}
.table_header {
    float: left;
    width: 100%;
    padding: 10px 0px;
    background: #668532;
    color: #fff;
    text-align: center;
    font-size: 16px;
}
.table_header .table_header_item {
    padding: 0px !important;
}
.table_header_item {
    float: left;
    border-right: 1px dashed #ccc;
}
.table_header_item_l {
    float: left;
}
.table_item {
    float: left;
    padding: 10px 0px;
    border-bottom: 1px dashed #ccc;
}
.table_item:hover {
    background: #ccc;
}
.table_info_item {
    position: relative;
    float: left;
    padding: 8px 0px;
    border-left: 1px dashed #ccc;
}
.table_info_item_l {
    float: left;
    padding: 8px 0px;
    border-left: 1px dashed #ccc;
    border-right: 1px dashed #ccc;
}
.table_info_item_act {
    float: left;
    border-left: 1px dashed #ccc;
    border-right: 1px dashed #ccc;
}
.table_item_check {
    position: absolute;
    top: 3px;
    left: calc(50% - 12px);
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 12px;
    text-align: center;
    background: #668532;
    color: #fff;
    padding-top: 5px;
    cursor: default;
}
.table_item_unCheck {
    position: absolute;
    top: 3px;
    left: calc(50% - 12px);
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 12px;
    text-align: center;
    background: #932d1d;
    color: #fff;
    padding-top: 5px;
    cursor: default;
}
.table_items {
    float: left;
}

/* MENÚS */
#main_menu {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 250px;
    bottom: 0px;
    background-image: url("../images/bg_menu.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 20;
}
#main_menu_top {
    padding: 20px 10px;
    border-bottom: 2px solid #668532;
}
#menu_logo {
    float: left;
    width: 50px;
    height: 50px;
    padding-top: 16px;
    background-color: transparent;
    border-radius: 25px;
    background-image: url("../images/logo_admin.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#menu_top_info {
    float: left;
    width: calc(100% - 50px);
    padding-left: 10px;
    color: #ffffff;
}
#menu_username {
    float: left;
    width: 100%;
    margin-top: 5px;
    font-size: 18px;
}
#menu_useremail {
    float: left;
    width: 100%;
    margin-top: 5px;
    font-size: 12px;
}
#mainMenu_logout {
    display: inline-block;
    margin-top: 10px;
    color: #ffffff;
    font-weight: 700;
}
#main_menu_title {
    padding: 10px 20px;
    font-weight: 700;
    color: #ffffff;
}
.menu_items_section {
    float: left;
    width: 100%;
}
.menu_items_section_title {
    float: left;
    width: 100%;
    height: 36px;
    padding: 10px 36px 0px 20px;
    color: #ffffff;
    background-image: url("../images/arrow_toggle.png");
    background-position: right 0px;
    background-repeat: no-repeat;
    background-size: 36px 72px;
    cursor: pointer;
}
.menu_items_section_title_active {
    background-position: right -36px !important;
}
.menu_items_section_items {
    float: left;
    width: 100% !important;
    display: none;
}
.menu_items_section_show {
    display: block;
}
.menu_item {
    float: left;
    width: 100%;
    height: 36px;
    padding: 10px 36px 0px 20px;
    color: #ffffff;
}
.menu_items_section .menu_item {
    padding: 10px 36px 0px 40px;
}
.menu_item:hover {
    background-color: #668532;
}
.menu_item_active {
    background-color: #668532;
    background-image: url("../images/arrow_right.png");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
}

/* HEADER */
.page_header {
    position: fixed;
    top: 0px;
    left: 250px;
    right: 0px;
    height: 50px;
    background: #f2f2f2;
}
.btn_back {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 50px;
    height: 50px;
    background-image: url("../images/arrow_left_p.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.header_title {
    float: left;
    width: calc(50% - 50px);
    margin-left: 50px;
    padding-top: 16px;
    font-size: 18px;
    font-weight: 700;
    color: #932d1d;
}
.header_actions {
    float: left;
    width: 50%;
    text-align: right;
    padding-right: 20px;
    padding-top: 8px;
}

/* FORMULARIOS */
input, select, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    font-family: 'Open Sans', sans-serif;
    resize: none;
}
.input_cont {
    margin-bottom: 10px;
}
.input_container_login {
    float: left;
    width: 100%;
    padding: 0px 20%;
    margin-bottom: 10px;
    text-align: center;
}
.admin_input {
    float: left;
    width: 100%;
    height: 30px;
    padding: 0px 15px;
    text-align: center;
    border: 0;
    background: #932D1D;
    border-radius: 15px;
    font-size: 16px;
    color: #fff;
}
.admin_input_login {
    float: left;
    width: 100%;
    height: 44px;
    padding: 0px 15px;
    text-align: left;
    border: 1px solid #cccccc;
    background-color: #ffffff;
    border-radius: 22px;
    font-size: 16px;
    color: #932D1D;
}
.admin_input_login::placeholder {
    color: #999999;
}
.admin_input_div {
    float: left;
    width: 100%;
    height: 30px;
    padding: 7px 15px;
    text-align: center;
    border: 0;
    background: #932D1D;
    border-radius: 15px;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
}
.admin_input_button {
    float: left;
    width: calc(100% - 35px);
    height: 30px;
    text-align: center;
    padding: 0px 15px;
    border: 0;
    background: #932D1D;
    border-radius: 15px;
    font-size: 16px;
    color: #fff;
}
.admin_textarea {
    height: 60px;
    resize: none;
    padding: 10px;
    text-align: left;
}
.input_label {
    margin-bottom: 5px;
}
.categories_checkboxes {
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    width: 16px;
    height: 16px;
}

/* BOTONES */
.app_button {
    display: inline-block;
    height: 30px;
    background: #ffffff;
    padding: 5px 15px 0px 15px;
    text-align: center;
    font-size: 16px;
    color: #668532;
    letter-spacing: 1px;
    border: 2px solid #668532;
    border-radius: 15px;
}
.app_button_44 {
    display: inline-block;
    height: 44px;
    padding: 12px 30px 0px 30px;
    text-align: center;
    font-size: 16px;
    border-radius: 22px;
    background: #668532;
    font-family: 'font_regular';
    text-align: left;
    font-size: 16px;
    color: #fff;
    letter-spacing: 1px;
}
.app_button:hover, .app_button_active {
    color: #ffffff;
    background: #668532;
    border: 2px solid #668532;
}
.app_button_2 {
    display: inline-block;
    height: 30px;
    background: #ffffff;
    padding: 5px 10px 0px 10px;
    text-align: center;
    font-size: 16px;
    color: #932d1d;
    letter-spacing: 1px;
    border: 2px solid #932d1d;
    border-radius: 15px;
}
.app_button_2:hover {
    color: #ffffff;
    background: #932d1d;
    border: 2px solid #932d1d;
}
.btn_search {
    float: left;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    background-color: #932D1D;
    background-image: url(../images/ico_search.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 15px;
}
.btn_search:hover {
    background-color: #668532;
}
.btn_full {
    width: 100%;
}

/* ---------- ------------------------ ----------- */
/* ---------- ------------------------ ----------- */
/* ---------- ------------------------ ----------- */
/* ---------- PÁGINAS DE LA APLICACIÓN ----------- */

/* PAGE LOGIN */
#page_login {
    background: url("../images/bg_login.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#login_logo {
    height: 98px;
    margin: 50px 0px;
    background-image: url("../images/login_logo.png");
    background-repeat: no-repeat;
    background-size: contain;
}
#login_form {
    float: left;
    width: calc(100% - 360px);
    height: 420px;
    background: #fff;
    border-radius: 10px;
}
#login_title {
    text-align: center;
    color: #932d1d;
    font-weight: 700;
    font-size: 24px;
    padding: 20px 0px;
    border-bottom: 1px solid #cccccc;
    margin-bottom: 60px;
}
#login_user {
    padding-left: 60px;
    background-image: url("../images/ico_email.png");
    background-position: 10px center;
    background-size: contain;
    background-repeat: no-repeat;
}
#login_pass {
    padding-left: 60px;
    background-image: url("../images/ico_password.png");
    background-position: 10px center;
    background-size: contain;
    background-repeat: no-repeat;
}
#login_forgotPass {
    margin-top: 20px;
    text-align: center;
}

/* PAGE PEDIDOS */
#pedidos_items {
    text-align: center;
}
.pedidos_green {
    color: #668532;
}
.pedidos_red {
    color: #932d1d;
}
.pedidos_yellow {
    color: #dec53c;
}
.pedidos_item_id {
    width: 60px;
}
.pedidos_item_estado {
    width: 100px;
}
.table_item .pedidos_item_estado_call{
    width: 100px;
    padding: 0px;
}
.pedidos_item_estado_call_text {
    font-weight: 700;
    font-size: 13px;
    color: #000000;
}
.pedidos_item_fecha {
    width: 180px;
}
.pedidos_item_cliente {
    width: 220px;
}
.pedidos_item_total {
    width: 100px;
}
.pedidos_item_mpago {
    width: 150px;
}
.pedidos_item_actions {
    width: 150px;
}

/* DETALLE DE PEDIDO */
.canasta_item {
    float: left;
    width: 100%;
    padding: 5px 0px;
    border-bottom: 1px dashed #ccc;
}
.canasta_item_ico {
    float: left;
    width: 50px;
    height: 50px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.canasta_item_info {
    float: left;
    width: calc(100% - 50px - 86px);
    padding: 0px 10px;
}
.canasta_info_name {
    float: left;
    width: 100%;
    font-size: 18px;
}
.canasta_info_short {
    float: left;
    width: 100%;
    margin-top: 3px;
    font-size: 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.canasta_info_instrucciones {
    float: left;
    width: 100%;
    margin-top: 5px;
    font-size: 12px;
}
.canasta_item_right {
    float: left;
    width: 86px;
    min-height: 50px;
    padding: 0px 5px 5px 5px;
    font-size: 13px;
    text-align: center;
    border-left: 1px dashed #ccc;
    border-right: 1px dashed #ccc;
}
.canasta_item_price {
    float: left;
    width: 100%;
    padding-top: 17px;
    font-size: 16px;
    margin-bottom: 5px;
}
#pedido_adicionales_container {
    margin: 20px 0px;
}
#pedido_adicionales_title {
    font-size: 24px;
    font-family: 'olivier';
    color: #A2B750;
    text-align: center;
}
#detallePed_mapsLink {
    color: #668532;
    font-weight: 700;
}
#pedido_adicionales_items {
    margin-top: 10px;
}
.pedido_adicionales_item {
    padding: 10px 0px;
    border-top: 2px solid #932D1D;
}
.pedido_adicionales_item_title {
    font-family: 'olivier';
    color: #932D1D;
    text-align: left;
    font-size: 18px;
}
.pedido_adicionales_canasta {
    margin-top: 10px;
}
.pedido_detalle_row {
    padding: 10px 0px;
    border-bottom: 1px dashed #ccc;
}
#pedido_adicionalesDetalle {
    display: none;
    margin: 20px 0px;
}
.pedido_detalleAdicionales_row {
    padding: 10px 0px;
    border-bottom: 1px dashed #932D1D;
}
#pedido_adicionalesDetalle_items {
    margin-top: 10px;
}
.pedido_detalleAdicionales_row:first-of-type {
    border-top: 1px dashed #932D1D;
}
.pedido_detalle_item {
    border-left: 1px dashed #ccc;
}
.pedido_detalle_item_l {
    border-left: 1px dashed #ccc;
    border-right: 1px dashed #ccc;
}
.pedido_detalle_title {
    float: left;
    width: 100%;
    font-family: 'olivier';
    color: #932d1d;
    text-align: center;
    font-size: 20px;
}
.pedido_adicionalesDetalle_title {
    float: left;
    width: 100%;
    padding: 5px 0px 10px 10px;
    font-family: 'olivier';
    color: #A2B750;
    text-align: left;
    font-size: 20px;
}
.pedido_detalle_info {
    float: left;
    width: 100%;
    margin-top: 5px;
    text-align: center;
}
.pedido_detalle_estadoCall {
    font-weight: 700;
    color: #000000;
}

/* CATEGRORÍAS */
#nuevaCategoria_cont {
    padding-bottom: 20px;
    border-bottom: 1px dashed #ccc;
}
#btn_newCatPic {
    overflow: hidden;
}
#categorias_items {
    text-align: center;
}
.cats_item_icono {
    width: 100px;
    padding: 0px;
}
.cats_item_icono img {
    width: 50px;
}
.cats_item_id {
    width: 60px;
}
.cats_item_nombre {
    width: 300px;
}
.cats_item_actions {
    width: 500px;
}
#categorias_items .cats_item_id {
    height: 52px;
    padding: 18px 0px;
}
#categorias_items .cats_item_nombre {
    padding: 0px 10px;
}
#categorias_items .cats_item_nombre, #categorias_items .cats_item_actions {
    height: 52px;
    padding-top: 10px;
}

/* PRODUCTOS */
#nuevoProducto_cont {
    padding-bottom: 20px;
    border-bottom: 1px dashed #ccc;
}
#nuevoProducto_form {
    display: none;
    width: 100% !important;
}
#productos_filtro {
    margin-bottom: 10px;
}
#productos_buscar {
    margin-bottom: 20px;
}
#productos_items {
    text-align: center;
}
#productos_items .table_info_item {
    min-height: 30px;
}
.productos_item_id {
    width: 50px;
}
.productos_item_nombre {
    width: 150px;
}
#productos_items .productos_item_nombre {
    padding: 8px 10px;
}
.productos_item_cat {
    width: 150px;
}
.productos_item_precio {
    width: 80px;
}
.productos_item_prePromo {
    width: 80px;
}
.productos_item_present {
    width: 100px;
}
.productos_item_destacado {
    width: 50px;
}
.productos_item_promocionado {
    width: 50px;
}
.productos_item_habilitado {
    width: 50px;
}
.productos_item_call {
    width: 50px;
}
.productos_item_actions {
    width: 150px;
}
#detalleProd_images {
    text-align: center;
    margin-bottom: 50px;
}
#detalleProd_images img {
    width: 170px;
    height: 170px;
    max-width: 100%;
}
#detalleProd_icono, #detalleProd_foto {
    margin-bottom: 10px;
}

/* CUPONES */
#nuevoCupon_cont {
    padding-bottom: 20px;
    border-bottom: 1px dashed #ccc;
}
#inp_newCupon_cupon {
    text-transform: uppercase;
}
#cupones_items {
    text-align: center;
}
.coupon_item_id {
    width: 80px;
}
.coupon_item_cupon {
    width: 250px;
}
.coupon_item_tipo {
    width: 100px;
}
.coupon_item_valor {
    width: 130px;
}
.coupon_item_expira {
    width: 220px;
}
.coupon_item_actions {
    width: 180px;
}
#newCoupon_categories_items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.newCoupon_cat_label {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    padding: 5px 20px;
    margin: 0 !important;
}

#newDomiciliario_categories_items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.newDomiciliario_cat_label {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    padding: 5px 20px;
    margin: 0 !important;
}

/* CUPONES */
#cuponUsuarios_items {
    text-align: center;
}
.domic_item_nombre {
    width: 100%;
    font-weight: 700;
    padding: 0px 0px 10px 10px;
    text-align: left;
    font-size: 16px;
    border-right: 1px dashed #ccc;
}
.couponUser_item_id {
    width: 80px;
}
.couponUser_item_nombre {
    width: 350px;
}
.couponUser_item_email {
    width: 350px;
}
.couponUser_item_actions {
    width: 180px;
}

/* DOMICILIARIOS */
#cont_btn_domiciliariosHistorial {
    text-align: right;
    margin-bottom: 20px;
}
#domiciliarios_items {
    text-align: center;
}
.domic_item_id {
    width: 60px;
}
.domic_item_code {
    width: 150px;
}
.domic_item_valor {
    width: 120px;
}
.domic_item_estado {
    width: 90px;
}
.domic_item_bonif {
    width: 140px;
}
.domic_item_acumulado {
    width: 120px;
}
.domic_item_actions {
    width: 280px;
}

/* DOMICILIARIOS HISTORIAL */
#domicPagos_items, #domicIndivPagos_items {
    text-align: center;
}
.domicPago_item_id {
    width: 110px;
}
.domicPago_item_name {
    width: 290px;
}
.domicPago_item_dni {
    width: 190px;
}
.domicPago_item_valor {
    width: 150px;
}
.domicPago_item_fecha {
    width: 220px;
}

/* INFORME DE DOMICILIARIO */
#domicInforme_pagos {
    margin-top: 50px;
}

/* ZONAS */
#nuevoZona_cont {
    padding-bottom: 20px;
    border-bottom: 1px dashed #ccc;
}
#cobertura_top_links {
    text-align: right;
    margin-top: 20px;
}
#cobertura_items {
    text-align: center;
}
.zona_item_id {
    width: 80px;
}
.zona_item_nombre {
    width: 150px;
}
.zona_item_zona {
    width: 450px;
    padding: 0px 10px;
}
.zona_item_actions {
    width: 280px;
}

/* SIN COBERTURA */
#sinCobertura_items {
    text-align: center;
}
.noCobert_item_id {
    width: 80px;
}
.noCobert_item_dir {
    width: 450px;
}
.noCobert_item_coor {
    width: 280px;
}
.noCobert_item_actions {
    width: 150px;
}

/* PARAMETROS*/

#parametros_items {
    text-align: center;
}

.parametro_item_etiqueta {
    width: 580px;
}
.parametro_item_valor {
    width: 160px;
}
.parametro_item_actions {
    width: 220px;
}


/* FESTIVOS */
#nuevoFestivocont {
    padding-bottom: 20px;
    border-bottom: 1px dashed #ccc;
}
#festivos_items {
    text-align: center;
}
.festivo_item_id {
    width: 100px;
}
.festivo_item_fecha {
    width: 480px;
}
.festivo_item_actions {
    width: 380px;
}

/* NOTIFICACIONES */
#nuevaNotificacioncont {
    padding-bottom: 20px;
    border-bottom: 1px dashed #ccc;
}
#nuevoMensaje_left {
    border-right: 1px dashed #ccc;
}
#notificaciones_items {
    text-align: center;
}
.notif_item_id {
    width: 80px;
}
.notif_item_titulo {
    width: 220px;
}
.notif_item_mensaje {
    width: 400px;
}
.notif_item_expira {
    width: 110px;
}
.notif_item_actions {
    width: 150px;
}
.nuevaNotif_textareacont {
    margin-top: 5px;
}

/* USUARIOS */
#nuevoUsuariocont {
    padding-bottom: 20px;
    border-bottom: 1px dashed #ccc;
}
#usuarios_items {
    text-align: center;
}
.users_item_id {
    width: 70px;
}
.users_item_user {
    width: 260px;
}
.users_item_pass {
    width: 220px;
    padding: 0px 10px;
}
.users_item_perms {
    width: 180px;
    padding: 0px 10px;
}
.users_item_actions {
    width: 230px;
}

/* PUBLICIDAD */
#publicidad_actual {
    margin-top: 10px;
    border: 1px solid #932D1D;
}
#publicidad_actual img {
    width: 100%;
    height: auto;
}
#publicidad_Estado {
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
}

/* WEBSITE */
#banners_items {
    text-align: center;
    margin-bottom: 50px;
}
.banner_item_foto {
    width: 200px;
    padding: 8px 5px;
}
.banner_item_foto img {
    width: 100%;
    height: auto;
}
.banner_item_tipo {
    width: 150px;
    padding: 8px 5px;
}
.banner_item_linkid {
    width: 150px;
    padding: 8px 5px;
}
.banner_item_boton {
    width: 150px;
    padding: 8px 5px;
}
.banner_item_orden {
    width: 90px;
    padding: 8px 5px;
}
.banner_item_actions {
    width: 220px;
    padding: 8px 0px;
}

/* PAGE CLIENTES */
#clientes_items {
    text-align: center;
    margin-bottom: 50px;
}
#filtroClientes_items {
    text-align: center;
    margin-bottom: 50px;
}
.clientes_item_date {
    width: 100px;
}
.clientes_item_nombre {
    width: 170px;
}
.clientes_item_email {
    width: 200px;
    word-break: break-all;
}
.clientes_item_telefono {
    width: 120px;
}
.clientes_item_actions {
    width: 370px;
}
#clientesNext {
    text-align: right;
}

/* FILTRO DE CLIENTES */
#filtroClientes_actions_cont {
    padding-bottom: 20px;
    border-bottom: 1px dashed #ccc;
    margin-bottom: 20px;
}
#filtroClientes_acciones {
    display: none;
    width: 100% !important;
}
.filtroAcciones_row {
    margin-bottom: 10px;
    text-align: center;
}
.filtroAcciones_row_mid {
    border-left: 1px solid #932d1d;
    border-right: 1px solid #932d1d;
}

/* CRÉDITOS */
#creditos_User {
    color: #932d1d;
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
}
#creditos_items {
    text-align: center;
    margin-bottom: 50px;
}
.creditos_item_date {
    width: 320px;
}
.creditos_item_quant {
    width: 320px;
}
.creditos_item_admin {
    width: 320px;
}

/* ESTADÍSTICAS */
#estadFiltrocont {
    padding-bottom: 20px;
    border-bottom: 1px dashed #ccc;
}
#inp_estad_hora_cont {
    display: none;
}
#estad_items {
    text-align: center;
}
#estadFecha_title {
    text-align: center;
    color: #668532;
    font-size: 18px;
    margin-bottom: 20px;
}
.estad_item_pedidos {
    width: 110px;
}
.estad_item_items {
    width: 130px;
}
.estad_item_dinero {
    width: 180px;
}
.estad_item_dcto {
    width: 180px;
}
.estad_item_franja {
    width: 180px;
}
.estad_item_modoPago {
    width: 180px;
}
#estad_items .table_info_item {
    height: 60px;
}
#estad_descargas_cont {
    text-align: center;
}
#estProd_items {
    text-align: center;
}
.estProd_item_id {
    width: 80px;
}
.estProd_item_icono {
    width: 100px;
    padding: 0px;
}
.estProd_item_icono img {
    width: 50px;
}
.estProd_item_nombre {
    width: 450px;
}
.estProd_item_cant {
    width: 150px;
}
.estProd_item_pres {
    width: 180px;
}
#estProd_items .table_info_item {
    height: 50px;
}
#estProd_items .table_info_item_l {
    height: 50px;
}

/* PAGE CALL CENTER - CLIENTES */
#call_clientes_buscar {
    margin-bottom: 20px;
}
#call_clientes_items {
    text-align: center;
}
.call_clientes_item_name {
    width: 510px;
    padding: 10px 10px;
}
.call_clientes_item_dni {
    width: 200px;
}
.call_clientes_item_tel {
    width: 200px;
}
.call_clientes_item_actions {
    width: 250px;
}

/* PAGE CALL CENTER - SELECCIONAR DIRECCIÓN */
#call_direccion_cliente_info {
    margin-bottom: 10px;
}
.call_pedidoCliente_title {
    color: #1d1d1b;
    font-size: 16px;
    font-weight: 700;
}
#call_pedidoDir_items {
    text-align: center;
}
.call_pedidoDir_item_dir {
    width: 400px;
    padding: 10px 10px;
}
.call_pedidoDir_item_indica {
    width: 410px;
    padding: 10px 10px;
}
.call_pedidoDir_item_actions {
    width: 150px;
}
#call_direccion_cliente_nueva {
    margin-bottom: 20px;
}

/* MAPA */
.mapa_row {
    margin-top: 10px;
}
.geo_dir_text {
    float: left;
    width: 16px;
    height: 30px;
    text-align: center;
    padding-top: 7px;
    margin-right: 10px;
}
#geo_dir_4, #geo_dir_6 {
    width: calc(100% - 16px - 10px);
}
#envio_mapa {
    float: left;
    width: 100%;
    height: 200px;
    margin-top: 20px;
    background: #f2f2f2;
}
#canasta_map_pin {
    position: absolute;
    top: calc(50% - 34px);
    left: calc(50% - 17px);
    width: 34px;
    height: 34px;
    background-image: url("../images/map_pin.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* SELECCIONAR FECHA */
#call_pedido_fecha_cont {
    margin-top: 20px;
}

/* CANASTA */
#call_pedido_totales_cont {
    margin-top: 10px;
    border-top: 1px solid #932d1d;
    border-bottom: 1px solid #932d1d;
    padding: 10px;
}
#call_pedido_canasta_cont {
    margin-top: 10px;
    display: table;
}
.call_pedido_canasta_col {
    display: table-cell;
    vertical-align: top;
    float: unset;
}
#call_pedido_canasta_borders {
    border-left: 1px solid #932d1d;
    border-right: 1px solid #932d1d;
}
#cont_call_buscarProductos {
    position: relative;
    z-index: 10;
}
#sel_call_listaProductos {
    position: absolute;
    background: #668532;
    top: 100%;
    left: 0px;
    border-radius: 15px;
}
.sel_call_listaProd_item {
    padding: 10px;
    border-bottom: 1px solid #ffffff;
    color: #ffffff;
    cursor: pointer;
    display: none;
}
#cont_call_productoForm {
    position: relative;
    display: none;
    margin-top: 20px;
    border-top: 1px dashed #a2a2a2;
    z-index: 1;
}
#cont_call_productoForm_name {
    font-size: 20px;
    color: #668532;
}
.cont_call_productoForm_item {
    margin-top: 10px;
}
.tienda_item_agotado {
    color: #932d1d;
    font-size: 20px;
}
#lab_call_addProd_quant {
    float: left;
    width: 80px;
    height: 30px;
    padding-top: 7px;
}
#inp_call_addProd_quant {
    width: calc(100% - 80px);
}
.call_item_added {
    position: absolute;
    top: 10px;
    left: -25px;
    width: 20px;
    height: 20px;
    background-image: url(../images/item_added.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.anterior_canasta_item {
    position: relative;
}
.anterior_item_added {
    position: absolute;
    top: 10px;
    right: -10px;
    width: 20px;
    height: 20px;
    background-image: url(../images/item_added.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: none;
}
.tienda_item_ico {
    position: relative;
    float: left;
    width: 50px;
    height: 50px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.call_pedido_canasta_col_1 {
    float: unset;
    width: 30%;
    padding: 0px 10px;
}
.call_pedido_canasta_col_2 {
    float: unset;
    width: 40%;
    padding: 0px 10px;
}
.call_pedido_canasta_col_3 {
    float: unset;
    width: 30%;
    padding: 0px 10px;
}
.tienda_info_name {
    float: left;
    width: 100%;
    font-size: 18px;
}
.tienda_info_short {
    float: left;
    width: 100%;
    margin-top: 3px;
    font-size: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.btn_canasta_indicaciones {
    float: left;
    width: 100%;
    margin-top: 5px;
    color: #932d1d;
    text-decoration: underline;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    cursor: pointer;
}
.canasta_item_remove {
    float: left;
    width: 33px;
    height: 33px;
    border-radius: 16.5px;
    color: #932d1d;
    font-size: 27px;
    padding-top: 1px;
    text-align: center;
    cursor: pointer;
}
.canasta_item_add {
    float: left;
    width: 33px;
    height: 33px;
    margin-left: 5px;
    border-radius: 16.5px;
    color: #932d1d;
    font-size: 26px;
    padding-top: 0px;
    text-align: center;
    cursor: pointer;
}
.canasta_item_indicaciones_cont {
    float: left;
    width: 100% !important;
    margin-top: 5px;
    display: none;
}
.placita_indicaciones {
    float: left;
    width: 100%;
    height: 24px;
    text-align: left;
    border: 1px solid #000000;
    font-size: 12px;
    padding: 0px 15px;
    background: rgba(255,255,255,0.5);
    border-radius: 5px;
    color: #1d1d1d;
}
.placita_indicaciones::-webkit-input-placeholder {
    font-family: 'font_regular';
    font-size: 12px !important;
    color: #1d1d1d;
}
#call_canasta_total {
    font-size: 18px;
}
#inp_envio_destino {
    width: 180px;
    display: inline-block;
    float: unset;
}

/* CIERRES PROGRAMADOS */
#btn_cierre_cont {
    float: right;
}
#cierres_items {
    text-align: center;
}
.cierres_item_imagen {
    width: 100px;
}
.cierres_item_imagen img {
    width: 100%;
    height: auto;
}
.cierres_item_motivo {
    width: 210px;
}
.cierres_item_fecha {
    width: 500px;
}
.cierres_item_actions {
    width: 150px;
}