/*
Theme Name: Daravy Store
Description: A Template for DARAVY.COM Website.
Author: Daravy Team
Theme URI: https://daravy.com
Author URI: https://daravy.com
Version: 0.1.0
License: Private Licence
License URI: -
Text Domain: Daravy Store
-----------------------------------------------------------------------------*/

:root {
  --font-family: "Rubik", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
  --bar-height: 62px;
  --border-radius: 5px;
  --box-shadow: 2px 2px 10px rgba(0, 0, 0, 15%);
  --layout-space: 15px;
  --layout-content-space: 25px;
  --layout-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);

  --p-adaptive-x: 2rem;
}

.mobile-full {
  max-width: 100%;
}

/* XXL */
@media screen and (max-width: 1480px) {
  :root {
    --layout-content-space: 15px;
  }
}

/* XL */
@media screen and (max-width: 1140px) {
  :root {
    --p-adaptive-x: 1.5rem;
  }
}

/* LG */
@media screen and (max-width: 960px) {
  :root {
    --p-adaptive-x: 1rem;
  }
}

/* MD */
@media screen and (max-width: 720px) {
  :root {
    --p-adaptive-x: 0.5rem;
  }

  .mobile-full {
    margin-left: -15px !important;
    margin-right: -15px !important;
    max-width: calc(100% + 30px);
  }

  .mobile-full .cc,
  .mobile-full .cc-head {
    border-radius: 0 !important;
    box-shadow: none;
  }
}

