
@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

/*
	Can I Create Online Tutorial’s Magic CSS Indicator?
	https://www.youtube.com/watch?v=YaONowiQKW8
*/

/**, *::before, *::after {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}*/

bodyx {
	background-color: var(--background-color);
	color: white;
}

*:root {
	--icon-size: 2rem;
	/*--indicator-spacing: calc(var(--icon-size) / 8);*/
	--border-radius: calc(var(--icon-size) / 4);
	--nav-item-padding: calc(var(--icon-size) / 2);
	/*--background-color: #333;*/
}

.btn-add-new {
	background-color: greenyellow;
}

.btn-upload-file {
	background-color: orange;
}

.btn-blue {
	background-color: skyblue;
}

.btn-green {
	background-color: greenyellow;
}

.btn-orange {
	background-color: orange;
}

.btn-dark-orange {
	background-color: darkorange;
}

.btn-orange-red {
	background-color: orangered;
}

.btn-disabled {
	background-color: #c4c4c4;
	cursor: default;
}

/*.navbar-container {*/
	/*background-color: greenyellow;*/
	/*width: fit-content;
	height: fit-content;
}*/

.list {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

.list a {
	/*color: #333;*/
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: var(--nav-item-padding);
	border-radius: 6px;
	margin-left: 1px;
	margin-right: 1px;
	padding-top: 5px;
	padding-bottom: 25px;
	transition: 250ms ease-in-out;
}

.list .text {
	font-size: .75em;
	line-height: 0.75rem;
	text-align: center;
	opacity: 20;
	pointer-events: none;
	position: absolute;
	width: 55px;
	top: 40px;
}

.list .icon {
	position: relative;
	height: 40px;
	width: 40px;
}

.toolbar-btn {
	padding-bottom: 0px;
	width: 70px;
	height: 70px;
	cursor: pointer;
}

.toolbar-btn:active {
	/* Scaling button to 0.95 to its original size */
	transform: scale(0.95);
	/*transform: translateY(2px);*/
	/* Lowering the shadow */
	/*box-shadow: 0 0px 8px 0 rgba(0, 0, 0, 0.5);*/
}

.list svg {
	fill: currentColor;
	margin:  auto;
	width: var(--icon-size);
	height: var(--icon-size);
	display: block;
}

.list .svg {
	fill: currentColor;
	margin:  auto;
	width: var(--icon-size);
	height: var(--icon-size);
	display: block;
}

.list {
	position: relative;
}

.list .active .icon {
	/*transform: translateY(calc(-50% - var(--nav-item-padding)));*/
}

.list.first-row {
	width: max-content;
	float: left;	/* Positions the second list on the same line as the first list. */
}

.list.second-row {
	width: max-content;
}

.list.third-row {
	width: max-content;
}

.hide-inputfile {
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

@media only screen and (max-width: 1200px) {
}

@media only screen and (max-width: 640px) {
/*@media (min-width: 768px) {*/

	.list.second-row {
		padding-top: 2px;
	}

	.toolbar-btn {
		transform: scale(1.0);
		padding: 0px;
		margin: 0px;
	}
}
