/* --------------------------------------------------------------
>>> TABLE OF CONTENTS:----------------------------------------------------------------
1.0 - General Styles
2.0 - Trending Ticker
3.0 - Header Style
4.0 - Home Page
5.0 - Content Styles
6.0 - Author Bio
7.0 - Footer Style
8.0 - Footer Widgets
9.0 - Custom Widgets
10.0 - Default Widget Styles
11.0 - Gallery
12.0 - Comment Styles
13.0 - Responsive Styles
-------------------------------------------------------------- */

/* --------------------------------------------------------------
1.0 General Styles
-------------------------------------------------------------- */

:root {
	--tt-orange: #FF7F00;
	--tt-blue: #0080FF;
	--tt-contrast: #FFF;
	--tt-text-primary: #2A2A2A;
	--tt-text-secondary: #555;

	--navbar-bg: #1D2124;

	--card-shadow: 0 0 4px rgba(0, 0, 0, .15);
	--card-border-color: #E3E3E3;
}
html {
	font-size: 14px;
}
body {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 16px;
	line-height: 1.2;
	word-wrap: break-word;
	color: var(--tt-text-primary);
	background-color: #b8b8b8;
}
.clearfix {
	clear: both;
}
code {
	white-space: normal;
}
blockquote {
	font-size: 1.35rem;
	font-weight: 300;
	font-style: italic;
	line-height: 1.25;
	margin-bottom: 24px;
	color: #767676;
	border-color: var(--tt-orange);
}
.site-main .gallery a img {
	width: auto;
}

h1, h2, h3, h4, h5, h6 {
	font-family: Rubik, sans-serif;
}
h1 {
	font-size: 2.4rem;
}

.home .entry-title {
	margin-bottom: 0;
}

a {
	color: var(--tt-orange);
}
a:hover,
a:focus,
a:active {
	color: var(--tt-blue);
}

#page {
	margin-top: 1em;
}

#content a.thumbnail-link {
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
#content a.thumbnail-link img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition: filter 0.2s;
}

hr {
	border-top: 2px solid var(--tt-orange);
}

.error-404 {
	margin-left: 4%;
}

/* --------------------------------------------------------------
2.0 Trending Ticker
-------------------------------------------------------------- */
.trending-ticker {
	background: #1d2124;
}
.trending-ticker span.heading {
	font-size: 1rem;
	font-weight: 900;
	line-height: 2em;
	display: inline-block;
	margin-right: 8px;
	padding: 0 12px;
	text-transform: uppercase;
	color: #fff;
	background: var(--tt-orange);
}
.trending-ticker ul {
	display: inline-block;
	margin: 0;
	list-style: none;
}
.trending-ticker ul li {
	display: none;
}
.trending-ticker ul li:first-child {
	display: block;
}
.trending-ticker ul li a {
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
	color: #b6b7b9;
}

/* --------------------------------------------------------------
3.0 Header Styles
-------------------------------------------------------------- */
.header-promo {
	margin: 1em auto;
}

#masthead {
	position: sticky;
	top: -140px;
	z-index: 420;
}
#masthead .header-branding-banner {
	width: 100%;
	overflow: hidden;
	height: 140px;
	margin: 0;
}
/* #masthead .trident-header-ad {
	line-height: 1;
	float: right;
	width: 728px;
	max-width: 100%;
	margin: 1.25em 3em 1.25em 0;
	vertical-align: middle;
}
#masthead .trident-header-ad h3 {
	display: none;
}
#masthead .trident-header-ad img {
	max-width: 100%;
	height: auto;
} */
#masthead.affix {
	position: fixed;
	margin-bottom: 0;
}
#masthead .container {
	background: #fff;
}
#masthead .banner {
	display: block;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
}
#masthead .banner h1 {
	height: 140px;
	margin: 0;
	user-select: none;
	display: table-cell;
	vertical-align: middle;
	padding-left: 3rem;
	padding-right: 3rem;
}
#masthead .banner .logo {
	display: block;
	height: 60%;
}
#masthead .banner span {
	display: block;
	padding: 22px 0 42px 10px;
}
#masthead .banner span.logo-text {
	font-weight: 900;
	font-size: 1.25em;
	text-transform: uppercase;
	color: var(--tt-orange);
}
#masthead .banner img {
	max-height: 100%;
}

