.dialog-confirm-id .dl-wrap dl:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}

.dialog-back-mask {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
  transition: background 0.5s;
}

.dialog-confirm-id {
  position: relative;
  width: 275px;
  padding: 18px 20px;
  background: #F6F6F7;
  border-radius: 12px;
}
.dialog-confirm-id .handle {
  position: absolute;
  top: 13px;
  right: 15px;
  z-index: 12;
}
.dialog-confirm-id .handle .close {
  float: left;
  width: 30px;
  height: 30px;
  font-size: 0;
  color: transparent;
}
.dialog-confirm-id .handle .close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  background-image: url(../images/icon_dialog_close.svg);
  background-repeat: no-repeat;
}
.dialog-confirm-id .handle .close:hover {
  opacity: 0.7;
}
.dialog-confirm-id .title {
  padding: 2px 0;
  color: #1A2734;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.dialog-confirm-id .title + .dl-wrap {
  margin-top: 10px;
}
.dialog-confirm-id .dl-wrap dl + dl {
  margin-top: 5px;
}
.dialog-confirm-id .dl-wrap dt {
  float: left;
  color: #1A2734;
}
.dialog-confirm-id .dl-wrap dd {
  float: left;
}
.dialog-confirm-id .dl-wrap .txt-blue {
  color: #2777F8;
}
.dialog-confirm-id .action {
  display: flex;
  margin: 18px -20px -18px -20px;
  padding: 20px;
  border-radius: 0 0 12px 12px;
  background: #fff;
}
.dialog-confirm-id .action .button {
  display: block;
  flex: 1;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 40px;
  background: #2777F8;
  color: #fff;
}

.price-instruction-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 315px;
  background: #fff;
  border-radius: 12px;
  transform: translate(-50%, -50%);
}
.price-instruction-dialog .content {
  background: rgba(167, 173, 184, 0.1);
  border-radius: 12px 12px 0 0;
}
.price-instruction-dialog .title {
  padding: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
  color: #1A2734;
}
.price-instruction-dialog .details {
  padding: 0 20px 20px;
  font-size: 14px;
  line-height: 20px;
  color: #1A2734;
}
.price-instruction-dialog .button {
  flex: 1;
  font-size: 14px;
  line-height: 40px;
  color: #fff;
  text-align: center;
  border-radius: 23px;
  background-color: #2777F8;
}
.price-instruction-dialog .button:active {
  background-color: #1d71f8;
}
.price-instruction-dialog .button-wrap {
  display: flex;
  padding: 20px;
}

