@keyframes slideInFromRight{
	0% {
		transform: translateX(100%);
	}
	10% {
		transform: translateX(20%);
	}
	100% {
		transform: translateX(0%);
	}
}

#slider_animate{
	animation-name: slideInFromRight;
	-o-animation-name: slideInFromRight;
	-moz-animation-name: slideInFromRight;
	-webkit-animation-name: slideInFromRight;

	animation-duration: 5s;
	-o-animation-duration: 5s;
	-moz-animation-duration: 5s;
	-webkit-animation-duration: 5s;

	animation-timing-function: ease-out;
	-o-animation-timing-function: ease-out;
	-moz-animation-timing-function: ease-out;
	-webkit-animation-timing-function: ease-out;
}

@media (min-width: 2200px){
	.stat{
		width: 22%;
	}

	.slider{
		height: 500px;
		background: url("../images/sliding-empress.png");
		background-repeat: no-repeat;
		background-size: 1500px 500px;
		position: relative;
		left: 35%;
		transition: 0.2s;
	}

	.info_header{
		width:100%;
		height: 500px;
		background: url("../images/info-header.png"); 
		position: relative;
		overflow: hidden;
		transition: 0.2s;
	}

	.h1_info_header{
		font-size: 48px;
	}
	
	.h2_info_header{
		font-size: 30px;
	}
	
	.a_info_header{
		font-size: 18px;
		padding: 15px 22px;
	}
}
@media (min-width: 1800px) and (max-width: 2199px){
	.stat{
		width: 22%;
	}

	.slider{
		height: 400px;
		background: url("../images/sliding-empress.png");
		background-repeat: no-repeat;
		background-size: 1200px 400px;
		position: relative;
		left: 35%;
		transition: 0.2s;
	}

	.info_header{
		width:100%;
		height: 400px;
		background: url("../images/info-header.png");
		position: relative;
		overflow: hidden;
		transition: 0.2s;
	}

	.h1_info_header{
		font-size: 48px;
	}
	
	.h2_info_header{
		font-size: 22px;
	}
	
	.a_info_header{
		font-size: 16px;
		padding: 12px 18px;
	}
}
@media (min-width: 1000px) and (max-width: 1799px){
	.stat{
		width: 45%;
	}

	.slider{
		height: 300px;
		background: url("../images/sliding-empress.png");
		background-repeat: no-repeat;
		background-size: 900px 300px;
		position: relative;
		left: 35%;
		transition: 0.2s;
	}

	.info_header{
		width: 100%;
		height: 300px;
		background: url("../images/info-header.png");
		position: relative;
		overflow: hidden;
		transition: 0.2s;
	}

	.h1_info_header{
		font-size: 36px;
	}
	
	.h2_info_header{
		font-size: 18px;
	}
	
	.a_info_header{
		font-size: 14px;
		padding: 9px 15px;
	}
}
@media (min-width: 600px) and (max-width: 999px){
	.stat{
		width: 540px;
	}

	.slider{
		height: 200px;
		background: url("../images/sliding-empress.png");
		background-repeat: no-repeat;
		background-size: 600px 200px;
		position: relative;
		left: 35%;
		transition: 0.2s;
	}

	.info_header{
		width: 100%;
		height: 200px;
		background: url("../images/info-header.png");
		position: relative;
		overflow: hidden;
		transition: 0.2s;
	}

	.h1_info_header{
		font-size: 24px;
	}
	
	.h2_info_header{
		font-size: 12px;
	}
	
	.a_info_header{
		font-size: 12px;
		padding: 6px 10px;
	}
}
@media (min-width: 400px) and (max-width: 599px){
	.stat{
		width: 90%;
	}

	.slider{
		height: 200px;
		background: url("../images/sliding-empress.png");
		background-repeat: no-repeat;
		background-size: 600px 200px;
		position: relative;
		left: 20%;
		transition: 0.2s;
	}

	.info_header{
		width: 100%;
		height: 200px;
		background: url("../images/info-header.png");
		position: relative;
		overflow: hidden;
		transition: 0.2s;
	}

	.h1_info_header{
		font-size: 22px;
	}
	
	.h2_info_header{
		font-size: 12px;
	}
	
	.a_info_header{
		font-size: 12px;
		padding: 6px 10px;
	}
}
@media (max-width: 399px){
	.stat{
		width: 90%;
	}

	.slider{
		height: 200px;
		background: url("../images/sliding-empress.png");
		background-repeat: no-repeat;
		background-size: 600px 200px;
		position: relative;
		left: 5%;
		transition: 0.2s;
	}

	.info_header{
		width: 100%;
		height: 200px;
		background: url("../images/info-header.png");
		position: relative;
		overflow: hidden;
		transition: 0.2s;
	}

	.h1_info_header{
		font-size: 18px;
	}
	
	.h2_info_header{
		font-size: 10px;
	}
	
	.a_info_header{
		font-size: 12px;
		padding: 6px 10px;
	}
}