#masthead nav {
	position: relative;
	height: 42px;
	color: #efefef;
	background-color: var(--navbar-bg);
}
#masthead .navbar-brand {
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;

	display: flex;
	align-items: center;
}
#masthead .navbar-brand .logo {
	height: 42px;
	padding: 0 1em;
}
#masthead .navbar-collapse {
	position: absolute;
	top: 0;
	width: 100%;
}
#masthead .navbar-nav {
	line-height: 2;
	position: relative;
	width: 100%;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: space-between;
}
#masthead .navbar-nav > .menu-item {
	background-color: var(--navbar-bg);
}
#masthead .navbar-nav .menu-item a {
	font-weight: 600;
	color: #efefef;
	text-decoration: none;
}
#masthead .navbar-nav > .menu-item > a {
	text-transform: uppercase;
	line-height: 2.5;
	padding: 0 25px;
	white-space: nowrap;
	border-bottom: 2px solid var(--navbar-bg);
}
#masthead .navbar-nav > .menu-item:hover > a {
	background-color: var(--tt-orange);
}
#masthead .navbar-nav > .current-menu-item > a,
#masthead .navbar-nav > .current_page_item > a,
#masthead .navbar-nav > .current-menu-parent > a,
#masthead .navbar-nav > .current-menu-ancestor > a {
	border-bottom: 2px solid var(--tt-orange);
	color: var(--tt-orange);
}
#masthead .navbar-nav > .current-menu-item:hover > a,
#masthead .navbar-nav > .current_page_item:hover > a,
#masthead .navbar-nav > .current-menu-parent:hover > a,
#masthead .navbar-nav > .current-menu-ancestor:hover > a {
	color: var(--navbar-bg);
}
#masthead .navbar-nav .menu-item-has-children > a:after { /* dropdown indicator */
	font-family: 'dashicons';
	font-size: 1rem;
	font-weight: normal;
	font-style: normal;
	line-height: .7;
	display: inline-block;
	margin-left: 10px;
	content: '\f347';
	text-shadow: 0 0 1px #efefef;
}
#masthead .navbar-nav .sub-menu {
	top: 40px;
	width: 100%;
	max-height: calc(100vh - 40px);
	overflow-y: auto;
	background: #fff;
	border: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	border-top: 1px solid #e5e5e5;
}
@media (min-width: 992px) {
	#masthead .navbar-nav > .menu-item {
		height: 42px;
	}
}
#masthead .navbar-nav .menu-item:last-of-type .sub-menu {
	left: unset;
	right: 0;
}
#masthead .navbar-nav .sub-menu .menu-item {
	line-height: 1.2;
	padding: 0 0.75em;
}
#masthead .navbar-nav .sub-menu .menu-item a {
	width: 100%;
	padding: 6px 0;
	color: var(--tt-text-primary);
	border-top: 1px solid #e5e5e5;
}
#masthead .navbar-nav .sub-menu .menu-item:first-child a {
	border: 0;
}
#masthead .navbar-nav .sub-menu .menu-item:hover > a,
#masthead .navbar-nav .sub-menu .menu-item.current-menu-item > a {
	color: var(--tt-orange);
	/* font-weight: bold; */
}

#masthead .navbar-toggler {
	z-index: 42;
}
.navbar-toggler {
	box-shadow: none;
	border: 1px solid var(--tt-orange);
}
.navbar-toggler:hover {
	box-shadow: none;
}
.navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,<svg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'><path stroke='%23FF7F00' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/></svg>");
	color: var(--tt-orange);
}

#masthead .search-form {
	height: 40px;
	padding: 4px;
	background-color: var(--navbar-bg);
}
#masthead .search-form button,
#masthead .search-form input[type="search"] {
	border-radius: 16px;
	outline: 0;
}
#masthead .search-form button:focus,
#masthead .search-form button:active {
	background-color: var(--tt-blue);
}
#masthead .search-form input[type="search"] {
	width: 250px;
	max-width: calc(100% - 40px);
	padding: 0 4px 0 14px;
	height: 32px;
	border: 2px solid var(--tt-orange);
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
#masthead .search-form input[type="search"]:focus,
#masthead .search-form input[type="search"]:active {
	border-color: var(--tt-blue);
}
#masthead .search-form button {
	height: 32px;
	padding: 5px 7px 5px 3px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
