html, body { height:100%; margin:0; }

body {
	font-family: "Brockmann";
	display: table;
	width: 100%;
	font-size: 1rem;
}

:root {
    --main: #3f6fda;
    --scnd: #7ac68c;
    --thrd: #2b2b27;
    --err: #c16565;
    --warn: #ffae00;
    --main-dark: #3a6aaf;
    --scnd-dark: #539262;
    --thrd-dark: #2b2b27;
    --err-dark: #c16565;
    --warn-dark: #72724d;
    --main-light: #aec8e9;
    --scnd-light: #7ac68c;
    --thrd-light: #767676;
    --err-light: #c16565;
    --warn-light: #fcfaa9;
    --gray: #e6e6e6;
    --purple: #800080;
    --purple-dark: #4a2d81;
    --purple-light: #dcd0ff;
    --clear: #ebf2fa;
}

div#redirectingToPGModal, div#qrMachModal {
	padding-top: 2rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

div#redirectingToPGModal, div#qrMachModal, div#uMatchModal {
    border: 2px solid var(--main);
    border-radius: 5px;
}

div#uMatchModal .callout{
    padding: 1rem 4rem;
    border: unset;
    background: white;
    border-radius: 5px;
}

.reveal-overlay {
    background: rgba(27,55,95,0.5);
}

/* CUSTOM GLOBAL*/
div.flex-end {
    display: inline-flex;
    justify-content: flex-end;
}

div.flex-end * {
	margin-left: 1rem;
}

/*
	Header
	https://foundation.zurb.com/building-blocks/blocks/topbar-responsive.html
*/
#responsive-menu {
    min-height: fit-content;
    height: auto;
    height: -webkit-fill-available;
    padding-top: .5rem;
    box-sizing: border-box;
}

#responsive-menu .top-barmenu-center {
	text-align: center;
}
#responsive-menu .top-barmenu-center h5 {
	color: var(--thrd);
	margin-top: 1rem;
	font-weight: bold;
	border-bottom: 2px solid var(--gray);
    padding-bottom: .5rem;
}
#responsive-menu .top-barmenu-center span.business {
	font-weight: bold;
}

#responsive-menu .top-barmenu-right {
	text-align: right;
	padding-right: 2rem;
}
#responsive-menu .top-barmenu-right .button-exit {
	margin-top: 1.2rem;
	background-color: transparent;
	color: black;
	border: 1px solid;
}
#responsive-menu .top-barmenu-right .button-exit:hover {
	background-color: var(--main-dark);
	color: white;
}
@media screen and (max-width: 39.9375em) {
  #responsive-menu .top-barmenu-right .topbarmenu-responsive-button {
    width: 100%;
  }
}

.marginAuto {
	margin: auto;
}

#responsive-menu .top-barmenu-portalLabel {
    display: inline-block;
    vertical-align: middle;
    margin-left: 1rem;
    border-left: 2px solid;
    padding: 0.5rem 0rem 0.5rem 1rem;
    font-size: 1.2rem;
}

#responsive-menu .top-barmenu-welcome{
    font-size: 1rem;
    font-weight: 500;
}

#responsive-menu .top-barmenu-customer{
    font-size: 1rem;
    font-weight: 400;
    color: var(--main);
    max-width: 12rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#responsive-menu .top-barmenu-business{
	font-size: 1.2rem;
    font-weight: 500;
    color:var(--thrd);
}
#responsive-menu .top-barmenu-documents {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--main);
}

#responsive-menu .top-barmenu-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    align-content: flex-end;
    flex-wrap: wrap;
    justify-content: center;
}

#responsive-menu .top-barmenu-logo{
    max-height: 5rem;
    max-width: 50%;
    height: auto;
    width: auto;
}

#responsive-menu .top-barmenu-exit {
    width: fit-content;
    color: var(--scnd);
    border-width: 2px;
    border-color: var(--scnd);
    border-radius: 3rem;
    padding: .2rem .5rem;
    font-size: .8rem;
    transition: color 0.5s ease, border-color 0.5s ease;
}

#responsive-menu .top-barmenu-exit i{
    vertical-align: middle;
}

#responsive-menu .top-barmenu-exit:hover{
    color: var(--scnd-dark);
    border-color: var(--scnd-dark);
}

@media screen and (max-width: 39.9375em) {
	#responsive-menu .top-barmenu-business{
		font-size: 1rem;
	}
	
	.display-none-mobile{
		display: none;
	}
	
	#responsive-menu .top-barmenu-portalLabel {
		width: 40%;
	}
	
	#responsive-menu .top-barmenu-exit {
		padding: 0.8rem;
		border-radius: 8px;
		font-size: 1.2rem;
	}
	
	#responsive-menu .top-barmenu-container {
		align-content: flex-start;
	    padding: 0.5rem;
	    border-top: 1px solid #9da7a8;
	    margin-top: 1rem;
	}
	
	#responsive-menu .top-barmenu-toggler {
	    font-size: 30px;
	    margin-top: 1rem;
	    border-top: 1px solid #9da7a8;
	    padding: 0.5rem;
	}
}

.checkoutTitle {
    font-size: 20px;
    font-weight: 700;
    color:var(--thrd);
    vertical-align: -webkit-baseline-middle;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

/*
	Body
*/
div#body {
/*	margin-bottom: 70px !important; */
}

/*
	Footer 
	https://foundation.zurb.com/building-blocks/blocks/marketing-site-footer.html
*/
div#footer {
	position: relative;
	left: 0;
	bottom: 0;
	right: 0;
}

div#footer .logo {
	height: 1rem;
	margin-right: .5rem
}

@media screen and (max-width: 39.9375em) {
	div#footer {
		position: static;
	}
}

.bottom-footer {
	color:var(--thrd);
    padding-top: 0.5rem;
    background-color: inherit;
}

@media screen and (max-width: 39.9375em) {
  .marketing-site-footer .columns {
    margin-bottom: 2rem;
  }
}

.marketing-site-footer-name {
  color: white;
  margin-bottom: 1rem;
  font-size: 2rem;
}

/* Medium and up */
@media screen and (min-width: 40em) {
	.marketing-site-footer-name > img {
		width: 40%;
	}
}