.popup-ticket {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  max-height: 100%;
  background: #fff;
  border-radius: 16px 16px 0 0;
}
.popup-ticket .title {
  flex-shrink: 0;
  padding: 15px 20px 14px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 21px;
  color: #1A2734;
}
.popup-ticket .union-ticketcard-warp {
  flex: 1;
  overflow: auto;
  padding: 0 20px;
}
.popup-ticket .union-ticketcard {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 25px 68px 13px 15px;
  border-radius: 10px;
  border: 2px solid #FFFBEB;
  background-color: #FFFBEB;
}
.popup-ticket .union-ticketcard:before {
  content: "";
  position: absolute;
  right: 64px;
  top: -1px;
  bottom: -1px;
  display: block;
  width: 4px;
  background-image: url(../images/ticket_bg.svg);
  background-repeat: repeat-y;
  z-index: 1;
}
.popup-ticket .union-ticketcard + .union-ticketcard {
  margin-top: 20px;
}
.popup-ticket .union-ticketcard .floatop {
  position: absolute;
  top: -4px;
  left: -3px;
  height: 20px;
  overflow: hidden;
  background: #CF8D51;
  border-radius: 10px 0 10px 0;
}
.popup-ticket .union-ticketcard .floatop span {
  display: block;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  margin: 0 -4px;
  transform: scale(0.75);
}
.popup-ticket .union-ticketcard .money {
  flex-shrink: 0;
  position: relative;
  padding: 6px 10px 6px 7px;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  color: #8E531E;
  background: #F8E59E;
  border-radius: 6px;
}
.popup-ticket .union-ticketcard .money:before, .popup-ticket .union-ticketcard .money:after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  background-color: #FFFBEB;
  border-radius: 50%;
}
.popup-ticket .union-ticketcard .money:before {
  left: -3px;
}
.popup-ticket .union-ticketcard .money:after {
  right: -3px;
}
.popup-ticket .union-ticketcard .cont {
  flex: 1;
  margin: 0 10px;
  padding-top: 3px;
}
.popup-ticket .union-ticketcard .name {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #1A2734;
}
.popup-ticket .union-ticketcard .info {
  font-size: 12px;
  line-height: 18px;
  color: #8c929a;
}
.popup-ticket .union-ticketcard .btn-ticket {
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  background-color: #CF8D51;
  border-radius: 0 10px 10px 0;
}
.popup-ticket .union-ticketcard .btn-ticket span {
  font-size: 15px;
  font-weight: 500;
  line-height: 21px;
  color: #fff;
}
.popup-ticket .union-ticketcard.utc-disabled {
  border-color: #F5F5F5;
  background-color: #F5F5F5;
}
.popup-ticket .union-ticketcard.utc-disabled .floatop, .popup-ticket .union-ticketcard.utc-disabled .money, .popup-ticket .union-ticketcard.utc-disabled .cont {
  opacity: 0.5;
}
.popup-ticket .union-ticketcard.utc-disabled .btn-ticket {
  background: #E9EAEB;
}
.popup-ticket .union-ticketcard.utc-geted {
  padding-right: 0;
  border-color: #EAEAEA;
  background: #fff;
}
.popup-ticket .union-ticketcard.utc-geted .btn-ticket {
  display: none;
}
.popup-ticket .union-ticketcard.utc-geted .money:before, .popup-ticket .union-ticketcard.utc-geted .money:after {
  background: #fff;
}
.popup-ticket .union-ticketcard.utc-geted:before {
  display: none;
}
.popup-ticket .union-ticketcard.utc-geted.utc-selected {
  border-color: #CF8D51;
  background: #FFFBEB;
}
.popup-ticket .union-ticketcard.utc-geted.utc-selected .money:before, .popup-ticket .union-ticketcard.utc-geted.utc-selected .money:after {
  background: #FFFBEB;
}
.popup-ticket .union-ticketcard.utc-geted.utc-selected:after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  background-image: url(../images/icon_ticket_selected.svg);
  background-repeat: no-repeat;
}
.popup-ticket .action {
  flex-shrink: 0;
  padding: 20px;
}
.popup-ticket .action .button {
  display: block;
  height: 40px;
  line-height: 38px;
  text-align: center;
  border-radius: 23px;
  background: #EBEDF2;
  border-color: #EBEDF2;
}
.popup-ticket .action .button span {
  font-weight: 500;
  color: #1A2734;
}

@media (max-width: 340px) {
  .price-instruction-dialog {
    width: 294px;
  }
}
.dialog-discounts {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999999;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: rgba(0, 0, 0, 0.5);
}
.dialog-discounts .container-discounts-total {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: #fff;
}
.dialog-discounts .row-action {
  padding: 0 20px 20px;
  background: #FAFAFA;
}
.dialog-discounts .row-action .button {
  display: block;
  height: 44px;
  line-height: 44px;
  border-radius: 44px;
}

.summary-discounts-total {
  display: flex;
  min-height: 40px;
  padding: 10px 20px;
  align-items: center;
  justify-content: space-between;
}
.summary-discounts-total .title {
  display: flex;
  align-items: center;
  color: #666;
}
.summary-discounts-total .icon-quan {
  margin-right: 5px;
}
.summary-discounts-total .desc strong {
  color: #FF5200;
  font-weight: 500;
}