/* SM */
@media screen and (max-width: 540px) {
  :root {
    --p-adaptive-x: 0.25rem;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

ul,
ol {
  list-style: none;
}

body {
  padding: 0;
  margin: 0;
  background: var(--color-background);
  color: #323130;
  font-size: 16px;
  line-height: 1.5em;
  font-family: var(--font-family);

  --color-background: #f4f4f4;
  --color-primary: #5f69a3;
  --color: 95, 105, 163;
  --color-primary-rgb: 95, 105, 163;
  --color-primary-light: #c7cbe3;
  --color-primary-lighter: #e0e3f0;
  --color-primary-dark: #48507c;
  --color-primary-darker: #353b5b;
  --color-primary-dl: var(--color-primary-dark);
  --color-primary-ld: var(--color-primary-light);
  --color-secondary: #4caf50;
  --color-secondary-light: #81c784;
  --color-secondary-dark: #2e7d32;
  --color-secondary-dl: var(--color-secondary-dark);
  --color-secondary-ld: var(--color-secondary-light);
  --color-tagline: var(--color-secondary-dark);
  --color-gray: #ccc;
  --color-light-gray: #ddd;
  --color-lighter-gray: #e3e3e3;
  --color-bright-gray: #fafafa;
  --text-color: #222;
  --text-color-gray: #585858;
  --text-background: #fff;
  --btn-color: #fff;
  --btn-background: var(--color-primary);
  --hover-background: rgba(0, 62, 146, 10%);
  --navbar-background: #ffffff;
  --navbar-menu-background: rgba(240, 240, 240, 0.99);

  --text-color-link: #0b57d0;
  --text-color-link-hover: #477ed6;

  --color-wb: #ffffff;
  --color-wdg-80: rgba(255, 255, 255, 80%);
  --color-wdg-100: rgba(255, 255, 255, 100%);
}

body.dark {
  color: #fff;
  --color-background: rgba(39, 39, 39, 1);
  --color-primary-dl: var(--color-primary-light);
  --color-primary-ld: var(--color-primary-dark);
  --color-secondary-dl: var(--color-secondary-light);
  --color-secondary-ld: var(--color-secondary-dark);
  --color-tagline: var(--color-secondary-light);
  --color-gray: #777;
  --color-light-gray: #555;
  --color-lighter-gray: #444;
  --color-bright-gray: #333;
  --navbar-background: #181a20;
  --navbar-menu-background: #1e2329;
  --hover-background: rgba(255, 255, 255, 0.1);
  --text-color: #fff;
  --text-color-gray: #b2b2b2;
  --text-background: #555;
  --btn-color: #fff;
  --btn-background: rgba(255, 255, 255, 0.3);
  --text-color-link: #a8c7fa;
  --text-color-link-hover: #c1d8fc;

  --color-wb: #000000;
  --color-wdg-80: rgba(50, 50, 50, 0.8);
  --color-wdg-100: rgb(50, 50, 50);
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
  body.no-theme {
    background: rgb(39, 39, 39);
    color: white;
  }
}

body.preload * {
  animation-duration: 0s !important;
  -webkit-animation-duration: 0s !important;
  transition: background-color 0s, opacity 0s, color 0s, width 0s, height 0s,
    padding 0s, margin 0s !important;
}

.dark img {
  /* filter: brightness(0.85); */
  transition: filter 0.3s;
}

a {
  color: var(--text-color-link);
  transition: color 0.15s;
}

a:hover {
  color: var(--text-color-link-hover);
}

.u-centered {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.full-width .u-centered {
  max-width: 1960px;
}

.hidden-header {
  display: none;
}

i.material-icons,
svg {
  vertical-align: middle;
  font-size: 24px;
}

.with-border {
  border: 1px solid var(--color-light-gray);
}

.with-rounded {
  border-radius: var(--border-radius);
}

h1 {
  font-size: 24px;
  line-height: 1.2em;
  font-weight: 600;
}

@media (min-width: 960px) {
  h1 {
    font-size: 32px;
  }
}

code {
  background: rgba(var(--color-primary-rgb), 0.1);
  padding: 2px 4px;
  border-radius: 4px;
}

sup,
sub {
  font-size: small;
}

/***** Navigation Section ******/

.navbar {
  background: var(--navbar-background);
  border-bottom: 1px solid var(--color-lighter-gray);
  width: 100%;
  z-index: 100;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.35); */
  transition: background-color 0.15s ease;
  position: relative;
}

.navbar__wrapper {
  position: relative;
  display: flex;
  height: var(--bar-height);
  align-items: center;
  justify-content: space-between;
}

.navbar__content {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 11px var(--layout-space);
}

.navbar__main-menu {
  margin-left: 80px;
  display: flex;
  height: var(--bar-height);
  z-index: 1;
}

.navbar__logo {
  height: 40px;
  width: 128px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(https://daravy.com/navlogo.svg);
  background-position: center center;
}

@media screen and (max-width: 500px) {
  .navbar__logo {
    width: 160px;
  }
}

.dark .navbar__logo {
  background-image: url(https://daravy.com/navlogo-dark.svg);
}

.navbar__main-menu li {
  list-style: none;
  line-height: var(--bar-height);
  padding: 0;
}

.navbar__main-menu li a {
  color: var(--text-color);
  padding: 8px 17px;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.navbar__main-menu li a:hover {
  background: var(--hover-background);
}

.navbar__wrapper .search-icon,
.navbar__wrapper .menu-icon,
.navbar__wrapper .btn-theme-toggle {
  cursor: pointer;
  line-height: calc(var(--bar-height) - 20px);
  width: calc(var(--bar-height) - 20px);
  transition: background 0.3s ease;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
}

.navbar__wrapper .search-icon path,
.navbar__wrapper .menu-icon path,
.navbar__wrapper .btn-theme-toggle path {
  fill: var(--text-color);
}

.navbar__wrapper .search-icon:hover,
.navbar__wrapper .menu-icon:hover,
.navbar__wrapper .btn-theme-toggle:hover {
  background: var(--hover-background);
}

.navbar__wrapper .navbar__right,
.navbar__wrapper .menu-icon {
  margin: 0 var(--layout-space);
}

@media screen and (max-width: 350px) {
  .navbar__wrapper .btn-theme-toggle {
    display: none;
  }

  .navbar__wrapper .navbar__right,
  .navbar__wrapper .menu-icon {
    margin: 0 5px;
  }
}

.navbar__right {
  display: flex;
}

.navbar__wrapper .btn-theme-toggle {
  border: none;
  background: none;
  position: relative;
  overflow: hidden;
}

.navbar__wrapper .btn-theme-toggle svg {
  transition: transform 0.3s ease-in-out;
  position: absolute;
}

/** Light Mode **/

.navbar__wrapper .btn-theme-toggle svg.icon-light-mode {
  transform: none;
}

.navbar__wrapper .btn-theme-toggle svg.icon-dark-mode {
  transform: translateY(42px) rotate(90deg);
}

/** Dark Mode **/

.dark .navbar__wrapper .btn-theme-toggle svg.icon-light-mode {
  transform: translateY(42px) rotate(90deg);
}

.dark .navbar__wrapper .btn-theme-toggle svg.icon-dark-mode {
  transform: none;
}

.navbar__wrapper .menu-icon {
  display: none;
}

.navbar__wrapper .search-icon svg.icon-search {
  display: inline;
}

.navbar__wrapper .search-icon svg.icon-close {
  display: none;
}

.navbar__wrapper #show-search:checked~.navbar__right .search-icon svg.icon-search {
  display: none;
}

.navbar__wrapper #show-search:checked~.navbar__right .search-icon svg.icon-close {
  display: inline;
}

.navbar__wrapper #show-search:checked~.navbar__right .search-icon {
  background: var(--btn-background);
  box-shadow: var(--box-shadow);
  color: var(--btn-color);
}

.navbar__wrapper #show-search:checked~.navbar__right .search-icon path {
  fill: var(--btn-color);
}

.navbar__wrapper .search-box {
  position: absolute;
  right: calc(var(--bar-height) - 10px);
  height: 100%;
  max-width: calc(100% - var(--bar-height));
  width: 350px;
  opacity: 0;
  pointer-events: none;
  z-index: 100;
}

.navbar__wrapper .search-icon svg.icon-close {
  display: none;
}

.navbar__wrapper #show-search:checked~.search-box {
  opacity: 1;
  padding: 10px;
  pointer-events: auto;
  transition: all 0.3s ease;
}

.search-box input {
  width: 100%;
  height: 100%;
  border: 1px solid var(--hover-background);
  border-radius: var(--border-radius);
  outline: none;
  font-size: 17px;
  color: var(--text-color);
  background: var(--text-background);
  /*background: var(--color-primary-dark);*/
  padding: 0 100px 0 15px;
  font-family: var(--font-family);
  box-shadow: 2px 2px 10px rgba(0 0 0 / 10%);
}