/* Small only */
@media screen and (max-width: 39.9375em) {
	.marketing-site-footer-name > img {
		width: 25%;
	}
}

.marketing-site-footer-title {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.marketing-site-footer-block {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1rem;
}

.marketing-site-footer-block .fa {
  font-size: 2rem;
  color: var(--thrd);
}

.marketing-site-footer-block p {
  margin-left: 1rem;
  line-height: 1.125rem;
}

.marketing-site-footer-bottom {
  background: var(--main-dark);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.marketing-site-footer-bottom p,
.marketing-site-footer-bottom .menu {
  margin-bottom: 0;
}

.marketing-site-footer-bottom .marketing-site-footer-bottom-links {
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.marketing-site-footer-bottom .marketing-site-footer-bottom-links a {
  color: var(--thrd-light);
}

@media screen and (max-width: 63.9375em) {
  .marketing-site-footer-bottom .marketing-site-footer-bottom-links {
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 63.9375em) {
  .marketing-site-footer-bottom {
    text-align: center;
  }
}


/*
 * Alert Callouts
 */
.alert-callout-border {
  display: none;
  position: fixed;
  top: .5rem;
  left: 1%;
  width: 98%;
  right: 1%;
  margin-right: auto;
  width: 98%;
  padding: 1.3rem;
  border-left-width: 0.3125rem;
  border-left-color: var(--gray);
}

.alert-callout-border strong {
  color: var(--thrd);
}

.alert-callout-border .close-button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.alert-callout-border.radius {
  border-radius: 0.6rem;
}

.alert-callout-border.primary {
  border-left-color: var(--main);
}

.alert-callout-border.primary strong {
  color: var(--main);
}

.alert-callout-border.secondary {
  border-left-color: var(--thrd-light);
}

.alert-callout-border.secondary strong {
  color: var(--thrd-light);
}

.alert-callout-border.alert {
  border-left-color: var(--err);
}

.alert-callout-border.alert strong {
  color: var(--err);
}

.alert-callout-border.success {
  border-left-color: var(--scnd);
}

.alert-callout-border.success strong {
  color: var(--scnd);
}

.alert-callout-border.warning {
  border-left-color: var(--warn);
}

.alert-callout-border.warning strong {
  color: var(--warn);
}

/*
 * Login
 */
.loginContainer {
	padding: 1rem 2rem;
}

.loginContainer .input-group .input-group-label{
    background: var(--thrd-light);
    color: white;
    font-size: 1.5rem;
    padding: 0 0.5rem;
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
}

.loginContainer .input-group .input-group-field{
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

.loginContainer .indicationLabel{
	color: var(--thrd-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}
.logoContainer {
	text-align: center;
	height: 30vh;
	position: relative;
}
.logoContainer img {
    height: auto;
    width: auto;
    max-height: 18rem;
    max-width: 18rem;
    padding: 1rem;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.welcomeLabel {
	font-size: 1.2rem;
	font-weight: 500;
	margin: 1rem auto;
}
.login-button {
	background-color: var(--main);
	font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
}
.login-button:hover {
	background-color: var(--main-dark);
}

form {
	/*margin-top: 1.5rem;*/
}

form .form-icons h4 {
 	margin-bottom: 1rem;
}

form .form-icons .input-group-label {
  background-color: var(--main-dark);
  border-color: var(--main-dark);
}

form .form-icons .input-group-field {
  border-color: var(--main-dark);
}

form .form-icons .fa {
  color: white;
  width: 1rem;
}

form#login h5 {
	margin-bottom: 2rem;
}

/*
	Checkout
*/
.main-title {
	font-family: 'Muli', sans-serif;
}

.checkout-summary {
  max-width: 500px;
  background-color: white;
}

.checkout-summary-item {
	font-size: 90%;
  border-left: 1px solid var(--gray);
  border-right: 1px solid var(--gray);
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--gray);
}

.checkout-summary-item .item-name,
.checkout-summary-item .item-price {
  padding: 0 0rem;
}

.checkout-summary-item .item-name p,
.checkout-summary-item .item-price p {
  margin: 0;
  padding: 0;
}

.checkout-summary-item .item-name {
	flex-grow: 3;
}

.checkout-summary-item .item-price {
	flex-grow: 2;
}

.checkout-summary-item .title {
  font-weight: bold;
}

.checkout-summary > .title{
	padding: 1rem;
 	color: black;
 	font-size: 1rem;
	font-weight: bold;
	border-bottom: 2px solid var(--gray);
    margin-bottom: 1rem;
}

.checkout-summary .feeAmount{
	font-size: 1rem;
    font-weight: 500;
}

.checkout-summary #discountCode{
	width: 100%;
    padding: 0.5rem;
    border-radius: 5px;
}

.checkout-summary .totalAmount{
	font-size: 1rem;
    font-weight: 500;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border-bottom: 5px solid var(--gray);
    padding-bottom: 1rem;
    display: flex;
    align-items: flex-end;
    color: var(--scnd);
}
.checkout-summary .totalAmount .totalAmountToPay{
	font-size: 1.5rem;
    font-weight: 700;
}

.checkout-summary-details {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem;
  border: 1px solid var(--gray);
  border-top: none;
}

#financialPortalOptions {
	display: none;
}

.img-logo-paymentgateway {
	width: auto;
    height: auto;
    max-height: 4rem;
    max-width: 10rem;
    cursor: pointer;
    margin: 1rem auto;
}

.img-logo-paymentgateway#mach {
	max-width: 7rem;
}

button#checkout-buttonGoBack, button#checkout-buttonGoStep1 {
	font-size: 12px;
    color: white;
    background-color:var(--thrd);
    border-radius: 5px;
    width: 100%;
    position: relative;
}
button#checkout-buttonGoBack i, button#checkout-buttonGoStep1 i{
	font-size: 10px;
    vertical-align: middle;
    position: absolute;
    left: 1rem;
}
button.checkout-button, a#checkout-buttonToPay {
	font-size: 1rem;
    font-weight: 500;
	border-radius: 5px;
}
button.checkout-button .buttonIcon,
button.checkout-button .infoIcon{
	display: none;
}
button#checkout-buttonToPay, button#partialPaymentsEnteredByUserApply, a#checkout-buttonToPay {
    background-color: var(--main);
}
button#checkout-buttonToPay:hover, a#checkout-buttonToPay:hover {
	background-color: var(--main-dark);
}
input#partialPaymentsEnteredByUserOtherAmount {
	text-align: right;
}
input#partialPaymentsEnteredByUserOtherAmount::-webkit-outer-spin-button,
input#partialPaymentsEnteredByUserOtherAmount::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
button#checkout-buttonToPay span.totalAmountToPay, a#checkout-buttonToPay span.totalAmountToPay {
	font-weight: bold;
	font-size: 1.3rem;
}

