.section-last-expenses {
  padding-inline-start: 0px;
  padding-inline-end: 0px;
}
.chart-last-expenses {
  min-height: 240px;
  position: relative;
}
.sector-last-expenses {
  padding-top: 0px;
}
div.card-expenses {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0px 0px 16px #efefef;
  padding: 16px;
  border: 1px solid #EFEFEF;
  margin-bottom: 8px;
  display: flex;
  position: relative;
  flex-direction: column;
}
div.card-expenses:last-child {
  margin-bottom: 0px;
}
.otheroptions-transfer a {
  min-height: 56px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 16px;
  color: #565656;
  font-weight: normal;
}
.otheroptions-transfer a i {
  font-size: 20px;
  padding-inline-end: 12px;
}
.otheroptions-transfer a:last-child {
  border: 0;
}
.last-column-transfer {
  width: 100%;
}

.section-segmented-control {
  position: relative;
  display: block;
  height: 32px;
  margin-bottom: 14px;
}

/* * SEGMENTED CONTROLS LAYOUT */
/* * Container */
 .segmented-controls {
	 display: flex;
	 /* margin: 0 auto; */
	 position: relative;
	 overflow: hidden;
	 transition: all 0.3s ease;
}
/* * Vissualy hidden radiobuttons */
 .segmented-controls input {
	 position: absolute !important;
	 height: 1px;
	 width: 1px;
	 overflow: hidden;
	 clip: rect(1px 1px 1px 1px);
	/* IE6, IE7 */
	 clip: rect(1px, 1px, 1px, 1px);
	 white-space: nowrap;
	/* added line */
}
/* * Labels need to be the same size */
 .segmented-controls label {
	 grid-row: 1;
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 text-align: center;
	 cursor: pointer;
	 flex: 1 1 0px;
	 position: relative;
	 z-index: 2;
	 transition: inherit;
}
/* * Adjust z-index of last label since that contains * the paddle that needs to go beneath all other labels */
 .segmented-controls label:last-of-type {
	 z-index: 1;
}
/* * Paddle */
 .segmented-controls label:last-of-type::after {
	 content: "";
	 position: absolute;
	 top: 0;
	 right: 0;
	 bottom: 0;
	 left: 0;
	 z-index: -2;
	 background-color: black;
	 transition: inherit;
}
/* * Move paddle depending on which option is selected */
 .segmented-controls input:nth-last-of-type(2):checked ~ label:last-of-type::after {
	 transform: translateX(-100%);
}
 .segmented-controls input:nth-last-of-type(3):checked ~ label:last-of-type::after {
	 transform: translateX(-200%);
}
 .segmented-controls input:nth-last-of-type(4):checked ~ label:last-of-type::after {
	 transform: translateX(-300%);
}
 .segmented-controls input:nth-last-of-type(5):checked ~ label:last-of-type::after {
	 transform: translateX(-400%);
}
 .segmented-controls input:nth-last-of-type(6):checked ~ label:last-of-type::after {
	 transform: translateX(-500%);
}
 .segmented-controls input:nth-last-of-type(7):checked ~ label:last-of-type::after {
	 transform: translateX(-600%);
}
 .segmented-controls input:nth-last-of-type(8):checked ~ label:last-of-type::after {
	 transform: translateX(-700%);
}
 .segmented-controls input:nth-last-of-type(9):checked ~ label:last-of-type::after {
	 transform: translateX(-800%);
}
 .segmented-controls input:nth-last-of-type(10):checked ~ label:last-of-type::after {
	 transform: translateX(-900%);
}

  :root {
    --chartline: #EE4823;
  }