.list-discounts-total {
  position: relative;
  max-height: calc(100vh - 170px);
  padding: 10px 20px 20px;
  border-radius: 0 0 8px 8px;
  background: #FAFAFA;
  overflow-x: hidden;
  overflow-y: auto;
}
.list-discounts-total .group:not(:last-child) {
  margin-bottom: 10px;
}
.list-discounts-total .title {
  margin-bottom: 10px;
  text-align: center;
  font-weight: 500;
}
.list-discounts-total .item-cdt {
  display: flex;
  position: relative;
  border-radius: 12px;
  background: #fff;
  border: 2px solid rgba(167, 173, 184, 0.4);
}
.list-discounts-total .item-cdt:hover, .list-discounts-total .item-cdt.selected {
  border-color: #F85927;
}
.list-discounts-total .item-cdt.selected:after {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 30px;
  height: 30px;
  background-image: url(../images/icon_list_discounts_total_selected.svg);
  background-repeat: no-repeat;
  content: "";
}
.list-discounts-total .item-cdt.disabled {
  background: #F1F1F1;
  border-color: #F1F1F1;
}
.list-discounts-total .item-cdt.disabled .price-box {
  background: #F1F1F1;
}
.list-discounts-total .item-cdt.disabled .sign-specials {
  background: #C3C3C3;
}
.list-discounts-total .item-cdt.disabled .price-box .txt-price {
  color: #C3C3C3;
}
.list-discounts-total .item-cdt:not(:last-child) {
  margin-bottom: 20px;
}
.list-discounts-total .item-cdt .sign-specials {
  position: absolute;
  top: -3px;
  left: -1px;
  padding: 0 6px;
  background: #CF8D51;
  border-radius: 10px 0 10px 0;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
}
.list-discounts-total .item-cdt .price-box {
  display: flex;
  flex-shrink: 0;
  padding: 0 10px;
  border-radius: 12px 0 0 12px;
  background: #F7F9FA;
  align-items: center;
}
.list-discounts-total .item-cdt .price-box .txt-price {
  color: #F85927;
  font-size: 26px;
  font-family: Impact;
  font-weight: 500;
  line-height: 1;
}
.list-discounts-total .item-cdt .price-box .row-unit {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.list-discounts-total .item-cdt .price-box .row-unit span {
  font-size: 13px;
  color: #8c929a;
}
.list-discounts-total .item-cdt .desc-box {
  flex: 1;
  display: flex;
  min-width: 0;
  min-height: 42px;
  padding: 15px 15px 15px 20px;
  color: #8c929a;
  font-size: 12px;
  line-height: 1.4;
  flex-direction: column;
  justify-content: center;
}
.list-discounts-total .item-cdt .desc-box p {
  margin: 1px 0;
}
.list-discounts-total .item-cdt .desc-box strong {
  color: #1A2734;
  font-size: 14px;
}
.list-discounts-total .item-cdt .desc-specials {
  display: flex;
  padding: 15px 15px 15px 0;
  flex-shrink: 0;
  font-size: 13px;
  align-items: flex-start;
}
.list-discounts-total .item-cdt .txt-orange {
  color: #F85927;
  transform: scale(0.91);
}
.list-discounts-total .item-cdt .desc-used {
  display: flex;
  padding: 10px 12px;
  position: relative;
  flex-shrink: 0;
  margin: -2px -2px -2px 0;
  border-radius: 0 12px 12px 0;
  background: #EAEAEA;
  align-items: center;
  color: #afb3b9;
}
.list-discounts-total .item-cdt .desc-used:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -2px;
  width: 4px;
  background-image: url(../images/icon_list_discounts_total_dotted.svg);
  background-repeat: repeat-y;
  background-position: left top;
  content: "";
}
.list-discounts-total .content-empty {
  position: relative;
  margin: 20px 0;
  background: none;
}
.list-discounts-total .content-empty .empty i {
  width: 100%;
}