:root {
  --theme-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

html {
  font-size: 55%;
}

footer p::before {
  line-height: 0.9;
}

.head-strp {
  background: rgba(255, 255, 255, 0.516);
  border-bottom: 0.1rem solid;
  border-color: var(--bg3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  z-index: 2;
  padding: 3rem;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  position: fixed;
  left: 0;
  right: 0;
  border-radius: 0 0 3rem 3rem;
  min-height: 90px;
}

.dots-container,
.dots-container-add {
  position: fixed;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  z-index: -1;
  background: var(--bg5);
}

.dots-container {
  top: 0;
  bottom: auto;
}

.dots-container-add {
  bottom: 0;
  top: auto;
}

.dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: moveDots 5s infinite alternate ease-in-out;
  left: var(--x-start);
  top: var(--y-start);
}

@keyframes moveDots {
  to {
    transform: translate(var(--x-move), var(--y-move));
  }
}

@keyframes moveDot {
  0% {
    transform: translate(0, 0);
    opacity: 0.8;
  }

  25% {
    transform: translate(var(--x-move), var(--y-move));
    opacity: 1;
  }

  50% {
    transform: translate(calc(var(--x-move) * 2), calc(var(--y-move) * 2));
    opacity: 0.7;
  }

  75% {
    transform: translate(var(--x-move), var(--y-move));
    opacity: 0.9;
  }

  100% {
    transform: translate(0, 0);
    opacity: 0.8;
  }
}


.dot:nth-child(2n) {
  animation-duration: 6s;
  width: 5px;
  height: 5px;
  background: lightseagreen;
}

.dot:nth-child(3n) {
  width: 7px;
  animation-duration: 9s;
  height: 7px;
  background: lightslategray;
}

.dot:nth-child(4n) {
  width: 6px;
  animation-duration: 8s;
  background: lightsalmon;
  height: 6px;
}

.dot:nth-child(5n) {
  width: 4.5px;
  height: 4.5px;
  animation-duration: 4s;
  background: var(--main);
}

.d-flex {
  display: flex;
  align-items: center;
}

.title-chamber span {
  font-size: 1.4rem;
}

.title-chamber {
  font-size: 2.2rem;
  text-transform: capitalize;
  font-weight: 900;
  display: flex;
  color: var(--dark);
  gap: 2rem;
  align-items: center;
  position: relative;
  /* flex-direction: column; */
}

svg {
  stroke: var(--dark);
  fill: var(--dark);
  stroke-width: 0.25rem;
  cursor: pointer;
}

.amount::before {
  content: '₹';
  display: inline-flex;
  width: 2rem;
  font-size: 1.5rem;
  font-weight: 300;
  margin-right: 1rem;
  line-height: 1;
  align-items: center;
  background: rgba(176, 196, 222, 0.35);
  aspect-ratio: 1;
  justify-content: center;
  border-radius: 0.8rem;
  position: absolute;
  margin-left: -3rem;
  top: 0.3rem;
}

.d-none {
  display: none;
}

.body-bar {
  overflow: auto;
  padding: 2rem;
  margin: 0 auto;
  padding-top: 11rem;
  transition: all 300ms linear;
  padding-bottom: 3rem;
  width: 100%;
}

.body-bar::-webkit-scrollbar {
  display: none;
}

.menu-group {
  display: flex;
  background: var(--light);
  padding: 2rem;
  gap: 3rem;
  border-radius: 100rem;
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 17rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  min-height: 6rem;
}

.menu-group a {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}

.menu-group a span {
  display: block;
  color: black;
  font-size: 8px;
  margin-top: 3px;
  text-transform: capitalize;
  font-weight: 900;
}

.menu-wrapper-outer {
  position: relative;
  bottom: 1rem;
}

.menu-section {
  position: fixed;
  right: 2rem;
  bottom: 4rem;
  display: none;
}

.sticky-button .button-loader {
  display: none;
}

.sticky-button {
  background: var(--dark);
  font-size: 3rem;
  color: var(--light);
  box-shadow: var(--button-shadow);
  /* padding: 1rem; */
  border-width: 0.5rem;
  border-style: double;
}

.sticky-button svg {
  fill: var(--light);
  stroke: var(--light);
}

.carve-list-item {
  background: var(--light);
  padding: 2.5rem;
  /* border: 0; */
  margin-bottom: 1.5rem;
  border-radius: 2rem;
  border-color: var(--bg3);
  /* border-style: double; */
  border-width: 0.5rem;
  box-shadow: var(--theme-shadow);
  position: relative;
  overflow: hidden;
  /* Ensure the wave effect stays within the bounds of the <li> */
  /* cursor: pointer; */
}

.carve-list-item .wave-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  /* Semi-transparent black */
  transform: scale(0);
  animation: wave-animation 0.6s ease-out;
  pointer-events: none;
  /* Prevent the wave from interfering with clicks */
}

