@charset "UTF-8";
/**
 * Core Assets > SCSS > Global style (above the fold).
 *
 * @package Media Base Theme
 */
/**
 * Core Assets > SCSS > Variables module.
 *
 * @package Media Base Theme
 */
/**
 * Core Assets > SCSS > Helper functions module.
 *
 * @package Media Base Theme
 */
/**
 * Core Assets > SCSS > Helper mixins module.
 *
 * @package Media Base Theme
 */
/**
 * Core Assets > SCSS > Base module.
 *
 * @package Media Base Theme
 */
:root {
  --container-width: 1120px;
  --bs-body-font-size: 1rem;
  --animate-duration: 1s;
  --animate-duration-medium: .8s;
  --animate-duration-short: .5s;
  --body-bg-color: #f5f6fb;
  --bloc-bg-color: #fff;
  --bloc-border-color: #f1f1f1;
  --header-bg-color: #000092;
  --header-bg-color-hover: #222;
  --header-menu-color: #fff;
  --header-menu-color-hover: #fff;
  --header-menu-border-opacity: .6;
  --menu-bg-color-hover: #f5f5f5;
  --divider-color: #c5d9e2;
  --text-color: #000;
  --text-color-gray: #666;
  --copyright-text-color: #000092;
  --link-color: #000092;
  --link-color-hover: #000092;
  --content-link-underline-color: #c5d9e2;
  --list-number-color: #000092;
  --btn-main-bg-color: #e32b2b;
  --btn-main-bg-color-hover: #e32b2b;
  --btn-main-color: #fff;
  --btn-main-color-hover: #fff;
  --btn-main-border-color: #e32b2b;
  --btn-main-border-color-hover: #e32b2b;
  --btn-second-bg-color: #fff;
  --btn-second-bg-color-hover: #fff;
  --btn-second-color: #000;
  --btn-second-color-hover: #000;
  --btn-second-border-color: #c5d9e2;
  --btn-second-border-color-hover: #c5d9e2;
  --spinner-border: #dadada;
  --spinner-color: #000092;
  --notification-bg-color: #cadaea;
  --notification-color: #000;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--body-bg-color);
  color: var(--text-color);
}

body:not(.wp-admin) #wpadminbar {
  position: absolute;
}

main {
  margin-top: 56px;
}

.admin-bar main {
  margin-top: 100px;
}

.container {
  max-width: 1140px;
}

.row.has-custom-background {
  background-color: #fff;
  margin-right: 0;
  margin-left: 0;
}
.row.has-custom-background > * {
  padding-right: calc(var(--bs-gutter-x) * 1);
  padding-left: calc(var(--bs-gutter-x) * 1);
  padding-top: var(--bs-gutter-x);
}

.row-equal-height > [class*=col-] {
  display: flex;
  flex-direction: column;
}

#custom-background-link:after {
  z-index: 0;
  /*height: 100vh;*/
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
}

a {
  transition: background, color 0.3s ease-in-out;
  outline: none !important;
  color: var(--text-color);
  text-decoration: none;
}
a:focus, a:active {
  text-decoration: none;
  cursor: pointer;
}

@media (hover: hover) {
  a:hover {
    text-decoration: none;
    cursor: pointer;
  }
}
.link, .footer-wrapper a, #footer-col-2 a {
  background-color: transparent;
  color: var(--link-color);
  border-color: transparent;
}
.link:focus, .footer-wrapper a:focus, #footer-col-2 a:focus, .link:active, .footer-wrapper a:active, #footer-col-2 a:active, .link.active, .footer-wrapper a.active, #footer-col-2 a.active {
  background-color: transparent;
  color: var(--link-color-hover);
}
@media (hover: hover) {
  .link:hover, .footer-wrapper a:hover, #footer-col-2 a:hover {
    background-color: transparent;
    color: var(--link-color-hover);
    border-color: transparent;
  }
}
.link, .footer-wrapper a, #footer-col-2 a, .link + svg, .footer-wrapper a + svg, #footer-col-2 a + svg {
  cursor: pointer;
}
.link + svg path, .footer-wrapper a + svg path, #footer-col-2 a + svg path {
  stroke: var(--link-color);
  fill: var(--link-color);
}

.link-text {
  background-color: transparent;
  color: var(--text-color);
  border-color: transparent;
}
.link-text:focus, .link-text:active, .link-text.active {
  background-color: transparent;
  color: var(--link-color);
}
@media (hover: hover) {
  .link-text:hover {
    background-color: transparent;
    color: var(--link-color);
    border-color: transparent;
  }
}

.page-container {
  overflow: hidden;
}

.bloc-section {
  background-color: var(--bloc-bg-color);
}

