/*!
Theme Name: Odkup24
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 Domain: odkup24
Tags:
----------------------------------------------------------------------------------------- */
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: 1px solid red; */
}

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

:root {
  /* font */
  --font-sans-serif: "Play", sans-serif;

  /* color */
  --color-black: #000000;
  --color-black-light: #202020;
  --color-black-trans: rgba(0, 0, 0, 0.08);

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

  --color-accent: #dc0b38;
  --color-accent-trans: rgba(220, 11, 56, 0.08);

  --color-gray: #878787;
  --color-gray-dark: #5d5d5d;
  --color-gray-light: #f8f8f8;
}

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

body {
  font-size: 16px;
  font-weight: 400;
  font-display: auto;
  color: var(--color-gray-dark);
  font-family: var(--font-sans-serif);
}

/*  responsive
------------------------------------------ */

/* responsive hide */
@media only screen and (max-width: 1180px) {
  .hide-1180 {
    display: none !important;
  }
}

@media only screen and (max-width: 992px) {
  /* body */
  body {
    font-size: 14px;
  }
  /* hide 992 */
  .hide-992 {
    display: none !important;
  }
}

@media only screen and (max-width: 768px) {
  .hide-768 {
    display: none !important;
  }
}

@media only screen and (max-width: 576px) {
  .hide-576 {
    display: none !important;
  }
}

/* responsive show */
@media only screen and (min-width: 1180px) {
  .show-1180 {
    display: none !important;
  }
}

@media only screen and (min-width: 992px) {
  .show-992 {
    display: none !important;
  }

  /* gap 992 */
  .gap-992 {
    gap: 64px;
  }
  .gap-992 > [class*="col-"] {
    max-width: calc(50% - 32px);
  }
}

@media only screen and (min-width: 768px) {
  .show-768 {
    display: none !important;
  }
}

@media only screen and (min-width: 576px) {
  .show-576 {
    display: none !important;
  }
}

/* --------------------------------------------------------------------------------------
 *
 *  HTML
 *
 *  ——
 *  ——
 *
----------------------------------------------------------------------------------------- */

:root {
  /* heading */
  --font-size-h1: 48px;
  --font-size-h2: 32px;
  --font-size-h3: 28px;
  --font-size-h4: 24px;
  --font-size-h5: 20px;
  --font-size-h6: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin: 0 !important;
  font-family: var(--font-serif);
}

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.56;
}

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

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

hr {
  border: none;
  border-bottom: 1px solid var(--color-black-trans);
}

blockquote {
  padding: 16px;
  position: relative;
  background: var(--color-accent-trans);
  border-left: 2px solid var(--color-accent);
}

blockquote::after {
  top: 16px;
  right: 16px;
  content: "";
  width: 16px;
  height: 16px;
  opacity: 0.16;
  position: absolute;
  background: url("https://api.iconify.design/entypo/quote.svg") no-repeat
    center center / contain;
}

/*  table
------------------------------------------ */
table,
td,
th {
  border: 1px solid var(--color-black-trans);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
}

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

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

thead {
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-accent);
}

/*  responsive
------------------------------------------ */
@media only screen and (max-width: 992px) {
  :root {
    /* heading */
    --font-size-h1: 34px;
    --font-size-h2: 32px;
    --font-size-h3: 28px;
    --font-size-h4: 24px;
    --font-size-h5: 20px;
    --font-size-h6: 16px;
  }
}

/* --------------------------------------------------------------------------------------
 *
 *  site layout
 *
 *  ——
 *  ——
 *  ——
 *
----------------------------------------------------------------------------------------- */
:root {
  /* column */
  --column-padding: 16px;

  /* container */
  --container-width: 1180px;
}

/*  site layout: container
------------------------------------------ */
.container,
.container-fluid,
.container-short {
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--column-padding);
  max-width: var(--container-width);
}

/* container short */
.container-short {
  max-width: 992px;
}

/* containet fluid */
.container-fluid {
  max-width: 100%;
}

/*  site layout: 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;
}

/*  site layout: column
------------------------------------------ */
[class*="col-"] {
  box-sizing: border-box;
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  max-width: 100%;
  padding: var(--column-padding);

  /* column gap */
  gap: 32px;
  display: flex;
  flex-direction: column;
}

.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: 1180px) {
  .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%;
  }
}

/* --------------------------------------------------------------------------------------
 *
 *  site header
 *
 *  —— masthead
 *  —— mastside
 *
----------------------------------------------------------------------------------------- */

:root {
  /* site header: masthead */
  --masthead-height: 112px;
}

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