.search-box input::placeholder {
  color: #aaaaaa;
}

.search-box .go-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  line-height: calc(var(--bar-height) - 30px);
  width: calc(var(--bar-height) - 30px);
  background: var(--btn-background);
  border: none;
  outline: none;
  color: var(--btn-color);
  font-size: 0;
  cursor: pointer;
  border-radius: 3px;
}

.navbar__wrapper input[type="checkbox"] {
  display: none;
}

/* Dropdown Menu code start */

.navbar__main-menu ul {
  position: absolute;
  background: var(--navbar-menu-background);
  top: 80px;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  border-radius: 5px;
  backdrop-filter: blur(2rem);
}

.navbar__main-menu svg {
  display: inline-block;
  width: 14px;
  height: 14px;
}

.navbar__main-menu svg path {
  fill: var(--text-color);
}

.navbar__main-menu ul:before {
  content: " ";
  height: 9px;
  margin-top: -9px;
  display: block;
}

.navbar__main-menu li:hover>ul {
  top: calc(var(--bar-height) + 4px);
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
  border: 1px solid var(--hover-background);
}

.navbar__main-menu ul li a {
  display: block;
  width: 100%;
  line-height: 1em;
  border-radius: 4px;
}

.navbar__main-menu ul {
  padding: 4px;
  box-shadow: var(--box-shadow);
  min-width: 200px;
}

.navbar__main-menu ul ul {
  position: absolute;
  top: 20px;
  left: calc(100% - 5px);
  width: max-content;
  z-index: 1;
}

.navbar__main-menu ul li {
  position: relative;
  padding: 1px;
}

.navbar__main-menu ul li:hover>ul {
  top: 0;
}

.navbar__main-menu li.menu-item-has-children>a svg {
  margin-left: 5px;
}

.navbar__main-menu li.menu-item-has-children>a i::after {
  content: "\e5cf";
}

.navbar__main-menu ul.sub-menu li.menu-item-has-children>a svg {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%) rotate(-90deg);
}

.navbar__main-menu ul.sub-menu li.menu-item-has-children>a i::after {
  content: "\e409";
}

/* Responsive code start */

@media screen and (max-width: 1260px) {
  .navbar__wrapper nav {
    max-width: 100%;
  }

  .navbar__main-menu {
    margin-left: 30px;
  }

  .navbar__main-menu li a {
    padding: 8px 13px;
  }

  .navbar__wrapper .search-box {
    max-width: calc(100% - var(--bar-height));
  }

  .navbar__wrapper .search-box input {
    padding: 0 100px 0 15px;
  }
}

@media screen and (max-width: 945px) {
  .navbar__wrapper .menu-icon {
    display: flex;
  }

  .navbar__wrapper .menu-icon svg.icon-close {
    display: none;
  }

  .navbar__wrapper .menu-icon svg.icon-menu {
    display: inline;
  }

  .navbar__wrapper #show-menu:checked~.menu-icon svg.icon-close {
    display: inline;
  }

  .navbar__wrapper #show-menu:checked~.menu-icon svg.icon-close path {
    display: inline;
    fill: #fff;
  }

  .navbar__wrapper #show-menu:checked~.menu-icon svg.icon-menu {
    display: none;
  }

  .navbar__wrapper #show-menu:checked~.menu-icon {
    background: var(--color-primary);
    box-shadow: var(--box-shadow);
  }

  .navbar__main-menu {
    display: block;
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 5px 0;
    height: 100vh;
    width: 100%;
    top: var(--bar-height);
    left: -100%;
    margin-left: 0;
    max-width: 350px;
    overflow-y: auto;
    padding-bottom: 100px;
    transition: all 0.3s ease;
  }

  .dark .navbar__main-menu {
    background: rgba(0, 0, 0, 0.8);
  }

  nav #show-menu:checked~.navbar__content .navbar__main-menu {
    left: 0%;
  }

  .navbar__main-menu li {
    margin: 0;
  }

  .navbar__main-menu li a {
    line-height: 40px;
    font-size: 20px;
    display: block;
    padding: 10px 15px 10px 52px;
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
  }

  /* dropdown responsive code start */
  .navbar__main-menu ul,
  .navbar__main-menu ul ul {
    position: static;
    opacity: 1;
    visibility: visible;
    background: none;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    padding: 0;
    border: none;
    width: 100%;
  }

  .navbar__main-menu li:hover>ul {
    border: none;
  }

  .navbar__main-menu .active>ul {
    max-height: 100vh;
  }

  .navbar__main-menu ul li {
    margin: 0 0 0 20px;
  }

  .navbar__main-menu ul li a {
    line-height: 30px;
    border-radius: 5px !important;
  }

  .navbar__main-menu li.menu-item-has-children>a svg {
    width: 48px;
    height: 48px;
    padding: 10px;
    position: absolute;
    transition: all 0.3s ease;
    transform: rotate(-90deg);
  }

  .navbar__main-menu li.menu-item-has-children>a svg,
  .navbar__main-menu ul.sub-menu li.menu-item-has-children>a svg {
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
  }

  .navbar__main-menu li.menu-item-has-children.active>a svg,
  .navbar__main-menu ul.sub-menu li.menu-item-has-children.active>a svg {
    transform: translateY(-50%) rotate(0deg);
  }

  .navbar__main-menu li.menu-item-has-children>a i::after {
    content: "\e409";
  }
}