#masthead .search-form .dashicons-search {
	font-size: 24px;
}

/* --------------------------------------------------------------
4.0 Home Page
-------------------------------------------------------------- */
#featured-posts-wrap {
	height: 400px;
	margin-left: 0;
	margin-right: 0;
}
#featured-post-big {
	float: left;
}
#featured-posts-grid {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	padding-right: 0;
}
#featured-post-big img {
	max-height: 400px !important;
}
.featured-post-small,
.featured-post-small img {
	height: 190px !important;
}
.featured-post {
	position: relative;
	flex: none;
	padding: 0;
}
.featured-post:hover img {
	filter: contrast(120%);
}
.feature-text {
	position: absolute;
	z-index: 100;
	bottom: 1.25em;
	width: 100%;
	padding: 0.25em 1em;
	text-align: center;
}
.featured-post .entry-title {
	font-weight: 600;
	color: white;
}
.featured-post .feature-text > a {
	z-index: 100;
	display: block;
}
.featured-post .post-category-chip {
	display: inline-block;
}
.featured-post .post-category-chip a {
	display: inline-block;
	padding: 0.6em 0.7em;
	margin-bottom: 0.25em;
	background: var(--tt-orange);
	border-top-left-radius: 6px;
	border-bottom-right-radius: 6px;
	border: 0px solid var(--tt-blue);
	transition: border-width 0.1s;

	font: 0.9rem/1 Rubik, sans-serif;
	vertical-align: super;
	text-decoration: none;
	text-transform: uppercase;
	color: var(--tt-contrast);
}
.featured-post .post-category-chip:hover a {
	border-bottom-width: 2px;
}
.featured-post .feature-overlay {
	position: absolute;
	z-index: 1;
	bottom: 0;
	width: 100%;
	height: 161px;
	max-height: 100%;
	background: url(assets/images/feature-overlay.png) repeat-x;
}
.featured-post-small .feature-text {
	bottom: 0.25em;
}
.featured-post-small .feature-text > a {
	display: table;
	height: 3em;
	width: 100%;
}
.featured-post-small .feature-text > a .entry-title {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
}
.featured-post-small .post-category-chip a {
	padding: 0.4em 0.6em;
}

.article-box-grid {
	margin: 0.2rem -15px 0.5rem;
}
.article-box {
	display: flex;
	flex-direction: column;
	min-height: 256px;
	padding: 1rem 15px 0.25rem;
	overflow: hidden;
	transition: all 0.1s;
	border: 1px solid transparent;
	border-radius: 5px;
}
.article-box:hover {
	box-shadow: var(--card-shadow);
	border-color: var(--card-border-color);
}
.article-box > * {
	flex: none;
}
.article-box .thumbnail-wrap {
	height: 150px;
}
.article-box:hover .thumbnail-link img {
	filter: contrast(120%);
}
.article-box .entry-header {
	margin-top: 0.7em;
}
.article-box .entry-title {
	font-size: 0.96em;
	line-height: 1.35;
}
.article-box .entry-meta {
	margin-top: 0.6em;
}
.thumbnail-wrap {
	position: relative;
}
.thumbnail-wrap .entry-image {
	height: 100%;
}
.post-category-chip.fixed a,
#footer-widgets #wp-calendar caption {
	position: absolute;
	z-index: 100;
	display: inline-block;
	padding: 0.4em 0.5em 0.3em;
	border-bottom-right-radius: 6px;
	background: var(--tt-orange);

	font: 0.9rem/1 Rubik, sans-serif;
	text-decoration: none;
	text-transform: uppercase;
	color: var(--tt-contrast);
}
.vcard,
.published,
.post-category a {
	font-weight: 600;
}
.article-box .entry-content {
	margin: 0;
	color: #666;
}

/* --------------------------------------------------------------
5.0 Content Styles
-------------------------------------------------------------- */
.sticky {
	padding: 0 1.2em;
	border: 1px solid var(--tt-orange) !important;
}
.sticky .entry-content {
	overflow: hidden;
	height: 55px;
}
#content {
	padding-top: 15px;
	background: var(--tt-contrast);
}
@media screen and (min-width: 992px) {
	#content.container {
		padding-left: 30px;
		padding-right: 30px;
	}
}
#content img {
	max-width: 100%;
	height: auto;
}
#content #secondary {
	align-self: flex-start;
}
@media screen and (min-width: 768px) {
	#content #secondary {
		position: sticky;
		top: 52px;
	}
}
#content #secondary > * {   /* for mobile layout */
	max-width: 350px;
	margin-left: auto;
	margin-right: auto;
}

