/**
 * Pink child theme - branding and layout overrides.
 *
 * @package Pink
 */

/* =========================================================================
   Language Switcher
   ========================================================================= */
.language_options {
	position: fixed;
	top: 10px;
	right: 10px;
	z-index: 99999;
}

.language_options a {
	display: inline-block;
}

.language_options img {
	width: 30px;
	height: auto;
	margin-left: 5px;
}

.language_options.text a {
	display: inline-block;
	padding: 2px 8px;
	text-decoration: none;
	font-size: 12px;
	font-weight: 700;
	border: 1px solid;
	margin-left: 5px;
}

.language_options.text a:hover {
	opacity: 0.7;
}

/* =========================================================================
   Header Inside Layout
   ========================================================================= */
.header.with-top-bar {
	margin-top: 0;
}

.header-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.header-top .logo {
	flex: 0 0 auto;
}

.header-top .logo .event-logo {
	max-height: 80px;
	width: auto;
}

.header-top .nav-container {
	flex: 1 1 auto;
}

.header-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5px 0;
	border-top: 1px solid #ddd;
}

.header-bottom .left,
.header-bottom .right {
	flex: 0 1 auto;
}

/* =========================================================================
   Top Bar
   ========================================================================= */
.top-bar {
	padding: 5px 0;
	font-size: 13px;
}

.top-bar .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.top-bar .content {
	margin: 0;
}

.top-bar .search-bar {
	flex: 0 0 auto;
}

.top-bar .search-bar input[type="search"] {
	padding: 4px 8px;
	border: 1px solid #ccc;
	font-size: 12px;
}

.top-bar .search-bar button {
	padding: 4px 12px;
	border: none;
	color: #fff;
	cursor: pointer;
	font-size: 12px;
}

/* =========================================================================
   Ticker
   ========================================================================= */
.ticker.wrapper-inside {
	width: 100%;
	float: left;
}

/* =========================================================================
   Layout-aware pages
   ========================================================================= */
#content.full-width #main {
	width: 100%;
	max-width: 100%;
}

#content.sidebar #main {
	width: 66.66%;
	float: left;
}

#content.sidebar .sidebar {
	width: 33.33%;
	float: right;
}

.page-width-sidebar #main {
	width: 66.66%;
	float: left;
}

.page-width-sidebar .sidebar {
	width: 33.33%;
	float: right;
}

#inner-content.no-padding {
	padding-top: 0;
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 768px) {
	.language_options {
		top: 5px;
		right: 5px;
	}

	.header-top {
		flex-direction: column;
		text-align: center;
	}

	.header-bottom {
		flex-direction: column;
		text-align: center;
	}

	.top-bar .wrap {
		flex-direction: column;
	}

	#content.sidebar #main,
	#content.sidebar .sidebar,
	.page-width-sidebar #main,
	.page-width-sidebar .sidebar {
		width: 100%;
		float: none;
	}
}
