/* input(2277,35): run-time error CSS1046: Expect comma, found '0'
input(2277,39): run-time error CSS1046: Expect comma, found '/' */
:root {
	--logo-principal: url('../img/logo2.svg?v=02GYND06XsW7UGJGB-ZRQDUpOgY');
	--logo-principal-color: url('../img/logoColor.svg?v=cn7Ry5rF2vUy3gYZNkMY4teqFsI');
	--logo-home-container: url('../img/bg.jpg?v=9RFN3FQi2E-FD-8ejpohNwO3FVg');
	--ip-site-bgcolor: #f4f6f8;
	--ip-site-bgcolor-o: #7D7D7D;
	--color-primary: #fa6c00;
	--color-secondary: #039db0;
	--bg-btn-standar: #F3F3F3;
	--bg-btn-cta: #fa6c00;
	--bg-btn-standar-gris: #F3F3F3;
	--progress-bar: #b8c715;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', 'Open Sans', sans-serif;
	font-weight: 400;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}
svg {
	font-size: 14px !important;
}
button:disabled {
	opacity: .4;
	cursor: not-allowed;
}
input:disabled, textarea:disabled {
	opacity: .4;
	pointer-events: none;
	cursor: not-allowed;
}
::-webkit-scrollbar {
	background-color: transparent;
	height: 4px;
	width: 4px;
}
::-webkit-scrollbar-thumb {
	border: none;
	border-radius: 9px;
	background-color: #dbdbdb;
}
::-webkit-scrollbar-thumb:hover {
	background-color: #333;
}
/*EFECTO SHOW*/
@keyframes showIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}
.ip-animation-showIn:not([hidden]) {
	animation: showIn 1s;
	display: block !important;
}
/*CHECK BOX*/
.regular-checkbox {
	-webkit-appearance: none;
	-moz-appearance: none;
	background-color: #fafafa;
	border: 1px solid #cacece;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05);
	padding: 7px;
	border-radius: 3px;
	display: inline-block;
	position: relative;
	outline: none;
	vertical-align: -2.5px;
    cursor: pointer;
}
.regular-checkbox:active, .regular-checkbox:checked:active {
	box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.regular-checkbox:checked {
	border: 1px solid #adb8c0;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05);
	color: #99a1a7;
}
.regular-checkbox:checked:after {
	content: '\2714';
	font-size: 12px;
	position: absolute;
	top: -1px;
	left: 3px;
	color: var(--color-secondary);
}
/*RADIO BUTTONS*/
.ip-radio {
	-webkit-appearance: none;
	-moz-appearance: none;
	background-color: #fafafa;
	border: 1px solid #cacece;
	box-shadow: 0px 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);
	padding: 7px;
	border-radius: 50px;
	display: inline-block;
	position: relative;
	outline: none;
	cursor: pointer;
}
.ip-radio:checked{
    background-color: #e9ecee;
    color: #99a1a7;
    border: 1px solid #adb8c0;
}
.ip-radio:checked:after {
    content: ' ';
    width: 10px;
    height: 10px;
    border-radius: 50px;
    position: absolute;
    top: 2px;
    background: var(--color-secondary);
    box-shadow: inset 0px 0px 10px rgba(0,0,0,0.3);
    text-shadow: 0px;
    left: 2px;
    font-size: 32px;
}
.ip-radio[disabled] + label {
	cursor: not-allowed;
	color: #777;
}
/*VENTANAS MODALES*/
.ip-dlg-modal-overlay {
	display: none;
	justify-content: center;
	align-items: flex-start;
	position: fixed;
	left: 0;
	top: 0;
	padding-top: 30px;
	width: 100%;
	height: 100%;
	z-index: 100;
	overflow: auto;
	background-color: rgba(0,0,0,0.5);
	animation: ip-dlg-modal-fadeIn .05s;
}
@keyframes ip-dlg-modal-fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
.ip-dlg-modal-content {
    margin-top: 10px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    position: relative;
    transition: all 2s;
    animation: ip-dlg-modal-scale .1s;
    box-shadow: 0 6px 12px rgba(255,255,255,0.2);
}
@keyframes ip-dlg-modal-scale {
    from {
        transform: scale(.7);
    }

    to {
        transform: scale(1);
    }
}
.ip-dlg-modal-content > span {
    position: absolute;
    right: 10px;
    top: 0px;
    font-size: 1.5em;
    font-weight: 400;
    color: #aaa;
    cursor: pointer;
    transition: all .2s;
}
.ip-dlg-modal-content > span:hover {
    color: #333;
}
.ip-dlg-modal-titulo {
    color: #000;
    padding: 20px;
    border-bottom: 1px solid #ddd;
}
.ip-dlg-modal-titulo > svg {
    font-size: 1em !important;
}
.ip-dlg-modal-body {
	width: 100%;
	height: calc(100% - 70px);
	overflow: auto;
}
.ip-list-group {
	display: flex;
	flex-direction: column;
}
.ip-list-group-item {
	position: relative;
	display: block;
	padding: .75em 1em;
	border-bottom: .9px solid rgba(0,0,0,.125);
}
.ip-list-group-item small {
    font-size: 10px
}
.ip-color-secondary {
    color: var(--color-secondary);
}
.ip-bgcolor-secondary {
	background-color: var(--color-secondary);
}
.ip-color-black {
	color: #000;
}
.ip-color-verde-c {
    color: #b8c715;
}
.ip-color-rojo-c {
	color: #EA4335;
}
.ip-color-amarillo-c {
    color: #fa6c00;
}
.ip-badges {
	color: #fff;
	background-color: var(--color-secondary);
	padding-right: .6em;
	padding-left: .6em;
	border-radius: 10rem;
}
.ip-cursor-pointer {
	cursor: pointer;
}