.page-header,
article .entry-header {
	margin-top: 0.5em;
	margin-bottom: 1em;
}
.page-header,
article.page .entry-header {
	border-bottom: 2px solid var(--tt-orange);
}

.page-title,
.entry-title {
	color: #333;
}

.trending-ticker ul li a:hover {
	text-decoration: none;
	color: var(--tt-orange);
}
.entry-meta,
.comment-metadata {
	margin-top: 0.5em;
	font-size: 0.85em;
	color: var(--tt-text-secondary);
}
.entry-meta a,
.comment-metadata a {
	text-decoration: none;
}
.entry-meta a:not(:hover):not(:active),
.comment-metadata a:not(:hover):not(:active) {
	color: var(--tt-text-secondary);
}
@media screen and (max-width: 1199.96px) {
	.entry-meta {
		font-size: 0.8em;
	}
}
.entry-meta .post-author,
.entry-meta .post-date,
.entry-meta .meta-cat,
.entry-meta .meta-tag {
	margin-right: 2px;
}

.entry-content p {
	line-height: 1.6;
}
.entry-content > *,
.page-content > * {
	margin-bottom: 1.5em;
}
.entry-content > img {
	width: 100%;
}

.site-main::after {
	height: 0;
	clear: both;
	display: block;
	content: " ";
}
.paging-navigation {
	clear: both;
	margin-top: 1em;
	user-select: none;
	text-align: center;
	font-family: Rubik, sans-serif;
}
.paging-navigation .nav-links a,
.paging-navigation .nav-links span {
	display: inline-block;
	margin-bottom: 5px;
	padding: 5px 15px;
	color: var(--tt-text-primary);
	background-color: #ebebeb;

	-webkit-transition: all .1s linear;
	-moz-transition: all .1s linear;
	-o-transition: all .1s linear;
	transition: all .1s linear;
}
.paging-navigation .nav-links span.current,
.paging-navigation .nav-links a:hover {
	text-decoration: none;
	color: white;
	background-color: var(--tt-orange);
}
.paging-navigation .nav-links a.next,
.paging-navigation .nav-links a.prev {
	display: none;
}
.post-navigation .nav-links .nav-previous,
.post-navigation .nav-links .nav-next {
	width: 49.8%;
	height: 150px;
	padding: 1.25em;
	text-align: center;
	border: 1px solid #e1e1e1;
}
.post-navigation .nav-links .nav-previous a,
.post-navigation .nav-links .nav-next a {
	text-decoration: none;
	color: var(--tt-text-primary);

	-webkit-transition: all .1s ease-in;
	-moz-transition: all .1s ease-in;
	-o-transition: all .1s ease-in;
	transition: all .1s ease-in;
}
.post-navigation .nav-links .nav-previous a:hover,
.post-navigation .nav-links .nav-next a:hover {
	color: var(--tt-orange);
}
.post-navigation .nav-links .nav-previous:before {
	font-size: 1rem;
	font-weight: 600;
	display: block;
	margin-bottom: 15px;
	content: '« Vorige review';
	color: var(--tt-orange);
}
.post-navigation .nav-links .nav-next:before {
	font-size: 1rem;
	font-weight: 600;
	display: block;
	margin-bottom: 15px;
	content: 'Volgende review »';
	color: var(--tt-orange);
}
.nav-previous a,
.nav-next a{
	font-size: 1rem;
	font-weight: 900;

}
aside .widget-title {
	font-weight: 700;
	text-transform: uppercase;
	color: var(--tt-text-primary);
}
#wp-calendar caption {
	text-transform: uppercase;
}

/* articles */
article {
	width: 640px;
}
article .entry-content h1,
article .entry-content h2 {
	padding-bottom: 12px;
	border-bottom: 3px solid var(--tt-orange);
	margin-top: 1em;
	margin-bottom: 0.75em;
}
article .entry-content > h1 + p,
article .entry-content > h2 + p,
article .entry-content > h1 + img,
article .entry-content > h2 + img {
	display: none;
}

