/* reset */
*{
	padding: 0;
	border: 0;
	margin: 0;
	box-sizing: border-box;
}
html{
	font-size: 10px;
}
body{
	font-size: 1.6rem;
	font-family: Helvetica, sans-serif, Arial;
	color: var(--text-color-white);
	background-color: var(--bg-color);
}
ol, ul{
	list-style-type: none;
}
a{
	text-decoration: none;
	color: inherit;
}
.container{
	width: 73%;
	margin: auto;	
}
.fluid{
	width: 100%;
	border-radius: 20px;
}
/* .pb-0{
    padding: 2rem 0 0 0 !important;
}*/
/* variable : can change text colors in collective */
:root {
	--bg-color: #161C2C;
	--bg2-color: #101526;
	--bg-color-blue: #293043;
	--bg-color-activeblue: #465170;
    --text-color-white: #FFFFFF;
    --text-color-grey: #B1B1B1;
    --text-color-green: #8FCA4C;
    --text-color-lightgreen: #C3FFC9;
}
.line{
	border-bottom: 2px solid var(--bg-color-activeblue);
	width: 45%;
	display: inline-block;
	margin-bottom: .5rem;
}



/* ------------LOGIN-PAGE------------ */
.main{
	padding: 8rem 0 5rem 0;
}
/* ------------top------------ */
.top__title{
	font-size: 2.7rem;
	font-weight: 700;
	font-family: Arial, Helvetica, sans-serif;
}
.top__text{
	font-size: 2rem;
	font-weight: 300;
	color: var(--text-color-grey);
}


/* ------------content------------ */
.content{
	padding: 2rem 0 4rem 0;
	display: flex;
	justify-content: space-between;
	min-height: 80%;
}
/* ------content-left------ */
.sidebar__left{
	flex-basis: 24%;
}
.logo{
	background-color: var(--bg-color-blue);
	border-radius: 5px;
	padding: 1.5rem ;
	height: 90.563px;
}
.logo__img{
	background-color: var(--bg2-color);
	border-radius: 5px;
	padding: 1rem 2rem;
	display: block;
	width: 100%;
	text-align: center;
}
.nav__link{
	display: block;
	background-color: var(--bg-color-blue);
	border-radius: 5px;
	width: 96%;
	margin: 1rem auto;
	padding: .8rem 0;
	position: relative;
}
.nav__link p{
	background-color: var(--text-color-green);
	width: 104%;
	padding: .8rem 0;
	position: relative;
	left: -2%;
	text-align: center;
	font-weight: 700;
	z-index: 2;
	font-size: 2rem;
	transition: all .1s;
}
.nav__link p:hover{
	transform: scale(1.01);
}
.nav__link p::before, .nav__link p::after{
	content: '';
	display: inline-block;	
	position: absolute;
	bottom: 0;	
	transform: translateY(100%);
}
.nav__link p::before{
	border-top: 5px solid var(--text-color-green);
	border-left: 5px solid transparent;
	left: 0;	
}
.nav__link p::after{
	border-top: 5px solid var(--text-color-green);
	border-right: 5px solid transparent;
	right: 0;
}
.nav__link.active{
	background-color: var(--bg-color-activeblue) ;
	
}
/* ------content-middle------ */
.content__inner{
	flex-basis: 50%;
}
.content__inner__item{
	display: none;
}
.content__inner__item.active{
	display: initial;
}
.content__inner__top{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 120.563px;
	background-color: var(--bg-color-blue);
	border-radius: 5px;
	padding: 1.5rem ;
	margin-bottom: 1rem;
	font-weight: 300;
}
.content__title{
	font-size: 14px;
	font-weight: 700;
	margin-bottom: .8rem;
}
.content__text{
	font-size: 14px;
}
.content__inner__top__right{
	height: 100%;
	margin-top: 40px;
}
.content__text__right{
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	font-size: 1.9rem;
}
.content__text__right span{
	font-size: 1.7rem;
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}
.content__text__right img{
	margin-right: 1rem;
	width: 2rem;
}
.content__inner__bottom{
	background-color: var(--bg-color-blue);
	border: 1px solid var(--bg-color-blue);
	border-radius: 5px;
}
.content__item{
	display: flex;
	align-items: center;
	padding: .7rem 1.5rem ;
}
.content__item:nth-child(even), .picture__quiz:nth-child(even){
	background-color: var(--bg-color);
}
.content__item:nth-child(even) div:first-child, .picture__quiz:nth-child(even) .picture__quiz__item-1 div:first-child{
	background-color: var(--bg-color-blue);
}
.content__item div:first-child, .picture__quiz__item-1 div:first-child{
	font-size: 1.7rem;
	width: 3.6rem;
	height: 3.6rem;
	border-radius: 50%;
	background-color: var(--bg-color);
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 1.5rem;
}
.content__item div:nth-child(3){
	margin-left: auto;
}
.content__item div:last-child span{
	margin-left: auto;
}
.item_date{
	font-size: 1.5rem;
	font-weight: lighter;
	color: var(--text-color-green);
}
.item_league{
	font-size: 1.4rem;
	font-weight: lighter;
	margin: .4rem 0;
}
.item_team{
	font-weight: 700;
	
}
.guess{
	display: inline-block;
	line-height: 4.6rem;
	text-align: center;
	width: 4.2rem;
	height: 4.2rem;
	background-color: var(--text-color-green);
	border-radius: 5px;
	
	font-weight: 700;
}
.light--green{
	background-color: var(--text-color-lightgreen);
	color: var(--bg2-color);
}
.red{
	background-color: #7A1C19;
}
/* ------content-right------ */
.sidebar__right{
	flex-basis: 24%;
	align-self: flex-start;
	min-height: 570px;
	background-color: var(--bg-color-blue);
	border-radius: 5px;
	padding: 1.5rem .5rem;
}
.sidebar__right__input{
	width: 100%;
	padding: 1.2rem 1.5rem;
	background-color: var(--bg2-color);
	color: var(--text-color-white);
}
.sidebar__right__input::placeholder{
	color: var(--text-color-white);
	font-size: 1.8rem;
	font-weight: 300;
}
.award{
	font-size: 1.2rem;
	/* text-align: center; */
	color: var(--text-color-grey);
}