.a_info_header{
	font-family: 'Anybody', cursive;
}

.info_header h1{
	position: absolute;
	left: 5%;
	top: 16%;
	color: rgb(255, 250, 175);
	font-family: 'Anybody', cursive;
	z-index: 1;
	letter-spacing: 2px;
	text-shadow: -1px -1px 3px #020202;
	transition: 0.35s;
}

.info_header h2{
	position: absolute;
	left: 5%;
	top: 31%;
	font-family: 'Anybody', cursive;
	z-index: 1;
	text-shadow: -1px -1px 2px #020202;
	letter-spacing: 1px;
	transition: 0.35s;
}

.info_header a{
	position: absolute;
	left: 5%;
	top: 60%;
	font-family: 'Anybody', cursive;
	z-index: 1;
	background-color:rgb(255, 250, 175);
	color: rgb(7, 46, 109);
	font-weight: bold;
	box-shadow: 0px 6px 5px rgba(20, 17, 6, 0.8);
	border-radius: 3px;
	transition: 0.35s;
}

.info_header a:hover{
	background-color: rgb(255, 250, 220);
}

.actual_page p{
	text-shadow: -1px -1px 2px #020202, 
      1px 1px 2px #1b1b1b;
}

.textcontent{
	color: white;
	border-radius:8px;
	text-align:left;
	padding:6px;
	padding-bottom:30px;
	max-width: 1020px;
	background-color:rgba(51, 51, 51, 0.8);
	display: inline-block;
	margin: 4px;
	border: 1px solid #222;
	font-style: italic;
}

#allstats{
	max-width:1028px;
	width:100%;
	display: inline-block;
	margin-top:4px;
}

.textcontent2{
	color: white;
	border-radius:8px;
	text-align:left;
	padding:12px;
	padding-bottom:30px;
	max-width: 1280px;
	background-color:rgba(51, 51, 51, 0.8);
	display: inline-block;
	margin: 4px;
	border: 1px solid #222;
	font-style: italic;
}


.stepcontent{
	color: #102a54;
	border-radius:8px;
	text-align:left;
	padding:10px;
	padding-bottom:30px;
	max-width: 320px;
	background-color:#FFEFD5;
	display: inline-block;
	margin: 4px;
	border: 1px solid #222;
	font-style: italic;
}

.alert {
  padding: 20px;
  background-color: rgba(33, 150, 243, 0.7);
  color: white;
  max-width: 1020px;
  border-radius:5px;
}

.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.closebtn:hover {
  color: black;
}


#coinsHomeBig{
	font-size: 72px;
	color: rgb(255, 204, 0);
}

.page_section h3{
    text-align: center;
    letter-spacing: 3px;
    font-family: 'Anybody', cursive;
    padding: 0;
    margin: 4px;
    margin-top: 20px;
    font-size: 22px;
    color: rgb(255, 250, 175);
}

.stat_text{
    display: inline-block;
    padding: 10px;
}

.step_text p{
    text-indent: 15px;
}

.step_text a{
    text-decoration: none;
    color:cadetblue;
	transition: 0.3s;
}

.step_text a:hover{
	color:rgb(24, 146, 151);
}

.flex_container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: stretch;
}

/* Size changes -- home */

.step{
    text-align: center;
	margin-top: 16px;
	margin-bottom: 8px;
    flex-grow: 1;
	width: 320px;
	max-width: 640px;
    color: white;
	text-shadow: -1px -1px 2px #020202;
}

.step_title{
    font-family: 'Anybody', cursive;
	font-weight: bold;
	color:cadetblue;
}

.step_text{
    font-family: 'Anybody', cursive;
    text-align: justify;
}

.page_section h2{
    text-align: center;
    font-family: 'Anybody', cursive;
    padding: 8px;
    margin: 0;
    color: rgb(255, 250, 175);
}

#page_section_text p{
    text-align: justify;
    text-indent: 15px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 5%;
    padding-right: 5%;
    font-family: 'Anybody', cursive;
}

