/* ================================================== */
/*  00. Table of Content
/* ================================================== */
/*   00. Global Variables
/*   00. Global Styles and Reset
/*     --- 00.0 Reset
/*     --- 00.0 WordPress Core
/*     --- 00.0 WordPress Gallery
/*     --- 00.0 Typography
/*     --- 00.0 Forms
/*     --- 00.0 Helper Classes
/*   00. Gutenberg
/*   00. Grid System
/*   00. Topbar
/*   00. Header
/*   00. Titlebar
/*   00. Footer
/*   00. Sidebar
/*   00. Widgets
/*   00. Blog
/*   00. Comments
/*   00. Pagination
/*   00. Pages
/*     --- 00.0 Page 404
/*     --- 00.0 Page Search
/*     --- 00.0 Page Blank
/* ================================================== */

/* =========================================================== */
/* 00. Global Variables
/* =========================================================== */
:root {
    --stylora-color-accent: #B2A096; /* For Less Dominat Colors */
    --stylora-color-light: #F4F0EE; /* For Elements with Light Background */
    --stylora-color-light-border: #dddddd; /* For Primary Border Color */
    --stylora-color-body-text: #444444; /* For Body Text Color */
    --stylora-color-headings: #151515; /* For Headings Color */
    --stylora-color-dark: #151515; /* For Elements with Dark Background ie Footer */
    --stylora-color-dark-text: #949494; /* For Dark Background Text Color */
    --stylora-color-dark-border: #343434; /* For Dark Background Border Color */
    --stylora-color-white: #fff; /* For Dark Background Border Color */
    
    /* Font Family Variables */
    --stylora-font-family-heading: "Forum", serif; /* Font Family for Headings */
    --stylora-font-family-body: "Jost", sans-serif; /* Font Family for Body Text */
}

/* =========================================================== */
/* 00. Reset
/* =========================================================== */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*Normalize Css*/
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  scroll-behavior: smooth;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  max-width: 100%;
  vertical-align: middle;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

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