/*POPOVER MODAL*/
.ip-popover-container {
	display: none;
	position: absolute;
	top: 0px;
	left: calc(100% / 2.1);
	z-index: 10;
	border: .9px solid rgba(0,0,0,.2);
	border-radius: .3em;
	min-width: 200px;
	margin-left: 25px;
}
.ip-popover-header {
    padding: .5rem .75rem;
    margin-bottom: 0;
    font-size: .9em;
    font-weight: 600;
    color: #000;
    background-color: #FAFAFA;
    border-bottom: 1px solid #ebebeb;
    border-top-left-radius: calc(.3em - 1px);
    border-top-right-radius: calc(.3em - 1px);
}
.ip-popover-header > svg {
	margin-right: 5px;
    vertical-align: -1px;
}
.ip-popover-body {
	padding: .5rem .75rem;
	color: #212529;
	background: #fff;
	border-radius: .3em;
	font-size: .8em;
}
.ip-popover-show:hover + .ip-popover-container {
	display: block;
}
.fa-exclamation-triangle {
	cursor: help;
}
/*IP-AZ-MENU-TOP*/
header.ip-menu-top {
	width: 100%;
	height: 40px;
	background-color: var(--color-secondary);
	overflow: hidden;
}
header.ip-menu-top > nav {
	width: 100%;
	height: 100%;
}
header.ip-menu-top > nav > ul {
	width: 100%;
	height: 100%;
	list-style-type: none;
	display: flex;
	justify-content: flex-end;
}
header.ip-menu-top > nav > ul > li {
	font-size: .8em;
	color: #fff;
	cursor: pointer;
}
header.ip-menu-top > nav > ul > li:hover {
	background-color: var(--color-primary);
}
header.ip-menu-top > nav > ul > li.ip-menu-tab-active {
	background-color: var(--color-primary);
}
header.ip-menu-top > nav > ul > li:last-child {
	padding-right: 30.3px;
}
header.ip-menu-top > nav > ul > li:first-child {
	margin-right: auto;
	padding-left: 30.3px;
	cursor: default;
}
header.ip-menu-top > nav > ul > li:first-child:hover {
	background-color: transparent;
}
header.ip-menu-top > nav > ul > li > a {
	display: block;    
	padding: 11.5px 14.15px;
	color: #fff;
	text-decoration: none;
}
header.ip-menu-top > nav > ul > li > a > span {
	margin-left: 4.7px;
}
#div_montoTotal > h4 > span {
	font-size: 20px;
	font-weight: 600;
	color: var(--color-secondary);
}
#btn_notificaciones {
	position: relative;
}
#btn_notificaciones > .ip-badge {
	position: absolute;
    top: 0px;
    left: -10px;
    border-radius: 50%;
    background-color: red;
    color: white;
    width: 22px;
    height: 22px;
    text-align: center;
    line-height: 22px;
}
#div_logo {
    width: 106px;
    height: 100%;
    background-image: var(--logo-principal);
    background-repeat: no-repeat;
    background-position: 50% 66%;
    background-size: contain;
}

/*MENU USUARIO*/
aside.ip-menu-user {
	height: calc(100vh - 40px);
	width: 200px;
	position: fixed;
	z-index: 200;
	top: 40px;
	right: -200px;
	background-color: #fafafa;
	overflow-x: hidden;
	transition: all 0.4s;
	color: #333;
	padding: 0;
	text-align: center;
	display: block;
	border-left: .9px solid #ddd;
	font-size: .9em;
}
aside.ip-menu-user > a {
	padding: 10px 0;
    border-top: 1px solid #edeeef;
	display: block;
	text-decoration: none;
    color: #333;
	cursor: pointer;
	transition: 0.3s;
}
aside.ip-menu-user > a:hover {
	background-color: #edeeef
}
aside.ip-menu-user > a > svg {
	color: var(--color-secondary);
	margin-right: 4.7px;
}
main.ip-site-container {
	width: 100%;
	height: calc(100vh - 40px);
	padding: 30px 30px 0;
}
.ip-site-subcontainer {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
}
/*IP-AZ-SUBMENU-TOP*/
.ip-submenu-top {
	width: 100%;
	height: 23px;
	margin-bottom: 9px;
}
.ip-submenu-top > ul {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: flex-end;
    align-items: center;
}
.ip-submenu-top > ul > li {
	list-style-type: none;
	margin-left: 14px;
}
.ip-submenu-top > ul > li.ip-submenu-title {
	margin-right: auto;
	margin-left: 1.25em;
	text-transform: uppercase;
}
.ip-submenu-top > ul > li:last-child {
	margin-right: 1.25em;
}
.ip-submenu-top > ul > li > a {
	text-decoration: none;
    color: #000;
	cursor: pointer;
}
.ip-submenu-top > ul > li > button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
}
.ip-submenu-top > ul > li > label {
	font-size: 12px;
	font-weight: 400;
	cursor: pointer;
}
.ip-submenu-top > ul > li svg {
	font-size: 14px;
	vertical-align: -2px;
}
.ip-submenu-top > ul > li span {
	margin-left: 5px;
	font-size: 12px;
	font-weight: 400;
}
.ip-submenu-search {
    position: relative;
    width: 250px;
}
.ip-submenu-search > svg {
    position: absolute;
    position: absolute;
    color: var(--color-secondary);
    left: 10px;
    top: 8px;
}
.ip-submenu-search > input {
    width: 100%;
    height: 2.25em;
    line-height: 2.25em;
    padding: 5px 26px 5px 2.25em;
    font-size: .8rem;
    background-color: hsla(0,0%,100%,.999);
    border-radius: 4px;
    border-color: hsla(0,0%,89%,1);
    border: 1px solid transparent;
    box-shadow: inset 0 0px 2px hsla(0,0%,0%,0.28);
    outline: none;
}