@media screen and (max-width: 400px) {
  .content .logo a {
    font-size: 27px;
  }

  .navbar__wrapper .search-box {
    max-width: calc(100% - var(--bar-height));
  }

  .navbar__wrapper .search-box .go-icon {
    width: 30px;
  }

  .navbar__wrapper .search-box input {
    padding-right: 30px;
  }
}

/***** End Navigation Section ******/

/***** Main Layout *******/

.section-body__container,
.section-body__main-container {
  /* display: flex; */
  /* flex-flow: row wrap; */
  /* justify-content: space-between; */
  column-gap: var(--layout-space);
  row-gap: var(--layout-space);
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 960px) {

  .section-body__container,
  .section-body__main-container {
    grid-template-columns: 1fr 300px;
  }
}

.section-header,
.section-body,
.section-footer {
  margin: var(--layout-content-space) auto;
}

.section-header.back-color,
.section-footer.back-color {
  background: var(--color-light-gray);
}

.section-header.no-margin,
.section-footer.no-margin {
  margin: 0;
}

.section-header.pad,
.section-footer.pad {
  padding: var(--layout-content-space) 0;
}

.section-header__container,
.section-footer__container,
.section-body__container {
  padding: 0 var(--layout-space);
}

.section-body__main-content {
  order: 1;
  max-width: 100%;
  /* display: flex; */
  flex-direction: column;
}

.section-body__aside {
  flex-grow: 1;
  order: 2;
}

.section-body__main-aside,
.section-body__aside {
  min-width: 300px;
  max-width: 100%;
}

.section-body__main-aside img {
  max-width: 100%;
  height: auto;
}

.section-body__main-aside img.post-thumbnail {
  border-radius: var(--border-radius);
}

.ads-wrapper {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.sticky-ads_wrapper {
  margin: auto;
  width: 300px;
  min-height: 632px;
  /* background-color: var(--color-light-gray); */
}

.sticky-ads_label {
  font-size: 12px;
  width: 100%;
  height: 30px;
  text-align: center;
  line-height: 30px;
  z-index: 1;
  position: relative;
}

.sticky-ads_content {
  position: sticky;
  top: 170px;
  margin: 0px auto;
}

.section-body__main-content {
  min-width: 0;
}

@media all and (min-width: 645px) {}

@media all and (max-width: 945px) {
  .section-body__main {
    flex: none;
    width: 100%;
  }

  .section-body__main-container {
    flex-direction: column;
  }

  .ads-wrapper {
    width: 100%;
  }
}

@media all and (min-width: 1480px) {

  .section-body__container,
  .section-body__main-container {
    column-gap: calc(var(--layout-space) + 15px);
  }
}

/***** End Main Layout *******/

/************ Wordpress Default ******************/

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.alignleft {
  float: left;
}

.alignright {
  float: right;
}

/************ End Wordpress Applied **************/

/*========= Styling Content ==========*/

.style {
  --margin-bottom: 16px;
  word-wrap: break-word;
  font-size: 18px;
  line-height: 1.6em;
}

.style img {
  max-width: 100%;
  height: auto;
}

.style .wp-block-image {
  margin-bottom: var(--margin-bottom);
  position: relative;
}

.style .wp-block-image figcaption {
  padding: 0 10px;
  text-align: center;
  font-size: 12px;
  color: var(--text-color-gray);
  line-height: 1.2em;
}

.style .wp-block-table figcaption {
  padding: 5px 0;
  color: var(--text-color-gray);
  font-size: 0.925rem;
  line-height: 1.2em;
}

.style p {
  margin: 1.5rem 0;
}

.style h2,
.style h3,
.style h4,
.style h5 {
  margin: 4rem 0 2rem 0;
}

.style h2 {
  font-size: 1.6rem;
  line-height: 2rem;
}

.style h3 {
  font-size: 1.4rem;
  line-height: 1.6rem;
}

.style h4 {
  font-size: 1.225rem;
  line-height: 1.4375rem;
  font-weight: normal;
}

.style ol {
  display: block;
  list-style-type: decimal;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
}

.style ol ol {
  margin-block-start: 0px;
  margin-block-end: 0px;
}

.style ol li,
.style ul li {
  padding-left: 3px;
  margin: 5px 0;
  position: relative;
}

.style ol li::marker {
  font-weight: bold;
}

.style ul {
  display: block;
  list-style-type: disc;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
}

.style ul ul {
  list-style-type: circle;
  margin-block-start: 0px;
  margin-block-end: 0px;
  padding-inline-start: 20px;
}

.style li img {
  margin: var(--layout-space) 0;
  border-radius: var(--border-radius);
  border: 1px solid var(--color-light-gray);
}

.p-adaptive-x {
  padding-left: var(--p-adaptive-x);
  padding-right: var(--p-adaptive-x);
}

/*** Box Styling***/

.box {
  --color: var(--color-primary-rgb);
  border-radius: 4px 8px 8px 0;
  border-left-width: 4px;
  border-left-style: solid;
  padding: 0px 10px 1px 10px;
  background-color: rgba(var(--color), 10%);
  border-left-color: rgb(var(--color));
}

.box-legend {
  font-size: 18px;
  line-height: 1.2em;
  margin-left: -11px !important;
  overflow: hidden;
  filter: drop-shadow(1px 4px 0 rgba(var(--color), 0.3));
}

.box-legend span {
  background-color: rgb(var(--color));
  border-radius: 0 4px 4px 0;
  padding: 10px 20px 20px 10px;
  color: #fff;
  float: left;
  clip-path: polygon(0% 0%, 100% 0%, calc(100% - 10px) calc(100% - 6px), 10px calc(100% - 8px), 0% 100%);
}

.box.box-example {
  --color: 18, 122, 191;
}

.box.box-faq {
  --color: 44, 94, 54;
}

.style .wp-shadow img {
  box-shadow: 1px 1px 5px rgba(var(--color), 20%);
  border-radius: 5px;
}

.style .wp-caption {
  max-width: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
}

.style .wp-caption img {
  margin-bottom: 0;
  /* width: 100%; */
  display: block;
}

.style .aligncenter .wp-caption-text {
  text-align: center;
}

.style .wp-caption-text {
  margin: 3px 0 !important;
  color: var(--text-color-gray);
  font-size: 0.815rem;
}

.style .full-width>table {
  width: 100%;
}

.style td,
.style th {
  padding: 3px 5px;
}

.style .cell-border>table td,
.style .cell-border>table th {
  border: 1px solid var(--color-light-gray);
}

/************ Footer Styling section__main *********/

#footer {
  background: #181a20;
  padding: 50px 0 35px;
  color: #999;
  box-shadow: 0 200px 0 #000;
  font-size: 14px;
}