@keyframes wave-animation {
  to {
    transform: scale(4);
    /* Expand the wave */
    opacity: 0;
    /* Fade out the wave */
  }
}

.f-col {
  flex-flow: column;
}

.g-2 {
  gap: 2rem;
}

.g-1 {
  gap: 1rem;
}

.d-block {
  display: block !important;
}

.card-effect {
  background: var(--light);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 2rem;
  border-color: var(--bg3);
  border-width: 0.5rem;
  box-shadow: var(--theme-shadow);
  border-bottom: 5px solid var(--border) !important;
  border: 1px dashed var(--border);
}

[class*='y-'],
[class*='x-'],
[class*='op-'] {
  transition: all 500ms ease-in-out;
}

.y-out {
  opacity: 0 !important;
  transform: translateY(100%) !important;
}

.y-in {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.x-out {
  opacity: 0 !important;
  transform: translateX(100%) !important;
}

.x-in {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.sh-trans {
  transition: all 500ms ease-in-out;
  opacity: 0 !important;
  transform: translateY(-100%) !important;
}

.op-temp {
  transition: all 500ms ease-in-out;
  opacity: 1;
  transform: translateY(0);
}

.op-0 {
  opacity: 0 !important;
}

.op-1 {
  opacity: 1 !important;
}

/* Hide arrows for number input in Chrome, Safari, Edge, and Opera */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Hide arrows in Firefox */
input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

/* Hide arrows in Safari */
input[type="number"] {
  appearance: textfield;
  -webkit-appearance: textfield;
}

input,
textarea,
select {
  font-size: 16px !important;
}

input[type="number"],
input[type="email"],
input[type="text"],
input[type="password"],
textarea {
  font-size: 16px !important;
}

.input-field,
.select-field,
.text-field {
  border-radius: 2rem;
  /* box-shadow: var(--theme-shadow); */

}


/* Hide in Firefox */
input[type="date"] {
  appearance: none;
  -moz-appearance: none;
}

/* General styling */
input[type="date"] {
  background: none;
  border: 1px solid #ccc;
  padding: 8px;
  font-size: 16px;
}

.input-field input,
.select-field select,
.input-field textarea {
  border-radius: 2rem;
  border-color: var(--bg3);
  /* border-bottom-width: 0.5rem; */
  /* border-top: 0; */
  /* border-left: 0; */
  /* border-right: 0; */
  /* font-weight: 600; */
  font-size: 1.6rem !important;
  font-family: inherit;
  background: var(--light);
}

.select-field label {
  display: none;
}

.setings.set-user .input-field input {
  padding-right: 4.5rem;
}

.search-group input {
  font-family: inherit;
  min-height: 4rem;
  height: 5rem;
}

.search-drawer .icon-search {
  opacity: 1;
}

.search-drawer .search-group {
  width: calc(100% - 5rem);
}

.search-group input {
  border-color: var(--bg3);
  border-radius: 2rem;
}

.search-drawer .carve-drawer-inner,
.search-drawer .carve-drawer-head {
  background: var(--light) !important;
  border-radius: 3rem 3rem 0 0 !important;
  justify-content: space-between;
}

.group1 {
  animation: fanRote90 300ms 150ms cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  z-index: 2;
}

@keyframes fanRote90 {
  0% {
    transform: rotate(0deg);
    right: 0rem;
    bottom: 0rem;
  }

  100% {
    transform: rotate(90deg);
    right: -4.5rem;
    bottom: 4.5rem;
  }
}

.group2 {
  animation: fanRote45 300ms 200ms cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  z-index: 1;
}

@keyframes fanRote45 {
  to {
    transform: rotate(45deg);
    bottom: 3.2rem;
    right: -1rem;
  }
}

.group2 a {
  transform: rotate(-45deg);
  position: relative;
  left: 10px;
  top: 3px;
}

.group3 a {
  position: relative;
  top: 3px;
  left: 3px;
}

.group1 a {
  transform: rotate(-90deg);
}

button span {
  color: var(--dark);
  font-weight: 700;
}

.transaction-list li {
  display: flex;
  justify-content: space-between;
}

.jcsb {
  justify-content: space-between;
}

h1.heading-xlarge {
  margin: 3rem auto;
  font-weight: 900;
  color: var(--main);
  border-bottom: 0.2rem dashed;
}

.xy-center {
  align-items: center;
  justify-content: center;
}

.open {
  display: block !important;
}

.language-switch {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  justify-content: center;
  align-items: center;
  color: white;
  padding: 1.5rem;
  transition: all 0.3s ease-in-out;
  transform-origin: center;
  overflow: hidden;
  z-index: 2;
  width: 5rem;
  height: 5rem;
  cursor: pointer;
}

.language-switch.open {
  display: flex;
  animation: assistiveExpand 0.5s ease-in-out forwards;
}

.language-switch.closing {
  animation: assistiveClose 0.5s ease-in-out forwards;
}

/* Smooth animation for opening */
@keyframes assistiveExpand {
  from {
    width: 0rem;
    height: 0rem;
    opacity: 0;
  }

  to {
    width: 20rem;
    height: 20rem;
    opacity: 1;
  }
}

/* Smooth animation for closing */
@keyframes assistiveClose {
  from {
    width: 20rem;
    height: 20rem;
    opacity: 1;
  }

  to {
    width: 0rem;
    height: 0rem;
    opacity: 0;
  }
}

.langs button {
  font-size: 1.6rem;
  width: 70%;
  height: 70%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 40%;
  font-weight: 700;
  text-shadow: 0rem 0rem 1rem lightslategrey, 0.5rem 0.5rem 1rem lightslategrey;
  color: white;
  aspect-ratio: 1;
  border: 1px dashed;
}

.langs button .button-loader {
  display: none;
}

.skeleton-mini {
  width: 1rem;
  height: 1rem;
  min-width: 1rem !important;
  min-height: 1rem !important;
}

.w-15 {
  min-width: 15rem !important;
}

.skeleton,
.skeleton-text,
.skeleton-mini {
  border-radius: 0.5rem;
  animation: skeleton-anim 1s linear infinite alternate;
  min-height: 2rem;
  min-width: 2rem;
}

.legend-skeleton .skeleton {
  min-height: 6rem;
}

.skeleton-text {
  width: 100% !important;
  height: 0.5rem !important;
  border-radius: 0.5rem !important;
  line-height: 0.5rem !important;
  max-height: 2rem !important;
  min-width: 8rem;
  min-height: 0.5rem !important;
}

.skeleton-text:last-child {
  width: 80% !important;
  margin-bottom: 0;
}

@keyframes skeleton-anim {
  0% {
    background: hsl(200, 20%, 70%);
  }

  100% {
    background: hsl(200, 20%, 95%);
  }
}

@-webkit-keyframes skeleton-anim {
  0% {
    background: hsl(200, 20%, 70%);
  }

  100% {
    background: hsl(200, 20%, 95%);
  }
}

.skeleton {
  background: linear-gradient(to right, #e9e9e9 0%, #ffffff 50%, #ebebeb 100%);
  background-size: 200% 100%;
  animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: -100% 0;
  }
}

.skeleton-text {
  height: 16px;
  width: 100%;
  margin: 4px 0;
  border-radius: 4px;
}

.skeleton-icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

.skeleton-heading {
  height: 25px;
  width: 150px;
  border-radius: 4px;
  background: linear-gradient(to right,
      #e0e0e0 0%,
      #f8f8f8 50%,
      #e0e0e0 100%) !important;
}

.skeleton-button {
  width: 50px;
  height: 25px;
  border-radius: 4px;
}

.skeleton-btn {
  width: 100%;
  max-width: 12rem;
  height: 4.5rem;
  border-radius: 2rem;
}

.skeleton-logo {
  width: 8rem;
  height: 8rem;
  border-radius: 2rem;
}

.input-field .skeleton {
  background: linear-gradient(to right, #e0e0e0 0%, #f8f8f8 50%, #e0e0e0 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.langs {
  display: grid;
  grid-template-columns: auto auto;
  place-items: center;
  height: 100%;
}

.circle-btn {
  position: fixed;
  top: 50%;
  right: 0.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1e242b;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
  transform-origin: center center;
}

.circle-btn::before,
.circle-btn::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* Inner rings */
.circle-btn::before {
  width: 32px;
  height: 32px;
  background: #52595f;
}

.circle-btn::after {
  width: 26px;
  height: 26px;
  background: #a0a5ab;
}

.circle-core {
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 1;
  transition: transform 0.3s;
}

.circle-btn:active {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  /* transform: translateY(-50%) scale(0.25); */
}

#circleButton {
  transition: left 0.3s ease, top 0.3s ease, opacity 0.5s;
}

#circleButton.inactive {
  opacity: 0.3;
  transition: opacity 0.5s;
}

.carve-button-vice {
  background: var(--dark) !important;
  color: var(--light);
}

.button-group {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  gap: 1rem;
}

.account-sett {
  width: 30rem;
  margin: 0 auto;
}

.remarks {
  position: absolute;
  bottom: 0rem;
  background: #efefef;
  width: 100%;
  left: 0;
  padding: 0.5rem;
  padding-left: 2.5rem;
  color: black;
  font-weight: 600;
  line-height: 1;
  word-break: break-word;
}

.remarks small {
  line-height: 1.6rem;
  height: 1.5rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 30px;
  padding-right: 7rem;
  font-weight: 500;
}

.address {
  display: block;
  align-items: center;
  line-height: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 10rem;
  overflow: hidden;
  margin-top: 2rem;
  color: var(--vice);
  font-weight: 400;
}

/* .address::before {
  content: '';
  display: inline-flex;
  width: 2rem;
  height: 3rem;
  margin-right: 1rem;
  background-size: contain !important;
  background-position-x: center !important;
  background-position-y: center !important;
} */

.bank::before {
  background: url(../images/bank-transfer.svg) no-repeat;
}

.upi::before {
  background: url(../images/upi.svg) no-repeat;
}

.cash::before {
  background: url(../images/cash.svg) no-repeat;
}

.xy-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.display-1 {
  font-size: 4rem;
}

.form-icon {
  right: 0rem;
  top: 50%;
  transform: translateX(-1.5rem) translateY(-50%);
  pointer-events: none;
}

.uplod-btn label {
  background: var(--light);
  padding: 2rem;
  width: 100%;
  margin-bottom: 2rem;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 25px 20px -20px;
  border-radius: 2rem;
}

form {
  width: 100%;
}

.button-loader {
  display: inline-flex;
  gap: 6px;
  margin-left: 10px;
  vertical-align: middle;
  align-items: center;
}

.button-loader div {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ebe7e7;
  animation: dot-pulse 0.6s infinite ease-in-out;
}

.button-loader div:nth-child(2) {
  animation-delay: 0.2s;
}

.button-loader div:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dot-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.5);
    opacity: 1;
  }
}

