/*!
Theme Name: Rozkom
Theme URI: https://webdeveloper.com.ua/
Author: webdeveloper.com.ua
Author URI: https://t.me/webdeveloper_com_ua
Description:
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Doaccent: rozkom
Tags:
----------------------------------------------------------------------------------------- */
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: 1px solid red; */
}

*:focus,
*:active {
  outline: none;
}

:root {
  /* Font */
  --font-sans-serif: "Rubik", sans-serif;
}

html {
  line-height: normal;
  scroll-behavior: smooth;
}

body {
  /* Site Color */
  --color-black: #000;
  --color-black-light: #1d1d1d;
  --color-black-trans: rgba(0, 0, 0, 0.08);

  --color-white: #fff;
  --color-white-trans: rgba(255, 255, 255, 0.08);

  --color-accent: #b6cf4d;
  --color-accent-trans: rgba(181, 207, 77, 0.08);

  --color-gray: gray;
  --color-gray-dark: darkgray;
  --color-gray-light: #f9f9f9;

  /* Site */
  font-size: 14px;
  font-weight: 400;
  font-display: auto;
  font-family: var(--font-sans-serif);
}

/* --------------------------------------------------------------------------------------
 *
 *  Grid System
 *
----------------------------------------------------------------------------------------- */

/* Container */
.container,
.container-short,
.container-fluid {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

/* Container Default */
.container {
  max-width: 1080px !important;
}

/* Container Short */
.container-short {
  max-width: 992px !important;
}

/* Container Fluid */
.container-fluid {
  padding: 0;
  max-width: 100% !important;
}

/* Row */
.row {
  box-sizing: border-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
  flex: 0 1 auto;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.gap {
  gap: 32px;
  display: flex;
  flex-direction: column;
}

.x-space-between {
  justify-content: space-between;
}

.y-center {
  align-items: center;
}

/* Column */
[class*="col-"] {
  box-sizing: border-box;
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  max-width: 100%;
  padding: 16px;
}

.col-xs {
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  -ms-flex-preferred-size: 8.333%;
  flex-basis: 8.333%;
  max-width: 8.333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.667%;
  flex-basis: 16.667%;
  max-width: 16.667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.333%;
  flex-basis: 33.333%;
  max-width: 33.333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.667%;
  flex-basis: 41.667%;
  max-width: 41.667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.333%;
  flex-basis: 58.333%;
  max-width: 58.333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.667%;
  flex-basis: 66.667%;
  max-width: 66.667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.333%;
  flex-basis: 83.333%;
  max-width: 83.333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.667%;
  flex-basis: 91.667%;
  max-width: 91.667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

@media only screen and (min-width: 576px) {
  .col-sm {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-sm-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-sm-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-sm-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-sm-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-sm-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

@media only screen and (min-width: 992px) {
  .col-md {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-md-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-md-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-md-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-md-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-md-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

@media only screen and (min-width: 1280px) {
  .col-lg {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-lg-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-lg-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-lg-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-lg-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-lg-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

/* --------------------------------------------------------------------------------------
 *
 *  Typography
 *
----------------------------------------------------------------------------------------- */
:root {
  /* Heading */
  --font-size-h1: 32px;
  --font-size-h2: 28px;
  --font-size-h3: 26px;
  --font-size-h4: 24px;
  --font-size-h5: 22px;
  --font-size-h6: 20px;

  /* Font Size */
  --font-size-medium: 16px;
  --font-size-large: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

h1 {
  font-size: var(--font-size-h1);
}

h2 {
  font-size: var(--font-size-h2);
}

h3 {
  font-size: var(--font-size-h3);
}

h4 {
  font-size: var(--font-size-h4);
}

h5 {
  font-size: var(--font-size-h5);
}

h6 {
  font-size: var(--font-size-h6);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  cursor: pointer;
}

p {
  line-height: 1.64;
}

ul,
ol,
dl {
  line-height: 1.64;
  list-style: none;
}

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

table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  border: 1px solid var(--color-black-trans);
}

thead {
  font-weight: 500;
  text-align: center;
  color: var(--color-white);
  background: var(--color-accent);
}

tfoot {
  background: var(--color-black-trans);
}

th,
td {
  padding: 16px;
  text-align: left;
}

tr:nth-child(even) {
  background-color: var(--color-accent-trans);
}

.table-wrapper {
  overflow-x: scroll;
  margin: 16px 0;
}

/*  Typography: Editor
------------------------------------------ */
.editor {
  gap: 8px;
  display: flex;
  flex-direction: column;
}

.editor ul,
.editor ol {
  row-gap: 8px;
  display: flex;
  flex-direction: column;
}

.editor ul {
  list-style: square inside
    url("https://api.iconify.design/bi:dot.svg?color=black");
}

.editor ol {
  list-style: decimal;
}

.editor iframe {
  width: 100%;
  height: 400px;
}

.editor a {
  text-decoration: underline;
  color: var(--color-accent);
}

.editor strong,
.editor b {
  font-weight: 500;
}

/* Blockquote */
.editor blockquote {
  font-style: italic;
}

/*  Responsive
------------------------------------------ */
@media only screen and (max-width: 576px) {
  :root {
    /* Heading */
    --font-size-h1: 30px;
    --font-size-h2: 28px;
    --font-size-h3: 26px;
    --font-size-h4: 24px;
    --font-size-h5: 22px;
    --font-size-h6: 20px;
  }
}

/* --------------------------------------------------------------------------------------
 *
 *  Site Header
 *
 *  —— Headbar
 *  —— Sidebar
 *
----------------------------------------------------------------------------------------- */

:root {
  /* Site Header: Headbar */
  --headbar-height: 80px;

  /* Site Header: Sidebar */
  --sidebar-width: 320px;
}

/* Site Header */
.site-header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  position: sticky;
  background: var(--color-white);
  transition: ease-in-out 0.16s;
  border-bottom: 1px solid var(--color-black-trans);
}

/* Onscroll / Site Header */
.onscroll .site-header {
  box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.08);
}

/*  Site Header: Headbar
----------------------------------------------------------------------------------------- */

/* Headbar */
.headbar {
  display: flex;
  align-items: center;
}

.headbar [class*="col-"] {
  gap: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.headbar [class*="col-"] > *:first-child {
  margin-right: auto;
}

/* Headbar Panel */
.headbar-panel {
  gap: 32px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/*  Headbar: Headbar Navigation
------------------------------------------ */
.headbar-navigation .menu {
  gap: 32px;
  display: flex;
}

/* Headbar Navigation / Menu Item */
.headbar-navigation .menu-item {
  gap: 8px;
  height: 32px;
  display: flex;
  cursor: pointer;
  position: relative;
  align-items: center;
  transition: ease-in-out 0.16s;
  justify-content: space-between;
}

.headbar-navigation .menu-item > a {
  width: 100%;
  display: block;
}

.headbar-navigation .menu-item:hover > a,
.headbar-navigation .current-menu-item > a {
  color: var(--color-accent);
}

/* Menu Item Has Children */
.headbar-navigation .menu-item-has-children::after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
}

/* Headbar Navigation / Sub Menu */
.headbar-navigation .sub-menu {
  gap: 8px;
  left: 0;
  top: 30px;
  padding: 16px;
  display: none;
  min-width: 240px;
  position: absolute;
  border-radius: 0px;
  flex-direction: column;
  background: var(--color-white);
  color: var(--color-black) !important;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08);
}

.headbar-navigation .sub-menu .menu-item {
  height: unset;
}

/* Headbar Navigation / Sub Menu First Level */
.headbar-navigation .menu > *::after {
  background: url("https://api.iconify.design/carbon/chevron-down.svg?color=black")
    no-repeat center center / contain;
}

.headbar-navigation .menu > *:hover > .sub-menu {
  display: flex;
}

/* Headbar Navigation / Sub Menu Second Level */
.headbar-navigation .menu > * > * > *::after {
  background: url("https://api.iconify.design/carbon/chevron-right.svg?color=black")
    no-repeat center center / contain;
}

.headbar-navigation .menu > * > * > *:hover > .sub-menu {
  top: 0;
  left: 100%;
  display: flex;
}

/*  Site Header: Sidebar
----------------------------------------------------------------------------------------- */
.sidebar {
  top: 0;
  right: 0;
  width: 0;
  left: unset;
  height: 100%;
  z-index: 999;
  position: fixed;
  overflow-x: hidden;
  transition: ease-in-out 0.16s;
  background: var(--color-accent);
  border-right: 1px solid var(--color-black-trans);
}

.sidebar.open,
.sidebar > * {
  display: flex;
  flex-direction: column;
  width: var(--sidebar-width);
}

.sidebar > *:not(:last-child) {
  border-bottom: 1px solid var(--color-black-trans);
}

/* Sidebar Head */
.sidebar-head {
  padding: 0 32px;
  justify-content: center;
  min-height: var(--headbar-height);
}

/* Sidebar Branding */
.sidebar-branding {
  display: none;
}

/* Sidebar Widget */
.sidebar-panel {
  padding: 32px;
}

/*  Sidebar: Sidebar Navigation
------------------------------------------ */
.sidebar-navigation .menu {
  display: flex;
  flex-direction: column;
}

/* Headbar Navigation / Menu Item */
.sidebar-navigation .menu-item {
  display: flex;
  position: relative;
  flex-direction: column;
}

.sidebar-navigation .menu-item:not(:last-child) {
  border-bottom: 1px solid var(--color-black-trans);
}

.sidebar-navigation .menu-item > a {
  display: block;
  padding: 16px 32px;
  transition: ease-in-out 0.16s;
}

.sidebar-navigation .menu-item > a:hover,
.sidebar-navigation .current-menu-item > a {
  opacity: 0.8;
}

/* Sidebar Navigation / Sub Menu Toggle */
.sidebar-navigation .sub-menu-toggle {
  top: 10px;
  right: 32px;
  width: 32px;
  height: 32px;
  display: block;
  cursor: pointer;
  position: absolute;
  transition: ease-in-out 0.16s;
  background: url("https://api.iconify.design/carbon/chevron-down.svg?color=black")
    no-repeat center center / 16px 16px;
}

.sidebar-navigation .sub-menu-toggle.active {
  transform: rotate(180deg);
}

/* Sidebar Navigation / Sub Menu */
.sidebar-navigation .sub-menu {
  display: none;
  background: rgba(255, 255, 255, 0.4);
}

.sidebar-navigation .sub-menu.active {
  display: block;
}

/*  Sidebar: Menu Toggle
------------------------------------------ */
.sidebar-toggle {
  width: 35px;
  height: 26px;
  z-index: 1001;
  cursor: pointer;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.sidebar-toggle span {
  left: 0;
  opacity: 1;
  height: 1px;
  width: 100%;
  display: block;
  border-radius: 0;
  position: absolute;
  background: var(--color-black);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.sidebar-toggle span:nth-child(1) {
  top: 0px;
}

.sidebar-toggle span:nth-child(2),
.sidebar-toggle span:nth-child(3) {
  top: 12px;
}

.sidebar-toggle span:nth-child(4) {
  top: 24px;
}

.sidebar-toggle.change span:nth-child(1) {
  top: 14px;
  width: 0%;
  left: 50%;
}

.sidebar-toggle.change span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sidebar-toggle.change span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.sidebar-toggle.change span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

/*  Responsive
------------------------------------------ */
@media only screen and (max-width: 1320px) {
  /* Headbar Navigation */
  .headbar-navigation {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  /* Headbar Panel */
  .headbar-panel {
    display: none;
  }
}

/* --------------------------------------------------------------------------------------
 *
 *  
 *  Site Responsive Sidebar Layout
 * 
 * 
 *
----------------------------------------------------------------------------------------- */

@media only screen and (min-width: 1320px) {
  /*  Body
  ------------------------------------------ */
  .body {
    margin-left: auto;
    max-width: calc(100% - var(--sidebar-width));
  }

  /*  Site Header
  ------------------------------------------ */
  .site-header {
    color: inherit;
  }

  /* Headbar Branding */
  .headbar-branding {
    display: none;
  }

  /* Sidebar Navigation Mobile */
  .sidebar-navigation .menu-item-mobile {
    display: none;
  }

  /*  Sidebar
  ------------------------------------------ */
  .sidebar {
    left: 0;
    width: var(--sidebar-width);
  }

  /* Sidebar Branding */
  .sidebar-branding {
    display: block;
  }

  /* Sidebar Toggle */
  .sidebar-toggle {
    display: none;
  }
}

/* --------------------------------------------------------------------------------------
 *
 *  Site Page
 *
 *  —— 
 *  —— 
 *
----------------------------------------------------------------------------------------- */

/*  Site Page: Page Header
----------------------------------------------------------------------------------------- */
.page-header {
  padding: 40px 0 0 0;
}

.page-header + section {
  padding-top: 0;
}

/*  Page Meta
------------------------------------------ */

/* --------------------------------------------------------------------------------------
 *
 *  Site Footer
 *
 *  —— 
 *  —— 
 *
----------------------------------------------------------------------------------------- */
.site-footer {
  color: var(--color-gray);
  padding: var(--section-padding) 0;
  background: var(--color-black-light);
}

.site-footer [class*="col-"] {
  display: flex;
  gap: 32px 64px;
  flex-wrap: wrap;
  justify-content: space-between;
}

/*  Colophon Branding
------------------------------------------ */
.colophon-branding {
  color: var(--color-white);
}

/* Colophon Branding Logo */
.colophon-branding .site-branding__logo {
  filter: brightness(0) invert(1);
}

/*  Colophon Navigation
------------------------------------------ */

/* Colophon Navigation Menu */
.colophon-navigation .menu {
  gap: 4px;
  display: flex;
  flex-direction: column;
}

.colophon-navigation .menu-item > a {
  display: block;
  transition: ease-in-out 0.16s;
}

.colophon-navigation .menu-item > a:hover {
  color: var(--color-accent);
}

/* --------------------------------------------------------------------------------------
 *
 *  Section
 *
 *  —— 
 *  —— 
 *
----------------------------------------------------------------------------------------- */

:root {
  /* Section */
  --section-padding: 40px;
}

section {
  padding: var(--section-padding) 0;
}

/*  Section: Hero
----------------------------------------------------------------------------------------- */
section.hero {
  padding: 0;
  background: var(--color-accent-trans);
}

/*  Hero Slider
------------------------------------------ */
#hero-slider .swiper-slide {
  min-height: 420px;
  padding: var(--section-padding) 0;
}

/*  Responsive
------------------------------------------ */
@media only screen and (max-width: 768px) {
  :root {
    /* Section */
    --section-padding: 32px;
  }
}

/* --------------------------------------------------------------------------------------
 *
 *  Component
 *
 *  —— 
 *  —— 
 *
----------------------------------------------------------------------------------------- */

/*  Component: Thumbnail
----------------------------------------------------------------------------------------- */
[class*="__thumbnail"] {
  width: 100%;
  line-height: 0;
  display: block;
  overflow: hidden;
  border-radius: 0px;
  position: relative;
  padding-bottom: 100%;
  background: rgba(0, 0, 0, 0.08);
}

[class*="__thumbnail"] > * {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

/* Thumbnail Image */
[class*="__thumbnail"] > img {
  z-index: -1;
  object-fit: cover;
  transition: ease-in-out 0.16s;
}

[class*="__thumbnail"]:hover > img {
  scale: 1.04;
}

/* Thumbnail Contaoni Image */
[class*="__thumbnail"].contain {
  background: transparent;
}

[class*="__thumbnail"].contain > img {
  padding: 16px;
  object-fit: contain;
}

/*  Thumbnail Panel
------------------------------------------ */
.thumbnail-panel {
  gap: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--color-white);
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.72) 100%
  );
}

/* Thumbnail Title */
.thumbnail-title {
  display: block;
  font-weight: 500;
  line-height: 1.64;
  font-size: var(--font-size-large);
}

/*  Component: Navigation
----------------------------------------------------------------------------------------- */

/*  Component: Form
----------------------------------------------------------------------------------------- */
form {
  gap: 16px;
  display: flex;
  flex-direction: column;
}

input,
textarea {
  width: 100%;
  padding: 16px 24px;
  background: transparent;
  border: 1px solid var(--color-black-trans);
}

textarea {
  height: 96px;
}

/*  Form Fieldset
------------------------------------------ */
.form-fieldset {
  gap: 16px;
  display: flex;
  flex-direction: column;
}

/*  Contact Form 7
------------------------------------------ */

/* wpcf7-form <br> */
.wpcf7-form br {
  display: none;
}

/* .wpcf7-form-control-wrap */
.wpcf7-form-control-wrap {
  gap: 16px;
  display: flex;
  flex-direction: column;
}

/* .wpcf7-spinne */
.wpcf7-spinner {
  top: 50%;
  right: 24px;
  position: absolute;
  transform: translateY(-50%);
}

/* .wpcf7-response-output */
.wpcf7-response-output {
  font-size: 0.8rem;
  border-width: 1px;
  margin: 0 !important;
  padding: 16px !important;
}

/*  Component: Product
----------------------------------------------------------------------------------------- */

/*  Product Archive
------------------------------------------ */
#product-archive {
  padding: 16px;
}

#product-archive > * {
  padding: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.04);
}

#product-archive > *:nth-child(3n) {
  border-right: none;
}

/*  Product Box
------------------------------------------ */
.product-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: ease-in-out 0.16s;
}

.product-box:hover {
  box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.08);
}

.product-box > *:last-child {
  margin-top: auto;
}

/* Product Box Title */
.product-box__title {
  display: block;
  line-height: 1.64;
  transition: ease-in-out 0.16s;
  font-size: var(--font-size-medium);
}

.product-box__title:hover {
  color: var(--color-accent);
}

/* Product Box Panel */
.product-box__panel {
  padding: 32px;
}

/* Product Box Meta */
.product-box__meta {
  gap: 8px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 32px 32px 32px;
  justify-content: space-between;
}

.product-box__id {
  color: var(--color-gray);
}

/*  Product Price
------------------------------------------ */
.product-price {
  gap: 4px;
  display: flex;
  font-size: 24px;
  font-weight: 500;
}

.product-price::after {
  font-size: 0.96rem;
  content: attr(data-currency);
}

/*  Product Meta
------------------------------------------ */
.product-meta {
  gap: 16px 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/*  Product Annoucne
------------------------------------------ */
.product-announce__thumbnail {
  position: sticky;
  top: calc(var(--headbar-height) + 32px);
}

/* Product Announce Content */
.product-announce__content {
  gap: 16px;
  display: flex;
  flex-direction: column;
}

/*  Component: Swiper
----------------------------------------------------------------------------------------- */
.swiper-slide {
  height: auto !important;
}

/*  Component: Widget
----------------------------------------------------------------------------------------- */

.widget {
  gap: 16px;
  display: flex;
  flex-direction: column;
}

/* Widget Title */
.widget-title {
  font-weight: 500;
  font-size: var(--font-size-medium);
}

.widget-title.white {
  color: var(--color-white);
}

/*  Component: Headline
----------------------------------------------------------------------------------------- */
.headline {
  gap: 16px;
  display: flex;
  flex-direction: column;
}

/* Headline Center */
.headline.center {
  text-align: center;
  align-items: center;
}

.headline.center * {
  text-align: center;
}

/*  Headline Label
------------------------------------------ */
.headline-label {
  letter-spacing: 1.64px;
  text-transform: uppercase;
}

/*  Headline Title
------------------------------------------ */
.headline-title {
  font-weight: 500;
  line-height: 1.16;
  position: relative;
  text-transform: uppercase;
  font-size: var(--font-size-h1);
}

/* Headline Title Medium */
.headline-title.medium {
  font-size: var(--font-size-h2);
}

/*  Responsive
------------------------------------------ */

/*  Component: Language Switcher
----------------------------------------------------------------------------------------- */
.wpm-language-switcher {
  display: flex;
  align-items: center;
}

.wpm-language-switcher > *:not(:last-child)::after {
  content: "/";
  opacity: 0.16;
  margin: 0 16px;
  display: inline-block;
}

.switcher-list li.active a,
.switcher-list li.active > span {
  color: var(--color-accent) !important;
}

.switcher-list li a,
.switcher-list li > span {
  color: inherit !important;
}

/*  Component: Site Branding
----------------------------------------------------------------------------------------- */
.site-branding {
  gap: 16px;
  display: flex;
  align-items: center;
}

/* Site Branding Meta */
.site-branding__meta {
  gap: 0;
  display: flex;
  flex-direction: column;
}

/* Site Branding Logo */
.site-branding__logo {
  max-height: 48px;
  filter: brightness(0);
}

/* Site Branding Name */
.site-branding__name {
  font-size: 32px;
  font-weight: 500;
}

/* Site Branding Text */
.site-branding__text {
  font-size: 0.56rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/*  Component: Buttons
----------------------------------------------------------------------------------------- */
.buttons {
  gap: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* Buttons Center */
.buttons.center {
  justify-content: center;
}

/* Buttons End */
.buttons.end {
  justify-content: flex-end;
}

/*  Button: Default
------------------------------------------ */
.buttons [class*="button-"] {
  gap: 8px;
  height: 48px;
  display: flex;
  outline: none;
  cursor: pointer;
  padding: 0px 24px;
  text-align: center;
  align-items: center;
  border-radius: 32px;
  justify-content: center;
  transition: ease-in-out 0.16s;
  background: var(--color-accent);
  border: 1px solid var(--color-black-trans);
}

/* Button Icon */
.buttons [class*="button-"] .iconify {
  font-size: 18px;
}

/*  Button: Bordered
------------------------------------------ */
.buttons [class*="button-"].bordered {
  background: transparent;
}

.buttons [class*="button-"].bordered:hover {
  background: var(--color-accent);
}

/*  Button: White
------------------------------------------ */
.buttons [class*="button-"].white {
  background: var(--color-white);
  color: var(--color-black);
}

.buttons [class*="button-"].white:hover {
  opacity: 0.8;
}

/*  Button: Details
------------------------------------------ */
.buttons .button-details {
  padding: 0;
  height: unset;
  text-transform: unset;
  background: transparent;
  border-color: transparent;
  text-decoration: underline;
}

.buttons .button-details:hover {
  gap: 4px;
  color: var(--color-accent);
}

/*  Button: Iconed
------------------------------------------ */

/*  Component: Gallery
----------------------------------------------------------------------------------------- */

/*  Component: Modal
----------------------------------------------------------------------------------------- */
.modal {
  display: none;
}

/*  Component: Contact
----------------------------------------------------------------------------------------- */

/*  Contact List
------------------------------------------ */
.contact-list {
  gap: 8px;
  display: flex;
  flex-direction: column;
}

/*  Contact Map
------------------------------------------ */
.contact-map {
  padding: 0;
  width: 100%;
  height: 100%;
  border: none;
  height: 420px;
  line-height: 0;
}

/*  Social Media
------------------------------------------ */
.social-media {
  gap: 8px;
  display: flex;
  align-items: center;
}

.social {
  width: 48px;
  height: 48px;
  display: flex;
  font-size: 24px;
  min-width: 48px;
  min-height: 48px;
  text-align: center;
  align-items: center;
  border-radius: 16px;
  justify-content: center;
  transition: ease-in-out 0.16s;
  background: var(--color-white-trans);
  border: 1px solid var(--color-black-trans);
}

.social:hover {
  color: var(--color-accent);
}

/*  Component: Comments
----------------------------------------------------------------------------------------- */

.comment-list > .comment {
  padding: 32px;
  background: var(--color-gray-light);
  border: 1px solid var(--color-gray-light);
}

.comment-list > .comment:not(:last-child),
.comment-list > .comment ul.children .comment:not(:last-child) {
  margin-bottom: 32px;
}

.comment-list > .comment ul.children {
  margin: 32px 0 0 32px;
}

.comment-body {
  padding: 32px;
  background: var(--color-white);
}

.comment-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.comment-meta > .comment-author {
  display: flex;
  align-items: center;
}

.comment-meta > .comment-author > .avatar {
  margin-right: 10px;
}

.comment-meta > .comment-metadata {
  font-size: 12px;
}

.comment-content {
  padding: 16px 0;
  margin: 16px 0;
  border-top: 1px solid var(--color-gray-light);
  border-bottom: 1px solid var(--color-gray-light);
}

/*  Component: Post Navigation / Post Pagintaion / Comment Navigation
----------------------------------------------------------------------------------------- */

/* Page Numbers */
.page-numbers {
  width: 48px;
  height: 48px;
  display: flex;
  font-weight: 500;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.04);
}

.page-numbers.prev,
.page-numbers.next {
  background: transparent;
}

.page-numbers:hover,
.page-numbers.current {
  color: var(--color-accent);
}

/*  Pagination: Nav Links
------------------------------------------ */
.nav-links {
  display: flex;
  column-gap: 16px;
  justify-content: space-between;
}

.nav-links > * {
  display: flex;
  max-width: 280px;
  line-height: 1.8;
  font-weight: 500;
  transition: ease-in-out 0.16s;
}

.nav-links > *:last-child {
  margin-left: auto;
}

.nav-links > *:hover {
  color: var(--color-accent);
}

/* Nav Previous */
.nav-previous {
  text-align: left;
}

/* Nav Next */
.nav-next {
  text-align: right;
}

/*  Pagination: Nav Links
------------------------------------------ */
.pagination {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