.bloc {
  width: 100%;
  clear: both;
  padding: 0 20px;
  position: relative;
  display: flex;
}
.bloc .container {
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.bloc-sm {
  padding: 20px;
}

.bloc-lg {
  padding: 100px 20px;
}

img.lazy {
  opacity: 0;
  will-change: opacity, visibility;
}
img.lazy.loaded {
  opacity: 1;
}

.img-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.img-na svg {
  width: 60%;
  height: 60%;
  display: block;
  margin: 0 auto;
}
.img-na svg path {
  fill: var(--spinner-border);
}

.loading-indicator {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 4px solid;
  border-color: var(--spinner-border);
  border-right-color: var(--spinner-color);
  animation: spinner 0.7s infinite linear;
  position: absolute;
}

hr.separator {
  height: 1px;
  border: none;
  background-color: var(--divider-color);
}

.popup-menu .icon,
.btn .icon,
#footer-col-1 a .icon {
  display: inline-block;
  margin-right: 3px;
}
.popup-menu svg,
.btn svg,
#footer-col-1 a svg {
  width: 100%;
  height: 100%;
}
.popup-menu path,
.btn path,
#footer-col-1 a path {
  fill: currentColor;
}

.popup-menu .icon {
  width: 28px;
  height: 28px;
}

button {
  transition: background 0.3s ease-in-out;
  outline: none !important;
}

.btn, #footer-col-1 a {
  display: inline-block;
  border: 1px solid;
  text-align: center;
}

.btn-rd, #footer-col-1 a {
  border-radius: 40px;
}

.btn-sm, #footer-col-1 a,
.btn-md,
.btn-lg {
  font-weight: 700;
}

.btn-md {
  padding: 10px 20px;
}

.btn-xl {
  padding: 16px 40px;
  font-size: 28px;
}

.btn-main {
  background-color: var(--btn-main-bg-color);
  color: var(--btn-main-color);
  border-color: transparent;
}
.btn-main:focus, .btn-main:active, .btn-main.active {
  background-color: var(--btn-main-bg-color-hover);
  color: var(--btn-main-color-hover);
}
@media (hover: hover) {
  .btn-main:hover {
    background-color: var(--btn-main-bg-color-hover);
    color: var(--btn-main-color-hover);
    border-color: transparent;
  }
}

.btn-second, #footer-col-1 a {
  background-color: var(--btn-second-bg-color);
  color: var(--btn-second-color);
  border-color: var(--btn-second-border-color);
}
.btn-second:focus, #footer-col-1 a:focus, .btn-second:active, #footer-col-1 a:active, .btn-second.active, #footer-col-1 a.active {
  background-color: var(--btn-second-bg-color-hover);
  color: var(--btn-second-color-hover);
}
@media (hover: hover) {
  .btn-second:hover, #footer-col-1 a:hover {
    background-color: var(--btn-second-bg-color-hover);
    color: var(--btn-second-color-hover);
    border-color: var(--btn-second-border-color-hover);
  }
}

.btn-d {
  color: var(--btn-main-color);
  background: rgba(0, 0, 0, 0.3);
  border: 0;
}
.btn-d:hover, .btn-d:focus {
  color: var(--btn-main-color);
  background: rgba(0, 0, 0, 0.3);
}

/* Helpers */
.small-shadow, .btn, #footer-col-1 a {
  box-shadow: 0 2px 6px rgba(38, 34, 97, 0.3);
}

.big-shadow, .page .post-content .wp-block-embed.wp-block-embed-youtube,
.page .post-content .wp-block-image img,
.single .post-content .wp-block-embed.wp-block-embed-youtube,
.single .post-content .wp-block-image img, #header, .btn-xl {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
}

.reset-list, #footer-col-1 ul,
#footer-col-2 ul,
.footer-wrapper ul, #menu ul,
#extra-menu ul, .breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
}

.text-gray, .page .post-content figcaption,
.single .post-content figcaption {
  color: var(--text-color-gray);
  font-style: italic;
}

.ratio-16x10 {
  --bs-aspect-ratio: 62.5%;
}