abbr[title] {
  text-decoration: none;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

em {
  font-style: italic;
}

small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img,
a img {
  border: 0;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

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

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

button[disabled],
html input[disabled] {
  cursor: default;
  opacity: .5 !important;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

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

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

input[type="search"] {
  -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid var(--stylora-color-light-border);
  padding: 30px;
  margin: 25px 0;
}

legend {
  border: 0;
  padding: 0;
  color: var(--stylora-color-headings);
  font-size: 16px;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border: medium none;
  vertical-align: middle
}

table th {
  border: 0;
  padding: 16px 10px;
  text-align: center
}

table td {
  padding: 16px 10px;
  text-align: center
}

* {
  box-sizing: border-box;
}

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

html {
  font-size: 14px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a {
  outline: 0;
  text-decoration: none;
}

a:hover,
a:focus,
a:active {
  color: inherit;
}

.touch a:hover {
  color: inherit;
}

figure {
  margin: 0;
}

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

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.img-rounded {
  border-radius: 6px;
}

.img-thumbnail {
  padding: 5px 6px;
  line-height: 1.42857143;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.img-circle {
  border-radius: 50%;
}

hr {
  box-sizing: content-box;
  overflow: visible;
  margin: 20px 0;
  border: 0;
  height: 1px;
  background-color: var(--stylora-color-light-border);
}

pre {
  max-width: 100%;
  margin: 15px 0;
  padding: 15px;
  background-color: var(--stylora-color-light);
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* =========================================================== */
/* 00. WordPress Core
/* =========================================================== */
html {
  height: 100%;
  scroll-behavior: smooth;
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*, *::before, *::after {
    box-sizing: inherit;
}

a {
  position: relative;
  color: var(--stylora-color-headings);
  outline: 0;
  text-decoration: none;
  transition: color .2s ease-out;
}

a:hover {
  color: var(--stylora-color-headings);
}

p img {
  margin: 0;
}

p strong {
  font-weight: bold;
}

a strong {
  color: var(--stylora-color-headings);
}

p:last-child,
.hentry ul:not([class]):last-child {
  margin-bottom: 0;
}

i,
.italic {
  font-style: italic;
}

del {
  font-weight: 400;
}

.underline {
  text-decoration: underline !important;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: none;
  cursor: help;
  border-bottom: 0;
}

address {
  margin-bottom: 1rem;
  line-height: inherit;
}

address p {
  margin: 0;
}

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

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

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

sub {
  top: 0.5ex;
}

sup {
  bottom: 0.5ex;
}

mark {
  display: inline;
  padding: 2px 8px;
  background-color: var(--stylora-color-light-border);
  font-weight: 400;
  color: var(--stylora-color-headings);
}

mark.dark {
  color: var(--stylora-color-white);
  background-color: var(--stylora-color-accent);
}

/*Body Selection*/
::selection {
  color: var(--stylora-color-white);
  background-color: var(--stylora-color-accent);
}

::-moz-selection {
  color: var(--stylora-color-white);
  background-color: var(--stylora-color-accent);
}

.screen-reader-text {
  position: absolute!important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  line-height: 1;
  clip: rect(1px,1px,1px,1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  border: 0;
  word-wrap: normal!important;
  overflow: hidden
}

.screen-reader-text:focus {
  top: 8px;
  left: 8px;
  display: block;
  width: auto;
  height: auto;
  padding: 16px 24px 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  color: var(--stylora-color-headings);
  background-color: var(--stylora-color-light);
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgb(134 134 134 / 60%);
  clip: auto!important;
  -webkit-clip-path: none;
  clip-path: none;
  z-index: 100000
}

/*Table Styles*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  margin: 25px 0;
}

table thead tr,
table tbody tr {
  border: 1px solid var(--stylora-color-light-border);
}

table tbody th {
  border-right: 1px solid var(--stylora-color-light-border);
}

/*List Styles*/
ul,
ol {
  list-style-position: inside;
  margin: 15px 0;
}

ul ul,
ol ol,
ol ul,
ul ol {
  margin: 0;
  padding: 0 0 0 15px;
}

dt {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 500;
}

dd {
  margin-bottom: 15px;
}

/*Blockquote*/
blockquote {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 15px 0;
  padding: 5px 40px;
  font-size: 22px;
  font-style: normal;
  font-family: var(--stylora-font-family-heading);
  line-height: 1.5em;
  text-align: center;
  quotes: none;
  box-sizing: border-box;
  border: none;
  color: var(--stylora-color-headings);
  background: var(--stylora-color-light);
  font-weight: 400;
  width: auto;
}

blockquote:after,
blockquote:before {
  content: ''
}

blockquote cite,
blockquote .wp-block-quote__citation,
blockquote .wp-block-pullquote__citation,
blockquote footer {
  display: block;
  margin-top: 20px;
  text-align: inherit;
  font-size: 14px;
  line-height: 1.3em;
  letter-spacing: 0;
  font-style: normal;
  font-weight: 400;
  text-transform: none
}

blockquote .wp-block-pullquote__citation {
  margin-top: 5px;
}

.icon::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.bypostauthor,
.gallery-caption,
.sticky,
.wp-caption,
.wp-caption-text {
  opacity: 1
}

.wp-caption-text {
  margin-top: 5px;
}

.alignleft {
  display: inline;
  float: left;
  margin: 0 10px 20px 0
}

.alignright {
  display: inline;
  float: right;
  margin: 0 0 20px 10px
}

.aligncenter {
  clear: both;
  display: block;
  margin: 10px auto
}

.alignwide {
  margin-left: auto;
  margin-right: auto;
  clear: both
}

@media only screen and (max-width:1024px) {
  .alignwide {
    width: 100%;
    max-width: 100%
  }
}

.alignfull {
  left: -1rem;
  width: calc(100% + (2 * 1rem));
  max-width: calc(100% + (2 * 1rem));
  clear: both
}

@media only screen and (max-width:1024px) {
  .alignfull {
    left: calc(-12.5% - 75px);
    width: calc(125% + 150px);
    max-width: calc(125% + 150px);
    margin-top: calc(2 * 1rem);
    margin-bottom: calc(2 * 1rem)
  }
}

.text-align-right {
  text-align: right !important;
}

.text-align-left {
  text-align: left !important;
}

.text-align-center {
  text-align: center !important;
}

/* =========================================================== */
/* 00. WordPress Gallery 
/* =========================================================== */
.gallery {
  margin-bottom: 30px;
}

.gallery .gallery-item {
  display: inline-block;
  padding: 2%;
  text-align: center;
  vertical-align: top;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.gallery .gallery-item img,
.gallery-icon img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.gallery .gallery-item .gallery-caption {
  color: var(--stylora-color-headings);
  font-size: 14px;
  text-align: center;
  margin: 10px 0 0;
  max-width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
  display: none;
}

/* Responsive improvements */
@media only screen and (max-width: 767px) {
  .gallery-columns-4 .gallery-item,
  .gallery-columns-5 .gallery-item,
  .gallery-columns-6 .gallery-item,
  .gallery-columns-7 .gallery-item,
  .gallery-columns-8 .gallery-item,
  .gallery-columns-9 .gallery-item {
    max-width: 50%;
  }
}

@media only screen and (max-width: 480px) {
  .gallery .gallery-item {
    max-width: 100% !important;
  }
}

/* =========================================================== */
/* 00. Typography
/* =========================================================== */
body {
  font-family: var(--stylora-font-family-body); /* Jost */
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  line-height: 1.6;
  color: var(--stylora-color-body-text);
  background-color: var(--stylora-color-white);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

p {
  font-family: var(--stylora-font-family-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--stylora-color-body-text);
  margin: 0 0 1em;
}

#dplf-main-content[tabindex="-1"]:focus {
  outline: none;
}

body.no-scroll {
  overflow-y: hidden;
}

h1, h2, h3, h4, h5, h6,
.dplf-h1, .dplf-h2, .dplf-h3, .dplf-h4, .dplf-h5, .dplf-h6,
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
.dplf-h1 a, .dplf-h2 a, .dplf-h3 a, .dplf-h4 a, .dplf-h5 a, .dplf-h6 a,
.dplf-title {
  font-family: var(--stylora-font-family-heading);
  color: var(--stylora-color-headings);
  font-weight: 400;
  text-transform: uppercase;
  margin: 20px 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-decoration: none;
}

h1, .dplf-h1 {
  font-size: 45px;
  line-height: 1.3;
}

h2, .dplf-h2 {
  font-size: 36px;
  line-height: 1.3;
}

h3, .dplf-h3 {
  font-size: 26px;
  line-height: 1.37;
}

h4, .dplf-h4 {
  font-size: 22px;
  line-height: 1.4;
}

h5, .dplf-h5 {
  font-size: 20px;
  line-height: 1.45;
}

h6, .dplf-h6 {
  font-size: 18px;
  line-height: 1.6;
}

h1.dplf-heading-tagline,
h2.dplf-heading-tagline,
h3.dplf-heading-tagline,
h4.dplf-heading-tagline,
h5.dplf-heading-tagline,
h6.dplf-heading-tagline,
p.dplf-heading-tagline,
span.dplf-heading-tagline,
strong.dplf-heading-tagline {
  color: var(--stylora-color-headings);
  font-style: normal;
  letter-spacing: 1px;
  word-wrap: break-word;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
.dplf-h1 a, .dplf-h2 a, .dplf-h3 a, .dplf-h4 a, .dplf-h5 a, .dplf-h6 a {
  transition: color 0.2s ease-in-out;
}

h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover,
.dplf-h1 a:hover, .dplf-h2 a:hover, .dplf-h3 a:hover, .dplf-h4 a:hover, .dplf-h5 a:hover, .dplf-h6 a:hover {
  color: var(--stylora-color-headings);
}

@media only screen and (max-width: 480px) {
  h1, .dplf-h1 {
    font-size: 36px;
  }

  h2, .dplf-h2 {
    font-size: 26px;
  }

  h3, .dplf-h3 {
    font-size: 22px;
  }
}

/* =========================================================== */
/* 00. Forms
/* =========================================================== */
form {
  margin: 0;
}

form fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

input[type="text"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="time"],
input[type="month"],
input[type="week"],
input[type="email"],
input[type="search"],
input[type="tel"],
input[type="url"],
#respond textarea,
#respond input[type="text"],
select,
textarea,
.post-password-form input[type="password"],
.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-number,
.wpcf7-form-control.wpcf7-date,
.wpcf7-form-control.wpcf7-textarea,
.wpcf7-form-control.wpcf7-select,
.wpcf7-form-control.wpcf7-quiz {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 14px 16px;
  margin: 0 0 15px;
  font-family: inherit;
  text-transform: none;
  font-weight: 400;
  font-size: 16px;
  color: var(--stylora-color-headings);
  background-color: var(--stylora-color-light);
  border: 0;
  border-radius: 0;
  height: auto;
  outline: 0;
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: border-color 0.2s ease-in-out;
  -o-transition: border-color 0.2s ease-in-out;
  transition: border-color 0.2s ease-in-out;
}

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

input:-webkit-autofill {
  -webkit-box-shadow: none;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="time"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
#respond input[type='text']:focus,
#respond textarea:focus,
select:focus,
textarea:focus,
.post-password-form input[type="password"]:focus {
  outline: 0;
  border-color: none;
  box-shadow: none;
}

select,
.wpcf7-form-control.wpcf7-select {
  -moz-appearance: none;
  -webkit-appearance: none;
  background-color: var(--stylora-color-light);
  border: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='12' height='12' fill='rgba(137,137,137,1)'%3E%3Cpath d='M12 15.6315L20.9679 10.8838L20.0321 9.11619L12 13.3685L3.96788 9.11619L3.0321 10.8838L12 15.6315Z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
  position: relative;
  padding-right: 26px;
  border-radius: 0;
  outline: 0;
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-appearance: none;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #181818;
  border-radius: 0;
}

option:not(:checked) {
  color: var(--stylora-color-body-text);
}

input[type="date"] {
  position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  color: transparent;
  background: 0 0;
  background-color: transparent;
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
}

.wpcf7-date,
input[type="date"]{
  -webkit-appearance: none;
  height: 55px;
  width: 100%;
  text-transform: uppercase !important;
  font-size: 90%;
  color: currentColor;
  text-align: left;
}

label {
  color: inherit;
  display: block;
  font-size: inherit;
  margin-bottom: 0.5rem;
}

.wpcf7-form label {
  display: inline-block !important;
  margin-bottom: 15px;
}

label,
.wpcf7-form label {
  font-family: var(--stylora-font-family-body);
  font-weight: 500;
}

textarea {
  padding: 20px 25px;
}

/* Forms: Chrome - Input autofill background color */
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px var(--stylora-color-light) inset;
    box-shadow: 0 0 0 1000px var(--stylora-color-light) inset;
}

.textarea {
  min-height: 20px;
}

.post-password-form input[type="password"] {
  margin: 10px 0 5px 0;
}

select {
  border-radius: 0 !important;
}

input::-ms-clear {
  width: 0;
  height: 0;
}

input[type=checkbox],
input[type=radio] {
  clear: none;
  cursor: pointer;
  margin: -.25rem .25rem 0 0;
  outline: 0;
  padding: 0 !important;
  text-align: center;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-font-smoothing: inherit;
  transition: .05s border-color ease-in-out;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  width: 16px;
  height: 16px;
  border: 2px solid var(--stylora-color-light-border);
  margin-right: 8px;
  position: relative;
}

input[type=checkbox]:checked {
  background: var(--stylora-color-accent);
  border-color: var(--stylora-color-accent);
}

input[type=checkbox]:checked:before,
input[type=radio]:checked:before {
  float: left;
  display: inline-block;
  vertical-align: middle;
  width: 1rem;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input[type=checkbox]:checked:before {
  content: '';
  display: block;
  height: 9px;
  width: 5px;
  border: 1px solid var(--stylora-color-white);
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
  position: absolute;
  top: 0px;
  left: 4px;
}

input[type=radio] {
  border-radius: 50%;
}

input[type=radio]:checked:before {
  content: '';
  border-radius: 50%;
  width: 9px;
  height: 9px;
  background-color: var(--stylora-color-accent);
}

input[type=checkbox]:disabled,
input[type=radio]:disabled,
input[type=checkbox]:disabled:hover,
input[type=radio]:disabled:hover {
  border-color: var(--stylora-color-light-border);
  cursor: not-allowed;
}

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]::-ms-track {
  width: 100%;
  cursor: pointer;
  background: transparent; 
  border-color: transparent;
  color: transparent;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: 0;
  height: 15px;
  width: 15px;
  border-radius: 0;
  background: var(--stylora-color-accent);
  cursor: pointer;
  margin-top: -6px;
  box-shadow: none;
}

input[type=range]::-webkit-slider-thumb:hover {
  background: var(--stylora-color-accent);
}

input[type=range]::-moz-range-thumb {
  box-shadow: none;
  border: 0;
  height: 16px;
  width: 2px;
  border-radius: 0;
  background: var(--stylora-color-accent);
  cursor: pointer;
}

input[type=range]::-ms-thumb {
  box-shadow: none;
  border: 0;
  height: 16px;
  width: 2px;
  border-radius: 0;
  background: var(--stylora-color-accent);
  cursor: pointer;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-moz-placeholder {
  color: inherit;
  opacity: 1;
}

:-moz-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

/*Contact Form 7*/
.wpb_gmaps_widget.wpb_content_element {
  margin-bottom: 0;
}
 
.wpcf7-form {
  margin: 0;
  padding: 0;
}

.wpcf7 p.message_field {
  clear: both;
  width: 100%;
}

.wpcf7-form textarea {
  clear: both;
}

.wpcf7-list-item-label {
  font-weight: 400;
  vertical-align: middle;
  margin-right: 5px;
}

.wpcf7-form input[type="checkbox"],
.wpcf7-form input[type="radio"] {
  width: auto;
  margin-right: 10px;
  vertical-align: middle;
}

.wpcf7-form input[type="radio"] {
  margin-top: 5px;
}

.wpcf7-form p {
  position: relative;
  margin: 0;
}

.wpcf7-form .invalid,
.wpcf7-not-valid {
  color: red;
}

.wpcf7 span.wpcf7-not-valid-tip,
.wpcf7-validation-errors {
  color: red;
}

.wpcf7-not-valid-tip {
  margin-bottom: 10px;
}

div.wpcf7-mail-sent-ok,
div.wpcf7-mail-sent-ng,
div.wpcf7-spam-blocked,
div.wpcf7-validation-errors {
  position: relative;
  display: block;
  text-align: center;
  padding: 12px 40px 12px 20px;
  border: none;
  background-color: var(--stylora-color-light);
  color: inherit;
  margin: 0 0 30px;
}

.wpcf7 form.sent .wpcf7-response-output {
  border: 0;
}

.wpcf7 form .wpcf7-response-output {
  padding: 0;
  border: 0;
  font-size: 20px;
  text-align: center;
}

.wpcf7-spinner {
  visibility: hidden;
  display: inline-block;
  opacity: 0.75;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 0;
  margin: -38px 14px 0 0;
  position: relative;
  float: right;
}

.newsletter-form .field + .field{
  padding: 0;
}

/*Button*/
/*.button,
.dplf-button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.post-password-form input[type="submit"],
.wp-block-search .wp-block-search__button,
.wp-block-button .wp-block-button__link,
.wp-block-file a.wp-block-file__button {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  width: auto;
  margin: 0;
  font-family: var(--stylora-font-family-body);
  font-size: 12px;
  line-height: 1.6;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 0;
  opacity: 1;
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 16px 36px;
  background-color: var(--stylora-color-accent);
  color: var(--stylora-color-headings);
  border: 0;
  cursor: pointer;
}

.button:hover,
.dplf-button:hover,
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.post-password-form input[type="submit"]:hover,
.wp-block-search .wp-block-search__button:hover,
.wp-block-button .wp-block-button__link:hover,
.wp-block-file a.wp-block-file__button:hover {
  background-color: var(--stylora-color-accent);
  color: var(--stylora-color-headings);
  opacity: 0.9;
}*/


/*Button with Effects*/
.button,
.dplf-button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.post-password-form input[type="submit"],
.wp-block-search .wp-block-search__button,
.wp-block-button .wp-block-button__link,
.wp-block-file a.wp-block-file__button {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  width: auto;
  margin: 0;
  font-family: var(--stylora-font-family-body);
  font-size: 12px;
  line-height: 1.6;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 0;
  opacity: 1;
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 16px 36px;
  background-color: var(--stylora-color-accent);
  color: var(--stylora-color-headings);
  border: 0;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
}

.button::before,
.dplf-button::before,
button::before,
input[type="button"]::before,
input[type="reset"]::before,
input[type="submit"]::before,
.post-password-form input[type="submit"]::before,
.wp-block-search .wp-block-search__button::before,
.wp-block-button .wp-block-button__link::before,
.wp-block-file a.wp-block-file__button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease;
  z-index: -1;
}

.button:hover::before,
.dplf-button:hover::before,
button:hover::before,
input[type="button"]:hover::before,
input[type="reset"]:hover::before,
input[type="submit"]:hover::before,
.post-password-form input[type="submit"]:hover::before,
.wp-block-search .wp-block-search__button:hover::before,
.wp-block-button .wp-block-button__link:hover::before,
.wp-block-file a.wp-block-file__button:hover::before {
  left: 0;
}

.button:hover,
.dplf-button:hover,
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.post-password-form input[type="submit"]:hover,
.wp-block-search .wp-block-search__button:hover,
.wp-block-button .wp-block-button__link:hover,
.wp-block-file a.wp-block-file__button:hover {
  background-color: var(--stylora-color-accent);
  color: var(--stylora-color-headings);
  opacity: 1;
}

/*Button Outline*/
/*.dplf-button-outline{
  background: transparent;
  border: 1px solid var(--stylora-color-white);
  color: var(--stylora-color-white);
  font-size: 12px;
  padding: 12px 30px;
}

.dplf-button-outline:hover{
  background-color: var(--stylora-color-accent);
  border: 1px solid var(--stylora-color-accent);
}*/

/*Button Outline With Effects*/
.dplf-button-outline {
  background: #fff;
  color: #000;
  border: 1px solid var(--stylora-color-white);
  /*color: var(--stylora-color-white);*/
  padding: 14px 28px;
}

.button::before,
.dplf-button::before,
button::before,
input[type="button"]::before,
input[type="reset"]::before,
input[type="submit"]::before,
.post-password-form input[type="submit"]::before,
.wp-block-search .wp-block-search__button::before,
.wp-block-button .wp-block-button__link::before,
.wp-block-file a.wp-block-file__button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease;
  z-index: -1;
}

.dplf-button-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--stylora-color-accent);
  transition: left 0.3s ease;
  z-index: -1;
}

.dplf-button-outline:hover::before {
  left: 0;
}

.dplf-button-outline:hover {
  background-color: var(--stylora-color-accent);
  border-color: var(--stylora-color-accent);
  color: var(--stylora-color-headings);
  opacity: 1;
}

/* =========================================================== */
/* 00. Helper Classes 
/* =========================================================== */
.relative {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (max-width: 768px) {
  .text-left-sm {
    text-align: left !important;
  }

  .text-right-sm {
    text-align: right !important;
  }

  .text-center-sm {
    text-align: center !important;
  }
}

.text-just {
  text-align: justify !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.border-0 {
  border: 0 !important;
}

.no-padding {
  padding: 0 !important;
}

.prl-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.ptb-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pt-75 {
  padding-top: 75px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pb-75 {
  padding-bottom: 75px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pr-25 {
  padding-right: 25px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.pr-75 {
  padding-right: 75px !important;
}

.pr-100 {
  padding-right: 100px !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.pl-25 {
  padding-left: 25px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.pl-75 {
  padding-left: 75px !important;
}

.pl-100 {
  padding-left: 100px !important;
}

.no-margin {
  margin: 0 !important;
}

.mrl-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mtb-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-75 {
  margin-top: 75px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-75 {
  margin-bottom: 75px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mr-25 {
  margin-right: 25px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.mr-75 {
  margin-right: 75px !important;
}

.mr-100 {
  margin-right: 100px !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.ml-75 {
  margin-left: 75px !important;
}

.ml-100 {
  margin-left: 100px !important;
}

.fit {
  max-width: 100% !important;
}

.quater-width {
  width: 25% !important;
}

.half-width {
  width: 50% !important;
}

.full-width {
  width: 100% !important;
}

.inline {
  display: inline !important;
}

.block {
  display: block !important;
}

.inline-block {
  display: inline-block !important;
}

.font-small{
  font-size: 16px;
  display: inline-block;
  vertical-align: middle;
}

.font-medium{
  font-size: 36px;
  display: inline-block;
  vertical-align: middle;
}

.font-large{
  font-size: 45px;
  display: inline-block;
  vertical-align: middle;
}

.themecolor,
#dplf-site-footer .themecolor,
.dplf-header-item-offcanvas-content .themecolor {
  color: var(--stylora-color-accent);
}

.themecolorbg {
  background-color: var(--stylora-color-accent);
}

#dplf-site-footer .secondrycolor,
.secondrycolor {
  color: var(--stylora-color-light);
}

.secondrycolorbg {
  background-color: var(--stylora-color-accent);
}

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

.white {
  color: var(--stylora-color-white);
}

.white-bg {
  background-color: var(--stylora-color-white) !important;
}

.bold {
  font-weight: bold;
}

.regular {
  font-weight: normal;
}

.italic {
  font-style: italic;
}

.bypostauthor {
  border-radius: 1px;
}

.col-centered {
  margin: 0 auto;
  float: none;
}

.no-space {
  padding: 0 !important;
  margin: 0 !important;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.pull-center {
  float: none !important;
  text-align: center !important;
  display: inline-block !important;
}

.nav-right {
  float: right !important;
  margin-right: -15px;
}

.nav-left {
  float: left !important;
  margin-left: -15px;
}

.pull-none {
  float: none !important;
}

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

.embed-responsive-4by3 {
  padding-bottom: 75%;
}

.widget label.screen-reader-text {
  display: none !important;
}

hr.no_line {
  background: none;
  color: transparent;
}

.mont,
span.mont,
p.mont {
  font-weight: 400;
}

.wp-block-table.is-style-stripes tr:nth-child(odd) {
  background-color: var(--stylora-color-light-border);
}

li.heading-h3 a {
  font-size: 24px !important;
  margin-right: 30px !important;
}

.size-14px {
  font-size: 14px !important;
}

.size-16px {
  font-size: 16px !important;
}

.size-18px {
  font-size: 18px !important;
}

.size-20px {
  font-size: 20px !important;
}

.size-22px {
  font-size: 22px !important;
}

.size-24px {
  font-size: 24px !important;
}

/*Widget Classes*/
.text-left-auto {
  text-align: left !important;
}

.text-right-auto {
  text-align: right !important;
}

.text-center-auto {
  text-align: center !important;
}

@media (max-width: 768px) {
  .text-center-xs {
    text-align: center !important;
    display: block !important;
  }

  .hide-on-mobile {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .text-left-auto {
    text-align: center !important;
  }

  .text-right-auto {
    text-align: center !important;
  }
}

/* MC4WP Form*/
.mc4wp-form,
.dplf-mc4wp-newsletter{
  position: relative;
  width: 100%;
  max-width: 100%;
}

.dplf-mc4wp-newsletter .field-email{
  padding: 0;
}

.dplf-mc4wp-newsletter .field-submit{
  padding: 0;
}

@media (max-width: 768px) {
  .dplf-mc4wp-newsletter{
    width: 100%;
  }

  .dplf-mc4wp-newsletter .field-submit input{
    width: 100%;
  }
}

.dplf-site-footer-top-area .dplf-mc4wp-newsletter input[type="email"],
.dplf-site-footer-widget-area .dplf-mc4wp-newsletter input[type="email"]{
  background-color: transparent;
  color: var(--stylora-color-dark-text);
  border: 1px solid var(--stylora-color-dark-border);
}

.dplf-site-footer-top-area .dplf-mc4wp-newsletter input[type="email"]:focus,
.dplf-site-footer-widget-area .dplf-mc4wp-newsletter input[type="email"]:focus{
  color: var(--stylora-color-white);
  border-color: var(--stylora-color-white);
}

.dplf-site-footer-top-area .dplf-mc4wp-newsletter input[type="submit"],
.dplf-site-footer-widget-area .dplf-mc4wp-newsletter input[type="submit"]{
  width: 100%;
}

/*Booking Form*/
.dplf-booking-form{
  position: relative;
}

.dplf-booking-form .dplf-form-icon,
.rs-layer .dplf-booking-form .dplf-form-icon {
  position: absolute;
  right: 32px;
  top: 13px;
  font-size: 20px;
  color: var(--stylora-color-accent);
}

.dplf-date-input-wrapper .dplf-form-icon {
  position: absolute;
  right: 18px;
  pointer-events: none;
  z-index: 2;
}

.dplf-booking-form .dplf-field.col,
.dplf-booking-form .dplf-field[class*="col-"] {
  padding-left: 0;
}

@media (max-width: 1200px) {
  .dplf-booking-form .dplf-field.col,
  .dplf-booking-form .dplf-field[class*="col-"] {
    padding-left: 15px;
  }
}

.dplf-booking-form .dplf-field.fullwidth input{
  width: 100%;
}

/*CF7 Date Field Fix*/
.dplf-date-input-wrapper {
    position: relative;
}

.dplf-date-input-overlay {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 45px;
  background: var(--stylora-color-light);
  pointer-events: none;
  z-index: 1;
}

/*Elementor Custom Classes*/
.dplf-elementor-blur-bg {
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background-color: rgba(255, 255, 255, 0.1);
}

/* ================================================== */
/*  00. Gutenberg
/* ================================================== */
p.has-background {
  padding: 20px 30px;
}

.wp-block-audio {
  width: 100%;
}

.wp-block-audio audio {
  width: auto;
}

.wp-block-audio.alignleft audio,
.wp-block-audio.alignright audio {
  max-width: 50%;
}

.wp-block-audio.aligncenter audio {
  display: block;
  margin: 0 auto;
}

.wp-block-video video {
  width: 100%;
}

.wp-block-archives,
.wp-block-categories,
.wp-block-latest-posts {
  margin: 0;
  padding-left: 0;
}

.wp-block-archives ul,
.wp-block-categories ul,
.wp-block-latest-posts ul {
  padding-left: 0 !important;
}

.wp-block-archives li,
.wp-block-page-list li,
.wp-block-categories li,
.wp-block-latest-posts li {
  margin-bottom: 8px;
  list-style-type: none;
}

.wp-block-archives li a,
.wp-block-categories li a,
.wp-block-latest-posts li a {
  color: var(--stylora-color-headings);
  text-decoration: none;
}

.wp-block-archives.aligncenter,
.wp-block-categories.aligncenter,
.wp-block-latest-posts.aligncenter {
  text-align: center;
}

.wp-block-archives select,
.wp-block-categories select,
.wp-block-latest-posts select {
  width: 100%;
  max-width: 100%;
  height: 52px;
  margin: 10px 0 0;
  padding: 14px 20px;
  font-family: inherit;
  font-size: 18px;
  line-height: 24px;
  font-style: inherit;
  font-weight: inherit;
  color: var(--stylora-color-headings);
  background-color: transparent;
  border: 1px solid var(--stylora-color-light-border);
  border-radius: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#dplf-site-footer .wp-block-archives select,
#dplf-site-footer .wp-block-categories select,
#dplf-site-footer .wp-block-latest-posts select {
  color: var(--stylora-color-dark-text);
  border: 1px solid var(--stylora-color-dark-text);
}

.wp-block-categories li ul {
  margin: 4px 0 0;
  padding: 0 0 0 10px;
  list-style-type: none;
}

.wp-block-categories li ul li:last-child {
  padding: 4px 0 0;
}

.wp-block-archives-dropdown label {
  display: none;
}

.wp-block-latest-posts.is-grid li {
  margin: 0 16px 16px 0;
}

.wp-block-preformatted {
  padding: 15px;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.wp-block-verse {
  font-family: inherit;
}

.has-drop-cap:not(:focus):first-letter {
  font-family: inherit;
  font-size: 3.375em;
  line-height: 1;
  font-weight: 400;
  margin: 0 0.25em 0 0;
}

.wp-block-rss .wp-block-rss__item-title {
  display: inline-block;
}

.wp-block-rss .wp-block-rss__item {
  margin: 2px 0;
}

.wp-block-button.is-style-outline>.wp-block-button__link{
  padding: 16px 36px;
}

/*Block Widget - Search*/
.wp-block-search .wp-block-search__button {
  padding: 0 18px 0 13px !important;
  margin-left: 10px !important;
}

.wp-block-search__button svg {
  min-height: 30px;
  min-width: 30px;
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__button {
  margin-left: -1px !important;
}

#dplf-site-footer .wp-block-search .wp-block-search__button {
  color: var(--stylora-color-white);
  border: 0;
}

.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input {
  margin: 0;
}

#dplf-site-footer .wp-block-search .wp-block-search__input[type="search"]:focus {
  border-color: var(--stylora-color-light-border);
  color: var(--stylora-color-dark-text);
}

.wp-block-search .wp-block-search__button svg {
  font-size: 20px;
  transform: rotate(260deg);
  cursor: pointer;
}

/*Block Widget - Latest Posts*/
.wp-block-latest-posts.wp-block-latest-posts__list li {
  margin-bottom: 30px !important;
}

.wp-block-latest-posts__featured-image{
  margin-bottom: 25px;
}

.wp-block-latest-posts__post-title{
  font-size: 20px;
  margin: 0 0 7px 0;
}

.wp-block-latest-posts__post-author,
.wp-block-latest-posts__post-date {
  display: inline-block;
  font-size: 90%;
  text-transform: capitalize;
}

.wp-block-latest-posts__post-date:before {
  content: "/";
  display: inline-block;
  padding: 0 10px;
}

.wp-block-latest-posts__post-date {
  display: inline-block;
  font-size: 90%;
}

/*Block Widget - Calendar*/
.wp-block-calendar caption {
  font-size: 16px;
  font-weight: 400;
  color: var(--stylora-color-headings);
  padding: 12px;
  border: 1px solid var(--stylora-color-light-border);
  border-bottom: 0 !important;
}

#dplf-site-footer .wp-block-calendar table caption,
#dplf-site-footer .wp-block-calendar table tbody {
  color: var(--stylora-color-dark-text);
  border: 1px solid var(--stylora-color-dark-text);
}

.wp-block-calendar tbody td,
.wp-block-calendar th {
  border: 1px solid var(--stylora-color-light-border);
}

#dplf-site-footer .wp-block-calendar tbody td,
#dplf-site-footer .wp-block-calendar th {
  border: 1px solid var(--stylora-color-dark-text);
}

/*Widget Block - Comments*/
.wp-block-latest-comments .avatar,
.wp-block-latest-comments__comment-avatar {
  border-radius: 0;
}

.wp-block-latest-comments .wp-block-latest-comments__comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/*Widet Block - RSS*/
.wp-block-rss .wp-block-rss__item {
  margin-bottom: 15px;
}

span.wp-block-rss__item-author {
  display: none;
}

.wp-block-rss__item-publish-date {
  display: block;
  font-size: 90%;
  margin-bottom: 10px;
  opacity: .8;
}

/*Widet Block - Social*/
.wp-block-social-links .wp-social-link a {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.wp-block-social-links.is-style-logos-only .wp-social-link a {
  padding-right: 0.70em;
  color: currentColor;
}

.wp-block-social-links.is-style-logos-only .wp-social-link svg {
  color: currentColor;
  fill: currentColor;
}

/*Wiget Block - Tags*/
.wp-block-tag-cloud a {
  font-size: inherit !important;
  display: inline-block;
  padding: 5px 2px;
  text-transform: capitalize;
  font-family: inherit;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  background-color: transparent;
  color: var(--stylora-color-body-text);
  box-shadow: none;
}

.wp-block-tag-cloud a:not(:last-child):after {
  content: ",";
}

#dplf-site-footer .wp-block-tag-cloud a {
  color: var(--stylora-color-dark-text);
}

/*Blockquote*/
blockquote.wp-block-pullquote {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 15px 0 !important;
  padding: 50px !important;
  font-size: 30px !important;
  font-style: normal !important;
  line-height: 1.5em !important;
  text-align: center;
  quotes: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: none !important;
  color: var(--stylora-color-headings);
  background: var(--stylora-color-light);
  font-weight: 400;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: middle;
  width: auto;
}

blockquote.wp-block-pullquote>* {
  color: inherit !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-style: inherit !important;
  line-height: inherit !important;
  margin: 0
}

blockquote.wp-block-pullquote:before,
blockquote.wp-block-pullquote:after {
  content: '';
}

blockquote.wp-block-pullquote cite,
blockquote.wp-block-pullquote .wp-block-quote__citation,
blockquote.wp-block-pullquote .wp-block-pullquote__citation,
blockquote.wp-block-pullquote footer {
  display: block !important;
  margin-top: 20px !important;
  text-align: inherit !important;
  font-size: 14px !important;
  line-height: 1.3em !important;
  letter-spacing: 0 !important;
  font-style: normal !important;
  font-weight: 400 !important;
  text-transform: none !important;
}

blockquote.wp-block-pullquote .wp-block-pullquote__citation {
  margin-top: 5px !important;
}

blockquote.wp-block-pullquote.aligncenter {
  width: 100%;
}

blockquote.wp-block-pullquote.alignleft {
  text-align: left;
  max-width: 100%;
}

blockquote.wp-block-pullquote.alignright {
  text-align: right;
  max-width: 100%;
}

blockquote.wp-block-pullquote p {
  color: inherit !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  font-style: inherit !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
  text-transform: inherit !important;
  margin: 0;
}

/*Pullquote*/
.wp-block-pullquote {
  margin: 0;
}

.wp-block-pullquote blockquote {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 15px 0 !important;
  padding: 50px !important;
  font-size: 30px !important;
  font-style: normal !important;
  line-height: 1.5em !important;
  text-align: center;
  quotes: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: none !important;
  color: var(--stylora-color-headings);
  background: var(--stylora-color-light);
  font-weight: 400;
  text-transform: uppercase;
  width: auto;
  text-align: center;
}

.wp-block-pullquote blockquote>* {
  color: inherit !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-style: inherit !important;
  line-height: inherit !important;
  margin: 0
}

.wp-block-pullquote blockquote:before,
.wp-block-pullquote blockquote:after {
  content: '';
}

.wp-block-pullquote blockquote cite,
.wp-block-pullquote blockquote .wp-block-quote__citation,
.wp-block-pullquote blockquote .wp-block-pullquote__citation,
.wp-block-pullquote blockquote footer {
  display: block !important;
  margin-top: 20px !important;
  text-align: inherit !important;
  font-size: 14px !important;
  line-height: 1.3em !important;
  letter-spacing: 0 !important;
  font-style: normal !important;
  font-weight: 400 !important;
  text-transform: none !important;
}

.wp-block-pullquote blockquote .wp-block-pullquote__citation {
  margin-top: 5px !important;
}

.wp-block-pullquote p {
  color: inherit !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  font-style: inherit !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
  text-transform: inherit !important;
}

/*Blockquote*/
.wp-block-quote {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 15px 0 !important;
  padding: 50px !important;
  font-size: 30px !important;
  font-style: normal !important;
  line-height: 1.5em !important;
  text-align: center;
  quotes: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 400;
  text-transform: uppercase;
  border: none !important;
  color: var(--stylora-color-headings);
  background: var(--stylora-color-light);
}

.wp-block-quote>* {
  color: inherit;
  font-family: inherit !important;
  font-size: inherit !important;
  font-style: inherit !important;
  line-height: inherit !important;
  margin: 0
}

.wp-block-quote:before,
.wp-block-quote:after {
  content: '';
}

.wp-block-quote cite,
.wp-block-quote .wp-block-quote__citation,
.wp-block-quote .wp-block-pullquote__citation,
.wp-block-quote footer {
  display: block !important;
  margin-top: 20px !important;
  text-align: inherit !important;
  font-size: 20px !important;
  line-height: 1.5em !important;
  letter-spacing: 0 !important;
  font-style: normal !important;
  font-weight: 400 !important;
  text-transform: none !important;
}

.wp-block-quote .wp-block-pullquote__citation {
  margin-top: 5px !important;
}

.wp-block-quote>p {
  color: inherit !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: 400;
  font-style: inherit !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
  text-transform: inherit !important;
  margin: 0;
}

.wp-block-quote.is-large,
.wp-block-quote.is-style-large {
  margin: 1rem 0;
  font-size: 1.6875em !important;
  line-height: 1.6em !important;
}

/*Image*/
.wp-block-image img {
  display: inline-block;
}

.wp-block-image.alignleft,
.wp-block-image.aligncenter,
.wp-block-image.alignright {
  max-width: 100%;
}

.wp-block-image.alignfull {
  left: auto;
  max-width: 100%;
}

.wp-block-image.alignfull img {
  width: 100vw;
}

/*Cover*/
.wp-block-cover-image,
.wp-block-cover {
  position: relative;
  min-height: 430px;
  padding: 1rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media only screen and (min-width: 768px) {

  .wp-block-cover-image,
  .wp-block-cover {
    padding: 2rem 10%;
  }
}

.wp-block-cover-image .wp-block-cover-image-text,
.wp-block-cover-image .wp-block-cover-text,
.wp-block-cover-image .wp-block-cover-text strong,
.wp-block-cover-image h2,
.wp-block-cover .wp-block-cover-image-text,
.wp-block-cover .wp-block-cover-text,
.wp-block-cover .wp-block-cover-text strong,
.wp-block-cover h2 {
  font-size: 30px;
  line-height: 1.208em;
  letter-spacing: .045em;
  color: var(--stylora-color-white) !important;
  margin-bottom: 0;
}

.wp-block-cover-image.aligncenter h2,
.wp-block-cover-image.aligncenter .wp-block-cover-image-text,
.wp-block-cover-image.aligncenter .wp-block-cover-text,
.wp-block-cover.aligncenter h2,
.wp-block-cover.aligncenter .wp-block-cover-image-text,
.wp-block-cover.aligncenter .wp-block-cover-text {
  width: 100%;
  z-index: 1;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
}

.wp-block-cover-image.alignleft,
.wp-block-cover-image.alignright,
.wp-block-cover.alignleft,
.wp-block-cover.alignright {
  width: 100%;
}

.wp-block-cover-image.alignfull .wp-block-cover-image-text,
.wp-block-cover-image.alignfull .wp-block-cover-text,
.wp-block-cover-image.alignfull h2,
.wp-block-cover.alignfull .wp-block-cover-image-text,
.wp-block-cover.alignfull .wp-block-cover-text,
.wp-block-cover.alignfull h2 {
  max-width: calc(8 * (100vw / 12) - 28px);
}

.wp-block-cover .wp-block-cover__inner-container,
.wp-block-cover-image .wp-block-cover__inner-container {
  line-height: normal;
}

/*Gallery*/
.wp-block-gallery {
  list-style-type: none;
  padding-left: 0;
}

.wp-block-gallery .blocks-gallery-image:last-child,
.wp-block-gallery .blocks-gallery-item:last-child {
  margin-bottom: 16px;
}

.wp-block-audio figcaption,
.wp-block-video figcaption,
.wp-block-image figcaption,
.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption {
  font-size: 0.71111em;
  font-family: inherit;
  line-height: 1.6;
  margin: 0;
  padding: 0.5rem;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*Seperator*/
.wp-block-separator {
  box-sizing: content-box;
  overflow: visible;
  margin: 20px 0;
  border: 0;
  height: 1px;
  background-color: var(--stylora-color-light-border);
}

.wp-block-separator.is-style-wide,
hr.is-style-wide {
  max-width: 100%;
}

.wp-block-separator.is-style-dots,
hr.is-style-dots {
  max-width: 100%;
  background-color: inherit;
  border: inherit;
  height: inherit;
  text-align: center;
}

.wp-block-separator.is-style-dots:before,
hr.is-style-dots:before {
  color: var(--stylora-color-body-text);
  font-size: 1.6875em;
  letter-spacing: 0.88889em;
  padding-left: 0.88889em;
}

.wp-block-separator+h1:before,
.wp-block-separator+h2:before,
hr+h1:before,
hr+h2:before {
  display: none;
}

/*Embed*/
.wp-block-embed-twitter {
  overflow: hidden;
}

.wp-block-embed {
  margin: 0;
}

.wp-block-table th,
.wp-block-table td {
  border-color: var(--stylora-color-light-border);
}

.wp-block-table thead {
  border-bottom: 0; 
}

.wp-block-table tfoot {
  border-top: 0; 
}

.wp-block-file {
  font-family: inherit;
}

.wp-block-code {
  border-radius: 0;
}

.wp-block-code code {
  white-space: pre-wrap;
  word-break: break-word;
}

@media only screen and (min-width: 768px) {
  .wp-block-columns .wp-block-column>*:first-child {
    margin-top: 0;
  }

  .wp-block-columns .wp-block-column>*:last-child {
    margin-bottom: 0;
  }

  .wp-block-columns[class*='has-']>* {
    margin-right: 1rem;
  }

  .wp-block-columns[class*='has-']>*:last-child {
    margin-right: 0;
  }
}

.wp-block-latest-comments.has-avatars .wp-block-latest-comments__comment article {
  width: auto;
}

.wp-block-latest-comments.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt,
.wp-block-latest-comments.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta {
  margin-left: 10px;
}

.wp-block-latest-comments .wp-block-latest-comments__comment {
  margin-bottom: 0;
}

.wp-block-latest-comments .wp-block-latest-comments__comment article {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  margin: 0;
}

.wp-block-latest-comments .wp-block-latest-comments__comment-meta {
  font-weight: 400;
}

.wp-block-latest-comments .wp-block-latest-comments__comment-meta .wp-block-latest-comments__comment-date {
  font-weight: normal;
}

.wp-block-latest-comments .wp-block-latest-comments__comment-excerpt p {
  margin: 10px 0;
}

.wp-block-latest-comments .wp-block-latest-comments__comment,
.wp-block-latest-comments .wp-block-latest-comments__comment-date,
.wp-block-latest-comments .wp-block-latest-comments__comment-excerpt p {
  font-size: inherit;
}

.has-primary-background-color {
  background-color: var(--stylora-color-accent);
}

.has-primary-background-color p,
.has-primary-background-color h1,
.has-primary-background-color h2,
.has-primary-background-color h3,
.has-primary-background-color h4,
.has-primary-background-color h5,
.has-primary-background-color h6,
.has-primary-background-color a {
  color: var(--stylora-color-light);
}

/* =========================================================== */
/* 00. Grid System
/* =========================================================== */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media only screen and (max-width: 992px) {
  .container {
    width: 88%
  }
}

@media only screen and (max-width: 768px) {
  .container {
    width: 90%
  }
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.container-fullwidth {
  width: 100%;
  padding: 0 4%;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 768px) {
  .container-fullwidth {
    padding: 0 30px;
  }
}

.container-header {
  width: 100%;
  padding: 0 0 0 60px;
  margin-right: auto;
  margin-left: auto;
}

.container-header #dplf-site-header-nav > ul > li:first-child > a {
  padding-left: 0;
}

.container-shop {
  width: 100%;
  padding: 0 6%;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters>.col,
.no-gutters>[class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-2th,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-2th,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

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

.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.order-last {
  -webkit-box-ordinal-group: 14;
  -ms-flex-order: 13;
  order: 13;
}

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

  .col-sm-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-sm-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
}

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

  .col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-md-2th {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }

  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-md-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
}

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

  .col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-lg-2th {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }

  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-lg-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
}

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

  .col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-xl-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

/* =========================================================== */
/* 00. Topbar 
/* =========================================================== */
#dplf-site-topbar {
  position: relative;
  background: var(--stylora-color-light);
  line-height: 60px;
  width: 100%;
  z-index: 101;
}

#dplf-site-topbar .dplf-site-topbar-inner {
  position: relative;
  height: 100%;
  vertical-align: middle;
  width: 100%;
  overflow: hidden;
}

@media (max-width: 1200px) {
  #dplf-site-topbar.dplf-topbar-hide-mobile {
    display: none;
  }
}

#dplf-site-topbar .row {
  display: flex;
  flex-wrap: wrap;
}

#dplf-site-topbar .col-md {
  flex: 1;
  padding: 0 15px;
}

#dplf-site-topbar .dplf-site-topbar-left {
  justify-content: flex-start;
}

#dplf-site-topbar .dplf-site-topbar-center {
  justify-content: center;
}

#dplf-site-topbar .dplf-site-topbar-right {
  justify-content: flex-end;
}

#dplf-site-topbar .dplf-site-topbar-info {
  text-decoration: none;
  padding: 0;
}

#dplf-site-topbar .dplf-site-topbar-item {
  padding: 0 50px;
  display: inline-block;
}

#dplf-site-topbar .dplf-site-topbar-info-text,
#dplf-site-topbar .dplf-site-topbar-info-text a {
  color: var(--stylora-color-headings);
  font-family: var(--stylora-font-family-body);
  font-weight: 400;
  text-transform: none;
}

#dplf-site-topbar span.dplf-site-topbar-info-text:not(:first-child) {
  margin-left: 25px;
}

#dplf-site-topbar .dplf-site-topbar-info-text i {
  margin-right: 10px;
  font-weight: 400;
  font-size: 18px;
  color: var(--stylora-color-headings);
}

/*Topbar Social Icons*/
#dplf-site-topbar .dplf-site-topbar-social span a i {
  color: var(--stylora-color-headings);
  font-size: 19px;
  transition: all 0.2s ease-in-out;
}

#dplf-site-topbar .dplf-site-topbar-social span a i:hover {
  color: var(--stylora-color-accent);
}

#dplf-site-topbar .dplf-site-topbar-social span:not(:first-child) {
  margin-left: 25px;
}

/*Topbar Navigation*/
#dplf-site-topbar .dplf-site-topbar-nav ul.menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
}

#dplf-site-topbar .dplf-site-topbar-nav ul.menu li {
  list-style: none;
  display: inline;
}

#dplf-site-topbar .dplf-site-topbar-nav ul.menu li:not(:first-child) {
  padding-left: 40px;
}

