/*
Theme Name: Eposo
Theme URI: https://engigogo.com
Author: QDONOW
Author URI: https://qdonow.com/
Description: A WordPress Theme for Content Curation and Curated Directory.
Version: 2.1.0
License: GPL-3.0+
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Tags: grid-layout, one-column, two-columns, right-sidebar, left-sidebar, custom-logo, custom-colors, custom-menu, editor-style, featured-images, microformats, sticky-post, threaded-comments, translation-ready
Text Domain: eposo
*/
/*=======================================
Table of contents
* Basic
* WordPress Core
* Animation Keyframes
* Nav Border Animate
* Navbar
* Fixbox
* Box Shadow
* Section
* Hero
* How To
* Library Item
* Main
* Sidebar
* Footer
* Background, Color & Border Color
* General
* Media Query
=========================================*/

/*=======================
	Basic
=========================*/
html,
body {
	height: 100%;
}
body {
	font-weight: normal;
	font-family: 'rooney-sans', 'Roboto', Helvetica, Arial, sans-serif;
}
ul,
li {
	margin: 0;
	padding: 0;
	list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
	font-family: 'usual',sans-serif;
}
section {
	overflow: hidden;
}
a,
a:hover,
a:focus,
input,
button,
textarea {
	outline: none;
	text-decoration: none;
}
a {
	color: #545454;
}
a:hover,
a:focus {
	color: #666666;
	opacity: 0.95;
}
input[type=text],
input[type=email],
input[type=search],
input[type=url],
textarea {
	display: block;
	padding: 5px 20px;
	border-radius: 4px;
	border: 1px solid #888;
	width: 100%;
	margin: 15px auto;
}
img, svg {
	vertical-align: middle;
}
select {
	width: 100%;
	padding: 8px;
	outline: none;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url(assets/images/select-arrows.png);
	background-position: right center;
	background-repeat: no-repeat;
	cursor: pointer;
	border: 1px solid rgba(0, 0, 0, 0.25);
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}
.aligncenter {
	margin: 0 auto;
	display: block;
}
.alignleft {
	float: left;
}
.alignright {
	float: right;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #000000;
}

::-moz-placeholder { /* Firefox 19+ */
	color: #000000;
}

:-ms-input-placeholder { /* IE 10+ */
	color: #000000;
}

:-moz-placeholder { /* Firefox 18- */
	color: #000000;
}
/*=======================
	End Basic
=========================*/

/*=======================
	WordPress Core
=========================*/
.alignnone {
	margin: 15px auto;
	display: block;
}
.aligncenter,
div.aligncenter {
	display: block;
	margin: 5px auto 5px auto;
}
.alignright {
	float:right;
	margin: 5px 0 20px 20px;
}
.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}
a img.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}
a img.alignnone {
	margin: 5px 20px 20px 0;
}
a img.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}
a img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.wp-caption {
	background: #fff;
	border: 1px solid #f0f0f0;
	max-width: 96%; /* Image does not overflow the content area */
	padding: 5px 3px 10px;
	text-align: center;
}
.wp-caption.alignnone {
	margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
	margin: 5px 0 20px 20px;
}
.wp-caption img {
	border: 0 none;
	height: auto;
	margin: 0;
	max-width: 98.5%;
	padding: 0;
	width: auto;
}
.wp-caption .wp-caption-text {
	font-size: 11px;
	line-height: 17px;
	margin: 0;
	padding: 0 4px 5px;
}
/*----- Text meant only for screen readers. -----*/
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}
.screen-reader-text:focus {
	background-color: #eee;
	clip: auto !important;
	/*clip-path: none;*/
	color: #444;
	display: block;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}
.bypostauthor,
.gallery-caption {
	font-size: inherit;
}
.sticky {
	position: static;
}
/*=======================
	End WordPress Core
=========================*/