/*DROP DOWN*/
.ip-dropdown {
    position: relative;
    display: inline-block;
}
.ip-dropbtn {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
}
.ip-dropdown-content {
	display: none;
	position: absolute;
	left: -25px;
	background-color: #FAFAFA;
	min-width: 120px;
	border-radius: 2px;
	box-shadow: 0px 6px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
	white-space: nowrap;
}
.ip-dropdown-content > h5 {
	margin: 0;
	padding: 10px;
	font-weight: 600;
	cursor: default;
	border-bottom: 1px solid #ddd;
	background-color: rgba(3, 157, 176, 0.04);
}
.ip-dropdown-content > a {
	display: block;
	padding: 10px;
	color: #000;
	cursor: pointer;
	font-size: 12px;
    font-weight: 400;
    text-decoration: none;
}
.ip-dropdown-content > h5 ~ a {
	padding-left: 20px;
}
.ip-dropdown-content > a:hover {
	background-color: #f2f2f2;
}
.ip-dropdown:hover .ip-dropdown-content {
	display: block;
}
.ip-dropdown-content > a:focus .ip-dropdown-content {
	display: none;
}
/*DATATABLE LISTADO*/
.ip-divTableCaption {
	display: table;
	width: 100%;
	text-transform: uppercase;
}
.ip-divTableCaption:empty {
	display: none;
}
.ip-divTableCaptionRow {
    display: table-row;
    background-color: #FAFAFA;
}
.ip-divTableCaptionCell {
	display: table-cell;
	padding: .75em .75em;
	text-align: left;
}
.ip-divTableCaptionCell > span {
	font-weight: 600;
	font-size: 14px;
}
.ip-divBody {
	width: 100%;
	height: calc(100% - 125px);
	overflow: auto;
}
.ip-divTableBody {
	display: table;
	width: 100%;
}
.ip-divTableBodyRow {
	display: table-row;
}
.ip-divTableBodyRow.hide {
    display: none;
}
.ip-divTableBodyCell {
	display: table-cell;
	padding: .75em .75em;
	text-align: left;
	border-bottom: 0.9px solid #E0DFDF;
	vertical-align: text-top;
}
.ip-divTableBodyCell > span {
	font-size: 14px;
    font-weight: 400;
}
.ip-divTableBodyCell > small {
	display: block;
	font-size: 10px;
}
.ip-divTableBodyCell > p {
	text-overflow: ellipsis;
    overflow: hidden;
    white-space: initial;
	font-size: 14px;
}
.ip-divTableBodyRowActive {
	background-color: #f1f8fd;
}
.ip-divTableBodyRowActive, .fa-caret-right, fal fa-edit fa-lg {
    color: var(--color-secondary);
}
.ip-emptyCell {
	padding: 5px 0px 5px 10px !important;
	width: 20px !important;
	text-align: center;
}
.ip-centerCell {
	text-align: center;
	vertical-align: text-top;
}
#div_montoTotal {
	display: flex;
	justify-content: flex-end;
	padding-right: 25px;
}
/*TITULO VISTA PARCIAL*/
.ip-pv-totalrecolecta-container {
	width: 100%;
}
.ip-pv-totalrecolecta-container > h2 {
	text-transform: uppercase;
	text-indent: 48px;
	padding-bottom: 22px;
}
.ip-pv-totalrecolecta-container-detalle {
	height: 297px;
	width: 100%;
	background-color: #FAFAFA;
	padding: 33px 48px;
}
/*TABLE VISTA PARCIAL*/
.ip-pv-totalrecolecta-container-detalle > table {
	width: 100%;
}
.ip-pv-totalrecolecta-container-detalle > table td {
    text-align: left;
    padding: 0 0 12px;
}
.ip-pv-totalrecolecta-container-detalle > table td:nth-child(2n+2) {
    text-align: right !important;
}
.ip-pv-div-hr {
    height: 0.5px;
    width: 100%;
    background-color: #E0DFDF;
    margin: 25px 0;
}
.ip-pv-totalrecolecta-container-detalle > table:last-child tr:last-child td {
	font-size: 20px;
	font-weight: 600;
	padding-bottom: 0;
}
/*WIZARD*/
.ip-wizard-container {
	width: 850px;
}
.ip-wizard-pdg-left {
	padding-left: 21px !important;
	text-indent: 20px;
}
.ip-wizard-pdg-left > input[type=checkbox] {
	vertical-align: -3px !important;
}
.ip-wizard-mg-left {
	width: calc(100% - 41px);
	margin-left: 41px;
}
.ip-wizard-mg-top {
	margin-top: 46.5px;
}
.ip-wizard-not-border {
	border-bottom: 0;
}
.ip-wizard-mg-left .ip-divTableBodyCell {
	padding: 1em 0 .50em 0;
	text-indent: 0 !important;
}
.ip-wizard-flex-container {
	display: flex;
	margin-bottom: 25px;
}
.ip-wizard-flex-col-8 {
    flex-basis: 8%;
}
.ip-wizard-flex-col-2 {
    flex-basis: 2%;
}
.ip-wizard-flex-col-15 {
	flex-basis: 15%;
}
.ip-wizard-flex-col-20 {
	flex-basis: 20%;
}
.ip-wizard-flex-col-25 {
	flex-basis: 25%;
}
.ip-wizard-flex-col-30 {
	flex-basis: 30%;
}
.ip-wizard-flex-col-45 {
	flex-basis: 45%;
}
.ip-wizard-flex-col-50 {
	flex-basis: 50%;
}
.ip-wizard-flex-col-60 {
	flex-basis: 60%;
}
.ip-wizard-flex-col-70 {
	flex-basis: 70%;
}
.ip-wizard-flex-col-75 {
	flex-basis: 75%;
}
.ip-wizard-flex-col-80 {
    flex-basis: 80%;
}
.ip-wizard-flex-col-85 {
    flex-basis: 85%;
}
.ip-wizard-flex-col-100 {
	flex-basis: 100%;
}
.ip-align-center {
	align-items: center;
}
/*LABEL, INPUTS, BUTTONS*/
.ip-label-design {
	font-size: 14px;
	font-weight: 400;
	vertical-align: 2px;
	padding-left: 5px;
	z-index: -1;
}
.ip-textbox-design {
	border: none;
	border-bottom: .9px solid #dbdbdb;
	font-size: 1em;
	font-weight: 300;
	outline: none;
	width: 100%;
	padding: 5px 0;
}
.ip-buttons-design {
	border: none;
	background-color: #FAFAFA;
	padding: 5px;
	cursor: pointer;
	outline: none;
	min-width: 40px;
	text-align: center;
}
.ip-recoleta-title {
	text-transform: uppercase;
	text-indent: 41px;
	padding-bottom: 22px;
}
.ip-divTableBodyCell > select {
	width: 100%;
	-webkit-appearance: none;
	border: none;
	outline: none;
	background-color: transparent;
}
.ip-add-angle-down, .ip-add-radio {
	position: relative;
}
.ip-add-angle-down svg {
	position: absolute;
    right: 10px;
    top: 25px;
}
.ip-add-angle-down label {
	color: rgba(0,0,0,.2) !important;
	padding-left: 0 !important;
    position: absolute !important;
    top: 20px !important;
    left: 0px !important;
}
.ip-divTableBodyCell > label {
	font-size: 14px;
	font-weight: 400;
	vertical-align: 2px;
	padding-left: 5px;
	cursor: pointer;
	z-index: -1;
}
.ip-wizard-acciones {
	margin-top: 22px;
	padding-left: 41px;
}
.ip-btn-link {
    font-size: .8rem;
    cursor: pointer;
    color: var(--color-secondary);
	text-decoration: none;
}
.ip-btn-standar {
    margin-right: 20px;
    padding: 10px 18px;
    background-color: var(--bg-btn-standar);
    border: none;
    border-radius: 4px;
    color: var(--color-secondary);
    cursor: pointer;
	text-decoration: none;
    outline: none;
    font-size: .8em;
}
.ip-btn-cta {
    background-color: var(--bg-btn-cta);
    color: #FFF;
}
.ip-btn-badges {
	padding: .2rem .4rem .3rem;
	margin-right: 5px;
	font-weight: 600;
}
#div_paso2_block1 {
    height: 100%;
}
#div_paso2_block1 > .ip-divBody {
	max-height: 450px;
}
#div_paso2_block2 .ip-wizard-mg-left .ip-divTableBodyCell {
	padding-bottom: 0 !important;
	padding-top: .75em !important;
}
.ip-metodo-pago-icono {
	font-size: 1.5em;
	vertical-align: middle;
}
.ip-totalrecolecta-container {
	height: 390px;
	width: 400px;
}
/*SPINNER*/
#div_spinner {
	width: 100vw;
	height: calc(100vh - 40px);
	position: absolute;
	top: 40px;
	left: 0;
	display: none;
	justify-content: center;
	align-items: center;
}
#div_spinner > svg {
	margin-top: -40px;
	font-size: 3em !important;
}
.ip-home-container {
	width: 100vw;
	height: 100%;
	position: fixed;
	top: 40px;
	left: 0;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: var(--logo-home-container);
    filter: saturate(.6);
}

