/* Variables
-------------------------- */
:root {
  --primary: #d03216;
  --secondary: #4B02C1;
  --color-primary2: #B53B97;
  --color-secondary: #045efb;
  --color-secondary-light: #7079FF;
  --primary-light: #fff2e3;
  --secondary-light: #e1f4f9;
  --light: #f3fbff;
  --dark: #0F0423;
  --color-gray: #cccccc;
  --color-text: #242424;
  --color-bold: #1f1f1f;
  --color-border: #e7ceca;
  --bg-body: #fffdf7;
  --font-content: "Inter", sans-serif;
  --font-heading: "Heebo", sans-serif;
  --font-weight-bold: 500;
  --shadow: 0 0 6px 1px #dddddd;
  --shadow-light: 0 0 6px 2px var(--light);
  --shadow-primary: 0 0 6px 2px var(--primary-light);
  --shadow-secondary: 0 0 8px 4px var(--secondary-light);
  --node-shadow: 0 0 10px 4px #f4edf7;
}

/* Default Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* HTML and Body
-------------------------- */
html:focus-within {
  scroll-behavior: smooth;
}

/* Prevent font size inflation */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

html,
body {
  height: 100%;
}

body {
  background: var(--bg-body);
  color: var(--color-text);
  font-family: var(--font-content), -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  font-optical-sizing: auto;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography -> Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-bold);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  font-style: normal;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3rem);
  line-height: 1.2;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.2;
}

h4 {
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  line-height: 1.3;
}

h5,
h6 {
  font-size: calc(1rem + 2px);
  line-height: 1.4;
}

/* Typography -> Paragraph */
p {
  margin: 0 0 1rem 0;
}

/* Typography -> font styling */
b,
strong {
  color: var(--color-bold);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
}

dfn,
cite {
  font-style: italic;
}

del {
  text-decoration: line-through;
}

small {
  font-size: 80%;
}

big {
  font-size: 125%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

tt,
var {
  font-family: monospace, monospace;
  font-style: italic;
}

mark {
  display: inline-block;
  background-color: var(--secondary-light);
  padding: 0 3px;
}

blockquote {
  position: relative;
  background-color: #ffffff;
  padding: 1rem 1rem 1rem 2rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  border-left: 8px solid var(--primary);
  isolation: isolate;
}

blockquote p:last-of-type {
  margin: 0;
}

blockquote::before {
  content: "\e023";
  font-family: "dev";
  position: absolute;
  color: var(--primary);
  font-size: 30px;
  left: 6px;
  top: 1px;
  line-height: 1;
  z-index: -1;
}

/* Typography -> code tags */
pre {
  background-color: #272822;
  color: #e6e6e6;
  padding: 12px;
  border-radius: 6px;
  -moz-tab-size: 2;
    -o-tab-size: 2;
       tab-size: 2;
  overflow: auto;
}

pre,
code,
samp {
  font-family: monospace, monospace;
  font-size: 1rem;
  margin: 1rem 0;
}

kbd {
  font-family: monospace, monospace;
  font-size: 1rem;
  display: inline-block;
  background-color: #e6e3d9;
  margin: 0;
  padding: 0 5px;
}

/* Typography -> Links */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  color: var(--primary);
  background-color: transparent;
  text-decoration: none;
  transition: color 0.4s ease;
}

a:hover,
a:focus {
  text-decoration: none;
  border: 0;
  outline: 0;
}

a:hover {
  color: var(--dark);
}

/* Typography -> abbreviation */
abbr[title],
acronym[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

abbr,
acronym {
  cursor: help;
}

/* Media
-------------------------- */
img,
picture,
svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  border-style: none;
}

/* List
-------------------------- */
ul, ol {
  margin: 0;
  padding: 0 0 0 1rem;
}

/* Form
-------------------------- */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  color: inherit;
  font-size: 100%;
  line-height: 1.6;
  margin: 0;
}

input {
  line-height: normal;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  padding: 0.5rem 0;
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
  cursor: pointer;
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border: 0;
  border-style: none;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 0;
}

button[disabled],
html input[disabled] {
  cursor: default;
  opacity: 0.7;
  cursor: not-allowed;
}

