body{
	font-family: 'Cairo', sans-serif;
  font-size: 16px;
}
.login-logo{
	font-family: 'Berkshire Swash', cursive;
    color: #d0001f;
    font-size: 60px;
}

.label-barcode{
    padding-top: 0px !important;
    font-size: 25px !important;
}
.input-barcode{
    text-transform: uppercase;
}


/* Customize the label (the container-check) */
.container-check {
  display: inline;
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

/* Create a custom checkbox */
.checkmark {
	margin-top: 10px;
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  
}

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

/* When the checkbox is checked, add a blue background */
.container-check 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-check input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container-check .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);
}



.checkout_items{
    position: absolute;
  top: 5px;
  right: 5px;
  padding: 2px 5px;
  border-radius: 20%;
  color: white;
  font-weight: bold;
  font-size:14px;
}