/* your styles go here */
.card_login {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: rgba(255,255,255,0.3);
    background-clip: border-box;
    border: 0 solid rgba(0, 0, 0, 0.125);
    border-radius: 18px;
  }
  
  .card_login > hr {
    margin-right: 0;
    margin-left: 0;
  }

  /* your styles go here */
.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 80px;
  right: 10px;
  background-color: #007bff;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
}

.bg-halal {
  background-color: #009688;
}

.text-halal {
  color: #009688;
}

.bg-lime {
  background-color: #cddc39;
}

.bg-orange {
  background-color: #ff9500;
}

.bg-lightblue {
  background-color: #5ac8fa;
}


.chip-on {
  display: inline-block;
  padding: 0 25px;
  height: 50px;
  font-size: 16px;
  line-height: 50px;
  border-radius: 25px;
  background-color: #007bff;
  color: white;
}

.chip-off {
  display: inline-block;
  padding: 0 25px;
  height: 50px;
  font-size: 16px;
  line-height: 50px;
  border-radius: 25px;
  background-color: #dc3545;
  color: white;
}

.chip-btn {
  display: inline-block;
  padding: 0 25px;
  height: 50px;
  font-size: 16px;
  line-height: 50px;
  border-radius: 25px;
  background-color: #ffc107;
  color: black;
}

.chip.over {
  border: 3px dotted #666;
}

.card-image {
  height: 150px;
  object-fit: cover;
}

.prod-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.image-parent {
  max-width: 60px;
}

.tt-suggestion {
  padding: 3px 20px;
  font-size: 18px;
  line-height: 24px;
  color: white;
  background-color: black;
}

#myBtn {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Fixed/sticky position */
  bottom: 20px;
  /* Place the button at the bottom of the page */
  right: 30px;
  /* Place the button 30px from the right */
  z-index: 99;
  /* Make sure it does not overlap */
  border: none;
  /* Remove borders */
  outline: none;
  /* Remove outline */
  background-color: red;
  /* Set a background color */
  color: white;
  /* Text color */
  cursor: pointer;
  /* Add a mouse pointer on hover */
  padding: 15px;
  /* Some padding */
  border-radius: 10px;
  /* Rounded corners */
  font-size: 18px;
  /* Increase font size */
}

#myBtn:hover {
  background-color: #555;
  /* Add a dark-grey background on hover */
}

#loader {
  position: fixed;
  width: 100%;
  height:100%;
  display: flex;
  align-items: center;
  background-color: rgba(0,0,0,0.3);
  top: 0;
  z-index: 99999;
}

.plus {
  display: flex;
  margin: 0 auto;
  color: #fff;
}