.footer__container {
  padding: 0 var(--layout-space);
}

.footer__main {
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--layout-space);
}

.footer-logo {
  margin-bottom: 5px;
}

@media all and (min-width: 945px) {
  .footer__col {
    flex: 1;
  }
}

.footer__menu {
  display: flex;
  column-gap: 15px;
  justify-content: flex-start;
  margin: var(--layout-space) 0;
}

.footer__menu ul {
  list-style: none;
  margin-right: 10px;
  padding-left: 0;
  line-height: 2em;
}

.footer__menu li a {
  color: #fff;
  font-weight: 500;
}

.footer__menu li a:hover {
  color: #aaa;
}

#footer h3 {
  font-size: 17px;
  font-weight: bold;
  color: #999;
  margin: 0;
  padding: 0;
  clear: both;
  line-height: 1em;
}

#footer .copyright {
  color: #f1f1f1;
  margin: 30px 0 10px 0;
  text-align: left;
}

.social-widget,
.social-widget ul {
  display: flex;
  gap: 8px;
}

.social-widget span {
  font-size: 18px;
  display: inline-block;
  margin-right: 5px;
  line-height: 26px;
  color: #eee;
}

.social-widget a {
  width: 26px;
  height: 26px;
  text-align: center;
  background: var(--color-light-gray);
  border-radius: 25%;
  padding: 4px;
  transition: background-color 0.15s;
  color: var(--text-color);
  display: flex;
}

.social-widget svg {
  fill: var(--text-color);
  max-width: 100%;
  height: auto;
}

.social-widget a:hover {
  /* color: #000; */
  background: var(--color-gray);
}

#footer-disclaimer {
  padding: 5px 0;
  border-top: 1px solid #555;
}

/************ End Footer Stying ***********/

/************ Widget Section *************/

.widget {
  margin-bottom: 20px;
  text-align: center;
}

.widget.sticky {
  position: sticky;
  top: var(--layout-space);
  margin-top: var(--layout-content-space);
  margin-bottom: 0;
}

.widget .widget__container {
  text-align: left;
}

.widget.basic .widget__header,
.section__header {
  border-bottom: 3px solid var(--color-primary);
  height: 30px;
  overflow: hidden;
}

.widget.line .widget__header {
  border-bottom: 1px solid var(--color-light-gray);
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.widget.basic .widget__header h4,
.section__header h2,
.section__header h3 {
  background: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  font-size: 14px;
  color: #fff;
  height: 28px;
  line-height: 28px;
  display: inline-block;
  padding: 0 10px;
  position: relative;
  text-shadow: -1px 1px 0px var(--color-primary-dark);
  border-radius: var(--border-radius) 0 0 0;
  margin: 0;
}

.widget.basic .widget__header h4:after,
.section__header h2:after,
.section__header h3:after {
  content: " ";
  border: 28px solid transparent;
  border-right: 1px none #000;
  border-left-width: 20px;
  border-left-color: var(--color-primary-dark);
  position: absolute;
  top: 0;
  z-index: -10;
  right: -20px;
  border-bottom: none;
  transform: scale(1.1);
}

.widget.basic .widget__content.pad {
  padding: 5px;
}

.widget.basic .widget__content.border {
  border: 1px solid var(--color-light-gray);
  border-top: none;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  box-shadow: 0 1px 0 rgba(128, 128, 128, 40%);
  overflow: hidden;
}

/*** Section ***/

.section-body .section__content {
  padding: var(--layout-content-space) 0;
}

/************ End Widget Section *************/

/************ Table of Content **************/

.widget.accordion {
  border: 1px solid var(--color-light-gray);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(128, 128, 128, 40%);
}

#show-toc {
  display: none;
}

