html, body {
    /* margin: 0; */
    /* width: 100%; 
    height: 100%;*/
    background-color: #E8EAF6;
    /*background-image: url('../imgs/daybg.jpg') !important;
    background-repeat: no-repeat !important;
    background-size:cover !important;
    opacity: 0.90;
    filter: alpha(opacity=50);*/
    /* For IE8 and earlier */
    /* font-family: 'DroidKufi-Regular' !important; */
}

body {
    padding: 60px 0px 0px 0px !important;
}

[dir='rtl'] body {
    font-family: 'DroidKufi-Regular' !important;
}

[dir='rtl'] input, select {
    font-family: 'DroidKufi-Regular' !important;
}

[dir='ltr'] body {
    font-size: 19px;
    font-family: 'Times New Roman' !important;
}

[dir='ltr'] input, select {
    font-size: 19px;
    font-family: 'Times New Roman !important;
}

md-toolbar {
    direction: inherit;
    z-index: 99999999;
    color: white !important;
}

md-toolbar input ::-webkit-input-placeholder { /* Edge */
  color: red;
}

md-toolbar input :-ms-input-placeholder { /* Internet Explorer */
  color: red;
}

md-toolbar input ::placeholder {
  color: red;
}

[dir='rtl'] md-toolbar {
    top: 0;
    position: fixed;
}

[dir='ltr'] md-toolbar {
    top: 0;
    position: fixed;
}

md-content {
    -webkit-overflow-scrolling: touch;
    box-shadow: 3px 3px 1px rgba(119, 119, 119, 0.52);
    background-color: white;
    padding: 20px;
}


[ng-view] {
    /* box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.4); */
    margin: 20px !important;
}


[dir='ltr'] md-autocomplete .md-show-clear-button button {
    display: none;
}

.md-whiteframe-1dp, .md-whiteframe-z1 {
    box-shadow: unset !important;
}

h2.md-truncate {
    color: white;
}

[dir='ltr'] h2.md-truncate {
    text-align: left;
}

.searchInput input {
    border: none !important;
    border-bottom: 1px solid white !important;
    outline: none !important;
    color: white !important;
}


md-autocomplete .md-show-clear-button button {
    position: absolute;
    left: -10px;
}

/*Light/Dark ToggleButton*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
* {box-sizing: border-box;}
body {
  background-color: #E8EAF6;
  min-height: 100vh;
  margin: 0;
  transition: background 0.2s linear;
}
body.dark {background-color: #292c35;} /* #9b59b6 */
body.dark h1, body.dark .support a {color: #E8EAF6;}
.LightDarkcheckbox {
  opacity: 0;
  position: absolute;
}
.LightDarkcheckbox-label {
  background-color: #111;
  width: 50px;
  height: 26px;
  border-radius: 50px;
  position: relative;
  padding: 5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fa-moon {color: #f1c40f;}
.fa-sun {color: #f39c12;}
.LightDarkcheckbox-label .ball {
  background-color: #fff;
  width: 22px;
  height: 22px;
  position: absolute;
  left: 2px;
  top: 2px;
  border-radius: 50%;
  transition: transform 0.2s linear;
}
.LightDarkcheckbox:checked + .LightDarkcheckbox-label .ball {
  transform: translateX(24px);
}