@font-face {
  font-family: notoSansM;
  src: url("./../fonts/notosans/NotoSans-Medium.ttf");
}
@font-face {
  font-family: notoSansB;
  src: url("./../fonts/notosans/NotoSans-Bold.ttf");
}
body {
  margin: 0;
  padding: 0;
  font-family: notoSansM;
  color: #3f4254;
}

.logo img {
  height: 40px;
}

.k-btn,
.swal2-styled {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
  border: 1px solid transparent !important;
  background-color: transparent !important;
  padding: 0.44rem 1rem !important;
  border-radius: 5px !important;
  transition: 0.3s !important;
  font-size: 14px !important;
  text-decoration: none !important;
}

.k-btn-primary,
.swal2-confirm {
  background-color: #1d4ed8 !important;
  border-color: #1d4ed8 !important;
  color: #fff !important;
}
.k-btn-primary:hover,
.swal2-confirm:hover {
  background-color: #2563eb !important;
}

.k-btn-success {
  background-color: #22c55e !important;
  border-color: #22c55e !important;
  color: #fff !important;
}
.k-btn-success:hover {
  background-color: #16a34a !important;
  border-color: #16a34a !important;
}

.k-btn-danger {
  background-color: #ef4444 !important;
  border-color: #ef4444 !important;
  color: #fff !important;
}
.k-btn-danger:hover {
  background-color: #dc2626 !important;
}

.k-btn-outline-primary {
  border-color: #1d4ed8 !important;
  color: #1d4ed8 !important;
}
.k-btn-outline-primary:hover {
  background-color: #2563eb !important;
  color: #fff !important;
}

.k-btn-outline-success {
  border-color: #16a34a !important;
  color: #15803d !important;
}
.k-btn-outline-success:hover {
  background-color: #16a34a !important;
  color: #fff !important;
}

.k-btn-outline-danger {
  border-color: #dc2626 !important;
  color: #b91c1c !important;
}
.k-btn-outline-danger:hover {
  background-color: #dc2626 !important;
  color: #fff !important;
}

.k-btn-outline-white {
  border-color: #fff !important;
  color: #fff !important;
}

.k-btn-outline-default,
.swal2-cancel {
  border-color: #a1a5b7 !important;
  color: #7e8299 !important;
}
.k-btn-outline-default:hover,
.swal2-cancel:hover {
  background-color: #e1e3ea !important;
  border-color: #7e8299 !important;
  color: #3f4254 !important;
}

button.swal2-styled {
  width: 100px;
  outline: none !important;
  box-shadow: none !important;
}
button.swal2-styled.swal2-deny {
  display: none !important;
}

div:where(.swal2-container) h2:where(.swal2-title) {
  font-size: 1.3em !important;
}

div:where(.swal2-container) .swal2-html-container {
  font-size: 1em !important;
}

div:where(.swal2-icon) .swal2-icon-content {
  padding-top: 20px !important;
}

.payment-page {
  background: url("./../img/bg3-dark.jpg") no-repeat;
  background-size: cover;
  min-height: 100vh;
}

.pay-box {
  background-color: rgba(244, 244, 244, 0.4);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  height: 100%;
  border-radius: 5px;
  box-shadow: rgba(255, 255, 255, 0.2) 0px 5px 15px;
}

.p-header {
  padding: 15px 25px;
  border-bottom: 1px solid #e1e3ea;
  display: flex;
  justify-content: space-between;
}

.box {
  background-color: #fff;
  border-radius: 5px;
  padding: 15px;
  box-shadow: rgba(79, 63, 191, 0.05) 0px 8px 24px;
}

.form-input2 {
  position: relative;
}
.form-input2 label {
  padding: 0 5px;
  font-size: 14px;
}
.form-input2 input,
.form-input2 select {
  width: 100%;
  height: 40px;
  border: 1px solid #e1e3ea;
  border-radius: 5px;
  text-indent: 10px;
  font-size: 14px;
}
.form-input2 input:focus,
.form-input2 select:focus {
  border: 1px solid #93c5fd !important;
  box-shadow: none;
  outline: none;
}
.form-input2 i {
  position: absolute;
  z-index: 1;
  top: 12px;
  left: 10px;
}