button#removeAllDebts, button#partialPaymentsEnteredByUserCancel {
    background-color: white;
    color: var(--err);
    border: 2px solid var(--err);
}
button#removeAllDebts:hover {
	background-color: var(--err);
	color: white;
}

button#subscribeToAutomaticPayment {
    background-color: white;
    color: var(--scnd);
    border: 2px solid var(--scnd);
}
button#subscribeToAutomaticPayment:hover {
	background-color: var(--scnd);
	color: white;
}

button#customerBankAccountActivation,
button#bankTransferToAccountActivation {
    background-color: white;
    color:var(--thrd);
    border: 2px solid var(--thrd);
}
button#customerBankAccountActivation:hover {
	background-color: var(--thrd);
	color: white;
}
button#customerBankAccountActivation .infoIcon{
	display: inline-block;
}

a#pendingDocuments {
	font-size: 1rem;
    font-weight: 500;
    background-color: white;
    color: var(--thrd-dark);
    border: 2px solid var(--main-dark);
    border-radius: 5px;
}
a#pendingDocuments:hover {
	background-color: var(--main-dark);
	color: white;
}

span#countConsumptionsToPay {
	font-weight: bold;
	font-size: 1.3rem;
}
/* Small only */
@media screen and (max-width: 39.9375em) {
	.checkout-summary {
		padding: 1rem 0;
	}
	
	.checkout-summary-container {
		position: sticky;
		bottom: 0;
	}
	
	.checkout-summary > .title {
		padding: unset;
	}
	
	.checkout-summary .totalAmount {
		margin: 0.5rem auto;
    	padding: initial;
	}
}


/*
	breadcrumb-counter-nav
	https://foundation.zurb.com/building-blocks/blocks/breadcrumb-counter-nav.html
*/
body {
  counter-reset: section;
}

.breadcrumb-counter-nav {
    margin: 0;
    padding: 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    list-style: none;
    font-weight: 600;
    font-family: 'Brockmann';
}

.breadcrumb-counter-nav .item-step {
	position: relative;
	-webkit-flex: 1 0 auto;
	    -ms-flex: 1 0 auto;
	        flex: 1 0 auto;
	text-align: center;
	vertical-align: middle;
	cursor: default;
	background-color: var(--main-light);
	font-weight: 300;
	color: white;
}
.show-for-medium .breadcrumb-counter-nav .item-step {
	padding: 1rem 2rem;
	height: 60px;
}

.breadcrumb-counter-nav .item-step:first-of-type {
	border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.breadcrumb-counter-nav .item-step:last-of-type {
	border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.breadcrumb-counter-nav .item-step::before {
	counter-increment: section;
    content: counter(section);
    position: relative;
    color: white;
    right: 1rem;
    border-radius: 50%;
    padding: 2px 7px;
}
.show-for-medium .breadcrumb-counter-nav .item-step.current::after {
    content: '';
    position: absolute;
    right: -4%;
    top: 0;
    bottom: 0;
    z-index: 1;
    background-color: inherit;
    border-left: 30px solid transparent;
    border-top: 30px solid var( --main-light);
    border-bottom: 30px solid var( --main-light);
}
.breadcrumb-counter-nav .item-step:last-of-type::after {
	content: unset;
}
.breadcrumb-counter-nav .item-step.active {
	background-color: var(--main);
	font-weight: 600;
}
.breadcrumb-counter-nav .item-step.active::before {
	background-color: white;
    color: var(--main-dark);
}

.breadcrumb-counter-nav .endStep {
	position: absolute;
    height: 3.6rem;
    height: -webkit-fill-available;
    top: 0;
    right: -4%;
    z-index: 99;
}
.hide-for-medium .breadcrumb-counter-nav .item-step {
	font-size: 10px;
    border-radius: 5px;
    padding-top: 6px;
    padding-bottom: 6px;
}

.hide-for-medium .breadcrumb-counter-nav .item-step::before {
    right: 0rem;
    padding: 3px 6px;
}

#nav-item-noPGs {
	color: var(--main);
	font-weight: 600;
	font-size: 24px;
}
/* Small only */
@media screen and (max-width: 39.9375em) {
	.item-step-label {
		display: none;
	}
}

/*
	table-expand
	https://foundation.zurb.com/building-blocks/blocks/table-expand.html
*/
#debts {
/*  margin-top: 2rem;	*/
}

#debts thead, #debts tbody{
	border: unset;
}

.table-expand {
	font-size: 90%;
}

.table-expand thead tr {
	background-color: white;
    border: unset;
    border-bottom: 2px solid var(--gray);
}

.table-expand thead th {
	color: black;
}

.table-expand tbody tr {
	background-color: white;
}

.table-expand tbody td {
	color: black;
	vertical-align: middle;
}

.table-expand tbody .table-expand-row:nth-of-type(4n-3) {
	background-color: #fafafa;
}

.table-expand .text-right {
  padding-right: 1rem;
}
/* Small only */
@media screen and (max-width: 39.9375em) {
	#debts {
	  margin-top: 1rem;
	}
	.table-expand .text-right {
	  padding-right: .6rem;
	}
}

