body::-webkit-scrollbar {width: 0.8em;}
body::-webkit-scrollbar-track {
  background:#111111;
  -webkit-box-shadow: inset 0px 0px 0px black;
  -moz-box-shadow:    inset 0px 0px 0px black;
  box-shadow:         inset 0px 0px 0px black;
}
body::-webkit-scrollbar-thumb {
  background-image:linear-gradient(65deg,#333,#333);
	border-radius:6px;}

html{
  background: black;
  background: -webkit-canvas(animation) no-repeat 50% 50%;
  color:white;
  scroll-behavior: smooth;
}
body{
  font-family:arial;
  margin:0px;
  padding:0px;
  /*overflow-x:hidden;*/
}
#all_div p{
  font-size:14px;
}
#canvas{
  background:black;
  border:solid 0px grey;
  position:Fixed;
   left:0;
   top:0;
   z-index:-1;
}

.freeze{
  position:relative;
  display:block;
  width:80%;
  margin:5px auto;
  background:#760902;
  padding:4px 20px;
  border-radius:2px;
  text-align:center;
}
.freeze span{
  display:inline-block;
  color:white;
  font-size:13px;
  opacity:0.8;
  line-height:1.5;
}
.freeze b{
  position:relative;
  margin:2px;
  cursor:pointer;
  text-decoration: underline;
}
.freeze b:hover{
  opacity:0.6;
}

h2,h3{
  color:grey;
}
h3{text-decoration:underline;}
p,ul{
  opacity:0.8;
}
.message{
  border:solid 0px red;
  text-align:center;
  min-height:50px;
  margin:0px;
  padding:0px;
}
#msg{
  display:inline-block;
  padding:0px;
  margin:0px;
}
#cursor{
  font-size:40px;
  color:grey;
  animation:cursor 0.5s infinite ease-in;
  opacity:1;
}
@-webkit-keyframes cursor{
  0%{opacity:0;}
  100%{opacity:1;}
}
@keyframes cursor{
  0%{opacity:0;}
  100%{opacity:1;}
}
.just-note{
  color:grey;
  text-align:center;
  line-height:1;
}
.main_div{
  border:solid 0px yellow;
  display:inline-block;
  width:99%;
  min-height:97vh;
  margin:5px;
}
.top{
  /*background-image:linear-gradient(to bottom,#171717,#434645);*/
  display:block;
  position:relative;
  width:95%;
  color:teal;
  text-align:right;
  margin:5px auto;
  border-radius:6px;
  line-height:1;
  padding:5px;
}
.tag{
  position:relative;
  display:inline-block;
  float:left;
  width:18%;
  height:auto;
  left:0;
  text-align:center;
  font-size:32px;
  font-weight:bold;
  font-family:cursive;
  border:solid 0px red;
}
.tag>a{
  text-decoration: None;
  color:#1F98C3;
  background-image:linear-gradient(to bottom,#1F98C3,teal,grey);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

}
.tag>a:hover{
  background-image:linear-gradient(to bottom,#1F98C3,#1F98C3,grey);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
#rocket{
  border:solid 0px red;
  display:inline-block;
  position:relative;
  top:15px;
  padding:0px;
  margin:0px -5px;
    animation: rockett 0.9s alternate infinite ease-in-out;
}
#rocket_image{
  position:relative;
  display:inline-block;
  width:23px;
  height:35px;
  padding:2px;
  margin:0px;
  animation: rocket 1.2s forwards;

}
@-webkit-keyframes rocket{
  from{top:500px}
  to{top:0px}
}
@keyframes rocket{
  from{top:500px}
  to{top:0px}
}
@-webkit-keyframes rockett{
  0%{transform:rotate(-4deg)}
  50%{transform:rotate(0deg)}
  100%{transform:rotate(4deg)}
}
@keyframes rockett{
  0%{transform:rotate(-4deg)}
  50%{transform:rotate(0deg)}
  100%{transform:rotate(4deg)}
}
.head{
  position:relative;
  right:0;
  width:77%;
  display:inline-block;
  border-bottom:solid 0px teal;
  background:transparent;
  margin:1px 20px;
  padding:0px;

}

.head button{
    displaY:inline-block;
    margin:4px 9px;
    font-family:arial;
    color:white;
    cursor:pointer;
    background:transparent;
    padding:5px 12px;
    border-radius:2px;
    border:2px solid transparent;
    font-weight:bold;
    font-family:arial;
}
.head button:hover{
  background:black;
  border-radius:5px;
  opacity:0.6;
  /*border-bottom-color:teal;*/
}
#bell{
  border:none;
  background:none;
  font-size:20px;
}
sup{
  font-weight:normal;
  font-size:12px;
  background:teal;
  padding:2px 5px;
  border-radius:50%;
}
.notice{
  border:solid 0px red;
  display:inline-block;
}
.notifications{
  position:absolute;
  border:solid 0px yellow;
  width:100px;
  height:20px;
  z-index:55;
}
#notifications{
display:none;
}
.ns{
  position:relative;
  border:solid 1px grey;
  box-shadow:0 0  20px 1px teal;
  border-radius:7px;
  background:black;
  padding:7px;
  text-align:left;
  width:300px;
  max-height:500px;
  overflow-y:scroll;
  left:-200px;
  animation:shadow 3s infinite ease-in;
}
@-webkit-keyframes shadow{
    0%{box-shadow:0 0  30px 4px teal;}
    50%{box-shadow:0 0  30px 4px grey;}
    100%{box-shadow:0 0  30px 4px teal;}
}
@keyframes shadow{
    0%{box-shadow:0 0  30px 4px teal;}
    50%{box-shadow:0 0  30px 4px grey;}
    100%{box-shadow:0 0  30px 4px teal;}
}