/* home site header */
.home .site-header {
  position: fixed;
  background: transparent;
  color: var(--color-white);
}

/* onscroll / site header */
.onscroll .site-header {
  color: var(--color-black);
  background: var(--color-white);
  box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.08);
}

/*  site header: masthead
----------------------------------------------------------------------------------------- */
.masthead,
.masthead-panel,
.masthead [class*="col-"] {
  gap: 0 32px;
  display: flex;
  align-items: center;
}

/* masthead */
.masthead {
  height: var(--masthead-height);
}

/* masthead column */
.masthead [class*="col-"] {
  flex-direction: row;
  justify-content: space-between;
  padding: 0 var(--column-padding);
}

/*  masthead navigation
------------------------------------------ */
.masthead-navigation {
  padding: 8px 24px;
  border-radius: 4px;
  min-width: max-content;
  border: 1px solid var(--color-black-trans);
}

/* masthead menu */
.masthead-navigation .menu {
  gap: 24px;
  display: flex;
}

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

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

.masthead-navigation .menu-item:hover > a,
.masthead-navigation [class*="current-menu-"] > a {
  color: var(--color-accent);
}

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

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

/* masthead navigation sub menu first level */
.masthead-navigation .menu > *:hover > .sub-menu {
  display: flex;
}

/* masthead navigation sub menu second level */
.masthead-navigation .menu > * > * > *:hover > .sub-menu {
  top: 0;
  left: 100%;
  display: flex;
}

/*  site header: mastside
----------------------------------------------------------------------------------------- */

/*  mastside button
------------------------------------------ */
#mastside-button {
  z-index: 1;
}

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

/*  colophon panel
------------------------------------------ */
.colophon-panel {
  display: flex;
  flex-wrap: wrap;
  gap: var(--section-padding);
}

/* colophon panel separator */
.colophon-separator {
  border-color: var(--color-white-trans);
}

/* --------------------------------------------------------------------------------------
 *
 *  Site Main
 *
 *  —— 
 *  —— 
 *
----------------------------------------------------------------------------------------- */

:root {
  /* section */
  --section-padding: 80px;
}

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

/*  responsive
------------------------------------------ */
@media only screen and (max-width: 992px) {
  :root {
    /* section */
    --section-padding: 40px;
  }
}

/*  section: hero
----------------------------------------------------------------------------------------- */
section#hero {
  padding: calc(var(--masthead-height) + var(--section-padding)) 0
    var(--section-padding) 0;
}

/*  section: media
----------------------------------------------------------------------------------------- */
section.media {
  overflow: hidden;
  position: relative;
  color: var(--color-white);
}

/*  media contetn
------------------------------------------ */
.media-content {
  z-index: 1;
  position: relative;
}

/*  section media
------------------------------------------ */
.media-background,
.media-background::after,
.media-background__object {
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

/* section media background */
.media-background__object {
  object-fit: cover;
}

/* section media overlay */
.media-background::after {
  content: "";
  background: rgba(0, 0, 0, 0.56);
}

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

/*  component: brand
----------------------------------------------------------------------------------------- */
.brand-card {
  height: 100%;
  display: flex;
  padding: 16px;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-black-trans);
}

/*  brand logo
------------------------------------------ */
.brand-logo {
  opacity: 0.8;
  max-height: 112px;
  filter: grayscale(100%);
  transition: ease-in-out 0.16s;
}

/* brand card hover */
.brand-card:hover .brand-logo {
  opacity: 1;
  filter: unset;
}

/*  component: lead
----------------------------------------------------------------------------------------- */
.leadform {
  padding: 48px;
  border-radius: 8px;
  position: relative;
  border: 1px solid var(--color-white-trans);
  background: url(/wp-content/themes/odkup24/assets/media/stripes.png) repeat
    rgba(32, 32, 32, 0.96);
}

/*  responsive
------------------------------------------ */
@media only screen and (max-width: 992px) {
  .leadform {
    padding: 24px;
  }
}

/*  component: form
----------------------------------------------------------------------------------------- */
form {
  gap: 32px;
  display: flex;
  flex-direction: column;
}

label {
  gap: 8px;
  display: flex;
  align-items: center;

  font-weight: 400; /* bold */
}

fieldset {
  margin: 0;
  height: 100%;
  position: relative;
  border-radius: 4px;
  padding: 8px 16px 16px 16px;
  border: none;
}

.fieldset__content {
    padding: 16px;
    border: 1px solid var(--color-white-trans);
}

/*  */
legend {
  padding: 0 16px;
  font-size: 10px;
  font-weight: 400; /* bold */
}

