
/** Mpesa payment section**/
.division { 
	width: 100%;float: left; padding: 0; }
.division h3 { font-size: 25px; color: #0f4c81; margin-bottom: 18px; width: 100%; max-width: 100%; font-family: 'Monda', sans-serif; padding-bottom: 8px; border-bottom: 2px solid #009933;}
.payment-det {
  display: flex;
  justify-content: center;  
  width: 100%;
  max-width: 100%;
  margin: 18px auto;
  font-family: 'Monda', sans-serif;
  position: relative;
  padding: 0 15px;
  box-sizing: border-box;
  overflow: visible;
  gap: 20px; /* space between panels */	    
}
.details-pay {
  border: 1px solid #ddd;
  flex: 1 1 48%;
  padding: 15px 20px;
  min-width: 48%;
  max-width: 720px;
  margin: 18px auto;
  border: 1px solid #ddd;
  background: transparent;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
  box-sizing: border-box;
  overflow: visible;
  position: relative;
  z-index: auto;
}
.shop-pay {
  flex: 1 1 50%;
  margin: 18px auto;
  text-align: left;
  border: none;
  background: transparent;
  box-sizing: border-box;
  overflow: visible;
  position: relative;
  z-index: auto;      	    
}
.shop-pay p { font-size: 14px;}	
.details-pay table {
  width: 100%;
  font-size: 14px;
  border-collapse: collapse;
  margin-top: 10px;
} 
.shop-pay input[type="text"] {
    display: block;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    width: 100%;
    padding: 10px 12px;
    margin: 12px 0 12px 0;
    box-sizing: border-box;
}
.shop-pay .btn {
  background-color: #007BFF;
  color: #fff;
  padding: 8px 15px;
  cursor: pointer;
  width: 100%;
  margin-top: 20px;
  font-weight: bold;
  text-transform: capitalize;
  font-family: 'Monda', sans-serif;
  font-size: 0.925em;
  border-radius: 4px;
  transition: background-color 0.3s ease;        
}
.shop-pay .btn:hover { background: #0056b3; }    
.details-pay h3 {
    font-size: 1.125em;
    margin-top: 0;
    color: #103d5f;
    margin-bottom: 18px;
    padding-bottom: 8px;
    border-bottom: 2px solid #009933;
}    
.tbldetails table td { 
    background: #fdf0f1 none repeat scroll 0 0; 
    color: #333; 
    font-size: 0.8125em; 
    padding: 3px 6px; 
    text-align: left;
}
.tbldetails tr { 
    text-align: left;
    padding: 6px 10px;
}	

@media (max-width: 540px) {
  .payment-det {
    flex-direction: column;
    padding: 0 10px;
    gap: 15px;
  }
  .details-pay {
    flex: none;
    width: 100%;
    max-width: 100%;
    min-width: auto;
    margin: 10px 0;
  }
    .details-pay input[type="text"] {
        flex: 1 1 92%;
        box-sizing: border-box;
    }  
  .shop-pay {
    flex: none;
    width: 100%;
    max-width: 100%;
    margin: 10px 0;
    float: none;
  }
}