#forgotPasswordBtn {
  color: var(--main);
}

.carve-list-item {
  position: relative;
  overflow: hidden;
}

.carve-list-item .wave-effect {
  position: absolute;
  border-radius: 1000px;
  background: rgba(0, 0, 0, 0.15);
  /* Semi-transparent black */
  transform: scale(0);
  animation: wave-animation 1.5s linear;
  pointer-events: none;
  /* Prevent the wave from interfering with clicks */
}

@keyframes wave-animation {
  to {
    transform: scale(4);
    /* Expand the wave */
    opacity: 0;
    /* Fade out the wave */
  }
}

li svg {
  max-width: 22px;
  max-height: 22px;
  min-width: 22px;
  min-height: 22px;
}

.skeleton svg {
  opacity: 0;
}

.skeleton .amount::before,
li.skeleton .skeleton-text {
  display: none;
}

li.skeleton {
  border: none;
  border-radius: 1.5rem;
  min-height: 7rem;
}

.add-amount.one-tip {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1;
  text-align: left;
  align-items: flex-start;
  min-width: 22rem;
  display: none;
  animation: y-in 300ms ease-in-out;
  margin-top: 1rem;
}

@keyframes y-in {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes y-out {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(-10px);
    opacity: 0;
  }

}

.one-tip a {
  color: var(--dark);
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.one-tip::after {
  content: '';
  position: absolute;
  top: -0.9rem;
  right: 3rem;
  width: 0;
  height: 0;
  border-left: 1rem solid transparent;
  border-right: 1rem solid transparent;
  border-bottom: 1rem solid var(--light);
}

.carve-toast {
  min-height: 10rem;
  padding-right: 5rem;
  top: 20px;
  right: 0;
  left: 0;
  border-radius: 30px;
  max-width: 400px;
  width: 90%;
}

#body {
  height: 100vh;
  overflow: hidden;
  margin: 0 auto;
  max-width: 480px;
  width: 100%;
}