#dplf-site-topbar .dplf-site-topbar-nav ul.menu li a {
  display: inline-block;
  color: var(--stylora-color-headings);
  font-family: var(--stylora-font-family-body);
  font-weight: 400;
  font-size: 16px;
  margin: 0;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

#dplf-site-topbar .dplf-site-topbar-nav ul.menu li a:hover {
  color: var(--stylora-color-accent);
}

#dplf-site-topbar .dplf-site-topbar-nav ul ul {
  display: none;
}

/*Topbar Logo*/
#dplf-site-topbar .dplf-site-topbar-logo img {
  height: auto;
  width: 30px;
  max-width: 500px;
  margin: 5px;
}

@media (max-width: 768px) {
  #dplf-site-topbar {
    line-height: 50px !important;
    padding: 15px 0;
  }

  #dplf-site-topbar .row {
    flex-direction: column;
  }

  #dplf-site-topbar .col-md {
    flex-basis: 100%;
    max-width: 100%;
    padding: 0;
  }

  #dplf-site-topbar .dplf-site-topbar-left,
  #dplf-site-topbar .dplf-site-topbar-center,
  #dplf-site-topbar .dplf-site-topbar-right {
    justify-content: center;
    text-align: center;
  }

  #dplf-site-topbar .dplf-site-topbar-item {
    width: 100%;
    padding: 5px 0;
  }

  #dplf-site-topbar .dplf-site-topbar-info {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  #dplf-site-topbar span.dplf-site-topbar-info-text:not(:first-child) {
    margin-left: 0;
    line-height: 45px;
  }

  #dplf-site-topbar .dplf-site-topbar-nav ul.menu {
    flex-direction: column;
  }

  #dplf-site-topbar .dplf-site-topbar-nav ul.menu li {
    padding: 5px 0;
  }

  #dplf-site-topbar .dplf-site-topbar-nav ul.menu li:not(:first-child) {
    padding-left: 0;
  }

  #dplf-site-topbar .dplf-site-topbar-logo img {
    max-width: 100%;
    height: auto;
  }

  #dplf-site-topbar .dplf-site-topbar-social span:not(:first-child) {
    margin-left: 15px;
  }

  #dplf-site-topbar.hide-on-mobile {
    display: none;
  }
}

/*Header Topbar Transparent*/
#dplf-site-header.dplf-header--absolute.dplf-site-header--has-topbar {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

#dplf-site-header.dplf-header--absolute.dplf-site-header--has-topbar #dplf-site-topbar{
  background: transparent;
}

#dplf-site-header.dplf-header--absolute.dplf-header-transparent--light.dplf-site-header--has-topbar #dplf-site-topbar .row{
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

#dplf-site-header.dplf-header--absolute.dplf-header-transparent--dark.dplf-site-header--has-topbar #dplf-site-topbar .row{
  border-bottom: 1px solid rgba(0, 0, 0, 0.6);
}

#dplf-site-topbar .row .col-md:first-child,
#dplf-site-header.dplf-header--absolute.dplf-site-header--has-topbar #dplf-site-topbar .row .col-md:first-child,
#dplf-site-topbar .row .col-md:first-child .dplf-site-topbar-item,
#dplf-site-header.dplf-header--absolute.dplf-site-header--has-topbar #dplf-site-topbar .row .col-md:first-child .dplf-site-topbar-item {
  padding-left: 0;
}

#dplf-site-topbar .row .col-md:last-child,
#dplf-site-header.dplf-header--absolute.dplf-site-header--has-topbar #dplf-site-topbar .row .col-md:last-child,
#dplf-site-topbar .row .col-md:last-child .dplf-site-topbar-item,
#dplf-site-header.dplf-header--absolute.dplf-site-header--has-topbar #dplf-site-topbar .row .col-md:last-child .dplf-site-topbar-item {
  padding-right: 0;
}

#dplf-site-header.dplf-header--absolute.dplf-header-transparent--light.dplf-site-header--has-topbar #dplf-site-topbar .dplf-site-topbar-info-text,
#dplf-site-header.dplf-header--absolute.dplf-header-transparent--light.dplf-site-header--has-topbar #dplf-site-topbar .dplf-site-topbar-info-text a,
#dplf-site-header.dplf-header--absolute.dplf-header-transparent--light.dplf-site-header--has-topbar #dplf-site-topbar .dplf-site-topbar-info-text i,
#dplf-site-header.dplf-header--absolute.dplf-header-transparent--light.dplf-site-header--has-topbar #dplf-site-topbar .dplf-site-topbar-custom-text,
#dplf-site-header.dplf-header--absolute.dplf-header-transparent--light.dplf-site-header--has-topbar #dplf-site-topbar .dplf-site-topbar-custom-text *,
#dplf-site-header.dplf-header--absolute.dplf-header-transparent--light.dplf-site-header--has-topbar #dplf-site-topbar .dplf-site-topbar-social span a i,
#dplf-site-header.dplf-header--absolute.dplf-header-transparent--light.dplf-site-header--has-topbar #dplf-site-topbar .dplf-site-topbar-nav ul.menu li a {
  color: var(--stylora-color-white);
}

/* ================================================== */
/*  00. Header Item - Hamburger Icon
/* ================================================== */
.dplf-hamburger-icon-open .dplf-hamburger-icon-lines {
  position: relative;
  display: block;
  width: 58px;
  height: 12px;
  overflow: hidden;
  color: currentColor;
}

.dplf-hamburger-icon-open.dplf-hamburger-icon-type-2 .dplf-hamburger-icon-lines,
.dplf-hamburger-icon-open.dplf-hamburger-icon-type-3 .dplf-hamburger-icon-lines,
.dplf-hamburger-icon-open.dplf-hamburger-icon-type-4 .dplf-hamburger-icon-lines {
  width: 68px;
}