.p-info {
  gap: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #5e6278;
}
.p-info strong {
  color: #3f4254;
}
@media screen and (max-width: 400px) {
  .p-info span:first-child {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
}

.coin-box {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  height: 220px;
  position: relative;
  overflow-x: auto;
  padding: 10px;
}
.coin-box::-webkit-scrollbar {
  width: 0px;
}
.coin-box input {
  display: none;
}
.coin-box input:checked + label {
  background-color: #bbf7d0;
}
.coin-box::after {
  content: "";
  width: 100%;
  height: 50px;
  background: linear-gradient(transparent, #fff);
  position: sticky;
  z-index: 1;
  bottom: -15px;
  left: 0;
}

.c-item {
  display: grid;
  grid-template-columns: 40px auto;
  align-items: center;
  width: 100%;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}
.c-item img {
  width: 25px;
}
.c-item small {
  color: #a1a5b7;
  font-size: 13px;
}
.c-item > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-item > div div {
  display: grid;
}

.p-content h6 {
  color: #fff;
}
.p-content .k-btn {
  border: 1px solid #fff !important;
}

.qr {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 30px;
}
.qr .qr-wrapper img {
  width: 150px;
}
.qr .qr-rate {
  flex-wrap: wrap;
  color: #3b82f6;
  display: flex;
  align-items: center;
  gap: 5px;
}
.qr .qr-rate div {
  color: #16a34a;
}
@media screen and (max-width: 767px) {
  .qr {
    padding: 0;
  }
}

.nav-pills {
  width: 100%;
  display: flex;
  justify-content: center;
}
.nav-pills .nav-link {
  color: #ddd;
  width: 120px;
}
.nav-pills .nav-link.active {
  background-color: #fff;
  color: #22c55e;
}

button:focus {
  box-shadow: none !important;
  outline: none;
}

.accordion {
  width: 100%;
  border: 0;
}
.accordion .accordion-item {
  border: 0 !important;
  border-top: 1px solid #e1e3ea !important;
}
.accordion .accordion-button {
  border: 0;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}
.accordion .accordion-button::after {
  background-image: none !important;
  content: "\f64d";
  font-family: bootstrap-icons !important;
  font-size: 14px;
}
.accordion .accordion-button:not(.collapsed) {
  background-color: #fff;
  box-shadow: none !important;
  color: #5e6278;
  display: none;
}
.accordion .accordion-button:not(.collapsed)::after {
  content: none;
}
.accordion p {
  font-size: 14px;
}
@media screen and (max-width: 370px) {
  .accordion p {
    width: 220px;
    word-break: break-all;
  }
}

.k-link {
  color: #2563eb;
  text-decoration: none;
}

.address {
  width: 250px;
  height: 40px;
  overflow: hidden;
  padding: 0 10px;
  border: 1px dashed #b5b5c3;
  border-radius: 5px;
  line-height: 35px;
  color: #7e8299;
  position: relative;
  font-size: 14px;
}
.address::after {
  content: "";
  width: 10px;
  height: 40px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  background-color: #fff;
}
@media screen and (max-width: 370px) {
  .address {
    width: 220px;
  }
}

.card-sec-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e1e3ea;
  padding-bottom: 10px;
}
.card-sec-header .time {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.card-sec-header .countdown {
  color: #22c55e;
}
.card-sec-header .countdown.error {
  color: #ef4444;
}

.code-container {
  display: flex;
  align-items: center;
  gap: 5px;
}
.code-container input {
  width: 24% !important;
  border: 1px solid #e1e3ea;
  height: 35px;
  text-align: center;
  border-radius: 5px;
}
.code-container input:focus {
  border-color: #93c5fd;
  box-shadow: none;
  outline: none;
}

.form-input {
  display: grid;
  gap: 5px;
  position: relative;
}
.form-input label {
  font-size: 14px;
}
.form-input input,
.form-input select {
  border: 1px solid #e1e3ea;
  border-radius: 5px;
  height: 35px;
  padding: 0 10px;
}
.form-input input:focus,
.form-input select:focus {
  border-color: #93c5fd;
  box-shadow: none;
  outline: none;
}
.form-input input::-moz-placeholder, .form-input select::-moz-placeholder {
  color: #b5b5c3;
}
.form-input input::placeholder,
.form-input select::placeholder {
  color: #b5b5c3;
}
.form-input div {
  display: flex;
  gap: 20px;
  align-items: center;
}
.form-input div input {
  width: 48%;
}
@media screen and (max-width: 400px) {
  .form-input div {
    gap: 5px;
  }
}

.send-code {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  background-color: #22c55e;
  border: 1px solid #22c55e;
  border-radius: 0 5px 5px 0;
  color: #fff;
  text-decoration: none;
  padding: 0 1rem;
  transition: 0.3s;
}
.send-code:hover {
  background-color: #16a34a;
  border-color: #16a34a;
  color: #fff;
}

.pay-summery {
  border: 1px solid #e1e3ea;
  border-radius: 5px;
  display: grid;
  gap: 10px;
}
.pay-summery p {
  margin: 0;
  color: #7e8299;
  font-size: 14px;
}
.pay-summery p span {
  color: #3f4254;
}

.rec {
  color: #3f4254 !important;
  font-size: 14px;
}

.seller-img {
  height: 50px;
}

.seller-summery {
  display: grid;
  gap: 15px;
}

.fs-12 {
  font-size: 12px !important;
}

.seller-des {
  font-size: 14px;
}

.pay-result {
  border: 1px dashed #7e8299;
  border-radius: 15px;
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
}
.pay-result h6 {
  color: #3f4254;
  font-weight: bold;
}
.pay-result p {
  color: #7e8299;
}
.pay-result.success-pay {
  border-color: #16a34a;
}
.pay-result.success-pay h6 {
  color: #22c55e;
}
.pay-result.failure-pay {
  border-color: #dc2626;
}
.pay-result.failure-pay h6 {
  color: #ef4444;
}

.s-img {
  width: 140px;
  position: absolute;
  top: -70px;
  z-index: 1;
  background-color: #fff;
}/*# sourceMappingURL=style.css.map */


.selected-value {
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    background-size: 100%;
    margin-right: 10px;
    border-radius: 50%;
}