/* --------------------------------------------------------------
6.0 Author Bio
-------------------------------------------------------------- */
#author-title h5 {
	font-weight: 700;
	z-index: 9;
}
#authorbio {
	display: flex;
	font-size: 1rem;
	margin: 0.75em 0 1.5em;
	padding: 1.25em;
	border: 1px solid var(--card-border-color);
	border-top: 2px solid var(--tt-orange);
	box-shadow: var(--card-shadow);
}
#authorbio .author-avatar {
	width: 90px;
	margin-right: 4%;
	flex: none;
	padding: 0.2em 0;
}
#authorbio .authorinfo {
	line-height: 1.5;
}

/* --------------------------------------------------------------
7.0 Footer Style
-------------------------------------------------------------- */
#colophon {
}
#colophon .container {
	padding: 1.25rem 1.75rem;
}
#footer-bottom {
	font-size: 1rem;
	background: var(--navbar-bg);
}
#footer-bottom a {
	color: #b6b7b9;
}
#footer-bottom .container {
	display: flex;
	justify-content: space-between;
	overflow: hidden;
	padding: 1rem 2rem;
}
#footer-bottom .site-info {
	color: #8d8e92;
}
#footer-bottom .footer-nav > * {
	display: inline-block;
	vertical-align: middle;
}
#footer-bottom .footer-nav ul {
	margin: 0;
	list-style: none;
}
#footer-bottom .footer-nav ul li {
	display: inline-block;
	margin: 0 8px;
}
#footer-bottom .footer-nav ul li a:hover {
	text-decoration: underline;
}
#footer-bottom .footer-nav ul li ul {
	display: none;
}

/* --------------------------------------------------------------
8.0 Footer Widgets
-------------------------------------------------------------- */
#footer-widgets {
	display: flex;
	width: 100%;
	color: #a3a8b1;
}
#footer-widgets img {
	max-width: 100%;
	height: auto;
}
#footer-widgets .widget-title {
	font-size: 1rem;
	font-weight: bold;
	line-height: 2.5;
	position: relative;
	display: inline-block;
	margin: 0 0 10px 10px;
	padding: 0 5px;
	text-transform: uppercase;
	color: #fff;
	background: var(--tt-orange);
}
#footer-widgets .widget-title:before,
#footer-widgets #wp-calendar caption:before,
.post-category-chip a:before {
	position: absolute;
	top: 0;
	right: -10px;
	left: -10px;
	display: block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 0;
	height: 0;
	content: '';
	border-color: inherit;
	border-top: 35px solid rgba(255, 255, 255, 0);
	border-right-color: var(--tt-orange);
	border-bottom: 0 solid rgba(255, 255, 255, 0);
	text-rendering: optimizeLegibility;
}
#footer-widgets .widget-title:after,
.trending-ticker span.heading:after,
#footer-widgets #wp-calendar caption:after,
.post-category-chip a:after {
	position: absolute;
	top: 0;
	right: -10px;
	display: block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 0;
	height: 0;
	content: '';
	border-color: inherit;
	border-top: 0 solid rgba(255, 255, 255, 0);
	border-bottom: 35px solid rgba(255, 255, 255, 0);
	text-rendering: optimizeLegibility;
}
.trending-ticker span.heading:after {
	border-bottom: 50px solid rgba(255, 255, 255, 0);
}

.footer-widget-container {
	width: 33.33333%;
	max-width: 33.33333%;
}
.footer-widget {
	padding: 0.75rem;
}
.footer-widget ul {
	margin: 0 0 1.5em 1.5em;
	list-style: none;
}
.footer-widget a {
	color: #e0e3e9;
}

