@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400);
* {
  box-sizing: border-box;
}

body {
  
  margin: 0;
  min-height: 100vh;
  background-color: #4caf50;
  font-family: "Open Sans";
}

#signin {
  padding: 1em;
  margin: 1em;
  border-radius: 1em;
  text-align: center;
  background: white;
  color: rgba(0, 0, 0, 0.75);
}
#signin h1, #signin button {
  font-weight: 300;
  text-transform: uppercase;
}
#signin .error {
  background: rgba(255, 0, 0, 0.4);
  color: white;
  text-shadow: 0 1px 0 rgba(255, 100, 100, 0.75);
  margin-left: -1em;
  margin-right: -1em;
  margin-bottom: 1ex;
  padding: 1ex;
  border-top: 1px solid rgba(255, 100, 100, 0.75);
  border-bottom: 1px solid rgba(255, 100, 100, 0.75);
}
#signin input, #signin button {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.1em;
  padding: 1ex;
  border: 2px solid #ECF0F1;
  transition: border ease 500ms;
  border-radius: 1ex;
  font-family: "Open Sans";
  background: #ECF0F1;
  color: #181818;
}
#signin input:focus, #signin button:focus {
  outline: none;
  border: 2px solid #4CAF50;
}
#signin input:not(:last-child), #signin button:not(:last-child) {
  margin-bottom: 1ex;
}
#signin button {
  color: white;
  border: 2px solid #4CAF50;
  background: #4CAF50;
  cursor:pointer;
}
#signin .success {
  background: #20e20ee8;
  color: white;
  text-shadow: 0 1px 0 rgba(0, 170, 28, 0.75);
  margin-left: -1em;
  margin-right: -1em;
  margin-bottom: 1ex;
  padding: 1ex;
  border-top: 1px solid rgba(125, 255, 3, 0.87);
  border-bottom: 1px solid rgba(123, 255, 0, 0.75);
}
.tg{
  padding: 5px 0;
  background:transparent;
  color:#fff;
  font-size: 15px;
  font-weight: bolder;
  width:100%;
  left: 0;
  bottom: 0;
  position: fixed;
  text-align: center;
}
.telegram{
  background-color: rgb(24, 26, 24);
  padding: 10px ;
  border-radius: 20px;
  color:#fff;
  border:none;
}
/*
|----------------------------------------
| Arbitrary / optional styles, added here only to make the demo more clear
|----------------------------------------
*/
.popop__trigger {
	margin: 10rem auto;
	width: 200px;
	display: block;
	text-align: center;
}

.popup__container {
	margin: 10rem auto;
	padding: 1rem;
	width: 300px;
	text-align: center;
}

.popup__message {
	padding: 1rem;
	line-height: 1.2;
}

/*
|----------------------------------------
| Popup alert component styles
|----------------------------------------
*/
.popup {
	background: rgba(34, 34, 34, 0.95);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display:none;
 
	transition: opacity 0.4s,
	 			      visibility 0.4s;
}

.popup--is-visible {
	visibility: visible;
	opacity: 1;
}

.popup__container {
	background: #fff;
	position: relative;
	transform: translate(0, -2.5rem);
	/* transform: translate3d(0, -2.5rem, 0);		/* Use this declaration if you want to force hardware acceleration */
  /* backface-visibility: hidden;  			      /* Use this declaration if you want to force hardware acceleration */
  transition: transform 0.4s;
  border: none;
  border-radius: 20px;
}

.popup__container-is-lower {
	transform: translate(0, 0);
	/* transform: translate3d(0, 0, 0);					/* Use this declaration if you want to force hardware acceleration */
  /* backface-visibility: hidden;  			  		/* Use this declaration if you want to force hardware acceleration */
}

/*
|----------------------------------------
| Styles from a separate, independent component (CSS close button) https://codepen.io/diptajbasu/pen/YyeRdr
| are mixed into this component
|----------------------------------------
*/
.popup__close {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	width: 1.875rem;
	height: 1.875rem;
}

.popup__close::before,
.popup__close::after {
	background: #222;
	content: '';
	position: absolute;
	top: 0.875rem;
	width: 1.625rem;
	height: 0.1875rem;  /* Thickness of lines. 3px / 16 = 0.1875rem */
}

.popup__close::before {
	transform: rotate(45deg);
	left: 0.125rem;
}

.popup__close::after {
	transform: rotate(-45deg);
	right: 0.125rem;
}

/* Make text invisible but allow screen readers to know it exists */
.invisible-text {
	display: inline-block;
	overflow: hidden;
	text-indent: 100%;
	color: transparent;
	white-space: nowrap;
}

.bb_t{
  color: #fff;
    background-color: #28a745;
    border-color: #28a745;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    cursor:pointer;
}

select{
 display: block;
  width: 100%;
  text-align: center;
  font-size: 1.1em;
  padding: 1ex;
  border: 2px solid #ECF0F1;
  transition: border ease 500ms;
  border-radius: 1ex;
  font-family: "Open Sans";
  background: #ECF0F1;
  color: #181818;
cursor:pointer;
}
select:focus{
outline: none;
  border: 2px solid #4CAF50;
}

.pages{
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #28a745;
  color: white;
  text-align: center;
  
  padding: 10px;
  font-size: 17px;
}
a{
  text-decoration: none;
}
.btn {
  border: none;
  outline: none;
  padding: 10px 16px;
  background-color: #f1f1f1;
  cursor: pointer;
  font-size: 17px;
  margin: 3px;

}

/* Style the active class, and buttons on mouse-over */
.active, .btn:hover {
  background-color: #666;
  color: white;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 1px solid #ddd;
  /* background-color: #28a745; */
  padding:10px;
}

th, td {
  text-align: left;
  padding: 8px;
}
th{
  background-color: #4caf50;
  color:#fff;
}
tr:hover{
  background-color: black;
  color:#fff;
  transition: 1s inherit;
}