.ns::-webkit-scrollbar {
  width: 0.3em;}
.ns::-webkit-scrollbar-track {
  background:#171717;
  -webkit-box-shadow: inset 0px 0px 5px black;
  -moz-box-shadow:    inset 0px 0px 5px black;
  box-shadow:         inset 0px 0px 7px grey;
}
.ns::-webkit-scrollbar-thumb {
  background-color: teal;
	border-radius:6px;}

.alert{
  background:#333;
  padding:6px;
  margin:3px;
  line-height:1.2;
}
.nhead{
  font-weight:bold;
  font-size:17px;
  color:teal;
}
.ndes{
  color:white;
  opacity:0.8;
  font-size:13px;
  font-family:courier;
}
.ndate{
  font-size:10px;
  font-weight:bold;
  color:grey;
}



.base{
  border:solid 0px red;
  border-radius:7px;
  background:transparent;
  position:relative;
  width:90%;
  margin:35px auto;
  padding:5px 20px;
  text-align: justify;
  text-justify: inter-word;
}

.volume{
  border-bottom:solid 0px #333;
  position:relative;
  width:90%;
  margin:5px auto;
  text-align:center;
}
#vol{
  width:80vmin;
}

.welcome{
  position:relative;
  max-width:98%;
  border:solid 0px green;
  margin:20px 0;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-flow: wrap;
  font-family:verdana;
}
.wdiv{
  position:relative;
  width:400px;
  height:auto;
  /*border:solid 1px grey;*/
  border-radius:11px;
  box-shadow:0px 0px 3px 0px teal;
  display:inline-block;
  margin:20px 50px;
  padding:10px;
  text-align:center;
  opacity:0.9;
  animation:wdiv forwards 2s;
}
@-webkit-keyframes wdiv{
  from{left:-700px;transform:rotate(-45deg)}
  to{left:0px;transform:rotate(0deg)}
}
@keyframes wdiv{
  from{left:-700px;transform:rotate(-45deg)}
  to{left:0px;transform:rotate(0deg)}
}

.wdiv ul{
  text-align:left;
  line-height:1.2;
}
.wdiv ul>li{
  line-height:1.5;

}
#left_items_div{
  display:inline-block;
  position:relative;
  min-height:100vh;
  max-width:19%;
  left:20px;
  top:0px;
  border:solid 0px green;
}