.stat_value{
    color: cadetblue;
    font-family: 'Anybody', cursive;
    font-weight: bold;
}

.stat_title{
    color: white;
    font-family: 'Anybody', cursive;
}

.stat{
    margin: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
    color: white;
	background-color: rgba(45, 45, 65, 0.5);
	border-radius: 4px;
	overflow: hidden;
	box-shadow: rgba(5, 5, 5, 0.3) 0px 1px 2px 0px, 
				rgba(5, 5, 5, 0.15) 0px 1px 3px 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#stat_offers_bg{
    background: url('../images/home-images/stat_offers.png') no-repeat 50% 50%;
}

#stat_users_bg{
    background: url('../images/home-images/stat_users.png') no-repeat 50% 50%;
}

#stat_items_bg{
    background: url('../images/home-images/stat_items.png') no-repeat 50% 50%;
}

#stat_withdrawals_bg{
    background: url('../images/home-images/stat_withdrawals.png') no-repeat 50% 50%;
}

.stat_image{
    display: inline-block; 
}

@media (min-width: 1600px){ 
	.stat_image{
		width: 100px;
		height: 100px;
	}

	#stat_offers_bg{
		background-size: 80px 80px;
	}
	
	#stat_users_bg{
		background-size: 80px 80px;
	}
	
	#stat_items_bg{
		background-size: 80px 80px;
	}
	
	#stat_withdrawals_bg{
		background-size: 80px 80px;
	}

	.page_section{
		padding-top: 20px;
	}

	.page_section h2{
		font-size: 28px;
		letter-spacing: 3px;
	}

	#page_section_text p{
		font-size: 16px;
		letter-spacing: 1px;
	}

	.step{
		margin-left: 24px;
		margin-right: 24px;
	}

	.step_title{
		font-size: 24px;
		letter-spacing: 2px;
	}

	.step_text{
		font-size: 16px;
		letter-spacing: 1px;
	}

	.step img{
		width: 60px;
		height: 60px;
	}

	.stat_value{
		font-size: 28px;
		letter-spacing: 5px;
	}

	.stat_title{
		font-size: 18px;
		letter-spacing: 1px;
	}

	.stat{
		margin-left: 8px;
		margin-right: 8px;
	}
}

@media (min-width: 650px) and (max-width: 1599px){
	.stat_image{
		width: 80px;
		height: 80px;
	}

	#stat_offers_bg{
		background-size: 60px 60px;
	}
	
	#stat_users_bg{
		background-size: 60px 60px;
	}
	
	#stat_items_bg{
		background-size: 60px 60px;
	}
	
	#stat_withdrawals_bg{
		background-size: 60px 60px;
	}

	.page_section{
		padding-top: 16px;
	}

	.page_section h2{
		font-size: 24px;
		letter-spacing: 2px;
	}

	#page_section_text p{
		font-size: 14px;
		letter-spacing: 1px;
	}

	.step{
		margin-left: 24px;
		margin-right: 24px;
	}

	.step_title{
		font-size: 20px;
		letter-spacing: 1px;
	}

	.step_text{
		font-size: 14px;
		letter-spacing: 1px;
	}

	.step img{
		width: 50px;
		height: 50px;
	}

	.stat_value{
		font-size: 26px;
		letter-spacing: 3px;
	}

	.stat_title{
		font-size: 16px;
		letter-spacing: 1px;
	}

	.stat{
		margin-left: 8px;
		margin-right: 8px;
	}
}

@media (max-width: 649px){
	.stat_image{
		width: 60px;
		height: 60px;
	}

	#stat_offers_bg{
		background-size: 50px 50px;
	}
	
	#stat_users_bg{
		background-size: 50px 50px;
	}
	
	#stat_items_bg{
		background-size: 50px 50px;
	}
	
	#stat_withdrawals_bg{
		background-size: 50px 50px;
	}

	.page_section{
		padding-top: 8px;
	}

	.page_section h2{
		font-size: 18px;
	}

	#page_section_text p{
		font-size: 12px;
	}

	.step{
		margin-left: 5%;
		margin-right: 5%;
	}

	.step_title{
		font-size: 16px;
	}

	.step_text{
		font-size: 12px;
	}

	.step img{
		width: 40px;
		height: 40px;
	}

	.stat_value{
		font-size: 22px;
		letter-spacing: 2px;
	}

	.stat_title{
		font-size: 14px;
		letter-spacing: 1px;
	}

	.stat{
		margin-left: 5%;
		margin-right: 5%;
	}
}