body {
	margin: 0;
	font-family: 'Poppins', sans-serif;
 	background: #fffefe;
}
.container{
	border-radius: 5px;
	border: 1px solid #eaeaea;
}
.box-container{
    margin: auto;
}
.box-row{
    margin: 0 auto;
    width: 100%;
}
.box-row:not(:last-child){
    border-bottom: 1px solid #eaeaea;
}
.reset-btn{
    border: 1px solid black;
    width: 7rem;
    border-radius: 2px;
    font-size: 12px;
    background: black;
    color: white;
    height: 1.9rem;
    font-weight: bold;
    cursor: pointer;
}
.reset-btn:hover{
    opacity: .7;
    transition: 0.2s ease-in-out;
}
.box-col.text-center.number{
	width: 15%;
    padding: 5px;
}
.box-col input[type='number']{
	width: 80%;
	padding: 5px;
	transition: 0.2s ease-in-out;
	border: 2px solid #efefef;
    border-radius: 3px;
}
.box-col input[type='number']:focus {
	outline: 0;
	box-shadow: none;
	border: 2px solid black;
}
.box-col p {
	font-size: 14px;
}
@media only screen and (max-width: 600px) {
    .container.d-flex.flex-column.mt-1.m-auto.w-60 {
        width: 90% !important;
    }
 
 	.box-col.text-center.number{
 		/*width: 45% !important;*/
 		width: 34% !important;
 	}  
 	span{
 	    font-size :13px !important;
 	}

 	.box-col p {
        font-size: 10px;
    }
 	button.reset-btn.mt-4.mr-4{
 		margin-right: 3.5rem !important;
 	}
}