[type=checkbox],
[type=radio] {
  padding: 0;
  box-sizing: border-box;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

input[type=text],
input[type=email],
input[type=url],
input[type=number],
input[type=password],
input[type=search],
textarea {
  background-color: #ffffff;
  padding: 10px;
  border: 0;
  border-radius: 2px;
  box-shadow: 0 0 2px 1px var(--color-text);
  transition: all 0.3s linear;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=search]:focus,
textarea:focus {
  border: 0;
  outline: 0;
  box-shadow: 0 0 2px 1px var(--color-secondary-light);
}

input:user-invalid {
  box-shadow: 0 0 2px 1px red;
}

input[type=submit],
input[type=button],
button,
.button {
  display: inline-block;
  margin: 0;
  padding: 10px 20px;
  background-color: var(--dark);
  color: #ffffff;
  border: 0;
  outline: 0;
  line-height: 1.6;
  transition: all 0.4s ease;
}

input[type=submit]:hover,
input[type=button]:hover,
button:hover,
.button:hover {
  background-color: var(--primary);
  color: #ffffff;
  text-decoration: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

fieldset {
  padding: 0.35rem 0.75rem 0.625rem;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

.fieldset-legend {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  color: var(--color-bold);
}

progress {
  vertical-align: baseline;
}

textarea {
  width: 100%;
  overflow: auto;
  vertical-align: top;
}

.form-item {
  margin-bottom: 1rem;
}

.form-item label {
  display: block;
  font-weight: var(--font-weight-bold);
  color: var(--color-bold);
  cursor: pointer;
}

.form-item label.option {
  display: inline-block;
}

.form-item input[type=text],
.form-item input[type=email],
.form-item input[type=url],
.form-item input[type=number],
.form-item input[type=password],
.form-item input[type=search] {
  width: 100%;
}

.form-item input[type=number] {
  padding: 10px;
}

/* table
---------------------------------------- */
table {
  width: 100%;
  margin-bottom: 1.2rem;
  border-spacing: 0;
  border-collapse: collapse;
}

th,
tr,
td {
  vertical-align: middle;
}

th,
td {
  color: var(--color-bold);
  padding: 0.5rem;
  text-align: left;
  border: 1px solid var(--color-secondary);
}

th a,
td a {
  color: var(--color-bold);
}

th {
  background: var(--color-secondary-light);
}

/* Other HTML Elements
-------------------------- */
details {
  display: block;
  background-color: #ffffff;
  margin-bottom: 1rem;
  padding: 1rem;
  box-shadow: var(--shadow);
}

summary {
  display: list-item;
  background-color: #ffffff;
  color: var(--text-color);
  padding: 0.5rem;
  cursor: pointer;
}

details .form-details-wrapper {
  background-color: #ffffff;
}

template,
[hidden] {
  display: none;
}

.hidden {
  visibility: hidden;
}

hr {
  box-sizing: content-box;
  height: 0;
}

address {
  margin: 0 0 1rem 0;
  font-style: italic;
}

::-moz-selection {
  background-color: var(--primary);
  color: #ffffff;
  text-shadow: none;
}

::selection {
  background-color: var(--primary);
  color: #ffffff;
  text-shadow: none;
}

::-moz-selection {
  background-color: var(--primary);
  color: #ffffff;
  text-shadow: none;
}

/* inter-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/inter.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Heebo";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/heebo.woff2") format("woff2");
}
/* Font icons */
@font-face {
  font-display: auto;
  font-family: "dev";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/dev.woff2") format("woff2");
}
[class=icon], [class^=icon-], [class*=" icon-"] {
  display: inline-block;
  font-family: "dev" !important;
  font-weight: 400;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.icon-minus:before {
  content: "\e000";
}

.icon-plus:before {
  content: "\e001";
}

.icon-close:before {
  content: "\e002";
}

.icon-comment-add:before {
  content: "\e003";
}

.icon-check:before {
  content: "\e004";
}

.icon-alert:before {
  content: "\e005";
}

.icon-alert-circle:before {
  content: "\e006";
}

.icon-feed:before {
  content: "\e007";
}

.icon-bookmark:before {
  content: "\e008";
}

.icon-search:before {
  content: "\e009";
}

.icon-user:before {
  content: "\e00a";
}

.icon-calendar:before {
  content: "\e00b";
}

.icon-twitter:before {
  content: "\e00c";
}

.icon-facebook:before {
  content: "\e00d";
}

.icon-github:before {
  content: "\e00e";
}

.icon-linkedin:before {
  content: "\e00f";
}

.icon-comments:before {
  content: "\e010";
}

.icon-file:before {
  content: "\e011";
}

.icon-youtube:before {
  content: "\e012";
}

.icon-instagram:before {
  content: "\e013";
}

.icon-whatsapp:before {
  content: "\e014";
}

.icon-hashtag:before {
  content: "\e015";
}

.icon-share:before {
  content: "\e016";
}

.icon-mail:before {
  content: "\e017";
}

.icon-map:before {
  content: "\e018";
}

.icon-phone:before {
  content: "\e019";
}

.icon-arrow-up:before {
  content: "\e01a";
}

.icon-horn:before {
  content: "\e01b";
}

.icon-bell:before {
  content: "\e01c";
}

.icon-info:before {
  content: "\e01d";
}

.icon-comment:before {
  content: "\e01e";
}

.icon-angle-left:before {
  content: "\e01f";
}

.icon-angle-right:before {
  content: "\e020";
}

.icon-arrow-right:before {
  content: "\e021";
}

.icon-arrow-left:before {
  content: "\e022";
}

.icon-quote:before {
  content: "\e023";
}

.icon-clock:before {
  content: "\e024";
}

.icon-cart:before {
  content: "\e025";
}

.icon-download:before {
  content: "\e026";
}

.icon-link:before {
  content: "\e027";
}

.icon-login:before {
  content: "\e028";
}

.icon-logout:before {
  content: "\e029";
}

i.color-primary::after {
  color: var(--primary);
}

/* Layout
-------------------------- */
.full-width {
  width: 100%;
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.main-wrapper {
  width: 100%;
  margin: 0;
  padding: 1rem 0 2rem 0;
}

.main-container {
  position: relative;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  padding: 0;
}

.main,
.sidebar,
.one-sidebar .main,
.two-sidebar .main {
  flex: 1 0 300px;
  max-width: 100%;
}

.main {
  order: 1;
}

.left-sidebar {
  order: 2;
}

.right-sidebar {
  order: 3;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.logo {
  display: block;
  max-height: 40px;
  width: auto;
}

/* Header -> header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* header icons */
.header-icon {
  display: inline-grid;
  place-content: center;
  background-color: var(--dark);
  color: #ffffff;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
}

.header-icon i {
  color: #ffffff;
}

/* Header user nav */
.header-user-nav {
  font-family: var(--font-heading);
  color: var(--color-bold);
  font-weight: var(--font-weight-bold);
}

.header-user-nav a {
  color: var(--color-bold);
}

.header-user-nav i {
  margin-right: 3px;
}

/* Header main menu */
.mobile-menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 30px;
  overflow: hidden;
  cursor: pointer;
}

.mobile-menu-icon span {
  width: 100%;
  height: 2px;
  background-color: var(--color-bold);
  transform-origin: left;
  transition: all 0.6s ease;
}

.mobile-menu-icon span:nth-child(2) {
  background-color: var(--primary);
}

.menu-icon-active span:first-child {
  transform: rotate(45deg);
}

.menu-icon-active span:last-child {
  transform: rotate(-45deg);
}

.menu-icon-active span:nth-child(2) {
  display: none;
}

.close-mobile-menu {
  position: absolute;
  right: 0;
  top: 0;
  display: grid;
  place-content: center;
  background-color: #28282f;
  color: #ffffff;
  width: 36px;
  height: 36px;
  z-index: 120;
}

.primary-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: var(--primary);
  padding: 1rem;
  transform: translateX(-100%);
  transition: all 0.3s linear;
  z-index: 100;
  min-width: 300px;
  max-width: 300px;
}

.active-menu {
  transform: translateX(0);
  box-shadow: 4px 0 16px #111111;
}

.region-primary-menu .menu,
.region-primary-menu .submenu {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.region-primary-menu .menu {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.region-primary-menu .menu > li {
  padding: 0;
  border-bottom: 1px solid var(--color-border);
}

.region-primary-menu .menu > li:hover,
.region-primary-menu .menu > li:hover > a {
  color: var(--primary);
}

.region-primary-menu .menu a {
  display: block;
  color: #ffffff;
  padding: 0.6rem 0;
}

.menu-item-has-children {
  position: relative;
}

.menu-item-has-children::after {
  position: absolute;
  content: "+";
  color: var(--dark);
  right: 0;
  top: 0.5rem;
}

.region-primary-menu .submenu {
  font-size: 0.9rem;
  padding: 0 0 0 2rem;
}

.region-primary-menu .submenu li {
  border-top: 1px solid var(--color-border);
}

/*slide up */
@keyframes slideUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
/* Header Search Block */
.search-block {
  position: relative;
  margin: 0;
  padding: 0;
}

.search-icon {
  position: relative;
  cursor: pointer;
}

.search-box {
  position: fixed;
  background: var(--secondary-light);
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  padding: 50px 0;
  transform: translate(0, -100%);
  transition: all 0.5s;
  z-index: 50;
}

.search-box.open {
  transform: translate(0, 0);
}

.search-box-content {
  position: relative;
  z-index: 60;
  text-align: center;
}

.header-search-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #000000;
  border-radius: 50%;
  cursor: pointer;
  line-height: 1;
}

.search-box-content .block {
  width: 100%;
  margin: 0;
}

.search-box-content .block-title,
.search-box-content form label {
  display: none;
  color: #000000;
}

.search-box-content input[type=search] {
  width: 100%;
  margin: 2rem 0;
  padding: 0 0 6px 0;
  font-size: 1.2rem;
  background: url("../images/icons/search.svg") top right no-repeat;
  background-size: contain;
  border: 0;
  border-bottom: 2px solid var(--color-border);
  border-radius: 0;
  outline: 0;
  box-shadow: none;
  -o-border-image: linear-gradient(to right, var(--color-primary2), var(--color-secondary-light)) 1;
     border-image: linear-gradient(to right, var(--color-primary2), var(--color-secondary-light)) 1;
}

.search-box-content input[type=submit] {
  display: none;
}

/* page header */
.page-header {
  background-color: var(--dark);
  color: #ffffff;
  padding: 5rem 0;
}

.page-header .page-title {
  background: linear-gradient(to right, var(--color-primary2), var(--color-secondary-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-header a {
  color: var(--color-secondary-light);
}

.page-header a:hover {
  color: var(--color-primary2);
}

.page-header i {
  color: var(--color-primary2);
}

.region-page-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Slider region */
.slider {
  background-color: var(--dark);
  width: 100%;
}

.slider h1,
.slider h2,
.slider h3 {
  background: linear-gradient(to right, var(--color-primary2), var(--color-secondary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.region-slider {
  display: grid;
  place-content: center;
  width: 100%;
  padding: 4rem 0;
}

.node-content {
  display: flex;
  flex-direction: column;
}

.node-type-theme .node-content {
  gap: 1rem;
  flex-direction: unset;
  flex-wrap: wrap;
}

.page-type-ticket .node-content,
.node-type-article .node-content {
  gap: 2rem;
}

/* Teaser
----------------------------- */
.node-view-mode-teaser {
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-secondary);
  transition: all 0.3s linear;
}

.node-view-mode-teaser:hover {
  box-shadow: var(--shadow-light);
}

/* Node content typography
----------------------------- */
.node a:hover {
  color: var(--color-secondary);
  text-decoration: underline;
  text-decoration-color: var(--color-primary2);
}

/* field label */
.field-label-inline {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.field-label,
.field__label {
  position: relative;
  color: var(--color-bold);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
}

.field-label::before {
  content: "#";
  color: var(--primary);
}

.field-label::after {
  content: ":";
}

#comments {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.comment {
  background-color: #ffffff;
  box-shadow: var(--shadow-secondary);
  border-radius: 6px;
}

.comment-header {
  background-color: var(--light);
  padding: 0.5rem 1rem;
  border-bottom: 2px dashed var(--secondary);
}

.comment-header p {
  margin: 0;
}

.comment-meta mark {
  background-color: var(--primary);
  color: #ffffff;
}

.comment-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 1rem;
}

.comment-body .links.inline {
  gap: 10px;
}

.comment-body .links a {
  display: block;
  background-color: var(--primary);
  color: #ffffff;
  padding: 5px 10px;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.comment-body .links a:hover {
  background-color: var(--secondary);
  color: #ffffff;
  text-decoration: none;
}

.sidebar .block {
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 2px;
  box-shadow: var(--shadow-secondary);
}

.sidebar .block:not(:last-child) {
  margin-bottom: 1rem;
}

.sidebar h2 {
  font-size: 1.3rem;
}

.sidebar h3 {
  font-size: 1.2rem;
}

.sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar li {
  position: relative;
  background: url("image/list-arrow.svg") left center no-repeat;
  padding: 6px 0 6px 20px;
  border-bottom: 1px dashed var(--color-secondary-light);
}

.sidebar li:last-child {
  padding: 6px 0 0 20px;
  border: 0;
}

.sidebar li a {
  color: var(--color-heading);
}

.footer {
  background-color: var(--dark);
}

.footer-block .block p:last-of-type {
  margin: 0;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Footer top */
.footer-top {
  background-color: var(--primary-light);
  padding: 2rem 0;
}

.region-footer-top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-blocks {
  padding: 2rem 0;
}

.region-footer {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.region-footer .block {
  flex: 1 0 270px;
}

.region-footer li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

/* Footer column blocks */
.footer-blocks-border {
  background: linear-gradient(to right, var(--color-primary2), var(--color-secondary-light));
  width: 100%;
  height: 2px;
}

/* Footer bottom last */
.footer-bottom-last {
  padding: 1rem 0;
}

.footer-bottom-last-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom-last-left {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.region-footer-bottom-last .block p:last-of-type {
  margin: 0;
}

.region-footer-bottom-last a {
  position: relative;
}

.region-footer-bottom-last a::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--color-primary2), var(--color-secondary-light));
}

/* Common For all blocks */
.block-title {
  position: relative;
}

.block-title::before {
  content: "#";
  color: var(--primary);
  padding-right: 4px;
}

/* Homepage block */
.homepage-content .block-title {
  text-align: center;
}

/* Content Block */
.region-content .block:not(:last-child) {
  margin-bottom: 2rem;
}

/* Breadcrumb
--------------------- */
.breadcrumb {
  position: relative;
  width: 100%;
}

.breadcrumb-items {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb-item {
  padding: 0;
}

.breadcrumb-item span {
  font-size: 14px;
  margin: 0 5px;
}

/* Main -> Admin Tabs */
.page-tabs {
  margin: 0 0 0.5rem 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 2px;
  border-bottom: 2px solid var(--dark);
}

.page-tabs li {
  padding: 0;
}

.page-tabs li a {
  display: block;
  background-color: var(--dark);
  color: #ffffff;
  padding: 6px 1rem;
  transition: all 0.4s ease;
}

.page-tabs li:last-child a {
  border-right: 0;
}

.page-tabs li a:hover {
  background-color: var(--primary);
}

.page-tabs .active-page-tab a {
  background-color: var(--primary);
}

/* Node submitted details
------------------------- */
.node-header {
  margin-bottom: 10px;
}

.node-submitted-details {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.node-submitted-details i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dark);
  color: var(--color-secondary-light);
  width: 32px;
  height: 32px;
  border-radius: 2px;
}

/* Status message
--------------------- */
.messages-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0.5rem 0;
}

.message {
  position: relative;
  padding: 14px 14px 14px 60px;
  color: #ffffff;
}

.message a {
  color: #ffffff;
  text-decoration: underline;
}

.message p:last-of-type {
  margin: 0;
}

.message em {
  font-style: italic;
  border-bottom: 1px dotted #ffffff;
}

.message-status,
.message-success {
  background: #89ad32;
}

.message-status::before,
.message-success::before {
  content: "\e004";
  background: #759625;
}

.message-error {
  background: #c94d1c;
}

.message-error::before {
  content: "\e020";
  content: "\e006";
}

.message-warning {
  background: #cd5a0a;
}

.message-warning::before {
  content: "\e005";
  background-color: #a44707;
}

.message-info {
  background-color: #5a82a1;
}

.message-info::before {
  content: "\e01d";
  background-color: #3e6584;
}

.message-announcement {
  background-color: #46c280;
}

.message-announcement::before {
  content: "\e01b";
  background-color: #34a268;
}

.message-notice {
  background-color: #afa82e;
}

.message-notice::before {
  content: "\e017";
  background-color: #9b941b;
}

.message-note {
  background-color: #b08200;
}

.message-note::before {
  content: "\e011";
  background-color: #c99400;
}

.message::before {
  font-family: "dev";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.8rem;
  width: 50px;
  height: 100%;
  text-align: center;
}

/* Pager
-------------------- */
.pager-items {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 1rem 0 0 0;
  padding: 0;
}

.pager-item {
  background-color: #ffffff;
  display: grid;
  place-content: center;
  line-height: 1;
  box-shadow: 0 0 4px 2px #e1f4f9;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.pager-item a {
  padding: 10px 12px;
}

.pager-item a:hover,
.pager-item-active a {
  background-color: var(--primary);
  color: #ffffff;
}

/* Feed icon
------------------------- */
.feed-icon {
  background: url(image/rss.svg) left center no-repeat;
  padding-left: 1.3rem;
}

/* Text Format Filter
------------------------- */
.filter-lips-list {
  font-size: 0.9rem;
  margin: 0;
  padding: 0 0 0 1rem;
}

.filter-lips-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
}

.filter-lips-list li::marker {
  color: var(--primary);
}

/* Scroll To Top
------------------------- */
.scrolltop {
  position: fixed;
  display: none;
  background-color: #222222;
  color: #ffffff;
  justify-content: center;
  align-items: center;
  right: 10px;
  bottom: 10px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  z-index: 20;
  cursor: pointer;
  transition: background 0.3s ease;
}

.scrolltop i {
  font-size: 22px;
}

.scrolltop:hover {
  background-color: var(--primary);
}

/* Login, Register form
------------------------- */
form .description {
  font-size: 14px;
}

/* Navigation -> links
------------------------- */
.links.inline {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* Local actions
--------------------- */
.local-actions {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

/* frontpage */
.region-content-home {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* Article pages */
.page-type-article .main {
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: var(--shadow-secondary);
}

/* Theme pages */
.node-type-theme .node-content .field {
  flex: 0 0 100%;
}

.node-type-theme .node-content .field-name-field-theme-page-cart,
.node-type-theme .node-content .field-name-field-theme-info-section {
  flex: 0 0 100%;
}

#thumbnails-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
  margin: 1rem 0;
}

#thumbnails-nav li {
  width: 100px;
  overflow: hidden;
}

#thumbnails-nav img {
  max-width: 100px;
}

#thumbnails-nav .tns-nav-active {
  box-shadow: 0 0 2px 1px var(--dark);
}

.theme-feature-icon {
  display: block;
  margin-bottom: 1rem;
}

.theme-feature-icon img {
  margin: 0 auto;
}

.pro-link {
  background-color: var(--primary);
  color: #ffffff;
  padding: 0.5rem 0;
}

/* Theme page - cart and info section */
.field-name-field-theme-page-cart,
.field-name-field-theme-info-section {
  position: relative;
  background-color: #ffffff;
  width: 100%;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.field-name-field-theme-info-section p {
  margin: 0 0 12px 0;
}

.field-name-field-theme-info-section h3,
.field-name-field-theme-info-section h4 {
  color: var(--primary);
  font-size: 1rem;
}

.basic-license-comparison {
  font-size: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.basic-license-comparison li {
  padding: 4px 0;
  border-bottom: 1px solid var(--color-gray);
}

.basic-license-comparison li:last-child {
  border-bottom: 0;
}

.field-name-field-theme-page-cart::before {
  position: absolute;
  content: "";
  right: -1rem;
  top: 54px;
  background-color: #a01d0e;
  width: 1rem;
  height: 1rem;
  clip-path: polygon(100% 0, 0 0, 0 100%);
}

.field-name-field-theme-page-cart::after {
  position: absolute;
  content: "Purchase";
  background-color: var(--primary);
  color: #ffffff;
  padding: 0 1rem;
  height: 44px;
  top: 10px;
  right: -1rem;
  font-size: 1.3rem;
  border-radius: 6px 6px 0 6px;
  display: flex;
  align-items: center;
}

.field-name-field-theme-page-cart .fieldgroup {
  margin: 0 0 12px 0;
}

.field-name-field-theme-page-cart .form-type-radio {
  margin: 0;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.field-name-field-theme-page-cart .button--add-to-cart {
  margin-bottom: 0.5rem;
}

/* user page - files */
.user-page-files .file-name {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
}

.user-page-files .file-version {
  display: block;
  color: var(--secondary);
}

/* User page - order information */
.brand-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 1rem;
  border-bottom: 2px dashed var(--secondary);
}

.order-info {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 0;
  margin-bottom: 1rem;
  border-bottom: 2px dashed var(--secondary);
}

/* support ticket - all tickets list */
.support-ticket-list {
  background-color: #ffffff;
  list-style: none;
  margin: 0;
  padding: 0;
}

.support-ticket-list-item {
  padding: 10px;
  border-bottom: 2px dashed #222222;
}

.support-ticket-list-item span {
  margin-right: 10px;
}

.support-ticket-list-item span:last-child {
  margin: 0;
}

/* support ticket - single page */
.page-type-ticket .node-header {
  background-color: var(--light);
  margin: 0;
  padding: 0.5rem;
  border-bottom: 2px dashed var(--secondary);
  box-shadow: var(--shadow-secondary);
}

.page-type-ticket .node-content .field-name-body {
  background-color: #ffffff;
  padding: 1rem;
  box-shadow: var(--shadow-light);
  box-shadow: var(--shadow-secondary);
}

/* Documentation page */
.section-doc img {
  margin: 1rem 0 10px 0;
  box-shadow: 0 0 1rem var(--color-border);
}

.node-type-documentation li {
  padding: 6px 0;
}

/* Illustration page */
.illustration-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.view-download-buttons ul {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.view-download-buttons a {
  display: block;
  color: var(--dark);
  padding: 5px;
  font-size: 14px;
  border: 2px solid var(--dark);
  border-radius: 4px;
}

.view-download-buttons a:hover {
  background-color: var(--dark);
  color: #ffffff;
}

/* view filter */
.view-filters {
  margin: 0 0 2rem 0;
}

.views-exposed-form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.views-exposed-form .form-item {
  margin: 0;
}

.views-exposed-form .form-type-textfield {
  width: 70%;
}

.views-exposed-form .form-item input[type=text] {
  width: 100%;
  padding: 12px;
  border-radius: 0;
}

/* view list of items */
.view-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.view-list-item {
  background-color: #ffffff;
  box-shadow: var(--shadow-secondary);
}

.view-list-item-title {
  font-size: 1.1rem;
  padding: 0.5rem;
}

/* view footer */
.view-footer {
  margin-top: 1rem;
}

/* Social icons
-------------------------------------- */
.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  display: grid;
  place-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--color-primary2);
  transition: background-color 0.4s ease;
}

.dark .social-icon:hover {
  background-color: var(--color-primary2);
  color: #ffffff;
  border: 2px solid var(--color-primary2);
}

/* cart page */
table .form-item {
  margin: 0;
}

table .field-name-product-id,
table .field-name-product-id a {
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
}

/* empty cart page */
.cart-empty-page {
  position: relative;
  background-color: var(--secondary-light);
  padding: 1rem;
}

.cart-empty-page::before {
  font-family: "dev";
  content: "\e025";
  font-size: 1.2rem;
  color: var(--dark);
}

/* checkout page */
.link--previous {
  display: inline-block;
  background-color: var(--dark);
  color: #ffffff;
  padding: 10px 20px;
  line-height: 1.6;
  border-radius: 3px;
}

.link--previous:hover {
  background-color: var(--primary);
  color: #ffffff;
}

/* Cart login page */
#edit-login {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

#edit-login fieldset {
  flex: 100%;
}

/* commerce invoice module */
.invoice-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 2px dashed var(--secondary);
  flex-wrap: wrap;
}

.invoice-billing-infomation {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 2px dashed var(--secondary);
  flex-wrap: wrap;
  padding: 1rem 0;
}

/* Mobile and desktop display
--------------------------------- */
.view-in-mobile {
  display: block;
}

.view-in-desktop {
  display: none;
}

.display-none,
.hidden-block {
  display: none;
}

.display-block {
  display: block;
}

/* text alignment */
.text-center {
  text-align: center;
}

.center {
  display: block;
  margin: 0 auto;
}

/* Color and background
--------------------------------- */
.disabled {
  opacity: 0.3;
}

.color-primary {
  color: var(--primary);
}

.color-secondary {
  color: var(--secondary);
}

.color-secondary-light {
  color: var(--color-secondary-light);
}

.color-dark {
  color: var(--dark);
}

.color-light {
  color: var(--light);
}

.color-white {
  color: #ffffff;
}

.color-black {
  color: #000000;
}

.color-info {
  color: #008bda;
}

.color-success {
  color: #64a43d;
}

.color-warning {
  color: #d98b17;
}

.color-danger {
  color: #ea2957;
}

/* Background */
.bg-primary {
  background-color: var(--primary);
}

.bg-primary-light {
  background-color: var(--primary-light);
}

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

.bg-secondary-light {
  background-color: var(--secondary-light);
}

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

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

.bg-black {
  background-color: #000000;
}

.bg-white {
  background-color: #ffffff;
}

/* Text Size
--------------------------*/
.text-small {
  font-size: 0.75rem;
}

.text-medium {
  font-size: 1.25rem;
}

.text-large {
  font-size: 1.5rem;
}

.text-2x {
  font-size: 2rem;
}

.text-3x {
  font-size: 3rem;
}

.text-4x {
  font-size: 4rem;
}

.text-5x {
  font-size: 5rem;
}

.text-6x {
  font-size: 6rem;
}

.text-7x {
  font-size: 7rem;
}

.text-8x {
  font-size: 8rem;
}

/* margin, padding
--------------------------------- */
.no-margin {
  margin: 0;
}

.no-padding {
  padding: 0;
}

/* List
--------------------------------- */
.list-arrow,
.list-file {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.list-arrow li {
  position: relative;
  padding: 6px 0;
  border-bottom: 1px solid var(--color-border);
}

.list-arrow li::before {
  content: url(image/list-arrow.svg);
  padding-right: 6px;
}

.list-file li {
  position: relative;
  padding: 8px 0;
  border-bottom: 1px dashed var(--primary);
}

.list-file li::before {
  content: "\e011";
  font-family: "dev";
  padding-right: 4px;
}

/* Divider and line
--------------------------------- */
.line,
.line2 {
  display: block;
  width: 100%;
  height: 1px;
  margin: 1rem 0;
}

.line {
  background: linear-gradient(to right, var(--color-secondary-light), var(--color-primary2));
}

.h-separator {
  align-self: stretch;
  width: 1px;
  background-color: var(--color-border);
}

/* Empty width and height
--------------------------------- */
.spacer,
.spacer-small,
.spacer-x2,
.spacer-x3 {
  width: 100%;
  min-height: 1px;
  display: flex;
  flex-direction: column;
}

.spacer {
  padding: 1rem 0;
}

.spacer-small {
  padding: 0.5rem 0;
}

.spacer-x2 {
  padding: 2rem 0;
}

.spacer-x3 {
  padding: 3rem 0;
}

/* section
--------------------------------- */
.section,
.section-small,
.section-large {
  display: block;
  width: 100%;
}

.section {
  padding: 2rem 0;
}

.section-small {
  padding: 1rem 0;
}

.section-large {
  padding: 3rem 0;
}

.section-doc {
  display: block;
  width: 100%;
  margin: 0;
  padding: 2rem 0;
  border-bottom: 2px solid var(--color-border);
}

.section-doc:first-child {
  padding-top: 0;
}

.section-doc:last-child {
  padding-bottom: 0;
  border: 0;
}

.width30,
.width40,
.width50,
.width60,
.width70,
.width80,
.width90 {
  width: 100%;
}

/* Responsive Columns
--------------------------------- */
.flex,
.grid,
.items,
.columns,
.grid-container,
.flex-container {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}

.flex,
.flex-container,
.columns {
  display: flex;
}

.flex-container,
.columns {
  flex-wrap: wrap;
}

.grid,
.grid-container,
.items,
.items4,
.items3,
.items2 {
  display: grid;
  gap: 1rem;
}

.items,
.items4 {
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
}

.items3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.items2 {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1rem;
}

.item img {
  display: block;
}

/* Create Equal width columns with no gap */
.column,
.column-four {
  flex: 1 1 250px;
  margin: 0;
  padding: 0;
}

.column-three {
  flex: 1 1 350px;
  margin: 0;
  padding: 0;
}

.column-two {
  flex: 1 1 500px;
  margin: 0;
  padding: 0;
}

/* Flex and grid properties
--------------------------------- */
.space-between {
  justify-content: space-between;
}

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

.h-center {
  justify-content: center;
}

.vh-center {
  justify-content: center;
  align-items: center;
}

.gap {
  gap: 1rem;
}

.gap-2x {
  gap: 2rem;
}

.gap-small {
  gap: 0.5rem;
}

.no-gap {
  gap: 0;
}

/* Flex properties */
.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

.flex1 {
  flex: 1;
}

.wrap {
  flex-wrap: wrap;
}

.no-wrap {
  flex-wrap: nowrap;
}

/* flex-items width */
.w10,
.w20,
.w30,
.w40,
.w50,
.w60,
.w70,
.w80,
.w90 {
  flex: 1 1 100%;
}

/* Grid properties */
/* Title styles */
.section-title {
  position: relative;
  padding-left: 2rem;
}

.section-title::before,
.section-title::after {
  position: absolute;
  content: "";
  height: 1rem;
  width: 1rem;
  border: 2px solid var(--secondary);
}

.section-title::before {
  top: 0;
  left: 0;
}

.section-title::after {
  top: 0.5rem;
  left: 0.5rem;
}

.section-subtitle {
  position: relative;
  padding-left: 22px;
}

.section-subtitle::before,
.section-subtitle::after {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  border: 1px solid var(--secondary);
}

.section-subtitle::before {
  top: calc(50% - 12px);
  left: 0;
}

.section-subtitle::after {
  top: calc(50% - 6px);
  left: 6px;
}

/* Accordion */
.accordion-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  display: flex;
  flex-direction: column;
}

.accordion-title {
  position: relative;
  background-color: var(--dark);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s linear;
}

.accordion-title::after {
  position: absolute;
  font-family: "dev";
  content: "\e001";
  right: 16px;
  color: var(--color-secondary-light);
}

.accordion-body {
  background-color: #ffffff;
  padding: 0 16px;
  height: 0px;
  overflow: hidden;
  transition: all 0.3s linear;
}

.accordion-body p:last-of-type {
  margin: 0;
}

.accordion-active {
  background-color: var(--primary);
  color: #ffffff;
}

.accordion-active::after {
  content: "\e000";
  color: #ffffff;
}

.accordion-active + .accordion-body {
  height: unset;
  padding: 1rem;
  box-shadow: 0 0 3px 2px var(--primary-light);
}

/* color sceme
---------------------*/
.black,
.dark {
  background-color: #000000;
  color: var(--color-gray);
}

.dark {
  background-color: var(--dark);
}

.black :is(h1, h2, h3, h4, h5),
.dark :is(h1, h2, h3, h4, h5) {
  color: #ffffff;
}

.black a,
.dark a {
  color: var(--secondary-light);
}

.black a:hover,
.dark a:hover {
  color: var(--color-secondary-light);
}

.white {
  background-color: #ffffff;
  color: var(--color-text);
}

/* buttons
---------------------*/
.button.primary {
  background-color: var(--primary);
}

.button.secondary {
  background-color: var(--secondary);
}

.button.secondary:hover {
  background-color: var(--primary);
}

.button.dark {
  background-color: var(--dark);
  color: #ffffff;
  border: 0;
}

.button.dark:hover {
  background-color: var(--secondary);
}

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

.button.light:hover {
  background-color: var(--dark);
  color: #ffffff;
}

.button.black:hover {
  background-color: var(--secondary);
}

.button.info {
  background-color: #c8dbf1;
  color: #114785;
}

.button.info:hover {
  background-color: #91b9e8;
}

.button.success {
  background-color: #d2f3df;
  color: #159347;
}

.button.success:hover {
  background-color: #bbe4b4;
}

.button.warning {
  background-color: #f1e6be;
  color: #9e540f;
}

.button.warning:hover {
  background-color: #efd7a7;
}

.button.danger {
  background-color: #eacdcd;
  color: #920f0f;
}

.button.danger:hover {
  background-color: #eaa7a7;
}

.button.primary:hover,
.button.secondary:hover {
  background-color: var(--dark);
}

a.button:hover {
  color: #ffffff;
  text-decoration: none;
}

/* box
---------------------*/
.box {
  background-color: #ffffff;
  width: 100%;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.box p:last-child {
  margin: 0;
}

.box h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.box {
  color: var(--color-text);
}

.box.primary {
  background-color: var(--primary);
  box-shadow: none;
}

.box.secondary {
  background-color: var(--secondary);
  box-shadow: none;
}

.box.dark {
  background-color: var(--dark);
  color: var(--light);
  box-shadow: none;
}

.box.light {
  background-color: var(--light);
  box-shadow: none;
}

.box.black {
  background-color: #000000;
  color: #ffffff;
  box-shadow: none;
}

.box.info {
  background-color: #eef4fb;
  box-shadow: none;
}

.box.success {
  background-color: #eeffeb;
  box-shadow: none;
}

.box.warning {
  background-color: #fff7e7;
  box-shadow: none;
}

.box.danger {
  background-color: #ffeeee;
  box-shadow: none;
}

.box-pro {
  background-color: #fbfdfd;
}

.box-pro .disabled {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* card
---------------------*/
.card.primary,
.card.secondary,
.card.light,
.card.white {
  color: var(--color-text);
}

.card.primary .card-title {
  background-color: var(--primary);
}

.card.secondary .card-title {
  background-color: var(--secondary);
}

.card.light .card-title {
  background-color: var(--light);
  color: var(--color-heading);
}

.card.black .card-title {
  background-color: #000000;
}

.card.black .card-content {
  background-color: #565a67;
  color: #ffffff;
}

.card.white .card-title {
  background-color: #ffffff;
  color: var(--color-heading);
  border-bottom: 2px solid var(--color-border);
}

.card.info .card-title {
  background-color: #114785;
}

.card.info .card-content {
  background-color: #eef4fb;
}

.card.success .card-title {
  background-color: #64a43d;
}

.card.success .card-content {
  background-color: #eeffeb;
}

.card.warning .card-title {
  background-color: #c26a17;
}

.card.warning .card-content {
  background-color: #fff7e7;
}

.card.danger .card-title {
  background-color: #920f0f;
}

.card.danger .card-content {
  background-color: #ffeeee;
}

/* eu cookie compliance module */
div#sliding-popup, div#sliding-popup .eu-cookie-withdraw-banner, .eu-cookie-withdraw-tab {
  background-color: #ffffff;
  box-shadow: 0 0 6px 2px var(--color-border);
  left: 0;
}

#sliding-popup {
  padding: 2rem;
  max-width: 540px;
}

#sliding-popup .popup-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.eu-cookie-compliance-content {
  max-width: 100%;
}

.eu-cookie-compliance-message {
  float: none;
  margin: 0;
  max-width: 100%;
}

#sliding-popup div,
#sliding-popup h2 {
  color: var(--color-heading);
}

#sliding-popup h2 {
  font-size: 1.2rem;
}

#sliding-popup p {
  display: block;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 400;
}

.eu-cookie-compliance-message button {
  background-color: transparent;
  color: var(--primary);
  margin: 0;
  padding: 0;
  border: 0;
}

.eu-cookie-compliance-message button:hover {
  background-color: transparent;
  color: var(--color-heading);
}

.eu-cookie-compliance-buttons {
  display: flex;
  gap: 1rem;
  float: none;
  margin: 0;
  max-width: 100%;
}

.eu-cookie-compliance-buttons .button {
  background-color: transparent;
  background-image: none;
  color: var(--primary);
  font-weight: 400;
  margin: 0;
  padding: 8px 1rem;
  border: 2px solid var(--color-heading);
  text-shadow: none;
  box-shadow: none;
  border-radius: 0;
}

.eu-cookie-compliance-buttons .button:hover {
  background-color: var(--color-heading);
  color: #ffffff;
}

/* clearing
---------------------*/
.clear {
  position: relative;
}

.clear::before,
.clear::after {
  content: "";
  display: table;
  clear: both;
}

/* Theme page */
/* Fix Prism code syntax highlighter */
.token.comment {
  background-color: unset;
  box-shadow: none;
  border-radius: 0;
}

/*slide up */
@keyframes slideUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
.slideUp {
  animation-name: slideUp;
}

@media (min-width: 768px) {
  html {
    font-size: 18px;
  }
  /* Form */
  .form-item input[type=text],
  .form-item input[type=email],
  .form-item input[type=number],
  .form-item input[type=url],
  .form-item input[type=password] {
    width: 70%;
  }
  .menu-mobile-icon {
    display: none;
  }
  .menu-main {
    position: relative;
    transform: translateX(0);
  }
  .main {
    flex: 100%;
    max-width: 100%;
    order: 2;
  }
  .one-sidebar .main {
    flex: calc(75% - 1rem);
    max-width: calc(75% - 1rem);
  }
  .two-sidebar .main {
    flex: calc(50% - 2rem);
    max-width: calc(50% - 2rem);
  }
  .sidebar {
    flex: 25%;
    max-width: 25%;
  }
  .left-sidebar {
    order: 1;
  }
  .right-sidebar {
    order: 3;
  }
  /* Header main menu */
  .menu-wrap .menu a {
    color: var(--color-bold);
  }
  .primary-menu-wrapper {
    position: relative;
    background-color: transparent;
    padding: 0;
    transform: translateX(0);
    z-index: 5;
    min-width: unset;
    max-width: 100%;
  }
  .region-primary-menu {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-bold);
  }
  .region-primary-menu .menu {
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .region-primary-menu .menu .menu-item-has-children:hover {
    background-color: var(--dark);
    color: #ffffff;
  }
  .region-primary-menu .menu .menu-item-has-children:hover a {
    color: #ffffff;
  }
  .region-primary-menu .menu > li {
    position: relative;
    border: 0;
  }
  .menu-wrap .menu li > a,
  .menu-wrap .menu li > span {
    padding: 8px;
  }
  .menu-item-has-children::after {
    right: 0;
  }
  .menu-wrap .menu li.menu-item-has-children > a {
    padding: 8px 14px 8px 8px;
  }
  .region-primary-menu .submenu {
    position: absolute;
    background-color: var(--dark);
    top: calc(100% - 2px);
    min-width: 200px;
    padding: 0 4px;
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
  }
  .region-primary-menu .submenu li {
    border-top: 1px solid var(--color-secondary-light);
    padding: 0;
  }
  .region-primary-menu .submenu li:first-child {
    border-top: none;
  }
  .region-primary-menu .submenu a {
    padding: 0.5rem 0;
  }
  .menu-item-has-children:hover > .submenu {
    visibility: visible;
    animation: slideUp 0.5s forwards;
  }
  .region-primary-menu .submenu a:hover {
    color: var(--dark);
  }
  /* third level menu */
  .region-primary-menu .submenu .submenu {
    left: 100%;
    top: 0;
  }
  .mobile-menu-icon,
  .close-mobile-menu {
    display: none;
  }
  /* Theme page */
  .node-type-theme .node-content .field-name-field-theme-page-cart,
  .node-type-theme .node-content .field-name-field-theme-info-section {
    flex: 0 0 calc(50% - 1rem);
  }
  /* Commerce - login page */
  #edit-login fieldset {
    flex: 0 0 calc(50% - 1rem);
  }
  /* Shortcodes */
  .view-in-mobile {
    display: none;
  }
  .view-in-desktop {
    display: block;
  }
  /* shortcodes -> content width */
  .width30 {
    width: 30%;
  }
  .width40 {
    width: 40%;
  }
  .width50 {
    width: 50%;
  }
  .width60 {
    width: 60%;
  }
  .width70 {
    width: 70%;
  }
  .width80 {
    width: 80%;
  }
  .width90 {
    width: 90%;
  }
  /* shortcodes -> responsive column */
  .w10 {
    flex-basis: calc(10% - 1rem);
  }
  .w20 {
    flex-basis: calc(20% - 1rem);
  }
  .w30 {
    flex-basis: calc(30% - 1rem);
  }
  .w40 {
    flex-basis: calc(40% - 1rem);
  }
  .w50 {
    flex-basis: calc(50% - 1rem);
  }
  .w60 {
    flex-basis: calc(60% - 1rem);
  }
  .w70 {
    flex-basis: calc(70% - 1rem);
  }
  .w80 {
    flex-basis: calc(80% - 1rem);
  }
  .w90 {
    flex-basis: calc(90% - 1rem);
  }
}/*# sourceMappingURL=style.css.map */