/* * Container */
 .segmented-controls {
	 border-radius: 32px;
	 background: #F7F7F7;
	 height: 32px;
	 padding: 2px;
   border: 1px solid #D9D9D9;
   width: inherit;
   max-width: 260px;
   margin: 0 auto;
   z-index: 0;

}
/* * Labels */
 .segmented-controls label {
	 font-size: 12px;
	 font-weight: 500;
	 line-height: 1;
   color: #222;
}
/* * Dividers */
 .segmented-controls label:not(:first-of-type)::before {
	 content: "";
	 position: absolute;
	 z-index: -3;
	 top: 0.5rem;
	 left: 0;
	 bottom: 0.5rem;
	 width: 1px;
	 background: rgba(0, 0, 0, 0.15);
	 transition: inherit;
}
/* * Selected option */
 .segmented-controls input:checked + label {
	 font-weight: 500;
	 font-size: 12px;
   color: #EE4823;
}
/* * Hide dividers before and after the selected option */
 .segmented-controls input:checked + label::before, .segmented-controls input:checked + label + input + label::before {
	 opacity: 0;
}
/* * Focus style for keyboard navigation */
 .segmented-controls:focus-within {
	 box-shadow: none;
}
/* * Paddle */
 .segmented-controls label:last-of-type::after {
	 background: white;
	 border-radius: 32px;
	 box-shadow: none;
}

.second-level {
  width: 100%;
  padding-right: 15px;
}

