
/* Font */
@import url('https://fonts.googleapis.com/css?family=Bebas+Neue&display=swap');


*{
	box-sizing: border-box;
	font-family: 'Bebas Neue', cursive;
}

body {
	margin: 0;
	background: #f7f7f7;
	overflow: hidden;
}


.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.main-title {
	padding: 50px 50px 80px 50px;
	margin-bottom: 10px;
	font-size: 3em;
	font-weight: bolder;	
	background: #181743;
	border-radius: 0px 0px 50px 50px;
	color: #ffffff;
}


#language {
	padding-bottom: 80px;
	padding-right: 10px;
	font-size: 20px;
	width: 100%;
	text-align: right;
	font-weight: 100;
}

#language > a {
	text-decoration: none;
    color: #fff;
    font-weight: 100;
	margin-left: 5px;
	margin-right: 5px;
}

#language > a:first-of-type {
	margin-left: 0px;
}

#language > a:last-of-type {
	margin-right: 0px;
}
	

hr {
    border: 0px solid #181743;
    border-top: 0px solid #181743;
	margin-bottom: 30px;
	margin-top: 30px;
}


#monthlybets {
	width: 100%;
    text-align: right;
    font-size: 1.2rem;
    margin-bottom: 8px;
	color: #bbbbbb;
}


#main-container {
	position: relative;
	width: 100vw;
	height: 100vh;
	top: 0px;
	left: 0px;
	margin: 0px;
	overflow-x: hidden: !important;
}


#container-wrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	 
	overflow: hidden;
	position: absolute;
	width: 300%;
	height: 100%;
	left: -100%;
	top: 0;
	margin: 0;
	
	-webkit-transition: left 300ms ease-in-out;
	-moz-transition: left 300ms ease-in-out;
	-o-transition: left 300ms ease-in-out;
	transition: left 300ms ease-in-out;

	-webkit-transition-delay: 50ms;
	-moz-transition-delay: 50ms;
	-o-transition-delay: 50ms;	
	transition-delay: 50ms;
}

.item-content {
	flex-grow: 1;
	flex-basis: 0;
	overflow-y: auto;
	overflow-x: hidden;

}
.first-item {
  background: #bf0777;
}
.second-item {
  background: #f7f7f7;
}
.third-item {
  background: #f7f7f7;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 150px;
}



/* YEAR */
.container-year {
	display: flex;
	margin-bottom: 20px;
	height: 60px;
	line-height: 60px;
	color: #ffffff;
	font-size: 2rem;
	text-align: center;
}

.prev-year {
	width: 15%;
	height: 100%;
	border-radius: 5px 0px 0px 5px;
	cursor: pointer;
	background: #bf0777;
	overflow: hidden;
}

.input-year {
	width: 70%;
	height: 100%;
	padding: 12px;
	display: inline-block;
	border: none;
	border-radius: 0;
	text-align: center;
	background: #181743;
	color: #ffffff;
	font-size: 2rem;
	-moz-appearance: textfield;
}
.input-year:focus {
	outline: none;
}

.input-year::-webkit-inner-spin-button, 
.input-year::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
}

.next-year {
	width: 15%;
	height: 100%;
	border-radius: 0px 5px 5px 0px;
	cursor: pointer;
	background: #bf0777;
	overflow: hidden;
}

.input-focus-icon-container {
	position: relative;
	width: 100%;
	height: 300%;
	top: 0;
	left: 0;
	margin: 0;
	background: transparent;	
	
	-webkit-transition: top 150ms ease-in-out;
	-moz-transition: top 150ms ease-in-out;
	-o-transition: top 150ms ease-in-out;
	transition: top 150ms ease-in-out;	
}

.input-focus-icon {
	width: 100%;
	height: 33%;
	position: relative;
	display: flex;
}




#goto-statistics {
	position:relative;
	margin-bottom: 50px;
	width: 100%;
	height: 40px;
	left: 0px;
	top: 0px;
	display: flex;
	justify-content: flex-end;
}

#goto-statistics > div {
	width: 40px;
	height: 40px;
	background: #181743;
	position: relative;
	border-radius: 6px;
	color: #fff;
	font-size: 20px;
	text-align: center;
	line-height: 40px;
	cursor: pointer; 
}


.small-button-container {
	margin-bottom: 15px;
	display: flex;
	height: 40px;
	line-height: 40px;
	color: #ffffff;
	font-size: 1.2rem;
	text-align: center;	
}

.small-button-icon {
	width: 40px;
	height: 40px;
	border-radius: 5px 0px 0px 5px;
	cursor: pointer;
	background: #bf0777;	
}

.small-button-description {
	width: auto;
	height: 40px;
	padding: 0px 15px 0px 15px;
	border-radius: 0px 5px 5px 0px;
	text-align: center;
	cursor: pointer;
	background: #181743;
}

#most-betted-months-container {
	position: relative;
	width: 100%;
    height: 0;
	overflow: hidden;
	
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;

	-webkit-transition-delay: 50ms;
	-moz-transition-delay: 50ms;
	-o-transition-delay: 50ms;	
	transition-delay: 50ms;
}