.widget.accordion .widget__header {
  background: var(--navbar-background);
  display: flex;
  justify-content: space-between;
  height: 36px;
  border-bottom: 1px solid var(--color-light-gray);
}

.widget.accordion .widget__header h4 {
  line-height: 36px;
  padding: 0 10px;
}

.widget.accordion .widget__header .toc-icon {
  border-left: 1px solid var(--color-light-gray);
  padding: 3px;
  cursor: pointer;
}

.widget.accordion .widget__header .toc-icon svg {
  width: 28px;
  height: 28px;
  transition: transform 0.3s;
  transform: rotate(-90deg);
}

.dark .widget.accordion .widget__header .toc-icon svg path {
  fill: #fff;
}

.widget.accordion #show-toc:checked~.widget__header .toc-icon svg {
  width: 28px;
  height: 28px;
  transform: rotate(0deg);
}

.widget.accordion .widget__content {
  transition: max-height 0.5s ease-out;
  max-height: 0;
}

.widget.accordion #show-toc:checked~.widget__content {
  max-height: 250px;
  transition: max-height 0.5s ease-in;
  overflow-y: auto;
}

.widget.accordion .widget__content .widget.accordion .widget__content>ul {
  padding: 5px;
}

.widget.accordion .widget__content ul li {
  margin-left: 10px;
}

.toc-nav ul ul {
  padding-left: 15px;
}

.toc-nav a {
  display: block;
  padding: 5px;
  color: var(--text-color-gray);
  transition: color 0.3s, padding 0.3s;
  position: relative;
  line-height: 1.25em;
}

.toc-nav a:hover,
.toc-nav a.active {
  color: var(--text-color);
  font-weight: 500;
  padding-left: 8px;
}

.toc-nav a:before {
  transition: height 0.3s;
  height: 0;
  content: " ";
}

.toc-nav a.active:before {
  content: " ";
  width: 3px;
  height: calc(100% - 10px);
  background: var(--color-primary);
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  border-radius: 2px;
}

.toc-nav a:hover {
  color: var(--color-primary);
}

@media all and (max-width: 1260px) {

  /*    .widget.widget.accordion {
        margin-bottom: 0;
    }*/
  .toc-nav a {
    white-space: normal;
  }
}

.cc-toc {
  padding-bottom: 15px;
  border-bottom: 1px dashed var(--color-light-gray);
  margin-bottom: 15px;
  display: flex;
  flex-direction: row-reverse;
  /* justify-content: space-between; */
  justify-content: start;
  background: linear-gradient(45deg,
      rgba(var(--color-primary-rgb), 2%),
      rgba(var(--color-primary-rgb), 15%));
}

.cc-toc .toc-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: 30%;
  flex-grow: 1;
  /* max-width: 50%; */
}

.cc-toc .toc-icon .app-icon__shadow {
  transform: scale(1.2) translateY(1px);
}

@media all and (max-width: 576px) {
  .cc-toc {
    display: block;
  }

  .cc-toc .toc-icon {
    display: block;
    margin: 15px;
  }
}

/************ Small Thumb List Variation *************/

ul.list__small-thumb li {
  padding: 5px;
  border-bottom: 1px solid var(--color-light-gray);
}

ul.list__small-thumb li a {
  display: flex;
  column-gap: 10px;
}

ul.list__small-thumb li:last-child {
  border-bottom: none;
}

ul.list__small-thumb .post-image img {
  width: 100px;
  height: auto;
  transition: filter 0.3s;
}

ul.list__small-thumb .post-content {
  flex: 1;
  line-height: 1.2em;
}

ul.list__small-thumb .post-content h4 {
  font-size: 14px;
  color: var(--text-color);
  font-weight: 400;
  transition: color 0.3s;
}

ul.list__small-thumb li a:hover img {
  filter: brightness(1.1);
}

ul.list__small-thumb li a:hover h4 {
  color: var(--color-primary);
}

/************ End Small Thumb List Variation *************/

/************ Medium Thumb List Variation *************/

ul.list__med-thumb li {
  padding: 5px;
  border-bottom: 1px solid var(--color-light-gray);
}

ul.list__med-thumb li a {
  display: flex;
  column-gap: 10px;
}

ul.list__med-thumb li:last-child {
  border-bottom: none;
}

ul.list__med-thumb .post-image img {
  width: 100px;
  transition: filter 0.3s;
}

ul.list__med-thumb .post-content {
  flex: 1;
  line-height: 1.2em;
}

ul.list__med-thumb .post-content h4 {
  font-size: 13px;
  color: var(--text-color);
  font-weight: 400;
  transition: color 0.3s;
}

ul.list__med-thumb li a:hover img {
  filter: brightness(1.1);
}