.dplf-hamburger-icon-open .dplf-hamburger-icon-lines:before,
.dplf-hamburger-icon-open .dplf-hamburger-icon-lines:after {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  -webkit-transition: -webkit-transform .3s ease-out;
  transition: -webkit-transform .3s ease-out;
  -o-transition: transform .3s ease-out;
  transition: transform .3s ease-out;
  transition: transform .3s ease-out, -webkit-transform .3s ease-out;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

.dplf-hamburger-icon-open .dplf-hamburger-icon-lines:after {
  bottom: 1px;
}

.dplf-hamburger-icon-open .dplf-hamburger-icon-lines .dplf-hamburger-line {
  position: absolute;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: currentColor;
  border-radius: 12px;
  -webkit-transition: -webkit-transform .3s ease-out;
  transition: -webkit-transform .3s ease-out;
  -o-transition: transform .3s ease-out;
  transition: transform .3s ease-out;
  transition: transform .3s ease-out, -webkit-transform .3s ease-out;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.dplf-hamburger-icon-open .dplf-hamburger-icon-lines .dplf-hamburger-line.dplf-hamburger-line--1 {
  top: 0;
}

.dplf-hamburger-icon-open.dplf-hamburger-icon-type-4 .dplf-hamburger-icon-lines .dplf-hamburger-line.dplf-hamburger-line--1 {
  width: 70%;
  left: auto;
  right: 0;
}

.dplf-hamburger-icon-open .dplf-hamburger-icon-lines .dplf-hamburger-line.dplf-hamburger-line--2 {
  top: 10px;
}

.dplf-hamburger-icon-open.dplf-hamburger-icon-type-3 .dplf-hamburger-icon-lines .dplf-hamburger-line.dplf-hamburger-line--2 {
  width: 70%;
  left: auto;
  right: 0;
}

.dplf-hamburger-icon-open .dplf-hamburger-icon-lines .dplf-hamburger-line.dplf-hamburger-line--3 {
  top: 20px;
}

.dplf-hamburger-icon-open:hover .dplf-hamburger-icon-lines .dplf-hamburger-line {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

.dplf-hamburger-icon-open:hover .dplf-hamburger-icon-lines .dplf-hamburger-line.dplf-hamburger-line--1 {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

.dplf-hamburger-icon-open:hover .dplf-hamburger-icon-lines .dplf-hamburger-line.dplf-hamburger-line--2 {
  -webkit-transition-delay: .15s;
  -o-transition-delay: .15s;
  transition-delay: .15s;
}

.dplf-hamburger-icon-open:hover .dplf-hamburger-icon-lines .dplf-hamburger-line.dplf-hamburger-line--3 {
  -webkit-transition-delay: .15s;
  -o-transition-delay: .15s;
  transition-delay: .15s;
}

.dplf-hamburger-icon-open:hover .dplf-hamburger-icon-lines:before,
.dplf-hamburger-icon-open:hover .dplf-hamburger-icon-lines:after {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.dplf-hamburger-icon-open:hover .dplf-hamburger-icon-lines:before {
  -webkit-transition-delay: .3s;
  -o-transition-delay: .3s;
  transition-delay: .3s;
}

.dplf-hamburger-icon-open:hover .dplf-hamburger-icon-lines:after {
  -webkit-transition-delay: .45s;
  -o-transition-delay: .45s;
  transition-delay: .45s;
}

/*Hamburger Close Icon*/
.dplf-hamburger-icon-close .dplf-hamburger-icon-lines {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 32px;
  height: 23px;
  overflow: hidden;
  color: currentColor;
}

.dplf-hamburger-icon-close .dplf-hamburger-icon-lines .dplf-hamburger-line {
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  top: calc(50% - 1px);
  left: 0;
  background-color: currentColor;
  -webkit-transition: .35s ease-out;
  -o-transition: .35s ease-out;
  transition: .35s ease-out;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

.dplf-hamburger-icon-close .dplf-hamburger-icon-lines .dplf-hamburger-line.dplf-hamburger-line--1 {
  -webkit-transform: rotate(45deg) translateX(0);
  -ms-transform: rotate(45deg) translateX(0);
  transform: rotate(45deg) translateX(0);
}

.dplf-hamburger-icon-close .dplf-hamburger-icon-lines .dplf-hamburger-line.dplf-hamburger-line--2 {
  -webkit-transform: rotate(-45deg) translateX(0);
  -ms-transform: rotate(-45deg) translateX(0);
  transform: rotate(-45deg) translateX(0);
}

.dplf-hamburger-icon-close .dplf-hamburger-icon-lines:before,
.dplf-hamburger-icon-close .dplf-hamburger-icon-lines:after {
  content: '';
  position: absolute;
  display: block;
  top: calc(50% - 1px);
  width: 100%;
  height: 1px;
  background-color: currentColor;
  -webkit-transition: all .35s ease-out;
  -o-transition: all .35s ease-out;
  transition: all .35s ease-out;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

.dplf-hamburger-icon-close .dplf-hamburger-icon-lines:before {
  -webkit-transform: rotate(45deg) translateX(-100%);
  -ms-transform: rotate(45deg) translateX(-100%);
  transform: rotate(45deg) translateX(-100%);
}

.dplf-hamburger-icon-close .dplf-hamburger-icon-lines:after {
  -webkit-transform: rotate(-45deg) translateX(-100%);
  -ms-transform: rotate(-45deg) translateX(-100%);
  transform: rotate(-45deg) translateX(-100%);
}

.dplf-hamburger-icon-close:hover .dplf-hamburger-icon-lines .dplf-hamburger-line.dplf-hamburger-line--1 {
  -webkit-transform: rotate(45deg) translateX(100%);
  -ms-transform: rotate(45deg) translateX(100%);
  transform: rotate(45deg) translateX(100%);
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

.dplf-hamburger-icon-close:hover .dplf-hamburger-icon-lines .dplf-hamburger-line.dplf-hamburger-line--2 {
  -webkit-transform: rotate(-45deg) translateX(100%);
  -ms-transform: rotate(-45deg) translateX(100%);
  transform: rotate(-45deg) translateX(100%);
  -webkit-transition-delay: .15s;
  -o-transition-delay: .15s;
  transition-delay: .15s;
}

.dplf-hamburger-icon-close:hover .dplf-hamburger-icon-lines:before {
  -webkit-transform: rotate(45deg) translateX(0);
  -ms-transform: rotate(45deg) translateX(0);
  transform: rotate(45deg) translateX(0);
  -webkit-transition-delay: .3s;
  -o-transition-delay: .3s;
  transition-delay: .3s;
}

.dplf-hamburger-icon-close:hover .dplf-hamburger-icon-lines:after {
  -webkit-transform: rotate(-45deg) translateX(0);
  -ms-transform: rotate(-45deg) translateX(0);
  transform: rotate(-45deg) translateX(0);
  -webkit-transition-delay: .45s;
  -o-transition-delay: .45s;
  transition-delay: .45s;
}

/* =========================================================== 
/* 00. Header Elements: Search
/* =========================================================== */
.dplf-header-item-offcanvas-icon-wrapper {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.dplf-header-item--search .dplf-header-search-opener {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  color: var(--stylora-color-headings);
  height: 100%;
  margin-top: -2px;
}

.dplf-header-item--search .dplf-header-search-icon-text {
  position: relative;
  font-size: 18px;
  color: var(--stylora-color-headings);
  font-family: var(--stylora-font-family-body);
  font-weight: 400;
  text-decoration: none;
  margin: 0 0 0 8px;
  vertical-align: middle;
  display: inline-block;
}

/* ================================================== */
/*  00. Header Elements: Search - Slide Top
/* ================================================== */
.dplf-header-search-type--slide-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  margin: 0;
  color: var(--stylora-color-headings);
  background-color: var(--stylora-color-light);
  overflow: hidden;
  z-index: 9999;
  transition: height 0.3s ease-out;
}

@media (max-width: 1200px) {
  .dplf-header-search-type--slide-top {
    display: none !important;
  }
}

.dplf-header-search-type--slide-top .container-header{
  padding: 0 45px;
}

.dplf-header-search-type--slide-top.search-open {
    height: 101px;
    line-height: 101px;
}

.dplf-header-search-type--slide-top .header-search-form-inner {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 0 40px;
    box-sizing: border-box;
    transform: translateY(-101px);
    transition: transform 0.3s ease-out;
}

.dplf-header-search-type--slide-top.search-open .header-search-form-inner {
    transform: translateY(0);
}

.dplf-header-search-type--slide-top .header-search-submit,
.dplf-header-search-type--slide-top .dplf-header-search-close {
  flex: 0 0 auto;
  color: var(--stylora-color-headings);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.dplf-header-search-type--slide-top .header-search-submit {
    width: 40px;
}

.dplf-header-search-type--slide-top .dplf-header-search-close {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  line-height: 1em;
  cursor: pointer;
  z-index: 10;
  color: var(--stylora-color-headings);
}

.dplf-header-search-type--slide-top .dplf-header-search-close {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  line-height: 1em;
  cursor: pointer;
  z-index: 10;
  color: var(--stylora-color-headings);
}

.dplf-header-search-type--slide-top input[type="text"] {
  flex: 1 1 auto;
  padding: 0;
  margin: 0 40px 0 0;
  color: var(--stylora-color-headings);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  background-color: transparent;
  border: none;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  appearance: none;
}

.dplf-header-search-type--slide-top button[type="submit"] {
  display: none;
}

/* Adjustments for different header states */
body.dplf-site-has--topbar .dplf-header-search-type--slide-top {
    top: 60px;
}

body.dplf-site-has--header-sticky .dplf-header-search-type--slide-top {
    top: 0;
}

.admin-bar .dplf-header-search-type--slide-top {
    top: 32px;
}

/* ================================================== */
/*  00. Header Elements: Search - Fullscreen
/* ================================================== */
.dplf-header-search-type--fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    display: none;
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

@media (max-width: 1200px) {
  .dplf-header-search-type--fullscreen {
    display: none !important;
  }
}

.dplf-header-search-fullscreen-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--stylora-color-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dplf-header-search-fullscreen-content {
    width: 90%;
    max-width: 800px;
    position: relative;
}

.dplf-header-search-type--fullscreen.is-visible {
    opacity: 1;
}

.dplf-header-search-type--fullscreen .dplf-header-search-close {
  position: absolute;
  top: 40px;
  right: 40px;
  cursor: pointer;
  z-index: 10;
  color: var(--stylora-color-headings);
}

.dplf-header-search-fullscreen-content input[type="text"] {
  width: 100%;
  height: 80px;
  padding: 0 60px 0 0;
  font-size: 22px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--stylora-color-headings);
  outline: none;
}

.dplf-header-search-fullscreen-content button[type="submit"] {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

/* Admin bar compatibility */
.admin-bar .dplf-header-search-close {
    top: 72px;
}

@media screen and (max-width: 782px) {
    .admin-bar .dplf-header-search-type--fullscreen {
        top: 46px;
    }
}

/* =========================================================== */
/* 00. Header Elements: Offcanvas Menu
/* =========================================================== */
.dplf-header-item-offcanvas-icon-wrapper {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

@media (max-width: 1200px) {
  .dplf-header-item-offcanvas-wrapper {
    display: none;
  }
}

.dplf-header-offcanvas-opener {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.dplf-header-item-offcanvas-wrapper {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 600px;
  height: 100vh;
  min-height: 100%;
  padding: 150px 65px 45px;
  overflow-y: auto;
  z-index: 9999;
  transform: translateX(100%);
  background-color: var(--stylora-color-white);
  transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  box-sizing: border-box;
}

body.offcanvas-side-menu-opened .dplf-header-item-offcanvas-wrapper {
    transform: translateX(0);
}

.dplf-header-item-offcanvas-close-icon {
    position: absolute;
    top: 52px;
    right: 52px;
    display: block;
    z-index: 10000;
    color: var(--stylora-color-headings);
    text-decoration: none;
}

.admin-bar .dplf-header-item-offcanvas-close-icon {
    top: 70px;
}

.dplf-header-item-offcanvas-close-icon .header-hamburger-icon-inner {
    display: block;
    width: 30px;
    height: 30px;
    position: relative;
}

.dplf-header-item-offcanvas-close-icon .hamburger-line {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--stylora-color-headings);
    left: 0;
    top: 50%;
}

.dplf-header-item-offcanvas-close-icon .hamburger-line-1 {
    transform: rotate(45deg);
}

.dplf-header-item-offcanvas-close-icon .hamburger-line-2 {
    transform: rotate(-45deg);
}

.dplf-header-item-offcanvas-content {
    position: relative;
    text-align: center;
    line-height: 2;
}

.dplf-header-item-offcanvas-content h1,
.dplf-header-item-offcanvas-content h2,
.dplf-header-item-offcanvas-content h3,
.dplf-header-item-offcanvas-content h4,
.dplf-header-item-offcanvas-content h5,
.dplf-header-item-offcanvas-content h6 {
    color: var(--stylora-color-headings);
}

.dplf-header-item-offcanvas-content .widget p,
.dplf-header-item-offcanvas-content .widget span,
.dplf-header-item-offcanvas-content .widget strong,
.dplf-header-item-offcanvas-content .widget li {
  color: var(--stylora-color-body-text);
  line-height: 1.5;
}

/* ================================================== */
/*  00. Header Elements: Custom Text 1
/* ================================================== */
.dplf-header-item-custom-text,
.dplf-header-item-custom-text2 {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  line-height: 1;
}

.dplf-header-item-custom-text-inner {
  position: relative;
  vertical-align: middle;
  height: 100%;
}

.dplf-header-item-custom-text *,
.dplf-header-item-custom-text2 * {
  margin-top: 0;
  margin-bottom: 0;
}

@media (max-width:1280px) {
  .dplf-header-item-custom-text,
  .dplf-header-item-custom-text2 {
    display: none;
  }
}

/* ================================================== */
/*  00. Header Elements: Social Icons
/* ================================================== */
.dplf-header-item-social-icons span a i {
  font-size: 20px;
  color: currentColor;
  transition: all 0.2s ease-in-out;
}

.dplf-header-item-social-icons span:not(:first-child) {
  margin-left: 20px;
}

/* ================================================== */
/*  00. Header Elements: Button
/* ================================================== */
.dplf-header-item-custom-button {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  line-height: 1;
}

@media (max-width:1280px) {
  .dplf-header-item-custom-button {
    display: none;
  }
}

/* ================================================== */
/*  00. Header Logo
/* ================================================== */
.dplf-site-header-logo {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}

.dplf-site-header-logo .dplf-site-header-logo-inner {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    max-width: 100%;
    width: 150px;
    transition: width 0.3s ease;
}

.dplf-site-header-logo .dplf-header-logo-text {
    display: block;
    margin: 0;
    font-weight: 400;
    line-height: inherit;
    color: var(--stylora-color-white);
}

.dplf-site-header-logo img {
    height: auto;
    width: 100%;
    transition: opacity 0.3s ease;
}

/*Header Sticky Logo*/
.dplf-site-header-logo .dplf-header-sticky-logo {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dplf-header-sticky-active .dplf-site-header-logo .dplf-header-default-logo {
    opacity: 0;
}

.dplf-header-sticky-active .dplf-site-header-logo .dplf-header-sticky-logo {
    opacity: 1;
}

.dplf-header-sticky-active .dplf-site-header-logo .dplf-site-header-logo-inner {
    width: 150px;
}

/* ================================================== */
/*  00. Header Navigation
/* ================================================== */
#dplf-site-header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#dplf-site-header-nav ul {
  margin: 0;
  list-style: none;
}

#dplf-site-header-nav ul li {
  position: relative;
  margin: 0;
  padding: 0;
  display: block;
  white-space: nowrap;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

#dplf-site-header-nav>ul>li.current-menu-ancestor:before, 
#dplf-site-header-nav>ul>li.current-menu-item:before {
  opacity: 1;
}

#dplf-site-header-nav ul li a {
  padding: 0;
  margin: 0;
  position: relative;
  display: block;
  font-size: 16px;
  padding: 0 30px;
  color: var(--stylora-color-headings);
  font-family: var(--stylora-font-family-body);
  font-weight: 400;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .06em;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  zoom: 1;
}

#dplf-site-header-nav ul>li:hover>a,
#dplf-site-header-nav ul li a:hover {
  color: var(--stylora-color-accent);
}

#dplf-site-header-nav li.current-menu-item>a,
#dplf-site-header-nav li.current-menu-item>a:hover,
#dplf-site-header-nav li.current-page-ancestor>a,
#dplf-site-header-nav li.current-page-ancestor>a:hover,
#dplf-site-header-nav li.current-menu-ancestor>a,
#dplf-site-header-nav li.current-menu-ancestor>a:hover,
#dplf-site-header-nav li.current-menu-parent>a,
#dplf-site-header-nav li.current-menu-parent>a:hover,
#dplf-site-header-nav li.current_page_ancestor>a,
#dplf-site-header-nav li.current_page_ancestor>a:hover,
#dplf-site-header-nav>ul>li.sfHover>a,
#dplf-site-header-nav>ul>li.sfHover>a:hover {
  color: var(--stylora-color-accent);
}

#dplf-site-header-nav ul li ul li.sfHover>a {
  color: var(--stylora-color-accent);
}

/*Navigation Submenu*/
#dplf-site-header-nav .sub-menu {
  position: absolute;
  min-width: 250px;
  margin: 0;
  padding: 0;
  top: 100%;
  left: 0;
  z-index: 999;
  background-color: var(--stylora-color-white);
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.03);
  transform: translateY(-15px);
  visibility: hidden;
  transition: transform 0.4s ease-out,
              visibility 0.4s ease-out;
  pointer-events: none;
}

#dplf-site-header-nav .sfHover > .sub-menu {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

#dplf-site-header-nav .sfHover > .sub-menu li {
  transform: translateY(0);
}

#dplf-site-header-nav .sfHover > .sub-menu li:nth-child(1) { transition-delay: 0.1s; }
#dplf-site-header-nav .sfHover > .sub-menu li:nth-child(2) { transition-delay: 0.15s; }
#dplf-site-header-nav .sfHover > .sub-menu li:nth-child(3) { transition-delay: 0.2s; }
#dplf-site-header-nav .sfHover > .sub-menu li:nth-child(4) { transition-delay: 0.25s; }
#dplf-site-header-nav .sfHover > .sub-menu li:nth-child(5) { transition-delay: 0.3s; }

#dplf-site-header-nav .sub-menu.sf-hidden {
  display: block !important;
  transform: translateY(-15px);
  visibility: hidden;
  transition: transform 0.4s ease-out,
              visibility 0.4s ease-out;
}

#dplf-site-header-nav .sub-menu.sf-hidden li {
  transform: translateY(-10px);
  transition: transform 0.3s ease-out;
  transition-delay: 0s !important;
}

#dplf-site-header-nav .sub-menu li {
  float: none;
  border: none;
  margin: 0;
  padding: 0;
  height: auto;
  padding-bottom: 30px;
  position: relative;
  white-space: nowrap;
  transform: translateY(-10px);
  transition: transform 0.3s ease-out;
  transition-delay: 0.1s;
}

#dplf-site-header-nav .sub-menu li:first-child {
  padding-top: 38px;
}

#dplf-site-header-nav .sub-menu li:last-child {
  padding-bottom: 38px;
}

#dplf-site-header-nav .sub-menu li a {
  display: block;
  position: relative;
  text-align: left;
  color: var(--stylora-color-headings);
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: normal;
  zoom: 1;
}

#dplf-site-header-nav .sub-menu li:hover>a,
#dplf-site-header-nav .sub-menu li:focus>a,
#dplf-site-header-nav .sub-menu li.sfHover>a,
#dplf-site-header-nav .sub-menu li.current-page-ancestor>a:hover,
#dplf-site-header-nav .sub-menu li.current-menu-ancestor>a:hover,
#dplf-site-header-nav .sub-menu li.current-menu-parent>a:hover,
#dplf-site-header-nav .sub-menu li.current_page_ancestor>a:hover {
  color: var(--stylora-color-accent);
}

#dplf-site-header-nav .sub-menu li>a:active,
#dplf-site-header-nav .sub-menu li.current-menu-item>a,
#dplf-site-header-nav .sub-menu li.current-page-ancestor>a,
#dplf-site-header-nav .sub-menu li.current-menu-ancestor>a,
#dplf-site-header-nav .sub-menu li.current-menu-parent>a,
#dplf-site-header-nav .sub-menu li.current_page_ancestor>a {
  color: var(--stylora-color-accent);
}

#dplf-site-header-nav ul li ul li.current-menu-item>a {
  color: var(--stylora-color-accent);
}

#dplf-site-header-nav .main-menu ul li a.sf-with-ul:after {
  position: absolute;
  vertical-align: middle;
  font-family: "remixicon";
  content: "\F496";
  font-size: 15px;
  color: currentColor;
  opacity: .9;
  z-index: 1;
  top: 0;
  right: 25px;
}

#dplf-site-header-nav .sub-menu ul {
  position: absolute;
  top: 0 !important;
  left: 100% !important;
  margin: 0;
}

/* =========================================================== */
/* 00. Main Header
/* =========================================================== */
#dplf-site-header {
  position: relative;
  width: 100%;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  z-index: 110;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  transition: height 0.3s ease-in-out, line-height 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  transition-delay: 0.2s;
}

#dplf-site-header .dplf-site-header-inner {
  position: relative;
  height: 100%;
}

#dplf-site-header .dplf-header-item-wrapper,
#dplf-sticky-header .dplf-header-item-wrapper,
#dplf-site-header-minimal .dplf-header-item-wrapper {
  position: relative;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#dplf-site-header .dplf-header-item-wrapper .dplf-header-item-wrapper-inner,
#dplf-sticky-header .dplf-header-item-wrapper .dplf-header-item-wrapper-inner {
  padding-right: 60px;
}

#dplf-site-header .dplf-header-item-wrapper .dplf-header-item,
#dplf-sticky-header .dplf-header-item-wrapper .dplf-header-item,
#dplf-site-header-minimal .dplf-header-item-wrapper .dplf-header-item {
  margin-left: 45px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

#dplf-site-header-minimal.divided-right .dplf-header-item-wrapper .dplf-header-item {
  margin-right: 45px;
  margin-left: 0;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  height: 100%;
}

#dplf-site-header-minimal .dplf-header-item {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  height: auto;
}

.dplf-header-item-wrapper .dplf-header-item-wrapper-inner .dplf-header-item-icon-text {
  margin-right: 15px;
}

/* =========================================================== */
/* 00. Header Standard
/* =========================================================== */
#dplf-site-header.dplf-site-header--standard {
  height: 100px;
  line-height: 100px;
}

#dplf-site-header.dplf-site-header--standard.dplf-header--relative {
  position: relative;
  background-color: var(--stylora-color-white);
}

#dplf-site-header.dplf-site-header--standard.dplf-header--relative #dplf-site-header-nav>ul>li>a,
#dplf-site-header.dplf-site-header--standard.dplf-header--relative .dplf-header-search-opener,
#dplf-site-header.dplf-site-header--standard.dplf-header--relative .dplf-header-cart-opener,
#dplf-site-header.dplf-site-header--standard.dplf-header--relative .dplf-header-offcanvas-opener,
#dplf-site-header.dplf-site-header--standard.dplf-header--relative .dplf-header-item-icon-text,
#dplf-site-header.dplf-site-header--standard.dplf-header--relative .dplf-header-item-social-icons span a i,
#dplf-site-header.dplf-site-header--standard.dplf-header--relative .dplf-header-item-custom-text *:not(.dplf-button),
#dplf-site-header.dplf-site-header--standard.dplf-header--relative .dplf-header-item-custom-text2 *:not(.dplf-button) {
  color: var(--stylora-color-headings);
}

/*Split Info*/
#dplf-site-header.dplf-site-header--standard.dplf-header--relative .dplf-header-item-wrapper-inner.split-info,
#dplf-site-header.dplf-site-header--standard.dplf-header--absolute .dplf-header-item-wrapper-inner.split-info {
  background-color: var(--stylora-color-accent);
}

#dplf-site-header.dplf-site-header--standard.dplf-header--relative .dplf-header-item-wrapper-inner.split-info .dplf-header-search-opener,
#dplf-site-header.dplf-site-header--standard.dplf-header--relative .dplf-header-item-wrapper-inner.split-info .dplf-header-cart-opener,
#dplf-site-header.dplf-site-header--standard.dplf-header--relative .dplf-header-item-wrapper-inner.split-info .dplf-header-offcanvas-opener,
#dplf-site-header.dplf-site-header--standard.dplf-header--relative .dplf-header-item-wrapper-inner.split-info .dplf-header-item-icon-text,
#dplf-site-header.dplf-site-header--standard.dplf-header--relative .dplf-header-item-wrapper-inner.split-info .dplf-header-item-social-icons span a i,
#dplf-site-header.dplf-site-header--standard.dplf-header--relative .dplf-header-item-wrapper-inner.split-info .dplf-header-item-custom-text *:not(.dplf-button),
#dplf-site-header.dplf-site-header--standard.dplf-header--relative .dplf-header-item-wrapper-inner.split-info .dplf-header-item-custom-text2 *:not(.dplf-button),
#dplf-site-header.dplf-site-header--standard.dplf-header--absolute .dplf-header-item-wrapper-inner.split-info .dplf-header-search-opener,
#dplf-site-header.dplf-site-header--standard.dplf-header--absolute .dplf-header-item-wrapper-inner.split-info .dplf-header-cart-opener,
#dplf-site-header.dplf-site-header--standard.dplf-header--absolute .dplf-header-item-wrapper-inner.split-info .dplf-header-offcanvas-opener,
#dplf-site-header.dplf-site-header--standard.dplf-header--absolute .dplf-header-item-wrapper-inner.split-info .dplf-header-item-icon-text,
#dplf-site-header.dplf-site-header--standard.dplf-header--absolute .dplf-header-item-wrapper-inner.split-info .dplf-header-item-social-icons span a i,
#dplf-site-header.dplf-site-header--standard.dplf-header--absolute .dplf-header-item-wrapper-inner.split-info .dplf-header-item-custom-text *:not(.dplf-button),
#dplf-site-header.dplf-site-header--standard.dplf-header--absolute .dplf-header-item-wrapper-inner.split-info .dplf-header-item-custom-text2 *:not(.dplf-button){
  color: var(--stylora-color-white);
}

#dplf-site-header.dplf-site-header--standard.dplf-header--relative.dplf-site-header--border {
  border-bottom: 1px solid var(--stylora-color-light-border);
}

#dplf-site-header.dplf-site-header--standard.dplf-header--absolute.dplf-site-header--border {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#dplf-site-header.dplf-site-header--standard.dplf-header--relative.dplf-site-header--shadow {
  box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
}

/*Header Standard Transparent*/
#dplf-site-header.dplf-site-header--standard.dplf-header--absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  background-color: transparent;
}

#dplf-site-header.dplf-site-header--standard #dplf-site-header-nav.justify-content-start{
  margin-left: 50px;
}

/*Header Transparent on Paspartu Layout*/
body.dplf-header-absolute--paspartu #dplf-site-header.dplf-site-header--standard.dplf-header--absolute {
  position: absolute;
  top: 26px;
}

body.dplf-header-absolute--paspartu #dplf-site-header.dplf-site-header--standard.dplf-header--absolute .container-header {
  padding: 0 25px 0 60px;
  margin-right: auto;
  margin-left: auto;
}

body.dplf-header-absolute--paspartu #dplf-site-header.dplf-site-header--standard.dplf-header--absolute .dplf-header-item-wrapper .dplf-header-item-wrapper-inner {
  padding-right: 35px;
}

/* =========================================================== */
/* 00. Header Divided
/* =========================================================== */
#dplf-site-header.dplf-site-header--divided {
  height: 100px;
  line-height: 100px;
}

#dplf-site-header.dplf-site-header--divided.dplf-header--relative {
  position: relative;
  background-color: var(--stylora-color-white);
}

#dplf-site-header.dplf-site-header--divided.dplf-header--relative #dplf-site-header-nav>ul>li>a,
#dplf-site-header.dplf-site-header--divided.dplf-header--relative .dplf-header-search-opener,
#dplf-site-header.dplf-site-header--divided.dplf-header--relative .dplf-header-cart-opener,
#dplf-site-header.dplf-site-header--divided.dplf-header--relative .dplf-header-offcanvas-opener,
#dplf-site-header.dplf-site-header--divided.dplf-header--relative .dplf-header-item-icon-text,
#dplf-site-header.dplf-site-header--divided.dplf-header--relative .dplf-header-item-social-icons span a i,
#dplf-site-header.dplf-site-header--divided.dplf-header--relative .dplf-header-item-custom-text *:not(.dplf-button),
#dplf-site-header.dplf-site-header--divided.dplf-header--relative .dplf-header-item-custom-text2 *:not(.dplf-button) {
  color: var(--stylora-color-headings);
}

/*Split Info*/
#dplf-site-header.dplf-site-header--divided.dplf-header--relative .dplf-header-item-wrapper-inner.split-info,
#dplf-site-header.dplf-site-header--divided.dplf-header--absolute .dplf-header-item-wrapper-inner.split-info {
  background-color: var(--stylora-color-accent);
}

