
.ahihi {
	width:100%;
}

.borderngoai {
	width:100%;
	font-size: 13px;
	float:left;
}

.tl {
  width: 85%;
  padding-top: 80px;
  margin: 0px auto;
}
.KCBR {
  height: 38px;
}
.bF {
  height: 20px;
  display: table-cell;
}
.KC {
  float: left;
  height: 35px;
}

.imggiua {
  width: 180px;
  text-align: center;
  line-height: 2.5;
  font-style: italic; 
  text-transform: uppercase;
}








:root {
  --bg: #f6f8fb;
  --card: #ffffff;
  --accent: #2ca6f7;
  --muted: #738096;
  --success: #16a34a;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}
body {
  background: var(--bg);
  margin: 0;
  color: #12202b;
}
.coinListContainer {
  max-width: 960px;
  margin: auto;
  display: grid;
  gap: 20px;
}
.header {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
}
.header h2 {
  margin: 0;
  font-size: 24px;
  color: var(--accent);
}
.controls {
  display: flex;
  gap: 10px;
}
.controls input, .controls select {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}
.coin-card {
  background: var(--card);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 6px 18px rgba(12,40,60,0.06);
  display: flex;
  gap: 12px;
  align-items: center;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease;
  border: 2px solid transparent;
}
.coin-card:hover {
  transform: translateY(-4px);
}
.coin-card.selected {
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(44,166,247,0.12);
}
.coin-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
}
.coin-body {
  flex: 1;
}
.coin-name {
  font-weight: 700;
  font-size: 15px;
}
.flag-reco {
  background: var(--success);
  color: white;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 6px;
  margin-left: 8px;
}
.coin-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}
.meta {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.price {
  font-size: 13px;
  color: #000;
  margin-top: 6px;
}
.flag-recodiv {
  margin-top: 5px;
}
.note {
    background: #fffbe6;
    border-left: 4px solid #f59e0b;
    padding: 10px 12px;
    border-radius: 8px;
    color: #6a4b00;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    font-size: 14px;
}
.coinT .title {
    font-size: 20px;
    font-weight: 700;
    color: #0b2b40;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}
.coinT .hint {
    font-size: 13px;
    color: var(--muted);
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.logPay .CImg {
  width: max-content;
  margin: 0px auto;
  margin-top: -25px;
  margin-bottom: 15px;
}
.qrCoinPayments {
  height: 22px;
  border: none;
  margin-top: 5px;
}



.btn-pay {
    display: flex;
    align-items: center;
    background-color: #bfd8fd;
    color: black;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s ease;
    margin: 0px auto;
}
.btn-pay:hover {
    background-color: #77c5fd;
}
.coin-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}




.payment-box {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  text-align: center;
  margin: 0px auto;
  position: relative;
}

.payment-box h2 {
  margin-bottom: 12px;
  color: #2c3e50;
}

/* Coin header */
.coin-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.coin-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: contain;
}
.coin-name {
  font-size: 18px;
  font-weight: bold;
  color: #2c3e50;
}

.qr-code {
  margin: 20px 0;
}

.qr-code #qrcode img {
  width: 180px;
  height: 180px;
  border: 4px solid #eee;
  border-radius: 8px;
}

.info {
  margin: 16px 0;
  text-align: left;
}

.info p {
  margin: 6px 0;
  font-size: 14px;
  color: #333;
}

.address {
  font-family: monospace;
  font-size: 13px;
  background: #f1f1f1;
  padding: 8px;
  border-radius: 6px;
  word-break: break-all;
  display: flex;
  justify-content: space-between;
}
.address .iconcoppy {
  cursor: pointer;
}

.btn-checkout {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 20px;
  background: #2ca6f7;
  color: #fff;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s ease;
}

.btn-checkout:hover {
  background: #1d8de0;
}

.countdown {
  font-size: 28px;
  font-weight: bold;
  color: #2ca6f7;
  background: #fff;
  padding: 20px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


.popupDepositN2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #3a3a3adb;
}
.popupDepositN2 .bodyN2 {
  position: relative;
  background: white;
  width: max-content;
  margin: 30px auto;
  border-radius: 16px;
  max-width: 720px;
}
.popupDepositN2 .close-button,.tlPay .close-button {
    width: 40px;
    height: 40px;
    background-color: #f7f7f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    position: absolute;
    right: 3px;
    top: 1px;
    z-index: 999;
}
.close-button span {
    font-size: 20px;
    /* color: #1c1e21; */
    color: #969697;
    font-weight: bold;
    line-height: 1;
}
.close-button:hover {
    background-color: #dcdfe3;
}

.popupDepositN2 .payment-boxN2 {
  max-width: 400px;
  margin: 30px auto;
  padding: 20px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  font-family: Arial, sans-serif;
  padding-top: 25px;
}

.popupDepositN2 .payment-box h2 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #333;
}

.popupDepositN2 .usd-input-box {
  margin-bottom: 20px;
  text-align: left;
}

.popupDepositN2 .usd-input-box label {
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
  color: #444;
}

