/*wallet page**********/
.wallet-ballance-card {
  border-radius: 8px;
  background: var(--white-color, #fff);
  box-shadow: 0px 3px 8px -1px rgba(71, 50, 50, 0.05), 0px 0px 1px 0px rgba(12, 26, 75, 0.24);
  margin-top: 29px;
}
.wallet-ballance-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.wallet-ballance-card ul:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0.5;
  background: #BDBDBE;
  width: 1px;
  height: calc(100% - 32px);
  transform: translate(-50%, -50%);
}
.wallet-ballance-card ul li {
  text-align: center;
}
.wallet-ballance-card ul li span {
  font-size: 14px;
  font-weight: 400;
}
.wallet-ballance-card ul li h5 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 0;
}

.wallet-btn-wrap {
  gap: 15px;
  display: flex;
}

/*transaction page**********/
.transaction-wrap .header-wrap {
  border-radius: 30px 30px 0 0;
  background: #EFEDFF;
  margin-top: 24px;
  padding: 9px 0px;
}
.transaction-wrap .header-wrap .media {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.transaction-wrap .header-wrap .media h5 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}
.transaction-wrap .header-wrap .media .single-select {
  height: 32px;
  line-height: 32px;
  border-radius: 4px;
  padding: 0 40px 0 10px;
  min-width: 135px;
}
.transaction-wrap .header-wrap .media .single-select:after {
  right: 12px;
}
.transaction-wrap .header-wrap .media .single-select .list {
  width: auto;
  right: 0;
  left: auto;
}

