/* body {
    padding-left: 200px;
} */
* {
  padding: 0;
  margin: 0;
  list-style-type: none;
  box-sizing: border-box;
}

.container_settlement_create_entry_parent {
  position: fixed;
  top:0;
  left: 0;
  right: 0;
  bottom: 10%;
  background: #00000069;
  overflow-y: auto;
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.container_settlement_create_entry{
  margin-top: 15%;
}

.settlement_create_entry_close_btn{
  width: 2rem;
  background-color: #101010;
  height: 2rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.settlement_create_entry_close_btn i{
  font-size: 1.5rem;
  color: #fff;
}

.container_settlement_create_entry,
.container_merchant_create_entry {
  /* width: 1017px; */
  /* min-width: 50%; */
  /* max-width: 100%; */
  /* height:  100%; */
  /* min-height: fit-content; */
  /* max-height: fit-content; */
  min-width: 70%;
  padding: 25px 20px;
  margin: auto;
  background: #FFF;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0px 4px 10px 0px rgba(96, 96, 96, 0.20);
}

.settlement_create_entry_row {
  padding-top: 10px;
  width: 100%;
}

.settlement_create_entry_input input {
  width: 100% !important;
  /* padding-right: 10px !important; */
  /* max-width: 89%; */
  height: 50px;
  border: none;
  box-shadow: 0px 4px 10px 0px rgba(96, 96, 96, 0.20);
  border-radius: 10px;
  padding-left: 20px;

}

.settlement_form_selectdiv,
.merchant_form_selectdiv {
  position: relative;
  /*Don't really need this just for demo styling*/
  /* min-width:100%; */
}

.settlement_form_selectdiv:after {
  content: '\f078';
  font: normal normal normal 17px/1 FontAwesome;
  color: #00ff00;
  position: absolute;
  top: 65%;
  right: 2%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 34px;
  position: absolute;
  pointer-events: none;

}

/* IE11 hide native button (thanks Matt!) */
select::-ms-expand {
  display: none;
}

.settlement_form_selectdiv select,
.merchant_form_selectdiv_inner select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Add some styling */
  display: block;
  width: 100%;
  height: 50px;
  padding: 0px 20px;
  padding-right: 20px;
  font-size: 14px;
  line-height: 1.75;
  color: #A8A8A8;
  background-color: transparent;
  background-image: none;
  border: none;
  -ms-word-break: normal;
  word-break: normal;
  box-shadow: 0px 4px 10px 0px rgba(96, 96, 96, 0.20);
  border-radius: 10px;
  /* margin-top: 10px; */

}

.settlement_form_selectdiv label {
  padding-top: 0px;
  text-align: start;
  display: inline-block;
  margin-bottom: 10px;
}

.settlement_create_entry_label label {
  padding-left: 0px !important;
}

.settlement_form_section {
  flex: 100%;
  /* padding: 10px 20px 10px 40px; */
  margin-bottom: 30px;
}

/* .settlement_create_entry_input{
    width: 97% !important;

} */
/* .settlement_form_selectdiv{
  margin-bottom:25px;
} */
@media screen and (max-width: 768px) {
  .settlement_form_input input {
    padding-right: 0px;
  }

}