.visually-transparent {
  z-index: 1;
  position: absolute;
  width: 100%;
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 576px) {
  .bloc-xxl-sm {
    padding: 200px 20px;
  }
  .bloc-xl-sm {
    padding: 150px 20px;
  }
  .bloc-lg-sm {
    padding: 100px 20px;
  }
  .bloc-md-sm {
    padding: 50px 20px;
  }
  .bloc-sm-sm {
    padding: 20px;
  }
  .bloc-no-padding-sm {
    padding: 0 20px;
  }
}
@media (min-width: 768px) {
  .bloc-xxl-md {
    padding: 200px 20px;
  }
  .bloc-xl-md {
    padding: 150px 20px;
  }
  .bloc-lg-md {
    padding: 100px 20px;
  }
  .bloc-md-md {
    padding: 50px 20px;
  }
  .bloc-sm-md {
    padding: 20px 20px;
  }
  .bloc-no-padding-md {
    padding: 0 20px;
  }
}
@media (min-width: 992px) {
  .bloc-xxl-lg {
    padding: 200px 20px;
  }
  .bloc-xl-lg {
    padding: 150px 20px;
  }
  .bloc-lg-lg {
    padding: 100px 20px;
  }
  .bloc-md-lg {
    padding: 50px 20px;
  }
  .bloc-sm-lg {
    padding: 20px;
  }
  .bloc-no-padding-lg {
    padding: 0 20px;
  }
}
@media (max-width: 991px) {
  .container {
    width: 100%;
  }
  .bloc {
    padding-left: constant(safe-area-inset-left);
    padding-right: constant(safe-area-inset-right);
  }
  .bloc-group {
    display: block;
    width: 100%;
  }
  .bloc-group .bloc {
    display: block;
    width: 100%;
  }
}
@media (max-width: 767px) {
  :root {
    --bs-body-font-size: 1.125rem;
  }
  .page-title {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .sm-full-width {
    width: 100% !important;
  }
}
@media (min-width: 1024px) {
  main {
    margin-top: 130px;
  }
  .admin-bar main {
    margin-top: 164px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: var(--container-width);
  }
  .content-wrapper {
    max-width: 700px;
    margin-right: auto;
  }
  #right-sidebar {
    max-width: 320px;
    margin-left: auto;
  }
  .row.post-list {
    --bs-gutter-x: 40px;
  }
}
/**
 * Core Assets > SCSS > Common blocks module.
 *
 * @package Media Base Theme
 */
/* Admin bar */
#wp-admin-bar-wp-logo,
#wp-admin-bar-customize,
#wp-admin-bar-delete-cache,
#wp-admin-bar-autoptimize-delete-cache {
  display: none !important;
}

#wp-admin-bar-spinupwp > .ab-item {
  cursor: pointer !important;
}
#wp-admin-bar-spinupwp > .ab-item:before {
  content: "\f226";
  top: 2px;
}

#wp-admin-bar-rank-math .rank-math-icon {
  display: inline-block;
  top: 6px;
  position: relative;
  padding-right: 10px;
  line-height: 1;
}
#wp-admin-bar-rank-math svg {
  fill-rule: evenodd;
  fill: #dedede;
  height: 21px;
  vertical-align: inherit;
}

/* Sidebar */
#right-sidebar {
  height: 100%;
  will-change: min-height;
  overflow: hidden;
}

#sticky-widget {
  transform: translate(0, 0);
  transform: translate3d(0, 0, 0);
  will-change: position, transform;
}

.sidebar .block:not(.adspot-wrapper) {
  margin-bottom: 2rem;
}
.sidebar .block:not(.adspot-wrapper) h2,
.sidebar .block:not(.adspot-wrapper) h2 a {
  font-size: 14px;
  font-size: 0.875rem;
  color: var(--link-color);
}
.sidebar .block:not(.adspot-wrapper) h2 a:has(img) {
  display: inline-block;
}
.sidebar .block:not(.adspot-wrapper).featured-articles h2,
.sidebar .block:not(.adspot-wrapper).featured-articles h2 a {
  color: #fff;
}

/* Article list / item */
.post-list div:not(.col-md-6) .post-item .post-title {
  font-size: 25px;
  font-size: 1.5625rem;
}

.post-item {
  flex-grow: 1;
  /*&:hover .post-image img {
    transform: scale3d(1.1,1.1,1.1);
  }*/
}
.post-item .post-content {
  flex-grow: 2;
}
.post-item .post-title,
.post-item .post-description {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}
.post-item .post-title {
  font-size: 20px;
  font-size: 1.25rem;
  line-clamp: 5;
  -webkit-line-clamp: 5;
}
.post-item .post-description {
  line-clamp: 4;
  -webkit-line-clamp: 4;
}
.post-item .post-description p {
  margin: 0;
}

.post-image {
  border-radius: 6px;
  overflow: hidden;
}
.post-image img {
  z-index: 1;
  background-color: var(--bloc-bg-color);
  flex-shrink: 0;
  position: relative;
}

.post-meta {
  font-size: 13px;
  font-size: 0.8125rem;
  word-wrap: break-word;
}
.post-meta span + span::before {
  content: "/";
  margin: 0;
}
.post-meta span:empty::before {
  display: none;
}
.post-meta time {
  display: none;
}

/* Breadcrumb */
.breadcrumb {
  font-weight: 700;
}
.breadcrumb li {
  display: inline-block;
  position: relative;
}
.breadcrumb .separator {
  margin: 0 8px;
}