/* ------------footer------------ */
footer{
	margin: auto;
	width: 24rem;
}



/* ------------INDEX-PAGE------------ */
.sidebar__right__id{
	font-size: 2.4rem;
	font-weight: 700;
	padding: 1.5rem 1.5rem 0 1.5rem ;
}
.sidebar__right__idno{
	font-size: 2rem;
	padding: 1rem 1.5rem 2rem 1.5rem ;
}
.sidebar__right__title{
	font-size: 2rem;
	font-weight: 700;
	background-color: var(--text-color-green);
	position: relative;
	/* left: 0;
	width: 100%; */
	left: -2%;
    width: 104%;
	padding: .8rem 1.5rem ;
	text-align: center;
}
.sidebar__right__text{
	font-size: 1.5rem;
	font-weight: 300;
	padding: 1rem 1.5rem 0 1.5rem ;
	overflow: auto;
	height: 100%;
	padding-bottom: 150px;
}
.none{
	display: none;
}




/* ------------SKORE-EVENT-PAGE------------ */
.light--green-2{
	background-color: var(--text-color-lightgreen);
    color: var(--bg2-color);
	margin: 0 .3rem;
}
.guess__input{
	width: 50%;
	background-color: transparent;
	border-bottom: 2px solid var(--bg-color-activeblue);
	outline: none;
	font-size: 1.6rem;
	text-align: center;
	color: var(--bg-color);
	font-weight: 600;
}
.guess__input::-webkit-inner-spin-button, 
.guess__input::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  appearance: none;
  margin: 0; 
}



/* ------------QUIZ-EVENT-PAGE------------ */
.quiz{
	align-items: flex-start;
}
.quiz__title{
	color: var(--text-color-lightgreen);
	font-weight: 700;
	font-size: 1.6rem;
	margin-top: 1rem;
}
.quiz__answer{
	position: relative;
	font-size: 1.4rem;
	font-weight: 700;
}
.quiz__answer label{
	width: 100%;
	display: inline-block;
	background-color: #76A28A;
	padding: .8rem 1rem .8rem 3rem;
	margin-bottom: 1rem;
	transition: all .2s;
}
.quiz__answer input{
	position: absolute;
	top: 25%;
	left: .7rem;	
}
.quiz input[type="radio"]:checked+label {
	background-color: var(--text-color-green);
	color: white;
}



/* ------------QUIZ-DETAIL-EVENT-PAGE------------ */
.quiz__detail__input{
	background-color: transparent;
	border-bottom: 2px solid var(--bg-color-activeblue);
	padding: 1.2rem 0 0 .5rem ;
	outline: none;
	color: var(--text-color-white);
	font-size: 1.6rem;
}




/* ------------QUIZ-DETAIL-EVENT-PAGE------------ */
.picture__quiz{
	padding: 2rem;
}
.picture__quiz__item-2{
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
}
.picture__quiz__img{
	width: 50rem;
	border-radius: 20px;
	margin-top: 10px;
}



/* buttons */
.btn{
	padding: .8rem 3rem;
    background-color: var(--text-color-green);
	border-radius: 5px;
	transition: all .2s;
    cursor: pointer;
    font-size: 1.8rem;
	color: var(--text-color-white);
}
.btn--red{
	background-color: #7A1C19;
}
.submit{
	margin: 1rem auto 1rem auto;
	width: 100%;
}
.btn:hover{
	background-color: rgba(136, 204, 83, .8);
}
.btn--red:hover{
	background-color: rgba(122, 28, 25, .8);
}
.buttons{
	display: flex;
	justify-content: space-between;
	position: fixed;
	width: 100%;
	bottom: 0;
	padding: 2rem;
	background-color: var(--bg2-color);
	display: none;
}
.buttons .btn{
	flex-basis: 49%;
	display: inline-block;
	padding: 1.5rem 0;
}
.btn__close{
	position: absolute;
	bottom: 2%;
	right: 5%;
	display: none;
}
.btn__left{
	left: 5%;
}
.blur{
	filter: blur(1px);
	transition: all .8s ease;
}

