body {
	margin: 0;
	font-size:16px;
	height: 100%;
	width: 100%;
	/* min-width:320px; */
	padding:0;
	 box-sizing: border-box;
	-webkit-user-select: none; /* Safari */
	-ms-user-select: none; /* IE 10 and IE 11 */
	user-select: none; /* Standard syntax */	
	font-family: "Roboto", "Helvetica", "Arial", sans-serif;
	font-family: "WDXL Lubrifont SC", sans-serif;
	justify-content: space-around;
	position: fixed;
	overflow: hidden;
	background-image: url("background.jpg");
	background-size: cover;
	/* background-color: white; */
	color: white;
}

.circles {
	background: #29a3a3;
	position: relative;
	z-index: 2;
	border-radius: 10em;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 6px 6px 20px 6px orange;
}

.symbols {
	font-variation-settings: 'FILL' 0;
	transition: font-variation-settings 0.5s; 
}

.circles:hover {
	background: #196666;
}

.circles:hover .symbols {
	font-variation-settings: 'FILL' 1;
}

.icon_img {
	position: absolute;
	z-index: 5;
	width: 100%;
	top: 0px;
}
.icon_img_2 {
	height: 50px;
	width: fit-content;
}

.control_buttons {
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
	position: absolute;
}
.control_buttons_2 {
	display: flex;
	position: absolute;
	width: 120px;
	align-items: center;
	justify-content: space-around;
}

.control_icon {
	background: orange;
	padding: 8px;
	border-radius: 10em;
	display: flex;
	flex-direction: row;
	align-items: center;
	font-size: 24px;
	cursor: pointer;
}

.control_icon:hover {
	font-variation-settings: 'FILL' 1;
	background:	#b35f00;
}

.progress_bar {
	width: 83%;
	left: 8.5%;
	position: absolute;
	display: flex;
	justify-content: space-evenly;
    align-items: center;
}

.progress_bar_2 {
	left: 420px;
	width: 300px;
	top: 24px;
	position: absolute;
	display: flex;
	justify-content: space-evenly;
    align-items: center;
}

.progress_outer {
	width: 100%;
	margin: 4px;
	position: relative;
	height: 20px;
	border: 2px solid orange;
	display: flex;
}

.progress_inner {
	height: 12px;
	top: 4px;
	left: 4px;
	background: orange;
	position: relative;
}

#xp_div {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#finished_hole {
	opacity: 0;
	transition: opacity, 1s;
	transition-delay: 1s;
}

#num_shots {
	opacity: 0;
	transition: opacity, 1s;
	transition-delay: 2s;
}

@media (max-width:1000px) {
	.progress_bar_2 {
		width: 150px;
	}
	.progress_bar_2:#upper_level {
		display: none;
	}
	.progress_bar_2:.progress_outer {
		margin-right: 16px;
	}
}

@media (max-width:760px) {
	.progress_bar_2 {
		width: calc(100% - 420px);
		
	}
	#upper_level {
		display: block;
	}
	.progress_bar_2:.progress_outer {
		margin-right: 4px;
	}
}

@media (max-width:570px) {
	.progress_bar_2 {
		width: calc(100% - 330px);
		left: 330px;
		top: 0px;
	}
}

@media (max-width:500px) {
	.progress_bar_2:#upper_level {
		display: none;
	}
	.progress_bar_2:.progress_outer {
		margin-right: 16px;
	}
}

@media (max-width:460px) {
	.progress_bar_2:#upper_level {
		display: none;
	}
	.progress_bar_2:.progress_outer {
		display: none;
	}
}

@media (max-width:385px) {
	.progress_bar_2 {
		display: none;
	}
}

@media (min-width:570px) {
	.icon_img {
		width: 50%;
	}
	.icon_img_2 {
		height: 100px;
	}
	.control_buttons {
		flex-direction: row;
	}
	.control_icon {
		font-size: 32px;
	}
	.progress_bar {
		width: 50%;
	}
}

