  /* The container */
.container1 {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 25px;
  cursor: pointer;
  font-size: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.container1 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}


/* On mouse-over, add a grey background color */
.container1:hover input ~ .checkmark {
  background-color: #fff;
}

/* When the checkbox is checked, add a blue background */
.container1 input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Show the checkmark when checked */
.container1 input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container1 .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}






/* The container */
.container {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 26px;
  width: 26px;
  border: 1.3px solid black;
  background-color: #ffffff;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #fff;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
* {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
   background: repeating-linear-gradient(45deg, #D0ECE7  , #D0ECE7   20px, #f8f4eb 20px, #f8f4eb 40px);
}

/* Float four columns side by side */
.column {
  float: left;
  width: 30%;
  padding: 0 5px;
}

.column1 {
  float: left;
  width: 30%;
  padding: 0 5px;
}


/* Remove extra left and right margins, due to padding */
.row {
  margin: 0 -0px;
  width: 55%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive columns */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
}

/* Style the counter cards */
.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 5px;
  text-align: center;
  background-color: #ffffff;
}

.text123{
  padding: 5px;
  text-align: center;
  background-color: #ffffff;
  width: 100%;
  border: 1.3px solid black;
}

.button {
  text-align: center;
  cursor: pointer;
  outline: none;
  border: none;
  font-weight: bold;
  font-size: 15px; 
  width: 150px;
  border-radius: 4px;
  padding: 15px 25px;
  color: #f4511e;
  background-color: #232323;
  box-shadow: 0 5px #999;
  
}

.button:hover {
  background-color: #232323;
  font-weight: bold;
  color: #00AAFC;
}

.button:active {
  background-color: #232323;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}

.button1 {
  text-align: center;
  cursor: pointer;
  outline: none;
  border: none;
  font-weight: bold;
  font-size: 15px; 
  width: 100px;
  border-radius: 0px;
  padding: 10px 15px;
  color: #f4511e;
  background-color: #232323;
  box-shadow: 0 5px #999;
  
}

.button1:hover {
  background-color: #232323;
  font-weight: bold;
  color: #00AAFC;
}

.button1:active {
  background-color: #232323;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}

.total{
  background-color: none;
  width: 50px;
  height: 35px;
  border-radius: 5px;
}
.total1{
  background-color: none;
  width: 50px;
  height: 35px;
  border-radius: 5px;
}

.test{
  margin-left: 85px;
  margin-top: -81px;
}

.test1{
  margin-left: 181px;
  margin-top: -81px;
}

hr{
  width: 70%;
  border: 1.2px solid #232323;
  margin-bottom: 2%;
  margin-top: 2%;
}