/* modal */
.modal{
	width: 25%;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -45%);
    background-color: var(--bg2-color);
    border-radius: 10px;
	box-shadow: 0 0 0 100vw rgba(16, 20, 33, .6);
    padding: 4rem;
    color: #fff;
	z-index: 500;
	font-size: 1.6rem;
	text-align: center;
	filter: blur(0px) !important;
	display: none;
}
.main-blur{
	filter: blur(2px);	
}
.modal button{
	padding: .5rem 3rem;
}
.modal h3{
	margin-bottom: 2rem;
}

.joined {
	border: solid 3px #8fca4c;
	border-radius: 14px;
	padding: 5px;
	padding-right: 15px;
}

.not-joined {
	border: solid 3px red;
	border-radius: 14px;
	padding: 5px;
	padding-right: 15px;
}

.join-icon {
	color:#8fca4c;position:absolute;right: -9px;top: -4px;background-color:var(--bg-color-blue);width: 22px;height: 20px;text-align: center;
}

.not-join-icon {
	color:red;position:absolute;right: -9px;top: -4px;background-color:var(--bg-color-blue);width: 22px;height: 20px;text-align: center;
}

.position-relative {
	position: relative;
}




/* -----------responsive----------- */
@media all and (max-width: 1800px){
	.container{
		width: 75%;
	}
	.nav__link p{
		font-size: 1.8rem;
	}
}
@media all and (max-width: 1570px){
	.container{
		width: 80%;
	}
	.nav__link p{
		font-size: 1.8rem;
	}
}
@media all and (max-width: 1475px){
	.container{
		width: 92%;
	}
	html{
		font-size: 9.5px;
	}
	.nav__link p{
		font-size: 1.6rem;
	}
}
@media all and (max-width: 1200px){
	.container{
		width: 96%;
	}
}
@media all and (max-width: 1125px){
	.container{
		width: 100%;
	}
	html{
		font-size: 8.5px;
	}
	.modal{
		width: 30%;
	}
	.mw156{
		min-width: 176px !important;
	}
}
@media all and (max-width: 992px){
	.container{
		position: relative;
	}
	.content__inner{
		flex-basis: 100%;
	}
	.sidebar__left{
		flex-basis: 50% !important;
		width: 60%;
		position: fixed;
		height: 100%;
		top: 0;
		left: -110%;
		background-color: var(--bg-color);
		padding: 15rem 2rem 2rem 2rem;
		border-right: 1px solid var(--bg-color-activeblue);
		z-index: 3;
		transition: all .8s ease;
	}
	.sidebar__right{
		flex-basis: 50% !important;
		width: 60%;
		position: fixed;
		height: 100%;
		top: 0;
		right: 0;
		right: -110%;
		background-color: var(--bg-color);
		padding: 15rem 0 2rem 2rem;
		border-radius: 0;
		border: none;
		border-left: 1px solid var(--bg-color-activeblue);
		z-index: 3;
		transition: all .8s ease;
	}
	.left{
		left: -0%;
		transition: all .8s ease;
	}
	.right{
		right: -0%;
		transition: all .8s ease;
	}
	.buttons{
		display: flex;
	}
	.btn__close{
		display: initial;
	}
	.sidebar__right__title {
		left: -14px;
		width: 105%;
	}
	.content__inner__top__right {
		height: auto;
	}
	.top{
		padding: 1.5rem;
	}
	.modal{
		width: 37%;
	}
	.mdl img{
		width: 2.2rem !important;
	}
	footer {
		position: absolute;
		top: 7%;
		right: 5%;
	}
	.logo__img {
		width: 71%;
		margin: auto;
	}
}
@media all and (max-width: 768px){
	.modal{
		width: 45%;
	}
	.logo__img {
		width: 94%;
	}
}
@media all and (max-width: 576px){
	html{
		font-size: 7px;
	}
	.sidebar__left, .sidebar__right{
		width: 300px;
	}
	.content__title {
		font-size: 2rem;
	}
	.modal{
		width: 60%;
	}
}
@media all and (max-width: 400px){
	html{
		font-size: 7px;
	}
	.content__item div:nth-child(3) {
		min-width: 130px;
	}
	.mw156{
		min-width: 156px !important;
	}
	.content__item {
		display: flex;
		align-items: center;
		padding: .7rem 0.5rem;
	}
	.modal{
		width: 65%;
		padding: 4rem 2rem;
	}
}
@media all and (max-width: 350px){
	.modal{
		width: 75%;
	}
}