@media (min-width:1050px) {
	.icon_img {
		width: 25%;
	}
	.control_icon {
		font-size: 40px;
	}
	.progress_bar {
		width: 25%;
	}
}

h1 {
	position: absolute;
	color: white;
	z-index: 3;
	margin: 4px;
	font-size: 32px;
	left: 44px;
}

h2 {
	position: absolute;
	z-index: 1;
	margin: 4px;
	max-width: calc(100% - 60px);
	text-shadow: 0 0 10px #ff0000, 0 0 10px #ff0000, 0 0 10px #ff0000;
}

p {
	font-size: 18px;
    width: fit-content;
    margin: 4px;
    position: relative;
}

#island {
	position: absolute;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.background_img {
    width: unset;
    height: 100%;
    position: absolute;
    /* bottom: 60px; */
}

@media (max-width:420px) {
	.background_img {
		width: 100%;
		height: unset;
	}
}

.menu {
    z-index: 3;
    position: absolute;
    top: 50px;
    font-size: 32px;
    margin: 16px;
    height: calc(100% - 142px);
    display: flex;
    flex-direction: row;
    width: calc(100% - 32px);
    overflow-x: hidden;
    overflow-y: auto;
    align-items: center;
    flex-wrap: wrap;
	display: none;
}
::-webkit-scrollbar {
	width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
	background: lightblue;
	border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
	background: #29a3a3; 
	border-radius: 8px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #196666;
	cursor: pointer;
}

#footer {
	position: absolute;
	width: 100%;
	height: 60px;
	bottom: 0px;
	z-index: 8;
	background: #29a3a3;
	display: flex;
	justify-content: space-around;
}

.footer_item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100px;
	cursor: pointer;
}

.more_div {
	position: absolute;
	width: 200px;
	height: 100%;
	background: #29a3a3;
	z-index: 7;
	right: 0px;
	/* justify-content: center; */
	display: none;
	flex-direction: column;
	align-items: center;
	animation: more_div_animate 0.5s;
	animation-fill-mode: forwards;
}

@keyframes more_div_animate {
	0% {bottom: -300px; opacity: 0;}
	100% {bottom: 0px; opacity: 1;}
}

.more_content {
	font-size: 24px;
    margin: 24px;
	cursor: pointer;
	text-align: center;
}

.more_overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background: none;
	z-index: 6;
	display: none;
}

.selection_container {
	position: absolute;
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	/* text-shadow: 12px 12px 2px orange; */
}

.selection_container_list {
	position: absolute;
	/* display: flex; */
	width: 100%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	overflow: auto;
	display: block;
}

.selection_box {
	height: calc(33% - 48px);
	width: calc(100% - 32px);
	/* background: rgba(0,0,0,0.5); */
	margin: 8px;
	display: flex;
	align-items: center;
	font-size: 36px;
	transition: font-size 0.5s;
	cursor: pointer;
}

.selection_box:hover {
	font-size: 46px;
}

.selection_img {
	height: calc(100% - 32px);
	margin: 16px;
}

@media (max-width: 470px) {
	.selection_img {
		height: unset;
		width: 34%;
	}
	.selection_box {
		font-size: 20px;
	}
	.selection_box:hover {
		font-size: 20px;
	}
}

.list_box {
	width: calc(100% - 32px);
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	margin-left: 16px;
	margin-right: 16px;
	font-size: 22px;
	cursor: pointer;
}

.info_p {
	/* font-size: 14px; */
	margin: 8px;
	width: 500px;
	/* text-shadow: 12px 12px 2px orange; */
}

@media (max-width: 470px) {
	.info_p {
		display: none;
	}
	.list_box {
		text-align: center;
	}
}

.container {
	background: black;
	color: white;
	display: flex;
	box-shadow: 6px 6px 20px 6px #29a3a3;
}

input {
	border: 2px solid orange;
	margin: 4px;
	border-radius: 8px;
	padding: 16px;
	outline: 0px;
	width: 285px;
}

input:focus {
	border: 2px solid #b35f00;
}