.type-date {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  font-size: 14px;
  font-weight: normal;
  color: #565656;
}
.id-reference {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 1px 0;
  font-size: 14px;
  font-weight: normal;
  color: #565656;
}
.transfer-account {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 2px 0;
  font-size: 14px;
  font-weight: normal;
  color: #565656;
}
.transfer-account span {
  font-size: 12px;
  padding: 0 8px;
  color: #197C31;
  font-weight: bold;
}
.transfer-state {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  width: 50%;
  float: left;
  font-size: 12px;
  font-weight: normal;
  color: #565656;
  padding-top: 7px;
}
.transfer-state span {
  font-size: 32px;
  padding-inline-end: 4px;
  margin-top: -4px;
}
.transfer-state span.completed {color: #197C31;}
.transfer-state span.incomplete {color: #C84040;}
.transfer-amount {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
  width: 50%;
  float: right;
}
.transfer-amount {
  font-size: 20px;
  color: #222;
  font-weight: normal;
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  padding: 4px 0;
}
.transfer-amount span {
  font-size: 14px;
  padding-inline-end: 4px;
}
.bot-account.debited, .bot-account.credited {
  background: white;
  display: block;
  width: 100%;
  min-height: 56px;
  border: 1px solid #D6D6D6;
  border-radius: 8px;
  align-items: center;
  padding: 16px;
  color: #222;
  justify-content: space-between;
  line-height: 24px;
}

.bot-account.debited i, .bot-account.credited i {
  font-size: 12px;
  font-weight: bold;
  float: right;
  line-height: 24px;
}
.arrow-amount-tranfer {
  position: absolute;
  font-size: 12px;
  font-weight: bold;
  right: 17px;
  top: 22px;
}
.modal-content.modal-ModalAmountTransfer {
  height: inherit;
  text-align: center;
}
.section-segmented-control-ModalAmountTransfer {
  margin: 0 auto;
}
.title-ModalAmountTransfer {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  margin-bottom: 24px;
}
.intro-ModalAmountTransfer {
    margin-top: 8px;
}
.intro-ModalAmountTransfer input {
  height: 64px;
  background-color: #FFF;
  color: #000 !important;
  font-size: 40px;
  border: 0;
  border-bottom: 1px solid #E4E4E4;
  text-align: center;
  width: 280px;
  line-height: 64px;
}
#numberAmountTransfer::placeholder {
  color: #ccc;
  font-size: 24px;
  margin-bottom: 32px;
}
.totalamount-ModalAmountTransfer {
  font-size: 14px;
  margin-top: 8px;
  font-weight: normal;
  color: #565656;
}
.totalamount-ModalAmountTransfer span {
  font-size: 12px;
  padding-inline-end: 2px;
}
.bot-send-amount-ModalAmountTransfer {
  margin-top: 8px;
  display: flex;
  justify-content: center;
}
.bot-send-amount-ModalAmountTransfer a {
  height: 56px;
  width: 56px;
  border-radius: 56px;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.bot-send-amount-ModalAmountTransfer a:hover {
  color: #FFF;
}
.titleInternal-ModalAmountTransfer {
  width: 100%;
  font-size: 18px;
  color: #222;
  font-weight: bold;
  position: relative;
  display: block;
  text-align: start;
  margin: 16px 0;
}
.sector-search.ModalAmountTransfer {
  display: block;
  position: relative;
  min-height: 40px;
}
a.card-account-ModalAmountTransfer {
  display: block;
  width: 100%;
  border: 1px solid #EFEFEF;
  padding: 8px;
  border-radius: 8px;
  margin-bottom: 8px;
  position: relative;
  margin-top: inherit;
}
a.card-account-ModalAmountTransfer:hover {
  background: #f6f6f6;
  border: 1px solid #e3e3e3;
}
.alias-ModalAmountTransfer {
  font-size: 16px;
  font-weight: normal;
  text-align: start;
  width: calc(100% - 24px);
  display: block;
  color: #222;
}
.number-ModalAmountTransfer {
  font-size: 14px;
  font-weight: normal;
  text-align: start;
  width: calc(100% - 24px);
  display: block;
  color: #565656;
}
.amount-ModalAmountTransfer {
  font-size: 20px;
  color: #222;
  font-weight: normal;
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
}
.amount-ModalAmountTransfer span {
  font-size: 14px;
  color: #222;
}
.custom-radio.ModalAmountTransfer {
  position: absolute;
  right: 12px;
  top: 4px;
}
.custom-radio.ModalAmountTransfer input+span:before {
    border-radius: 9999px;
    border-width: 1px;
    height: 18px;
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    content: "";
    border: 1px solid #ddd;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 150ms;
    transition-timing-function: linear;
    transition-duration: .2s;
    background: url(../images/check.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-color: #ddd;
}
.custom-radio.ModalAmountTransfer input:checked+span:after {
    border-radius: 9999px;
    height: 18px;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    content: "";
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 150ms;
    transition-timing-function: linear;
    transition-duration: .2s;
    background: url(../images/check.svg);
    background-repeat: no-repeat;
    background-position: center;
}
.account-loaded {
  background: white;
  display: flex;
  width: 100%;
  min-height: 56px;
  border: 1px solid #D6D6D6;
  border-radius: 8px;
  align-items: center;
  padding: 16px;
  color: #222;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-top: 18px;
}
.arrow-debited {
  position: absolute;
  right: 32px;
  top: 18px;
}
.arrow-debited i {
  font-size: 12px;
  font-weight: bold;
}
.name-debited {
  padding-bottom: 8px;
}
.alias-debited {
  font-size: 16px;
  color: #222;
  font-weight: normal;
}
.number-account-debited {
  font-size: 14px;
  color: #565656;
  font-weight: normal;
  line-height: 19px;
}

.amount-select-option {
  display: none;
}

.bot-account.amount i {
  font-size: 12px;
  font-weight: bold;
  float: right;
  line-height: 24px;
}
.amount-loaded.active .label-amount {
  font-size: 13px;
  font-weight: 500;
  top: -7px;
  line-height: 13px;
  position: relative;
}
.amount-loaded.active .amount-select-option {
  display: block;
  font-size: 20px;
  line-height: 13px
}

.modal-header.modal-ModalAmountTransfer {
  position: sticky;
  top: 0;
  z-index: 1;
}
.bottomsheet-account .sector-search.modal-ModalAmountTransfer {
  position: sticky;
  top: 69px;
  z-index: 1;
}
.section-process-transfer {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: stretch;
  padding: 0 15px;
}
.card-confirm {
  display: flex;
}
.data-transfer-confirm {
  display: block;
  border-bottom: 1px solid #ddd;
  float: left;
  width: calc(50% - 32px);
  text-align: start;
  padding: 12px 0;
  margin: 0 16px;
}
.data-transfer-confirm span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #565656;
}
.result-data-transfer-confirm {
  display: block;
  clear: both;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
.text-amount-confirm {
  font-size: 14px;
  font-weight: 500;
  color: #565656;
  margin-bottom: 4px;
  text-align: center;
}
.amount-amount-confirm {
  font-size: 20px;
  color: #222;
  font-weight: 500;
}

.arrow-amount-confirm-desktop {
  width: 40px;
  height: 40px;
  font-size: 18px;
  color: #FFF;
  background-color: #888;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
}
.section-up-result {
  display: flex;
  flex-direction: column;
  min-height: 160px;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
}
.content-icon-result {
  margin: 0 0 24px 0;
  width: 200px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.bot-share-result i {
  padding-inline-end: 8px;
}
.card-date-result {
  background-color: #FFF;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0px 0px 16px #ddd;
  margin-bottom: 24px;
  width: calc(100% - 32px);
  margin-inline-start: 16px;
}
.row-date-result {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  width: 100%;
}
.row-date-result:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.big-text-result {
  font-size: 16px;
  color: #222;
}
.small-text-result {
  font-size: 14px;
  color: #565656;
}
.section-amount-result {
  background-color: #eee;
  padding: 12px 8px;
  text-align: center;
  border-radius: 8px;
}
.section-title-amount-result {
  font-size: 14px;
  color: #222;
  margin-bottom: 4px;
}
.section-amount-result .amount-result {
  font-size: 24px;
  color: #222;
  font-weight: bold;
}
.reference-number-result {
  font-weight: bold;
  color: #222;
}
.section-arrow-mobile {
  display: none;
}
.arrow-amount-confirm-desktop {
  animation: bounce 2s;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(15px);
  }
  60% {
    transform: translateX(15px);
  }
}

.bot-new-account {
  padding: 0px 20px;
  font-size: 16px;
  border-radius: 48px;
  display: inline-flex;
  position: relative;
  justify-content: center;
  align-items: center;
  height: 48px;
  max-width: 100%;
  margin: 24px auto 16px;
}
.bot-new-account i {
  font-weight: bold;
  padding-right: 8px;
}

.card-new-account {
  width: 100%;
  background-color: #FFF;
  min-height: 200px;
  margin-bottom: 32px;
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  padding: 16px;
  z-index: 2;
  position: relative;
  animation: expand 3s;
}
@keyframes expand {
  0% {
    height:0px;
  }
  100% {
    height:200px;
  }
}
.bk-new-account {
  background-color: #000;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.1;
  z-index: 1;
}

@media (max-width: 1438px) {

.button-internal {
  margin-bottom: 24px;
  height: 72px;
}

.right-column-transfer {
  padding-top: 32px;
}
.section-amount-confirm {
  min-width: 180px;
  padding: 0 15px;
  text-align: center;
}

}

@media (max-width: 1200px) {

  .bot-share-result {
    top: 8px;
  }
  .content-icon-result {
    margin: 48px 0 24px 0;
  }
  .section-process-transfer {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 15px;
    flex-direction: column;
  }
  .section-amount-confirm {
    min-width: inherit;
    padding: 15px 0;
    flex-direction: initial;
    text-align: left;
    justify-content: flex-start;
  }
  .data-transfer-confirm {
    display: block;
    border-bottom: 1px solid #ddd;
    float: left;
    width: 100%;
    text-align: start;
    padding: 12px 0;
    margin: 0;
  }
  .section-data-transfer-confirm {
    display: block;
    margin: 24px 0 40px;
    padding: 0 15px;
    width: 100%;
  }

}


@media (max-width: 992px) {

.right-column-transfer {
  margin-inline-end: 0px;
  padding-top: 16px;
}
.section-button-internal {
  margin-bottom: 32px;
}
.section-button-internal {
  width: calc(100% + 16px);
}


}

@media (max-width: 768px) {

.button-internal {
  width: calc(100% + 16px);
  margin-bottom: 8px;
  height: 72px;
}

.section-button-internal {
  margin-bottom: 24px;
  width: 100%;
}

}

@media (max-width: 576px) {

.chart-last-expenses {
  min-height: inherit;
}
.section-last-expenses {
  padding-top: 24px;
  padding-bottom: 24px;
  padding-inline-start: 0px;
  padding-inline-end: 0px;
}
.second-level {
  padding-right: 0px;
}
.button-internal {
  width: calc(100% + 32px);
}

.text-result-ok {
  font-size: 18px;
  color: #222;
  font-weight: bold;
  line-height: 21px;
  text-align: center;
}
.bot-share-result {
  right: 0;
  font-size: 13px;
  padding: 6px 10px;
}
.content-icon-result {
  margin: 32px 0 24px 0;
}
.section-process-transfer {
  padding: 0;
}
.section-data-transfer-confirm {
  padding: 0;
}


}