.all_div{
  display:inline-block;
  background:#333;
  margin:10px;
  padding:9px;
  width:75%;
  min-height:84vh;
  /*overflow-y:scroll;
   max-height:530px;*/

  Float:right;
  margin-right:27px;
  border:solid 0px teal;
  box-shadow:0 0 0px 0px grey;
  border-radius:4px;
  word-wrap: break-word;
}
h1{
  color:grey;
  text-align:center;
  font-size:40px;
}
.items_div{
  background:transparent;
  border:solid 0px red;
  border-radius:4px;
  margin:10px;
}
.items_div ul{
  list-style-type:none;
  margin:0;
  padding:0px;
}
.feature{
  background:transparent;
  border-bottom:solid 1px black;
  border-radius:0px;
  margin:0px;
  padding:17px 40px;
  font-family:arial;
  font-size:15px;
  letter-spacing: 1px;
  cursor:pointer;
}

.feature:hover{
  background:#171717;
}



.heading{
  text-align:center;
  font-size:30px;
  font-weight:bold;
  color:grey;
}
.head3{
  font-size:20px;
  font-weight:bold;
  color:grey;
  margin-top:20px;
}
.form_div{
  display:flex;
  justify-content:center;
  align-items:center;
  border:solid 0px yellow;
}
textarea{
  display:inline-block;
  background:#171717;
  color:white;
  border:solid 0px grey;
  border-radius:6px;
  padding:5px;
}
#shortme{
  width:80vmin;
  font-size:18px;
  padding:13px 25px;
  color:teal;
  background:#171717;
  border:solid 2px transparent;
  border-radius:9px;
  margin:10px;
}
#sbtn{
  font-size:18px;
  padding:11px 25px;
}
.btn{
  color:white;
  padding:6px 15px;
  background:grey;
  margin:5px;
  border:solid 2px grey;
  border-radius:4px;
}
.btn:hover{
  background:teal;
  border-color:teal;
}

.output{
  width:90%;
  height: auto;
  position: relative;
  border:solid 0px #171717;
  display:block;
  margin:20px auto;
  text-align:center;
  line-height:1.5;
}
#mylink{
  display:block;
  text-align:center;
  background:transparent;
  color:teal;
  font-size:17px;
  font-family:cursive;
  border:none;
  margin:5px auto;

}
#preview{
  display:none;
  position:relative;
  width:80%;
  margin:8px auto;
  background:#171717;
  padding:16px;
  text-align:left;
  overflow-x:scroll;
}
#preview a{
  color:teal;
}
#preview a:hover{
  color:blue;
}

#auto_script{
  display:inline;
  position:relative;
  width:70%;
  margin:5px 5px;
  background:#171717;
  padding:6px;
  text-align:left;
  word-wrap: break-word;
}

#tooltip{
  padding:5px 10px;
  border:solid 1px grey;
  border-radius:50%;
  margin:0px 10px;
  cursor:pointer;
}

.notification_div{
  top:50px;
  z-index: 9999;
  position: fixed;
  right: 0;
  margin-right:20px;
  background:transparent;
  color:white;
  border:solid 0px grey;
  border-radius:11px;
  padding:6px;
  text-align:right;
  font-size:18px;
}

.notification{
  position:relative;
  background-image:linear-gradient(to right,#333,teal);
  padding:5px 15px;
  border:solid 1px #171717;
  display:inline-block;
  border-radius:7px;
  animation-name:noted;
  animation-duration: 0.8s;
  animation-delay: 0s;
  animation-timing-function: ease-out;
}

@-webkit-keyframes noted{
  from{left:-100px;color:transparent;opacity:0.3;}
  to{left:0px;color:white;opacity:1;}
}
@keyframes noted{
  from{left:-100px;color:transparent;opacity:0.3;}
  to{left:0px;color:white;opacity:1;}
}

#close{
  position:relative;
  color:white;
  border:solid 1px grey;
  background:transparent;
  display:inline-block;
  padding:3px 8px;
  border-radius:50%;
  font-weight:bold;
  cursor:pointer;

  animation-name:noted2;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-timing-function: ease-out;
}