select {
	border: 2px solid #29a3a3;
	margin: 4px;
	border-radius: 8px;
	padding: 16px;
	outline: 0px;
}

.search {
	padding: 8px;
    position: absolute;
    z-index: 4;
	left: 720px;
	width: calc(100% - 812px);
}

@media (max-width: 700px) {
	.search {
		left: 4px;
		/* width: calc(100% - 28px); */
		width: calc(100% - 100px);
	}
}

/* @media (max-width: 420px) { */
	/* .search { */
		/* left: 4px; */
		/* width: calc(100% - 100px); */
	/* } */
/* } */

.submit {
	background: #29a3a3;
}

.submit:hover {
	background: #196666;
}

.username_class:focus{
	background-image: url('https://golf.noahhirt.co.uk/account/person_focus.svg?v=3');
}

.email_class:focus{
	background-image: url('https://golf.noahhirt.co.uk/account/email_focus.svg?v=3');
}

.password_class:focus{
	background-image: url('https://golf.noahhirt.co.uk/account/password_focus.svg?v=3'), url('https://golf.noahhirt.co.uk/account/visibility_focus.svg?v=3');
}

.password_class_off:focus{
	background-image: url('https://golf.noahhirt.co.uk/account/password_focus.svg?v=3'), url('https://golf.noahhirt.co.uk/account/visibility_off_focus.svg?v=3');
}

.scorecard_table {
	z-index: 4;
	position: absolute;
	height: calc(100% - 142px);
	margin: 16px;
	width: calc(100% - 32px);
	text-align: center;
	border-collapse: collapse;
}

tr {
	border-bottom: 1px solid white;
}

.loader {
	border: 4px solid #29a3a3;
	border-radius: 50%;
	border-top: 4px solid rgba(0,0,0,0);
	width: 20px;
	height: 20px;
	/* left: calc(50% - 52px); */
	/* top: calc(50% - 52px); */
	-webkit-animation: spin 2s linear infinite; /* Safari */
	animation: spin 2s linear infinite;
	/* position: absolute; */
	/* right: 8px; */
	/* display: block; */
	z-index: 6;
}