#most-betted-months {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#doomsday-predictions-container {
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
	
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;

	-webkit-transition-delay: 50ms;
	-moz-transition-delay: 50ms;
	-o-transition-delay: 50ms;	
	transition-delay: 50ms;
}

#doomsday-predictions {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}




#doomsday-prediction-quotes {
	padding: 0px 25px 0px 100px;
    width: 100%;
	height: 0px;
    text-align: left;
    background: #181743;
    position: relative;
    margin-top: 10px;
    margin-bottom: 30px;
	overflow: hidden;
	
	-webkit-transition: all 350ms ease-in-out;
	-moz-transition: all 350ms ease-in-out;
	-o-transition: all 350ms ease-in-out;
	transition: all 350ms ease-in-out;
}

#doomsday-prediction-quotes > * {
	color: #ffffff;
}



#quotes-svg {
	position: absolute;
	width: 40px;
	top: 30px;
	left: 30px;
}


.small-result-container {
	width: 100%;
	height: auto;
	background: #181743;
	color: #fff;
	border-radius: 5px;
    overflow: hidden;
	margin-bottom: 15px;
	cursor: pointer;
}

.small-result-title {
	position: relative;
	width: 100%;
	height: auto;
	background: #37366d;
	padding: 5px;
	
	text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.small-result-body {
	position: relative;
	width: 100%;
	height: auto;
	background: transparent;
	padding: 5px;
	
	text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.daily-bet-container {
	width: 100%;
	height: auto;
	background: #181743;
	color: #fff;
	border-radius: 5px;
    overflow: hidden;
	margin-bottom: 15px;
}

.daily-bet-title {
	position: relative;
	width: 100%;
	height: auto;
	background: #37366d;
	padding: 5px;
}

.daily-bet-body {
	position: relative;
	width: 100%;
	height: auto;
	background: transparent;
	padding: 5px;
}






/* MONTH */
.container-month {
	display: flex;
	margin-bottom: 20px;
	height: 60px;
	line-height: 60px;
	color: #ffffff;
	font-size: 2rem;
	text-align: center;
}

.prev-month {
	width: 15%;
	height: 100%;
	border-radius: 5px 0px 0px 5px;
	cursor: pointer;
	background: #bf0777;
}

.input-month {
	width: 70%;
	height: 100%;
	background: #181743;
}

.next-month {
	width: 15%;
	height: 100%;
	border-radius: 0px 5px 5px 0px;
	cursor: pointer;
	background: #bf0777;
}



.today {
	
	box-sizing: content-box; margin-left: -10px; margin-right: -10px; height: 80px !important; font-size: 250%;

border-radius: 5px;

-webkit-box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.4);
-moz-box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.4);
box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.4);
}

.today > .input-day {
	display: flex; justify-content: center; align-items: center;
	width: calc(15% + 10px);

/*	
border: 2px solid #ffffff;
*/
border-right: 0px;
}

.today > .info-day {
	position: relative; display: flex; justify-content: center; align-items: center;

/*	
border: 2px solid #ffffff;
*/
border-left: 0px;
}

.today > .info-day > div {
	color:white;position:absolute;right: 15px;top: -6px;padding: 6px;border-radius: 3px;font-size: 12px;display: inline-block;line-height: 12px;background-color: #bf0777;
}


















#doomsday-predictions-filter-pool {
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap
	
	
	
	position: relative;
	width: 100%;
	height: 0;
	background: #f1efef;
	overflow-x: auto;
	overflow-y: hidden;
	color: #bf0777;
	
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;

	-webkit-transition-delay: 50ms;
	-moz-transition-delay: 50ms;
	-o-transition-delay: 50ms;	
	transition-delay: 50ms;
}

.filter-pool-item {
	position: relative;
	cursor: pointer;
	display: inline-block;
	text-align: center;
	padding: 10px;
	border-radius: 6px;
	margin: 15px;
	border: 2px solid #bf0777;
}


.filter-pool-input {
  display: none;
}

.filter-pool-input:checked  + .filter-pool-item {
	background: #bf0777 !important;
	color: #fff;
}




/* DAY */
.container-day {
	display: flex;
	height: 60px;
	line-height: 60px;
	margin-bottom: 20px;
	color: #ffffff;
	font-size: 2rem;
	text-align: center;
}

.input-day {
	width: 15%;
	height: 100%;
	border-radius: 5px 0px 0px 5px;
	cursor: pointer;
	background: #bf0777;
}

.input-day-weekend {
	background: #bbbbbb;
}

.info-day {
	width: 85%;
	height: 100%;
	border-radius: 0px 5px 5px 0px;
	text-align: center;
	cursor: pointer;
	background: #181743;
}

.past {
	opacity: 0.75;
}



.page-close {
    margin-right: 0;
    font-size: 32px;
    width: 32px;
    height: 32px;
    cursor: pointer;
}


#container-all-days {
	margin-bottom: 80px;
}




/* OFFICIAL ICON FOR DAILY BETS */
.official-icon {
	float: right;
    margin-right: 3px;	
}

.activation-icon {
	float: right;
    margin-right: 3px;	
}




