
/*********
Overlay
*******/
.overlay {
	position: fixed; /* Sit on top of the page content */
	width: 100%; /* Full width (cover the whole page) */
	height: 100%; /* Full height (cover the whole page) */
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5); /* Black background with opacity */
	z-index: 9999999; /* Specify a stack order in case you're using a different order for other elements */
}

#overlay-filler{
	width: 100%;
	height: 40vh;
}

#overlay-filler2{
	width: 100%;
	height: 35vh;
}
.overlay-filler3{
	width: 100%;
	height: 35vh;
}

@media(min-width: 601px){
  .alert-table{
    height: 250px;
    width: 400px;
    background-color: rgb(255, 255, 255);
	border-collapse: collapse;
	border-radius: 10px;
	color: rgb(0, 0, 0);
	font-family: 'Fustat', sans-serif;
  }
}

@media(max-width: 600px){
  .alert-table{
    height: 220px;
    width: 85vw;
    background-color: rgb(255, 255, 255);
	border-collapse: collapse;
	border-radius: 10px;
	color: rgb(0, 0, 0);
	font-family: 'Fustat', sans-serif;
  }
}

.alert-table button{
	padding: 5px 40px;
	border-radius: 7px;
	background: #ffd46f;
	margin-bottom: 10px;
	color: #ffffff;
	outline: none;
	border: none;
	font-family: 'Fustat', sans-serif;
}

.alert-table button:hover{
  transform: scale(1.1);
}

.alert-table button:active{
	border: none;
	outline: none;
  }

.loading span{
	width: 20px;
	height: 20px;
	margin: 0 5px;
	background: #ffffff;
	border-radius: 50%;
	display: inline-block;
	animation-name: dots;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
}

.loading span:nth-child(2){
	background-color: #ffffff;
	animation-delay: 0.4s;
}

.loading span:nth-child(3){
	background-color: #ffffff;
	animation-delay: 0.8s;
}

.loading_small span{
	width: 12px;
	height: 12px;
	margin: 0 5px;
	background: #ffffff;
	border-radius: 50%;
	display: inline-block;
	animation-name: dots;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
}

.loading_small span:nth-child(2){
	background-color: #ffffff;
	animation-delay: 0.4s;
}

.loading_small span:nth-child(3){
	background-color: #ffffff;
	animation-delay: 0.8s;
}

.loading2 span{
	width: 20px;
	height: 20px;
	margin: 0 5px;
	background: #000000;
	border-radius: 50%;
	display: inline-block;
	animation-name: dots;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
}

.loading2 span:nth-child(2){
	background-color: #000000;
	animation-delay: 0.4s;
}

.loading2 span:nth-child(3){
	background-color: #000000;
	animation-delay: 0.8s;
}

@keyframes dots{
	50%{
		opacity: 0;
		transform: scale(0.7) translateY(10px);
	}
}

/********************
Copied to Clipboard PopUp
*********************/

.overlay2 {	
	position: fixed;
	z-index: 9999999; /* Specify a stack order in case you're using a different order for other elements */
}

@media(min-width: 601px){
  .toast_init{
    color: white;
    background-color: rgb(99, 93, 93);
    font-size: 17px;
    line-height: 2em;
    width: 9em;
    border-radius: 4px;
	position: fixed;
	bottom: 20vh;
	left: 50vw;
	margin-left: -4.8em;
	z-index: 999999;
	opacity: 1;
	font-family: 'Fustat', sans-serif;
  }
}

@media(max-width: 600px){
  .toast_init{
    color: white;
    background-color: rgb(99, 93, 93);
    font-size: 3.8vw;
    line-height: 2.2em;
    width: 9em;
    border-radius: 4px;
	position: fixed;
	bottom: 20vh;
	z-index: 999999;
	opacity: 1;
	font-family: 'Fustat', sans-serif;
	margin-left: 8.4em;
  }
}