/* Waterfall Project CSS 
   ( Without SCSS for WWW )
   By waterblock79       */

/* List : <li> and <ul>*/

li {
  list-style: none;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  padding-left: 1em;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  background: white;
  transition: background 0.75s;
}

.dense {
  margin-top: 0em;
  margin-bottom: 0em;
}

li:hover {
  background: rgba(0, 0, 0, 7.5%);
}

li:active {
  transition: background 0.35s;
  background: rgba(0, 0, 0, 15%);
}

/* Button : <button> */

button {
  outline: none;
  border: none;
  color: white;
  background: #1976d2 !important;
  transition: opacity 0.3s;
  height: 36px;
  min-width: 64px;
  padding: 0 16px;
  border-radius: 5px;
  font-size: 1.05em;
}

button:hover {
  opacity: 0.9;
}

button:active {
  transition: opacity 0.5s;
  opacity: 0.7;
}

.button-text{
  background: #FFFFFF !important;
  color: #1976d2 !important;
}

.button-icon {
  height: auto;
  width: auto;
  border-radius: 100%;
}

.button-icon:hover {
  background: none;
}

.button-icon:active {
  background: none;
}

/* For FileInputs */

/* 
<button>
  <input type="file" class="ghost">
</button>
*/

.ghost {
  opacity: 0;
  position: absolute;
}

/* Dialog */

/*
<div class="dialog">
  <div class="dialog-overlay"/>
  <div class="dialog-content card">
    card content
  </div>
</div>
*/

.dialog {
  display: flex;
  position: fixed;
  z-index: 314;
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
}

.dialog-overlay {
  display: flex;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
  background: #000000;
  opacity: 0.45;
  z-index: -1;
}

.dialog-content {
  z-index: 314;
  margin: auto;
}

/* Card */

.card {
  min-width: 50%;
  max-width: 70%;
  max-height: 60%;
  border-radius: 6px;
  box-shadow: 10px 10px 10px 10px rgb(0, 0, 0, 2%);
  background-color: white;
  overflow: auto;
  overflow-x: hidden;
  padding: 3em;
}

.card-title {
  font-size: 1.25em;
}

.card-content {
  font-size: 0.85em;
  margin-top: 4%;
  margin-bottom: 4%;
}

.card-active {
  text-align: right;
}

/* Bottom Active */

.bottom-active {
  position: fixed;
  width: 100%;
  bottom: 0%;
  height: 3em;
  line-height: 3em;
  font-size: 1.25em;
  background: #ffffff;
  box-shadow: 0px 0px 10px 0px rgb(0, 0, 0, 20%);
  padding-left: 1em;
}


/* Sth else */

.pull-right {
  float: right;
  text-align: right;
}

.center-y {
  vertical-align: middle;
}

.font-mono {
  font-family: "Courier New", Courier, monospace;
}

/* Scroll Bar */

::-webkit-scrollbar {
  border-left: solid 0.5px #dddddd;
  width: 7px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #dddddd;
  transition: background 1s;
}

/* Margin */

.mr-1{
  margin-right: 4px;
}

.mr-2{
  margin-right: 8px;
}

.ml-2{
  margin-left: 8px;
}

.mt-2{
  margin-top: 8px;
}

/* WWW Only */

h1, h2, h3, h4, h5, h6, p{
  font-weight: lighter;
}

.larger{
  font-size: large;
}

.index-app{
  position:absolute;
  top:30%;
  left:10%;
  margin-right:10%;
}

.download-app{
  position:absolute;
  top:10%;
  left:10%;
  margin-right:10%;
}

.about-app{
  position:absolute;
  top:10%;
  left:10%;
  margin-right:10%;
}

.index-preview{
  position:absolute;
  background: url("Preview.png") no-repeat;
  background-size: cover;
  bottom:0%;
  right:-5%;
  height:50%;
  width:50%;
  border-radius: 8px;
  box-shadow: -10px -4px 20px rgb(0,0,0,10%);
}

textarea{
  width:30em;
  height:15em;
  border:none;
  outline:none;
  background:none;
}


.vMore{
  width:2em;
  height:2em;
  border-radius: 100%;
}

#vInfo{
  display:none;
}

@media (prefers-color-scheme: dark) {
  body {
      background-color: #111111;
      color: white;
  }
  li{
    background-color:#111111 !important;
  }
}

@media (max-width: 832px){
  .index-preview{
    display: none;
  }
}

.material-icons{
  user-select: none;
}

.label {
    display: inline-block;
    padding: 0 8px;
    font-size: 10px;
    line-height: 18px;
    border-radius: 1em;
    border: 1px solid transparent;
}

.label-primary {
  border-color: #1976d2;
  color:#1976d2;
}

.label-green{
  border-color: green;
  color: green;
}


.avatar{
  background: #DDDDDD;
}

.avatar-img{
  height:3em;
  width:3em;
  border-radius: 100%;
  margin-right: 0.5em;
}