/*=======================
	Animation Keyframes
=========================*/
@-webkit-keyframes scroll {
  0% {
	opacity: 0;
  }
  50% {
	opacity: 1;
  }
  100% {
	opacity: 0;
  }
}
@keyframes scroll {
  0% {
	opacity: 0;
  }
  50% {
	opacity: 1;
  }
  100% {
	opacity: 0;
  }
}
@-webkit-keyframes place-holder-anime {
	from {
		background-position: top right;
	}
	to {
		background-position: top left;
	}
}
@keyframes place-holder-anime {
	from {
		background-position: top right;
	}
	to {
		background-position: top left;
	}
}
@-webkit-keyframes wobble-vertical {
  15% {
	-webkit-transform: translateY(6px);
	        transform: translateY(6px);
  }
  30% {
	-webkit-transform: translateY(-6px);
	        transform: translateY(-6px);
  }
  45% {
	-webkit-transform: translateY(3px);
	        transform: translateY(3px);
  }
  60% {
	-webkit-transform: translateY(-3px);
	        transform: translateY(-3px);
  }
  75% {
	-webkit-transform: translateY(1px);
	        transform: translateY(1px);
  }
  100% {
	-webkit-transform: translateY(0);
	        transform: translateY(0);
  }
}
@keyframes wobble-vertical {
  15% {
	-webkit-transform: translateY(6px);
	        transform: translateY(6px);
  }
  30% {
	-webkit-transform: translateY(-6px);
	        transform: translateY(-6px);
  }
  45% {
	-webkit-transform: translateY(3px);
	        transform: translateY(3px);
  }
  60% {
	-webkit-transform: translateY(-3px);
	        transform: translateY(-3px);
  }
  75% {
	-webkit-transform: translateY(1px);
	        transform: translateY(1px);
  }
  100% {
	-webkit-transform: translateY(0);
	        transform: translateY(0);
  }
}
/*=======================
	End Animation Keyframes
=========================*/

