	* {
	 margin:0;
	 padding:0;
	 box-sizing: border-box; /* include padding and borders when setting element widths */
	 list-style-type: none;
	}

	a {
		text-decoration: none;
	}

	html {
		font-family: "Anek Odia";
		font-size: calc(15px + 0.390625vw);
		}

	body {
		width: 100%;
		color:#D3D3D3;
		background: #1E1E1E;
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		justify-content: flex-start;
		align-items: center;
		}
	
	#page {
		background: #040707;
		width: 100%;
		max-width: 1200px;
		}

	input {
		display: none;
		}

	.btn_b_l {
	  color: #D3D3D3;
	  background: #FAE700;
	  text-align: center;
	  text-decoration: none;
	  border: 0;
	  outline: 0;
	  padding: 0.3rem 0.8rem 0.1rem 0.8rem;
	  display: inline-block;
	  transform: skew(21deg);
	  border-radius: 0.4rem;
	  letter-spacing: 0.05rem;
	  text-transform: uppercase;
	  vertical-align: middle;
	  transition: .3s ease-in-out;
	  font-weight: 400;
	  cursor: pointer;
	  margin-left: 0.5rem;
	}

	.btn_b_l a {
	  color: #040707
	}

	.btn_b_l > span {
	  font-size: 0.6rem;
	  width: fit-content;
	  white-space: nowrap;
	  display: inline-block;
	  transform: skew(-21deg);
	  transition: .3s ease-in-out;
	}

	.btn_b_l:hover {
	  color: #D3D3D3;
	  background: #FAE700;
	  text-align: center;
	  text-decoration: none;
	  border: 0;
	  outline: 0;
	  padding: 0.3rem 0.8rem 0.1rem 0.8rem;
	  display: inline-block;
	  transform: skew(-21deg);
	  border-radius: 0.4rem;
	  letter-spacing: 0.05rem;
	  text-transform: uppercase;
	  vertical-align: middle;
	}

	.btn_b_l:hover > span {
	  font-size: 0.6rem;
	  width: fit-content;
	  white-space: nowrap;
	  display: inline-block;
	  transform: skew(21deg);
	}

	.btn_up {
		display: flex;
		flex-flow: row;
		align-content: center;
		justify-content: center;
		align-items: center;
		width: 1.5rem;
		height: 1.5rem;
		background-color: #FAE700;
		border-radius: 0.25rem;
		padding-top: 0.25rem;
		font-size: 70%;
		color: #040707;
	}
	

a.anchor {
    display: block;
    position: relative;
    top: -5rem;
    visibility: hidden;
}

#tm_helper input {
	display: unset;
	}
	
#cookieconsent {
	z-index: 1000;
 	border: 1px solid #FAE700;
 	color: #D3D3D3 ;
 	position: sticky;
 	bottom: 0px;
 	max-width: 1200px ;
 	padding: 1rem;
 	background-color: black;
 	margin: 0 auto ;
}

#cookieconsent a { 
 	color: #D3D3D3 ;
 	text-decoration: underline;
}

#cookieconsent .btn_b_l {
    position: absolute;
    top: 40%;
    right: 1rem;
}

#cookieconsent .btn_b_l a { 
 	color: #040707 ;
 	text-decoration: none;
}

#cookieconsent h2 { 
 	font-size: 0.8rem;
}

#cookieconsent p {
	margin-right: 6rem;
 	font-size: 0.7rem;
}

#cookieconsent .nobs {
	margin-right: 6rem;
 	font-size: 0.7rem;
}

#cookieconsent .nobs label {
	vertical-align: middle;
}

@media only screen and (max-width: 888px) {
	#cookieconsent .nobs>span {
		display: block ;
		margin-left: 0;
	}
}

@media only screen and (min-width: 889px) {
	#cookieconsent .nobs>span {
		display: inline-block ;
		margin-left: 1rem;
	}

	#cookieconsent .nobs>span:first-child {
		margin-left: 0;
	}
}

 /* Slider */
 /* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width:30px;
  height: 17px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:disabled + .slider {
  background-color: #ccc;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(13px);
  -ms-transform: translateX(13px);
  transform: translateX(13px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 17px;
}

.slider.round:before {
  border-radius: 50%;
} 
