.popup-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1002;
}

.popup-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
}

.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1002;
}

.popup-dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
  background-color: rgba(0, 0, 0, 0.5);
}

.popup-dialog-content {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0 auto;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.popup__close-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: 1005;
  color: white;
  background: #2e2e2e;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 1.5rem;
}

.popup-event-list {
  width: 1100px;
  height: 620px;
  overflow: hidden;
  border-radius: 1rem;
  -webkit-box-shadow: 0px 0px 45px 10px rgba(255, 255, 255, 0.5);
          box-shadow: 0px 0px 45px 10px rgba(255, 255, 255, 0.5);
}

.popup-event-list-header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.25rem;
  border-bottom: 1px solid #343d4d;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #122c3e), to(#181f2c));
  background: linear-gradient(#122c3e 20%, #181f2c);
}

.popup-event-list-header__title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #eaeaea;
}

.popup-event-list-thumb {
  position: relative;
  overflow: hidden;
  background: #515151;
}

.popup-event-list-thumb-wrap {
  width: 220px;
  height: 580px;
  overflow: hidden;
}

.popup-event-list-thumb-wrap .ps__rail-y:hover, .popup-event-list-thumb-wrap .ps__rail-y.ps--clicking {
  opacity: 0.5 transparent !important;
  background-color: transparent !important;
}

.popup-event-list-thumb-wrap .ps__rail-y:hover > .ps__thumb-y, .popup-event-list-thumb-wrap .ps__rail-y.ps--clicking > .ps__thumb-y {
  width: 8px;
}

.popup-event-list-thumb-wrap .ps__thumb-y {
  left: 0;
}

.popup-event-list-thumb-wrap li {
  font-size: 14px;
  background: #515151;
}

.popup-event-list-thumb-content {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #2e2e2e;
}

.popup-event-list-thumb__button {
  position: relative;
  display: block;
  max-width: 220px;
  padding: 0.725rem 0.75rem;
  padding-right: 2rem;
  font-weight: bolder;
  color: rgba(255, 255, 255, 0.6);
  border-bottom: 2px solid #5f5f5f;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.popup-event-list-thumb__button:hover, .popup-event-list-thumb__button.tab-active {
  color: black;
  background: white;
  border-bottom: 2px solid #ffbe00;
}

.popup-event-list-thumb__icon {
  margin-right: 0.5rem;
  width: 36px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-size: 1.25rem;
}

.popup-event-list-thumb__icon--unread {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  z-index: 2;
  color: #ffbe00;
  font-size: 12px;
}

.popup-event-list-thumb__tag {
  display: inline-block;
  padding: 0.125rem 0.05rem;
  margin-right: 0.5rem;
  width: 34px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  color: white;
  border-radius: 0.25rem;
  font-size: 0.75rem;
}

.popup-event-list-thumb__tag.yahoojp {
  background: #ff7800;
}

.popup-event-list-thumb__tag.jpshopping {
  background: #fb4544;
}

.popup-event-list-thumb__tag.jpselection {
  background: #fe3979;
}

.popup-event-list-thumb__mask {
  cursor: pointer;
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(52, 61, 77, 0)), to(black));
  background-image: linear-gradient(to bottom, rgba(52, 61, 77, 0), black);
}

.popup-event-list-thumb__mask::after {
  display: inline-block;
  content: "\f322";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: "Font Awesome 5 Pro";
  color: #686868;
}

.popup-event-list-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 1rem;
}

.popup-event-list-description {
  display: none;
  position: relative;
}

.popup-event-list-description.content-active {
  display: block;
}

.popup-event-list-description-content {
  width: 880px;
  height: 550px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}

.event-detail-notice {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1003;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all, ease-in, 0.3s;
  transition: all, ease-in, 0.3s;
}

.event-detail-notice.notice-active {
  visibility: visible;
  opacity: 1;
}

.event-detail-notice-wrap {
  position: absolute;
  left: 50%;
  bottom: -100vh;
  width: 90%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: 1003;
  -webkit-transition: bottom, ease-in, 0.3s;
  transition: bottom, ease-in, 0.3s;
}