/* --------------------------------------------------------------
9.0 Custom Widgets
-------------------------------------------------------------- */
.trident-recent-posts,
.trident-recent-comments,
.trident-popular-posts {
	padding: 1.25em 0;
	border-bottom: 1px solid #d8d8d8;
}
.trident-recent-posts:last-child,
.trident-recent-comments:last-child,
.trident-popular-posts:last-child {
	border-bottom: 0;
}
.trident-recent-posts img,
.trident-popular-posts img {
	float: left;
	width: 78px;
	height: 78px !important;
	margin: 0 15px 0 0;
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}
.trident-recent-posts-thumbnail,
.trident-popular-posts-thumbnail {
	position: relative;
}
.post-number {
	font-size: 1rem;
	font-weight: 700;
	position: absolute;
	top: 0;
	left: 0;
	padding: 3px 9px;
	color: #fff;
	background: var(--tt-orange);
}
.trident-recent-comments img {
	float: left;
	width: 78px;
	height: 78px !important;
	margin: 0 15px 0 0;
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
	border: 1px solid #d8d8d8;
	-webkit-border-radius: 60px;
	-moz-border-radius: 60px;
	border-radius: 60px;
}
.trident-recent-comments img:hover {
	border-color: var(--tt-orange);
}
.trident-recent-posts .trident-post,
.trident-recent-comments .trident-comment,
.trident-popular-posts .trident-post {
	float: left;
	width: 70%;
}
.trident-recent-posts .trident-post a,
.trident-recent-comments .trident-comment a,
.trident-popular-posts .trident-post a {
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}
aside .trident-recent-posts .trident-post a,
aside .trident-recent-comments .trident-comment a,
aside .trident-popular-posts .trident-post a {
	color: var(--tt-text-primary);
}
.trident-recent-posts .trident-post a:hover,
.trident-recent-comments .trident-comment a:hover,
.trident-popular-posts .trident-post a:hover {
	text-decoration: none;
	color: var(--tt-orange);
}
.trident-recent-posts .trident-post p,
.trident-popular-posts .trident-post p {
	font-size: 1rem;
	line-height: 1;
	margin: 0;
}
.trident-facebook-box,
.trident-google-box {
	padding: 10px;
	border: 1px solid #ddd;
	border-bottom: 4px solid var(--tt-orange);
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px;
	-webkit-box-shadow: 0 1px 3px 0 #b5b5b5;
	-moz-box-shadow: 0 1px 3px 0 #b5b5b5;
	box-shadow: 0 1px 3px 0 #b5b5b5;
}
.trident-facebook-box iframe,
.trident-google-box div {
	width: 100% !important;
}
.trident-flickr-item {
	margin: 0 0 10px 0;
}
.trident-flickr-item img {
	width: 240px;
	height: 180px !important;
}