/* Popup menu */
.popup-menu {
  position: relative;
}
.popup-menu > .toggle:after {
  position: absolute;
  top: 100%;
  right: unset;
  bottom: unset;
  left: 0;
  width: 100%;
  height: 15px;
  content: "";
}
.popup-menu > ul {
  transition: all var(--animate-duration) cubic-bezier(0, 0, 0.2, 1);
  --animate-duration: .5s;
  position: absolute;
  top: auto;
  right: unset;
  bottom: unset;
  left: 0;
  z-index: 2;
  margin: 0;
  padding: 0;
  list-style: none;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  background-color: var(--bloc-bg-color);
  border: 1px solid var(--bloc-border-color);
  border-radius: 5px;
  opacity: 0;
  pointer-events: none;
  width: 150px;
  transform: translate(0, 40px);
  will-change: opacity, transform;
}
.popup-menu.expanded > ul, .popup-menu:not(.expanded):hover > ul {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, 15px);
}
.popup-menu li + li {
  border-top: 2px solid var(--bloc-border-color);
}
.popup-menu li a {
  display: block;
  font-size: 0.875rem;
  padding: 7px 14px;
}
.popup-menu li:hover > a {
  background-color: var(--menu-bg-color-hover);
}
.popup-menu li:hover > a path {
  fill: currentColor;
}

/* Most popular articles */
.also-read-articles h2,
.toplytics-popular-articles h2,
.toplytics-rss-feed h2 {
  font-size: 18px;
  font-size: 1.125rem;
}

.also-read-articles ol, .also-read-articles ul,
.toplytics-popular-articles ol,
.toplytics-popular-articles ul,
.toplytics-rss-feed ol,
.toplytics-rss-feed ul {
  padding-left: 0;
}
.also-read-articles ol,
.toplytics-popular-articles ol,
.toplytics-rss-feed ol {
  list-style: none;
  counter-reset: item;
}
.also-read-articles li,
.toplytics-popular-articles li,
.toplytics-rss-feed li {
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 5px;
  position: relative;
}
.also-read-articles .post-title,
.toplytics-popular-articles .post-title,
.toplytics-rss-feed .post-title {
  font-size: 20px;
  font-size: 1.25rem;
}
.also-read-articles a,
.toplytics-popular-articles a,
.toplytics-rss-feed a {
  transition: all var(--animate-duration) cubic-bezier(0, 0, 0.2, 1);
  --animate-duration: .8s;
}

.toplytics-popular-articles li,
.toplytics-rss-feed li {
  border-bottom: 1px solid var(--divider-color);
  counter-increment: item;
  padding-left: 4rem;
  position: relative;
}
.toplytics-popular-articles li:before,
.toplytics-rss-feed li:before {
  font-size: 28px;
  font-size: 1.75rem;
  color: var(--list-number-color);
  content: counter(item, decimal-leading-zero);
  position: absolute;
  left: 1rem;
}

/* RSS Feed */
.toplytics-rss-feed h2 img {
  max-height: 36px;
  max-width: 175px;
}
.toplytics-rss-feed .post-title {
  font-size: 16px;
  font-size: 1rem;
}
.toplytics-rss-feed li {
  padding-left: 3rem;
}
.toplytics-rss-feed li:before {
  font-size: 20px;
  font-size: 1.25rem;
  color: var(--list-number-color);
}
.toplytics-rss-feed.template-2 li {
  padding-left: 0;
}
.toplytics-rss-feed.template-2 li:before {
  display: none;
}
.toplytics-rss-feed .link, .toplytics-rss-feed .footer-wrapper a, .footer-wrapper .toplytics-rss-feed a, .toplytics-rss-feed #footer-col-2 a, #footer-col-2 .toplytics-rss-feed a {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}
#bottom-sidebar .also-read-articles h2,
#bottom-sidebar .also-read-articles h2 a,
#bottom-sidebar .toplytics-rss-feed h2,
#bottom-sidebar .toplytics-rss-feed h2 a,
#bottom-sidebar #article_bottom_widget_mobile h2,
#bottom-sidebar #article_bottom_widget_mobile h2 a,
#bottom-sidebar-desktop .also-read-articles h2,
#bottom-sidebar-desktop .also-read-articles h2 a,
#bottom-sidebar-desktop .toplytics-rss-feed h2,
#bottom-sidebar-desktop .toplytics-rss-feed h2 a,
#bottom-sidebar-desktop #article_bottom_widget_mobile h2,
#bottom-sidebar-desktop #article_bottom_widget_mobile h2 a,
#bottom-sidebar-mobile .also-read-articles h2,
#bottom-sidebar-mobile .also-read-articles h2 a,
#bottom-sidebar-mobile .toplytics-rss-feed h2,
#bottom-sidebar-mobile .toplytics-rss-feed h2 a,
#bottom-sidebar-mobile #article_bottom_widget_mobile h2,
#bottom-sidebar-mobile #article_bottom_widget_mobile h2 a,
.widget .also-read-articles h2,
.widget .also-read-articles h2 a,
.widget .toplytics-rss-feed h2,
.widget .toplytics-rss-feed h2 a,
.widget #article_bottom_widget_mobile h2,
.widget #article_bottom_widget_mobile h2 a {
  font-size: 18px;
  font-size: 1.125rem;
}

