/* Base colors */
/* Gray colors */
/* Brand colors */
/* Primary colors */
/* Blue colors */
/* Warning colors */
/* Error colors */
/* Neon colors */
.money-sent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.money-sent__notification {
  background-color: #ccf080;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  position: relative;
}
.money-sent__notification::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 36px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #ccf080;
}
.money-sent__country {
  position: relative;
}
.money-sent__arrow-container {
  position: absolute;
  top: 10px;
  right: -20px;
  background-color: #303030;
  border-radius: 100%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.money-sent__arrow {
  width: 40px;
  height: 40px;
  transform: translate(-1px, -2px) rotate(60deg);
}
.money-sent__image {
  width: 80px;
  height: 80px;
  border-radius: 100%;
}
.money-sent__amount {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.money-sent__amount--primary {
  font-size: 42px;
  font-weight: 500;
  color: #000;
}
.money-sent__amount--title {
  font-size: 16px;
  font-weight: 400;
  color: #9e96bc;
}

/*# sourceMappingURL=deposit-notification.css.map */
