/*DANGER! default do not change*/
.RGB{
  color:red;
}
.text_default{
  background-color: #363940;
  color: #ffffff;
  font-family: 'arial', sans-serif;
  font-size: 16px;
}
.border{
  border-style: solid;
  border-color: #ffffff;
}
body{
  background-color: #363940;
  color: #ffffff;
  font-family: 'arial', sans-serif;
  font-size: 16px;
}
.button_default{
  text-align: center;
  text-decoration: none;
  display: inline-block;
  outline: 0;
  cursor: pointer;
  padding: 5px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  vertical-align: middle;
  border: 1px solid;
  border-radius: 6px;
  color: #24292e;
  background-color: #fafbfc00;
  border-color: #ffffff;
  transition: 0.2s cubic-bezier(0.3, 0, 0.5, 1);
  transition-property: color, background-color, border-color;
  color: #ffffff;
}
.button_default:hover{
    background-color: #f3f4f600;
    border-color: #ffffff89;
    transition-duration: 0.1s;
}
/*end danger zone*/
.text_box{
  background-color: #202225;
  font-family: 'Courier New', Courier, monospace;
  color: lime;
  border-radius: 10px;
  padding: 2px 3px;
}
.text{
  background-color: #363940;
  color: #ffffff;
  font-family: 'arial', sans-serif;
  font-size: 16px;
}
.text_dark{
  background-color: #000000;
  color: #ffffff;
  font-family: 'arial', sans-serif;
  font-size: 16px;
}

.button1{
  text-align: center;
  text-decoration: none;
  display: inline-block;
  outline: 0;
  cursor: pointer;
  font-size: 14px;
  padding: 5px 16px;
  font-weight: 500;
  line-height: 20px;
  vertical-align: middle;
  color: #24292e;
  background-color: #000000;
  border-color: #ffffff;
  transition: 0.2s cubic-bezier(0.3, 0, 0.5, 1);
  transition-property: color, background-color, border-color;
  color: #ffffff;
}
.button1:hover{
    background-color: #121212;
    border-color: #ffffff89;
    transition-duration: 0.1s;
}
.button{
  text-align: center;
  text-decoration: none;
  display: inline-block;
  outline: 0;
  cursor: pointer;
  padding: 5px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  vertical-align: middle;
  border: 1px solid;
  border-radius: 6px;
  color: #24292e;
  background-color: #fafbfc00;
  border-color: #ffffff;
  transition: 0.2s cubic-bezier(0.3, 0, 0.5, 1);
  transition-property: color, background-color, border-color;
  color: #ffffff;
}
.button:hover{
    background-color: #f3f4f600;
    border-color: #ffffff89;
    transition-duration: 0.1s;
}
.button_dark{
  text-align: center;
  text-decoration: none;
  display: inline-block;
  outline: 0;
  cursor: pointer;
  padding: 5px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  vertical-align: middle;
  border: 1px solid;
  border-radius: 6px;
  color: #24292e;
  background-color: #000000;
  border-color: #ffffff;
  transition: 0.2s cubic-bezier(0.3, 0, 0.5, 1);
  transition-property: color, background-color, border-color;
  color: #ffffff;
}
.button_dark:hover{
    background-color: #121212;
    border-color: #ffffff89;
    transition-duration: 0.1s;
}
#snackbar-container{
	position :  fixed;
    bottom : 0px;
    left : 50%;
}
.snackbar {
  visibility: hidden;
  min-width: 50px;
  margin-left: 600px;
  background-color: #333;
  margin-bottom : 10px;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  padding: 16px;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  font-size: 16px;
}
.snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;} 
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;} 
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}
#input_text{
    /*height:10px;*/
    width: 1400px;
    font-size:10pt;
}
.scroll{
 /**/
}
/* width */
.scroll::-webkit-scrollbar {
  width: 10px;
}

/* Track */
.scroll::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #202225; 
  border-radius: 10px;
}
 
/* Handle */
.scroll::-webkit-scrollbar-thumb {
  background: rgb(255, 255, 255); 
  border-radius: 10px;
}

/* Handle on hover */
.scroll::-webkit-scrollbar-thumb:hover {
  background: #a3a3a3; 
}