/*INFO MESAJE*/
.ip-container-info {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
}
.ip-box-info {
	width: 400px;
	height: 210px;
	border-radius: 2px;
	position: relative;
	box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.5);
}
.ip-info-status {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2em;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
}
.ip-info-message {
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	color: rgba(0,0,0,0.5);
	padding: 50px 20px 20px 20px;
	justify-content: space-between;
}

/*IMPRESIONES*/
.ip-imp-subcontainer {
	width: 100%;
	height: 100%;
}
.ip-impresiones-title {
    color: #000;
    margin-bottom: 20px;
}
.ip-impresiones-title > svg {
	margin-right: 10px;
	font-size: 1em !important;
}

/*CONFIGURACIONES*/
.ip-config-subcontainer {
	display: flex;
	height: calc(100vh - 40px);
	width: 100%;
	position: absolute;
	left: 0;
	top: 40px;
}
.ip-tab-control {
	flex-basis: 15%;
	background-color: #fafafa;
	border-right: .9px solid #ddd;
}
.ip-tab-control > h2 {
	padding: 10px 30.3px;
	border-top: 1px solid #edeeef;
	text-align: left;
	color: var(--color-secondary);
	font-weight: 300;
}
.ip-tab-tablinks {
	display: block;
	background-color: transparent;
	color: #333;
	padding: 10px 30.3px;
	width: 100%;
	border: none;
	border-top: 1px solid #edeeef;
	outline: none;
	text-align: left;
	text-decoration: none;
	cursor: pointer;
	transition: 0.3s;
	font-size: .9em;
}
.ip-tab-tablinks:hover {
	background-color: #edeeef;
}
.ip-tab-tablinks.active {
	background-color: #e4e6e7;
}
.ip-tab-content {
	flex-basis: 85%;
	/*padding: 31px 31px 0;*/
	display: flex;
}
.ip-tab-tabcontent {
	display: none;
	flex-basis: 60%;
}

/*INFO*/
.ip-info-subcontainer {
	display: flex;
	justify-content: center;
}
.ip-info-subcontainer > article {
	width: 450px;
	text-align: center;
}
.ip-info-subcontainer > article > div {
	padding: 10px 0;
}
.ip-info-subcontainer > article > div > svg {
	font-size: 80px !important;
}
.ip-btn-standar-gris {
    padding: 10px 18px;
    background-color: var(--bg-btn-standar-gris);
    border: none;
    border-radius: 4px;
    color: var(--color-secondary);
    cursor: pointer;
    outline: none;
    text-align: center;
    font-size: 1em;
}
.ip-btn-standar-gris > svg {
	margin-right: 4.7px;
	color: VAR(--color-secondary);
}

/*MODAL RASTREO PROGRESS BAR*/
.ip-progress-tracking {
    font-size: 1em;
    padding-bottom: .75em;
}
.ip-progress-tracking.show {
    display: block;
}
.ip-progress-tracking.hide {
    display: none;
}
.ip-progress-tracking > a {
    color: var(--color-secondary);
    text-decoration: none;
}
.ip-progress-container {
    position: relative;
    width: 100%;
    background-color: #fafafa;
    display: flex;
    justify-content: space-around;
}
.ip-progress-block {
	position: relative;
	width: 100%;
	text-align: center;
	padding: 1px 0 3px 0;
	font-size: 12px;
	z-index: 1;
}
.ip-progress-block > span {
	z-index: 1;
	transition: all .7s;
}
.ip-progress-block > span > svg {
	font-size: 12px !important;
}
.ip-progress-check {
	margin-left: 5px;
	color: #fff;
	visibility: hidden;
}
.ip-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--progress-bar);
    border-radius: 4px;
    transition: all .8s;
    z-index: 0;
}

/*PROGRESS BAR ESTATUS*/
.ip-progress-container-estatus {
    position: relative;
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: space-around;
    border-radius: 4px;
    border: .5px solid #ddd;
    top: -5px;
}
.ip-progress-block-estatus {
    width: 100%;
    padding: 5px 0;
    z-index: 1;
    border-right: .5px solid #ddd;
}
.ip-progress-block-estatus:last-child {
    border-right: none;
}
.ip-progress-bar-estatus {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--progress-bar);
    border-radius: 4px;
    transition: all .8s;
    z-index: 0;
}

/*MODAL EDITAR*/
.ip-flex-container-edit {
    padding: 20px 40px 40px 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.ip-flex-edit-row {
	padding: 8px 0;
	display: flex;
}
.ip-flex-edit-row.ip-wizard-flex-col-50:first-child {
	margin-right: auto;
}
.ip-flex-edit-row > label, .ip-flex-edit-row > span {
	font-size: 14px;
	font-weight: 400;
	vertical-align: 2px;
    color: #666;
}
.ip-flex-edit-row > span:empty {
	display: none;
}
.ip-row-nav {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	width: 100%;
}
.ip-row-nav > .ip-flex-row-title {
	flex-basis: auto !important;
}
.ip-row-nav > a > svg {
	margin-left: 5px;
    vertical-align: bottom;
}
.ip-hr {
	margin: 5px 0;
	height: 1px;
	width: 100%;
	background-color: #ddd;
}
.ip-confirmacion-grid {
    padding: 0;
    background-color: rgba(3, 157, 176, 0.04);
    margin: -5px 0;
}
.ip-confirmation-col-1 {
    padding: 5px 5px;
    width: 90px;
    color: #333;
    font-size: 14px;
}
.ip-confirmation-col-2 {
    padding: 5px 10px;
    color: #333;
    font-size: 12px;
}
textarea {
	overflow: hidden;
	resize: none;
}
.ip-flex-edit-row > input, .ip-flex-edit-row > textarea, .ip-flex-edit-row > select {
	border: none;
	border-bottom: .9px solid #dbdbdb;
	outline: none;
	color: #000;
	height: inherit !important;
}
.ip-input, .ip-textarea {
    border: none;
    border-bottom: .9px solid #dbdbdb;
    outline: none;
    color: #000;
    height: inherit !important;
    width: 100%;
    vertical-align: middle;
}
#div_table_multiPaquetes .ip-divTableBodyCell {
    border-bottom: none;
}
.ip-times {
    color: var(--color-secondary);
    font-weight: bold;
    cursor: pointer;
    font-size: 1.2rem !important;
}
.ip-duplicate {
	color: var(--color-secondary);
	cursor: pointer;
	font-size: 1.2rem !important;
}
.ip-flex-row-title {
    flex: 100%;
    padding: 5px;
    margin: 5px -5px;
    color: #000;
    font-size: 0.8em !important;
    font-weight: bold;
    margin-top: 20px;
}
.ip-input-iconSearch {
	position: absolute;
	top: -3px;
	right: 0;
	cursor: pointer;
}
.ip-input-iconSearch:hover + .ip-popover-container {
    display: block;
    text-align: center;
    top: -42px;
    left: calc(100% / 1.7);
    width: 250px;
}
label.ip-tb-required::before {
    content: ".";
    position: absolute;
    top: -24px;
    left: -10px;
    color: red;
    font-size: 34px;
}
.ip-wizard-flex-col-100 > label.ip-tb-required::before {
    content: ".";
    position: absolute;
    top: -24px;
    left: -10px;
    color: red;
    font-size: 34px;
}