.event-detail-notice-wrap.detail-active {
  bottom: 0;
}

.event-detail-notice-header {
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  background: #ffbe00;
  padding: 1.5rem 1rem 0;
  text-align: center;
}

.event-detail-notice-header__title {
  position: relative;
  z-index: 1003;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  margin-bottom: -1rem;
  font-size: 1.5rem;
  border-radius: 1.5rem;
  -webkit-box-shadow: 0 5px 0 #ffbe00;
          box-shadow: 0 5px 0 #ffbe00;
  font-weight: bold;
  color: black;
  background: white;
}

.event-detail-notice-content {
  background: white;
  padding: 3rem 3rem 1rem;
  overflow: hidden;
  overflow-y: scroll;
  height: 400px;
}

.event-detail-notice-content ol,
.event-detail-notice-content ul {
  display: block;
  list-style-type: decimal;
  -webkit-margin-before: 1em;
          margin-block-start: 1em;
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
  -webkit-margin-start: 0px;
          margin-inline-start: 0px;
  -webkit-margin-end: 0px;
          margin-inline-end: 0px;
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
}

.event-detail-notice-content ol li,
.event-detail-notice-content ul li {
  line-height: 1.25rem;
  margin-bottom: .5rem;
}

.event-detail-notice-content mark {
  background: initial;
  color: #fb2020;
}

.event-detail-notice-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
}

.event-detail-column {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: inset -10px 0px 25px -5px rgba(0, 0, 0, 0.25);
          box-shadow: inset -10px 0px 25px -5px rgba(0, 0, 0, 0.25);
}

.event-detail-column button {
  background: 0;
  border: 0;
  cursor: pointer;
}

.event-detail-popup {
  position: absolute;
  top: 50%;
  left: -50vw;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 35%;
  height: 80%;
  padding: 1rem;
  z-index: 1003;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all, ease-in, 0.3s;
  transition: all, ease-in, 0.3s;
  background: white;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.event-detail-popup-table {
  overflow: hidden;
  width: 100%;
}

.event-detail-popup.popup-active {
  left: 0;
  visibility: visible;
  opacity: 1;
}

.event-detail-popup__button {
  display: inline-block;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  text-decoration: underline;
}

.event-detail-popup-table {
  height: 100%;
  overflow: auto;
}

.event-detail-popup-table__title {
  font-size: 1.25rem;
  font-weight: bold;
}

.event-detail-popup-table table {
  width: 100%;
  margin-bottom: 1rem;
}

.event-detail-field {
  position: relative;
  top: 0;
  width: 100%;
  height: 100%;
}

.event-extension {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
  height: 70px;
  background: #2e2e2e;
  border-top: 1px solid #343d4d;
}

.event-extension-share__link {
  display: inline-block;
  cursor: pointer;
  background: white;
  border: 1px solid #eaeaea;
  border-radius: 50%;
}

.event-extension__link {
  display: inline-block;
  cursor: pointer;
  padding: 0.5rem 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  background: white;
  color: black;
  font-weight: bold;
  border-radius: 3rem;
}

.event-extension__link::after {
  content: attr(data-icon);
  display: inline-block;
  vertical-align: middle;
  font-family: "Font Awesome 5 Pro";
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  margin-left: 0.75rem;
  text-align: center;
  font-weight: normal;
  background: #ffbe00;
  color: black;
  border-radius: 50%;
}

.unboxing-get-reward-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 0;
}

.unboxing-get-reward-list__item {
  display: inline-block;
  -webkit-transition: all, 0.3s;
  transition: all, 0.3s;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}