#dplf-site-header.dplf-site-header--divided.dplf-header--relative .dplf-header-item-wrapper-inner.split-info .dplf-header-search-opener,
#dplf-site-header.dplf-site-header--divided.dplf-header--relative .dplf-header-item-wrapper-inner.split-info .dplf-header-cart-opener,
#dplf-site-header.dplf-site-header--divided.dplf-header--relative .dplf-header-item-wrapper-inner.split-info .dplf-header-offcanvas-opener,
#dplf-site-header.dplf-site-header--divided.dplf-header--relative .dplf-header-item-wrapper-inner.split-info .dplf-header-item-icon-text,
#dplf-site-header.dplf-site-header--divided.dplf-header--relative .dplf-header-item-wrapper-inner.split-info .dplf-header-item-social-icons span a i,
#dplf-site-header.dplf-site-header--divided.dplf-header--relative .dplf-header-item-wrapper-inner.split-info .dplf-header-item-custom-text *:not(.dplf-button),
#dplf-site-header.dplf-site-header--divided.dplf-header--relative .dplf-header-item-wrapper-inner.split-info .dplf-header-item-custom-text2 *:not(.dplf-button),
#dplf-site-header.dplf-site-header--divided.dplf-header--absolute .dplf-header-item-wrapper-inner.split-info .dplf-header-search-opener,
#dplf-site-header.dplf-site-header--divided.dplf-header--absolute .dplf-header-item-wrapper-inner.split-info .dplf-header-cart-opener,
#dplf-site-header.dplf-site-header--divided.dplf-header--absolute .dplf-header-item-wrapper-inner.split-info .dplf-header-offcanvas-opener,
#dplf-site-header.dplf-site-header--divided.dplf-header--absolute .dplf-header-item-wrapper-inner.split-info .dplf-header-item-icon-text,
#dplf-site-header.dplf-site-header--divided.dplf-header--absolute .dplf-header-item-wrapper-inner.split-info .dplf-header-item-social-icons span a i,
#dplf-site-header.dplf-site-header--divided.dplf-header--absolute .dplf-header-item-wrapper-inner.split-info .dplf-header-item-custom-text *:not(.dplf-button),
#dplf-site-header.dplf-site-header--divided.dplf-header--absolute .dplf-header-item-wrapper-inner.split-info .dplf-header-item-custom-text2 *:not(.dplf-button){
  color: var(--stylora-color-white);
}

#dplf-site-header.dplf-site-header--divided.dplf-header--relative.dplf-site-header--border {
  border-bottom: 1px solid var(--stylora-color-light-border);
}

#dplf-site-header.dplf-site-header--divided.dplf-header--absolute.dplf-site-header--border {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#dplf-site-header.dplf-site-header--divided.dplf-header--relative.dplf-site-header--shadow {
  box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
}

/*Header Divided Transparent*/
#dplf-site-header.dplf-site-header--divided.dplf-header--absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  background-color: transparent;
}

/*Header Transparent on Paspartu Layout*/
body.dplf-header-absolute--paspartu #dplf-site-header.dplf-site-header--divided.dplf-header--absolute {
  position: absolute;
  top: 26px;
}

body.dplf-header-absolute--paspartu #dplf-site-header.dplf-site-header--divided.dplf-header--absolute .container-header {
  padding: 0 40px 0 50px;
  margin-right: auto;
  margin-left: auto;
}

body.dplf-header-absolute--paspartu #dplf-site-header.dplf-site-header--standard.dplf-site-header--divided .dplf-header-item-wrapper .dplf-header-item-wrapper-inner{
  padding-right: 35px;
}

/* =========================================================== */
/* 00. Header Sticky - Standard & Divided
/* =========================================================== */
#dplf-sticky-header {
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  height: 80px;
  line-height: 80px;
  background-color: var(--stylora-color-white);
  transition: top .5s ease;
  border-bottom: 1px;
  border-bottom-style: solid;
  border-bottom-color: var(--stylora-color-light-border);
  z-index: 1000;
}

#dplf-sticky-header .dplf-site-header-inner {
  position: relative;
  height: 100%;
}

#dplf-sticky-header #dplf-site-header-nav>ul>li>a,
#dplf-sticky-header .dplf-header-search-opener,
#dplf-sticky-header .dplf-header-cart-opener,
#dplf-sticky-header .dplf-header-offcanvas-opener,
#dplf-sticky-header .dplf-header-item-icon-text,
#dplf-sticky-header .dplf-header-item-social-icons span a i,
#dplf-sticky-header .dplf-header-item-custom-text *:not(.dplf-button),
#dplf-sticky-header .dplf-header-item-custom-text2 *:not(.dplf-button) {
  color: var(--stylora-color-headings);
}

#dplf-sticky-header.dplf-header-sticky-active {
  top: 0;
}

/*Make Main Header Inactive*/
#dplf-site-header.dplf-header-sticky-inactive {
  opacity: 0;
  pointer-events: none;
}

.admin-bar #dplf-sticky-header {
  top: 32px !important;
}

.admin-bar #dplf-sticky-header.dplf-header-sticky-active {
  top: 32px !important;
}

/* =========================================================== */
/* 00. Header Centered
/* ========================================================== */
#dplf-site-header.dplf-site-header--centered.dplf-header--relative {
  position: relative;
}

#dplf-site-header.dplf-site-header--centered.dplf-header--relative .dplf-header-centered-logo-wrapper {
  background-color: var(--stylora-color-white);
}

#dplf-site-header.dplf-site-header--centered .dplf-header-centered-logo-wrapper .dplf-site-header-logo {
  position: relative;
  display: block;
  text-align: center;
  margin: 60px auto 10px auto;
  vertical-align: middle;
}

#dplf-site-header.dplf-site-header--centered .dplf-header-item-wrapper {
  justify-content: flex-end;
}

#dplf-site-header.dplf-site-header--centered .nav-wrapper {
  position: relative;
  height: 90px;
  line-height: 90px;
  text-align: center;
  background-color: var(--stylora-color-white);
}

#dplf-site-header.dplf-site-header--centered.dplf-header--relative #dplf-site-header-nav>ul>li>a,
#dplf-site-header.dplf-site-header--centered.dplf-header--relative .dplf-header-search-opener,
#dplf-site-header.dplf-site-header--centered.dplf-header--relative .dplf-header-cart-opener,
#dplf-site-header.dplf-site-header--centered.dplf-header--relative .dplf-header-offcanvas-opener,
#dplf-site-header.dplf-site-header--centered.dplf-header--relative .dplf-header-item-icon-text,
#dplf-site-header.dplf-site-header--centered.dplf-header--relative .dplf-header-item-social-icons span a i,
#dplf-site-header.dplf-site-header--centered.dplf-header--relative .dplf-header-item-custom-text *:not(.dplf-button),
#dplf-site-header.dplf-site-header--centered.dplf-header--relative .dplf-header-item-custom-text2 *:not(.dplf-button) {
  color: var(--stylora-color-headings);
}

#dplf-site-header.dplf-site-header--centered.dplf-header--relative .nav-wrapper.dplf-site-header--border {
  border-top: 1px solid var(--stylora-color-light-border);
  border-bottom: 1px solid var(--stylora-color-light-border);
}

/*Header Centered Transparent*/
#dplf-site-header.dplf-site-header--centered.dplf-header--absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: transparent;
}

#dplf-site-header.dplf-site-header--centered.dplf-header--absolute .dplf-header-centered-logo-wrapper {
  background-color: transparent;
}

#dplf-site-header.dplf-site-header--centered.dplf-header--absolute .nav-wrapper {
  background-color: transparent;
  border: 0;
}

/*Header Centered Transparent on Paspartu Layout*/
body.dplf-header-absolute--paspartu #dplf-site-header.dplf-site-header--centered.dplf-header--absolute {
  position: absolute;
  top: 30px;
}

body.dplf-header-absolute--paspartu #dplf-site-header.dplf-site-header--centered.dplf-header--absolute .dplf-header-item-wrapper .dplf-header-item-wrapper-inner{
  padding-right: 70px;
}

/* =========================================================== */
/* 00. Header Transparent - Standard & Divided and Centered 
/* =========================================================== */
/*Transparent Light Scheme*/
#dplf-site-header.dplf-header--absolute.dplf-header-transparent--light #dplf-site-header-nav>ul>li>a,
#dplf-site-header.dplf-header--absolute.dplf-header-transparent--light .dplf-header-search-opener,
#dplf-site-header.dplf-header--absolute.dplf-header-transparent--light .dplf-header-cart-opener,
#dplf-site-header.dplf-header--absolute.dplf-header-transparent--light .dplf-header-offcanvas-opener,
#dplf-site-header.dplf-header--absolute.dplf-header-transparent--light .dplf-header-item-icon-text,
#dplf-site-header.dplf-header--absolute.dplf-header-transparent--light .dplf-header-item-social-icons span a i,
#dplf-site-header.dplf-header--absolute.dplf-header-transparent--light .dplf-header-item-custom-text *:not(.dplf-button),
#dplf-site-header.dplf-header--absolute.dplf-header-transparent--light .dplf-header-item-custom-text2 *:not(.dplf-button) {
  color: var(--stylora-color-white);
}

/* =========================================================== */
/* 00. Header Vertical 
/* =========================================================== */
#dplf-site-header-vertical {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  padding: 80px 40px 60px 40px;
  background-color: var(--stylora-color-white);
  border-right: 1px solid var(--stylora-color-light-border);
  outline: 0;
  z-index: 999;
  -webkit-backface-visibility: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#dplf-site-header-vertical .dplf-header-vertical-logo {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 100;
}

#dplf-site-header-vertical .dplf-header-vertical-logo a {
  position: relative;
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  width: 100px;
}

#dplf-site-header-vertical .dplf-header-vertical-inner {
  position: relative;
  height: 100%;
}

#dplf-site-header-vertical .dplf-header-vertical-navigation {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#dplf-site-header-vertical .dplf-header-vertical-navigation #dplf-site-header-nav {
  position: relative;
  z-index: 100;
  text-align: center;
}

#dplf-site-header-vertical #dplf-site-header-nav ul {
  display: table-cell;
  vertical-align: middle;
}

#dplf-site-header-vertical #dplf-site-header-nav>ul>li {
  float: none;
  text-align: center;
}

#dplf-site-header-vertical #dplf-site-header-nav>ul>li>a {
  padding: 0;
  margin: 0;
  line-height: 60px;
  text-align: center;
  text-transform: uppercase;
  white-space: normal;
  color: var(--stylora-color-headings);
}

#dplf-site-header-vertical #dplf-site-header-nav .sub-menu {
  position: absolute;
  min-width: 250px;
  margin: 0;
  padding: 0;
  top: 0;
  left: 100%;
  z-index: 999;
  display: none;
  margin-left: 106px;
  -webkit-transition: top 0.15s ease-out;
  -o-transition: top 0.15s ease-out;
  transition: top 0.15s ease-out;
  -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.03);
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.03);
}

#dplf-site-header-vertical #dplf-site-header-nav .sub-menu:before {
  display: none;
}

#dplf-site-header-vertical #dplf-site-header-nav .sub-menu ul {
  margin: 0;
}

#dplf-site-header-vertical .dplf-header-vertical-info {
  position: relative;
}

#dplf-site-header-vertical .col-md-auto,
#dplf-site-header-vertical .header-info {
  margin: 0;
}

body.dplf-site-header--vertical {
  margin-left: 280px;
}

@media (max-width: 1200px) {
  body.dplf-site-header--vertical {
    margin-left: auto !important;
  }
}

body.dplf-site-header--vertical #dplf-main-content,
body.dplf-site-header--vertical #dplf-site-footer {
  overflow: hidden;
}

.admin-bar #dplf-site-header-vertical {
  top: 32px;
  height: calc(100% - 32px);
}

/* =========================================================== */
/* 00. Header Minimal
/* =========================================================== */
#dplf-site-header-minimal {
  position: absolute;
  background: transparent;
  width: 100%;
  margin: 0;
  padding: 0;
  z-index: 110;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#dplf-site-header-minimal .dplf-site-header-minimal-inner {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  height: 130px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#dplf-site-header-minimal .dplf-site-header-minimal-inner .container-fullwidth {
  padding-right: 50px;
  padding-left: 50px;
}

#dplf-site-header-minimal .dplf-site-header-logo {
  position: relative;
  vertical-align: middle;
  line-height: 1;
  z-index: 999;
}

#dplf-site-header-minimal .header-icon {
  position: relative;
  vertical-align: middle;
  z-index: 1999;
}

/*Hamburger Icon*/
#dplf-site-header-minimal .dplf-header-minimal-hamburger-open {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: var(--stylora-color-headings);
}

#dplf-site-header-minimal .dplf-header-minimal-hamburger-close {
  position: fixed;
  top: 45px;
  right: 45px;
  display: block;
  z-index: 10000;
  color: var(--stylora-color-headings);
}

#dplf-site-header-minimal.divided-right .dplf-header-minimal-hamburger-close {
  position: absolute;
  top: -15px;
  right: 5px;
}

#dplf-site-header-minimal.divided-left .dplf-header-minimal-hamburger-close {
  position: absolute;
  top: -15px;
  left: 5px;
}

/*Header Minimal Scheme Light*/
#dplf-site-header-minimal.dplf-header-minimal-scheme--light .dplf-header-minimal-hamburger-open,
#dplf-site-header-minimal.dplf-header-minimal-scheme--light .dplf-header-minimal-info .dplf-header-minimal-info-inner,
#dplf-site-header-minimal.dplf-header-minimal-scheme--light .dplf-header-minimal-info .dplf-header-minimal-info-inner p,
#dplf-site-header-minimal.dplf-header-minimal-scheme--light .dplf-header-minimal-info .dplf-header-minimal-info-inner span,
#dplf-site-header-minimal.dplf-header-minimal-scheme--light .dplf-header-minimal-info .dplf-header-minimal-info-inner a:not(.dplf-button),
#dplf-site-header-minimal.dplf-header-minimal-scheme--light .dplf-header-minimal-info .dplf-header-minimal-info-inner h1,
#dplf-site-header-minimal.dplf-header-minimal-scheme--light .dplf-header-minimal-info .dplf-header-minimal-info-inner h2,
#dplf-site-header-minimal.dplf-header-minimal-scheme--light .dplf-header-minimal-info .dplf-header-minimal-info-inner h3,
#dplf-site-header-minimal.dplf-header-minimal-scheme--light .dplf-header-minimal-info .dplf-header-minimal-info-inner h4,
#dplf-site-header-minimal.dplf-header-minimal-scheme--light .dplf-header-minimal-info .dplf-header-minimal-info-inner h5,
#dplf-site-header-minimal.dplf-header-minimal-scheme--light .dplf-header-minimal-info .dplf-header-minimal-info-inner h6{
  color: var(--stylora-color-white);
}

/*Minimal Menu*/
#dplf-site-header-minimal.header-minimal-content {
  z-index: 9999;
  height: 100%;
}

#dplf-site-header-minimal .dplf-header-minimal-nav-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  text-align: center;
  z-index: 999;
}

#dplf-site-header-minimal .dplf-header-minimal-nav-wrapper-inner {
  position: fixed;
  height: 100%;
  width: 100%;
  overflow: auto;
  display: none;
  background-color: var(--stylora-color-white);
}

#dplf-site-header-minimal .dplf-header-minimal-nav {
  padding: 10% 0 0 20%;
  justify-content: flex-start;
}

/*Widget Info Area*/
#dplf-site-header-minimal .dplf-header-minimal-nav .dplf-header-item-wrapper{
  display: flex;
  align-items: flex-end;
  padding-left: 50%;
  text-align: left;
  padding-right: 12%;
} 

#dplf-site-header-minimal #dplf-site-header-nav .sub-menu {
  left: 130%;
  top: 30%;
  background-color: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
  border-left: 1px solid var(--stylora-color-light-border);
}

#dplf-site-header-minimal #dplf-site-header-nav .sub-menu:before {
  display: none;
}

#dplf-site-header-minimal #dplf-site-header-nav .sub-menu li{
  padding-bottom: 20px;
}

#dplf-site-header-minimal #dplf-site-header-nav .sub-menu li:first-child {
  padding-top: 0;
}

#dplf-site-header-minimal #dplf-site-header-nav .sub-menu li:last-child {
  padding-bottom: 0;
}

#dplf-site-header-minimal #dplf-site-header-nav ul li {
  float: none;
  text-align: center;
}

#dplf-site-header-minimal #dplf-site-header-nav>ul>li>a {
  font-size: 45px;
  line-height: 2.3;
  font-weight: 400;
  letter-spacing: inherit;
  text-align: left;
  color: var(--stylora-color-headings);
  font-family: var(--stylora-font-family-heading);
  padding: 0;
  -webkit-transition: all .6s cubic-bezier(0.25, 0.05, 0.1, 0.94);
  -o-transition: all .6s cubic-bezier(0.25, 0.05, 0.1, 0.94);
  transition: all .6s cubic-bezier(0.25, 0.05, 0.1, 0.94);
}

#dplf-site-header-minimal #dplf-site-header-nav>ul>li:hover>a {
  transform: translateX(8px);
}

#dplf-site-header-minimal #dplf-site-header-nav>ul>li>a:hover {
  color: var(--stylora-color-accent);
}

#dplf-site-header-minimal #dplf-site-header-nav .sub-menu li a {
  color: var(--stylora-color-headings);
}

#dplf-site-header-minimal #dplf-site-header-nav .sub-menu ul,
#dplf-site-header-minimal #dplf-site-header-nav ul li a.sf-with-ul:after {
  display: none !important;
}

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

/*Hide Scrollbar*/
body.dplf-header-minimal-open {
    overflow: hidden;
}

.dplf-header-minimal-nav-wrapper-inner {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.dplf-header-minimal-nav-wrapper-inner::-webkit-scrollbar {
    display: none;
}

/* =========================================================== */
/* 00. Header Sliding
/* =========================================================== */
#dplf-site-header-sliding {
  position: fixed;
  left: 0;
  top: 0;
  float: left;
  width: 100px;
  height: 100vh;
  z-index: 1999;
  overflow: hidden;
  background-color: var(--stylora-color-white);
  border-right: 1px solid var(--stylora-color-light-border);
}

#dplf-site-header-sliding .dplf-header-sliding-inner{
  position: relative;
  height: 100%;
}

#dplf-site-header-sliding .dplf-header-sliding-content{
  position: relative;
  height: 100%;
  padding: 40px 50px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

#dplf-site-header-sliding .dplf-header-sliding-logo {
  position: relative;
}

#dplf-site-header-sliding .dplf-header-sliding-logo-inner {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}

#dplf-site-header-sliding .dplf-header-sliding-logo-inner a {
  position: relative;
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  width: 50px;
}

#dplf-site-header-sliding .dplf-header-sliding-info {
  display: flex;
  align-items: center;
  height: auto;
  margin-top: 30px;
}

#dplf-site-header-sliding .dplf-header-sliding-info-inner{
  transform-origin: bottom;
  transform: rotate(-90deg) translate(50%,50%);
}

#dplf-site-header-sliding .dplf-header-sliding-info-inner h1,
#dplf-site-header-sliding .dplf-header-sliding-info-inner h2,
#dplf-site-header-sliding .dplf-header-sliding-info-inner h3,
#dplf-site-header-sliding .dplf-header-sliding-info-inner h4,
#dplf-site-header-sliding .dplf-header-sliding-info-inner h5,
#dplf-site-header-sliding .dplf-header-sliding-info-inner h6,
#dplf-site-header-sliding .dplf-header-sliding-info-inner p{
  white-space: nowrap;
  margin: 0;
}

/*Hamburger Icon*/
#dplf-site-header-sliding .dplf-header-sliding-hamburger-open {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: var(--stylora-color-headings);
}

#dplf-site-header-sliding .dplf-header-sliding-hamburger-close {
  position: absolute;
  top: 35px;
  left: 35px;
  display: block;
  z-index: 10000;
  color: var(--stylora-color-headings);
}

#dplf-site-header-sliding.header-minimal-content {
  z-index: 9999;
  height: 100%;
}

/*Sliding Navigation Wrapper*/
#dplf-site-header-sliding .dplf-header-minimal-nav-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  text-align: center;
  z-index: 999;
}

#dplf-site-header-sliding .dplf-header-minimal-nav-wrapper-inner {
  position: fixed;
  height: 100%;
  width: 50%;
  overflow: auto;
  display: none;
  background-color: var(--stylora-color-white);
}

#dplf-site-header-sliding .header-sliding-nav {
  position: relative;
  margin-right: 180px;
  height: 100%;
}

/*Widget Info Area*/
#dplf-site-header-sliding .header-sliding-nav .dplf-header-item-wrapper{
  display: flex;
  align-items: flex-end;
  padding-bottom: 40px;
  padding-left: 55%;
  text-align: left;
} 

#dplf-site-header-sliding #dplf-site-header-nav .sub-menu {
  left: 130%;
  top: 30%;
  background-color: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
  border-left: 1px solid var(--stylora-color-light-border);
}

#dplf-site-header-sliding #dplf-site-header-nav .sub-menu:before {
  display: none;
}

#dplf-site-header-sliding #dplf-site-header-nav .sub-menu li{
  padding-bottom: 20px;
}

#dplf-site-header-sliding #dplf-site-header-nav .sub-menu li:first-child {
  padding-top: 0;
}

#dplf-site-header-sliding #dplf-site-header-nav .sub-menu li:last-child {
  padding-bottom: 0;
}

#dplf-site-header-sliding #dplf-site-header-nav ul li {
  float: none;
  text-align: center;
}

#dplf-site-header-sliding #dplf-site-header-nav>ul>li>a {
  font-size: 45px;
  line-height: 2.3;
  font-weight: 400;
  letter-spacing: inherit;
  text-align: left;
  color: var(--stylora-color-headings);
  font-family: var(--stylora-font-family-heading);
  padding: 0;
  -webkit-transition: all .6s cubic-bezier(0.25, 0.05, 0.1, 0.94);
  -o-transition: all .6s cubic-bezier(0.25, 0.05, 0.1, 0.94);
  transition: all .6s cubic-bezier(0.25, 0.05, 0.1, 0.94);
}

#dplf-site-header-sliding #dplf-site-header-nav>ul>li:hover>a {
  transform: translateX(8px);
}

#dplf-site-header-sliding #dplf-site-header-nav>ul>li>a:hover {
  color: var(--stylora-color-accent);
}

#dplf-site-header-sliding #dplf-site-header-nav .sub-menu li a {
  color: var(--stylora-color-headings);
}