/*=======================
	Button
=========================*/
.btn {
	min-height: 32px;
	font-weight: 500;
	letter-spacing: 0.035em;
	cursor: pointer;
}
.btn:active,
.btn:focus {
	opacity: 0.55;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
/*----- Button Size -----*/
.btn-xs {
	padding: 5px 10px;
	font-size: 11px;
	line-height: 18px;
	letter-spacing: 0.075em;
}
.btn-sm {
	padding: 5px 15px;
	font-size: 13px;
	line-height: 28px;
	letter-spacing: 0.075em;
}
.btn-md {
	padding: 10px 25px;
	font-size: 15px;
	line-height: 26px;
	letter-spacing: 0.065em;
}
.btn-lg {
	padding: 18px 55px;
	font-size: 18px;
	line-height: 34px;
}
/*----- End Button Size -----*/
/*----- Button Effect -----*/
.btn-rounded {
	border-radius: 25px;
}
.btn-lg.btn-rounded {
	border-radius: 50px;
}
.btn-shadow {
	-webkit-box-shadow: 4px 6.9px 16px rgba(0,0,0,0.2);
	        box-shadow: 4px 6.9px 16px rgba(0,0,0,0.2);
}
/*----- End Button Effect -----*/
/*----- Button Type -----*/
.btn-simple,
.btn-simpleFill,
.btn-text {
	background: transparent;
}
.btn-simple,
.btn-simpleFill {
	color: #444444;
}
.btn-text {
	min-width: auto;
	min-height: auto;
}
.btn-simple,
.btn-simpleFill {
	border: 2px solid #444444;
}
.btn-simpleFill {
	background: #444444;
	color: #ffffff;
}
.btn-simple:hover {
	background: #444444;
	color: #ffffff;
}
.btn-simpleFill:hover {
	background: #ffffff;
	color: #444444;
}
/*----- End Button Type -----*/
/*----- Button Color -----*/
.btn-simple__primary,
.btn-simpleFill__primary {
	border-color: #f6e12f;
}
.btn-simple__primary:hover {
	background: #f6e12f;
}
.btn-simpleFill__primary {
	background: #f6e12f;
	color: #000000;
}
.btn-simpleFill__primary:hover {
	background: #ffffff;
	color: #000000;
}
.btn-simple__secondary,
.btn-simpleFill__secondary {
	border-color: #dfb81f;
}
.btn-simple__secondary:hover {
	background: #dfb81f;
}
.btn-simpleFill__secondary {
	background: #dfb81f;
	color: #000000;
}
.btn-simpleFill__secondary:hover {
	background: #ffffff;
	color: #000000;
}
.btn-simple__accent,
.btn-simpleFill__accent {
	border-color: #fbb923;
}
.btn-simple__accent:hover {
	background: #fbb923;
}
.btn-simpleFill__accent {
	background: #fbb923;
	color: #ffffff;
}
.btn-simpleFill__accent:hover {
	background: #ffffff;
	color: #fbb923;
}
.btn-simple__darkGrey,
.btn-simpleFill__darkGrey {
	border-color: #e8e8e8;
}
.btn-simple__darkGrey:hover {
	background: #e8e8e8;
}
.btn-simpleFill__darkGrey {
	background: #e8e8e8;
	color: #545454;
}
.btn-simpleFill__darkGrey:hover {
	background: #ffffff;
	color: #545454;
}
/*----- End Button Color -----*/
.suggest-btn .icon {
	position: relative;
	top: 1px;
}
.twitter-follow-button {
	background-color: #1e99e6;
	font-size: 11px;
	border-radius: 3px;
	color: #fff;
	cursor: pointer;
	padding: 4px 6px;
}
.twitter-follow-button:hover,
.twitter-follow-button:focus {
	color: #ffffff;
}
.qdo-like__wrapper {
	display: inline-block;
}
.qdo-like__wrapper .qdo-like__button,
.lib-item__btn,
.item-sortby,
.item-filterby{
	border: 1px solid #e8e8e8!important;
	background-color: #fff;
	color: #545454;
}
.qdo-like__wrapper .qdo-like__button,
.lib-item__btn {
	padding: 3px 6px;
	border-radius: 3px;
	letter-spacing: 1px;
	margin: 10px 0;
}
.lib-item__btn:hover,
.lib-item__btn:focus,
.lib-item__btn.active,
.item-sortby:hover,
.item-sortby:focus,
.item-filterby:hover
.item-filterby:focus {
	cursor: pointer;
	outline: unset;
	background-color: #f3f3f3;
}
.lib-item__btn.disabled {
	pointer-events: none;
	opacity: 0.5;
}
.qdo-like__wrapper .qdo-like__button:hover {
	background-color: #f3f3f3;
}
.qdo-like__icon {
	font-size: 18px;
	vertical-align: text-bottom;
}
.item-sortby,
.item-filterby {
	height: 34px;
}
/*=======================
	End Button
=========================*/

/*=======================
	Nav Border Animate
=========================*/
.notify {
    position: relative;
}
#HW_badge_cont {
  position: absolute !important;
  top: 0;
  left: 0;
  height: 37px!important;
  width: 37px!important;
}
#HW_badge {
	top: 0!important;
	left: 22px!important;
}
#HW_frame_cont.HW_visible {
    margin-top: 15px;
}
.dropdown-toggle::after {
	display: none;
}
.cat-sidebar .qdoSticky {
    padding-top: 35px;
}
.qn-nav-item {
    position: relative;
    opacity: 0.25;
}
.qn-nav-item:hover,
.qn-nav-item.active {
    opacity: 1;
}
.qn-nav-item img {
    width: 80px;
    height: 80px;
    border: 4px solid #f6e12f;
    border-radius: 100%;
    background: #f5ee31;
}
.qn-nav__tag {
    display: block;
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    margin: 0 auto;
    border-radius: 25px;
    background: #fff;
    color: #000;
    line-height: 1.4;
}
.link-anime {
	position: relative;
	padding: 8px 0;
	z-index: 1;
}
.link-anime:before {
	content: '';
	position: absolute;
	/*right: 0;*/
	bottom: 25%;
	left: 3.5%;
	margin: 0 auto;
	height: 8%;
	max-height: 10px;
	min-height: 6px;
	background: #f6e12f;
	z-index: -1;
	width: 0;
	-webkit-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}
.link-anime:hover::before {
	width: 95%;
}
/*=======================
	End Nav Border Animate
=========================*/