/* Notification */
.featured-articles .taxonomy-heading a,
.notification a {
  border-radius: 4px;
  display: block;
  padding: 8px 12px;
}

.notification a {
  font-size: 16px;
  font-size: 1rem;
  background-color: var(--notification-bg-color);
  color: var(--notification-color);
}

/* Ultimate blocks */
.ub_table-of-contents li {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
}

/* Rank Match block */
.rank-math-block .rank-math-question {
  font-size: 20px;
  font-size: 1.25rem;
}

/* Banner Ads */
.adspot-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.25s ease-in;
  overflow: hidden;
}
.adspot-wrapper[data-complete=true] {
  grid-template-rows: 1fr;
}
.adspot-wrapper[data-complete=true] > *:first-of-type:not(:empty) {
  margin-bottom: 2rem;
}
.adspot-wrapper > *:first-of-type {
  margin: 0 auto;
  min-height: 0;
  /*&:not(:empty) {
    margin-bottom: 2rem;
  }*/
}
.adspot-wrapper > iframe:first-of-type {
  margin-bottom: 2rem;
}

#main > .adspot-wrapper > *:first-of-type {
  margin-bottom: 0;
}

/* Google Ads */
.adsbygoogle {
  text-align: left;
}
.adsbygoogle[data-ad-status=unfilled] {
  /*background-color: red;*/
  display: none !important;
  height: 0 !important;
}
.adsbygoogle[data-ad-status=unfilled] * {
  display: none !important;
  height: 0 !important;
}

@media only screen and (max-width: 767px) {
  .post-list div:not(.col-md-6) .post-item .post-title {
    font-size: 26px;
    font-size: 1.625rem;
  }
  .post-item .post-title {
    font-size: 22px;
    font-size: 1.375rem;
  }
  .also-read-articles li,
  .toplytics-popular-articles li,
  .toplytics-rss-feed li {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .also-read-articles .post-title,
  .toplytics-popular-articles .post-title,
  .toplytics-rss-feed .post-title {
    font-size: 22px;
    font-size: 1.375rem;
  }
  .toplytics-rss-feed .post-title {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .notification a {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .rank-math-block .rank-math-question {
    font-size: 22px;
    font-size: 1.375rem;
  }
  .ub_table-of-contents li {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media only screen and (min-width: 1024px) {
  .post-item.hero-item .post-title {
    font-size: 28px;
    font-size: 1.75rem;
  }
  .post-item.hero-item .post-meta {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
/**
 * Core Assets > SCSS > Header module.
 *
 * @package Media Base Theme
 */
#header {
  position: absolute;
  top: 0;
  right: unset;
  bottom: unset;
  left: 0;
  z-index: 1000;
  width: 100%;
}

#header-overlay {
  position: absolute;
  top: 0;
  right: unset;
  bottom: unset;
  left: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.88);
  display: none;
}

#header.expanded ~ #header-overlay {
  display: block;
}
#header.expanded ~ main, #header.expanded ~ footer {
  filter: blur(10px);
}

.admin-bar #header {
  top: 32px;
}

.navbar {
  --bs-navbar-padding-y: 0;
}

/* Logo */
.navbar-brand img {
  max-width: 245px;
  max-height: 48px;
}

/* Menu */
#menu li,
#extra-menu li {
  position: relative;
}
#menu a,
#extra-menu a {
  font-weight: 700;
  display: block;
  position: relative;
}

#extra-menu-wrapper {
  order: 3;
}
#extra-menu-wrapper::after {
  position: absolute;
  top: 100%;
  right: -20px;
  bottom: unset;
  left: unset;
  width: 200px;
  height: 20px;
  content: "";
}
#extra-menu-wrapper > ul {
  transform: translate(0, 95px);
}
#extra-menu-wrapper:hover > ul {
  animation-delay: 1s;
  transform: translate(0, 65px);
}

/* Menu toggle */
#nav-toggle {
  width: 50px;
  height: 50px;
  background-color: transparent;
  border: none;
  padding: 0;
}
#nav-toggle.absolute {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
}