#dplf-site-header-sliding #dplf-site-header-nav .sub-menu ul,
#dplf-site-header-sliding #dplf-site-header-nav ul li a.sf-with-ul:after {
  display: none !important;
}

body.dplf-site-header--sliding {
  margin-left: 100px;
}

@media (max-width: 1200px) {
  body.dplf-site-header--sliding {
    margin-left: auto !important;
  }
}

body.dplf-site-header--sliding #dplf-main-content,
body.dplf-site-header--sliding #dplf-site-footer {
  overflow: hidden;
}

.admin-bar #dplf-site-header-sliding {
  top: 32px;
  height: calc(100% - 32px);
}

/* =========================================================== */
/* 00. Mobile Header Base Styles
/* =========================================================== */
@media (max-width: 1200px) {
  #dplf-site-header,
  #dplf-sticky-header,
  #dplf-site-header-vertical,
  #dplf-site-header-minimal,
  #dplf-site-header-sliding {
    display: none !important;
  }
}

@media (max-width: 1200px) {
  #dplf-site-mobile-header,
  #dplf-sticky-mobile-header {
    display: inherit !important;
  }
}

#dplf-site-mobile-header,
#dplf-sticky-mobile-header {
  height: 70px;
  width: 100%;
  z-index: 9000;
}

/* Mobile Header Default State */
#dplf-site-mobile-header.dplf-mobile-header--relative,
#dplf-sticky-mobile-header {
  position: relative;
  background-color: var(--stylora-color-white);
  border-bottom: 1px solid var(--stylora-color-light-border);
}

#dplf-site-mobile-header.dplf-mobile-header--absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  border-bottom: none;
  z-index: 9000;
}

/* Mobile Header Transparent Dark Color Scheme */
#dplf-site-mobile-header.dplf-mobile-header--absolute.dplf-mobile-header-transparent--dark .dplf-mobile-header-opener-icon {
  color: var(--stylora-color-headings);
}

/* Mobile Header Transparent Light Color Scheme */
#dplf-site-mobile-header.dplf-mobile-header--absolute.dplf-mobile-header-transparent--light .dplf-mobile-header-opener-icon {
  color: var(--stylora-color-white);
}

#dplf-site-mobile-header .dplf-site-mobile-header-inner,
#dplf-sticky-mobile-header .dplf-site-mobile-header-inner {
  position: relative;
  height: 100%;
  vertical-align: middle;
}

#dplf-site-mobile-header .dplf-site-mobile-header-logo,
#dplf-sticky-mobile-header .dplf-site-mobile-header-logo {
  line-height: 1;
}

#dplf-site-mobile-header .dplf-site-mobile-header-logo .dplf-site-mobile-header-logo-inner,
#dplf-sticky-mobile-header .dplf-site-mobile-header-logo .dplf-site-mobile-header-logo-inner {
  position: relative;
  display: inline-block;
  line-height: 1;
}

#dplf-site-mobile-header .dplf-site-mobile-header-logo .dplf-site-mobile-header-logo-inner a,
#dplf-sticky-mobile-header .dplf-site-mobile-header-logo .dplf-site-mobile-header-logo-inner a {
  position: relative;
  display: inline-block;
  vertical-align: top;
  max-width: 200px;
  width: 110px;
}

#dplf-site-mobile-header .dplf-site-mobile-header-logo .dplf-site-mobile-header-logo-inner a img,
#dplf-sticky-mobile-header .dplf-site-mobile-header-logo .dplf-site-mobile-header-logo-inner a img {
  width: auto;
}

#dplf-site-mobile-header .dplf-mobile-header-opener-icon,
#dplf-sticky-mobile-header .dplf-mobile-header-opener-icon {
  color: var(--stylora-color-headings);
}

#dplf-site-mobile-header .dplf-mobile-header-navigation,
#dplf-sticky-mobile-header .dplf-mobile-header-navigation {
  display: none;
  background-color: var(--stylora-color-white);
  padding: 0;
  margin: 0;
  z-index: 1001;
  width: 100%;
  border-bottom: 1px solid var(--stylora-color-light-border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
}

#dplf-site-mobile-header .dplf-mobile-header-navigation-inner,
#dplf-sticky-mobile-header .dplf-mobile-header-navigation-inner {
  position: relative;
  vertical-align: middle;
}

#dplf-site-mobile-header .dplf-mobile-header-navigation .container ul,
#dplf-sticky-mobile-header .dplf-mobile-header-navigation .container ul {
  list-style: none;
  margin: 20px 0 30px;
}

#dplf-site-mobile-header .dplf-mobile-header-navigation .container ul li ul,
#dplf-sticky-mobile-header .dplf-mobile-header-navigation .container ul li ul {
  display: none;
}

#dplf-site-mobile-header .dplf-mobile-header-navigation ul li a,
#dplf-sticky-mobile-header .dplf-mobile-header-navigation ul li a {
  font-family: var(--stylora-font-family-body);
  color: var(--stylora-color-headings);
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  display: block;
  position: relative;
  padding: 14px 0;
  transition: all 0.45s ease;
  -webkit-transition: all 0.45s ease;
}

#dplf-site-mobile-header .dplf-mobile-header-navigation ul li a:hover,
#dplf-site-mobile-header .dplf-mobile-header-navigation li.open>a,
#dplf-site-mobile-header .dplf-mobile-header-navigation ul li.current-menu-item>a,
#dplf-site-mobile-header .dplf-mobile-header-navigation ul li.current-menu-ancestor>a,
#dplf-sticky-mobile-header .dplf-mobile-header-navigation ul li a:hover,
#dplf-sticky-mobile-header .dplf-mobile-header-navigation li.open>a,
#dplf-sticky-mobile-header .dplf-mobile-header-navigation ul li.current-menu-item>a,
#dplf-sticky-mobile-header .dplf-mobile-header-navigation ul li.current-menu-ancestor>a {
  color: var(--stylora-color-accent);
}

#dplf-site-mobile-header .dplf-mobile-header-navigation ul li i,
#dplf-sticky-mobile-header .dplf-mobile-header-navigation ul li i {
  display: block;
  float: right;
  font-size: 16px;
  vertical-align: middle;
  width: 30px;
  text-align: right;
}

/* Shared Custom Text Styles */
#dplf-site-mobile-header .dplf-mobile-header-custom-text,
#dplf-sticky-mobile-header .dplf-mobile-header-custom-text {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

#dplf-site-mobile-header .dplf-mobile-header-custom-text .dplf-mobile-header-custom-text-inner,
#dplf-sticky-mobile-header .dplf-mobile-header-custom-text .dplf-mobile-header-custom-text-inner {
  position: relative;
  vertical-align: middle;
  padding: 30px 0 20px 0;
}

#dplf-site-mobile-header .dplf-mobile-header-custom-text.after-nav .dplf-mobile-header-custom-text-inner,
#dplf-sticky-mobile-header .dplf-mobile-header-custom-text.after-nav .dplf-mobile-header-custom-text-inner {
  padding: 15px 0 35px 0;
}

#dplf-site-mobile-header .dplf-mobile-header-navigation .dplf-mobile-header-custom-text .dplf-mobile-header-custom-text-inner *,
#dplf-sticky-mobile-header .dplf-mobile-header-navigation .dplf-mobile-header-custom-text .dplf-mobile-header-custom-text-inner * {
  margin: 0;
}

/* =========================================================== */
/* 00. Mobile Header Specific Styles
/* =========================================================== */
#dplf-site-mobile-header {
  display: none;
  position: relative;
}

#dplf-site-mobile-header .dplf-mobile-header-navigation {
  position: relative;
  max-height: 80vh !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  -webkit-overflow-scrolling: touch;
}

#dplf-site-mobile-header .dplf-mobile-header-navigation .container {
  max-height: none;
  overflow: visible;
}

#dplf-site-mobile-header.dplf-mobile-header-sticky-inactive {
  opacity: 0;
  pointer-events: none;
}

/* =========================================================== */
/* 02. Sticky Mobile Header
/* =========================================================== */
#dplf-sticky-mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  transition: transform 0.5s ease, top 0.5s ease;
}

#dplf-sticky-mobile-header.dplf-mobile-header-sticky-active {
  transform: translateY(0);
}

#dplf-sticky-mobile-header .dplf-mobile-header-navigation {
  position: absolute;
  top: 100%;
  left: 0;
}

/* Admin bar compatibility */
.admin-bar #dplf-sticky-mobile-header {
  top: 46px !important;
}

/* Hide on desktop */
@media (min-width: 1201px) {
  #dplf-sticky-mobile-header {
    display: none !important;
  }
}

/* =========================================================== */
/* 00. Titlebar 
/* =========================================================== */
#dplf-site-titlebar {
  position: relative;
  width: 100%;
  padding: 150px 0;
  vertical-align: middle;
  background-attachment: fixed !important;
  background-color: var(--stylora-color-light);
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  z-index: 101;
}

@media (max-width: 1200px) {
  #dplf-site-titlebar.dplf-titlebar-hide-mobile {
    display: none;
  }
}

#dplf-site-titlebar.dplf-site-titlebar-type--breadcrumb {
  padding: 60px 0;
}

#dplf-site-titlebar.dplf-site-titlebar-type--stacked .dplf-site-breadcrumbs {
  margin: 10px 0;
}

#dplf-site-titlebar .dplf-site-titlebar-inner {
  position: relative;
  width: 100%;
  vertical-align: middle;
}

#dplf-site-titlebar .dplf-site-titlebar-title {
  margin: 0;
  font-size: 65px;
  line-height: normal;
}

@media (max-width:768px) {
  #dplf-site-titlebar .dplf-site-titlebar-title {
    font-size: 36px;
  }
}

#dplf-site-titlebar .dplf-site-titlebar-title.titlebar-stacked {
  margin: 10px 0 0 0;
}

#dplf-site-titlebar .dplf-site-titlebar-subtitle {
  margin-top: 15px;
  line-height: normal;
}

#dplf-site-titlebar .dplf-site-titlebar-subtitle h1,
#dplf-site-titlebar .dplf-site-titlebar-subtitle h2,
#dplf-site-titlebar .dplf-site-titlebar-subtitle h3,
#dplf-site-titlebar .dplf-site-titlebar-subtitle h4,
#dplf-site-titlebar .dplf-site-titlebar-subtitle h5,
#dplf-site-titlebar .dplf-site-titlebar-subtitle h6 {
  margin: 0;
}

@media (min-width:1200px) {
  #dplf-site-titlebar .dplf-site-titlebar-inner.dplf-titlebar-header-standard-transparent,
  #dplf-site-titlebar .dplf-site-titlebar-inner.dplf-titlebar-header-divided-transparent {
    padding-top: 100px;
  }

  body.dplf-site-has--topbar #dplf-site-titlebar .dplf-site-titlebar-inner.dplf-titlebar-header-standard-transparent,
  body.dplf-site-has--topbar #dplf-site-titlebar .dplf-site-titlebar-inner.dplf-titlebar-header-divided-transparent {
    padding-top: 160px;
  }

  #dplf-site-titlebar .dplf-site-titlebar-inner.dplf-titlebar-header-centered-transparent {
    padding-top: 220px;
  }

  body.dplf-site-has--topbar #dplf-site-titlebar .dplf-site-titlebar-inner.dplf-titlebar-header-centered-transparent {
    padding-top: 280px;
  }

  #dplf-site-titlebar .dplf-site-titlebar-inner.dplf-titlebar-header-minimal-transparent {
    padding-top: 80px;
  }

  body.dplf-site-has--topbar #dplf-site-titlebar .dplf-site-titlebar-inner.dplf-titlebar-header-minimal-transparent {
    padding-top: 140px;
  }
}

@media (max-width:1200px) {
  #dplf-site-titlebar.dplf-site-titlebar-type--divided .dplf-site-breadcrumbs {
    margin-top: 10px;
  }

  #dplf-site-titlebar {
    padding: 75px 0;
  }
}

/* =========================================================== */
/* 00. Breadcrumbs 
/* =========================================================== */
.dplf-site-breadcrumbs {
  position: relative;
  margin: 0;
  width: 100%;
  display: inline-block;
  vertical-align: middle;
}

.dplf-site-breadcrumbs a {
  opacity: 1;
  color: var(--stylora-color-body-text);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.dplf-site-breadcrumbs a:hover {
  color: inherit;
  opacity: 0.9;
  color: var(--stylora-color-accent);
}

.dplf-site-breadcrumbs a,
.dplf-site-breadcrumbs span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-family: var(--stylora-font-family-body);
  font-weight: 400;
  text-transform: uppercase;
}

.dplf-site-breadcrumbs span {
  color: var(--stylora-color-body-text);
}

.dplf-site-breadcrumbs span.delimiter {
  color: var(--stylora-color-accent);
  margin: 0 10px;
}

/* ================================================== */
/*  00. Footer
/* ================================================== */
#dplf-site-footer {
  position: relative;
  width: 100%;
  z-index: 99;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#dplf-site-footer .dplf-site-footer-top-area {
  position: relative;
  width: 100%;
  padding: 60px 0;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: var(--stylora-color-dark);
  border-bottom: 1px solid var(--stylora-color-dark-border);
}

#dplf-site-footer .dplf-site-footer-widget-area {
  position: relative;
  width: 100%;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: var(--stylora-color-dark);
}

#dplf-site-footer .dplf-footer-widget-area-padding {
  padding: 80px 0;
}

@media all and (max-width: 768px) {
  #dplf-site-footer .dplf-footer-widget-area-padding {
    padding: 50px 0;
  }

  #dplf-site-footer .dplf-footer-widget-area-padding .dplf-widget-area-column:not(:last-child) {
    padding-bottom: 40px;
  }
}

/*Widget Area Dividers*/
#dplf-site-footer .dplf-footer-widget-area-divider .dplf-widget-area-column {
  padding-left: 50px;
}

#dplf-site-footer .dplf-footer-widget-area-divider .dplf-widget-area-column:not(:first-child) {
  border-left: 1px solid var(--stylora-color-dark-border);
}

@media all and (min-width: 768px) {
  #dplf-site-footer .dplf-footer-widget-area-divider .dplf-widget-area-column {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media all and (max-width: 768px) {
  #dplf-site-footer .dplf-footer-widget-area-divider .dplf-widget-area-column {
    padding-top: 40px;
    padding-bottom: 0
  }

  #dplf-site-footer .dplf-footer-widget-area-divider .dplf-widget-area-column:last-child {
      margin-bottom: 40px;
  }

  #dplf-site-footer .dplf-footer-widget-area-divider .dplf-widget-area-column {
    padding-left: 15px;
  }

  #dplf-site-footer .dplf-footer-widget-area-divider .dplf-widget-area-column:not(:first-child) {
    border-left: 0;
  }
}

/*Widget Area Centered*/
#dplf-site-footer .dplf-footer-widget-area-centered .container-fullwidth {
   padding: 0;
}

#dplf-site-footer .dplf-footer-widget-area-centered .dplf-widget-area-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-left: 50px;
    padding-right: 50px;
}

@media all and (max-width: 768px) {
    #dplf-site-footer .dplf-footer-widget-area-centered .container-fullwidth {
        padding: 0 30px;
    }

  #dplf-site-footer .dplf-footer-widget-area-centered .dplf-widget-area-column {
    padding-left: 30px;
    padding-right: 30px;
  }
}

#dplf-site-footer .dplf-footer-widget-area-centered .dplf-widget-area-column .widget {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/*Footer Copyright Area*/
.dplf-site-footer-copyright-area {
  position: relative;
  width: 100%;
  vertical-align: middle;
  box-sizing: border-box;
  background-color: var(--stylora-color-dark);
  border-top: 1px solid var(--stylora-color-dark-border);
  padding: 30px 0;
}

.dplf-site-footer-copyright-area .dplf-site-footer-copyright-area-inner {
  width: 100%;
  overflow: hidden;
}

.dplf-site-footer-copyright-area .row {
  display: flex;
  flex-wrap: wrap;
}

.dplf-site-footer-copyright-area .col-md {
  flex: 1;
  padding: 0 15px;
}

.dplf-site-footer-copyright-area .dplf-footer-copyright-area-info {
  padding: 5px 0;
}

.dplf-site-footer-copyright-area .dplf-footer-copyright-area-item {
  padding: 0 10px;
}

.dplf-site-footer-copyright-area .dplf-footer-copyright-left {
  justify-content: flex-start;
}

.dplf-site-footer-copyright-area .dplf-footer-copyright-center {
  justify-content: center;
}

.dplf-site-footer-copyright-area .dplf-footer-copyright-right {
  justify-content: flex-end;
}

.dplf-site-footer-copyright-area .dplf-footer-copyright-area-info h1,
.dplf-site-footer-copyright-area .dplf-footer-copyright-area-info h2,
.dplf-site-footer-copyright-area .dplf-footer-copyright-area-info h3,
.dplf-site-footer-copyright-area .dplf-footer-copyright-area-info h4,
.dplf-site-footer-copyright-area .dplf-footer-copyright-area-info h5,
.dplf-site-footer-copyright-area .dplf-footer-copyright-area-info h6 {
  color: var(--stylora-color-white);
  margin: 0;
}

.dplf-site-footer-copyright-area .dplf-footer-copyright-area-info p,
.dplf-site-footer-copyright-area .dplf-footer-copyright-area-info a:not(.dplf-button),
.dplf-site-footer-copyright-area .dplf-footer-copyright-area-info p a,
.dplf-site-footer-copyright-area .dplf-footer-copyright-area-info span a {
  color: var(--stylora-color-dark-text);
  transition: all 0.2s ease-in-out;
}

.dplf-site-footer-copyright-area .dplf-footer-copyright-area-info a:hover,
.dplf-site-footer-copyright-area .dplf-footer-copyright-area-info p a:hover,
.dplf-site-footer-copyright-area .dplf-footer-copyright-area-info span a:hover {
  color: var(--stylora-color-white);
}

/*Copyright Nav*/
.dplf-site-footer-copyright-area .dplf-footer-copyright-area-nav ul.menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.dplf-site-footer-copyright-area .dplf-footer-copyright-area-nav ul.menu li {
  list-style: none;
  margin: 0;
  padding: 0 10px;
}

.dplf-site-footer-copyright-area .dplf-footer-copyright-area-nav ul.menu li a {
  color: var(--stylora-color-dark-text);
  margin: 0;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.dplf-site-footer-copyright-area .dplf-footer-copyright-area-nav ul.menu li a:hover {
  color: var(--stylora-color-white);
}

.dplf-site-topbar-nav ul ul,
.dplf-site-footer-copyright-area .dplf-footer-copyright-area-nav ul ul {
  display: none;
}

/*Copyright Social*/
.dplf-site-footer-copyright-area .dplf-footer-copyright-area-social span a i {
  font-size: 20px;
  color: var(--stylora-color-dark-text);
  transition: all 0.2s ease-in-out;
}

.dplf-site-footer-copyright-area .dplf-footer-copyright-area-social span:not(:first-child) {
  margin-left: 25px;
}

/*Copyright Logo/Payment Icon*/
.dplf-site-footer-copyright-area .dplf-footer-copyright-area-logo img {
  height: auto;
  width: 130px;
  max-width: 500px;
  margin: 5px;
}

.dplf-site-footer-copyright-area .dplf-footer-copyright-area-payment-icons img {
  height: auto;
  width: 120px;
  max-width: 800px;
  margin: 5px;
}

@media (max-width: 768px) {
  .dplf-site-footer-copyright-area {
    padding: 25px 0;
  }
  
  .dplf-site-footer-copyright-area .row {
    flex-direction: column;
  }
  
  .dplf-site-footer-copyright-area .col-md {
    flex-basis: 100%;
    max-width: 100%;
    padding: 0;
  }
  
  .dplf-site-footer-copyright-area .dplf-footer-copyright-left,
  .dplf-site-footer-copyright-area .dplf-footer-copyright-center,
  .dplf-site-footer-copyright-area .dplf-footer-copyright-right {
    justify-content: center;
    text-align: center;
  }

  .dplf-site-footer-copyright-area .dplf-footer-copyright-area-item {
    width: 100%;
    padding: 5px 0;
  }

  .dplf-site-footer-copyright-area .dplf-footer-copyright-area-info {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px 0;
  }

  .dplf-site-footer-copyright-area .dplf-footer-copyright-area-nav ul.menu {
    flex-direction: column;
  }

  .dplf-site-footer-copyright-area .dplf-footer-copyright-area-nav ul.menu li {
    padding: 5px 0;
  }

  .dplf-site-footer-copyright-area .dplf-footer-copyright-area-logo img,
  .dplf-site-footer-copyright-area .dplf-footer-copyright-area-payment-icons img {
    max-width: 100%;
    height: auto;
  }

  .dplf-site-footer-copyright-area .dplf-footer-copyright-area-social span:not(:first-child) {
    margin-left: 10px;
  }
}

/*Back To Top Button*/
#dplf-back-to-top {
    position: fixed;
    right: 40px;
    bottom: -60px;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

#dplf-back-to-top.show {
    bottom: 40px;
}

#dplf-back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--stylora-color-dark);
    background-color: var(--stylora-color-accent);
    width: 55px;
    height: 55px;
    font-size: 20px;
    transition: all 0.3s ease-in-out;
}

#dplf-back-to-top:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    #dplf-back-to-top {
        right: 18px;
    }
    #dplf-back-to-top.show {
        bottom: 18px;
    }
    #dplf-back-to-top i {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}

/* =========================================================== */
/* 00. Widgets
/* =========================================================== */
#dplf-site-sidebar {
  position: relative;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  overflow: hidden;
  box-sizing: border-box;
}