/* social link widget */
.tt-social-links {
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
}
.tt-social-links a {
	display: inline-block;
	width: 2.5em;
	margin-right: 4px;
}
.tt-social-links a:last-of-type {
	margin-right: 0;
}
.tt-social-links a > svg {
	width: auto;
	height: auto;
}
.tt-social-links a:hover svg.youtube-icon {
	color: #F00;
}
.tt-social-links a:hover svg.instagram-icon path {
	fill: url(#instagramGradient);
}
.tt-social-links a:hover svg.discord-icon {
	color: #7289DA;
}
.tt-social-links a:hover svg.facebook-icon path {
	fill: url(#facebookGradient);
}
.tt-social-links a:hover svg.twitter-icon {
	color: #1DA1F2;
}
.tt-social-links a:hover svg.rss-icon {
	color: #EE802F;
}

/* --------------------------------------------------------------
10.0 Default Widgets
-------------------------------------------------------------- */
.tagcloud a {
	font-size: 1rem;
	display: inline-block;
	margin: 0 5px 6px 0;
	padding: 0 5px;
	color: white;
	background: var(--tt-orange);
}
.tagcloud a:hover {
	text-decoration: none;
	background: var(--tt-text-primary);
}

.search-form {
	position: relative;
	max-width: 350px;
	display: flex;
}
.search-form label {
	width: 100%;
	margin: 0;
}
.search-form .search-field {
	width: 100%;
	font-weight: normal;
	border-color: var(--tt-orange);
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.search-form .search-field:focus {
	outline: none;
	border-color: var(--tt-blue);
}
.search-form .search-button {
	padding: 5px;
	border: 0;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	background: var(--tt-orange);
	box-shadow: none;
}
.search-form .search-button .dashicons-search {
	font-size: 30px;
	width: 1em;
	height: 1em;
	position: relative;
	color: #fff;
}

#wp-calendar {
	position: relative;
	margin-top: 50px;
}
#wp-calendar caption {
	top: -50px;
	left: 10px;
}
#wp-calendar tbody td a {
	margin: 0 -5px;
	padding: 0 5px;
	color: #fff;
	background: var(--tt-orange);
}
#wp-calendar tbody td a:hover {
	text-decoration: none;
	background: var(--tt-text-primary);
}
aside.widget ul {
	margin: 0;
	list-style: none;
}
aside.widget ul li {
	display: block;
	margin-bottom: .7em;
}
aside.widget ul li a {
	text-decoration: none;
}
.widget_archive select {
	display: block;
}
/* --------------------------------------------------------------
11.0 Gallery
-------------------------------------------------------------- */
.gallery {
	margin-bottom: 1.25em;
}
.gallery-item {
	position: relative;
	float: left;
	overflow: hidden;
	margin: 0 4px 4px 0;
}
.gallery-columns-1 .gallery-item {
	max-width: 100%;
}
.gallery-columns-2 .gallery-item {
	max-width: 48%;
	max-width: -webkit-calc(50% - 4px);
	max-width: calc(50% - 4px);
}
.gallery-columns-3 .gallery-item {
	max-width: 32%;
	max-width: -webkit-calc(33.3% - 4px);
	max-width: calc(33.3% - 4px);
}
.gallery-columns-4 .gallery-item {
	max-width: 23%;
	max-width: -webkit-calc(25% - 4px);
	max-width: calc(25% - 4px);
}
.gallery-columns-5 .gallery-item {
	max-width: 19%;
	max-width: -webkit-calc(20% - 4px);
	max-width: calc(20% - 4px);
}
.gallery-columns-6 .gallery-item {
	max-width: 15%;
	max-width: -webkit-calc(16.7% - 4px);
	max-width: calc(16.7% - 4px);
}
.gallery-columns-7 .gallery-item {
	max-width: 13%;
	max-width: -webkit-calc(14.28% - 4px);
	max-width: calc(14.28% - 4px);
}
.gallery-columns-8 .gallery-item {
	max-width: 11%;
	max-width: -webkit-calc(12.5% - 4px);
	max-width: calc(12.5% - 4px);
}
.gallery-columns-9 .gallery-item {
	max-width: 9%;
	max-width: -webkit-calc(11.1% - 4px);
	max-width: calc(11.1% - 4px);
}
.gallery-columns-1 .gallery-item:nth-of-type(1n),
.gallery-columns-2 .gallery-item:nth-of-type(2n),
.gallery-columns-3 .gallery-item:nth-of-type(3n),
.gallery-columns-4 .gallery-item:nth-of-type(4n),
.gallery-columns-5 .gallery-item:nth-of-type(5n),
.gallery-columns-6 .gallery-item:nth-of-type(6n),
.gallery-columns-7 .gallery-item:nth-of-type(7n),
.gallery-columns-8 .gallery-item:nth-of-type(8n),
.gallery-columns-9 .gallery-item:nth-of-type(9n) {
	margin-right: 0;
}
.gallery-caption {
	font-size: 1rem;
	line-height: 1.5;
	position: absolute;
	bottom: 0;
	left: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	max-height: 50%;
	margin: 0;
	padding: 6px 8px;
	text-align: left;
	opacity: 0;
	color: #fff;
	background-color: rgba(0, 0, 0, .7);
}
.gallery-caption:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	min-height: 49px;
	content: '';
}
.gallery-item:hover .gallery-caption {
	opacity: 1;
}
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
	display: none;
}

/* --------------------------------------------------------------
12.0 Comment Styles
-------------------------------------------------------------- */
#comments {
	margin-bottom: 30px;
}