#extra-menu-toggle {
  background-color: transparent;
  color: #fff;
  border-color: transparent;
}
#extra-menu-toggle:focus, #extra-menu-toggle:active, #extra-menu-toggle.active {
  background-color: transparent;
  color: #fff;
}
@media (hover: hover) {
  #extra-menu-toggle:hover {
    background-color: transparent;
    color: #fff;
    border-color: transparent;
  }
}

.line {
  fill: none;
  stroke: var(--text-color);
  stroke-width: 4;
  will-change: stroke-dasharray, stroke-dashoffset;
}

.line-1 {
  stroke-dasharray: 60 207;
}

.line-2 {
  stroke-dasharray: 60 60;
}

.line-3 {
  stroke-dasharray: 60 207;
}

.opened .line-1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}
.opened .line-2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
}
.opened .line-3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}

/* Mobile menu */
@media only screen and (max-width: 768px) {
  .admin-bar #header {
    top: 47px;
  }
}
@media only screen and (max-width: 1023px) {
  .navbar-brand {
    --bs-navbar-brand-margin-end: 0;
  }
  .nav-wrapper,
  .menu-wrapper {
    width: 100%;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--animate-duration-short) ease-in-out;
    will-change: grid-template-rows;
  }
  .nav-wrapper.expanded,
  #menu .expanded > .menu-wrapper {
    grid-template-rows: 1fr;
  }
  #menu {
    display: block;
    overflow: hidden;
    width: 100%;
    /* Sub menu */
    /* Menu item */
  }
  #menu .toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: unset;
    left: unset;
    z-index: 1;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
  }
  #menu .toggle::before, #menu .toggle::after {
    position: absolute;
    top: 50%;
    right: unset;
    bottom: unset;
    left: 50%;
    width: 70%;
    height: 2px;
    content: "";
    display: block;
    background-color: var(--bloc-bg-color);
    opacity: 0.75;
    transition: var(--animate-duration-short) ease;
    will-change: opacity, transform;
  }
  #menu .toggle::before {
    transform: translate(-50%, -50%);
  }
  #menu .toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  #menu .expanded > a {
    background-color: var(--menu-bg-color-hover);
    color: var(--link-color-hover);
    border-color: transparent;
  }
  #menu .expanded > a:focus, #menu .expanded > a:active, #menu .expanded > a.active {
    background-color: var(--menu-bg-color-hover);
    color: var(--link-color-hover);
  }
}
@media only screen and (max-width: 1023px) and (hover: hover) {
  #menu .expanded > a:hover {
    background-color: var(--menu-bg-color-hover);
    color: var(--link-color-hover);
    border-color: transparent;
  }
}
@media only screen and (max-width: 1023px) {
  #menu .expanded > .toggle::before {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
  }
  #menu .expanded > .toggle::after {
    transform: translate(-50%, -50%) rotate(180deg);
  }
  #menu .sub-menu {
    overflow: hidden;
  }
  #menu > li:first-child {
    margin-top: 16px;
  }
  #menu > li:last-child {
    margin-bottom: 16px;
  }
  #menu li::after {
    position: absolute;
    top: 0;
    right: unset;
    bottom: unset;
    left: -50%;
    width: 200%;
    height: 2px;
    content: "";
    background: var(--bloc-border-color);
    opacity: var(--header-menu-border-opacity);
  }
  #menu li:first-child::after {
    display: none;
  }
  #menu li a {
    background-color: transparent;
    color: var(--text-color);
    border-color: transparent;
  }
  #menu li a:focus, #menu li a:active, #menu li a.active {
    background-color: transparent;
    color: var(--link-color);
  }
}
@media only screen and (max-width: 1023px) and (hover: hover) {
  #menu li a:hover {
    background-color: transparent;
    color: var(--link-color);
    border-color: transparent;
  }
}
@media only screen and (max-width: 1023px) {
  #menu li a {
    padding: 15px 10px;
  }
  #menu ul li a {
    padding-left: 20px;
  }
  #menu ul li li a {
    padding-left: 30px;
  }
  #menu ul li li li a {
    padding-left: 40px;
  }
  #menu ul li li li li a {
    padding-left: 50px;
  }
  #menu ul li li li li li a {
    padding-left: 60px;
  }
  #menu ul li li li li li li a {
    padding-left: 70px;
  }
  #menu ul li li li li li li li a {
    padding-left: 80px;
  }
  #menu ul li li li li li li li li a {
    padding-left: 90px;
  }
  #menu ul li li li li li li li li li a {
    padding-left: 100px;
  }
}
/* Desktop menu */
@media only screen and (min-width: 1024px) {
  #header {
    background-color: var(--header-bg-color);
  }
  #header.sticky {
    animation: menu-scroll 1s forwards;
    position: fixed;
  }
  #header.sticky .navbar-brand img {
    max-width: 100px;
    height: auto;
  }
  #menu .toggle {
    display: none;
  }
  #menu {
    position: relative;
    text-transform: uppercase;
    flex-wrap: nowrap;
  }
  #menu > li > a::before {
    width: 100%;
    height: 4px;
    position: absolute;
    top: unset;
    right: unset;
    bottom: -3px;
    left: 0;
    transition: all var(--animate-duration) cubic-bezier(0, 0, 0.2, 1);
    --animate-duration: .5s;
    content: "";
    background-color: var(--header-menu-color-hover);
    transform: scale3d(0, 1, 1);
    transform-origin: 50% 50%;
    will-change: transform;
  }
  #menu > li:hover > a, #menu > li:focus > a, #menu > li.active > a {
    color: var(--header-menu-color-hover);
  }
  #menu > li:hover > a::before, #menu > li:focus > a::before, #menu > li.active > a::before {
    transform: scale3d(1, 1, 1);
  }
  #menu > li {
    display: inline-block;
    padding: 0 20px;
  }
  #menu > li:first-child {
    padding-left: 0;
  }
  #menu > li:last-child {
    padding-right: 0;
  }
  #menu > li:last-child > .menu-wrapper {
    left: auto;
    right: 0;
  }
  #menu > li > a {
    background-color: transparent;
    color: var(--header-menu-color);
    border-color: transparent;
  }
  #menu > li > a:focus, #menu > li > a:active, #menu > li > a.active {
    background-color: transparent;
    color: var(--header-menu-color-hover);
  }
}
@media only screen and (min-width: 1024px) and (hover: hover) {
  #menu > li > a:hover {
    background-color: transparent;
    color: var(--header-menu-color-hover);
    border-color: transparent;
  }
}
@media only screen and (min-width: 1024px) {
  #menu > li > a {
    padding: 18px 0;
  }
  #menu > li > a::before {
    position: absolute;
    top: 0;
    right: unset;
    bottom: unset;
    left: 0;
  }
  #menu a {
    transition: all var(--animate-duration) cubic-bezier(0, 0, 0.2, 1);
    --animate-duration: .5s;
    background-color: transparent;
    color: var(--text-color);
    border-color: transparent;
  }
  #menu a:focus, #menu a:active, #menu a.active {
    background-color: transparent;
    color: var(--link-color);
  }
}
@media only screen and (min-width: 1024px) and (hover: hover) {
  #menu a:hover {
    background-color: transparent;
    color: var(--link-color);
    border-color: transparent;
  }
}
@media only screen and (min-width: 1024px) {
  #extra-menu {
    background-color: var(--header-bg-color);
    border: 0;
    right: -20px;
    left: unset;
    min-width: 200px;
  }
  #extra-menu::before {
    position: absolute;
    top: -10px;
    right: 20px;
    bottom: unset;
    left: unset;
    width: 0;
    height: 0;
    content: "";
    border-style: solid;
    border-width: 0 10px 12px 10px;
    border-color: transparent transparent var(--header-bg-color) transparent;
  }
  #extra-menu li + li {
    border-color: rgba(0, 0, 0, 0.2);
  }
  #extra-menu > li > a {
    font-size: 16px;
    font-size: 1rem;
    background-color: transparent;
    color: #fff;
    border-color: transparent;
  }
  #extra-menu > li > a:focus, #extra-menu > li > a:active, #extra-menu > li > a.active {
    background-color: transparent;
    color: #fff;
  }
}
@media only screen and (min-width: 1024px) and (hover: hover) {
  #extra-menu > li > a:hover {
    background-color: transparent;
    color: #fff;
    border-color: transparent;
  }
}
@media only screen and (min-width: 1024px) {
  #extra-menu > li > a {
    padding: 10px 14px;
  }
  #menu .menu-wrapper,
  #extra-menu .menu-wrapper {
    transition: all var(--animate-duration) cubic-bezier(0, 0, 0.2, 1);
    --animate-duration: .5s;
    position: absolute;
    top: auto;
    right: unset;
    bottom: unset;
    left: 0;
    z-index: 2;
    margin: 0;
    padding: 0;
    list-style: none;
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
    background-color: var(--bloc-bg-color);
    border: 1px solid var(--bloc-border-color);
    border-radius: 5px;
    opacity: 0;
    pointer-events: none;
    width: 200px;
    transform: translate(0, 40px);
    will-change: opacity, transform;
  }
  #menu li:hover > .menu-wrapper,
  #extra-menu li:hover > .menu-wrapper {
    opacity: 1;
    pointer-events: auto;
    transform: translate(0, 0);
  }
  #menu ul,
  #extra-menu ul {
    padding: 16px 0;
  }
  #menu ul li,
  #extra-menu ul li {
    display: block;
    padding: 0;
    position: relative;
  }
  #menu ul li.menu-item-has-children > a::after,
  #extra-menu ul li.menu-item-has-children > a::after {
    position: absolute;
    top: 6px;
    right: 20px;
    bottom: unset;
    left: unset;
    content: "●";
    font-size: 18px;
  }
  #menu ul li:hover > a,
  #extra-menu ul li:hover > a {
    background-color: var(--menu-bg-color-hover);
    color: var(--link-color);
  }
  #menu ul li a,
  #extra-menu ul li a {
    font-size: 14px;
    padding: 10px 30px;
    text-transform: capitalize;
  }
  #menu ul li > .menu-wrapper,
  #extra-menu ul li > .menu-wrapper {
    left: 100%;
    top: -16px;
  }
  #menu ul li > .menu-wrapper.left,
  #extra-menu ul li > .menu-wrapper.left {
    left: -100%;
  }
}
/**
 * Core Assets > SCSS > Typography module.
 *
 * @package Media Base Theme
 */