#dplf-site-sidebar.dplf-sidebar--right {
  padding-left: 30px;
  padding-right: 0;
}

#dplf-site-sidebar.dplf-sidebar--left {
  padding-right: 30px;
  padding-left: 0;
}

@media (max-width: 768px) {
  #dplf-site-sidebar.dplf-sidebar--right,
  #dplf-site-sidebar.dplf-sidebar--left {
    padding: 150px 10px 0 10px;
  }
}

.widget:not(:last-child) {
  margin: 0 0 40px;
}

.widget h4.widget-title {
  margin: 0 0 20px;
}

.dplf-site-footer-top-area h1,
.dplf-site-footer-top-area h2,
.dplf-site-footer-top-area h3,
.dplf-site-footer-top-area h4,
.dplf-site-footer-top-area h5,
.dplf-site-footer-top-area h6,
.dplf-site-footer-top-area h4.widget-title,
.dplf-site-footer-top-area h4.widget-title a {
  color: var(--stylora-color-white);
}

.dplf-site-footer-widget-area h1,
.dplf-site-footer-widget-area h2,
.dplf-site-footer-widget-area h3,
.dplf-site-footer-widget-area h4,
.dplf-site-footer-widget-area h5,
.dplf-site-footer-widget-area h6,
.dplf-site-footer-widget-area h4.widget-title,
.dplf-site-footer-widget-area h4.widget-title a {
  color: var(--stylora-color-white);
}

#dplf-site-sidebar p {
    white-space: normal;
}

#dplf-site-sidebar .widget a:not(.dplf-button):not(.wp-block-button__link),
#dplf-site-sidebar .widget a:not(.dplf-button):not(.wp-block-button__link):hover {
  color: var(--stylora-color-body-text);
}

#dplf-site-footer .widget a:not(.wp-block-social-link-anchor):not(.dplf-button),
#dplf-site-footer .dplf-site-footer-top-area a:not(.wp-block-social-link-anchor):not(.dplf-button),
#dplf-site-footer .dplf-site-footer-widget-area a:not(.wp-block-social-link-anchor):not(.dplf-button) {
  color: var(--stylora-color-dark-text);
}

#dplf-site-footer .widget a:hover:not(.dplf-button),
#dplf-site-footer .dplf-site-footer-top-area a:hover:not(.dplf-button),
#dplf-site-footer .dplf-site-footer-widget-area a:hover:not(.dplf-button) {
  color: var(--stylora-color-accent);
}

#dplf-site-sidebar .widget p,
#dplf-site-sidebar .widget span:not(.dplf-social-text),
#dplf-site-sidebar .widget strong,
#dplf-site-sidebar .widget li {
  color: var(--stylora-color-body-text);
}

#dplf-site-footer .dplf-site-footer-top-area p,
#dplf-site-footer .dplf-site-footer-top-area span:not(.dplf-form-icon),
#dplf-site-footer .dplf-site-footer-top-area strong,
#dplf-site-footer .dplf-site-footer-top-area li {
  color: var(--stylora-color-dark-text);
}

#dplf-site-footer .dplf-site-footer-widget-area p,
#dplf-site-footer .dplf-site-footer-widget-area span,
#dplf-site-footer .dplf-site-footer-widget-area strong,
#dplf-site-footer .dplf-site-footer-widget-area li {
  color: var(--stylora-color-dark-text);
}

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

.widget.widget_archive ul li,
.widget.widget_pages ul li,
.widget.widget_meta ul li,
.widget.widget_recent_comments ul li,
.widget.widget_recent_entries ul li,
.widget.widget_nav_menu ul li,
.widget.widget_categories ul li {
  margin-bottom: 10px;
}

.widget.widget_archive ul li:hover a,
.widget.widget_pages ul li:hover a,
.widget.widget_recent_comments ul li:hover a,
.widget.widget_nav_menu ul li:hover a,
.widget.widget_categories ul li:hover a {
  transform: translateX(3px);
}

.widget ul li a {
  display: inline-block;
  color: var(--stylora-color-body-text);
  -webkit-transition: all .6s cubic-bezier(0.25, 0.05, 0.1, 0.94);
  -o-transition: all .6s cubic-bezier(0.25, 0.05, 0.1, 0.94);
  transition: all .6s cubic-bezier(0.25, 0.05, 0.1, 0.94);
}

#dplf-site-footer .widget ul li a:not(.wp-block-social-link-anchor) {
  color: var(--stylora-color-dark-text);
}

#dplf-site-footer .widget ul li a:hover {
  color: var(--stylora-color-white);
}

.widget ul ul.children li,
.widget ul ul.sub-menu li {
  margin: 10px 0 10px 10px;
}

.widget ul li ul li ul {
  padding: 0 0 0 20px;
}

.widget ul ul ul ul ul ul,
.widget ul ul ul ul ul ul {
  margin: 10px 10px 10px 10px;
  padding: 0;
}

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

.widget.widget_archive select,
.widget.widget_categories select,
.widget.widget_text select {
  width: 100%;
  max-width: 100%;
  margin: 5px 0 0;
}

#dplf-site-footer .widget.widget_archive select,
#dplf-site-footer .widget.widget_categories select,
#dplf-site-footer .widget.widget_text select {
  color: var(--stylora-color-dark-text);
  background-color: transparent;
  border: 1px solid var(--stylora-color-dark-text);
}

.widget_recent_comments ul li a {
  display: inline-block;
}

.widget_recent_comments ul li a:before {
  display: none;
}

.widget.widget_text img {
  display: block;
}

.widget.widget_calendar {
  width: 100%;
}

.widget.widget_rss ul li {
  margin-bottom: 20px;
}

/*Widget - Search Form*/
form.search-form {
  position: relative;
}

form.search-form input[type="search"] {
  height: 55px;
}

form.search-form .search-submit {
  position: absolute !important;
  right: 0;
  top: 0;
  padding: 0;
  font-size: 16px;
  width: 55px;
  height: 55px;
  border-radius: 0;
  text-align: center;
  display: inline-block;
  line-height: 1.5px;
}

form.search-form .search-submit svg {
  height: 20px;
}

#dplf-site-footer .widget_search input[type="search"] {
  background-color: transparent;
  border: 1px solid var(--stylora-color-dark-text);
  color: var(--stylora-color-dark-text);
}

#dplf-site-footer form.search-form .search-submit {
  background-color: transparent;
  border-color: transparent;
}

/*Wide - Search*/
.widget.widget_search button span {
  color: var(--stylora-color-white);
}

/*Widget - Tag Cloud*/
.widget.widget_tag_cloud a {
  font-size: inherit !important;
  display: inline-block;
  padding: 5px 2px;
  text-transform: capitalize;
  font-family: inherit;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background-color: transparent;
  color: var(--stylora-color-body-text);
  box-shadow: none;
}

.widget.widget_tag_cloud a:not(:last-child):after {
  content: ",";
}

#dplf-site-footer .widget.widget_tag_cloud a {
  color: var(--stylora-color-dark-text);
}

/*Widget - Calendar*/
.calendar_wrap {
  position: relative;
  box-shadow: none;
  outline: none;
}

.widget.widget_calendar,
.widget.widget_calendar table {
  width: 100%;
}

#wp-calendar table {
  width: 100%;
  border-radius: 0;
  border-spacing: 0;
  border-color: transparent;
  border-collapse: collapse;
}

.widget.widget_calendar caption {
  font-size: 16px;
  font-weight: 400;
  color: var(--stylora-color-headings);
  padding: 12px;
  border: 1px solid var(--stylora-color-light-border);
  border-bottom: 0 !important;
}

#dplf-site-footer .widget.widget_calendar caption {
  color: var(--stylora-color-dark-text);
  border: 1px solid var(--stylora-color-dark-text);
}

#dplf-site-footer .widget_calendar thead tr,
#dplf-site-footer .widget_calendar tbody tr {
  border: 1px solid var(--stylora-color-dark-text);
}

#wp-calendar th {
  color: var(--stylora-color-body-text);
}

#dplf-site-footer #wp-calendar th,
#dplf-site-footer #wp-calendar td {
  color: var(--stylora-color-dark-text);
}

#wp-calendar td,
#wp-calendar th {
  text-align: center;
  padding: 8px 0;
  background-color: transparent;
}

#wp-calendar td {
  text-align: center;
  padding: 5px 10px;
  color: var(--stylora-color-body-text);
}

/* =========================================================== */
/* 00. Theme Layout 
/* =========================================================== */
#dplf-site-wrapper {
  position: relative;
  left: 0;
  z-index: 1000;
  -webkit-transition: left 0.33s cubic-bezier(0.694, 0.0482, 0.335, 1);
  -o-transition: left 0.33s cubic-bezier(0.694, 0.0482, 0.335, 1);
  transition: left 0.33s cubic-bezier(0.694, 0.0482, 0.335, 1);
}

#dplf-site-wrapper .dplf-site-wrapper-inner {
  width: 100%;
  overflow: hidden;
}

/*Layout Boxed*/
.dplf-site-layout--boxed #dplf-site-wrapper {
  width: 100%;
  margin: 0;
  background-color: var(--stylora-color-white);
  overflow: hidden !important;
}

@media (min-width: 992px) {
  .dplf-site-layout--boxed #dplf-site-wrapper {
    width: 970px;
    margin: 0 auto;
  }
}

@media (min-width: 1200px) {
  .dplf-site-layout--boxed #dplf-site-wrapper {
    width: 1170px;
  }
}

@media (min-width: 1280px) {
  .dplf-site-layout--boxed #dplf-site-wrapper {
    width: 1200px;
  }

  .container {
    width: 1200px;
  }
}

@media (min-width: 1300px) {
  .dplf-site-layout--boxed #dplf-site-wrapper {
    width: 1280px;
  }
}

/*Layout Paspartu*/
.dplf-site-layout--paspartu #dplf-site-wrapper {
  padding: 1.5%;
  background-color: var(--stylora-color-white);
}

/* ================================================== */
/*  00. Main Content
/* ================================================== */
#dplf-main-content {
  position: relative;
  margin: 0;
  padding: 150px 0;
  z-index: 100;
  min-height: 500px;
}

@media (max-width: 768px) {
  #dplf-main-content {
    padding: 100px 0;
  }
}

#dplf-main-content.dplf-page-fullwidth {
  position: relative;
  margin: 0 !important;
  padding: 0 !important;
}

#dplf-main-content.dplf-page-fullwidth .dplf-main-content-inner {
  width: 100%;
  overflow: hidden;
}

#dplf-main-content .dplf-main-content-inner.dplf-titlebar-header--standard,
#dplf-main-content .dplf-main-content-inner.dplf-titlebar-header--divided {
  padding-top: 100px;
}

#dplf-main-content .dplf-main-content-inner.dplf-titlebar-header--centered {
  padding-top: 220px;
}

/* ================================================== */
/*  00. Grid Lines
/* ================================================== */
.dplf-grid-lines {
  position: absolute;
  top: 0;
  left: 110px;
  width: calc(100% - 220px);
  height: 100%;
  z-index: -1;
}

.dplf-grid-lines .dplf-grid-lines-line {
  display: block;
  float: left;
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.dplf-grid-lines .dplf-grid-lines-line:not(:first-child) {
  border-left: 1px solid var(--stylora-color-light-border);
}

.dplf-grid-lines.dplf-grid-lines--columns-3 .dplf-grid-lines-line {
  width: 33.333333%;
}

.dplf-grid-lines.dplf-grid-lines--columns-4 .dplf-grid-lines-line {
  width: 25%;
}

.dplf-grid-lines.dplf-grid-lines--columns-5 .dplf-grid-lines-line {
  width: 20%;
}

.dplf-grid-lines.dplf-grid-lines--columns-6 .dplf-grid-lines-line {
  width: 16.666%;
}

.dplf-grid-lines.dplf-grid-lines--columns-7 .dplf-grid-lines-line {
  width: 14.285714%;
}

.dplf-grid-lines.dplf-grid-lines--columns-8 .dplf-grid-lines-line {
  width: 12.5%;
}

@media only screen and (max-width: 1024px) {
  .dplf-grid-lines {
    display: none;
  }
}

/* ================================================== */
/*  00. Blog 
/* ================================================== */
.dplf-blog-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 0;
  clear: both;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.dplf-blog-wrapper article {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.dplf-blog-wrapper article.sticky .entry-post-title a:after {
  font-size: 13px;
  padding: 6px 12px;
  color: var(--stylora-color-dark);
  background-color: var(--stylora-color-accent);
  font-family: var(--stylora-font-family-body);
  vertical-align: top;
  text-align: center;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.dplf-blog-wrapper.dplf-blog-posts-wrapper article {
  margin-bottom: 80px;
}

.dplf-blog-wrapper article .entry-post-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
}

.dplf-blog-wrapper article .entry-post-wrapper .entry-post-media,
.dplf-blog-wrapper article .entry-post-wrapper .entry-post-content {
  position: relative;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.dplf-blog-wrapper article .entry-post-wrapper .entry-post-media {
  margin-bottom: 35px;
}

.dplf-blog-wrapper.dplf-blog--centered article .entry-post-wrapper .entry-post-media {
  margin: 30px 0 45px 0;
}

/*Post Thumbnail*/
.dplf-blog-wrapper article .entry-post-media .post-thumbnail {
  position: relative;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
}

.dplf-blog-wrapper article .entry-post-media .post-thumbnail img {
  position: relative;
  display: inline-block;
  max-width: 100%;
  object-fit: cover;
  vertical-align: middle;
  transform: scale(1);
  transition: transform 3.5s cubic-bezier(.17, .05, .13, .85);
}

.dplf-blog-wrapper article .entry-post-media .post-thumbnail iframe {
  width: 100%;
}

.dplf-blog-wrapper article .entry-post-media .post-thumbnail a:hover img {
  transform: scale(1.05);
}

/*Post Gallery*/
.dplf-blog-wrapper article .entry-post-media .post-slider {
  position: relative;
  visibility: hidden;
  width: 100%;
  margin: 0;
  z-index: 1;
}

/*Post Media*/
.dplf-blog-wrapper article .entry-post-media .post-video {
  position: relative;
  width: 100%;
  margin: 0;
  z-index: 1;
}

/*Post Audio*/
.dplf-blog-wrapper article .entry-post-media .post-audio-wrapper {
  position: relative;
  width: 100%;
  margin: 0;
  z-index: 1;
  display: inline-block;
  vertical-align: middle;
}

.post-audio-wrapper .mejs-container,
.post-audio-wrapper .mejs-embed,
.post-audio-wrapper .mejs-embed body,
.post-audio-wrapper .mejs-container .mejs-controls {
  background: none;
}

.post-audio-wrapper .mejs-container,
.post-audio-wrapper .mejs-container .mejs-controls {
  height: 50px !important;
}

.post-audio-wrapper .mejs-container .mejs-controls {
  background: var(--stylora-color-headings);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: inherit;
  padding: 0;
}

.post-audio-wrapper .mejs-container .mejs-controls .mejs-button {
  height: 50px;
  width: 50px;
}

.post-audio-wrapper .mejs-container .mejs-controls button {
  background-color: transparent;
  background-image: none;
  border: 0;
  height: 50px;
  margin: 0;
  outline: none;
  position: relative;
  top: 0;
  width: 50px;
}

.post-audio-wrapper .mejs-container .mejs-controls button:before {
  color: var(--stylora-color-white);
  display: block;
  font-family: "remixicon";
  font-size: 15px;
  height: 50px;
  left: 0;
  line-height: 50px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 50px;
}

.post-audio-wrapper .mejs-container .mejs-controls>.mejs-playpause-button.mejs-play button:before,
.post-audio-wrapper .mejs-container .mejs-controls>.mejs-playpause-button.mejs-replay button:before {
  content: "\f013";
  font-size: 25px;
}

.post-audio-wrapper .mejs-container .mejs-controls>.mejs-playpause-button.mejs-pause button:before {
  content: "\efd9";
  font-size: 25px;
}

.post-audio-wrapper .mejs-container .mejs-controls>.mejs-playpause-button.mejs-stop button:before {
  content: "\f1a3";
  font-size: 25px;
}

.post-audio-wrapper .mejs-container .mejs-controls>.mejs-volume-button.mejs-mute button:before {
  content: "\f29e";
}

.post-audio-wrapper .mejs-container .mejs-controls>.mejs-volume-button.mejs-unmute button:before {
  content: "\f29c";
}

.post-audio-wrapper .mejs-container .mejs-controls>.mejs-volume-button>a.mejs-volume-slider {
  height: 130px;
  width: 36px;
}

.post-audio-wrapper .mejs-container .mejs-controls>.mejs-volume-button>a.mejs-volume-slider .mejs-volume-total {
  background: var(--stylora-color-white);
  top: 15px;
  width: 6px;
}

.post-audio-wrapper .mejs-container .mejs-controls>.mejs-volume-button>a.mejs-volume-slider .mejs-volume-handle {
  display: none;
}

.post-audio-wrapper .mejs-container .mejs-controls>a.mejs-horizontal-volume-slider {
  height: 50px;
  margin-right: 20px;
  width: 100px;
}

.post-audio-wrapper .mejs-container .mejs-controls>a.mejs-horizontal-volume-slider .mejs-horizontal-volume-total,
.post-audio-wrapper .mejs-container .mejs-controls>a.mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
  height: 6px;
}

.post-audio-wrapper .mejs-container .mejs-controls>a.mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
  background: var(--stylora-color-white);
  top: 20px;
  width: 100px;
}

.post-audio-wrapper .mejs-container .mejs-controls>a.mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
  background-color: var(--stylora-color-accent);
}

.post-audio-wrapper .mejs-container .mejs-controls>.mejs-time {
  color: var(--stylora-color-white);
  font-family: inherit;
  font-size: 16px;
  height: 100%;
  line-height: 48px;
  padding: 0 20px;
  width: 50px;
}

.post-audio-wrapper .mejs-container .mejs-controls>.mejs-time>* {
  font-family: inherit;
}

.post-audio-wrapper .mejs-container .mejs-controls>.mejs-time-rail {
  font-family: inherit;
  height: 6px;
  margin: 0;
  padding: 0;
  top: 21px;
}

.post-audio-wrapper .mejs-container .mejs-controls>.mejs-time-rail .mejs-broadcast {
  display: none;
}

.post-audio-wrapper .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total {
  display: block !important;
  background: var(--stylora-color-white);
  height: 6px;
  margin: 0;
}

.post-audio-wrapper .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total span {
  height: 6px;
}

.post-audio-wrapper .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-buffering,
.post-audio-wrapper .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-hovered,
.post-audio-wrapper .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-marker {
  background: transparent;
}

.post-audio-wrapper .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-loaded {
  background: var(--stylora-color-white);
}

.post-audio-wrapper .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-current {
  background: var(--stylora-color-accent);
}

.post-audio-wrapper .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-hovered {
  background: var(--stylora-color-accent);
}

.post-audio-wrapper .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-float,
.post-audio-wrapper .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-float-corner,
.post-audio-wrapper .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-float-current {
  background: none;
  border: 0;
  color: var(--stylora-color-white);
  top: -20px;
}

.post-audio-wrapper .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-handle,
.post-audio-wrapper .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-handle-content {
  border: none;
  height: 6px;
  left: 0;
  top: 0;
  width: 6px;
}

.post-audio-wrapper .mejs-container .mejs-controls>.mejs-fullscreen-button button:before {
  content: "\30";
}

.post-audio-wrapper .mejs-container .mejs-controls>.mejs-fullscreen-button.mejs-unfullscreen button:before {
  content: "\2f";
}

/*Post Quote*/
.dplf-blog-wrapper article .entry-post-quote {
  position: relative;
  width: 100%;
  padding: 0;
  background-color: var(--stylora-color-light);
}

.dplf-blog-wrapper article .entry-post-quote .post-quote-inner {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 100%;
  padding: 60px;
  text-align: center;
}

@media (max-width: 768px) {
  .dplf-blog-wrapper article .entry-post-quote .post-quote-inner {
    padding: 30px;
  }
}

.dplf-blog-wrapper article .entry-post-quote .post-quote-mark {
  position: relative;
  padding-bottom: 20px;
  color: var(--stylora-color-headings);
}

.dplf-blog-wrapper article .entry-post-quote .post-quote-mark svg {
  width: 45px;
}

.dplf-blog-wrapper article .entry-post-quote .quote-post-author {
  margin: 15px 0 0 0;
  font-size: 20px;
}

.dplf-blog-wrapper article .entry-post-quote .post-quote-inner .quote-post-title {
  margin: 0;
}

.dplf-blog-wrapper article .entry-post-quote .post-quote-inner .quote-post-title a {
  font-size: 28px;
  line-height: normal;
  margin-bottom: 25px;
  line-height: 36px;
}

/*Post Link*/
.dplf-blog-wrapper article .entry-post-link {
  position: relative;
  width: 100%;
  padding: 0;
  background-color: var(--stylora-color-light);
}

.dplf-blog-wrapper article .entry-post-link .post-link-inner {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 100%;
  padding: 60px;
  text-align: center;
}

@media (max-width: 768px) {
  .dplf-blog-wrapper article .entry-post-link .post-link-inner {
    padding: 30px;
  }
}

.dplf-blog-wrapper article .entry-post-link .post-link-mark {
  position: relative;
  padding-bottom: 20px;
  color: var(--stylora-color-headings);
}

.dplf-blog-wrapper article .entry-post-link .post-link-mark svg {
  width: 50px;
  height: 50px;
}

