input, textarea
{
  background-color: #f7f9fa;
}
.divLoading
{
  height:   100%;
  width:    100%;
  position: fixed; /* Stay in place */
  z-index:  1051; /* Sit on top */
  left:     0;
  top:      0;
  background-color: rgb(0,0,0); /* Black fallback color */
  background-color: rgba(0,0,0, 0.7); /* Black w/opacity */
  overflow-x:       hidden; /* Disable horizontal scroll */
  transition:       0.5s;

  flex-direction: column;
  justify-content: center;
  display: flex;
}
#imgLoading
{
  width: 80px;
  height: 80px;
  margin: 0 auto;
  /*background-color: white;*/
  border-radius: 39px;
}

#textLoading
{
  color: white;
  display: none;
  font-size: 12pt;
  font-weight: bolder;
  text-align: center;
}

.alert
{
  margin: 0 auto;
  width: 70%;
}

.modal-images
{
  max-width:150px;
  margin:0 auto;
  padding-bottom:5px;
}

.accordion-no-padding
{
  padding:0px;
}

#expand-image
{
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#expand-image:hover {opacity: 0.7;}

.expand-image-modal
{
  display: none;
  position: fixed;
  z-index: 1000000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.9);
}

.expand-image-modal-content
{
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

.expand-image-modal-content
{
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom
{
  from {-webkit-transform:scale(0)}
  to {-webkit-transform:scale(1)}
}

@keyframes zoom
{
  from {transform:scale(0)}
  to {transform:scale(1)}
}

.close-image-modal
{
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close-image-modal:hover,
.close-image-modal:focus
{
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.indexThumbnail
{
  max-width:60px;
  max-height: 40px;
  margin: 0 auto;
  text-align: center;
}

.img-btn-home-menu-thumbnail
{
  margin:      5px;
  min-width:   70px;
  min-height:  70px;
  max-width:   70px;
  max-height:  70px;
  background-color: #eee;
  border: 1px solid #000;
  padding: 5px;
  border-radius: 5px;
}

.reportBtn
{
  height: 40px;
  width: 40px;
}

.navbar-brand {
  display: inline-flex;
  padding-top: .32rem;
  padding-bottom: .32rem;
  margin-right: 1rem;
  font-size: 1.125rem;
  line-height: inherit;
  white-space: nowrap
}

.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
-webkit-transition: .4s;
transition: .4s;
}

.spanStoreStatus
{
display: inline;
text-align: left;
font-weight: bolder;
font-size: 12px;
margin: 0;
margin-left: 10px;
vertical-align: sub;
}

.switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 17px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(13px);
  -ms-transform: translateX(13px);
  transform: translateX(13px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.btn-primary
{
  background-color: #3268a8 !important;
  border: none !important;
}

.btn-danger
{
  background-color: #941004 !important;
  border: none !important;
}

.btn-primary:hover
{
  background-color: rgb(32, 32, 32);
}

.btnDeliveryTime
{
  background-color: darkgray;
  color: black;
  border: none;
  padding: 3px 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  margin: 4px 2px;
  border-radius: 12px;
}

.registerButton
{
  background-color: #3f4240;
  color: white;
  border: none;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
  margin: 4px 2px;
  border-radius: 12px;
}

.btnStoreOpen
{
  background-color: #299bba;
  color: white;
  border: none;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
  margin: 4px 2px;
  border-radius: 12px;
}

.btnStoreClose
{
  background-color: #ba3329;
  color: white;
  border: none;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
  margin: 4px 2px;
  border-radius: 12px;
}

.btnDisabled
{
  background-color: black;
}

.btnDeliveryTimeSelected
{
  background-color: black;
}

.divDeliveryTime
{
  display: block;
}

.deliveryTimeTitle
{
  clear: both;
  text-align: left;
  font-weight: bolder;
  font-size: 14px;
  vertical-align: middle;
  margin-left: 20px;
  margin-top: 5px;
}

@media only screen and (max-width: 700px)
{
  .expand-image-modal-content
  {
    width: 100%;
  }
}
