@charset "UTF-8";

* {
  box-sizing: border-box;
}

:root {
	
	accent-color: #FFE500;

	--background-color: black;
	--accentColor: #FFE500;
	--ultraLightColor: #91553fff;
	--lightColor: #633a2bff;
	--mainColor: #060060;
	--darkColor: #23150fff;
	--ultraDarkColor: #050201ff;
	--colroAltern: #ecbd00ff;
	
	--colorUltraLightRed: #ff9090ffx;
	--colorLightRed: #ff5454ff;
	--colorRed: #ff0000ff;
	--colorDarkRed: #af0000ff;
	--colorUltraDarkRed: #6e0000ff;
	--colorUltraLightGreen: #a7ffa3ff;
	--colorLightGreen: #73ff6dff;
	--colorGreen: #47dc40ff;
	--colorDarkGreen: #329c2eff;
	--colorUltraDarkGreen: #035b00ff;
	--colorUltraLightYellow: #fff687ff;
	--colorLightYellow: #73ff6dff;
	--colorYellow: #ffeb00ff;
	--colorDarkYellow: #d6c500ff;
	--colorUltraDarkYellow: #b4a600ff;
	
	--background: url("../../assets/images/background.png");
	--titles: url("../../assets/images/background_title.svg");
	--iconLeft: url("../../assets/images/arrow-left.svg");
	--iconRight: url("../../assets/images/arrow-right.svg");
	--iconQuit: url("../../assets/images/icon-quit.svg");
	--iconAdd: url("../../assets/images/icon-add.svg");
	
	--borderWidthPhone: 1px;
	--borderWidthPc: 2px;
}

::placeholder { 
  color: darkgrey;
  opacity: 1; 
}

.navbar {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	align-content: center;
	vertical-align: center;
}

.navbar-container-title {
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	align-content: center;
	vertical-align: center;
}

.navbar-icon { }

.navbar-title {
	font-weight: bold;
	font-family: sans-serif;
	color: white;
}

.navbar-title2 {
	font-weight: bold;
	font-family: sans-serif;
	color: black;
}

.navbar-subtitle {
	font-weight: bold;
	font-family: 'SOLID';
	color: black;
}

.navbar-tools {
	font-weight: bold;
	font-family: 'SOLID';
	color: black;
}

.navbar-tools:hover {
	color: red;
	cursor: pointer;
}

input[type='number'] {
    -moz-appearance:textfield;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

section {
  background-color: transparent;
}

.marker-position {
	bottom: 22px;
	left: 0;
	position: relative;
	font-weight: bold;
}
#element {
	margin: 40px auto 20px auto;
	height: 200px;
	width: 400px;
	background-color: #e9e9e9;
	font-size: 20px;
	padding: 40px 0 0 0;
	text-align: center;
	box-sizing: border-box;
}
#go-button {
	width: 200px;
	display: block;
	margin: 50px auto 0 auto;
}

#element:-webkit-full-screen {
	width: 100%;
	height: 100%;
	background-color: pink;
	margin: 0;
}

#element:-moz-full-screen {
	background-color: pink;
	margin: 0;
}

#element:-ms-fullscreen {
	background-color: pink;
	margin: 0;
}

/* W3C proposal that will eventually come in all browsers */
#element:fullscreen {
	background-color: pink;
	margin: 0;
}

@media only screen and (max-device-width: 640px) {

	.navbar {
		width: 100%;
		height: 2rem;
		margin: 0rem 0rem 0rem 0rem;
		box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.2);
	}
	
	.navbar-container-title {
		margin: 0.2rem 0rem 0rem 0rem;
	}
	
	.navbar-icon {
		width: 2rem;
		height: 2rem
	}

	.navbar-title {
		height: 1.3rem;
		font-size: 1.2rem;
		margin: 0rem 0rem 0rem 0rem;
	}
	
	.navbar-title2 {
		height: 0.9rem;
		font-size: 0.8rem;
		margin: 0rem 0rem 0rem 0rem;
	}

	.navbar-subtitle {
		font-size: 1.2rem;
		margin: 0rem 0rem 0rem 0rem;
	}

	.navbar-tools {
		font-size: 1.4rem;
		margin: 0rem 0rem 0rem 0rem;
	}

	.navbar-tools:hover {
		font-size: 1.4rem;
		margin: 0rem 0rem 0rem 0rem;
	}
}

@media only screen and (min-device-width: 640px) {

	.navbar {
		width: 100%;
		height: 2rem;
		margin: 0rem 0rem 0rem 0rem;
		box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.2);
	}
	
	.navbar-container-title {
		margin: 0.2rem 0rem 0rem 0rem;
	}
	
	.navbar-icon {
		width: 4rem;
		height: 4rem
	}

	.navbar-title {
		height: 2rem;
		font-size: 1.9rem;
		margin: 0rem 0rem 0rem 0rem;
	}
	
	.navbar-title2 {
		height: 1.4rem;
		font-size: 1.3rem;
		margin: 0rem 0rem 0rem 0rem;
	}

	.navbar-subtitle {
		font-size: 2rem;
		margin: 0rem 0rem 0rem 0rem;
	}

	.navbar-tools {
		font-size: 2rem;
		margin: 0rem 0rem 0rem 7rem;
	}

	.navbar-tools:hover {
		font-size: 2rem;
		margin: 0rem 0rem 0rem 7rem;
	}
}