/*ip-DlgMsg*/
.ip-DlgMsg-overlay {
	width: 380px;
	max-height: calc(100% - 110px);
	position: fixed;
	top: 100px;
	right: 10px;
	z-index: 200;
	overflow: auto;
	overflow-x: hidden;
}
.ip-DlgMsg-modal-content {
	width: 100%;
	background-color: #333;
	margin: auto;
	margin-bottom: 10px;
	padding: 10px 20px 15px 65px;
	border: 0.5px solid #888;
	border-radius: 4px;
	position: relative;
	box-sizing: border-box;
	animation: ip-DlgMsg-SlideMsg .6s;
}
.ip-DlgMsg-modal-content svg {
	position: absolute;
    top: 15px;
    left: 25px;
    font-size: 1em !important;
}
.ip-DlgMsg-modal-content h3 {
	margin-bottom: 5px;
    color: #fff;
    font-size: 1em;
    font-weight: 400;
}
.ip-DlgMsg-modal-content p {
	font-size: .9em;
    font-weight: 300;
    color: #fff;
}
.ip-DlgMsg-btn-close {
	color: #fff;
	float: right;
	font-size: 28px;
	font-weight: 300;
	text-decoration: none;
	cursor: pointer;
	position: absolute;
	top: -3px;
	right: 7px;
}
.ip-DlgMsg-btn-close:hover, .ip-DlgMsg-btn-close:focus {
    color: #dbdbdb;
}
/*Error View*/
.ip-text-danger {
    color: #a94442;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}
.ip-text-black {
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}
.ip-paragraph-margin {
    margin: 0 0 10px;
}
code {
    padding: 2px 4px;
    font-size: 90%;
    color: #c7254e;
    background-color: #f9f2f4;
    border-radius: 4px;
}
strong {
    font-weight: 700;
}

@keyframes ip-DlgMsg-SlideMsg {
    from {
		right: -400px;
		opacity: 0;
	}
	to {
		right: 0;
		opacity: 1;
	}
}
@media screen and (max-width: 520px) {
	.ip-DlgMsg-overlay {
		width: 100%;
		right: 0;
	}
	.ip-DlgMsg-modal-content  {
		width: 90%;
	}
	.ip-return-box {
		margin-left: 0 !important;
	}
}

/*TAB CONTROL*/
.ip-orden-tab-control {
	position: relative;
    display: flex;
    flex-basis: 70%;
    background-color: transparent;
    border: none;
    justify-content: space-between;
    margin-bottom: 10px;
}
.ip-orden-tab-control > .ip-tab-tablinks {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    border: none;
	border: 5px solid #fff;
    background-color: #ddd;
    color: #333;
    text-align: center;
    font-size: .8rem;
    cursor: default;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    z-index: 1;
}
.ip-orden-tab-control > .ip-tab-tablinks > span:last-child {
    color: #666;
    position: absolute;
    bottom: -20px;
    font-size: .7rem;
    font-weight: bold;
}
.ip-orden-tab-control::after {
    content: "";
    height: 4px;
    width: 100%;
    background-color: #ddd;
    position: absolute;
    left: 0;
    top: 45%;
    z-index: 0;
}
.ip-orden-tab-control > .ip-tab-tablinks:first-child:after {
    content: "";
    height: 0;
    width: 0;
}
.ip-orden-tab-control > .ip-tab-tablinks.active {
    background-color: var(--color-secondary);
    color: #fff;
}
.ip-orden-tab-tabcontent {
    display: none;
    flex-basis: 100%;
    flex-wrap: wrap;
}
.ip-orden-tab-tabcontent.show {
    display: flex;
}
#div_multiPaquetes {
	display: none;
}
.ip-show-block {
	display: block !important;
}
/*INPUT NUMBER QUIT APPEARANCE*/
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
input[type=number] {
	-moz-appearance: textfield;
}
.ip-logs-subcontainer {
	width: 100%;
}
.ip-logs-title {
	text-transform: uppercase;
	margin-bottom: 20px;
}
.ip-logs-table {
	width: 100%;
	border-collapse: collapse;
	font-size: .8em;
	text-align: left;
}
.ip-logs-table > thead {
	background-color: #FAFAFA;
	text-transform: uppercase;
}
.ip-logs-table > thead > tr > th:first-child {
	width: 1px;
}
.ip-logs-table > thead > tr > th, .ip-logs-table > thead > tr > th > span {
	font-weight: 600;
}
.ip-logs-table tr > td, .ip-logs-table tr > th {
	padding: .75rem .75rem;	
}
.ip-logs-table > tbody > tr > td > small {
	display: block;
	font-size: 10px;
}
.hide {
	display: none;
}
.ip-import-container {
	width: 60%;
}
.ip-label-title {
	font-size: .9rem;
}
.ip-row {
	display: flex;
	align-items: center;
}
.ip-description {
	font-size: .8rem;
	color: #888;
}
.ip-label-description {
	font-size: .8rem;
	margin-left: 5px;
	cursor: pointer;
}
.ip-textbox {
	width: 100%;
	height: 2.25em;
	line-height: 2.25em;
	padding: 5px;
	font-size: .8rem;
	background-color: hsla(0,0%,100%,.999);
	border-radius: 2px;
	border-color: hsla(0,0%,89%,1);
	border: 1px solid hsla(0,0%,0%,.10);
	outline: none;
}
.ip-textbox-file {
	cursor: pointer;
	height: 2.25em;
	line-height: 2.25em;
	padding: 0 10px;
	font-size: .8rem;
	background-color: hsla(0,0%,100%,.999);
	border-radius: 2px;
	border-color: hsla(0,0%,89%,1);
	border: 1px solid hsla(0,0%,0%,.10);
	outline: none;
	border-left: none;
}
.ip-separate-top {
	margin-top: 30px;
}
#div_paso1 {
	position: relative;
	margin-left: 30px;
}
.ip-servicios-container {
	padding: 0.75em 0.75em;
}
.ip-servicios-container > label {
	font-weight: bold;
	vertical-align: 2px;
    padding-left: 5px;
    cursor: pointer;
}
.ip-servicios-container > p,
.ip-servicios-container > a {
	font-size: 13px;
	margin-left: 25px;
}
.ip-servicios-container > p {
	color: #666;
}
#div_paso2 {
	position: relative;
	display: none;
}
#div_paso2 > #div_count {
	position: absolute;
    top: 56px;
    right: -120px;
    font-size: 4rem;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(3, 157, 176, 0.04);
}
#div_paso2 > #div_count > span {
	font-weight: 300;
}
#div_paso2 > .ip-divTableCaption > .ip-divTableCaptionRow > .ip-divTableCaptionCell {
	border-bottom: 0.9px solid #E0DFDF;
}
#div_table_addCheckpoint > .ip-divTableBodyRow:first-child {
	background-color: rgba(3, 157, 176, 0.04);
}
#div_table_addCheckpoint > .ip-divTableBodyRow:first-child > .ip-divTableBodyCell > span {
	font-weight: bold;
}
/*DIALOGO MENSAJE*/
.ip-dlg-info-overlay {
	background-color: rgba(0,0,0,0.6);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	justify-content: center;
	display: none;
}
.ip-dlg-info {
	position: relative;
	top: 25%;
	background-color: #fff;
	margin: 0 auto;
	width: 80%;
	height: 200px;
	border-radius: 4px;
	animation: ip-slide-animation 1s ease;
}
.ip-dlg-info > h3 {
	text-align: center;
    text-transform: uppercase;
    font-size: 1.7em;
    font-weight: 300;
    color: var(--color-secondary);
    border-bottom: 0.9px solid rgba(0,0,0,0.1);
    opacity: 0.8;
    padding: 15px;
}
.ip-dlg-info > h3 > svg {
	font-size: 1.7rem !important;
	margin-right: 5px;
}
.ip-dlg-info > article {
	padding: 25px;
    color: #000;
	text-align: center;
}
.ip-dlg-info > article > p {
	font-weight: 300;
	font-size: .9em;
}
.ip-dlg-info > article > svg {
	font-size: 3rem !important;
    color: var(--color-secondary);
    margin-top: 20px;
}
.ip-hidden {
	display: none !important;
}
@keyframes ip-slide-animation {
	from {
		top: -25%;
		opacity: 0;
	}
	to {
		top: 25%;
		opacity: 1;
	}
}
.ip-dependitenes-container, .ip-usuarios-container {
	padding: 20px 40px 40px 40px;
	max-height: 601px;
}
.ip-search-dependiente, .ip-search-usuario {
	padding: 20px 0;
	position: relative;
}
.ip-search-dependiente > svg, .ip-search-usuario > svg {
    position: absolute;
    left: 0;
    top: 25px;
    color: var(--color-secondary);
}
.ip-search-dependiente > input, .ip-search-usuario > input {
    width: 100%;
    border: none;
    border-bottom: .9px solid #dbdbdb;
    outline: none;
    color: #000;
    padding: 0 0 5px 20px;
}
.ip-span-ellipsis {
	display: block;
	width: 175px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.ip-factura-pendiente {
	padding: 2px 5px;
	color: #dc3545;
	border: 1px solid #dc3545;
	border-radius: 2px;
	font-size: .77rem !important;
	font-weight: 600 !important;
}
.ip-factura-pagado {
	padding: 2px 5px;
	color: #28a745;
	border: 1px solid #28a745;
	border-radius: 2px;
	font-size: .77rem !important;
	font-weight: 600 !important;
}

/*DASHBOARD*/
.ip-separate-top {
	margin-top: 30px;
}
.ip-row-flex {
	display: flex;
	flex-wrap: wrap;
}
.ip-dash-container {
	border-bottom: 1px solid rgba(0,0,0,0.08);
	padding: 10px 20px;
	background-color: rgba(3, 157, 176, 0.04);
}
.ip-dash-container:empty {
	height: 92px;
}
.ip-dash-box {
	padding: 0 10px;
	border-right: 1px solid rgba(0,0,0,.08);
	text-align: center;
	width: 150px;
}
.ip-dash-box:first-child {
    margin-left: -25px;
}
.ip-dash-box-title {
    color: var(--ip-site-color-m);
}
.ip-dash-box-desc {
    font-size: .75rem;
    color: var(--ip-site-bgcolor-o);
    margin-bottom: 5px;
}
.ip-dash-box-quantity {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--ip-site-color-o);
}
.ip-dash-search {
	flex-basis: 100%;
}
.ip-dash-asidebar {
	height: 100%;
	flex-basis: 21%;
	padding: 10px 20px;
	border-right: 1px solid rgba(0,0,0,.08);
	background-color: #fff;
	overflow-y: auto;
}
.ip-dash-container-table {
	max-height: 630px;
	overflow: auto;
	margin: 0 !important;
}
.ip-dash-asidebar-title {
	margin: 20px 0 5px 0;
}
.ip-dash-asidebar-row {
	position: relative;
	margin: 15px 0;
}
.ip-dash-asidebar-row > svg {
	position: absolute;
	color: #606770;
	left: 12px;
    top: 11px;
}
.ip-dash-asidebar-row > table {
	width: 100%;
    text-align: left;
    font-size: .8rem;
    border-collapse: collapse;
}
.ip-dash-asidebar-row > table > thead > tr > th {
	line-height: 30px;
	border-bottom: 1px solid rgba(0,0,0,0.08);
	position: sticky;
    top: 0;
    background-color: #fff;
}
.ip-dash-asidebar-row > table > thead > tr > th > span {
	font-weight: bold;
}
.ip-dash-asidebar-row > table > tbody > tr {
	cursor: pointer;
	user-select: none;
}
.ip-dash-asidebar-row > table > tbody > tr:hover {
	background-color: #fafafa;
}
.ip-dash-asidebar-row > table > tbody > tr:first-child {
	background-color: rgba(3, 157, 176, 0.04);
}
.ip-dash-asidebar-row > table > tbody > tr:first-child:hover {
	background-color: rgba(3, 157, 176, 0.04);
}
.ip-dash-asidebar-row > table > tbody > tr:first-child > td > span.ip-card-icon {
	background-color: transparent !important;
}
.ip-dash-asidebar-row > table > tbody > tr:first-child > td > span {
	font-weight: bold;
}
.ip-dash-asidebar-row > table > tbody > tr > td {
	line-height: 50px;
}
.ip-dash-asidebar-row > table > tbody.collapse > tr + tr {
	display: none;
}
.ip-card-icon {
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 36px;
	width: 36px;
	background-color: #f0f2f5;
}
.ip-card-icon > svg {
	color: #606770 !important;
}
.ip-card-name {
	display: block;
	max-width: 200px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.ip-text-center {
	text-align: center;
}
.ip-dash-asidebar-row > table > tfoot > tr > td {
	line-height: 40px;
	border-top: 1px solid rgba(0,0,0,0.08);
}
.ip-dash-asidebar-row > table > tfoot > tr > td > span {
	font-weight: bold;
}
.ip-dash-asidebar-search {
	padding: 7px 12px 9px 12px;
	height: 36px;
	width: 100%;
	border: none;
	border-radius: 50px;
	background-color: #F0F2F5;
	text-indent: 20px;
	font-size: .9375rem;
	outline: none;
}
.ip-dash-map {
	height: 100%;
	flex-basis: 79%;
	background-color: #fff;
	text-align: right;
	vertical-align: top;
	color: #000;
}
#div_map {
	width: 100%;
	height: 100%;
}
.ip-infowindow-container {
	text-align: left;
	padding-left: 5px;
}
.ip-infowindow-container > h3 {
	padding-bottom: 5px;
    margin-bottom: 10px;
    border-bottom: 1px solid #f0f2f5;
}
.ip-infowindow-container > ul {
	list-style-type: none;
	height: 155px;
    overflow: auto;
}
.ip-infowindow-container > ul:empty {
	display: none;
}
.ip-infowindow-container > ul  > li {
	margin-bottom: 5px;
}
.ip-infowindow-container > ul  > li > span {
	font-size: .8rem;
}
.ip-productos-container {
	margin: 20px;
	border-radius: .25rem;
	overflow: hidden;
}
.ip-productos-header {
	padding: 20px;
	background-color: #f5f7fa;
}
.ip-productos-body {
	display: flex;
	padding: 20px 0;
}
.ip-productos-body > div.ip-productos-modal-container {
	height: 135px;
    width: 135px;
    margin-right: 20px;
}
.ip-productos-body > div.ip-productos-modal-container:last-child {
	margin-right: 0;
}
.ip-productos-body > div.ip-productos-modal-container > div {
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
	border-radius: .25rem;
	cursor: pointer;
	z-index: 1;
}
.ip-productos-body > div.ip-productos-modal-container.active {
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
	background-color: rgba(0,0,0,0.56);
	overflow-y: scroll
}
.ip-productos-body > div.ip-productos-modal-container.active > div {
	width: 450px;
	height: 450px;
	cursor: default;
}
.ip-return-subcontainer {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	max-width: 500px;
}
.ip-return-subcontainer > h2 {
	margin-bottom: 30px;
}
.ip-return-title {
	text-transform: uppercase;
	margin-bottom: 20px;
}
.ip-return-title > svg {
	margin-right: 10px;
    font-size: 1em !important;
}
.ip-return-box {
	width: 100%;
	background-color: #ffffff;
	margin-bottom: 1.5rem;
	padding: 1rem 1.5rem 1.5rem;
	border: 1px solid #cbd2d6;
	border-radius: 6px;
	box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.08);
}
.ip-return-box > h3 {
	margin-bottom: 20px;
}
#div_rastreo > h3 {
	margin-bottom: 10px;
}
.ip-return-search {
	padding-bottom: 20px;
	position: relative;
	display: flex;
}
.ip-return-search > svg {
	position: absolute;
    left: 0;
    top: 12px;
    color: var(--color-secondary);
}
.ip-return-search > input {
	width: 100%;
	border: none;
	border-bottom: .9px solid #dbdbdb;
	outline: none;
	color: #000;
	padding: 0 15px 0 20px;
}
.ip-return-search > button {
	margin-right: 0;
}
.ip-productos-list {
	list-style: none;
}
.ip-productos-list > li {
	padding: 20px 15px;
    border-radius: .25rem;
    border: 1px solid #cbd2d6;
    margin-bottom: 20px;
	display: flex;
    align-items: flex-start;
	background-color: #F5F7FA;
}
.ip-productos-list > li > input[type=checkbox] {
	margin-top: 3px;
}
.ip-productos-list > li > span {
	margin-left: 10px;
    text-transform: capitalize;
    font-size: .9rem;
    font-weight: 500;
	cursor: pointer;
}
.ip-productos-list > li > div {
	width: 200px;
	margin-left: auto;
	font-size: .8rem;
}
.ip-productos-list > li > div > select {
	margin-bottom: 10px;
    font-weight: 400;
}
.ip-productos-list > li > div > textarea {
	padding: 5px;
	margin-bottom: 15px;
}
.ip-imagenes-upload[disabled] {
	cursor: not-allowed;
}
.ip-imagenes-upload {
	width: 35px;
	height: 35px;
	background-color: #fff;
	border: 2px dashed #cbd2d6;
	cursor: pointer;
	display: flex;
	justify-content: center;
}
.ip-imagenes-upload > span {
    color: #cbd2d6;
    font-size: 1.3rem;
    user-select: none;
}
.ip-imagenes-upload > input[type=file] {
    display: none;
}
.ip-imagenes-upload-file {
	width: 35px;
	height: 35px;
	margin: 0 5px 0 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-color: #000;
	position: relative;
}
.ip-imagenes-upload-file > button {
    position: absolute;
    top: 1px;
    right: 1px;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    line-height: 10px;
    text-align: center;
    border: none;
    background-color: #fff;
    color: var(--ip-site-bgcolor-o);
    font-size: .5rem;
    font-weight: bold;
    cursor: pointer;
    outline: none;
}
.ip-imagenes-upload-file > button:hover {
    color: #000;
}
.ip-metodo-retorno {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
.ip-metodo-retorno > input[type=radio] {
	margin-right: 5px;
}
.ip-metodo-retorno > label {
	cursor: pointer;
	font-size: .9rem;
}
.ip-metodo-retorno > div {
	padding: 8px 12px;
    border-radius: .25rem;
    font-size: .9rem;
	background-color: #F5F7FA;
    color: var(--color-secondary);
}
.ip-metodo-retorno > div:empty {
	display: none;
}
.ip-metodo-retorno > #sp_eliminar {
	color: var(--color-secondary);
    cursor: pointer;
    margin-left: 10px;
}
.ip-notify-container {
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
.ip-notify-box {
	margin-top: -400px;
	text-align: center;
	background-color: #fff;
	padding: 2rem 2.5rem 2.5rem;
	border: 1px solid #cbd2d6;
	border-radius: 6px;
	box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.08);
}
.ip-notify-box > svg {
	font-size: 4rem !important;
    margin-bottom: 20px;
    color: var(--color-secondary);
}
.ip-notify-box > p {
	font-size: .9rem;
    margin-bottom: 5px;
}
.ip-puntos-retornos-list {
	list-style: none;
	margin-top: 20px;
	height: 400px;
	overflow: auto;
}
.ip-puntos-retornos-list > li {
	padding: 15px;
    display: flex;
    align-items: center;
}
.ip-puntos-retornos-list > li:nth-child(odd) {
	background-color: #F5F7FA;
}
.ip-puntos-retornos-list > li:first-child {
	border-top-left-radius: .25rem;
	border-top-right-radius: .25rem;
}
.ip-puntos-retornos-list > li:last-child {
	border-bottom-left-radius: .25rem;
	border-bottom-right-radius: .25rem;
}
.ip-puntos-retornos-list > li > input[type=radio] {
    margin-top: 3px;
}
.ip-puntos-retornos-list > li > label {
	margin-left: 10px;
    text-transform: capitalize;
    font-size: .9rem;
    font-weight: 500;
    cursor: pointer;
}
.ip-puntos-retornos-list > li > label > span {
	font-size: .7rem;
	color: var(--ip-site-bgcolor-o);
}
.ip-puntos-retornos-list > li > a {
	margin-left: auto;
}
.ip-message-no-data {
	width: 100%;
	text-align: center;
	color: var(--ip-site-bgcolor-o);
	font-style: italic;
}
.ip-wz-container {
	display: flex;
	width: 100%;
	height: calc(100vh - 40px);
}
.ip-wz-asidebar {
	display: block;
	width: 200px;
	height: 100%;
	padding: 50px 60px;
	background-color: #fff;
	overflow-y: auto;
	flex-grow: 2;
	border-right: 1px solid #ddd;
}
.ip-wz-arte {
	display: block;
	height: 100%;
	width: 200px;
	background-color: #eff2f7;
	text-align: right;
	vertical-align: top;
	color: #fff;
	flex-grow: 8;
}
.ip-wz-arte > iframe {
	width: 100%;
	height: 100%;
	border: none;
}
.ip-wz-form-header {
	display: flex;
	justify-content: center;
}
.ip-wz-form-header-logo {
	width: 196px;
	height: 65px;
	background-image: var(--logo-principal-color);
	background-size: contain !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	margin-left: -10px;
}
#frm_wizard {
	width: 100%;
	margin-top: 15px;
}
div.ip-btn-footer {
	margin-top: 20px;
	clear: both;
}
#frm_wizard > div > h2 {
	margin: 30px 0 10px;
	font-size: 1.2em;
	font-weight: 300;
}
#frm_wizard > div > h5 {
	margin: 30px 0 10px;
	font-weight: 300;
}
.ip-div-row {
	width: 100%;
	position: relative;
}
.ip-div-rowGroup > input:not(.ip-radio),
.ip-div-rowGroup > select:not(.ip-radio) {
	width: 100%;
	height: 40px;
	margin-bottom: 10px;
	border: none;
	border-bottom: 0.9px solid #ddd;
	font-size: .9em;
	font-weight: 400;
	outline: none;
	padding-top: 10px;
	background-color: rgba(255,255,255,0);
	color: #000;
}
.ip-div-rowGroup > input {
	padding-left: 5px;
}
.ip-div-rowGroup > div.ip-div-rowGroup-radio > input + label {
	font-size: .8rem;
	margin-left: 10px;
	cursor: pointer;
}
.ip-div-rowGroup > input[readonly] {
	background-color: #fafafa;
}
.ip-div-rowGroup > select:invalid {
	color: #65676a;
}
.ip-div-rowGroup-radio {
	margin-bottom: 2px;
	padding: 8px 4px;
	display: flex;
	align-items: center;
}
.ip-div-rowGroup-radio:hover {
	background-color: var(--ip-site-bgcolor);
	cursor: pointer;
}
.ip-alert {
	position: absolute;
	top: 100px;
	right: 30px;
	padding: .75rem 1.25rem;
	margin-bottom: 1rem;
	border: 1px solid transparent;
	border-radius: .25rem;
	font-size: .9rem;
	font-weight: 400;
}
.ip-alert-warning {
	color: #856404;
	background-color: #fff3cd;
	border-color: #ffeeba;
}
.ip-overlay {
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
    display: none;
}
.ip-overlay.active {
    display: flex;
}
.ip-container-loader {
    width: 250px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-radius: .25rem;
    padding: 1rem;
}
.ip-loader {
	width: 50px;
	height: 50px;
	border: 5px solid #ddd;
	border-top: 5px solid var(--color-secondary);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}