.roboto-regular, body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.roboto-condensed-bold, .also-read-articles .post-title,
.toplytics-popular-articles .post-title,
.toplytics-rss-feed .post-title, .featured-articles .taxonomy-heading a,
.notification a {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.roboto-mono-regular, #footer-col-1 a,
#footer-col-2 a, .page .post-content figcaption,
.single .post-content figcaption, .toplytics-popular-articles li:before,
.toplytics-rss-feed li:before, .toplytics-rss-feed .link, .toplytics-rss-feed .footer-wrapper a, .footer-wrapper .toplytics-rss-feed a {
  font-family: "Roboto Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.kontrapunkt-light, .toplytics-rss-feed.kontrapunkt li:before, .toplytics-rss-feed.kontrapunkt .link, .toplytics-rss-feed.kontrapunkt .footer-wrapper a, .footer-wrapper .toplytics-rss-feed.kontrapunkt a, .toplytics-rss-feed.kontrapunkt #footer-col-2 a, #footer-col-2 .toplytics-rss-feed.kontrapunkt a {
  font-family: "kontrapunktlight";
}

.kontrapunkt-bold, .toplytics-rss-feed.kontrapunkt .post-title {
  font-family: "kontrapunktbold";
}

/**
 * Core Assets > SCSS > Animation module.
 *
 * @package Media Base Theme
 */
.fx, .footer-wrapper a, .page .post-content a,
.single .post-content a, img.lazy, .post-image img {
  transition: all var(--animate-duration) cubic-bezier(0, 0, 0.2, 1);
}

.fx-short, #header {
  --animate-duration: .5s;
}