.unboxing-get-reward-list__item:hover {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.month-coupon-action {
  position: absolute;
  width: 100%;
  height: 70px;
  bottom: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.month-coupon-action__button {
  cursor: pointer;
}

.coupon-event-transport-oversea--styleA .coupon-event-action {
  position: absolute;
  width: 100%;
  height: 70px;
  bottom: 104px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.coupon-event-transport-oversea--styleA .coupon-event-action__button {
  cursor: pointer;
}

.coupon-event-transport-oversea--styleB .coupon-event-action {
  position: absolute;
  width: 100%;
  height: 70px;
  bottom: 104px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.coupon-event-transport-oversea--styleB .coupon-event-action__button {
  cursor: pointer;
}

.coupon-event-transport-service--styleA .coupon-event-action {
  position: absolute;
  width: 100%;
  height: 70px;
  bottom: 102px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.coupon-event-transport-service--styleA .coupon-event-action__button {
  cursor: pointer;
}

.coupon-event-transport-service--styleB .coupon-event-action {
  position: absolute;
  width: 100%;
  height: 70px;
  bottom: 102px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.coupon-event-transport-service--styleB .coupon-event-action__button {
  cursor: pointer;
}

.wheel-frame-event {
  position: absolute;
  top: 40px;
  left: 150px;
  color: #010686;
  text-align: center;
  font-weight: bold;
  font-style: italic;
  font-size: 1.25rem;
}

.order-lottery--styleA .order-lottery__button {
  cursor: pointer;
  position: absolute;
  right: 52px;
  bottom: 71px;
  background: 0;
  border: 0;
}

.order-lottery--styleA .order-lottery-info {
  position: absolute;
  bottom: 0;
  right: 5px;
  width: 355px;
  height: 70px;
}

.order-lottery--styleA .order-lottery-info__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  color: white;
  font-size: 1.25rem;
  font-weight: bold;
}

.order-lottery--styleA .order-lottery-info__count {
  display: inline-block;
  margin: 0 0.25rem;
  vertical-align: middle;
  color: #ffbe00;
  font-size: 2rem;
}

.order-lottery--styleA .order-lottery-detail {
  position: absolute;
  bottom: 118px;
  left: 380px;
  color: #ad6129;
  border: 1px solid #ad6129;
}

.order-lottery--styleB .order-lottery__button {
  cursor: pointer;
  position: absolute;
  right: 52px;
  bottom: 71px;
  background: 0;
  border: 0;
}

.order-lottery--styleB .order-lottery-info {
  position: absolute;
  bottom: 0;
  right: 5px;
  width: 355px;
  height: 70px;
}

.order-lottery--styleB .order-lottery-info__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  color: white;
  font-size: 1.25rem;
  font-weight: bold;
}

.order-lottery--styleB .order-lottery-info__count {
  display: inline-block;
  margin: 0 0.25rem;
  vertical-align: middle;
  color: #ffbe00;
  font-size: 2rem;
}

.order-lottery--styleB .order-lottery-detail {
  position: absolute;
  bottom: 118px;
  left: 380px;
  color: #ad6129;
  border: 1px solid #ad6129;
}

.rookie-mission-mask {
  position: absolute;
  bottom: 101px;
  right: 26px;
  width: 160px;
  height: 250px;
}

.rookie-mission-action {
  position: absolute;
  width: 170px;
  height: 250px;
  bottom: 101px;
  right: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.rookie-mission-action__button {
  cursor: pointer;
  border: 0;
  background: 0;
}

.rookie-mission-action__button.disabled {
  cursor: not-allowed;
}

.rookie-adventure-mission-wrapper {
  overflow: hidden;
  position: absolute;
  bottom: 80px;
  right: 15px;
  width: 585px;
  border: 2px solid white;
  border-radius: 1rem;
}

.rookie-adventure-mission-wrapper.mask::after {
  content: "";
  display: block;
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.rookie-adventure-mission-wrapper.mask::before {
  z-index: 3;
  content: "";
  display: block;
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  background-image: url("https://letaoimg.s3-ap-northeast-1.amazonaws.com/events/20210510_newmission/img/all-done.png");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.rookie-adventure-mission-status {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.rookie-adventure-mission-status-image {
  position: absolute;
  bottom: 0;
}

.rookie-adventure-mission-status-process {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.rookie-adventure-mission-status-process__card {
  margin: 0.5rem 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  border-right: 1px dashed white;
}

.rookie-adventure-mission-status-process__card:last-child {
  border-right: 0;
}

.rookie-adventure-mission-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.rookie-adventure-mission-board {
  padding: 0.5rem 0;
  background-image: url("https://letaoimg.s3-ap-northeast-1.amazonaws.com/events/20210510_newmission/img/bg-2.png");
}

.rookie-adventure-mission-action {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  width: 140px;
  height: 206px;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem;
  background-color: #c5ddd2;
}

.rookie-adventure-mission-action__button {
  cursor: pointer;
  border: 0;
  background: 0;
  -webkit-transition: all, 0.3s;
  transition: all, 0.3s;
}

.rookie-adventure-mission-action__button.disabled {
  cursor: not-allowed;
}

.rookie-adventure-mission-action__button-img {
  max-width: 100%;
}

.rookie-adventure-mission-action__button--disabled {
  pointer-events: none;
}

.rookie-adventure-mission-action__button:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.cumulative-amount-background {
  position: absolute;
  bottom: 77px;
  width: 100%;
  height: 131px;
  background-repeat: no-repeat;
  background-size: contain;
}

.cumulative-amount-progress {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cumulative-amount-progress .progress-bar {
  position: relative;
  width: 70%;
  left: -5px;
}

.cumulative-amount-progress .progress-bar__goal {
  position: absolute;
  right: -15px;
  top: -25px;
}

.cumulative-amount-progress .progress-bar-status {
  position: relative;
  margin: 0.25rem;
}

.cumulative-amount-progress .progress-bar-status__goal {
  position: absolute;
  z-index: 5;
  top: 25px;
  right: -28px;
}

.cumulative-amount-progress .progress-bar-status__current {
  position: relative;
  width: 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-transition: width 1s ease-in-out;
  transition: width 1s ease-in-out;
}

.cumulative-amount-progress .progress-bar-status__current-dog {
  position: relative;
  background-image: url("https://letaoimg.s3-ap-northeast-1.amazonaws.com/events/20200801_cumulativeamount/img/dog.png");
  width: 60px;
  height: 39px;
}

.cumulative-amount-progress .progress-bar-status__current-dog::after {
  display: inline-block;
  content: attr(data-amount);
  position: absolute;
  right: -75px;
  background-image: url("https://letaoimg.s3-ap-northeast-1.amazonaws.com/events/20200801_cumulativeamount/img/price.png");
  width: 70px;
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fd4d3b;
  font-size: 1rem;
  font-weight: bold;
}

.cumulative-amount-progress .progress-bar-total {
  position: relative;
  width: 100%;
  height: 10px;
  margin: 0 auto;
  border-radius: 1rem;
  background: #b53501;
  background: -webkit-gradient(linear, left top, left bottom, from(#b53501), color-stop(49%, #b53501), color-stop(51%, #9f3000), to(#9f3000));
  background: linear-gradient(180deg, #b53501 0%, #b53501 49%, #9f3000 51%, #9f3000 100%);
  padding: 3px;
  border-radius: 1rem;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.cumulative-amount-progress .progress-bar-fill {
  position: relative;
  display: block;
  height: 10px;
  background: #fff585;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff585), color-stop(75%, #daab2e), to(#edd24a));
  background: linear-gradient(180deg, #fff585 0%, #daab2e 75%, #edd24a 100%);
  width: 0%;
  border-radius: 1rem;
  -webkit-transition: width 1s ease-in-out;
  transition: width 1s ease-in-out;
}

.cumulative-amount-progress .progress-bar-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.25rem;
  color: white;
}

.cumulative-amount-table {
  overflow: auto;
  height: 100%;
}

.cumulative-amount-detail {
  position: absolute;
  bottom: 275px;
  left: 600px;
  color: #ad6129;
  border: 1px solid #ad6129;
}

.cumulative-amount__img {
  position: absolute;
}

.cumulative-amount__img.tail {
  bottom: 195px;
  left: 35px;
}

.cumulative-amount__img.ball-left {
  left: 0;
}

.cumulative-amount__img.ball-right {
  right: 0;
}

.account-upgrade {
  position: relative;
  top: 0;
  width: 100%;
  height: 100%;
}

.account-upgrade-card {
  position: absolute;
  top: 230px;
}

.account-upgrade-card.coupon {
  left: 115px;
}

.account-upgrade-card.reward {
  right: 98px;
}

.swal2-radio.popup-radio {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