.ip-loader-description {
    font-size: .9rem;
}
.ip-div-row-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 5px;
}
.ip-div-row-flex > input,
.ip-div-row-flex > button {
	margin: 0 !important;
}
.ip-info-container {
    width: 100%;
    height: calc(100vh - 40px);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f7fa;
}
.ip-box {
    width: 80%;
    max-width: 600PX;
    background-color: #fff;
    padding: 2rem;
    border-radius: .375rem;
    border: 1px solid #cbd2d6;
    box-shadow: 0 1px 4px 0 rgb(0 0 0 / 8%);
    margin-top: -18rem;
}
.ip-box > div:not(:last-child) {
    margin-bottom: 1.2rem;
}
.ip-box-header {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.ip-box-header-icon {
    margin-bottom: .1rem;
    color: var(--color-secondary);
}
.ip-box-header-icon > svg {
    font-size: 6rem !important;
}
.ip-box-header-title > h3 {
	margin-top: 1rem;
	font-weight: 300;
}
.ip-box-body-description {
    font-size: .9rem;
}
.ip-box-footer {
    display: flex;
    justify-content: center;
}
.ip-alert-info {
	position: relative;
	padding: 1rem 1rem;
	margin-bottom: 1rem;
	border: 1px solid transparent;
	border-radius: 0.25rem;
	font-size: .8rem;
	color: #664d03;
	background-color: #fff3cd;
	border-color: #ffecb5;
	margin-top: 20px;
	width: fit-content;
}
.ip-alert-info > strong {
	font-size: .9rem;
	display: block;
	margin-bottom: 10px;
}
@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}
@media screen and (max-width:1024px) {
    .ip-wz-asidebar {
        flex-grow: 4;
    }
    .ip-wz-arte {
        flex-grow: 8;
    }
}

@media screen and (max-width:520px) {
	.ip-wz-container {
		flex-direction: column;
	}
	.ip-wz-asidebar {
		order: 2;
		width: 100%;
		overflow: hidden;
	}
	.ip-wz-arte {
		order: 1;
		width: 100%;
		height: 150px;
	}
}