@-webkit-keyframes noted2{
  from{left:100px;color:transparent;opacity:0.3;}
  to{left:0px;color:white;opacity:1;}
}
@keyframes noted2{
  from{left:100px;color:transparent;opacity:0.3;}
  to{left:0px;color:white;opacity:1;}
}

#close:hover{
  color:red;
  border-color:red;
  background:#171717;
}


#anime{
  position:relative;
  width:100%;
  min-height:200px;
  border:solid 0px red;
  display:flex;
  justify-content:center;
  align-items:center;
}

#loading{
  width:30px;
  height:30px;
  background:transparent;
  border:dotted 4px teal;
  border-radius:50%;
  animation:loading 4s infinite forwards;
  animation-timing-function: linear;
}
@-webkit-keyframes loading {
  from{transform: rotate(0deg)}
  to{transform: rotate(360deg)}
}
@keyframes loading {
  from{transform: rotate(0deg)}
  to{transform: rotate(360deg)}
}

.notes{
  line-height:2;
}
.notes li{font-size:14px;}
.highlight{
  color:teal;
}



.new_form{
  position:relative;
  background:#333;
  width:600px;
  margin:20px auto;
  padding:10px;
  border-radius:6px;
  text-align:center;
}
.new_form>input{
  position:relative;
  display:block;
  width:40%;
  margin:20px auto;
  background:black;
  color:teal;
  border:solid 2px black;
  border-radius:7px;
  padding:10px 10px;
}
.new_form a{
  color:teal;
}
.new_form a:hover{
  color:#1F98C3;
}
#nbtn{
  width:15%;
  background:grey;
  border:solid 0px black;
  color:white;
}
#nbtn:hover{
  background:teal;
}

#forget{
  color:grey;
  font-family:italic;
  cursor:pointer;
}
#forget:hover{
  color:teal;
}

.bottom{
  background:transparent;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
}
.binfo{
  /*background:#434645;*/
  margin:0px 40px;
  padding:7px;
  position:relative;
  text-align:left;
}
.binfo>ul{
  list-style-type:none;
  margin:0;
  padding:0px;
}
.binfo>ul>li{
font-size:12px;
display:inline-block;
margin:5px 20px;
cursor:pointer;
}
.binfo>ul>li:hover{
  color:teal;
}
.skype{
  display:inline;
  width:30px;
  height:30px;
}