ul.list__med-thumb li a:hover h4 {
  color: var(--color-primary-light);
}

/************ End Small Thumb List Variation *************/

/******** Articles Column Group **********/

.article-col-group {
  position: relative;
  z-index: 8;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  margin: 20px -15px 40px;
}

.article-col-group .article-col {
  flex: 0 1 calc(50% - 30px);
  margin: 0 15px 20px;
}

@media only screen and (max-width: 761px) {
  .article-col-group .article-col {
    flex: 1 1 100%;
  }
}

article.article-col-bullet {
  display: block;
  clear: both;
  overflow: hidden;
  margin-bottom: 20px;
}

.article-col-bullet__featured {
  display: block;
  clear: both;
  overflow: hidden;
  margin-bottom: 20px;
}

article.article-col-bullet a:hover h3.article-col-bullet__title,
article.article-col-bullet__featured a:hover h3.article-col-bullet__title {
  color: var(--accent-color);
}

.article-col-bullet img.article-col-bullet__thumb {
  float: left;
  margin-right: 15px;
  max-width: 100px;
}

.article-col-bullet__featured img.article-col-bullet__thumb {
  max-width: 100%;
  width: 100%;
}

.article-col-bullet__body {
  overflow: hidden;
}

h3.article-col-bullet__title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3em;
  color: #000;
  -webkit-transition: color 150ms;
  -moz-transition: color 150ms;
  -o-transition: color 150ms;
  transition: color 150ms;
}

.article-col-bullet__featured h3.article-col-bullet__title {
  font-size: 26px;
  margin: 10px 0 5px 0;
  font-weight: 700;
}

.article-col-bullet__summary {
  font-size: 13px;
  color: #888;
  margin: 3px 0 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

p.article-col-bullet__description {
  font-size: 15px;
  line-height: 1.4em;
  color: #777;
  margin-top: 2px;
}

@media (max-width: 500px) {
  p.article-col-bullet__description {
    display: none;
  }
}

/******** End Articles Column Group *********/

/***************************************
Article Group List View
***************************************/

/**
 * Top Posts
 */

.post-group {
  margin-bottom: var(--layout-content-space);
}

.post-group ul {
  display: flex;
  column-gap: var(--layout-content-space);
  row-gap: var(--layout-content-space);
  flex-wrap: wrap;
}

.style .post-group ul {
  list-style-type: none;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0;
}

.post-group .post-item {
  display: flex;
  column-gap: var(--layout-space);
  row-gap: var(--layout-space);
  color: var(--text-color);
}

.post-group img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 !important;
}

.post-group .post-item h3 {
  font-size: 24px;
  margin: 0 0 5px 0;
  line-height: 1.2em;
  transition: color 0.3s;
}

.post-group .post-item__meta {
  color: var(--text-color-gray);
  font-size: 14px;
  line-height: 1em;
  margin-bottom: 5px;
}

.post-group .post-item__tagline {
  color: var(--color-tagline);
  font-size: 14px;
  line-height: 1em;
  margin-bottom: 5px;
}

.post-group .summary {
  color: var(--text-color-gray);
}

@media screen and (max-width: 960px) {
  .post-group .post-item h3 {
    font-size: 16px;
    font-weight: 400;
  }

  .post-group .post-item__tagline {
    font-size: 13px;
  }
}

.post-group .post-item:hover img {
  filter: brightness(1.1);
}

.post-group .post-item:hover h3 {
  color: var(--color-primary);
}

.dark .post-group .post-item:hover h3 {
  color: var(--text-color-gray);
}

/*** Basic ***/

.post-group.basic ul {
  flex-direction: column;
}

.post-group.basic .post-item__image {
  max-width: 256px;
  flex: 1 1 30%;
}

.post-group.basic.compact .post-item__image {
  max-width: 192px;
  flex: 1 1 30%;
}

.post-group.basic .post-item__content {
  flex: 1 1 70%;
}

@media screen and (max-width: 690px) {
  .post-group.basic .summary {
    display: none;
  }
}

/*** Grid ***/

.post-group.grid ul {
  flex-direction: row;
}

.post-group ul li {
  width: 100%;
}

.post-group.grid ul li {
  flex: 1 1 21%;
}

.post-group.grid.grid3 ul li {
  flex: 1 1 30%;
}

@media screen and (max-width: 690px) {
  .post-group.grid ul li {
    flex: 1 1 40%;
  }
}

.post-group.grid .post-item {
  flex-direction: column;
}

.post-group.grid .post-item h3 {
  font-size: 20px;
}

.post-group.grid .summary {
  display: none;
}

@media screen and (max-width: 1260px) {
  .post-group.grid .post-item h3 {
    font-size: 16px;
  }
}

/*** Grid Device ***/

.post-group.grid.device ul li {
  flex: 1 1 40%;
  border-radius: var(--border-radius);
  border: 1px solid var(--color-light-gray);
  overflow: hidden;
}

@media screen and (max-width: 690px) {
  .post-group.grid.device ul li {
    flex: none;
  }
}

.post-group.grid.device .post-item {
  flex-direction: row;
}

.post-group.grid.device .post-item__image {
  flex: none;
  width: 140px;
  padding: 10px 0;
  background: #fff;
  filter: brightness(0.95);
}