.dplf-blog-wrapper article .entry-post-link .post-link-inner .link-post-title a {
  font-size: 26px;
  line-height: normal;
  margin: 0;
  line-height: 36px;
}

/*Post Title*/
.dplf-blog-wrapper article .entry-post-title,
.dplf-blog-wrapper article .entry-post-title a {
  margin: 0;
}

/*Post Meta*/
.dplf-blog-wrapper article .entry-post-meta.before-title {
  margin: 0 0 10px;
}

.dplf-blog-wrapper article .entry-post-meta.after-title {
  margin: 5px 0 0;
}

.dplf-blog-wrapper article .entry-post-meta span {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 0.8;
  font-size: 17px;
}

.dplf-blog-wrapper article .entry-post-meta span+span:before {
  margin: 0 3px;
  vertical-align: middle;
  text-align: center;
}

.dplf-blog-wrapper article .entry-post-meta span a {
  color: inherit;
}

.dplf-blog-wrapper article .post-content {
  margin: 15px 0 0;
}

.dplf-blog-wrapper article .post-read-more {
  display: block;
  margin-top: 25px;
}

/* ================================================== */
/*  00. Blog Centered 
/* ================================================== */
.dplf-blog-wrapper.dplf-blog-posts-wrapper.dplf-blog--centered article {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.dplf-blog-wrapper.dplf-blog-posts-wrapper.dplf-blog--centered article .post-content {
  margin-right: 15%;
  margin-left: 15%;
}

@media (max-width: 768px) {
  .dplf-blog-wrapper.dplf-blog-posts-wrapper.dplf-blog--centered article .post-content {
    margin-right: 1%;
    margin-left: 1%;
  }
}

/* ================================================== */
/*  00. Blog List 
/* ================================================== */
@media (min-width: 768px) {
  .dplf-blog-wrapper.dplf-blog-posts-wrapper.dplf-blog--list article .entry-post-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .dplf-blog-wrapper.dplf-blog-posts-wrapper.dplf-blog--list article .entry-post-wrapper .entry-post-media {
    margin: 0;
    padding-right: 50px;
  }
}

/* ================================================== */
/*  00. Blog Single 
/* ================================================== */
.dplf-blog-post-single-wrapper article {
  position: relative;
  overflow: hidden;
}

.dplf-blog-post-single-wrapper article .entry-post-wrapper .entry-post-quote,
.dplf-blog-post-single-wrapper article .entry-post-wrapper .entry-post-link {
  margin-bottom: 30px;
}

.dplf-blog-post-single-wrapper.hide-featured-content article .entry-post-media,
.dplf-blog-post-single-wrapper.hide-featured-content article .entry-post-quote,
.dplf-blog-post-single-wrapper.hide-featured-content article .entry-post-link,
.dplf-blog-post-single-wrapper.hide-post-title article .entry-post-title,
.dplf-blog-post-single-wrapper.hide-post-meta article .entry-post-meta {
  display: none;
}

.dplf-blog-post-tags-social {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media only screen and (max-width: 768px) {
  .dplf-blog-post-tags-social {
    margin-top: 50px;
  }
}

.dplf-blog-post-tags-social .dplf-blog-post-tags {
  position: relative;
  vertical-align: middle;
  margin-top: 60px;
}

.dplf-blog-post-tags-social .dplf-blog-post-tags a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-size: inherit;
  color: inherit;
  transition: all 0.2s;
}

.dplf-blog-post-tags-social .dplf-blog-post-tags span.dplf-blog-post-tags-seperator {
  padding-right: 6px;
}

@media (max-width: 768px) {
  .dplf-blog-post-tags-social .dplf-blog-post-tags {
    display: block;
    float: none;
    width: 100%;
    text-align: left;
    margin-top: 10px;
  }
}

/*Post Share*/
.dplf-blog-post-social {
  position: relative;
  margin-top: 60px;
}

@media only screen and (max-width: 768px) {
  .dplf-blog-post-social {
    margin-top: 30px;
  }
}

.dplf-social-share-icons {
  position: relative;
  display: inline-block;
  vertical-align: top;
}

.dplf-social-share-icons ul {
  position: relative;
  display: inline-block;
  vertical-align: top;
  list-style: none;
  padding: 0;
  margin: 0;
}

.dplf-social-share-icons li {
  position: relative;
  display: inline-block;
  vertical-align: top;
}

.dplf-social-share-icons li a {
  display: block;
  display: inline-block;
  margin: 0 6px;
  font-size: 19px;
  line-height: 1;
  text-align: center;
  color: var(--stylora-color-headings);
  -webkit-transition: color .2s ease-in-out, border-color .2s ease-in-out;
  -o-transition: color .2s ease-in-out, border-color .2s ease-in-out;
  transition: color .2s ease-in-out, border-color .2s ease-in-out;
}

.dplf-social-share-icons li.dplf-social-share-title {
  padding: 0 10px 0 0;
  font-size: inherit;
}

@media (max-width: 768px) {
  .dplf-blog-post-single-wrapper .dplf-social-share-icons {
    display: block;
    float: none;
    width: 100%;
    text-align: left;
    margin-top: 20px;
  }
}

/*Blog Single Author*/
.dplf-blog-post-author {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 30px;
  background-color: var(--stylora-color-light);
  margin-top: 80px;
}

@media (max-width: 768px) {
  .dplf-blog-post-author {
    flex-direction: column;
  }
}

.dplf-blog-post-author .dplf-blog-post-author-image {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 130px;
  margin: 0 30px 0 0;
}

.dplf-blog-post-author .dplf-blog-post-author-image img {
  display: block;
  max-width: 100%;
}

.dplf-blog-post-author .dplf-blog-post-author-content {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
}

@media (max-width: 768px) {
  .dplf-blog-post-author .dplf-blog-post-author-content {
    margin-top: 30px;
  }
}

.dplf-blog-post-author .dplf-blog-post-author-name{
  margin: 0;
  text-transform: uppercase;
}

.dplf-blog-post-author .dplf-blog-post-author-desc {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  margin: 5px 0 0;
}

/*Related Posts*/
.dplf-blog-post-related-posts {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin-top: 80px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media only screen and (max-width: 768px) {
  .dplf-blog-post-related-posts .dplf-related-post-wrapper {
    margin: 0 0 40px 0;
  }
}

.dplf-blog-post-related-posts .dplf-related-pnosts-title {
  margin: 0 0 35px 0;
}

.dplf-blog-post-related-posts .dplf-related-post-wrapper .entry-post-meta {
  position: relative;
}

.dplf-blog-post-related-posts .dplf-related-post-wrapper .entry-post-meta span.post-meta-comment,
.dplf-blog-post-related-posts .dplf-related-post-wrapper .entry-post-meta span.post-meta-category {
  display: none;
}

.dplf-blog-post-related-posts .dplf-related-post-wrapper .entry-post-meta span+span:before {
  margin: 0 5px;
  vertical-align: middle;
  text-align: center;
}

.dplf-blog-post-related-posts .dplf-related-post-wrapper .entry-post-meta span {
  font-size: 17px;
}

.dplf-blog-post-related-posts .dplf-related-post-wrapper .entry-post-meta span a {
  color: inherit;
  vertical-align: middle;
}

.dplf-blog-post-related-posts .dplf-related-post-wrapper .dplf-related-post-title {
  margin: 5px 0 0 0;
}

/* ================================================== */
/*  00. Comments 
/* ================================================== */
#dplf-site-comment {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#dplf-site-comment .dplf-site-comment-inner {
  position: relative;
  margin-top: 80px;
}

#dplf-site-comment .dplf-site-comments-title {
  margin: 0 0 35px 0;
}

#dplf-site-comment .dplf-site-comment-list {
  position: relative;
  padding: 0;
  margin: 0;
  list-style: none;
  z-index: 150;
}

#dplf-site-comment .dplf-site-comment-list li.comment {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 80px 0 0;
  padding: 1px 0 0;
}

#dplf-site-comment .dplf-site-comment-list>li.comment:first-child {
  margin: 0;
  padding: 0;
  border: 0;
}

#dplf-site-comment .dplf-site-comment-list .pingback {
  margin-left: 45px;
}

#dplf-site-comment .dplf-site-comment-list .children {
  padding: 0 0 0 80px;
  margin: 0;
}

#dplf-site-comment .dplf-site-comment-list .commentmetadata {
  position: relative;
  margin: 3px 0 3px 100px;
}

#dplf-site-comment .dplf-site-comment-list .commentmetadata a {
  color: inherit;
}

#dplf-site-comment .dplf-site-comment-list .commentmetadata a.comment-edit-link {
  color: var(--stylora-color-headings);
}

#dplf-site-comment .dplf-site-comment-list .comment-body p {
  position: relative;
  color: inherit;
  margin: 0 0 0 100px;
}

#dplf-site-comment .dplf-site-comment-list .reply {
  position: absolute;
  top: 30px;
  right: 40px;
}

#dplf-site-comment .dplf-site-comment-list .reply a {
  color: var(--stylora-color-headings);
}

#dplf-site-comment .dplf-site-comment-list a#cancel-comment-reply-link {
  font-size: 16px;
  margin-left: 20px;
  color: var(--stylora-color-headings);
  font-size: 100%;
}

#dplf-site-comment .comment-awaiting-moderation {
  color: var(--stylora-color-headings);
}

#dplf-site-comment .dplf-site-comment-list img {
  position: relative;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  display: block;
  float: left;
  margin-right: 20px;
  border-radius: 0;
}

#dplf-site-comment .dplf-site-comment-list li cite a {
  font-size: 20px;
  position: relative;
  color: var(--stylora-color-headings);
  font-family: inherit;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
}

#dplf-site-comment .dplf-site-comment-list li span {
  display: none;
}

#dplf-site-comment .dplf-site-comment-list .comment-respond {
  margin: 25px 0 20px;
}

#dplf-site-comment .dplf-site-comment-list .comment-respond .dplf-comment-reply-title {
  margin: 0 0 15px;
  font-size: 16px;
}

#dplf-site-comment .dplf-site-comment-list .comment-respond .dplf-comment-reply-title small {
  font-size: 100%;
}

#dplf-site-comment .dplf-site-comment-list .comment-respond .logged-in-as {
  margin: 0 0 8px;
}

@media (max-width: 768px) {
  #dplf-site-comment .dplf-site-comment-list .children {
    padding: 0 0 0 40px;
  }
}

@media (max-width: 680px) {
  #dplf-site-comment .dplf-site-comment-list .children {
    padding: 0;
  }

  #dplf-site-comment .dplf-site-comment-list img {
    display: none;
  }

  #dplf-site-comment .dplf-site-comment-list .comment-body p {
    margin-left: 0
  }

  #dplf-site-comment .dplf-site-comment-list .commentmetadata {
    margin-left: 0
  }
}

/*Comment Form*/
#dplf-site-comment-form {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 70px 0 0 0;
  clear: both;
}

#dplf-site-comment-form .dplf-comment-reply-title {
  margin: 0 0 25px 0;
}

#dplf-site-comment-form .logged-in-as {
  margin: 0 0 10px;
}

#dplf-site-comment-form .logged-in-as a {
  color: inherit;
}

#dplf-site-comment-form .comments-nav {
  margin-bottom: 20px;
  display: block;
  overflow: hidden;
}

#dplf-site-comment-form .user-email {
  padding: 0;
}

@media (max-width: 992px) {
  #dplf-site-comment-form .user-email {
    padding-left: 15px;
    padding-right: 15px;
  }
}

#respond textarea,
.wpcf7-form textarea {
  display: block;
}

.dplf-site-comment-form-cookies-consent {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  margin: 10px 0 15px;
}

.dplf-site-comment-form-cookies-consent #wp-comment-cookies-consent {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  float: left;
  top: 3px;
  margin: 0 5px 0 0;
}

.dplf-site-comment-form-cookies-consent label {
  margin-left: 25px;
  vertical-align: middle;
  line-height: 1;
}

#dplf-site-comment-form p.form-submit {
  position: relative;
  display: inline-block;
  text-align: left;
  width: 100%;
  margin: 0;
}

/* =========================================================== */
/* 00. Pagination 
/* =========================================================== */
.dplf-site-pagination {
  position: relative;
  display: inline-block;
  text-align: center;
  margin-top: 50px;
  clear: both;
  width: 100%;
}

.dplf-site-pagination ul {
  margin: 0;
  padding: 0;
  display: inline-flex;
  list-style: none;
}

.dplf-site-pagination ul li {
  margin: 0 5px;
}

.dplf-site-pagination ul li a,
.dplf-site-pagination ul li span {
  font-family: var(--stylora-font-family-body);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
}

/* Default style */
.dplf-site-pagination--default ul li a,
.dplf-site-pagination--default ul li span {
  font-size: 20px;
  width: 40px;
  height: 40px;
}

.dplf-site-pagination--default ul li.dplf-pagination-item--active span {
  background-color: var(--stylora-color-accent);
  color: var(--stylora-color-white);
  width: 40px;
  height: 40px;
}

.dplf-site-pagination--default ul li.dplf-pagination-item--previous a,
.dplf-site-pagination--default ul li.dplf-pagination-item--next a,
.dplf-site-pagination--default ul li.dplf-pagination-item--previous span,
.dplf-site-pagination--default ul li.dplf-pagination-item--next span {
  font-size: 24px;
}

/* Minimal style */
.dplf-site-pagination--minimal ul {
  background-color: var(--stylora-color-light);
  border-radius: 25px;
  padding: 5px;
}

.dplf-site-pagination--minimal ul li a,
.dplf-site-pagination--minimal ul li span {
  font-size: 16px;
  width: 30px;
  height: 30px;
  color: var(--stylora-color-headings);
}

.dplf-site-pagination--minimal ul li.dplf-pagination-item--active span {
  background-color: var(--stylora-color-accent);
  color: var(--stylora-color-white);
  border-radius: 50%;
}

/* Boxed style */
.dplf-site-pagination--boxed ul li a,
.dplf-site-pagination--boxed ul li span {
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 0;
  background-color: var(--stylora-color-light);
  color: var(--stylora-color-headings);
}

.dplf-site-pagination--boxed ul li.dplf-pagination-item--active span {
  background-color: var(--stylora-color-accent);
  color: var(--stylora-color-white);
}

/* Round style */
.dplf-site-pagination--round ul li a,
.dplf-site-pagination--round ul li span {
  font-size: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--stylora-color-light);
  color: var(--stylora-color-headings);
}

.dplf-site-pagination--round ul li.dplf-pagination-item--active span {
  background-color: var(--stylora-color-accent);
  color: var(--stylora-color-white);
}

.dplf-site-pagination--round ul li a:hover,
.dplf-site-pagination--round ul li a:focus {
  background-color: var(--stylora-color-light);
}

/*Outline Boxed Style*/
.dplf-site-pagination--outline-boxed ul li a,
.dplf-site-pagination--outline-boxed ul li span {
  font-size: 18px;
  width: 40px;
  height: 40px;
  background-color: var(--stylora-color-accent);
  border: 1px solid var(--stylora-color-accent);
  border-radius: 5px;
}

.dplf-site-pagination--outline-boxed ul li.dplf-pagination-item--active span {
  background-color: var(--stylora-color-accent);
  color: var(--stylora-color-white);
  border-color: var(--stylora-color-accent);
}

/* Outline Round style */
.dplf-site-pagination--outline-round ul li a,
.dplf-site-pagination--outline-round ul li span {
  font-size: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--stylora-color-accent);
  color: var(--stylora-color-accent);
  border-radius: 50%;
}
.dplf-site-pagination--outline-round ul li.dplf-pagination-item--active span {
  background-color: var(--stylora-color-accent);
  color: var(--stylora-color-white);
}

.dplf-site-pagination--outline-round ul li a:hover,
.dplf-site-pagination--outline-round ul li a:focus {
  background-color: var(--stylora-color-light);
}

.dplf-site-pagination--outline-round ul li.dplf-pagination-item--previous a,
.dplf-site-pagination--outline-round ul li.dplf-pagination-item--next a,
.dplf-site-pagination--outline-round ul li.dplf-pagination-item--previous span,
.dplf-site-pagination--outline-round ul li.dplf-pagination-item--next span {
  width: auto;
  padding: 0 15px;
  border-radius: 20px;
}

/* Adjustments for arrow icons */
.dplf-site-pagination ul li.dplf-pagination-item--previous a,
.dplf-site-pagination ul li.dplf-pagination-item--next a,
.dplf-site-pagination ul li.dplf-pagination-item--previous span,
.dplf-site-pagination ul li.dplf-pagination-item--next span {
  line-height: 1;
}

/* =========================================================== */
/* 00. Page 404
/* =========================================================== */
.error404 #dplf-main-content.dplf-page-error {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 93vh;
  padding: 0
}

#dplf-main-content.dplf-page-error .dplf-main-content-inner {
  text-align: center;
}

#dplf-main-content.dplf-page-error h1 {
  font-size: 12vw;
  margin: 0;
}

#dplf-main-content.dplf-page-error h2 {
  margin: 0 0 15px 0;
}

#dplf-main-content.dplf-page-error .dplf-404-home-button {
  margin-top: 30px;
}

@media (max-width: 768px) {
  #dplf-main-content.dplf-page-error h1 {
    margin-bottom: 10px;
    font-size: 24vw;
  }

  #dplf-main-content.dplf-page-error h2 {
    font-size: 18px;
  }
}

/* =========================================================== */
/* 00. Page Search
/* =========================================================== */
#dplf-main-content.dplf-page-search {
  min-height: 100vh;
}

#dplf-main-content.dplf-page-search .dplf-page-search-header {
  margin-bottom: 60px;
}

#dplf-main-content.dplf-page-search .dplf-page-search-header p {
  margin: 0;
}

#dplf-main-content.dplf-page-search .dplf-page-search-content article {
  border-bottom: 1px solid var(--stylora-color-light-border);
}

#dplf-main-content.dplf-page-search .dplf-page-search-content article .dplf-search-page-post-wrapper {
  margin: 50px 0;
}

#dplf-main-content.dplf-page-search article .dplf-search-page-post-wrapper .dplf-search-page-post-media {
  display: block;
  width: 150px;
  padding: 0;
}

@media (max-width: 768px) {
  #dplf-main-content.dplf-page-search article .dplf-search-page-post-wrapper .dplf-search-page-post-media {
    display: none;
  }
}

#dplf-main-content.dplf-page-search article .dplf-search-page-post-wrapper .dplf-search-page-post-media .dplf-post-thumbnail {
  padding-right: 10px;
}

#dplf-main-content.dplf-page-search article .dplf-search-page-post-wrapper .dplf-search-page-post-content {
  position: relative;
  overflow: hidden;
}

#dplf-main-content.dplf-page-search article .dplf-search-page-post-wrapper .dplf-search-page-post-content h3 {
  margin: 0;
}

#dplf-main-content.dplf-page-search article .dplf-search-page-post-wrapper .dplf-search-page-post-content .dplf-search-page-post-excerpt p {
  margin-top: 12px;
}

/* ================================================== */
/*  00. Page Blank
/* ================================================== */
body #dplf-page-blank-wrapper {
  position: relative;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  min-height: 100vh;
}

body #dplf-page-blank-wrapper .dplf-page-blank-wrapper-inner {
  width: 100%;
  overflow: hidden;
}

/* ================================================== */
/*  00. Slick Slider
/* ================================================== */
.slick-initialized {
  visibility: visible !important;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.dplf-blog-wrapper article .entry-post-media .post-slider {
  position: relative;
  visibility: hidden;
  width: 100%;
  margin: 0;
  z-index: 1;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  line-height: 60px;
  padding: 0;
  text-align: center;
  font-size: 50px;
  cursor: pointer;
  border: none;
  outline: none;
  border-radius: 0;
  color: var(--stylora-color-white);
  background-color: transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}

.slick-arrow:hover {
  color: var(--stylora-color-white);
  opacity: 1;
  cursor: pointer;
}

.slick-arrow.ri-arrow-left-wide-line {
  left: 20px;
}

.slick-arrow.ri-arrow-right-wide-line {
  right: 20px;
}

@media only screen and (max-width:1024px) {
  .slick-arrow {
    font-size: 40px;
  }

  .slick-arrow.ri-arrow-left-wide-line {
    left: 12px;
  }

  .slick-arrow.ri-arrow-right-wide-line {
    right: 12px;
  }
}

.slick-prev,
.slick-dplf-pagination-item--next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-dplf-pagination-item--next:hover,
.slick-dplf-pagination-item--next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-dplf-pagination-item--next:hover:before,
.slick-dplf-pagination-item--next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-dplf-pagination-item--next.slick-disabled:before {
  opacity: .25;
}

.slick-prev:before,
.slick-dplf-pagination-item--next:before {
  font-family: "remixicon";
  font-size: 20px;
  line-height: 1;
  opacity: .75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir='rtl'] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: "\ea64";
}

[dir='rtl'] .slick-prev:before {
  content: "\ea64";
}

.slick-dplf-pagination-item--next {
  right: -25px;
}

[dir='rtl'] .slick-dplf-pagination-item--next {
  right: auto;
  left: -25px;
}

.slick-dplf-pagination-item--next:before {
  content: "\ea6e";
}

[dir='rtl'] .slick-dplf-pagination-item--next:before {
  content: "\ea6e";
}

.slick-dotted.slick-slider {
  margin-bottom: 20px;
}

.slick-dots {
  position: absolute;
  bottom: -45px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  padding-top: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 11px;
  height: 11px;
  padding: 2px;
  border-radius: 24px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background-color: var(--stylora-color-headings);
  box-shadow: none;
}

.slick-dots li.slick-active button {
  background-color: var(--stylora-color-accent);
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