/*=======================
	Navbar
=========================*/
.nav .dropdown-menu {
	border: unset;
	z-index: 99;
	background: #f6e12f;
	border-radius: unset;
	padding: 0;
	left: -215%;
}
.nav .dropdown-menu .dropdown-item {
	padding: 10px 15px;
}
.nav .dropdown-menu .dropdown-item:hover,
.nav .dropdown-menu .dropdown-item:focus {
	background: #fbb923;
	color: #000000;
}
.nav .dropdown-menu .menu-item:first-child .dropdown-item {
	position: relative;
}
.nav .dropdown-menu .menu-item:first-child .dropdown-item::before {
	width: 0;
	height: 0;
	position: absolute;
	top: -18px;
	right: 20px;
	content: '';
	border-top: 10px solid transparent;
	border-bottom: 10px solid #f6e12f;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
}
.nav .dropdown-menu .menu-item:first-child:hover .dropdown-item::before,
.nav .dropdown-menu .menu-item:first-child:focus .dropdown-item::before {
	border-bottom-color: #fbb923;
}
/*=======================
	End Navbar
=========================*/

/*=======================
	Fixbox
=========================*/
.fixbox {
	z-index: 999;
	position: fixed;
	top: 0;
	left: 0;
	height: 0;
	width: 100%;
	text-align: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	overflow: hidden;
}
.fixbox .close-btn {
	position: absolute;
	top: 60px;
	right: 8%;
	color: #000000;
	line-height: 0;
	outline: none;
}
.fixbox-item {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	left: 0;
	right: 0;
	width: 80%;
	margin: 0 auto;
}
.fixbox-item input {
	border-width: 0px;
	border-bottom: 4px solid #000000;
	border-radius: 0;
	padding: 10px 15px;
	background: transparent;
	color: #000000;
	width: 100%;
	outline: none;
}
/*=======================
	End Fixbox
=========================*/

/*=======================
	Box Shadow
=========================*/
.box-shadow {
	-webkit-transition: -webkit-box-shadow 0.25s ease;
	transition: -webkit-box-shadow 0.25s ease;
	-o-transition: box-shadow 0.25s ease;
	transition: box-shadow 0.25s ease;
	transition: box-shadow 0.25s ease, -webkit-box-shadow 0.25s ease;
	border-width: 0;
	border-radius: 10px;
	-webkit-box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.15);
	        box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.15);
	margin-bottom: 15px;
}
.box-shadow:hover {
	-webkit-box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.2);
	        box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.2);
}
/*=======================
	End Box Shadow
=========================*/

/*=======================
	Section
=========================*/
.header .logo {
	width: 100%;
	max-width: 175px;
}
.section {
	position: relative;
}
.container {
	max-width: 960px;
}
.section,
.container {
	border-top: 1px solid transparent;
}
.section .container {
	padding-top: 50px;
	padding-bottom: 50px;
}
.section-head__title {
	border-bottom: 1px solid transparent;
	margin-bottom: 20px;
	height: 44px;
}
.section-head__title span {
	border-bottom: 1px solid #000000;
	padding-bottom: 10px;
	padding-right: 10px;
	line-height: 44px;
}
.content .card {
	width: 100%;
	background-color: #ffffff;
}
.content .card__link {
	height: 100%;
}
.card__img,
.card__icon {
	width: 40px;
	height: 40px;
	position: relative;
	color: #afafaf;
}
.card__img img {
	width: 100%;
	height: 100%;
}
.card__icon i {
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	font-size: 42px;
}
/*=======================
	Section
=========================*/

/*=======================
	Hero
=========================*/
.hero i {
	display: block;
	-webkit-animation: scroll 2s infinite;
	        animation: scroll 2s infinite;
	font-size: 22px;
}
.hero i:nth-of-type(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.hero i:nth-of-type(2) {
  top: 16px;
  -webkit-animation-delay: .15s;
          animation-delay: .15s;
}
.hero i:nth-of-type(3) {
  top: 32px;
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
}
/*=======================
	End Hero
=========================*/

/*=======================
	How To
=========================*/
.how-to__img {
	width: 150px;
	height: 150px;
	position: relative;
	border: 2px solid transparent;
	overflow: hidden;
	background: #fff;
	z-index: 2;
}
.how-to__img img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 100%;
	height: auto;
	overflow: hidden;
	z-index: 1;
}
.how-to__step {
	position: absolute;
	top: -15px;
	width: 25px;
	height: 25px;
	margin-left: -70px;
	margin-top: 35px;
	color: #fff;
	z-index: 3;
}
/*=======================
	End How To
=========================*/