.dark .post-group.grid.device .post-item__image {
  filter: brightness(0.85);
}

.dark .post-group.grid.device .post-item__image img {
  filter: none;
}

.post-group.grid.device .post-item__tagline {
  margin-bottom: 2px;
  color: var(--text-color-gray);
}

.post-group.grid.device .post-item__content {
  padding: 5px;
}

.post-group.grid.device .post-item h3 {
  font-size: 14px;
}

/*========
SIMPLE PAGINATION
=========*/

.simple-pagination {
  margin: 15px 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.simple-next-post {
  margin-left: var(--layout-space);
}

.simple-next-post a,
.simple-previous-post a {
  color: #fff;
  background: var(--color-primary);
  display: block;
  padding: 3px 10px;
  text-align: center;
  text-transform: uppercase;
  border-radius: var(--border-radius);
  box-shadow: 0 1px 0 var(--color-primary-dark);
}

.simple-next-post a:hover,
.simple-previous-post a:hover {
  opacity: 0.9;
}

/*======= Tags & Video Wrapper ========*/

.single-tags {
  margin: 25px 0;
  font-size: 14px;
}

.single-tags .tag a {
  padding: 0 10px;
  margin: 4px 8px 4px 0;
  color: var(--text-color);
  display: inline-block;
  transition: color 150ms, border-color 150ms;
  border: 1px solid #ddd;
  border-radius: 5px;
  line-height: 2em;
}

.single-tags .tag a:hover {
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.single-tags .single-tags-title {
  padding: 0 10px;
  margin: 4px 8px 4px 0;
  color: #333;
  display: inline-block;
  border: 1px solid #ddd;
  line-height: 2em;
  border-radius: 5px 0 0 5px;
  background: linear-gradient(#f1f1f1, #fafafa);
  font-weight: 600;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 0;
  height: 0;
  background: #ddd;
  margin: 25px 0;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**** Simple Flex Column ****/

.simple-cols {
  display: flex;
  column-gap: var(--layout-content-space);
}

.simple-cols.col2 .simple-col {
  flex: 1 1 50%;
}

/**** btn ****/

.btn {
  display: inline-block;
  padding: 0 4px;
  border-radius: var(--border-radius);
  background: var(--color-primary);
  color: #fff !important;
}

.btn-small {
  font-size: 11px;
  line-height: 14px;
}

/*** Breadcrumbs ***/

.breadcrumbs-block {
  border: 1px solid var(--color-light-gray);
  border-radius: 5px;
  height: 30px;
  line-height: 30px;
  overflow: hidden;
  font-size: 13px;
  margin: 0 0 7px 0;
  font-weight: normal;
  white-space: nowrap;
  background: #fff;
}

@media (max-width: 480px) {
  .breadcrumbs-block {
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .breadcrumbs-block::-webkit-scrollbar {
    display: none;
  }
}

.breadcrumbs-block a {
  cursor: pointer;
  display: inline-block;
  max-width: 100%;
  padding: 0 5px 0 12px;
  color: var(--text-color);
  background: #f1f1f1;
  position: relative;
  zoom: 1;
  max-width: 50%;
  font-weight: normal;
  transition: all 0.15s;
}

.breadcrumbs-block span.seperator {
  display: none;
}

.breadcrumbs-block a::before {
  content: " ";
  border: 25px solid transparent;
  border-right: 1px none black;
  border-left-width: 10px;
  border-left-color: var(--color-light-gray);
  display: block;
  position: absolute;
  right: -9px;
  top: -9px;
  z-index: 50;
  width: 0px;
  height: 0px;
}

.breadcrumbs-block a::after {
  content: " ";
  border: 25px solid transparent;
  border-right: 1px none black;
  border-left-width: 10px;
  border-left-color: #f1f1f1;
  -moz-border-right-colors: #f1f1f1;
  display: block;
  position: absolute;
  right: -7px;
  top: -11px;
  z-index: 51;
  white-space: nowrap;
  overflow: hidden;
  text-indent: 9999px;
  width: 0px;
  height: 0px;
  transition: all 0.15s;
}

.breadcrumbs-block a:hover {
  background: #fafafa;
  color: var(--color-primary-dl);
}

.breadcrumbs-block a:hover::after {
  border-left-color: #fafafa;
}

.breadcrumbs-block .breadcrumb_last {
  text-overflow: ellipsis;
  word-wrap: normal;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  padding: 0 5px 0 12px;
  color: #888;
}

.dark .breadcrumbs-block {
  background: #333;
}

.dark .breadcrumbs-block a {
  background: #444;
}

.dark .breadcrumbs-block a::after {
  border-left-color: #444;
  -moz-border-right-colors: #444;
}

.dark .breadcrumbs-block a:hover {
  background: var(--color-gray);
}

.dark .breadcrumbs-block a:hover::after {
  border-left-color: var(--color-gray);
}

/*** Search Hero ***/
.search-hero {
  margin: 0 var(--layout-space);
}

/*** References ***/
.references li {
  padding: 5px 10px !important;
  border-radius: 5px;
}

.references li:target {
  background: rgba(var(--color-primary-rgb), 20%);
}