.popupDepositN2 .input-group {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.popupDepositN2 .input-group input {
  flex: 1;
  border: none;
  padding: 10px;
  font-size: 16px;
  outline: none;
}

.popupDepositN2 .input-group .currency {
  background: #f5f5f5;
  padding: 10px 14px;
  font-weight: bold;
  color: #666;
  border-left: 1px solid #ddd;
}

.popupDepositN2 .noteN2 {
  font-size: 13px;
  color: #888;
  margin-top: 6px;
}

.popupDepositN2 .btn-next {
  display: inline-block;
  width: 100%;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background: #2ca6f7;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}

.popupDepositN2 .btn-next:hover {
  background: #1b8ed8;
}

.tlPay {
  width: 100%;
  height: 100%;
  background: #3a3a3adb;
  position: fixed;
  top: 0;
  left: 0;
  padding-top: 35px;
}
.flag-reco2 {
    background: #22a3a3;
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 6px;
    margin-left: 8px;
}

.qr-code .qrError {
  display: inline-block;
  width: 180px;
  height: 180px;
  border: 4px solid #eee;
  border-radius: 8px;
  padding-top: 60px;
  color: #898989;
}


.DepositHistory {
  padding-top: 30px;
}
.DepositHistory h2 {
  text-align: center;
  margin-bottom: 20px;
}

.DepositHistory table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.DepositHistory thead {
  background: #f1f1f1;
}

.DepositHistory th, .DepositHistory td {
  padding: 12px;
  text-align: center;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
}

.DepositHistory th {
  font-weight: bold;
}

.DepositHistory tr:hover {
  background-color: #f5f5f5;
}

.DepositHistory .btn-detail {
  padding: 6px 12px;
  background: #808e9d;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
}

.DepositHistory .btn-detail:hover {
  background: #84a3c7;
}

.DepositHistory .btn-Insufficient {
  padding: 6px 12px;
  background: #f59e0b;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  opacity: 0.8;
}

.DepositHistory .btn-Insufficient:hover {
  background: #f59e0b;
  opacity: 1;
}

/* Popup modal */
.DepositHistory .modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}

.DepositHistory .modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.DepositHistory .modal-header {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 16px;
}

.DepositHistory .modal-body p {
  margin: 8px 0;
  font-size: 14px;
}

.DepositHistory .close-btn {
  background: #dc3545;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}

.DepositHistory .Completed {
  color: #16a34a;
}
.DepositHistory .pending {
  color: #51a4d5;
}
.DepositHistory .Insufficient {
  color: #f59e0b;
}
.DepositHistory .Failed {
  color: red;
}
.DepositHistory .Cancel {
  color: #645050;
}


.PayRemaining {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}

.PayRemaining .modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);

}
.PayRemaining .close-btn {
  background: #dc3545;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}


/* Responsive */
@media (max-width: 768px) {
  .DepositHistory th, .DepositHistory td {
    padding: 8px;
    font-size: 12px;
  }

  .DepositHistory .btn-detail {
    padding: 4px 8px;
    font-size: 12px;
  }
}


.tabpoint{
  width: calc(100% - 163px);
  margin: 0px auto;
  padding-bottom: 20px;
}
.tabP .PP{
  cursor: pointer;
  box-shadow: 0 5px 12px 0 rgba(43,55,64,0.3);
  min-height: 38px;
  align-items: center;
  display: flex;
  padding: 2px 12px 2px 20px;
}
.tabP .PP:hover{
  background-color: #ad81bf;
  color: #fff;
}
.tabV{
  width: max-content;
  float: left;
  padding-left: 35px;
  min-width: 128px;
}
.PPD{
  font-weight: bold;
  line-height: 3;
}
.pp .p1{
  width: 50%;
}
.pp .p1 .txtP{
  font-weight: bold;
}
.pp .p2{
  width: 50%;
  text-align: right;
  font-weight: bold;
  margin-right: 10px;
}
.pp .p3{
  width: 10px;
}
.PPV{
  margin-top: 10px;
}
.P2P .avatarM{
  line-height: 2.5;
  margin-bottom: 10px;
}
.P2P .avatarM label{
  margin-left: 45px;
}
.PayBack {
  width: 100%;
}
.PayBack .btback {
  width: 220px;
  margin: 15px auto;
}
.PayBack .btback i {
    margin-right: 10px;
    color: #1abcd6;
}
.PayBack .btback .itxt {
    width: max-content;
    cursor: pointer;
}
@media (max-width: 430px) {
  .tabpoint {
      width: calc(100% - 70px);
  }
}
ul.page {
    float: right;
    margin-top: -20px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e4e4e4;
}
ul.page li {
    list-style: none;
    float: left;
    padding: 2px 6px 2px 6px;
    cursor: pointer;
    border-right: 1px solid #e4e4e4;
}
.activeTab, .activeTab2, ul.page li:hover {
    background: #0eade0;
    color: white;
}
li {
    list-style: none;
}
.btnCancel {
    padding: 6px 12px;
    background: #af6b90;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    margin-left: 5px;
}
.btnCancel:hover {
    background: #d571a7;
}
.MCancel .menubtn {
  position: absolute;
}
.MCancel .dropdown-menubtn {
    display: block;
    position: absolute;
    width: max-content;
    right: -30;
    margin-top: 23px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    min-width: 120px;
    /* display: none; */
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    z-index: 10;
    padding: 8px 12px;
    cursor: pointer;
    color: #4d5054;
}
.MCancel .dropdown-menubtn:hover {
    background-color: #f0f0f0;
}
#detailModal .modal-warning {
  display: none;
  padding-bottom: 10px;
  color: #af6b90;
  font-size: 14px;
}
.modal-warning-Remaining {
  padding-bottom: 10px;
  font-size: 14px;
  color: #896323;
}
.PackageCredits svg {
  transform: translateY(5px);
}
.modal-body p {
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}









@media (max-width: 888px) {
	.rightT {
		width: 100%;
	}
  .tl {
      height: 500px;
      width: 100%;
      padding-top: 80px;
      margin: 0px auto;
  }
  .rightT {
    padding-top: 75px;
  }
}
@media (max-width: 430px) {
  .tabpoint {
      width: calc(100% - 70px);
  }
}