* {
  direction: rtl;
  box-sizing: border-box;
  outline: none;
  font-family: 'Tajawal', sans-serif;

  -webkit-appearance:     none;
  -moz-appearance:        none;
  -ms-appearance:         none;
  -o-appearance:          none;
  appearance:             none;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  margin-top: 30px;
  /* margin: 30px 0; */
  /* padding-bottom: 30px; */
  background: #ffffff;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}


.container {
  position: relative;
  display: flex;

  flex-direction: row;
  flex-wrap: wrap;

  margin: 0 auto;

  width: 100%;
  max-width: 1200px;

  padding: 0 30px;
}

section,
section.container {
  flex-direction: column;

  margin: 0px auto;

  width: 100%;
}

.float-order-button {
  cursor: pointer;

  position: fixed;
  display: flex;
  z-index: 10;

  align-items: center;
  justify-content: center;

  left: 0;
  right: 0;
  bottom: 0;

  width: 100vw;

  padding: 15px 0;

  border: 0;

  font-size: 20px;
  font-weight: 900;

  color: white;
  background: #940000;
}



#WAITING_SCREEN {
  position: relative;
  display: none;
  z-index: 500;

  flex-direction: column;

  align-items: center;
  /* justify-content: center; */
  padding-top: 30px;
  padding-bottom: 60px;

  /* top: 0;
  left: 0;
  right: 0;
  bottom: 0; */

  width: 100vw;
  /* height: 100vh; */

  background: #FFFFFF;
}
#WAITING_SCREEN.active {
  display: flex;
}

#WAITING_SCREEN img {
  position: relative;
  display: flex;

  width: 50%;
  max-width: 170px;
  min-width: 100px;
  height: auto;

  object-fit: contain;
  object-position: center center;
}

#WAITING_SCREEN p {
  position: relative;

  margin: 30px 0;

  padding: 0 14px;

  text-align: center;

  font-size: 25px;
  font-weight: 500;

  color: gray;
}

#WAITING_SCREEN span {
  position: relative;

  padding: 0 14px;

  text-align: center;

  font-size: 65px;
  font-weight: 700;

  color: #940000;
}