input,
select,
textarea {
  width: 100%;
  border: none;
  padding: 0 16px;
  font-size: inherit;
  font-family: inherit;
  background: transparent;
  color: inherit;
  transition: ease-in-out 0.16s;
}

select option {
  color: var(--color-black);
}

select option:hover {
  color: var(--color-accent) !important;
}

textarea {
  height: 100%;
  max-height: 128px;
}

input[type="radio"],
input[type="checkbox"] {
  width: 16px;
  height: 16px;
  background: transparent;
}

input[type="button"] {
  width: 100%;
}

/*  */
.filearea {
  height: 128px;
  position: relative;
}

.filearea__image {
top: 50%;
  left: 50%;
  z-index: 0;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  opacity: 0.32;
  object-fit: cover;
  position: absolute;
  filter: grayscale(100%);
  transition: ease-in-out 0.16s;
  transform: translate(-50%, -50%);
}

.filearea:hover .filearea__image {
  opacity: 0.64;
  filter: unset;
}

input[type="file"] {
  height: 100%;
  margin: 16px 0;
}

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

/* .wpcf7-form-control-wrap */
.wpcf7-form-control-wrap {
  gap: 16px;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  flex-direction: column;
}

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

/* .wpcf7-list-item */
.wpcf7-list-item {
  gap: 8px;
  margin: 0;
  display: flex;
  align-items: center;
}

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

/* .wpcf7-response-output */
.wpcf7-response-output {
  border-width: 1px;
  border-radius: 4px;
  margin: 0 !important;
  padding: 16px !important;
}

/*  */
.wpcf7-response-output,
.wpcf7-not-valid-tip {
  font-size: 12px;
}

/* 
------------------------------------------ */
.codedropz-upload-handler {
  height: 100%;
  margin: 0 !important;
  position: relative !important;
}

.cd-upload-btn {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.codedropz-upload-inner > span {
  display: none;
}

.dnd-upload-status {
  padding: 0;
}

.dnd-upload-image,
.dnd-upload-status .dnd-upload-details .name {
  display: none;
}

/*  */
.codedropz-upload-wrapper {
  gap: 16px;
  height: 100%;
  display: flex;
  margin-top: 16px;
  flex-direction: column;
}

.dnd-upload-status .dnd-upload-details .remove-file {
  top: 0;
}

.dnd-upload-status .dnd-upload-details .remove-file span::after {
  filter: brightness(0) invert(1);
}

/*  responsive
------------------------------------------ */
@media only screen and (max-width: 992px) {
  .fieldset-panel {
    flex-direction: column;
  }
}

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

/* widget title */
.widget-title {
  font-size: 18px;
  font-weight: 700;
}

/*  widget navigation
------------------------------------------ */

/* widget navigation / menu */
.widget-navigation .menu {
  gap: 8px;
  display: flex;
  flex-direction: column;
}

/* widget navigation / sub menu */
.widget-navigation .sub-menu {
  display: none;
}

/*  widget group
------------------------------------------ */
.widget-group {
  display: flex;
  border-radius: 4px;
  background: var(--color-black-trans);
  border: 1px solid var(--color-black-trans);
}

.widget-group > .widget {
  width: 33.33%;
  padding: 32px;
}

.widget-group > .widget:not(:last-child) {
  border-right: 1px solid var(--color-black-trans);
}

/*  responsive
------------------------------------------ */
@media only screen and (max-width: 992px) {
  .widget-group {
    flex-direction: column;
  }
  .widget-group > .widget {
    width: 100%;
    padding: 16px;
  }
  .widget-group > .widget:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--color-black-trans);
  }
}

/*  component: accordion
----------------------------------------------------------------------------------------- */
.accordion {
  position: relative;
}

/*  accordion group
------------------------------------------ */
.accordion-group {
  gap: 16px;
  display: flex;
  flex-direction: column;
}

/*  accordion button
------------------------------------------ */
.accordion-button {
  gap: 32px;
  display: flex;
  cursor: pointer;
  position: relative;
  border-radius: 4px;
  padding: 16px 56px 16px 16px;
  transition: ease-in-out 0.16s;
  justify-content: space-between;
  border: 1px solid var(--color-black-trans);

  /* font style */
  font-size: 16px;
  font-weight: 700;
  line-height: 1.56;
}

/* accordion button active */
.accordion-button.active,
.accordion-button:hover {
  color: var(--color-accent);
  background: var(--color-accent-trans);
}

/* accordion toggle selection */
.accordion-button::selection {
  background: transparent;
}

