html {
  font-size: 14px;
 
}

@media (min-width: 768px) {
html {
  font-size: 16px;
}
}

html {
position: relative;
min-height: 100%;
}

body {
  margin-bottom: 60px;
  font-family: "Cairo", sans-serif !important;
}

/* webkit solution */
::-webkit-input-placeholder {
  text-align: right;
}
/* mozilla solution */
input:-moz-placeholder {
  text-align: right;
}
.form-switch .form-check-input {
  width: 4em !important;
  height: 2em !important;
}
.form-switch .form-check-label {
  font-size: large !important;
  margin-right: .5em !important;
}
footer {
  padding: 30px 0px;
  border-top: 1px solid rgb(204, 204, 204);
  background-color: rgb(252, 252, 252);

}

/* Custom styles to hide options */
select  .d-none {
  display: none !important;
}


.save_button {
  max-width: 135px !important;
  min-width: 135px !important;
}

.loading-wrapper {
  width: 100%;
  height: 100%;
  background: #ffffff73;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99999;
}

#loading {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 50px;
  height: 50px;
  border: 3px solid rgb(156 152 152 / 30%);
  border-radius: 50%;
  border-top-color: #cf6f6f;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  margin: auto;
  position: absolute;
  top: 50%;
  right: 50%;
  z-index: 9999999;
}

@keyframes spin {
  to { -webkit-transform: rotate(360deg); }
  }
  @-webkit-keyframes spin {
  to { -webkit-transform: rotate(360deg); }
  }

  .page-link{
    cursor: pointer;
  }

  a{
    text-decoration: none;
  }