.transaction-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.transaction-list li {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 10px 20px;
}
.transaction-list li ~ li {
  border-top: 1px solid var(--border-color, #E5E5E5);
}
.transaction-list li .icon {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: rgba(97, 75, 255, 0.1);
  font-size: 24px;
  color: #614BFF;
  text-align: center;
  padding: 0;
  border: 0;
}
.transaction-list li .details h6 {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
}
.transaction-list li .details span {
  font-size: 12px;
  font-weight: 400;
  color: var(--paragraph-color);
}
.transaction-list li .amount-details {
  margin-left: auto;
}
.transaction-list li .amount-details h6 {
  font-size: 14px;
  font-weight: 500;
  color: #614BFF;
  margin-bottom: 0;
}
.transaction-list li .amount-details span {
  font-size: 12px;
  font-weight: 400;
  color: var(--paragraph-color);
}
.transaction-list li.withdraw .icon {
  color: #FF4B00;
  background: rgba(255, 75, 0, 0.1);
}
.transaction-list li.withdraw .amount-details h6 {
  color: #FF4B00;
}

/*deposit & withdraw modal-wrap*******/
.deposit-modal-wrap {
  text-align: left;
  position: relative;
}
.deposit-modal-wrap .title {
  border-bottom: 1px solid var(--border-color, #E5E5E5);
  padding-bottom: 12px;
  margin-bottom: 20px;
}
.deposit-modal-wrap .btn-close {
  position: absolute;
  right: 16px;
  top: 28px;
  font-size: 12px;
  box-shadow: none;
  outline: none;
}
.deposit-modal-wrap ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.deposit-modal-wrap ul li {
  display: flex;
}
.deposit-modal-wrap ul li span {
  margin-left: auto;
  margin-right: 30px;
}
.deposit-modal-wrap ul li span ~ span {
  margin-right: 0;
  margin-left: 0;
  min-width: 100px;
}

/*deposit-page*******/
.payment-method-wrap {
  margin-top: 25px;
}
.payment-method-wrap .title-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.payment-method-wrap .title-wrap h6 {
  font-size: 16px;
  font-weight: 600;
}
.payment-method-wrap .title-wrap a {
  font-size: 14px;
}

.payment-method-card {
  border-radius: 16px;
  background: var(--white-color, #fff);
  box-shadow: 0px 3px 8px -1px rgba(71, 50, 50, 0.05), 0px 0px 1px 0px rgba(12, 26, 75, 0.24);
  padding: 16px;
  margin-top: 24px;
  margin-bottom: 16px;
}
.payment-method-card h6 {
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--border-color, #E5E5E5);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.payment-method-card .payment-method-select {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.payment-method-card .payment-method-select .form-check {
  position: relative;
  display: inline-block;
  padding: 0;
  margin: 0;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: 0.4s;
}
.payment-method-card .payment-method-select .form-check:has(.form-check-input:checked) {
  border-color: #614BFF;
}
.payment-method-card .payment-method-select .form-check .form-check-input {
  position: absolute;
  right: 4px;
  top: 4px;
  width: 12px;
  height: 12px;
  opacity: 0;
  transition: 0.4s;
}
.payment-method-card .payment-method-select .form-check .form-check-input:after {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: -1px;
  font-family: "Font Awesome 5 free";
  font-weight: 900;
  color: var(--white-color, #fff);
  font-size: 8px;
  text-align: center;
  width: 100%;
}
.payment-method-card .payment-method-select .form-check .form-check-input:checked {
  background: #614BFF;
  opacity: 1;
}
.payment-method-card .payment-method-select .form-check .form-check-label {
  width: 100%;
}
.payment-method-card .payment-method-select .form-check .form-check-label img {
  width: 100%;
  border-radius: 6px;
}

.amount-wrap {
  border-radius: 16px;
  background: var(--white-color, #fff);
  box-shadow: 0px 3px 8px -1px rgba(71, 50, 50, 0.05), 0px 0px 1px 0px rgba(12, 26, 75, 0.24);
  padding: 16px 16px 20px;
  margin-bottom: 26px;
}
.amount-wrap .title-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  align-items: center;
  border-bottom: 1px solid var(--border-color, #E5E5E5);
  padding-bottom: 10px;
}
.amount-wrap .title-wrap h6 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}
.amount-wrap .title-wrap span {
  font-size: 12px;
  font-weight: 400;
}
.amount-wrap .single-input-wrap {
  border-radius: 8px;
  height: 50px;
  line-height: 50px;
  border: 0;
  margin-bottom: 0;
}
.amount-wrap .single-input-wrap input {
  padding: 0 16px;
  background: #F7F7F7;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color, #101010);
}


/*my-bet-page*******/
.mybet-page-wrap {
    margin-top: 29px;
}

    .mybet-page-wrap .nav-tabs {
        border: 0;
        background: var(--white-color, #fff);
        border-radius: 30px 30px 0 0;
        overflow: hidden;
        border-bottom: 1px solid var(--border-color, #E5E5E5);
    }

        .mybet-page-wrap .nav-tabs .nav-item {
            width: 25%;
        }

            .mybet-page-wrap .nav-tabs .nav-item ~ .nav-item {
                border-left: 1px solid var(--border-color, #E5E5E5);
            }

            .mybet-page-wrap .nav-tabs .nav-item .nav-link {
                width: 100%;
                border: 0;
                background: transparent;
                padding: 11px 10px;
                font-size: 14px;
                font-weight: 500;
            }

                .mybet-page-wrap .nav-tabs .nav-item .nav-link.active {
                    background: #614BFF;
                    color: var(--white-color, #fff);
                    border: 0;
                }

.mybet-single-card {
    border-radius: 8px;
    /*background: var(--white-color, #fff);*/
    background: #F5F2FC;
    box-shadow: 0px 3px 8px -1px rgba(71, 50, 50, 0.05), 0px 0px 1px 0px rgba(12, 26, 75, 0.24);
    margin-top: 16px;
    padding: 16px 16px 22px;
}

    .mybet-single-card .card-title {
        display: flex;
        justify-content: space-between;
        margin-bottom: 3px;
    }

        .mybet-single-card .card-title h6 {
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 0;
        }
        .mybet-single-card .card-title h7 {
            font-size: 16px;
            font-weight: 500;
            color: #3A03B8;
            margin-bottom: 0;
        }
        .mybet-single-card .card-title span {
            font-size: 12px;
            font-weight: 400;
        }

    .mybet-single-card .bet-details {
        list-style: none;
        margin: 0;
        padding: 0;
        /*border-bottom: 1px solid rgba(89, 89, 89, 0.3);*/
        border-bottom: 1px solid rgba(58, 3, 184, 0.3);
        padding-bottom: 12px;
        margin-bottom: 12px;
    }

        .mybet-single-card .bet-details li {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            font-weight: 400;
        }

    .mybet-single-card .bet-status {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .mybet-single-card .bet-status li {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            font-weight: 400;
        }

            .mybet-single-card .bet-status li.price {
                color: var(--heading-color, #101010);
            }

                .mybet-single-card .bet-status li.price .status-pending {
                    font-weight: 500;
                    color: #614BFF;
                }

                .mybet-single-card .bet-status li.price .status-win {
                    font-weight: 500;
                    color: #19BC83;
                }

                .mybet-single-card .bet-status li.price .status-lose {
                    font-weight: 500;
                    color: #FF4B00;
                }


.mybet-single-card-white {
    border-radius: 8px;
    background: var(--white-color, #fff);
    /* background: #F5F2FC; */
    box-shadow: 0px 3px 8px -1px rgba(71, 50, 50, 0.05), 0px 0px 1px 0px rgba(12, 26, 75, 0.24);
    margin-top: 8px;
    padding: 16px 16px 22px;
}

    .mybet-single-card-white .card-title {
        display: flex;
        justify-content: space-between;
        margin-bottom: 3px;
    }

        .mybet-single-card-white .card-title h6 {
            font-size: 12px;
            font-weight: 500;
            margin-bottom: 0;
        }
        .mybet-single-card-white .card-title h7 {
            font-size: 12px;
            font-weight: 500;
            color: #3A03B8;
            margin-bottom: 0;
        }
        .mybet-single-card-white .card-title span {
            font-size: 12px;
            font-weight: 400;
        }

    .mybet-single-card-white .bet-details {
        list-style: none;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid rgba(89, 89, 89, 0.3);
        /*border-bottom: 1px solid rgba(58, 3, 184, 0.3);*/
        padding-bottom: 12px;
        margin-bottom: 10px;
    }

        .mybet-single-card-white .bet-details li {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            font-weight: 400;
        }

    .mybet-single-card-white .bet-status {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .mybet-single-card-white .bet-status li {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            font-weight: 400;
        }

        .mybet-single-card-white .bet-status h6 {
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 0;
        }

            .mybet-single-card-white .bet-status li.price {
                color: var(--heading-color, #101010);
            }

                .mybet-single-card-white .bet-status li.price .status-pending {
                    font-weight: 500;
                    color: #614BFF;
                }

                .mybet-single-card-white .bet-status li.price .status-win {
                    font-weight: 500;
                    color: #19BC83;
                }

                .mybet-single-card-white .bet-status li.price .status-lose {
                    font-weight: 500;
                    color: #FF4B00;
                }

    .container-status {
      display: flex;
      justify-content: space-between; /* Align items with space between */
      align-items: center; /* Center items vertically */
    }
    .container-status span {
      padding: 10px;
      border: 0px solid #ccc;
      flex: 1; /* Each span takes equal width */
    }
    .container-status button {
      width: 100%; /* Make the button fill the span */
    }