/* Predefined classes */
.flexy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  display: -ms-flexbox;
}

.rowy {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.columny {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  -ms-flex-direction: column;
}

.justify-centery {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.justify-betweeny {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.align-centery {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.wrapy {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.nowrapy {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */ /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                     supported by Chrome and Opera */
}

.p-0 {
  padding: 0;
}

.mt-0 {
  margin-top: 0;
}

.pt-50 {
  padding-top: 50px;
}

.w-100 {
  width: 100%;
}

.w-auto {
  width: auto;
}

.h-100 {
  height: 100%;
}

.ml-auto {
  margin-left: auto;
}

/* language.blade.php page style */

/* CSS Reset */
* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-X: hidden;
  -ms-content-zooming: none;
  touch-action: none;

  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */ /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
  font-family: Arial, Helvetica, sans-serif;
}

body {
  font-family: "KFGQPC Uthman Taha Naskh" !important;
  src:url("fonts/arfonts-kfgqpc-uthman-taha-naskh-bold.ttf")format("truetype") !important;
}

body {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

img {
  max-height: 100%;
  max-width: 100%;
}

/* Generic style applicable to blades */
.welcome-image {
  width: 0px;
  height: 0px;
  padding: 10px;
}

.zeuor-header {
  width: 100%;
  height: 12%;
  padding-top: 40px;
}

.zeuor-main {
  width: 100%;
  height: 76%;
}

.zeuor-footer {
  width: 100%;
  height: 12%;
  position: fixed;
  left: 0;
  bottom: 0;
  font-size: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
}

.zeuor-sentence {
  width: 100%;
  height: 20%;
  font-size: 2rem;
  color: black;
  letter-spacing: 1px;
  text-shadow: 0 0 1px black;
  text-align: center;
}

.zeuor-content {
  width: 100%;
  height: 80%;
}

.mybtn-container {
  width: 70%;
  padding: 5px;
}

.mybtn {
  width: 400px;
  height: 120px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  margin-top: 30px;
  font-size: 1.5rem;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  cursor: pointer;
  min-height: 60px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
}

/* button-mousedown class to add click animation to buttons */
.button-mousedown {
  transform: translateY(4px);
  background-color: rgba(0, 0, 0, 0.5);
}

/* phone_number.blade.php page style */

.numpad-container {
  width: 100%;
  height: 80%;
  /*overflow: hidden;*/
}

.entered-number {
  width: 100%;
}

.num {
  width: 100%;
  height: 100px;
  border: 1px solid lightgray;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2.7rem;
  background: rgba(0, 0, 0, 0.9);
}

.num-notran {
  padding-left: 35px;
}

.prefix {
  color: white;
}

.suffix {
  color: salmon;
}

.current {
  text-decoration: underline;
  font-size: 110%;
  color: rgb(25, 116, 168);
}

.numpad-keys {
  transform: translateY(-3px);
  height: 100%;
  width: 100%;
}

.numpad-key, .backspace {
  cursor: pointer;
}

.numpad-table {
  width: 65%;
  height: 90%;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  max-width: 600px;
  min-width: 300px;
}

.numpad-table td {
  font-size: 2rem;
  text-align: center;
  vertical-align: middle;
  background-color: rgba(0, 0, 0, 0.8);
  border: 1px solid dimgray;
}

.numpad-table td.spec {
  background-color: dimgray;
}

.skip-next-keys {
  margin: 10px 0;
  width: 65%;
  max-width: 600px;
}

.key {
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  font-size: 2rem;
  font-family: Arial, Helvetica, sans-serif;
  cursor: pointer;
  padding: 1rem 2rem;
}

.disabled {
  pointer-events: none;
  background-color: grey;
}

#errorMessage {
  display: none;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}

/* hover-effect is used to add visual look of clicking */
.hover-effect {
  background-color: black !important;
}

/* Responsive section */
@media all and (max-height: 1050px) {
  .mybtn {
    width: 300px;
    height: 90px;
  }
}

@media all and (max-height: 850px) {
  .mybtn {
    width: 250px;
    height: 70px;
  }

  html { font-size: 14px; }

  .welcome-image {
    width: 0px;
    height: 0px;
  }
}

@media all and (max-height: 700px) {
  .zeuor-sentence {
    height: 10%;;
  }

  .numpad-container {
    height: 90%;
  }

  .welcome-image {
    width: 0px;
    height: 0px;
  }

  .zeuor-header {
    padding-top: 20px;
  }

  .mybtn {
    width: 220px;
    height: 60px;
  }

  html { font-size: 10px; }

  .numpad-table, .skip-next-keys {
    width: 50%;
    max-width: 500px;
  }
}
