/**
 * Tam Coin Checkout Styles
 */
.tamcoin-toggle-container {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-top:20px;
    margin-bottom: 20px;
}

.tamcoin-toggle-container h4 {
    margin-top: 0;
    color: #343a40;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 10px;
}

.tamcoin-balance-info {
    color: #222;
    margin-bottom: 15px;
}
.tamcoin-max-usage-info{
    color:#FF4748;
    font-size: 13px;
    font-weight: 600;
}
.tamcoin-toggle {
    margin-bottom: 10px;
}

.tamcoin-toggle label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom:15px !important;
}

.tamcoin-toggle input[type="checkbox"] {
    margin-right: 10px;
}

.tamcoin-discount-info {
    display: inline-block;
    padding: 3px 15px;
    background: #f0fff9;
    border-radius: 8px;
    border: 1px solid #00ab66;
    color: #00ab66;
    font-weight: 400;
    margin-bottom: 30px;
    font-size: 14px;
}
.tamcoin-discount-info p{
    color: #00ab66;
}
/* Toggle Switch Style */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  margin-left: 10px;
  vertical-align: middle;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

.switch input:checked + .slider {
  background-color: #FF4748;
}

.switch input:checked + .slider:before {
  transform: translateX(24px);
}