#info{
  text-align:center;
}
#user_div{
  border:solid 0px grey;
  margin-bottom:20px;
}
.uinfo{
  border:solid 0px green;
  text-align:center;
}
.b2show{
  background:teal;
  padding:6px 10px;
  border:none;
  color:white;
  opacity:0.8;
  border-radius:2px;
}
#b2s{
  background:black;
  border:none;
  color:grey;
  padding:5px;
  border-radius:2px;
}
.edata{
  display:inline-block;
  background-image:linear-gradient(to bottom,teal,#549D94,grey);
  padding:15px 40px;
  margin:5px;
  text-align:center;
  border-radius:6px;
  border:groove 0px #549D94;
  animation: mymove 40s infinite ease-in-out;
}
@-webkit-keyframes mymove{
  0%{background-image:linear-gradient(0deg,teal,#549D94,grey);}
  25%{background-image:linear-gradient(90deg,teal,#549D94,grey);}
  50%{background-image:linear-gradient(180deg,teal,#549D94,grey);}
  75%{background-image:linear-gradient(270deg,teal,#549D94,grey);}
  100%{background-image:linear-gradient(360deg,teal,#549D94,grey);}
}
@keyframes mymove{
  0%{background-image:linear-gradient(0deg,teal,#549D94,grey);}
  25%{background-image:linear-gradient(90deg,teal,#549D94,grey);}
  50%{background-image:linear-gradient(180deg,teal,#549D94,grey);}
  75%{background-image:linear-gradient(270deg,teal,#549D94,grey);}
  100%{background-image:linear-gradient(360deg,teal,#549D94,grey);}
}
.small{
  color:grey;
  font-size:13px;
}
.ehead{
  padding:0px;
  margin:0px;
  line-height:0.9;
}

#my_report_table{
max-height:60vh;
overflow-y:scroll;
}

#my_report_table::-webkit-scrollbar {
  width: 0.5em;}
#my_report_table::-webkit-scrollbar-track {
  background:#171717;
  -webkit-box-shadow: inset 0px 0px 5px black;
  -moz-box-shadow:    inset 0px 0px 5px black;
  box-shadow:         inset 0px 0px 7px grey;
}
#my_report_table::-webkit-scrollbar-thumb {
  background-color: teal;
	border-radius:6px;}


.today_report_div{
  margin-top:20px;

}
#today_report_div{
  background:#171717;
  padding:0;
  width:100%;
    margin-top:0px;
}

.report_table{
  width: 100%;
  padding:0px 4px;
  margin:10px auto;
  border-radius:4px;
}
.report_table th{
  border-bottom: 1px white solid;

}
.report_table td,th{
  text-align:center;
  padding:4px 10px;
  border-bottom: 1px #333 solid;
  color:white;
  opacity:0.8;
  margin:0px 10px;
  font-size:13px;
}

.method_div{
  padding:5px;
  margin:20px;
  text-align:center;
}
.method{
  background:#171717;
  border:solid 0px grey;
  color:teal;
  padding:10px;
  display:block;
  position:relative;
  margin:10px auto;
  border-radius:6px;
}
#payment_method{
  display:inline-block;
  position:relative;
}

#p_div{
  border:solid 0px grey;
  text-align:center;
  margin-top:20px;
}

.just-link{
  color:grey;
  cursor:pointer;
  font-style:italic;
}
.just-link:hover{
  color:teal;
}
#hidePassword{
  display:none;
}
.code{
  background:black;
  padding:6px 15px;
  color:grey;
  font-style:italic;
  line-height:1.5;
}

.fake_div{
  position:relative;
  border:solid 0px white;
  padding:4px;
  background:#171717;
  line-height:1.5;
}
.fake_div >label{opacity:0.7;}
.fake_div >input{margin:7px 7px;}
.binput{
  background:black;
  border:solid 1px grey;
  padding:5px;
  color:white;
}
#fbtn{
  position:relative;
  display:block;
  width:110px;
  margin:2px auto;
}

.banner_div{
  border:solid 0px white;
  text-align:center;
  background:#171717;
  padding:9px 3px;
}
.banner_div label{opacity:0.7}
select{
  background:black;
  border:solid grey 0px;
  color:grey;
  padding:5px;
  margin:5px;
  border-radius:2px;
  font-weight:bold;
}


@media only screen and (max-width: 800px) {
.main_div{
    border:solid 0px yellow;
    display:block;
    width:100%;
    min-height:97vh;
    margin:0px;
  }
.top{
    /*background-image:linear-gradient(to bottom,#171717,#434645);*/
    display:block;
    position:relative;
    width:95%;
    margin:5px auto;
    color:teal;
    text-align:right;
    border-radius:6px;
    line-height:1;
    padding:5px;
    border:solid 0px yellow;
  }
.tag{
    position:relative;
    display:block;
    width:98%;
    height:auto;
    margin:2px auto;
    margin-bottom:20px;
    text-align:left;
    font-size:32px;
    font-weight:bold;
    font-family:cursive;
    border:solid 0px red;
    z-index:999;
  }
.head{
    position:relative;
    width:99%;
    margin:1px auto;
    display:block;
    border:solid 0px teal;
    background:transparent;
    padding:0px;
  }
  .welcome{
    position:relative;
    display:block;
    max-width:98%;
    width:98vw;
    border:solid 0px green;
    margin:4px auto;


  }
  .wdiv{
    position:relative;
    width:90%;
    height:auto;
    /*border:solid 1px grey;*/
    border-radius:11px;
    box-shadow:0px 0px 3px 0px teal;
    display:block;
    margin:20px auto;
    padding:10px;
    text-align:center;
    opacity:0.9;
    animation:wdiv forwards 1s;
  }
  @-webkit-keyframes wdiv{
    from{left:0px;transform:rotate(-90deg)}
    to{left:0px;transform:rotate(0deg)}
  }
  @keyframes wdiv{
    from{left:0px;transform:rotate(-90deg)}
    to{left:0px;transform:rotate(0deg)}
  }

.base{
  position:relative;
    border:solid 0px red;
    border-radius:7px;
    background:transparent;

    width:90%;
    margin:35px auto;
    padding:5px 5px;
    text-align: justify;
    text-justify: inter-word;
}
.new_form{
  position:relative;
  background:#333;
  width:90%;
  margin:20px auto;
  padding:10px;
  border-radius:6px;
  text-align:center;
}
.new_form>input{
  position:relative;
  display:block;
  width:70%;
  margin:20px auto;
  background:black;
  color:teal;
  border:solid 2px black;
  border-radius:7px;
  padding:10px 10px;
}
#nbtn{
  width:30%;
  background:grey;
  border:solid 0px black;
  color:white;
}

#left_items_div{
  display:block;
  position:relative;
  min-height:auto;
  max-width:99%;
  left:0px;
  top:0px;
  border:solid 0px green;
}

.all_div{
  display:block;
  background:#333;
  margin:10px auto;
  padding:9px;
  width:90%;
  margin-right:auto;
  float:none;
  min-height:80vh;
  /*overflow-y:scroll;*/
  border:groove 0px #333;
  box-shadow:0 0 0px 0px grey;
  border-radius:7px;
  word-wrap: break-word;
  scroll-behavior: smooth;
}
h1{
  color:grey;
  text-align:center;
  font-size:40px;
}
.items_div{
  top:100px;
  left:10px;
  background:#171717;
  border:solid 0px #333;
  border-radius:4px;
  margin:10px;
}
.items_div ul{
  list-style-type:none;
  margin:0;
  padding:0px;
}
.feature{
  background:transparent;
  border-bottom:solid 1px black;
  border-radius:4px;
  margin:5px;
  padding:5px 10px;
  font-family:arial;
  font-size:13px;
  font-weight:bold;
  letter-spacing: 1px;
  cursor:pointer;
  display:inline-block;
}
#user_div{
  border:solid 0px grey;
  margin-bottom:20px;
}

.edata{
  display:inline-block;
  background-image:linear-gradient(to bottom,teal,#549D94,grey);
  padding:15px 20px;
  margin:5px;
  text-align:center;
  border-radius:6px;
  border:groove 0px #549D94;
  animation: mymove 40s infinite ease-in-out;
}
.uinfo{
  border:solid 0px green;
  text-align:center;
}
.b2show{
  background:teal;
  padding:6px 10px;
  margin:5px;
  border:none;
  color:white;
  opacity:0.8;
  border-radius:2px;
}
.form_div{
  display:block;
  width:100%;
  margin:4px auto;
  border:solid 0px yellow;
  text-align:center;
}
textarea{
  display:block;
  position:relative;
  width:95%;
  margin:4px auto;
  background:#171717;
  color:white;
  border:solid 1px grey;
  border-radius:6px;
  padding:5px;
}

#shortme{
  width:80%;
  font-size:18px;
  padding:13px 25px;
  color:teal;
  background:#171717;
  border:solid 2px transparent;
  border-radius:9px;
  margin:10px;
}

.btn{
  margin:5px auto;
  color:white;
  padding:6px 15px;
  background:grey;
  border:solid 2px grey;
  border-radius:4px;
}
#sbtn{
  font-size:18px;
  padding:11px 25px;
}

#auto_script{
  display:block;
  position:relative;
  width:95%;
  margin:5px auto;
  background:#171717;
  padding:6px;
  text-align:left;
  word-wrap: break-word;
}

.ns{
  position:relative;
  border:solid 1px grey;
  box-shadow:0 0  20px 1px teal;
  border-radius:7px;
  background:black;
  padding:7px;
  text-align:left;
  width:300px;
  max-height:400px;
  overflow-y:scroll;
  left:-220px;
}
.message{
  min-height:70px;
}
#msg{
  font-size:20px;
}
#cursor{
  font-size:20px;
}


}