.loader2 {
	top: calc(50% - 32px);
	left: calc(50% - 32px);
    width: 64px;
    height: 64px;
    position: relative;
    background-image: linear-gradient(#FFF 16px, transparent 0), linear-gradient(#29a3a3 16px, transparent 0), linear-gradient(#29a3a3 16px, transparent 0), linear-gradient(#FFF 16px, transparent 0);
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-position: left top, left bottom, right top, right bottom;
    animation: rotate 1s linear infinite;
	z-index: 6;
}

@keyframes rotate {	
	0% {
		width: 64px;
		height: 64px;
		transform: rotate(0deg);
	}
	50% {
		width: 30px;
		height: 30px;
		transform: rotate(180deg);
	}
	100% {
		width: 64px;
		height: 64px;
		transform: rotate(360deg);
	}
}

.loader_overlay {
	width: 100%;
	height: 100%;
	background: #000000;
	position: absolute;
	z-index: 5;
	top: 0px;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.background_container {
	position: absolute;
	display: flex;
	width: 100%;
	flex-direction: row;
	justify-content: space-evenly;
	/* text-shadow: 12px 12px 2px orange; */
	overflow: auto;
	flex-wrap: wrap;
}

.shop_img {
	max-width: 100%;
	max-height: calc(100% - 50px);
}

.chosen_clubs {
	width: 200px;
	height: calc((100% - 80px) / 4);
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	border: 2px solid white;
	border-radius: 8px;
	margin: 8px;
	cursor: pointer;
	background: #29a3a3;
}


.club_images {
	width: 72px;
	margin: 4px;
}

.club_select {
	border-radius: 8px;
	border: none;
	background: #29a3a3;
	padding: 2px;
	color: white;
	width: 140px;

}

.club_option {
	background: black;
}


@media (max-width:455px) {
	.chosen_clubs {
		width: 175px;
	}
	
	.club_select {
		width: 100px;
	}
}

@media (max-width:406px) {
	.chosen_clubs {
		width: 132px;
	}
}

@media (max-height:715px) {
	.chosen_clubs {
		height: calc((100% - 80px) / 3);
	}
}

.popup_box {
	background: orange;
}

.close {
	font-size: 32px;
	position: absolute;
	right: 16px;
	z-index: 5;
	background: #29a3a3;
	padding: 2px;
	border-radius: 8px;
	cursor: pointer;
}

.coins {
	font-size: 32px;
	display: flex;
	align-items: center;
	z-index: 2;
}

.purchase_popup {
	display: none;
	width: 300px;
    height: 200px;
    position: absolute;
    background: black;
    z-index: 7;
    color: white;
    border: 2px solid;
    left: calc(50% - 150px);
    top: 50px;
    padding: 4px;
    border-radius: 8px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.popup_overlay {
	display: none;
	position: absolute;
	width: 100%;
	height: 100%;
	background: black;
	opacity: 50%;
	z-index: 6;
	top: 0px;
}

.purchase_buttons {
    width: calc(42% - 30px);
    padding: 8px;
    margin: 4px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.purchase_buttons:hover {
	opacity: 70%;
}

.yes {
	background: #29a3a3;
	border: 1px solid white;
	color: black;
}

.no {
	background: white;
	border: 1px solid #29a3a3;
	color: black;
}

.coins_div {
	position: absolute;
	top: 0px;
	right: 0;
	z-index: 3;
	display: flex;
	align-items: center;
	color: white;
	text-shadow: 0 0 10px #ff0000, 0 0 10px #ff0000, 0 0 10px #ff0000;
}

@media (max-width: 700px) {
	.coins_div {
		top: 50px;
	}
}

.hole_design_canvas {
	position: absolute;
	/* width: 250px; */
	height: calc(100% - 16px);
	/* left: calc(50% - 125px); */
	top: 8px;
	z-index: 3;
	border-radius: 8px;
}

.design_list_icon {
	position: absolute;
	z-index: 5;
	background: #29a3a3;
	padding: 4px;
	border-radius: 8px;
	margin: 4px;
	top: 0px;
	cursor: pointer;
}

.design_list_icon:hover {
	font-variation-settings: "FILL" 1;
}

.design_list_icon:focus {
	font-variation-settings: "FILL" 1;
}

.input_forms {
	display: flex;
    flex-direction: row;
    align-items: center;
}

.progress_tracker_container {
	background: white;
	width: 25%;
	height: 24px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 2;
}

.progress_tracker {
	background: turquoise;
	height: 24px;
	border-radius: 8px;
}

.progress_tracker_p {
	width: fit-content;
	position: relative;
	color: black;
	margin: 8px;
	position: absolute;
	font-size: 16px;
	text-shadow: none;
}

.create_account_p  { 
	text-decoration-color: #29a3a3;
}

.create_account_p:hover {
	text-decoration-color: #196666;
}

.change_leaderboard {
	display: flex;
	position: absolute;
	background: white;
	width: calc(100% - 16px);
	left: 8px;
	border-radius: 8px;
    color: black;
	top: 0px;
	justify-content: space-evenly;
}

.change_p {
	width: fit-content;
}

.settings_img {
	width: 24px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: red;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: white;
}

input:checked + .slider:before {
	background-color: green;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.description {
	position: absolute;
	top: 70px;
	left: calc(50% - 116px);
	padding: 8px;
	background: #29a3a3;
	width: 200px;
	border-radius: 5px;
	z-index: 6;
	display: none;
}

.description_overlay {
	width: 100%;
	height: 100%;
	background: black;
	position: absolute;
	top: 0px;
	opacity: 50%;
	z-index:5;
}

.user_information {
width: 100px;
    height: 100px;
    background: #29a3a3;
    border-radius: 16px;
    color: white;
    text-align: center;
    margin: 4px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info_div {
	position: absolute;
    z-index: 2;
    top: 50px;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

.info_text {
	font-size: 40px;
	width: 100px;
	left: 0px;
}