.main-section-wrapper,
.main-section {
  height: 100vh;
  overflow: auto;
}

.go-button .button-loader {
  margin: 0;
}

.carve-tabs-head .tab-indicator {
  height: 1px;
  top: auto;
  bottom: 0;
}

#upload {
  text-align: center;
  font-size: 1.38rem;
}

.skeleton-box {
  background: linear-gradient(90deg, #eeeeee 25%, #dfdfdf 50%, #ececec 75%);
  background-size: 200% 100%;
  border-radius: 4px;
  animation: shimmer 1.5s infinite;
}

.skeleton-box.name {
  width: 15rem;
  height: 2.2rem;
  margin-bottom: 1.2rem;
}

.skeleton-box.address {
  width: 10rem;
  height: 1.5rem;
}

.skeleton-box.amount {
  width: 8rem;
  height: 2rem;
  margin-bottom: 0.5rem;
}

.skeleton-box.trans-time {
  width: 6rem;
  height: 1.5rem;
}

.carve-drawer.seek::after {
  display: none;
}

.forgot-password-wrapper {
  gap: 4rem !important;
}

.account-sett {
  margin-top: 3rem;
}

/* Prevent the light blue tap highlight on mobile */
*,
button,
div {
  -webkit-tap-highlight-color: transparent;
}

button,
div {
  outline: none;
}

* {
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

@media print {
  #receiptContent {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 30px 20px -20px,
      rgba(0, 0, 0, 0.25) 0px -30px 20px -20px,
      rgba(0, 0, 0, 0.1) 30px 0px 20px -20px,
      rgba(0, 0, 0, 0.1) -30px 0px 20px -20px !important;
  }
}

.mb-1 {
  margin-bottom: 1rem;
}

.text-grid {
  display: grid;
}

.text-grid span {
  font-size: 11px;
}

.text-right .remarks {
  text-align: right;
  font-size: 10px;
  width: 100px;
  background: transparent;
  font-weight: 400;
  padding-right: 0;
  left: auto;
  right: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  line-height: 1.6;
}

.text-right .amount {
  width: 106px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: right;
  display: block;
  padding: 0.5rem 0rem 0.5rem 3rem;
}

.overflow-y-scroll {
  padding: 0 !important;
}


.carve-modal-body .input-field input,
.carve-modal-body .select-field select {
  border-left: 1px solid var(--bg3) !important;
  border-right: 1px solid var(--bg3) !important;
  border-top: 1px solid var(--bg3) !important;
  width: 100% !important;
  text-align: left !important;
}

.user-mail {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: 16rem;
}

#receiptFilename {
  text-align: center;
  display: block;
  font-size: 1.4rem;
  color: var(--text2);
  font-weight: bold;
  border: 2px dashed var(--border);
  padding: 2rem;
  border-radius: 2rem;
  transition: all 300ms ease-in-out;
  background: var(--light);
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 33rem;
}