/*=======================
	Library Item
=========================*/
.lib-item {
	width: 100%;
	background-color: #f3f3f3;
	-webkit-transition: -webkit-box-shadow .25s cubic-bezier(0, 0.91, 0.4, 1.15);
	transition: -webkit-box-shadow .25s cubic-bezier(0, 0.91, 0.4, 1.15);
	-o-transition: box-shadow .25s cubic-bezier(0, 0.91, 0.4, 1.15);
	transition: box-shadow .25s cubic-bezier(0, 0.91, 0.4, 1.15);
	transition: box-shadow .25s cubic-bezier(0, 0.91, 0.4, 1.15), -webkit-box-shadow .25s cubic-bezier(0, 0.91, 0.4, 1.15);
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
.lib-item:hover {
	width: calc(100% + 0.28%);
	z-index: 2;
	-webkit-transform: scale(1.0028);
	    -ms-transform: scale(1.0028);
	        transform: scale(1.0028);
	-webkit-transform-origin: 0 0;
	    -ms-transform-origin: 0 0;
	        transform-origin: 0 0;
	margin-left: -.5%!important;
}
.lib .lib-item:first-child {
	margin-top: 0;
}
.lib-item:hover {
	-webkit-box-shadow: 5px 8px 20px rgba(0,0,0,0.2);
	        box-shadow: 5px 8px 20px rgba(0,0,0,0.2)
}
.lib-item__inner {
	position: relative;
}
.lib-item h2 .external-link-icon {
	font-size: 10px;
	position: relative;
	top: -10px;
}
.lib-item:hover h2 {
	color: #000000;
}
.lib-item-page {
	min-height: 95px;
}
.lib-item__img img,
.lib-item-page__img img {
	max-height: 60px;
	width: auto;
	max-width: 80%;
}
.lib-item-page__img {
	border-radius: 10px 0 0 10px;
}
.lib-item-page__img img {
	position: absolute;
	top: 40%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
		    transform: translate(-50%, -50%);
}
.lib-theme__img img {
	max-height: 100%;
	height: auto;
}
.lib-item__meta {
	position: absolute;
	bottom: 15px;
	right: 0;
}
.lib-item__features li {
	width: 49%;
	padding: 0.5%;
	margin: 0.5%;
	list-style: disc;
	float: left;
}
/*=======================
	End Library Item
=========================*/

/*=======================
	Main
=========================*/
.main li {
	list-style: unset;
}
.single-item .qdo-like__wrapper {
    text-align: center;
}
.single-item .qdo-like__wrapper .qdo-like__button {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2px 0!important;
    margin: 0;
    width: 100%;
    background: #e8e8e8;
    border-radius: 0;
    font-size: 15px;
    font-weight: 500;
}
.single-item .qdo-like__wrapper i {
	color: #545454;
}
/*=======================
	End Main
=========================*/

/*=======================
	Sidebar
=========================*/
.widget li {
	font-size: 15px;
	padding: 8px 0;
	border-bottom: 1px dashed rgba(0, 0, 0, 0.15);
}
.widget .post-date {
	font-size: 11px;
	line-height: 16px;
	letter-spacing: 1px;
	display: block;
	color: #fbb923;
}
.widget img {
	max-width: 100%;
	height: auto;
}
/* Search Form */
.search-submit {
	display: none;
}
/* Calendar */
.calendar_wrap {
	width: 100%;
}
.calendar_wrap caption {
	text-align: right;
	font-size: 12px;
}
.calendar_wrap thead {
	font-size: 10px;
}
.calendar_wrap thead th {
	padding-bottom: 10px;
}
.calendar_wrap tbody {
	color: #aaa;
}
.calendar_wrap tbody td {
	background: #e9e9e9;
	border: 1px solid #f8f8f8;
	text-align: center;
	padding: 5px;
}
.calendar_wrap tbody td:hover {
	background: #fff;
}
.calendar_wrap tbody .pad {
	background: none;
}
.calendar_wrap tfoot #next {
	font-size: 10px;
	text-transform: uppercase;
	text-align: right;
}
.calendar_wrap tfoot #prev {
	font-size: 10px;
	text-transform: uppercase;
	padding-top: 10px;
}
/* Above Footer Subscription */
.footer-subscribe-box input {
	margin: 0;
}
/*=======================
	End Sidebar
=========================*/