/* accordion toggle toggle */
.accordion-toggle {
  top: 50%;
  right: 16px;
  width: 24px;
  height: 24px;
  position: absolute;
  transition: ease-in-out 0.16s;
  transform: translateY(-50%) rotate(0);
}

.accordion-button.active .accordion-toggle {
  transform: translateY(-50%) rotate(135deg);
}

/*  accordion content
------------------------------------------ */
.accordion-content {
  display: none;
  padding: 16px 16px 0 16px;
}

/*  component: tab
----------------------------------------------------------------------------------------- */

/*  tab content
----------------------------------------- */
.tab-content {
  height: 100%;
  display: none;
  overflow: hidden;
  position: relative;
  animation: fadeEffect 0.16s;
  -webkit-animation: fadeEffect 0.16s;
}

/* tab content active */
.tab-content.active {
  display: block;
}

/*  tab animation
----------------------------------------- */
@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*  component: sidebar
----------------------------------------------------------------------------------------- */
:root {
  --sidebar-width: 320px;
}

/* sidebar */
.sidebar {
  top: 0;
  right: 0;
  height: 100%;
  position: fixed;
  overflow-y: scroll;
  color: var(--color-white);
  width: var(--sidebar-width);
  transform: translateX(100%);
  background: var(--color-black-light);
  transition: transform 0.16s ease-out;
  border-left: 1px solid var(--color-white-trans);
}

.sidebar.active {
  transform: translateX(0);
}