thead tr.table-expand-row th {
	font-size: 1rem;
}
tbody tr.table-expand-row {
	vertical-align: top;
}
.table-expand-row .expand-icon {
	font-weight: 500;
    font-size: 1.5rem;
    border: 1px solid;
    border-radius: 50%;
    height: auto;
    width: auto;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.table-expand-row .expand-icon:hover {
	cursor: pointer;
}
.table-expand-row.is-active .expand-icon::after {
  content: '-';
}

.table-expand-row .expand-icon::after {
    content: '+';
    transform: translate(0px, -7px);
    margin: 0px;
    height: 22px;
    width: 22px;
}

.table-expand-row .title, .table-expand-row-content .title {
	text-decoration: underline;
	color: black;
}

.table-expand-row-content {
  display: none;
}

.table-expand-row-content.is-active {
  display: table-row;
  -webkit-animation: fadeIn ease-in 1;
          animation: fadeIn ease-in 1;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}

.table-expand-row-nested {
	padding: 1rem 3rem;
    color: var(--thrd-light);
}
.table-expand-row-nested .debts-associated {
	margin-top: .8rem;
}

.table-expand-column {
	cursor: pointer;
}

tbody tr.table-expand-row-content{
    background-color: inherit;
}
.expired-icon {
	display: none;
    width: 1.5rem;
    height: 1.5rem;
}
.redRow .enlight {
	color: var(--err);
}
.greenRow .enlight {
	color: var(--scnd);
}
.yellowRow .enlight {
	background-color: var(--warn-light);
	color: var(--warn-dark);
}
.yellowRow .warningIcon i{
	display: block!important;
	font-size: 20px;
}
.tooltip {
	text-align: center;
}

.partialPaymentsEnteredByUser{
    background: var(--main);
    color: white!important;
    font-size: 10px;
    font-weight: 500;
    padding: 0.3rem 0.6rem;
    border-radius: 1rem;
	visibility: hidden;
}

.partialPaymentsEnteredByUserInfo {
	visibility: hidden;
}

.redRow.firstNonSel .partialPaymentsEnteredByUser,
.redRow.firstNonSel .partialPaymentsEnteredByUserInfo{
	visibility: visible;
}

#partialPaymentsEnteredByUserModal {
	border: 2px solid var(--main);
}

#partialPaymentsEnteredByUserModal .custom-title{
	padding-bottom: 1rem;
    border-bottom: 2px solid var(--main);
    margin-bottom: 1rem;
}

#partialPaymentsEnteredByUserModal .custom-options label{
	font-weight: 600;
}

.checkout-summary-container .ui-widget, 
.checkout-summary-container .ui-widget * {
    font-family: unset;
}

/* Small only */
@media screen and (max-width: 39.9375em) {
	#partialPaymentsEnteredByUserModal {
		display: table-cell!important;
	}
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* customs */
.row-user {
	margin-top: 1rem;
}

.row-step {
	margin-top: 1rem;
	margin-bottom: 2rem;
}

#step-1 {
	max-width: 82.5rem;
	display: none;
}

#step-2 {
	display: none;
}

#step-3 {
	display: none;
}

.step-title {
	text-align: center;
}

.nothing-toPay {
	margin-top: 1rem;
	padding: 6rem 4rem;
	background: var(--gray);
}
.nothing-toPay p {
	font-size: 1.5rem;
	text-align: center;
}

.pendingPAC {
	background: var(--warn-light);
}
.pendingPAC p {
	color: var(--warn-dark);
}

.pendingInPerson {
	background: var(--purple-light);
}
.pendingInPerson p {
	color: var(--purple);
}

div.gateway-option {
	background-color: white;
}

div.gateway-option:nth-of-type(1) {
	border-radius: 5px 0 0 0;
}
div.gateway-option:nth-of-type(2) {
	border-radius: 0 5px 0 0;
}
div.gateway-sub-option {
	min-height: 75px;
	border: 2px solid var(--scnd);
    border-radius: 5px;
    margin-bottom: 1rem;
}
/* Small only */
@media screen and (max-width: 39.9375em) {
	div.gateway-option {
		column-count: 1;
	    column-gap: 0;
	    column-rule: none;
	}
	div.gateway-option:nth-of-type(1) {
		border-radius: 0 0 0 0;
	}
	div.gateway-option:nth-of-type(2) {
		border-radius: 0 0 0 0;
	}
}

ul.payment-options {
	list-style-type: none;
	margin: auto;
}
ul.payment-options li {
	text-align: center;
	padding-right: 1rem;
    margin: 0.5rem auto;
    position: relative;
}

ul.payment-options li i {
	cursor: help;
	position: absolute;
    top: 5px;
    right: 0;
    color: #cacaca;
}

ul.payment-options li span {
	font-weight: 500;
}

ul.sub-payment-options {
	list-style-type: none;
}

div.infoDisclaimer {
    font-size: 12px;
    color: var(--main);
    background-color: #e3f2fd;
    padding: 5px;
    margin: 5px auto;
    border: 2px solid;
    border-radius: 5px;
    display: none!important;
}

div.kushkiPaymentButton-payment-options img {
	cursor: pointer;
}
div.kushkiSupportedByBPServicePaymentButton-payment-options img {
	cursor: pointer;
}

div.servipagPaymentButton-payment-options img {
	cursor: pointer;
}
div.servipagSupportedByBPServicePaymentButton-payment-options img {
	cursor: pointer;
}

div.transbankWebpayPlus-payment-options img {
	cursor: pointer;
}

div.transbankOneclick-payment-options img {
	cursor: pointer;
}

div.unired-payment-options img {
	cursor: pointer;
}

.gateway-options .total-pay {
	font-size: 14px;
    border: 1px solid;
    border-radius: 5px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    align-items: baseline;
    padding: 6px;
    height: fit-content;
}
.gateway-options .total-pay .totalAmountToPay {
	font-size: 14px;
    font-weight: 700;
}

div.dropdown-pane.options {
	z-index: 1000;
}
div.dropdown-pane.options p {
	font-size: .9rem;
}

/* Medium only */
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
	div.dropdown-pane.options {
		width: 30rem;
	}
}

/* Large and up */
@media screen and (min-width: 64em) {
	div.dropdown-pane.options {
		width: 40rem;
		border: 2px solid var(--main);
    	border-radius: 5px;
    	box-shadow: 0 0 20px 0pxvar(--thrd);
	}
	div.dropdown-pane.options.small {
		width: 30rem;
	}
}