/* DAILY BETS PAGE */
.third-header-container {
	font-size: 3em;
	width: 100%;
	height: auto;
	position: relative;
	margin-top: 100px;
	margin-bottom: 50px;
	display: flex;
	justify-content: flex-start;
	flex-wrap: nowrap;
}

.third-header-title {
	margin-right: auto;
}

.add-new-bet-container {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

#add-new-bet-button {
	cursor: pointer;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #fff;
	z-index: 99;
	display: flex;
	
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
}

#add-new-bet-button > svg > path {
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
}

#add-new-bet-form {
	overflow: hidden;
	padding-top: 50px;
	margin-bottom: 50px;
	height: 0;
	background: transparent;
	position: relative;
	width: 100%;
	margin-top: -25px;
	z-index: 98;
	border-top: 2px solid #333;

	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}

.anb-form-category {
	margin-top: 0px;
	margin-bottom: 50px;
	flex-wrap: nowrap;
	display: flex;
	scroll-snap-type: x mandatory;
	overflow-y: hidden;
	width: 100%;
	height: auto;
	position: relative;
}

.anb-form-category-item {
	cursor: pointer;
	color: #181743;
	padding: 20px;
	margin-right: 5px;
	margin-left: 5px;
	scroll-snap-align: center;
	height: 120px;
	width: 200px;
	flex: 0 0 200px;
	background: transparent;
	border-radius: 10px;
	border: 2px solid #181743;
}

.anb-form-category label:first-of-type .anb-form-category-item {
	margin-left: 0px;
}

.anb-form-category label:last-of-type .anb-form-category-item {
	margin-right: 0px;
}

.anb-form-category-input {
	display: none;
}

.anb-form-category-input:checked  + .anb-form-category-item {
	background-color: #181743 !important;
	color: #fff;
}

/* FORM ADD NEW BET */
.anb-form-input-container {
	display: flex;
	margin-bottom: 15px;
	background: #fff;
	border-radius: 5px;
	
	box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.anb-form-input-container > input {
	font-size: 16px;
}

.anb-form-input-container > input:invalid {
	border: 1px solid red;
}

.anb-form-input-container > textarea {
	font-size: 16px;
}

.anb-form-input-container > textarea:invalid {
	border: 1px solid red;
}

#add-new-bet-submit {
	background: #bf0777;
	cursor: pointer;
	outline: 0;
	border: none;
	color: white;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
}

#add-new-bet-submit:disabled, #add-new-bet-submit[disabled] {
	background: #dddddd;
	cursor: default;
}






/* FORM RESPONSE */
.response-form-input-container {
	display: flex;
	margin-bottom: 15px;
	background: #fff;
	border-radius: 10px;
}

.response-form-input-container > input {
	font-size: 16px;
}

.response-form-input-container > input:invalid {
	border: 1px solid red;
}

.response-form-input-container > textarea {
	font-size: 16px;
}

.response-form-input-container > textarea:invalid {
	border: 1px solid red;
}

#response-submit {
	background: #bf0777;
	cursor: pointer;
	outline: 0;
	border: none;
	color: white;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
}

#response-submit:disabled, #response-submit[disabled] {
	background: #dddddd;
	cursor: default;
}






.success-msg {
    width: 100%;
    height: auto;
    position: relative;
    background: rgba(223, 242, 191, 0.7);
    padding: 15px 50px 30px 50px;
    margin-bottom: 25px;
}




.error-msg {
    width: 100%;
    height: auto;
    position: relative;
    background: rgba(255, 186, 186, 0.7);
    padding: 15px 50px 30px 50px;
    margin-bottom: 25px;
}






/* PRE-LOADER */
.spinner {
	display: none;
	
  margin: 0;
  width: 54px;
  text-align: center;
}

.spinner > div {
  width: 14px;
  height: 14px;
  margin-right: 2px;
  background-color: #333;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}




.statistics-container {
	padding: 50px;
	width: 100%;
	height: 500px;
	background: #fff;
	border-radius: 10px;
	margin-bottom: 80px;
}




.footer {
	width: 100%;
    height: 300px;
    position: relative;
    background: #151515;
    padding-left: calc(15% + 15px);
    padding-right: calc(15% + 15px);
    padding-top: 80px;
    padding-bottom: 80px;
    color: #fff;	
}







/* statistics */
@media(max-width:400px){

	.statistics-container {
		height: 400px;
	}
	
}









/* 475px or less */



/* 767px or less (476px) */
@media(min-width:476px){

	.small-result-container {
		width: 48% !important;
	}
	
}



/* 992 or less (768px) */
@media(min-width:768px){
	
	.container {
		width: 750px;
	}
	
	.small-result-container {
		width: 31% !important;
	}
	
}



/* 1200 or less (992px) */
@media(min-width:992px){
	
	.container {
		width: 970px;
	}
	
	.small-result-container {
		width: 24% !important;
	}
	
	.filter-pool-item {
		min-width: 120px;
	}

}



/* 1200px or more */
@media(min-width:1200px){
	
	.container {
		width: 1170px;
	}
  
	.small-result-container {
		width: 19% !important;
	}
	
	.filter-pool-item {
		min-width: 150px;
	}
  
}