.sidebar > * {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

/* sidebar head */
.sidebar-head {
  padding: 0 32px;
  height: calc(var(--masthead-height) * 1);
}

/* sidebar panel */
.sidebar-panel {
  gap: 16px;
  padding: 32px;
}

/*  sidebar navigation
------------------------------------------ */
.sidebar-navigation .menu *::selection {
  background: transparent;
}

/* sidebar navigation menu-item */
.sidebar-navigation .menu .menu-item {
  position: relative;
}

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

/* sidebar navigation menu-item > a */
.sidebar-navigation .menu .menu-item > a {
  z-index: 1;
  display: block;
  position: relative;
  padding: 16px 0 16px 32px;
  max-width: calc(100% - 80px);
  transition: ease-in-out 0.16s;
}

.sidebar-navigation .menu .menu-item > a:hover,
.sidebar-navigation .menu [class*="current-menu-"] > a {
  color: var(--color-accent);
}

.sidebar-navigation .menu .menu-item > a:hover {
  text-decoration: underline;
}

/* sidebar navigation menu-item-has-children > a */
.sidebar-navigation .menu .menu-item-has-children > a {
  display: inline-block;
}

/* sidebar navigation menu-item > accordion-button */
.sidebar-navigation .menu-item > span {
  right: 0;
  top: 14px;
  width: 100%;
  height: 24px;
  opacity: 0.32;
  display: block;
  cursor: pointer;
  position: absolute;
  transition: ease-in-out 0.16s;
  background: url("https://api.iconify.design/mdi-light/chevron-down.svg?color=white")
    no-repeat right 32px center / contain;
}

.sidebar-navigation .menu-item > span {
  opacity: 1;
}

/* іidebar navigation sub-menu */
.sidebar-navigation .sub-menu {
  background: var(--color-white-trans);
}

/*  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 group
------------------------------------------ */
.headline-group {
  gap: 32px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

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

/*  headline title
------------------------------------------ */
.headline-title {
  font-weight: 700;
  line-height: 1.16;
  font-size: var(--font-size-h2);
}

/* <h1> headline title */
h1.headline-title {
  font-size: var(--font-size-h1);
}

/*  component: tab
----------------------------------------------------------------------------------------- */

/*  tab content
----------------------------------------- */
.tab-content {
  overflow: hidden;
  position: relative;
  animation: fadeEffect 0.16s;
  -webkit-animation: fadeEffect 0.16s;
}

/*  tab animation
----------------------------------------- */
@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*  tab navigation
------------------------------------------ */
.tab-navigation {
  display: flex;
}

/*  component: contact
----------------------------------------------------------------------------------------- */

/*  contact
------------------------------------------ */
.contact {
  display: flex;
  line-height: 1.56;
  flex-direction: column;
}

/* contact label */
.contact-label {
  font-size: 12px;
  font-weight: 700;
}

/* contact map */
#contact-map {
  border: none;
  height: 256px;
  border-radius: 4px;
  filter: grayscale(100%);
}

/*  contact group
------------------------------------------ */
.contact-group {
  gap: 0px;
  display: flex;
  flex-direction: column;
}

/* contact group inline */
.contact-group.inline {
  flex-direction: row;
}

/*  component: social
----------------------------------------------------------------------------------------- */

/*  social group
------------------------------------------ */
.social-group {
  gap: 32px;
  display: flex;
  max-width: max-content;
  border-bottom: 1px solid var(--color-white-trans);
}

/*  social group
------------------------------------------ */
.social-item {
  display: block;
  font-size: 18px;
  transition: ease-in-out 0.16s;
}

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

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

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

.editor ul {
  list-style: square inside;
}

.editor ol {
  list-style: decimal inside;
}

/* editor iframe */
.editor iframe {
  width: 100%;
  height: 420px;
}

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

/* editor bold */
.editor strong,
.editor b {
  font-weight: 700;
}

/*  responsive
------------------------------------------ */
@media only screen and (max-width: 992px) {
  /* editor / br */
  .editor br {
    display: none;
  }
}

/*  component: swiper
----------------------------------------------------------------------------------------- */

/*  swiper zebra
------------------------------------------ */
.swiper-zebra > * {
  padding: 48px 32px;
}

.swiper-zebra > *:nth-child(odd) {
  background: url(/wp-content/themes/odkup24/assets/media/stripes.png) repeat
    rgba(221, 12, 57, 0.48);
}

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

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

.wpm-language-switcher > *:not(:last-child)::after {
  content: "/";
  opacity: 0.16;
  margin: 0 8px;
  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 {
  display: flex;
  align-items: center;
}

/* site logo */
.site-logo {
  max-height: 48px;
}

/*  component: button
----------------------------------------------------------------------------------------- */
:root {
  --button-height: 48px;
  --button-height-large: 64px;
}

/*  button group
------------------------------------------ */
.button-group {
  gap: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* button group center */
.button-group.center {
  justify-content: center;
}

/* button group end */
.button-group.end {
  justify-content: flex-end;
}

/*  button
------------------------------------------ */
.button {
  gap: 8px;
  display: flex;
  outline: none;
  cursor: pointer;
  min-width: 120px;
  padding: 0px 32px;
  text-align: center;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  height: var(--button-height);
  transition: ease-in-out 0.16s;
  border: 1px solid transparent;
  background: var(--color-accent);
}

/* button dark */
.button.dark {
  background: var(--color-black-light);
}

.button.large {
  font-size: var(--font-size-large);
  height: var(--button-height-large);
}

/*  button transparent
------------------------------------------ */
.button-transparent {
  background: transparent;
  color: var(--color-accent);
}

/* button transparent / white */
.button-transparent.white {
  color: var(--color-white);
  background: var(--color-white-trans);
}

/*  button square / round
------------------------------------------ */
.button-round,
.button-square {
  padding: 0;
  width: var(--button-height);
  height: var(--button-height);
  min-width: var(--button-height);
  min-height: var(--button-height);
}

/* button square */
.button-square {
  border-radius: 4px;
}

/* button round */
.button-round {
  border-radius: 100%;
}

/*  component: modal
----------------------------------------------------------------------------------------- */
.modal {
  display: none;
  border-radius: 4px !important;
}

/*  component: thumbnail
----------------------------------------------------------------------------------------- */
.thumbnail {
  gap: 8px;
  height: 256px;
  padding: 32px;
  display: flex;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--color-white);
  transition: ease-in-out 0.16s;
  background: var(--color-black-trans);
}

/* thumbnail image */
.thumbnail-image {
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

/*  thumbnail square
------------------------------------------ */
.thumbnail-square {
  height: unset;
  padding: 100% 0 0 0;
}

/*  component: card
----------------------------------------------------------------------------------------- */
.card,
.card-panel {
  gap: 16px;
  display: flex;
  flex-direction: column;
}

.card.center,
.card-panel.center {
  text-align: center;
  justify-content: center;
}

/* card panel */
.card-panel {
  gap: 16px;
}

/*  card title
------------------------------------------ */
.card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.56;
  transition: ease-in-out 0.16s;
}

/* card title <a> */
a.card-title:hover {
  color: var(--color-accent);
}

/* card title large */
.card-title.large {
  line-height: 1.16;
  font-size: var(--font-size-h2);
}

/*  card grid
------------------------------------------ */
.card-grid {
  display: flex;
  flex-wrap: wrap;
}

.card-grid > * {
  width: 50%;
  padding: 0 0 32px 0;
  border-bottom: 1px solid var(--color-black-trans);
}

/*  card grid
------------------------------------------ */
.card-feed {
  display: flex;
  flex-direction: column;
}

.card-feed > * {
  width: 100%;
  padding: 32px 0;
  border-bottom: 1px solid var(--color-black-trans);
}