/* --------------------------------------------------------------
13.0 Responsive Styles
-------------------------------------------------------------- */
@media (min-width:1200px) {
	#content #main {
		margin-left: 10px;
	}
}
@media screen and (max-width: 1199.96px) {
	#featured-posts-wrap {
		height: auto;
	}
	#featured-post-big {
		float: none;
		width: 100%;
		margin: 0 0 15px;
	}
	#featured-posts-grid {
		float: none;
		height: initial;
		flex-direction: row;
		padding-left: 0;
	}
	.featured-post-small .feature-text,
	.featured-post-small .feature-overlay {
		width: calc(100% - 5px);
	}
	.featured-post-small:first-child {
		padding-right: 5px;
	}
	.featured-post-small:last-child {
		padding-left: 5px;
	}

	.article-box {
		min-height: 220px;
	}
	.article-box .thumbnail-wrap {
		height: 120px;
	}
}
@media screen and (max-width:991.96px) {
	:root {
		--navbar-bg: #2C2D30;
	}

	.header-branding-banner {
		display: none;
	}
	.trident-header-ad {
		width: 100% !important;
		margin: 0 !important;
	}
	.trident-header-ad img {
		width: 100% !important;
	}
	.trident-flickr-item {
		float: left;
		margin-right: 10px;
	}

	#masthead {
		top: 0;
	}
	#masthead nav {
		height: 56px;
	}
	#masthead nav .navbar-collapse {
		top: 56px;
		max-height: calc(100vh - 56px);
		overflow-y: auto;
	}
	#masthead nav .navbar-collapse::-webkit-scrollbar {
		display: none;
	}
	#masthead .navbar-nav {
		align-items: stretch;
	}
	#masthead .navbar-nav > .menu-item > a {
		border-bottom: none;
	}
	#masthead .navbar-nav > .current-menu-item > a,
	#masthead .navbar-nav > .current_page_item > a,
	#masthead .navbar-nav > .current-menu-parent > a,
	#masthead .navbar-nav > .current-menu-ancestor > a {    /* orange indicator */
		border-left: 2px solid var(--tt-orange);
	}
	#masthead .navbar-nav > .menu-item-has-children:not(.submenu-open) .sub-menu {
		max-height: 0;
		padding-top: 0;
		padding-bottom: 0;
	}
	#masthead .navbar-nav > .menu-item-has-children.submenu-open > a {
		background-color: var(--tt-orange);
	}
	#masthead .navbar-nav .sub-menu {   /* word cloud */
		display: flex !important;
		position: static;
		overflow: hidden;
		flex-wrap: wrap;
		width: 100%;
		padding: 0.5em;
		border: none;

		max-height: 600px;
		transition: padding .1s, max-height .3s ease-in;
	}
	#masthead .navbar-nav .sub-menu .menu-item {
		padding: 0;
		width: unset;
		margin: 0.5em;
		border: 1px solid lightgray;
		border-radius: 1em;
	}
	#masthead .navbar-nav .sub-menu .menu-item:hover {
		border-color: var(--tt-orange);
	}
	#masthead .navbar-nav .sub-menu .menu-item a {
		padding: 0.25em 0.8em;
		border: none;
	}

	#masthead .search-form {
		display: flex;
		height: 48px;
		padding: 8px;
		width: 100%;
		max-width: 100%;
		flex-wrap: nowrap;
		justify-content: center;
	}

	.article-box .thumbnail-wrap {
		height: 120px;
	}
}
@media screen and (max-width: 767.96px) {
	.featured-post-small,
	.featured-post-small img {
		height: 225px !important;
	}

	.header-promo,
	.trident-header-ad {
		display: none !important;
	}
}
@media screen and (max-width:575.96px) {
	#page {
		margin-top: 0;
	}

	#footer-widget1,
	#footer-widget2,
	#footer-widget3,
	#footer-bottom .site-info,
	#footer-bottom .footer-nav {
		width: 100%;
	}
	#footer-bottom .site-info,
	#footer-bottom .footer-nav {
		text-align: center;
	}

	.featured-post-small,
	.featured-post-small img {
		height: calc(45vw - 20px) !important;
	}

	.article-box {
		flex-direction: row;
		min-height: unset;
		height: 120px;
		margin: 0 15px 1.5em;
		padding: 0;
		box-shadow: var(--card-shadow);
		border: solid var(--tt-orange) !important;
		border-width: 3px 0 0 3px !important;
		border-top-left-radius: 6px;
	}
	.article-box .thumbnail-wrap {
		width: 172px;
		height: 120px;
		margin-top: -3px;
	}
	.article-box .entry-header {
		margin: 0;
		padding: 0.5em;
		flex-shrink: 1;
	}

	.post-navigation .nav-links .nav-previous a,
	.post-navigation .nav-links .nav-next a {
		font-size: 1rem;
		line-height: 1.25;
	}
}
@media screen and (max-width: 399.96px) {
	.featured-post .entry-title {
		font-size: 1.5em;
	}
	.featured-post-small .entry-title {
		font-size: 1.1rem;
	}
	.featured-post .post-category-chip {
		display: none;
	}
	.article-box .thumbnail-wrap {
		width: 42vw;
		margin-top: -3px;
	}
}
