/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 #paymentFrm {
    width: 480px;
    margin: 20px 0;
  }
  
  #paymentFrm label {
    position: relative;
    color: #6A7C94;
    font-weight: 400;
    height: 48px;
    line-height: 48px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: row;
  }
  
  #paymentFrm label > span {
    width: 115px;
  }
  
  #paymentFrm .field {
    width: 100%;
    background: white;
    box-sizing: border-box;
    font-weight: 400;
    border: 1px solid #CFD7DF;
    border-radius: 5px;
    color: #32315E;
    outline: none;
    flex: 1;
    height: 48px;
    line-height: 48px;
    padding: 0 20px;
    cursor: text;
    margin:10px 0;
  }
  
  #paymentFrm .field::-webkit-input-placeholder { color: #CFD7DF; }
  #paymentFrm .field::-moz-placeholder { color: #CFD7DF; }
  
  #paymentFrm .field:focus,
  #paymentFrm .field.StripeElement--focus {
    border-color: #F99A52;
  }
  
  #paymentFrm button {
    float: left;
    display: block;
    /* background-image: linear-gradient(-180deg, #F8B563 0%, #F99A52 100%); */
    /* box-shadow: 0 1px 2px 0 rgba(0,0,0,0.10), inset 0 -1px 0 0 #E57C45; */
    background-color: rgb(221, 10, 10);
    color: white;
    border-radius: 5px;
    border: 0;
    margin-top: 20px;
    font-size: 17px;
    font-weight: 500;
    width: 100%;
    height: 48px;
    line-height: 48px;
    outline: none;
  }
  
  #paymentFrm button:focus {
    background-color: rgb(221, 10, 10);
  }
  
  #paymentFrm button:active {
    background-color: rgb(221, 10, 10);
  }
  
  #paymentFrm .outcome {
    float: left;
    width: 100%;
    padding-top: 8px;
    min-height: 20px;
    text-align: center;
  }
  
  #paymentFrm .success, .error {
    display: none;
    font-size: 15px;
  }
  
  #paymentFrm .success.visible, .error.visible {
    display: inline;
  }
  
  #paymentFrm .error {
    color: #E4584C;
  }
  
  #paymentFrm .success {
    color: green;
    font-size: 20px;
  }
  
  #paymentFrm .success .token {
    font-weight: 500;
    font-size: 20px;
  }
  #paymentFrm .fa {
    margin-left: -12px;
    margin-right: 8px;
  }
  
  
  #paymentFrm .radio-buttons {
    display: flex;
    flex-wrap: wrap;
    column-gap: 5px;
    margin-top: 12px;
    justify-content: space-between;
    width: 100%;
  }
  
  #paymentFrm .radio-buttons input[type="radio"] {
    display: none;
  }
  
  #paymentFrm .radio-buttons label {
    display: inline-block;
    padding: 0px 0px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    color: #000;
    font-size: 17px;
    width: 31.33%;
    text-align: center;
  
  }
  
  #paymentFrm .radio-buttons input[type="radio"]:checked + label {
    /* background-color: #F99A52; */
    border: 2px solid #000;
  }
  #paymentFrm .time_container input {
      display: none !important;
  }
  
  #paymentFrm .time_container label {
      display: inline-block;
      /* padding: 0px 20px; */
      background-color: #fff;
      border: 1px solid #ccc;
      border-radius: 5px;
      cursor: pointer;
      width: 31.33%;
      text-align: center;
  }
  
  #paymentFrm .time_container label.active {
    border: 2px solid #000;
  }
  form#paymentFrm {
      padding: 15px;
      border: 1px solid #ccc;
      border-radius: 5px;
  }
  .time_container {
      flex-wrap: wrap;
      justify-content: space-between;
      display:flex; 
      gap: 5px;
      margin-top: 12px;
  }
  .field_title {
      font-size: 14px;
      font-weight: 600;
  }
  button.payment.field_title:hover {
      background-color: rgb(244, 12, 12);
      cursor: pointer;
      transition: 0.6s all;
  }
  
  #root .ElementsApp .Icon-fill{
    fill: #000 !important;
  }

  /* If you like this, be sure to ❤️ it. */


.wrapper a {
  display: inline-block;
  text-decoration: none;
  padding: 15px;
  background-color: #fff;
  border-radius: 3px;
  color: #585858;
  font-family: 'Roboto', sans-serif;
}

.modal {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(77, 77, 77, .7);
  transition: all .4s;
}

.modal:target {
  visibility: visible;
  opacity: 1;
}

.modal__content {
  border-radius: 4px;
  position: relative;
  width: 500px;
  max-width: 90%;
  background: #fff;
  padding: 1em 2em;
}

.modal__footer {
  text-align: right;
  a {
    color: #585858;
  }
  i {
    color: #d02d2c;
  }
}
.modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #585858;
  text-decoration: none;
}

input#stripe-amount {
  width: 100%;
  background: white;
  box-sizing: border-box;
  font-weight: 400;
  border: 1px solid #CFD7DF;
  border-radius: 5px;
  color: #32315E;
  outline: none;
  flex: 1;
  height: 48px;
  line-height: 48px;
  padding: 0 20px;
  cursor: text;
  margin: 10px 0;
}

p.custom-amounts {
  text-align: center;
  font-size: 14px;
  color: blue;
}

.ace-wallet-pagination ul.page-numbers {
  display: flex;
  justify-content: end;
}

.ace-wallet-pagination ul.page-numbers li {
  /* padding:12px; */
  padding: 8px 15px;
  list-style-type: none;
  border: 1px solid #1b1b1c87;
}
ul.tabs-nav {
  padding: 0px !important;
}
.tabs-nav li {
  float: left;
  width: 50%;
  list-style: none;
}
.tabs-nav li:first-child a {
  border-right: 0;
  border-top-left-radius: 6px;
}
.tabs-nav li:last-child a {
  border-top-right-radius: 6px;
}
.tabs-nav a {
  background: #eaeaed;
  border: 1px solid #cecfd5;
  color: #0087cc;
  display: block;
  font-weight: 600;
  padding: 10px 0;
  text-align: center;
  text-decoration: none;
}
.tabs-nav a:hover {
  color: #ff7b29;
}
.tab-active a {
  background: #fff;
  border-bottom-color: transparent;
  color: #2db34a;
  cursor: default;
}
.tabs-stage {
  border: 1px solid #cecfd5;
  border-radius: 0 0 6px 6px;
  border-top: 0;
  clear: both;
  padding: 24px 30px;
  position: relative;
  top: -1px;
}

.tabs-stage td, th {
  border: 1px solid #dddddd;
  padding: 8px;
  border-collapse: collapse;
}

.tabs-stage tr:nth-child(even) {
background-color: #dddddd8f;
}

.tabs-stage tbody tr.refund {
  color: #048f04;
  font-weight: 400;
}
tr.refund td a {
  color: #0404f7;
}
.tabs-stage tbody tr.debit {
  color: #cd0202;
  font-weight: 400;
}
tr.debit td a {
  color: #0404f7;
}
td.status {
  text-transform: capitalize;
}

span.page-numbers.current {
  color: hsla(11, 80%, 45%, 1);
  font-weight: 500;
}

.tabs-stage tbody th {
  font-weight: 600;
}