.button-group .debt-amount {
	cursor: default;
}

.inputNumber {
	margin: unset;
}
.inputNumber span{
	width: fit-content;
    padding-left: 5px;
    padding-right: 5px;
    font-weight: 700;
    background: #fefefe;
    border: unset;
}
.inputNumber input{
	width: auto;
	max-width: 5rem;
    margin: 0px;
    font-weight: bold;
    font-size: .9rem;
    text-align: right;
}

.inputNumber input::-webkit-outer-spin-button,
.inputNumber input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.button-group.add-debt {
	flex-wrap: nowrap;
}
.button-group.add-debt .button:nth-of-type(1) span {
	display: block;
	text-align: right;
}
.button-group.add-debt .button:nth-of-type(1) {
	margin-right: 0;
	background-color: #ddeafe;
	color: black;
	font-weight: bold;
	flex-grow: 1;
	border-radius: 8px 0 0 8px;
}
.button-group.add-debt .button:nth-of-type(2) {
	font-weight: bold;
	font-size: 1.1rem;
	width: 3rem;
	border-radius: 0;
	border-radius: 0 8px 8px 0;
}

.add-debt .debt-button-add {
	color: transparent;
    margin: auto;
    padding: 2px;
    background: unset;
    border: 2px solid var(--main);
    border-radius: 5px;
}
.add-debt .debt-button-add:hover {
	border-color: var(--scnd);
	box-shadow: 0 0 10px 0 var(--scnd);
}

.add-debt .debtChecked,
.add-debt .keepLock {
	color: white;
    margin: auto;
    padding: 2px;
    background: var(--scnd);
    border: 2px solid var(--scnd);
    border-radius: 5px;
    cursor: pointer;
    width: fit-content;
    line-height: 1;
    display: none;
}

.add-debt .debtChecked.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.add-debt .debt-button-add[disabled] {
	display: none!important;
}

.add-debt .debt-button-add[disabled] + .debtChecked,
.add-debt .debt-button-add[disabled] + .keepLock{
	display: block;
}
.debtsSelectionRadio {
	display: none;
}

.add-debt-radio span {
    font-size: 24px;
    cursor: pointer;
}
.add-debt-radio .debtRadioUnchecked {
	color: var(--main);
}
.add-debt-radio .debtRadioUnchecked:hover {
	color: var(--scnd);
}
.add-debt-radio .debtRadioChecked {
	display: none;
	color: var(--scnd);
}

.button-group.only-amount .button:nth-of-type(1) {
	margin-right: 0;
	background-color: #ddeafe;
	color: black;
	font-weight: bold;
	flex-grow: 1;
	border-radius: 8px 8px 8px 8px;
}

/* Summary of Transaction */
.summary-transaction {
	margin-bottom: 2rem;
	background-color: #F8F8F8;
}
.summary-transaction > .grid-x {
	padding-top: 0.35rem;
	padding-bottom: 0.35rem;
}

.summary-transaction.box-success {
	border: 2px solid var(--scnd);
}
.summary-transaction.box-success .grid-x:first-child{
	background-color: var(--scnd);
	color: white;
}
.summary-transaction.box-success .grid-x:last-child{
	background-color: #d2e9d7;
}
.summary-transaction.box-secondary {
	border: 2px solid #E8E8DF;
}
.summary-transaction.box-secondary .grid-x:first-child{
	background-color: #E8E8DF;
	color: black;
}
.summary-transaction.box-secondary .grid-x:last-child{
	background-color: #f3f3f0;
}
.summary-transaction.box-warning {
	border: 2px solid var(--warn);
}
.summary-transaction.box-warning .grid-x:first-child{
	background-color: var(--warn);
	color: black;
}
.summary-transaction.box-warning .grid-x:last-child{
	background-color: var(--warn-light);
}
.summary-transaction.box-alert {
	border: 2px solid var(--err);
}
.summary-transaction.box-alert .grid-x:first-child{
	background-color: var(--err);
	color: white;
}
.summary-transaction.box-alert .grid-x:last-child{
	background-color: #e7cccc;
}
	
/* Small only */
@media screen and (max-width: 39.9375em) {
	.summary-transaction {
		margin-top: 1rem;
	}
	.summary-transaction .info-customer-name {
		font-size: 20px;
	    font-weight: 600;
	}
	.summary-transaction .info-trx-id {
		font-size: 12px;
	    font-weight: 500;
	}
	.summary-transaction .info-payment {
		font-size: 14px;
	    font-weight: 400;
	}
}
/* Medium only */
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
	.summary-transaction {
		margin-top: .5rem;
	}
}
/* Large and up */
@media screen and (min-width: 64em) {
	.summary-transaction {
		margin-top: 1rem;
	}
}

.summary-transaction table.details {
	font-weight: normal;
}
.summary-transaction table.details *{
	background: inherit;
    border: inherit;
}

.summary-transaction .label {
	font-size: 1.1rem;
	color: inherit;
}
.summary-transaction tbody li {
	font-weight: normal;
}
.summary-transaction .button-finish-operation {
	margin-top: .5rem;
	background-color: var(--main-dark)
}
.print {
	font-size: 1.5rem;
	cursor: pointer;
}

#download-summary-transaction, #print-summary-transaction {
	background-color: transparent;
    font-weight: 400;
    text-align: center;
    border: 1px solid;
    border-radius: 5px;
    padding: 5px;
    cursor: pointer;
    margin-bottom: 1rem;
}

/* menu debts */
.menu-add {
	float: right;
}
.menu-add a {
    font-size: 14px;
    font-weight: 400;
}
.dropdown.menu-add > li.is-dropdown-submenu-parent > a::after {
	color: black;
}

.menu-remove {
	float: right;
}
.menu-remove a {
	color: black;
}
.dropdown.menu-remove > li.is-dropdown-submenu-parent > a::after {
	color: black;
}

.infoPAT {
	font-size: 16px;
    color: #1E2A44;
    border-radius: 5px;
    padding: 15px;
    background: #E0FCF0;
    margin-bottom: 1rem;
}

