/* Navigation */
@import url(./SETTINGS.css);

::-moz-selection { /* Code for Firefox */
    background: var(--default-highlight-color);
}

::selection {
    background: var(--default-highlight-color);
}

nav {
	width: 100%;
	height: 50px;
	background-color: grey;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	background: rgba(255,255,255,0.5);
	margin-top: 5px;
	padding-bottom: 5px;
	border-bottom: 1px dotted #dddddd;
}

nav .nav-wrap {
	width: 80%;
	height: 100%;
	margin: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;

}

nav .left, nav .right {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
}

nav ul {
	width: 100%;
	height: 100%;
}

nav ul a {
	color: var(--main-font-color);
	font-family: var(--default-sans-font);
	height: 100%;
}

nav ul a li {
	display: inline-block;
	padding: 0px 10px 0px 10px;
	height: 100%;
	line-height: 50px;
	border-radius: var(--nav-item-border-radius);
}

nav ul a li:hover {
	background: var(--second-theme-color);
}

nav .icon {
	padding-right: 3px;
}

nav .left p#logoName {
	margin-right: 35px;
	font-family: var(--logo-font);
	font-size: 20pt;
	color: var(--main-theme-color);
	cursor: default;
}

/* Buttons */

.btn {
	/*padding: 10px 10px;*/
	height: auto;
	cursor: pointer;
}

.btn-small {
	width: auto;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: var(--default-sans-font);
	letter-spacing: -0.25px;
	font-size: 11pt;
	width: 200px;
}
.btn-medium {
	width: auto;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: var(--default-sans-font);
	letter-spacing: -0.25px;
	font-size: 11pt;
	width: 200px;
}
.btn-large {}

.btn-transparent {
	transition: var(--default-button-transition-time);
	border: var(--default-button-trans-outline-size) solid var(--default-button-trans-outline-color);
}

.btn-transparent:hover {
	transition: var(--default-button-transition-time);
	background-color: var(--default-button-trans-hover-fill-color);
}

.btn-fill {
	transition: var(--default-button-transition-time);
	background: var(--default-button-fill-color);
}

.btn-fill:hover {
	transition: var(--default-button-transition-time);
	background: var(--default-button-hover-fill-color);
}

/* Gallery */
.gallery-scroll {
	overflow-x: scroll;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
}

.gallery-scroll img {
	height: 200px;
	margin: 0px 2px 10px 2px;
}

/*Gallery Pattern */
.gallery-pattern {
	width: 100%;
	height: 100%;
	display: flex;
	flex-flow: row wrap;
}

.gallery-pattern .col {
	flex: 33%;
	max-width: 33%;
	padding: 0 4px;
}

.gallery-pattern img {
	margin-top: 8px;
	width: 100%;
	vertical-align: middle;
}