.fx-medium, .footer-wrapper a, .page .post-content a,
.single .post-content a, img.lazy {
  --animate-duration: .8s;
}

.fx-long {
  --animate-duration: 1s;
}

.fx-text-border > a::before, .breadcrumb li > a::before {
  width: 100%;
  height: 4px;
  position: absolute;
  top: unset;
  right: unset;
  bottom: -3px;
  left: 0;
  transition: all var(--animate-duration) cubic-bezier(0, 0, 0.2, 1);
  --animate-duration: .5s;
  content: "";
  background-color: var(--link-color-hover);
  transform: scale3d(0, 1, 1);
  transform-origin: 50% 50%;
  will-change: transform;
}
.fx-text-border:hover > a, .breadcrumb li:hover > a, .fx-text-border:focus > a, .breadcrumb li:focus > a, .fx-text-border.active > a, .breadcrumb li.active > a {
  color: var(--link-color-hover);
}
.fx-text-border:hover > a::before, .breadcrumb li:hover > a::before, .fx-text-border:focus > a::before, .breadcrumb li:focus > a::before, .fx-text-border.active > a::before, .breadcrumb li.active > a::before {
  transform: scale3d(1, 1, 1);
}

.fx-fadein,
.fx-fadeinout {
  opacity: 0;
  transform: translate3d(0, 80px, 0);
  visibility: hidden;
  will-change: opacity, visibility;
}
.fx-fadein.visible,
.fx-fadeinout.visible {
  opacity: 1;
  transform: none;
}

.fx-fadeinout.invisible {
  opacity: 0;
  transform: translate3d(0, -80px, 0);
  visibility: hidden;
}

@keyframes menu-scroll {
  0% {
    transform: translateY(-130px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes spinner {
  to {
    transform: rotate(1turn);
  }
}
@keyframes loader {
  100% {
    transform: rotate(0deg);
  }
  0% {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=common.css.map */