.infoPAT i{
	border: 3px solid;
    border-radius: 50%;
    padding: 0.8rem 1.3rem;
    margin-top: 1rem;
    font-size: 1.5rem;
    color: var(--scnd-light);
}

.summaryMessage {
	font-size: 16px;
    color: #1E2A44;
    border-radius: 5px;
    padding: 15px;
    background: #FCECE0;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.summaryMessage i{
    padding: 0.8rem 1.3rem;
    font-size: 3rem;
    color: var(--warn);
}

.signatureMessage {
	font-size: 18px;
    color: #1E2A44;
    border-radius: 5px;
    padding: 8px;
    background: #EAE8E7;
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    border-style: solid;
  	border-color: var(--error)
}

.containerButton{
	display: block;
  	justify-content: center;
  	align-items: center; 	
}

.checkoutMessage {
	font-size: 16px;
    color: #1E2A44;
    border-radius: 5px;
    padding: 15px;
    background: #FCECE0;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

/* Widget OLX */
.checkoutContactMessage {
	font-size: 16px;
    color: #66F696;;
    border-radius: 5px;
    padding: 15px;
    background:var(--thrd); 
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.button-widget {
  border: none;
  color: black;
  padding: 5px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  background-color: #66F696;
  border-radius: 10px;
}

.button-whatsapp {
  color: #25D366 !important;
  border: 2px solid;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  background-color: #fefefe !important;
  border-radius: 10px;
}

.button-whatsapp:hover {
  background-color: #128C7E; /* Verde WhatsApp más oscuro */
}

.info-text {
	font-style: italic;
	font-size: 14px;
	color: gray;
}
.customContainer {
  	height: -webkit-fill-available;
} 
.button-finish-operation {
	background-color: var(--main);
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
}

/* Small only */
@media screen and (max-width: 39.9375em) {
	.infoPAT i {
		font-size: 1rem;
    	padding: 0.5rem 0.8rem;
	}
}

/* QR Code*/
#qrcode img {
	margin: auto;
    padding: 2rem;
}

/* QR Code*/
#qrcodeCodi img {
	margin: auto;
    padding: 2rem;
    padding-top: 0rem;
}
/* OneClick */

#oneclickSelected {
	height: auto;
}

/*Paycash Global*/
.paycashGlobal-payment-options figure, #paycashError figure{
    display: inline-block;
    border: 1px solid #c4c4c4;
    border-radius: 5px;
    padding: 10px;
    margin: 5px;
}
.paycashGlobal-payment-options figure figcaption
, #paycashError figure figcaption{
	font-size: 10px;
}


#signUp {
	display: none;
}
#signUp label, #signUpWelcome label, #forgotWelcome label, #signupAutomaticPayment label {
	font-size: 12px;
}
#signUp .password-tip, #signUpWelcome .password-tip {
	font-size: 12px;
}
#forgotRUT{
	display: none;
}
#signIn .ui-button, #signUp .ui-button, #signUpWelcome .ui-button, #forgotRUT .ui-button, #forgotWelcome .ui-button, #updateCustomerData .ui-button, #signupAutomaticPayment .ui-button {
    background-image: unset;
    border: unset;
    box-shadow: unset;
    text-shadow: unset;
    font-size: inherit;
    font-weight: inherit;
}
#signIn .ui-button-text-only .ui-button-text, #signUp .ui-button-text-only .ui-button-text, #signUpWelcome .ui-button-text-only .ui-button-text, #forgotWelcome .ui-button-text-only .ui-button-text, #signupAutomaticPayment .ui-button-text-only .ui-button-text {
    padding: 0;
}

#growl_container{
	width: 22rem;
}

#growl_container .ui-growl-image {
    display: none;
}

#growl_container .ui-growl-message {
    width: 100%;
    float: left;
}

#growl_container .ui-growl-info{
	background: var(--scnd);
	color: white;
	text-shadow: unset;
	opacity: 1;
}

#growl_container .ui-growl-warn{
	background: var(--warn);
	color: #000000;
	text-shadow: unset;
	opacity: 1;
}

#growl_container .ui-growl-error{
	background: var(--error);
	color: white;
	text-shadow: unset;
	opacity: 1;
}

/* Small only */
@media screen and (max-width: 39.9375em) {
	.small-order-first{
		order: 1;
	}
}
@media screen and (max-width: 39.9375em) {
	.small-order-last{
		order: 9999;
	}
}

.ui-menuitems-logout-button {
	width: 90% !important;
    margin-left: 5% !important;
    color: white !important;
}

.ui-menuitems-logout-button:hover {
	background-color: var(--scnd-dark);
}
.ui-menuitems-to-bottom {
	margin-top: 5rem;
    width: 100%;
}

.ui-menuitem-link {
    padding: 1rem;
    font-size: 1rem;
    color:var(--thrd) !important;
    border-top: 1px solid;
    border-bottom: 1px solid;
}

.ui-menuitem-link.active {
	background-color: var(--scnd);
}

.ui-menuitem-link:hover {
	background-color: var(--scnd);
}

.ui-menuitem-account-benefits {
	margin-top: 1rem; 
	margin-bottom: 1rem;
    color: white;
}

.ui-menuitem-account-benefits .benefits-title{
	color: var(--main);
    font-weight: 700;
    font-size: 14px;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid;
}

.ui-menuitem-icons-size {
	font-size: 18px;
    color: var(--scnd);
    vertical-align: middle;
}

.ui-menuitems-createaccount-button {
	width: 80% !important;
    margin-left: 10% !important;
    color: var(--main) !important;
    background-color: white;
    border-radius: 30px;
}

.payment-status {
	white-space: normal;
	background: inherit;
}

/** OffCanvas **/
#offCanvas {
	background-color:var(--thrd); 
	box-shadow: 0 0 10px 2pxvar(--thrd);
	transition: width 0.5s, transform 0.5s;
}

/* ocultar scrollbar */
#offCanvas{
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
	height: auto;
}

#offCanvas::-webkit-scrollbar {
  display: none;
}


/* Small only */
@media screen and (max-width: 39.9375em) {
	#offCanvas {
		box-shadow: unset;
	}
}
#offCanvas .menu.vertical {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
}