/*=======================
	Footer
=========================*/
.footer .logo {
	-webkit-filter: grayscale(1);
	        filter: grayscale(1);
}
.footer .nav .nav-item:nth-last-child(2) a {
	padding-right: 0;
}
.footer .nav .nav-dot:last-child {
	display: none;
}
/*=======================
	End Footer
=========================*/

/*=======================
	Background, Color & Border Color
=========================*/
.qn-border-light {
	border-color: rgba(0,0,0,0.1);
}
.qn-border-dark {
	border-color: rgba(0,0,0,0.25);
}
/* Analogous Color Scheme */
.base-color {
	color: #000000;
}
.primary-color {
	color: #f6e12f;
}
.primary-bg {
	background-color: #f6e12f;
}
.primary-border {
	border-color: #f6e12f;
}
.secondary-color {
	color: #dfb81f;
}
.secondary-bg {
	background-color: #dfb81f;
}
.secondary-border {
	border-color: #dfb81f;
}
.accent-color {
	color: #fbb923;
}
.accent-bg {
	background-color: #fbb923;
}
.accent-border {
	border-color: #fbb923;
}
.dark-grey-color {
	color: #e8e8e8;
}
.dark-grey-bg {
	background-color: #e8e8e8;
}
.light-grey-color {
	color: #fefefe;
}
.light-grey-bg {
	background-color: #fefefe;
}
.light-yellow-bg {
	background-color: #fffff2;
}
.blue-color {
	color: #64b6f7;
}
.base-font__size {
	font-size: 14px;
	line-height: 24px;
}
h1,
.primary-font__size {
	font-size: 22px;
	line-height: 32px;
}
h2,
.secondary-font__size {
	font-size: 18px;
	line-height: 28px;
}
h3,
.md-font__size {
	font-size: 16px;
	line-height: 26px;
}
h4,
.sm-font__size {
	font-size: 11px;
	line-height: 18px;
}
/* Extented Size Class */
.xxl-font__size {
	font-size: 38px;
	line-height: 48px;
}
.xl-font__size {
	font-size: 28px;
	line-height: 38px;
}
.lg-font__size {
	font-size: 24px;
	line-height: 34px;
}
/*=======================
	End Background, Color & Border Color
=========================*/

/*=======================
	General
=========================*/
.space-50 {
	padding-top: 25px;
	padding-bottom: 25px;
}
.space-25 {
	padding-top: 14.5px;
	padding-bottom: 14.5px;
}
.text-muted {
	color: #545454!important;
}
.equal-height > div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
/*=======================
	End General
=========================*/

/*=======================
	Media Query
=========================*/
@media screen and (max-width: 767px) {
	.section .container {
		padding-top: 25px;
		padding-bottom: 25px;
	}
	.lib-item__img {
		border-radius: 10px 10px 0 0;
	}
	.hidden-md-down {
		display: none;
	}
}
@media screen and (min-width: 768px){
	.lib-item__img {
		border-radius: 10px 0 0 10px;
	}
	.lib-item__img img {
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		    -ms-transform: translate(-50%, -50%);
		        transform: translate(-50%, -50%);
	}
	.qdo-like__wrapper {
		float: right;
	}
}

@media screen and (min-width: 768px) and (max-width: 812px) {
	.sidebar .subscribe-aside .btn {
		margin-left: -12px;
	}
}
@media screen and (max-width: 578px) {
	.navbar-brand,
	.nav {
		width: 100%;
	}
	.navbar-brand {
		margin: 0 0 25px 0;
		text-align: center;
	}
}
/*=======================
	End Media Query
=========================*/