.invoice-bg{
  width: 100%;
  height: 300px;
  /*padding: 20px;
  background: #fff;*/
  /*box-shadow: 0 2px 4px rgba(0,0,0,0.5);*/
}

.invoice-head{
  width: 100%;
  height: 60px;
  background: #1F282F;
  display: flex;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  /*gap: 20px;*/
  justify-content: space-between;
}
.invoice-head input{
  border: 2px solid #ddd;
  height: 40px;
  border-radius: 5px;
  width: 200px;
  background: #fff;
  outline: none;
  text-align: center;
}
.invoice-head button{
  outline: none;
  padding: 8px;
  border: 2px solid #ddd;
  border-radius: 5px;
  background: #1F282F;
  color: #fff;
  transition: ease-in 0.5s;
}
.invoice-head button:hover{
  background: #2C393F;
  /*color:#1F282F;
  border: 2px solid #1F282F;*/
}
.invoice-head select{
  height: 40px;
  border:2px solid #ddd;
  border-radius: 5px;
  padding-left: 5px;
  padding-right: 5px;
}

/*.bottom-details select{
  height: 40px;
  border:2px solid #ddd;
  border-radius: 5px;
  padding-left: 5px;
  padding-right: 5px;
}*/
.prod-bg{
  width: 100%;
}


.dropdown-container {
  width: 100%;
  font-family: sans-serif;
}

.search-box {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 5px 5px 0 0;
  outline: none;
}

.options {
  border: 1px solid #ccc;
  border-top: none;
  /*max-height: 200px;*/
  height: 73vh;
  padding-bottom: 20px;
  overflow-y: auto;
  background: #fff;
  transition: height 0.5s;
}
.options h5{
  padding: 10px;
  font-family: sans-serif;
  font-size: 16px;
  padding-top: 15px;
  background-color: #f0f0f0;
}

.option-item {
  padding: 10px;
  cursor: pointer;
}

.option-item:hover {
  background-color: #f0f0f0;
}
.option-item{
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.selected-display {
  margin-top: 10px;
  font-weight: bold;
  color: green;
}

/*side2*/
.mg-l{
  margin-left: -23px;
}
.head-side2{
  position: relative;
  width: 100%;
  height: 60px;
  background: #1F282F;
  display: flex;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  justify-content: space-between;
  /*gap: 20px;*/
}
.head-side2 span{
  font-size: 18px;
  color: #fff;
}

.right-mod{
  padding-right: 20px;
  position: relative;
}

.right-mod label{
  background: red;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  font-size: 11px;
  position: absolute;
  top: -5px;
  right: 12px;
  
}

.body-side2{
  position: relative;
  width: 100%;
  height: 80vh;
  padding: 10px;
  /*background: #fff;*/
}
.body-side2 .table-bg{
  height: 350px;
  overflow-y: auto;
}
.action-btn button{
  font-size: 9px;
  margin: 5px;
}
.bottom-details{
  position: absolute;
  bottom: 1px;
  width: 100%;
  height: 100px;
  border-top: 2px solid #ddd;
  padding: 10px;
}
.print-in{
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap:20px;
}
.total-amount{
  margin-top: 5px;
  width: 100%;
  background: #1F282F;
  padding: 10px;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.total-amount i{
  font-size: 18px;
}
.total-amount span{
  font-size: 18px;
}

.printer-btn{
  margin-top: 5px;
  width: 150px;
  background: transparent;
  outline: none;
  border:2px solid #1F282F;
  color: #1F282F;
  text-align: center;
  font-size: 25px;
  padding: 5px;
  border-radius: 5px;
}
.printer-btn:hover{
  background: #1F282F;
  /*border:2px solid #fff;*/
  color: #fff;
}
.record{
  text-align: center;
}
.record h2{
  text-align: center;
  margin-top: 30px;
  color: #888;
}
.record i{
  text-align: center;
  font-size: 80px;
  color: #d5d5d5;
  margin-top: 40px;
}

#show{
  width: 100%;
}
#showNot{
  display: none;
}


.modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);

}

.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 500px;
    animation: fadeIn 0.3s;
}

.modal-header, .modal-footer {
    font-weight: bold;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.quant-box{
    width: 50%;
    height: 55px;
    /*border-bottom: 2px solid #ddd;*/
    border:2px solid #ddd;
    padding: 15px;
    border-radius: 10px;
}
.quant-box input{
    width: 100%;
    border:none;
    outline: none;
    font-size: 16px;
    color: 888;
    text-align: center;
}
@media(min-width: 992px){
  .insider{
    margin-top: -45px;
    margin-left: -25px;
  }
  
}
@media(max-width: 992px){
  .mg-l{
    margin-left: 0;
  }
  .options{
    height: auto;
    max-height: 200px;
    overflow-y: auto;
    padding-bottom: 50px;
  }
}