#offCanvas .menu.vertical > *
{
    margin: 10px 0;
}

#closeMenu, #openMenu {
	cursor: pointer;
}

#offCanvas #itemsSignedOut {
	padding: 0 1rem;
}

#offCanvas .logoInMenu {
	padding: 0.5rem;
    display: flex;
}

#offCanvas .logoInMenu img{
	height: auto;
    margin: auto;
}

#offCanvas .logoInMenu.upper img{
	width: 70%;
}

#offCanvas .logoInMenu.footer img{
	width: 50%;
    opacity: 0;
}

#menuSignIn {
	background-color: var(--scnd);
}

#menuSignIn:hover {
	background-color: var(--scnd-dark);
}

#menuLogOut {
	background-color: var(--main);
}

#menuLogOut:hover {
	background-color: var(--main-dark);
}

/* Payment history */
#paymentHistory table{
    font-size: 14px;
    font-family: 'Montserrat';
}

#paymentHistory table .paidAmount{
    font-weight: 700;
}

/*khipuBank items*/
#khipuBank_panel{
	z-index: 2000!important;
}
div#khipuBankModal {
    border-radius: 8px;
    padding: 25px;
}
div#khipuBankModal .title{
    margin: 1rem auto;
    padding: 0 15%;
    font-weight: 500;
}
div#khipuBankModal input, div#khipuBankModal select {
    border-radius: 4px;
    border: 1px solid #cea5d9;
}
a#khipuClose {
	border-radius: 4px;
	background-color: var(--gray);
	color: var(--thrd-light);
	width: 100%;
	font-weight: 600;
}
a#khipuInit {
	border-radius: 4px;
	background-color: var(--purple-dark); 
	width: 100%;
	font-weight: 600;
}

/* Fintoc Init */
#fintocInitBank_panel{
	z-index: 2000!important;
}
div#fintocInitBankModal {
    border-radius: 8px;
    padding: 25px;
}
div#fintocInitBankModal .title{
    margin: 1rem auto;
    padding: 0 15%;
    font-weight: 500;
}
div#fintocInitBankModal input, div#fintocInitBankModal select#fintocInitBank {
    border-radius: 4px;
    border: 1px solid #cea5d9;
}
a#fintocInitClose {
	border-radius: 4px;
	background-color: var(--gray);
	color: var(--thrd-light);
	width: 100%;
	font-weight: 600;
}
a#fintocInit {
	border-radius: 4px;
	background-color: var(--purple-dark); 
	width: 100%;
	font-weight: 600;
}

/* Generic Bank Transfer */
div#bankTransferModal{
    border-radius: 8px;
    padding: 25px;
}
div#bankTransferModal .title{
    margin: 1rem auto;
    padding: 0 15%;
    font-weight: 500;
}
div#bankTransferModal input, div#bankTransferModal select#bankTransferList {
    border-radius: 4px;
    border: 1px solid #728498;
}
a#bankTransferClose {
	border-radius: 4px;
	background-color: var(--gray);
	color: var(--thrd-light);
	width: 100%;
	font-weight: 600;
}
a#bankTransferInit {
	border-radius: 4px;
	background-color: var(--main); 
	width: 100%;
	font-weight: 600;
}

.before-dot::before {
    content: "";
    height: 10px;
    width: 10px;
    background-color: var(--thrd);
    display: inline-block;
    border-radius: 50%;
    margin-right: 5px;
}

.inheritFontSize {
	font-family: inherit!important;
}

.btn-disabled {
	pointer-events: none;
	background-color: var(--gray);
}

.bankLogos {
	display: flex;
    align-items: baseline;
    justify-content: space-around;
    align-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
}

.bankLogos img{
	height: 2rem;
}

.bankLogos figcaption {
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}

/** PRINT **/
@media print
{    
    .no-print, .no-print *
    {
        display: none !important;
    }
}
.modal {
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}
.modal-checkout-format{
	border-radius: 10px !important;
	background-color: var(--clear);
	filter: brightness(1.04);
	font-family: 'Brockmann' !important;
}
.loginModal {
    max-width: 400px;
}
.large-modal {
    max-width: 600px;
}
.modal-logo {
    width: 100px;
    margin-bottom: 20px;
}
.modal-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--main);
}
.modal-form .input-group {
    margin-bottom: 20px;
}
.modal-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.modal-button {
    background-color: var(--main) !important;
    color: white !important;
    padding: 10px !important;
    border: 1px solid !important;
    border-radius: 5px !important;
    cursor: pointer !important;
    font-family: "Brockmann" !important;
    box-shadow: 0px 0px 8px 1px var(--main) !important;
    border-color: var(--main) !important;
}
.modal-button:hover {
    background-color: white !important;
    color: var(--main) !important;
    border-color: var(--main) !important;
}
.modal-footer {
    text-align: center;
    margin-top: 20px;
}
.modal-link {
    color: var(--main);
    text-decoration: none;
    margin: 0 10px;
}
.modal-link:hover {
    text-decoration: underline;
}
.password-tip {
    font-size: 0.8rem;
    color: var(--thrd-light);
    margin-bottom: 10px;
}
.modal-checkbox {
    padding-left: 2rem;
}
.div-terms-condition{
	padding-bottom: 3rem;
}
.label-checkbox {
    font-size: 0.9rem;
    color: var(--thrd-dark);
    padding-left: 1rem;
}
.modal-link-button {
    background: none;
    border: none;
    color: var(--thrd-light);
    text-decoration: none;
    cursor: pointer;
    padding: 0;
    margin: 0 10px;
}
.modal-link-button:hover {
    color: var(--main);
}
.register-button-modal{
	width: 50% !important;
}
.forgot-button-modal{
	width: 96% !important;
    padding: 3px !important;
}
.menu-element-white{
	color: white;
}
.div-register-button-modal{
	display: flex;
    justify-content: center;
}
.modal-input::placeholder {
    color: var(--thrd-light) !important;
    opacity: 1 !important;
}
.input-group-field.modal-input {
    border: 1px solid var(--gray);
    padding: 10px;
    font-size: 14px;
}
.tr-modal-color{
	background-color: var(--clear);
}
.register-card-button{
	background-color: var(--main) !important;
    color: white !important;
    border: 1px solid !important;
    border-radius: 5px !important;
    font-family: "Brockmann" !important;
    box-shadow: 0px 0px 8px 1px var(--main) !important;
    border-color: var(--main) !important;
}
.register-card-button:hover{
	background-color: white !important;
    color: var(--main) !important;
    border-color: var(--main) !important;
}
.cancel-card-button{
	background-color: white !important;
    color: var(--err) !important;
    border: 1.5px solid !important;
    border-radius: 5px !important;
    font-family: "Brockmann" !important;
    border-color: var(--err) !important;
}
.cancel-card-button:hover{
	background-color: white !important;
    color: var(--err) !important;
    border-color: var(--err) !important;
}
.more-pg-btns {
    background-color: white;
    color: var(--thrd-dark);
    border: 2px solid var(--scnd);
    border-radius: 12px;
    width: 19rem;
    margin-bottom: 2rem;
    height: 2.5rem;
}
.more-pg-btns:hover {
	background-color: var(--scnd-dark);
	color: white;
}
.carousel-buttons-arrow{
	padding-top: 2rem;
	display: flex;
    flex-direction: row;
    justify-content: center;
}
.btn-arrow{
	cursor: pointer;
}
.umatch-modal{
	max-width: 100%;
    overflow-x: hidden;
}
.header-text-umatch-modal{
	color: var(--main);
	font-weight: bold;
	font-size: 1.4rem;
}
.count-account-title{
	font-weight:bold;
	color: var(--scnd);
	font-size: 1rem;
}
.par-info-account{
	font-size: 0.8rem;
}
.font-umatch-modal{
	font-weight: bold;
	font-size: 1.5rem;
}
.carousel-umatch-bank-accounts {
    position: relative;
    overflow: hidden;
}
.slick-list{
	padding:0 16% 0 0;
}
.carousel-umatch-bank-accounts::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 15%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
}
.callout-umatch-modal{
    width: 14rem;
    padding: 1rem 0rem 1rem 1rem;
    border: unset;
    background: white;
    border-radius: 5px;
}
.arrow-responsive-show{
	display: none;
}
/* Medium only */
@media screen and (max-width: 63.9375em) {
	.arrow-responsive-show{
		display: block;
	}
	.arrows-display img{
		display: none;
	}
}