#receiptPreviewImg {
  display: block;
  max-width: 100%;
  margin-bottom: 1rem;
  border-radius: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.name {
  text-overflow: ellipsis;
  overflow: hidden;
  width: 18rem;
  white-space: nowrap;
}

.edit-transaction {
  display: block;
  height: 4rem;
  cursor: pointer;
  position: absolute;
  z-index: 99;
  width: 4rem;
  right: 1rem;
  border: 1px dotted var(--border);
  border-radius: 10rem;
  padding: 1rem;
  top: 1rem;
}

.weight-400.ltr-sp {
  max-width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
}

.heading-large {
  margin-right: 4rem;
}

#transactionListModal .name {
  overflow: auto;
  width: auto;
}

.receiptImageIcon {
  position: absolute;
  right: 1.5rem;
  top: 0.3rem;
  width: 4rem;
  height: 4rem;
  max-width: 4.5rem;
  max-height: 4.5rem;
  padding: 0.5rem;
}

h4.user-name {
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.carve-modal-body [class*='-field'] {
  margin-bottom: 3rem;
}

.currency-unit {
  font-size: 10px;
  font-weight: 400;
  position: absolute;
  top: 100%;
  opacity: 0.7;
}

#totalAmount::before {
  width: 3rem;
  font-size: 2.5rem;
  left: -15px;
}

sup.date {
  text-align: right;
}

.select-row {
  display: flex;
  gap: 1rem;
  padding-top: 1rem;
}

.uplod-btn {
  margin-bottom: 2rem;
}

#dueList .address {
  margin: 0;
}

#dueList .name-add {
  justify-content: space-between;
}

#dueList .name-add .currency-unit {
  right: 0;
}

.carve-modal-footer svg {
  fill: white;
  stroke: white;
}

.carve-modal-footer .button-group button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.receipt-wrapper {
  position: relative;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  /* overall shadow */
  background-color: white;
  border-radius: 8px;
  margin-bottom: 3rem;
}
/* .receipt-wrapper::before {
    content: '';
    display: inline-block;
    background: white;
    width: 20px;
    height: 20px;
    position: absolute;
    top: -8px;
    border-radius: 100px;
    box-shadow: 20px 0px 0px white,40px 0px 0px white,60px 0px 0px white,20px 0px 0px white,40px 0px 0px white,80px 0px 0px white;
} */
 ::placeholder {
  color: var(--text3);
 }