.form-control {
  width: 100%;
  height: 50px;
  font-size: 14px;
  color: white;
  border: none;
  /* border: 2px solid gray; */
  border-radius: 10px;
  box-shadow: none;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.15);
}
.form-control:focus {
  border : 1px solid #2b2a2a;
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

select {
  color: rgb(189, 171, 171) !important;
}
select:hover {
  background: rgba(255, 255, 255, 0.15);
}
select:focus {
  background-color: #887f7f;
}


option {
  /*optional rendered */
  background-color: #585151;
  color: rgb(150, 133, 133);
}

#create__user .card {
  margin-top: 2%;
  padding: 2%;
  background-color: #1D2826;
  color: #fff;
  border-radius: 2%;
  border-radius: 20px;
  height: 100%;
}

#create__user .card h2{
  color: #fff;
  line-height: 1rem;
}

.msg-error{
  color: red;
  padding-top: -2px;
}

.flex-input {
  display: flex;
  /* justify-content: space-between; */
}
.flex-input fieldset {
  display: flex;
  justify-content: space-between;
}

.flex-input .select-group{
  margin-right: 1%;
}


fieldset #Lottery_options {
  display: flex;
}

@media (max-width: 1200px) {
  .flex-input {
    display: flex;
    flex-direction: column;
  }
  .flex-input fieldset {
    display: flex;
    flex-direction: column;

  }

  .flex-input .select-group{
    margin-bottom: 5%;
  }
}

#table {
  display: none;
}

/* search Bar */

.config__card_header{
  display: flex;
  justify-content: space-around;
  padding-bottom: 2%;
}

.config__card_header form input{
 border-radius: 8px;
 height: 35px;
}

.config__card_header a{
  border-radius: 8px;
  height: 30px;
 }

 .smartbtn-default {
  background: rgba(4, 170, 4, 0.8);

  width: 118px;
  height: 40px;
  border-radius: 12px;
 }


 /* transactions */

 .transactions_card {
   background-color: var(--page-header-bgColor);
   border-radius: 10px;
   padding: 30px 0 0 0;
  }

  .transactions_card .form-check{
    margin-top: 8px;
    margin-left: 12px ;
    color: #fff;
  }

  .transactions_card .input-group button {
    height: 38px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff
  }

  .transactions_card .transactions_report_btn {
    padding-left: 8px;
  }

  .transactions_card .transactions_report_btn button{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
  }

  .transactions_card .transactions_report_btn .clean_transactions_filter {
      width: 78px;
      height: 32px;
      background: rgba(255, 255, 255, 0.5);
      border-radius: 4px;
  }

  .transactions_card .transactions_report_btn .add_transactions_filter {
    width: 78px;
    height: 32px;

    background: #605CFF;
    border-radius: 4px;
  }

  .input-group>.custom-select:not(:first-child), .input-group>.form-control:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background: #515f5d!important;
    border: none;
}

.search_report_filter input{
  height: 40px;
}

.add_report_filter {
  width: 78px;
  height: 32px;

  background: #605CFF;
  border-radius: 4px;

  display: flex;
  justify-content: center;
  align-items: center;

  margin-top: 34px;
  margin-left: 40px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}