/* Activación Cuenta Bancaria */
#bankAccountActivationModal {
	padding: unset;
	border: unset;
	border-radius: 5px;
}

#bankAccountActivationModal h5{
	font-family: "Brockmann";
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--main);
}

#bankAccountActivationModal .checkout-button {
	background-color: var(--main);
}

#bankAccountActivationModal .action{
	padding: 1rem;
}
#bankAccountActivationModal .success, #bankAccountActivationModal .error {
	display:none;
	padding: unset;
}

#bankAccountActivationModal .success img, #bankAccountActivationModal .error img{
	overflow: visible;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.bankAccountActive {
	padding: 1rem;
	box-shadow: -1px 1px 5px -2px;
	border-radius: 5px;
	margin: 1rem 0;
	cursor: pointer;
}

.item-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.remove-btn {
  background-color: transparent;
  border: 1px solid var(--err);
  color: var(--err);
  font-size: 1rem;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  line-height: 22px;
  text-align: center;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 6px;
  transition: background-color 0.2s, color 0.2s;
}

.remove-btn:hover {
  background-color: var(--err);
  color: white;
}

.item-main {
  flex-grow: 1;
}

.item-main strong {
  color: var(--main);
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.expiration {
  font-size: 0.85rem;
  color:var(--thrd);
  margin: 2px 0;
}

.item-price {
  font-size: 0.95rem;
  font-weight: bold;
  margin-top: 4px;
  color: var(--scnd);
}

.sourceCurrency {
  font-size: 0.8rem;
  color: var(--thrd-light);
  margin-left: 6px;
}
.checkout-summary-list.scrollable {
  max-height: 330px;
  overflow-y: auto;
}

.checkout-summary-list::-webkit-scrollbar {
  width: 6px;
}

.checkout-summary-list::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px;
}

.error-text{
	font-size: 11rem;
    font-weight: 600;
    color: rgba(122, 200, 140, 1);
}

.red-box {
    background-color: white;
    box-shadow: 0 1px 9px 0px #b6d2eb;
    border-radius: 5px;
}

.red-box-top-text{
    display: flex;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: 900;
}

.red-box-lower-text{
    display: flex;
    justify-content: center;
    font-size: 1.5rem;
}

.red-box img{
	width: 25%;
}
@media screen and (max-width: 769px) {
	.error-text{
		font-size: 8rem;
	}
}
@media screen and (max-width: 425px) {
	.error-text{
		font-size: 4rem;
	}
}
.title-welcome-present{
	color: var(--main);
	font-size: 1.5rem;
	font-weight: bold;
	font-family: 'Brockmann' !important;
}
.present-login-button {
    position: relative;
    padding-right: 2rem;
    font-size: 1.2rem !important;
    width: 100%;
    background-color:  var(--main) !important;
    font-weight: 600;
    border-radius: 0.5rem;
}
.present-login-button::after {
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
}
.input-user-credential-icon-wrapper, .input-reference-icon-wrapper, .input-user-password-icon-wrapper{
    position: relative;
    
}
.input-with-before-icon {
    padding: 1.5rem;
    background-color: #E9F1FA;
    text-align: center;
    border: 0px solid #cacaca !important;
}
.input-user-credential-icon-wrapper::before {
    content: "";
    position: absolute;
    left: 5%;
    top: 25%;
    background-image: url(../img/gateway/global/present/Ingresar_credencial.svg);
    width: 9%;
    height: 39%;
    background-repeat: no-repeat;
    filter: contrast(0);
}
.input-user-password-icon-wrapper::before{
	content: "";
    position: absolute;
    left: 6.5%;
    top: 13%;
    background-image: url(../img/gateway/global/present/Ingresar_clave.svg);
    width: 10%;
    height: 30%;
    background-repeat: no-repeat;
    filter: contrast(0);
}