/*
||===================================================||
||                                                   ||
||          Table of Contents                        ||
||                                                   ||
||          1. 	Reset Styles                         ||
||          2. 	Navigation                           ||
||          3. 	Heading                              ||
||          4. 	Blog Archive                         ||
||          5. 	Blog Single                          ||
||          6. 	Portfolio                            ||
||          7. 	Comments                             ||
||          8. 	Widget                               ||
||          9. 	Button Style                         ||
||          10. Video Button                         ||
||          11. Pagination                           ||
||          12. Footer                               ||
||          13. Header Search Form                   ||
||          14. Mobile Menu                          ||
||          15. 404                                  ||
||          16. Search Page                          ||
||          17. Appointment Page                     ||
||                                                   ||
==================================================== ||
*/
.art-form-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .art-form-line div {
    margin-left: 20px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    min-width: 126px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .art-form-line div button {
      white-space: nowrap;
      width: auto; }

button.btnSubmit {
  height: 56px;
  width: 100%;
  min-width: 102px;
  border-radius: 35px;
  -webkit-transition: -webkit-box-shadow 300ms ease;
  transition: -webkit-box-shadow 300ms ease;
  transition: box-shadow 300ms ease;
  transition: box-shadow 300ms ease, -webkit-box-shadow 300ms ease;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out; }

button.btnSubmit.clicked {
  pointer-events: none;
  -webkit-animation: anim2 300ms cubic-bezier(0.6, 0, 0.7, 1) 300ms 1 forwards;
          animation: anim2 300ms cubic-bezier(0.6, 0, 0.7, 1) 300ms 1 forwards; }

button.btnSubmit.clicked.done {
  -webkit-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-animation: anim4 300ms cubic-bezier(0.2, 0, 0.4, 1) forwards;
          animation: anim4 300ms cubic-bezier(0.2, 0, 0.4, 1) forwards; }

svg.svg--template {
  display: none; }

svg.art-round-loader {
  position: absolute;
  width: 56px;
  height: 56px;
  overflow: visible; }

svg.art-round-loader {
  position: absolute;
  left: -2px;
  top: -2px;
  /*width: 50px;
  height: 50px;*/
  width: 56px;
  height: 56px; }

svg.checkmark {
  height: 1.2em;
  width: 100%; }

svg .circle1 {
  stroke: var(--art-colors-bg);
  stroke-width: 3px;
  r: 26.5px;
  cx: 28px;
  cy: 28px;
  width: 100%;
  height: 100%;
  stroke-dasharray: 175.84px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-animation: animLoading 2500ms cubic-bezier(0.6, 0, 0, 1);
          animation: animLoading 2500ms cubic-bezier(0.6, 0, 0, 1); }

svg .checkmark1 {
  fill: #fafafa; }

svg .checkmark1 .line1 {
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%; }

svg .checkmark1 .line2 {
  -webkit-transform-origin: 0% 100%;
          transform-origin: 0% 100%; }

svg .checkmark1 .line1, svg .checkmark1 .line2 {
  -webkit-animation: growAndRotate 500ms cubic-bezier(0.4, 0, 0, 1);
          animation: growAndRotate 500ms cubic-bezier(0.4, 0, 0, 1); }

@-webkit-keyframes anim2 {
  40% {
    border-radius: 35px; }
  20%, 100% {
    color: rgba(30, 205, 151, 0); }
  100% {
    background: none;
    border-width: 2px;
    border-color: #C5C5C5;
    border-radius: 50%;
    padding: 0;
    width: 56px;
    min-width: 56px; } }

@keyframes anim2 {
  40% {
    border-radius: 35px; }
  20%, 100% {
    color: rgba(30, 205, 151, 0); }
  100% {
    background: none;
    border-width: 2px;
    border-color: #C5C5C5;
    border-radius: 50%;
    padding: 0;
    width: 56px;
    min-width: 56px; } }

@-webkit-keyframes animLoading {
  0% {
    stroke-dashoffset: 175.84px; }
  100% {
    stroke-dashoffset: 0; } }

@keyframes animLoading {
  0% {
    stroke-dashoffset: 175.84px; }
  100% {
    stroke-dashoffset: 0; } }

@-webkit-keyframes anim4 {
  0% {
    border-radius: 50%;
    width: 56px; }
  40% {
    border-radius: 35px; }
  100% { } }

@keyframes anim4 {
  0% {
    border-radius: 50%;
    width: 56px; }
  40% {
    border-radius: 35px; }
  100% { } }

@-webkit-keyframes growAndRotate {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.4) rotate(-5deg);
            transform: scale(0.4) rotate(-5deg); }
  30%, 100% {
    opacity: 1; }
  100% {
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0); } }

@keyframes growAndRotate {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.4) rotate(-5deg);
            transform: scale(0.4) rotate(-5deg); }
  30%, 100% {
    opacity: 1; }
  100% {
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0); } }

/* Reset Styles */
/*!
 * Based on Normalize.css v8.0.0, HTML5 Boilerplate v6.1.0, & Bootstrap Reboot v4.1.0 | Under MIT License
*/
/* Sections
   ========================================================================== */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 3 */ }

html {
  overflow-wrap: break-word;
  word-break: break-word;
  overflow-x: hidden;
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  font-size: var(--art-body-font-size); }

body {
  color: var(--art-colors-text);
  background-color: var(--art-colors-bg);
  font-family: var(--art-body-font-family);
  font-weight: var(--art-body-font-weight);
  font-style: var(--art-body-font-style);
  text-transform: var(--art-body-text-transform);
  -webkit-text-decoration: var(--art-body-text-decoration);
          text-decoration: var(--art-body-text-decoration);
  font-size: var(--art-body-font-size);
  line-height: var(--art-body-line-height);
  letter-spacing: var(--art-body-letter-spacing);
  text-align: left;
  margin: 0; }
  @media only screen and (max-width: 767px) {
    body {
      font-family: var(--art-body-mobile-font-family);
      font-weight: var(--art-body-mobile-font-weight);
      font-style: var(--art-body-mobile-font-style);
      text-transform: var(--art-body-mobile-text-transform);
      -webkit-text-decoration: var(--art-body-mobile-text-decoration);
              text-decoration: var(--art-body-mobile-text-decoration);
      font-size: var(--art-body-mobile-font-size);
      line-height: var(--art-body-mobile-line-height);
      letter-spacing: var(--art-body-mobile-letter-spacing); } }
  body.elementor-template-canvas > .elementor {
    background-color: #fff; }

/* make sure to set some focus styles for accessibility */
:focus {
  outline: 0; }

h1, h2, h3, h4, h5, h6 {
  color: var(--art-colors-heading);
  margin: 0 0 1.111rem;
  padding: 0; }
  .art-second-color-scheme h1, .art-second-color-scheme h2, .art-second-color-scheme h3, .art-second-color-scheme h4, .art-second-color-scheme h5, .art-second-color-scheme h6 {
    color: var(--art-bg-heading); }
  h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    color: inherit; }
    .art-second-color-scheme h1 a, .art-second-color-scheme h2 a, .art-second-color-scheme h3 a, .art-second-color-scheme h4 a, .art-second-color-scheme h5 a, .art-second-color-scheme h6 a {
      color: inherit; }

h1, h2, h3 {
  margin-top: 3rem; }
  h1:first-child, h2:first-child, h3:first-child {
    margin-top: 0; }

h4, h5, h6 {
  margin-top: 2rem; }
  h4:first-child, h5:first-child, h6:first-child {
    margin-top: 0; }

h1,
.h1,
.art-h1,
h1.elementor-heading-title {
  font-family: var(--art-h1-font-family);
  font-weight: var(--art-h1-font-weight);
  font-style: var(--art-h1-font-style);
  text-transform: var(--art-h1-text-transform);
  -webkit-text-decoration: var(--art-h1-text-decoration);
          text-decoration: var(--art-h1-text-decoration);
  font-size: var(--art-h1-font-size);
  line-height: var(--art-h1-line-height);
  letter-spacing: var(--art-h1-letter-spacing); }
  @media only screen and (max-width: 767px) {
    h1,
    .h1,
    .art-h1,
    h1.elementor-heading-title {
      font-family: var(--art-h1-mobile-font-family);
      font-weight: var(--art-h1-mobile-font-weight);
      font-style: var(--art-h1-mobile-font-style);
      text-transform: var(--art-h1-mobile-text-transform);
      -webkit-text-decoration: var(--art-h1-mobile-text-decoration);
              text-decoration: var(--art-h1-mobile-text-decoration);
      font-size: var(--art-h1-mobile-font-size);
      line-height: var(--art-h1-mobile-line-height);
      letter-spacing: var(--art-h1-mobile-letter-spacing); } }

h2,
.h2,
.art-h2,
h2.elementor-heading-title {
  font-family: var(--art-h2-font-family);
  font-weight: var(--art-h2-font-weight);
  font-style: var(--art-h2-font-style);
  text-transform: var(--art-h2-text-transform);
  -webkit-text-decoration: var(--art-h2-text-decoration);
          text-decoration: var(--art-h2-text-decoration);
  font-size: var(--art-h2-font-size);
  line-height: var(--art-h2-line-height);
  letter-spacing: var(--art-h2-letter-spacing); }
  @media only screen and (max-width: 767px) {
    h2,
    .h2,
    .art-h2,
    h2.elementor-heading-title {
      font-family: var(--art-h2-mobile-font-family);
      font-weight: var(--art-h2-mobile-font-weight);
      font-style: var(--art-h2-mobile-font-style);
      text-transform: var(--art-h2-mobile-text-transform);
      -webkit-text-decoration: var(--art-h2-mobile-text-decoration);
              text-decoration: var(--art-h2-mobile-text-decoration);
      font-size: var(--art-h2-mobile-font-size);
      line-height: var(--art-h2-mobile-line-height);
      letter-spacing: var(--art-h2-mobile-letter-spacing); } }

h3,
.h3,
.art-h3,
h3.elementor-heading-title {
  font-family: var(--art-h3-font-family);
  font-weight: var(--art-h3-font-weight);
  font-style: var(--art-h3-font-style);
  text-transform: var(--art-h3-text-transform);
  -webkit-text-decoration: var(--art-h3-text-decoration);
          text-decoration: var(--art-h3-text-decoration);
  font-size: var(--art-h3-font-size);
  line-height: var(--art-h3-line-height);
  letter-spacing: var(--art-h3-letter-spacing); }
  @media only screen and (max-width: 767px) {
    h3,
    .h3,
    .art-h3,
    h3.elementor-heading-title {
      font-family: var(--art-h3-mobile-font-family);
      font-weight: var(--art-h3-mobile-font-weight);
      font-style: var(--art-h3-mobile-font-style);
      text-transform: var(--art-h3-mobile-text-transform);
      -webkit-text-decoration: var(--art-h3-mobile-text-decoration);
              text-decoration: var(--art-h3-mobile-text-decoration);
      font-size: var(--art-h3-mobile-font-size);
      line-height: var(--art-h3-mobile-line-height);
      letter-spacing: var(--art-h3-mobile-letter-spacing); } }

h4,
.h4,
.art-h4,
h4.elementor-heading-title {
  font-family: var(--art-h4-font-family);
  font-weight: var(--art-h4-font-weight);
  font-style: var(--art-h4-font-style);
  text-transform: var(--art-h4-text-transform);
  -webkit-text-decoration: var(--art-h4-text-decoration);
          text-decoration: var(--art-h4-text-decoration);
  font-size: var(--art-h4-font-size);
  line-height: var(--art-h4-line-height);
  letter-spacing: var(--art-h4-letter-spacing); }
  @media only screen and (max-width: 767px) {
    h4,
    .h4,
    .art-h4,
    h4.elementor-heading-title {
      font-family: var(--art-h4-mobile-font-family);
      font-weight: var(--art-h4-mobile-font-weight);
      font-style: var(--art-h4-mobile-font-style);
      text-transform: var(--art-h4-mobile-text-transform);
      -webkit-text-decoration: var(--art-h4-mobile-text-decoration);
              text-decoration: var(--art-h4-mobile-text-decoration);
      font-size: var(--art-h4-mobile-font-size);
      line-height: var(--art-h4-mobile-line-height);
      letter-spacing: var(--art-h4-mobile-letter-spacing); } }

h5,
.h5,
.art-h5,
h5.elementor-heading-title {
  font-family: var(--art-h5-font-family);
  font-weight: var(--art-h5-font-weight);
  font-style: var(--art-h5-font-style);
  text-transform: var(--art-h5-text-transform);
  -webkit-text-decoration: var(--art-h5-text-decoration);
          text-decoration: var(--art-h5-text-decoration);
  font-size: var(--art-h5-font-size);
  line-height: var(--art-h5-line-height);
  letter-spacing: var(--art-h5-letter-spacing); }
  @media only screen and (max-width: 767px) {
    h5,
    .h5,
    .art-h5,
    h5.elementor-heading-title {
      font-family: var(--art-h5-mobile-font-family);
      font-weight: var(--art-h5-mobile-font-weight);
      font-style: var(--art-h5-mobile-font-style);
      text-transform: var(--art-h5-mobile-text-transform);
      -webkit-text-decoration: var(--art-h5-mobile-text-decoration);
              text-decoration: var(--art-h5-mobile-text-decoration);
      font-size: var(--art-h5-mobile-font-size);
      line-height: var(--art-h5-mobile-line-height);
      letter-spacing: var(--art-h5-mobile-letter-spacing); } }

h6,
.h6,
.art-h6,
h6.elementor-heading-title {
  font-family: var(--art-h6-font-family);
  font-weight: var(--art-h6-font-weight);
  font-style: var(--art-h6-font-style);
  text-transform: var(--art-h6-text-transform);
  -webkit-text-decoration: var(--art-h6-text-decoration);
          text-decoration: var(--art-h6-text-decoration);
  font-size: var(--art-h6-font-size);
  line-height: var(--art-h6-line-height);
  letter-spacing: var(--art-h6-letter-spacing); }
  @media only screen and (max-width: 767px) {
    h6,
    .h6,
    .art-h6,
    h6.elementor-heading-title {
      font-family: var(--art-h6-mobile-font-family);
      font-weight: var(--art-h6-mobile-font-weight);
      font-style: var(--art-h6-mobile-font-style);
      text-transform: var(--art-h6-mobile-text-transform);
      -webkit-text-decoration: var(--art-h6-mobile-text-decoration);
              text-decoration: var(--art-h6-mobile-text-decoration);
      font-size: var(--art-h6-mobile-font-size);
      line-height: var(--art-h6-mobile-line-height);
      letter-spacing: var(--art-h6-mobile-letter-spacing); } }

p {
  margin: 0 0 1.5rem;
  padding: 0; }
  p:last-child {
    margin-bottom: 0; }
  p.has-background, p.mce-content-body.has-background {
    padding: .95em 1.3em; }
  p.has-drop-cap:not(:focus):first-letter, p.mce-content-body.has-drop-cap:not(:focus):first-letter {
    color: var(--art-colors-heading);
    font-family: var(--art-h1-font-family);
    font-weight: var(--art-h1-font-weight);
    font-size: 4em;
    line-height: .9em;
    text-transform: uppercase;
    font-style: normal;
    float: left;
    margin: 0.32em 0.52em 0.1em 0.52em; }
    .art-second-color-scheme p.has-drop-cap:not(:focus):first-letter, .art-second-color-scheme p.mce-content-body.has-drop-cap:not(:focus):first-letter {
      color: var(--art-bg-heading); }
  p.has-drop-cap:not(:focus).has-text-color:first-letter, p.mce-content-body.has-drop-cap:not(:focus).has-text-color:first-letter {
    color: inherit; }
  p.has-small-font-size, p.has-medium-font-size, p.has-large-font-size, p.has-huge-font-size, p[style^="font-size:"], p[style*="font-size:"], p.mce-content-body.has-small-font-size, p.mce-content-body.has-medium-font-size, p.mce-content-body.has-large-font-size, p.mce-content-body.has-huge-font-size, p.mce-content-body[style^="font-size:"], p.mce-content-body[style*="font-size:"] {
    line-height: 1.5em; }

/* Grouping content
   ========================================================================== */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 1px;
  /* 1 */
  overflow: visible;
  /* 2 */
  border: 0;
  color: var(--art-colors-bd);
  background-color: var(--art-colors-bd);
  margin-top: 3rem;
  margin-bottom: 3rem;
  clear: both; }
  .art-second-color-scheme hr {
    color: var(--art-bg-bd); }
  .art-second-color-scheme hr {
    background-color: var(--art-bg-bd); }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  color: inherit;
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
  white-space: pre-wrap;
  margin: 3rem 0 3rem;
  padding: 0; }

/* Text-level semantics
   ========================================================================== */
a {
  background-color: transparent;
  text-decoration: none;
  color: var(--art-colors-link);
  -webkit-transition: color .2s ease-in-out;
  transition: color .2s ease-in-out; }
  .art-second-color-scheme a {
    color: var(--art-bg-link); }
  a:focus, a:active, a:visited {
    outline: none !important; }
  a:hover, a:active {
    text-decoration: none;
    color: var(--art-colors-bg); }
    .art-second-color-scheme a:hover, .art-second-color-scheme a:active {
      color: var(--art-bg-bg); }
  a:not([href]):not([tabindex]), a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
    cursor: default; }
  a:not([href]):not([tabindex]):focus {
    outline: 0; }

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */ }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  color: var(--art-colors-text);
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
  padding: 0;
  margin: 0;
  background: none; }
  .art-second-color-scheme code, .art-second-color-scheme
  kbd, .art-second-color-scheme
  samp {
    color: var(--art-bg-text); }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
  border: 0;
  /* 1 */
  max-width: 100%;
  height: auto; }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

figure {
  margin: 0; }

figcaption {
  border: 0;
  text-align: center;
  max-width: 100%;
  margin: 10px 0 0;
  padding: 0; }

caption {
  color: var(--art-colors-second-text);
  caption-side: initial;
  text-align: left;
  padding: 0;
  margin: 0; }
  .art-second-color-scheme caption {
    color: var(--art-bg-second-text); }

/* Misc
   ========================================================================== */
table {
  text-align: inherit;
  border-spacing: 0;
  border-collapse: separate;
  border: 0;
  background-color: transparent;
  width: 100%;
  margin-top: 3rem;
  margin-bottom: 3rem;
  /* for gutenberg start */
  /* for gutenberg end */ }
  table th {
    text-align: inherit; }
  table tbody {
    border-width: 0; }
  table th,
  table td {
    padding: 4px 8px; }
  table tbody th,
  table tbody td, table > th,
  table > td {
    border-width: 0;
    /* for gutenberg */
    border-style: solid;
    border-top-width: 1px;
    border-left-width: 1px;
    border-left-style: solid;
    color: var(--art-colors-text);
    border-color: var(--art-colors-bd); }
    .art-second-color-scheme table tbody th, .art-second-color-scheme
    table tbody td, .art-second-color-scheme table > th, .art-second-color-scheme
    table > td {
      color: var(--art-bg-text); }
    .art-second-color-scheme table tbody th, .art-second-color-scheme
    table tbody td, .art-second-color-scheme table > th, .art-second-color-scheme
    table > td {
      border-color: var(--art-bg-bd); }
    table tbody th:last-child,
    table tbody td:last-child, table > th:last-child,
    table > td:last-child {
      border-right-width: 1px;
      border-right-style: solid; }
  table tbody tr:last-child th,
  table tbody tr:last-child td, table > tr:last-child th,
  table > tr:last-child td {
    border-bottom-width: 1px;
    border-bottom-style: solid; }
  table thead {
    border-width: 0; }
    table thead th,
    table thead td {
      border-width: 0;
      /* for gutenberg */
      border-style: solid;
      border-top-width: 1px;
      border-left-width: 1px;
      border-left-style: solid;
      color: var(--art-colors-text);
      border-color: var(--art-colors-bd);
      background-color: var(--art-colors-bg); }
      .art-second-color-scheme table thead th, .art-second-color-scheme
      table thead td {
        color: var(--art-bg-text); }
      .art-second-color-scheme table thead th, .art-second-color-scheme
      table thead td {
        border-color: var(--art-bg-bd); }
      .art-second-color-scheme table thead th, .art-second-color-scheme
      table thead td {
        background-color: var(--art-bg-bg); }
      table thead th:last-child,
      table thead td:last-child {
        border-right-width: 1px;
        border-right-style: solid; }
  table tfoot {
    border-width: 0; }
    table tfoot th,
    table tfoot td {
      border-width: 0;
      /* for gutenberg */
      border-style: solid;
      border-bottom-width: 1px;
      border-left-width: 1px;
      border-left-style: solid;
      color: var(--art-colors-text);
      border-color: var(--art-colors-bd);
      background-color: var(--art-colors-bg); }
      .art-second-color-scheme table tfoot th, .art-second-color-scheme
      table tfoot td {
        color: var(--art-bg-text); }
      .art-second-color-scheme table tfoot th, .art-second-color-scheme
      table tfoot td {
        border-color: var(--art-bg-bd); }
      .art-second-color-scheme table tfoot th, .art-second-color-scheme
      table tfoot td {
        background-color: var(--art-bg-bg); }
      table tfoot th:last-child,
      table tfoot td:last-child {
        border-right-width: 1px;
        border-right-style: solid; }
  table.is-style-stripes {
    border-width: 0; }
    table.is-style-stripes tr:nth-child(odd) {
      background-color: transparent !important; }

blockquote:not([class]) {
  font-family: var(--art-blockquote-font-family);
  font-weight: var(--art-blockquote-font-weight);
  font-style: var(--art-blockquote-font-style);
  text-transform: var(--art-blockquote-text-transform);
  -webkit-text-decoration: var(--art-blockquote-text-decoration);
          text-decoration: var(--art-blockquote-text-decoration);
  font-size: var(--art-blockquote-font-size);
  line-height: var(--art-blockquote-line-height);
  letter-spacing: var(--art-blockquote-letter-spacing);
  colors: var(--art-colors-heading);
  padding: 0 0 0 40px;
  margin: 3rem 0 3rem;
  position: relative;
  quotes: none; }
  .art-second-color-scheme blockquote:not([class]) {
    colors: var(--art-bg-heading); }
  blockquote:not([class]) > * {
    position: relative; }
  blockquote:not([class]):after {
    content: none; }
  blockquote:not([class]):before {
    content: '\201D' !important;
    position: absolute;
    left: 20px;
    top: 0; }
  blockquote:not([class]):not(.has-text-color) {
    color: var(--art-colors-text); }
    .art-second-color-scheme blockquote:not([class]):not(.has-text-color) {
      color: var(--art-bg-text); }
    blockquote:not([class]):not(.has-text-color) a {
      color: var(--art-colors-link); }
      .art-second-color-scheme blockquote:not([class]):not(.has-text-color) a {
        color: var(--art-bg-link); }
      blockquote:not([class]):not(.has-text-color) a:hover {
        color: var(--art-colors-hover); }
        .art-second-color-scheme blockquote:not([class]):not(.has-text-color) a:hover {
          color: var(--art-bg-hover); }
  blockquote:not([class]).has-text-color a {
    color: inherit;
    opacity: .8;
    -webkit-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out; }
    blockquote:not([class]).has-text-color a:hover {
      color: inherit;
      opacity: 1; }
  blockquote:not([class]) p:last-of-type {
    margin: 0;
    padding: 0; }
  blockquote:not([class]) cite {
    font-family: var(--art-accent-font-family);
    font-weight: var(--art-accent-font-weight);
    font-style: var(--art-accent-font-style);
    text-transform: var(--art-accent-text-transform);
    -webkit-text-decoration: var(--art-accent-text-decoration);
            text-decoration: var(--art-accent-text-decoration);
    font-size: var(--art-accent-font-size);
    line-height: var(--art-accent-line-height);
    letter-spacing: var(--art-accent-letter-spacing);
    color: var(--art-colors-color);
    display: block;
    margin-top: 15px; }
    .art-second-color-scheme blockquote:not([class]) cite {
      color: var(--art-bg-color); }
  blockquote:not([class]).has-text-color cite {
    color: inherit; }

iframe {
  max-width: 100%;
  margin: 3rem 0 3rem; }

.chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0; }

address {
  margin: 3rem 0 3rem; }

/**
 * Add the correct display in IE 10+.
 */
template {
  display: none; }

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0; }

/* WordPress
   ========================================================================== */
.alignright {
  text-align: right;
  float: right;
  margin-top: 0;
  margin-bottom: 0.75rem;
  margin-left: 1.5rem;
  margin-right: 0;
  position: relative;
  z-index: 1; }
  img.alignright {
    clear: right; }
  @media only screen and (max-width: 767px) {
    .alignright {
      max-width: 50%; } }

.alignleft {
  text-align: left;
  float: left;
  margin-top: 0;
  margin-bottom: 0.75rem;
  margin-left: 0;
  margin-right: 1.5rem;
  position: relative;
  z-index: 1; }
  img.alignleft {
    clear: left; }
  @media only screen and (max-width: 767px) {
    .alignleft {
      max-width: 50%; } }

.aligncenter {
  text-align: center;
  clear: both;
  display: block;
  margin-top: 3rem;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto; }

.aligncenter,
.alignnone,
.alignfull,
.alignwide {
  clear: both; }

.alignfull {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
  width: 100vw; }

.alignwide {
  margin-left: calc(15% - 15vw);
  margin-right: calc(15% - 15vw);
  max-width: 100vw; }

.full-width {
  min-width: 100%; }

audio.full-width {
  width: 100%; }

.gallery-caption {
  display: block; }

.wp-caption {
  max-width: 100%;
  margin-top: 3rem;
  margin-bottom: 3rem; }
  .wp-caption.aligncenter {
    margin-left: auto;
    margin-right: auto; }
  .wp-caption.alignleft {
    margin: 0 1.5rem 0.75rem 0; }
  .wp-caption.alignright {
    margin: 0 0 0.75rem 1.5rem; }
  .wp-caption img {
    display: block;
    margin-left: auto;
    margin-right: auto; }
  .wp-caption .wp-caption-text,
  .wp-caption .wp-caption-dd {
    border: 0;
    text-align: center;
    max-width: 100%;
    margin: 10px 0 0;
    padding: 0; }

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */ }
  .screen-reader-text:focus {
    background-color: transparent;
    clip: auto !important;
    -webkit-clip-path: none;
            clip-path: none;
    color: var(--art-colors-heading);
    display: block;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 10px 20px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */ }
    .art-second-color-scheme .screen-reader-text:focus {
      color: var(--art-bg-heading); }

/* Lists
   ========================================================================== */
dl,
dt,
dd,
ol,
ul,
li {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

ol,
ul {
  list-style-position: inside;
  margin: 2rem 0 2rem 2rem; }
  ol ol,
  ol ul,
  ul ol,
  ul ul {
    margin: 0 0 0 2rem; }

ol {
  list-style-type: decimal; }

ul {
  list-style-type: disc; }

li {
  margin-top: 6px; }

dl {
  margin-top: 3rem;
  margin-bottom: 3rem; }

dt {
  font-family: var(--art-h5-font-family);
  font-weight: var(--art-h5-font-weight);
  font-style: var(--art-h5-font-style);
  text-transform: var(--art-h5-text-transform);
  -webkit-text-decoration: var(--art-h5-text-decoration);
          text-decoration: var(--art-h5-text-decoration);
  font-size: var(--art-h5-font-size);
  line-height: var(--art-h5-line-height);
  letter-spacing: var(--art-h5-letter-spacing); }
  @media only screen and (max-width: 767px) {
    dt {
      font-family: var(--art-h5-mobile-font-family);
      font-weight: var(--art-h5-mobile-font-weight);
      font-style: var(--art-h5-mobile-font-style);
      text-transform: var(--art-h5-mobile-text-transform);
      -webkit-text-decoration: var(--art-h5-mobile-text-decoration);
              text-decoration: var(--art-h5-mobile-text-decoration);
      font-size: var(--art-h5-mobile-font-size);
      line-height: var(--art-h5-mobile-line-height);
      letter-spacing: var(--art-h5-mobile-letter-spacing); } }

* + dt {
  margin-top: 1.5rem; }

dd {
  margin-left: 2rem; }

/* Forms
   ========================================================================== */
form {
  margin: 0; }

label,
.wpcf7-quiz-label {
  display: block;
  margin-bottom: 0.65em; }
  input[type=radio] + label,
  input[type=checkbox] + label, input[type=radio] +
  .wpcf7-quiz-label,
  input[type=checkbox] +
  .wpcf7-quiz-label {
    display: inline-block;
    margin-left: 10px;
    margin-bottom: 0; }

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 * 3. Improve appearance and consistency in all browsers.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 1rem;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  vertical-align: baseline;
  /* 3 */
  margin: 0;
  /* 2 */ }

button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none; }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
input[type=number],
input[type=search],
textarea {
  outline: none;
  border-width: 2px;
  border-style: solid;
  border-color: var(--art-colors-bd);
  color: var(--art-colors-text);
  background-color: transparent;
  background-image: none;
  font-family: var(--art-body-two-font-family);
  font-weight: var(--art-body-two-font-weight);
  font-style: var(--art-body-two-font-style);
  text-transform: var(--art-body-two-text-transform);
  -webkit-text-decoration: var(--art-body-two-text-decoration);
          text-decoration: var(--art-body-two-text-decoration);
  font-size: var(--art-body-two-font-size);
  line-height: var(--art-body-two-line-height);
  letter-spacing: var(--art-body-two-letter-spacing);
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  text-shadow: none;
  padding: 12px 15px;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: color .2s ease-in-out, border-color .2s ease-in-out, background-color .2s ease-in-out;
  transition: color .2s ease-in-out, border-color .2s ease-in-out, background-color .2s ease-in-out; }
  .art-second-color-scheme input[type=text], .art-second-color-scheme
  input[type=email], .art-second-color-scheme
  input[type=url], .art-second-color-scheme
  input[type=password], .art-second-color-scheme
  input[type=tel], .art-second-color-scheme
  input[type=range], .art-second-color-scheme
  input[type=date], .art-second-color-scheme
  input[type=month], .art-second-color-scheme
  input[type=week], .art-second-color-scheme
  input[type=time], .art-second-color-scheme
  input[type=datetime], .art-second-color-scheme
  input[type=datetime-local], .art-second-color-scheme
  input[type=color], .art-second-color-scheme
  input[type=number], .art-second-color-scheme
  input[type=search], .art-second-color-scheme
  textarea {
    border-color: var(--art-bg-bd); }
  .art-second-color-scheme input[type=text], .art-second-color-scheme
  input[type=email], .art-second-color-scheme
  input[type=url], .art-second-color-scheme
  input[type=password], .art-second-color-scheme
  input[type=tel], .art-second-color-scheme
  input[type=range], .art-second-color-scheme
  input[type=date], .art-second-color-scheme
  input[type=month], .art-second-color-scheme
  input[type=week], .art-second-color-scheme
  input[type=time], .art-second-color-scheme
  input[type=datetime], .art-second-color-scheme
  input[type=datetime-local], .art-second-color-scheme
  input[type=color], .art-second-color-scheme
  input[type=number], .art-second-color-scheme
  input[type=search], .art-second-color-scheme
  textarea {
    color: var(--art-bg-text); }
  @media only screen and (max-width: 767px) {
    input[type=text],
    input[type=email],
    input[type=url],
    input[type=password],
    input[type=tel],
    input[type=range],
    input[type=date],
    input[type=month],
    input[type=week],
    input[type=time],
    input[type=datetime],
    input[type=datetime-local],
    input[type=color],
    input[type=number],
    input[type=search],
    textarea {
      font-family: var(--art-body-two-mobile-font-family);
      font-weight: var(--art-body-two-mobile-font-weight);
      font-style: var(--art-body-two-mobile-font-style);
      text-transform: var(--art-body-two-mobile-text-transform);
      -webkit-text-decoration: var(--art-body-two-mobile-text-decoration);
              text-decoration: var(--art-body-two-mobile-text-decoration);
      font-size: var(--art-body-two-mobile-font-size);
      line-height: var(--art-body-two-mobile-line-height);
      letter-spacing: var(--art-body-two-mobile-letter-spacing); } }
  input[type=text]::-webkit-input-placeholder,
  input[type=email]::-webkit-input-placeholder,
  input[type=url]::-webkit-input-placeholder,
  input[type=password]::-webkit-input-placeholder,
  input[type=tel]::-webkit-input-placeholder,
  input[type=range]::-webkit-input-placeholder,
  input[type=date]::-webkit-input-placeholder,
  input[type=month]::-webkit-input-placeholder,
  input[type=week]::-webkit-input-placeholder,
  input[type=time]::-webkit-input-placeholder,
  input[type=datetime]::-webkit-input-placeholder,
  input[type=datetime-local]::-webkit-input-placeholder,
  input[type=color]::-webkit-input-placeholder,
  input[type=number]::-webkit-input-placeholder,
  input[type=search]::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder {
    color: var(--art-colors-text);
    -webkit-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out; }
    .art-second-color-scheme input[type=text]::-webkit-input-placeholder, .art-second-color-scheme
    input[type=email]::-webkit-input-placeholder, .art-second-color-scheme
    input[type=url]::-webkit-input-placeholder, .art-second-color-scheme
    input[type=password]::-webkit-input-placeholder, .art-second-color-scheme
    input[type=tel]::-webkit-input-placeholder, .art-second-color-scheme
    input[type=range]::-webkit-input-placeholder, .art-second-color-scheme
    input[type=date]::-webkit-input-placeholder, .art-second-color-scheme
    input[type=month]::-webkit-input-placeholder, .art-second-color-scheme
    input[type=week]::-webkit-input-placeholder, .art-second-color-scheme
    input[type=time]::-webkit-input-placeholder, .art-second-color-scheme
    input[type=datetime]::-webkit-input-placeholder, .art-second-color-scheme
    input[type=datetime-local]::-webkit-input-placeholder, .art-second-color-scheme
    input[type=color]::-webkit-input-placeholder, .art-second-color-scheme
    input[type=number]::-webkit-input-placeholder, .art-second-color-scheme
    input[type=search]::-webkit-input-placeholder, .art-second-color-scheme
    textarea::-webkit-input-placeholder {
      color: var(--art-bg-text); }
  input[type=text]::-moz-placeholder,
  input[type=email]::-moz-placeholder,
  input[type=url]::-moz-placeholder,
  input[type=password]::-moz-placeholder,
  input[type=tel]::-moz-placeholder,
  input[type=range]::-moz-placeholder,
  input[type=date]::-moz-placeholder,
  input[type=month]::-moz-placeholder,
  input[type=week]::-moz-placeholder,
  input[type=time]::-moz-placeholder,
  input[type=datetime]::-moz-placeholder,
  input[type=datetime-local]::-moz-placeholder,
  input[type=color]::-moz-placeholder,
  input[type=number]::-moz-placeholder,
  input[type=search]::-moz-placeholder,
  textarea::-moz-placeholder {
    color: var(--art-colors-text);
    -webkit-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out; }
    .art-second-color-scheme input[type=text]::-moz-placeholder, .art-second-color-scheme
    input[type=email]::-moz-placeholder, .art-second-color-scheme
    input[type=url]::-moz-placeholder, .art-second-color-scheme
    input[type=password]::-moz-placeholder, .art-second-color-scheme
    input[type=tel]::-moz-placeholder, .art-second-color-scheme
    input[type=range]::-moz-placeholder, .art-second-color-scheme
    input[type=date]::-moz-placeholder, .art-second-color-scheme
    input[type=month]::-moz-placeholder, .art-second-color-scheme
    input[type=week]::-moz-placeholder, .art-second-color-scheme
    input[type=time]::-moz-placeholder, .art-second-color-scheme
    input[type=datetime]::-moz-placeholder, .art-second-color-scheme
    input[type=datetime-local]::-moz-placeholder, .art-second-color-scheme
    input[type=color]::-moz-placeholder, .art-second-color-scheme
    input[type=number]::-moz-placeholder, .art-second-color-scheme
    input[type=search]::-moz-placeholder, .art-second-color-scheme
    textarea::-moz-placeholder {
      color: var(--art-bg-text); }
  input[type=text]::-ms-input-placeholder,
  input[type=email]::-ms-input-placeholder,
  input[type=url]::-ms-input-placeholder,
  input[type=password]::-ms-input-placeholder,
  input[type=tel]::-ms-input-placeholder,
  input[type=range]::-ms-input-placeholder,
  input[type=date]::-ms-input-placeholder,
  input[type=month]::-ms-input-placeholder,
  input[type=week]::-ms-input-placeholder,
  input[type=time]::-ms-input-placeholder,
  input[type=datetime]::-ms-input-placeholder,
  input[type=datetime-local]::-ms-input-placeholder,
  input[type=color]::-ms-input-placeholder,
  input[type=number]::-ms-input-placeholder,
  input[type=search]::-ms-input-placeholder,
  textarea::-ms-input-placeholder {
    color: var(--art-colors-text);
    -webkit-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out; }
    .art-second-color-scheme input[type=text]::-ms-input-placeholder, .art-second-color-scheme
    input[type=email]::-ms-input-placeholder, .art-second-color-scheme
    input[type=url]::-ms-input-placeholder, .art-second-color-scheme
    input[type=password]::-ms-input-placeholder, .art-second-color-scheme
    input[type=tel]::-ms-input-placeholder, .art-second-color-scheme
    input[type=range]::-ms-input-placeholder, .art-second-color-scheme
    input[type=date]::-ms-input-placeholder, .art-second-color-scheme
    input[type=month]::-ms-input-placeholder, .art-second-color-scheme
    input[type=week]::-ms-input-placeholder, .art-second-color-scheme
    input[type=time]::-ms-input-placeholder, .art-second-color-scheme
    input[type=datetime]::-ms-input-placeholder, .art-second-color-scheme
    input[type=datetime-local]::-ms-input-placeholder, .art-second-color-scheme
    input[type=color]::-ms-input-placeholder, .art-second-color-scheme
    input[type=number]::-ms-input-placeholder, .art-second-color-scheme
    input[type=search]::-ms-input-placeholder, .art-second-color-scheme
    textarea::-ms-input-placeholder {
      color: var(--art-bg-text); }
  input[type=text]:focus,
  input[type=email]:focus,
  input[type=url]:focus,
  input[type=password]:focus,
  input[type=tel]:focus,
  input[type=range]:focus,
  input[type=date]:focus,
  input[type=month]:focus,
  input[type=week]:focus,
  input[type=time]:focus,
  input[type=datetime]:focus,
  input[type=datetime-local]:focus,
  input[type=color]:focus,
  input[type=number]:focus,
  input[type=search]:focus,
  textarea:focus {
    color: var(--art-colors-text);
    border-color: var(--art-colors-link); }
    .art-second-color-scheme input[type=text]:focus, .art-second-color-scheme
    input[type=email]:focus, .art-second-color-scheme
    input[type=url]:focus, .art-second-color-scheme
    input[type=password]:focus, .art-second-color-scheme
    input[type=tel]:focus, .art-second-color-scheme
    input[type=range]:focus, .art-second-color-scheme
    input[type=date]:focus, .art-second-color-scheme
    input[type=month]:focus, .art-second-color-scheme
    input[type=week]:focus, .art-second-color-scheme
    input[type=time]:focus, .art-second-color-scheme
    input[type=datetime]:focus, .art-second-color-scheme
    input[type=datetime-local]:focus, .art-second-color-scheme
    input[type=color]:focus, .art-second-color-scheme
    input[type=number]:focus, .art-second-color-scheme
    input[type=search]:focus, .art-second-color-scheme
    textarea:focus {
      color: var(--art-bg-text); }
    .art-second-color-scheme input[type=text]:focus, .art-second-color-scheme
    input[type=email]:focus, .art-second-color-scheme
    input[type=url]:focus, .art-second-color-scheme
    input[type=password]:focus, .art-second-color-scheme
    input[type=tel]:focus, .art-second-color-scheme
    input[type=range]:focus, .art-second-color-scheme
    input[type=date]:focus, .art-second-color-scheme
    input[type=month]:focus, .art-second-color-scheme
    input[type=week]:focus, .art-second-color-scheme
    input[type=time]:focus, .art-second-color-scheme
    input[type=datetime]:focus, .art-second-color-scheme
    input[type=datetime-local]:focus, .art-second-color-scheme
    input[type=color]:focus, .art-second-color-scheme
    input[type=number]:focus, .art-second-color-scheme
    input[type=search]:focus, .art-second-color-scheme
    textarea:focus {
      border-color: var(--art-bg-link); }
    input[type=text]:focus::-webkit-input-placeholder,
    input[type=email]:focus::-webkit-input-placeholder,
    input[type=url]:focus::-webkit-input-placeholder,
    input[type=password]:focus::-webkit-input-placeholder,
    input[type=tel]:focus::-webkit-input-placeholder,
    input[type=range]:focus::-webkit-input-placeholder,
    input[type=date]:focus::-webkit-input-placeholder,
    input[type=month]:focus::-webkit-input-placeholder,
    input[type=week]:focus::-webkit-input-placeholder,
    input[type=time]:focus::-webkit-input-placeholder,
    input[type=datetime]:focus::-webkit-input-placeholder,
    input[type=datetime-local]:focus::-webkit-input-placeholder,
    input[type=color]:focus::-webkit-input-placeholder,
    input[type=number]:focus::-webkit-input-placeholder,
    input[type=search]:focus::-webkit-input-placeholder,
    textarea:focus::-webkit-input-placeholder {
      color: transparent; }
    input[type=text]:focus::-moz-placeholder,
    input[type=email]:focus::-moz-placeholder,
    input[type=url]:focus::-moz-placeholder,
    input[type=password]:focus::-moz-placeholder,
    input[type=tel]:focus::-moz-placeholder,
    input[type=range]:focus::-moz-placeholder,
    input[type=date]:focus::-moz-placeholder,
    input[type=month]:focus::-moz-placeholder,
    input[type=week]:focus::-moz-placeholder,
    input[type=time]:focus::-moz-placeholder,
    input[type=datetime]:focus::-moz-placeholder,
    input[type=datetime-local]:focus::-moz-placeholder,
    input[type=color]:focus::-moz-placeholder,
    input[type=number]:focus::-moz-placeholder,
    input[type=search]:focus::-moz-placeholder,
    textarea:focus::-moz-placeholder {
      color: transparent; }

input[type=search],
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  -moz-appearance: none; }

.select2-container--default .select2-selection--single,
select {
  outline: none;
  border-width: 2px;
  border-style: solid;
  border-color: var(--art-colors-bd);
  color: var(--art-colors-text);
  background-color: transparent;
  background-image: none;
  font-family: var(--art-body-two-font-family);
  font-weight: var(--art-body-two-font-weight);
  font-style: var(--art-body-two-font-style);
  text-transform: var(--art-body-two-text-transform);
  -webkit-text-decoration: var(--art-body-two-text-decoration);
          text-decoration: var(--art-body-two-text-decoration);
  font-size: var(--art-body-two-font-size);
  line-height: var(--art-body-two-line-height);
  letter-spacing: var(--art-body-two-letter-spacing);
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  text-shadow: none;
  padding: 12px 15px;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: color .2s ease-in-out, border-color .2s ease-in-out, background-color .2s ease-in-out;
  transition: color .2s ease-in-out, border-color .2s ease-in-out, background-color .2s ease-in-out;
  background-image: url(../images/chevron-bottom-16.svg);
  background-repeat: no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-position: calc(100% - 12px) center;
  padding-right: 30px; }
  .art-second-color-scheme .select2-container--default .select2-selection--single, .art-second-color-scheme
  select {
    border-color: var(--art-bg-bd); }
  .art-second-color-scheme .select2-container--default .select2-selection--single, .art-second-color-scheme
  select {
    color: var(--art-bg-text); }
  @media only screen and (max-width: 767px) {
    .select2-container--default .select2-selection--single,
    select {
      font-family: var(--art-body-two-mobile-font-family);
      font-weight: var(--art-body-two-mobile-font-weight);
      font-style: var(--art-body-two-mobile-font-style);
      text-transform: var(--art-body-two-mobile-text-transform);
      -webkit-text-decoration: var(--art-body-two-mobile-text-decoration);
              text-decoration: var(--art-body-two-mobile-text-decoration);
      font-size: var(--art-body-two-mobile-font-size);
      line-height: var(--art-body-two-mobile-line-height);
      letter-spacing: var(--art-body-two-mobile-letter-spacing); } }
  .select2-container--default .select2-selection--single::-webkit-input-placeholder,
  select::-webkit-input-placeholder {
    color: var(--art-colors-text);
    -webkit-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out; }
    .art-second-color-scheme .select2-container--default .select2-selection--single::-webkit-input-placeholder, .art-second-color-scheme
    select::-webkit-input-placeholder {
      color: var(--art-bg-text); }
  .select2-container--default .select2-selection--single::-moz-placeholder,
  select::-moz-placeholder {
    color: var(--art-colors-text);
    -webkit-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out; }
    .art-second-color-scheme .select2-container--default .select2-selection--single::-moz-placeholder, .art-second-color-scheme
    select::-moz-placeholder {
      color: var(--art-bg-text); }
  .select2-container--default .select2-selection--single::-ms-input-placeholder,
  select::-ms-input-placeholder {
    color: var(--art-colors-text);
    -webkit-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out; }
    .art-second-color-scheme .select2-container--default .select2-selection--single::-ms-input-placeholder, .art-second-color-scheme
    select::-ms-input-placeholder {
      color: var(--art-bg-text); }
  .select2-container--default .select2-selection--single:focus,
  select:focus {
    color: var(--art-colors-text);
    border-color: var(--art-colors-link); }
    .art-second-color-scheme .select2-container--default .select2-selection--single:focus, .art-second-color-scheme
    select:focus {
      color: var(--art-bg-text); }
    .art-second-color-scheme .select2-container--default .select2-selection--single:focus, .art-second-color-scheme
    select:focus {
      border-color: var(--art-bg-link); }
    .select2-container--default .select2-selection--single:focus::-webkit-input-placeholder,
    select:focus::-webkit-input-placeholder {
      color: transparent; }
    .select2-container--default .select2-selection--single:focus::-moz-placeholder,
    select:focus::-moz-placeholder {
      color: transparent; }
  .select2-container--default .select2-selection--single:focus,
  select:focus {
    background-image: url(../images/chevron-top-16.svg); }

.select2-container--default .select2-selection--single {
  line-height: normal;
  margin: 0; }
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: inherit;
    padding-left: 0; }
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none; }

.select2-dropdown {
  font-family: var(--art-body-two-font-family);
  font-weight: var(--art-body-two-font-weight);
  font-style: var(--art-body-two-font-style);
  text-transform: var(--art-body-two-text-transform);
  -webkit-text-decoration: var(--art-body-two-text-decoration);
          text-decoration: var(--art-body-two-text-decoration);
  font-size: var(--art-body-two-font-size);
  line-height: var(--art-body-two-line-height);
  letter-spacing: var(--art-body-two-letter-spacing);
  border-width: 2px;
  border-style: solid;
  border-radius: 0; }
  @media only screen and (max-width: 767px) {
    .select2-dropdown {
      font-family: var(--art-body-two-mobile-font-family);
      font-weight: var(--art-body-two-mobile-font-weight);
      font-style: var(--art-body-two-mobile-font-style);
      text-transform: var(--art-body-two-mobile-text-transform);
      -webkit-text-decoration: var(--art-body-two-mobile-text-decoration);
              text-decoration: var(--art-body-two-mobile-text-decoration);
      font-size: var(--art-body-two-mobile-font-size);
      line-height: var(--art-body-two-mobile-line-height);
      letter-spacing: var(--art-body-two-mobile-letter-spacing); } }
  .woocommerce-cart .select2-dropdown {
    background-color: var(--art-colors-second-bg); }
    .art-second-color-scheme .woocommerce-cart .select2-dropdown {
      background-color: var(--art-bg-second-bg); }

.art-search-form {
  position: relative; }
  .art-search-form input[type=search], .art-search-form input[type=text] {
    width: 100%;
    margin: 0;
    padding-right: 52px; }
  .art-search-form button {
    font-size: 22px;
    color: var(--art-colors-text);
    background-color: transparent;
    background-image: none;
    border: 0;
    width: 52px;
    height: 100%;
    margin: auto !important;
    position: absolute;
    left: auto;
    right: 0;
    top: 0;
    bottom: 0;
    margin: 0;
    padding: 0;
    border-radius: 0;
    text-shadow: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    overflow: hidden;
    word-break: normal;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out; }
    .art-second-color-scheme .art-search-form button {
      color: var(--art-bg-text); }
    .art-search-form button:hover {
      color: var(--art-colors-link);
      background-color: transparent;
      background-image: none;
      border: 0;
      border-radius: 0;
      text-shadow: none;
      -webkit-box-shadow: none;
              box-shadow: none; }
      .art-second-color-scheme .art-search-form button:hover {
        color: var(--art-bg-link); }
    .art-search-form button:before, .art-search-form button:after {
      content: none;
      display: none; }
    .art-search-form button i,
    .art-search-form button i:before {
      width: 1em;
      height: 1em;
      margin: auto !important;
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0; }

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  width: auto;
  -webkit-appearance: button; }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: none; }

button,
[type="submit"],
[type="button"] {
  outline: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  button:not(:disabled),
  [type="submit"]:not(:disabled),
  [type="button"]:not(:disabled) {
    cursor: pointer; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  border-width: 1px;
  border-style: solid;
  border-color: var(--art-colors-bd);
  margin: 3rem 0;
  padding: 0.35em 0.75em 0.625em; }
  .art-second-color-scheme fieldset {
    border-color: var(--art-bg-bd); }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  border: 0;
  /* 1 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
  resize: vertical; }

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

form .wpcf7-response-output {
  display: none; }

.wpcf7-checkbox,
.wpcf7-radio,
.wpcf7-acceptance {
  margin: 0 -1rem; }
  .wpcf7-checkbox span.wpcf7-list-item,
  .wpcf7-radio span.wpcf7-list-item,
  .wpcf7-acceptance span.wpcf7-list-item {
    margin: 0 1rem; }
    .wpcf7-checkbox span.wpcf7-list-item label,
    .wpcf7-radio span.wpcf7-list-item label,
    .wpcf7-acceptance span.wpcf7-list-item label {
      margin: 0; }
    .wpcf7-checkbox span.wpcf7-list-item input,
    .wpcf7-checkbox span.wpcf7-list-item span,
    .wpcf7-radio span.wpcf7-list-item input,
    .wpcf7-radio span.wpcf7-list-item span,
    .wpcf7-acceptance span.wpcf7-list-item input,
    .wpcf7-acceptance span.wpcf7-list-item span {
      vertical-align: middle; }

input[type="radio"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 18px;
  height: 18px;
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  cursor: pointer;
  -webkit-transition: opacity .2s ease-in-out;
  transition: opacity .2s ease-in-out; }
  input[type="radio"]:hover {
    opacity: .8; }
  input[type="radio"]:before, input[type="radio"]:after {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 100%; }
  input[type="radio"]:before {
    border-width: 2px;
    border-style: solid;
    border-color: var(--art-colors-bd); }
    .art-second-color-scheme input[type="radio"]:before {
      border-color: var(--art-bg-bd); }
  input[type="radio"]:after {
    background-color: var(--art-colors-bd);
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out; }
    .art-second-color-scheme input[type="radio"]:after {
      background-color: var(--art-bg-bd); }
  input[type="radio"]:checked:after {
    -webkit-transform: scale(0.33);
            transform: scale(0.33); }

input[type="checkbox"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 18px;
  height: 18px;
  display: inline-block !important;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  cursor: pointer;
  -webkit-transition: opacity .2s ease-in-out;
  transition: opacity .2s ease-in-out; }
  input[type="checkbox"]:hover {
    opacity: .8; }
  input[type="checkbox"]:before, input[type="checkbox"]:after {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0; }
  input[type="checkbox"]:before {
    border-width: 2px;
    border-style: solid;
    border-color: var(--art-colors-bd); }
    .art-second-color-scheme input[type="checkbox"]:before {
      border-color: var(--art-bg-bd); }
  input[type="checkbox"]:after {
    background-image: url(../images/checkbox.svg);
    background-size: cover;
    background-position: center center;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out; }
  input[type="checkbox"]:checked:after {
    -webkit-transform: scale(0.55);
            transform: scale(0.55); }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
input[type="number"] {
  padding-right: 0; }

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Button */
.learnpress-page .lp-button,
.learnpress-checkout #checkout-payment #checkout-order-action button,
.comment-respond .comment-form input[type=submit],
body.learnpress-profile .learn-press-form-login button[type=submit], body.learnpress-profile .learn-press-form-register button[type=submit],
button,
input[type="submit"],
input[type="button"] {
  font-family: var(--art-button-font-family);
  font-weight: var(--art-button-font-weight);
  font-style: var(--art-button-font-style);
  text-transform: var(--art-button-text-transform);
  -webkit-text-decoration: var(--art-button-text-decoration);
          text-decoration: var(--art-button-text-decoration);
  font-size: var(--art-button-font-size);
  line-height: var(--art-button-line-height);
  letter-spacing: var(--art-button-letter-spacing);
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  border-radius: 0;
  overflow: visible;
  word-break: normal;
  position: relative;
  z-index: 0;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  border-width: 2px;
  border-style: solid;
  padding: 13px 40px;
  border-color: var(--art-colors-bg);
  background-color: transparent;
  color: var(--art-colors-bg); }
  .art-second-color-scheme .learnpress-page .lp-button, .art-second-color-scheme
  .learnpress-checkout #checkout-payment #checkout-order-action button, .art-second-color-scheme
  .comment-respond .comment-form input[type=submit], .art-second-color-scheme
  body.learnpress-profile .learn-press-form-login button[type=submit], .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit], .art-second-color-scheme
  button, .art-second-color-scheme
  input[type="submit"], .art-second-color-scheme
  input[type="button"] {
    border-color: var(--art-bg-bg); }
  .art-second-color-scheme .learnpress-page .lp-button, .art-second-color-scheme
  .learnpress-checkout #checkout-payment #checkout-order-action button, .art-second-color-scheme
  .comment-respond .comment-form input[type=submit], .art-second-color-scheme
  body.learnpress-profile .learn-press-form-login button[type=submit], .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit], .art-second-color-scheme
  button, .art-second-color-scheme
  input[type="submit"], .art-second-color-scheme
  input[type="button"] {
    background-color: transparent; }
  .art-second-color-scheme .learnpress-page .lp-button, .art-second-color-scheme
  .learnpress-checkout #checkout-payment #checkout-order-action button, .art-second-color-scheme
  .comment-respond .comment-form input[type=submit], .art-second-color-scheme
  body.learnpress-profile .learn-press-form-login button[type=submit], .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit], .art-second-color-scheme
  button, .art-second-color-scheme
  input[type="submit"], .art-second-color-scheme
  input[type="button"] {
    color: var(--art-bg-bg); }
  .learnpress-page .lp-button:hover,
  .learnpress-checkout #checkout-payment #checkout-order-action button:hover,
  .comment-respond .comment-form input[type=submit]:hover,
  body.learnpress-profile .learn-press-form-login button[type=submit]:hover, body.learnpress-profile .learn-press-form-register button[type=submit]:hover,
  button:hover,
  input[type="submit"]:hover,
  input[type="button"]:hover {
    /*background-color: #ffffff;
      color: #000;*/
    background-color: var(--art-colors-bg);
    color: #fff; }
    .art-second-color-scheme .learnpress-page .lp-button:hover, .art-second-color-scheme
    .learnpress-checkout #checkout-payment #checkout-order-action button:hover, .art-second-color-scheme
    .comment-respond .comment-form input[type=submit]:hover, .art-second-color-scheme
    body.learnpress-profile .learn-press-form-login button[type=submit]:hover, .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit]:hover, .art-second-color-scheme
    button:hover, .art-second-color-scheme
    input[type="submit"]:hover, .art-second-color-scheme
    input[type="button"]:hover {
      background-color: var(--art-bg-bg); }
  .learnpress-page .lp-button.art-button-primary,
  .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-primary,
  .comment-respond .comment-form input[type=submit].art-button-primary,
  body.learnpress-profile .learn-press-form-login button[type=submit].art-button-primary, body.learnpress-profile .learn-press-form-register button[type=submit].art-button-primary,
  button.art-button-primary,
  input[type="submit"].art-button-primary,
  input[type="button"].art-button-primary {
    font-family: var(--art-button-font-family);
    font-weight: var(--art-button-font-weight);
    font-style: var(--art-button-font-style);
    text-transform: var(--art-button-text-transform);
    -webkit-text-decoration: var(--art-button-text-decoration);
            text-decoration: var(--art-button-text-decoration);
    font-size: var(--art-button-font-size);
    line-height: var(--art-button-line-height);
    letter-spacing: var(--art-button-letter-spacing);
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border-radius: 0;
    overflow: visible;
    word-break: normal;
    position: relative;
    z-index: 0;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    border-width: 2px;
    border-style: solid;
    padding: 13px 40px;
    border-color: var(--art-colors-bg);
    background-color: var(--art-colors-bg);
    color: var(--art-colors-light-text); }
    .art-second-color-scheme .learnpress-page .lp-button.art-button-primary, .art-second-color-scheme
    .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-primary, .art-second-color-scheme
    .comment-respond .comment-form input[type=submit].art-button-primary, .art-second-color-scheme
    body.learnpress-profile .learn-press-form-login button[type=submit].art-button-primary, .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit].art-button-primary, .art-second-color-scheme
    button.art-button-primary, .art-second-color-scheme
    input[type="submit"].art-button-primary, .art-second-color-scheme
    input[type="button"].art-button-primary {
      border-color: var(--art-bg-bg); }
    .art-second-color-scheme .learnpress-page .lp-button.art-button-primary, .art-second-color-scheme
    .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-primary, .art-second-color-scheme
    .comment-respond .comment-form input[type=submit].art-button-primary, .art-second-color-scheme
    body.learnpress-profile .learn-press-form-login button[type=submit].art-button-primary, .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit].art-button-primary, .art-second-color-scheme
    button.art-button-primary, .art-second-color-scheme
    input[type="submit"].art-button-primary, .art-second-color-scheme
    input[type="button"].art-button-primary {
      background-color: var(--art-bg-bg); }
    .art-second-color-scheme .learnpress-page .lp-button.art-button-primary, .art-second-color-scheme
    .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-primary, .art-second-color-scheme
    .comment-respond .comment-form input[type=submit].art-button-primary, .art-second-color-scheme
    body.learnpress-profile .learn-press-form-login button[type=submit].art-button-primary, .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit].art-button-primary, .art-second-color-scheme
    button.art-button-primary, .art-second-color-scheme
    input[type="submit"].art-button-primary, .art-second-color-scheme
    input[type="button"].art-button-primary {
      color: var(--art-bg-light-text); }
    .learnpress-page .lp-button.art-button-primary:hover,
    .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-primary:hover,
    .comment-respond .comment-form input[type=submit].art-button-primary:hover,
    body.learnpress-profile .learn-press-form-login button[type=submit].art-button-primary:hover, body.learnpress-profile .learn-press-form-register button[type=submit].art-button-primary:hover,
    button.art-button-primary:hover,
    input[type="submit"].art-button-primary:hover,
    input[type="button"].art-button-primary:hover {
      border-color: var(--art-colors-bg-hover);
      background-color: var(--art-colors-bg-hover);
      color: var(--art-colors-light-text); }
      .art-second-color-scheme .learnpress-page .lp-button.art-button-primary:hover, .art-second-color-scheme
      .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-primary:hover, .art-second-color-scheme
      .comment-respond .comment-form input[type=submit].art-button-primary:hover, .art-second-color-scheme
      body.learnpress-profile .learn-press-form-login button[type=submit].art-button-primary:hover, .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit].art-button-primary:hover, .art-second-color-scheme
      button.art-button-primary:hover, .art-second-color-scheme
      input[type="submit"].art-button-primary:hover, .art-second-color-scheme
      input[type="button"].art-button-primary:hover {
        border-color: var(--art-bg-bg-hover); }
      .art-second-color-scheme .learnpress-page .lp-button.art-button-primary:hover, .art-second-color-scheme
      .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-primary:hover, .art-second-color-scheme
      .comment-respond .comment-form input[type=submit].art-button-primary:hover, .art-second-color-scheme
      body.learnpress-profile .learn-press-form-login button[type=submit].art-button-primary:hover, .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit].art-button-primary:hover, .art-second-color-scheme
      button.art-button-primary:hover, .art-second-color-scheme
      input[type="submit"].art-button-primary:hover, .art-second-color-scheme
      input[type="button"].art-button-primary:hover {
        background-color: var(--art-bg-bg-hover); }
      .art-second-color-scheme .learnpress-page .lp-button.art-button-primary:hover, .art-second-color-scheme
      .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-primary:hover, .art-second-color-scheme
      .comment-respond .comment-form input[type=submit].art-button-primary:hover, .art-second-color-scheme
      body.learnpress-profile .learn-press-form-login button[type=submit].art-button-primary:hover, .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit].art-button-primary:hover, .art-second-color-scheme
      button.art-button-primary:hover, .art-second-color-scheme
      input[type="submit"].art-button-primary:hover, .art-second-color-scheme
      input[type="button"].art-button-primary:hover {
        color: var(--art-bg-light-text); }
  .learnpress-page .lp-button.art-button-secondary,
  .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-secondary,
  .comment-respond .comment-form input[type=submit].art-button-secondary,
  body.learnpress-profile .learn-press-form-login button[type=submit].art-button-secondary, body.learnpress-profile .learn-press-form-register button[type=submit].art-button-secondary,
  button.art-button-secondary,
  input[type="submit"].art-button-secondary,
  input[type="button"].art-button-secondary {
    font-family: var(--art-button-font-family);
    font-weight: var(--art-button-font-weight);
    font-style: var(--art-button-font-style);
    text-transform: var(--art-button-text-transform);
    -webkit-text-decoration: var(--art-button-text-decoration);
            text-decoration: var(--art-button-text-decoration);
    font-size: var(--art-button-font-size);
    line-height: var(--art-button-line-height);
    letter-spacing: var(--art-button-letter-spacing);
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border-radius: 0;
    overflow: visible;
    word-break: normal;
    position: relative;
    z-index: 0;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    border-width: 2px;
    border-style: solid;
    padding: 13px 40px;
    border-color: var(--art-colors-bg);
    background-color: transparent;
    color: var(--art-colors-bg); }
    .art-second-color-scheme .learnpress-page .lp-button.art-button-secondary, .art-second-color-scheme
    .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-secondary, .art-second-color-scheme
    .comment-respond .comment-form input[type=submit].art-button-secondary, .art-second-color-scheme
    body.learnpress-profile .learn-press-form-login button[type=submit].art-button-secondary, .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit].art-button-secondary, .art-second-color-scheme
    button.art-button-secondary, .art-second-color-scheme
    input[type="submit"].art-button-secondary, .art-second-color-scheme
    input[type="button"].art-button-secondary {
      border-color: var(--art-bg-bg); }
    .art-second-color-scheme .learnpress-page .lp-button.art-button-secondary, .art-second-color-scheme
    .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-secondary, .art-second-color-scheme
    .comment-respond .comment-form input[type=submit].art-button-secondary, .art-second-color-scheme
    body.learnpress-profile .learn-press-form-login button[type=submit].art-button-secondary, .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit].art-button-secondary, .art-second-color-scheme
    button.art-button-secondary, .art-second-color-scheme
    input[type="submit"].art-button-secondary, .art-second-color-scheme
    input[type="button"].art-button-secondary {
      background-color: transparent; }
    .art-second-color-scheme .learnpress-page .lp-button.art-button-secondary, .art-second-color-scheme
    .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-secondary, .art-second-color-scheme
    .comment-respond .comment-form input[type=submit].art-button-secondary, .art-second-color-scheme
    body.learnpress-profile .learn-press-form-login button[type=submit].art-button-secondary, .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit].art-button-secondary, .art-second-color-scheme
    button.art-button-secondary, .art-second-color-scheme
    input[type="submit"].art-button-secondary, .art-second-color-scheme
    input[type="button"].art-button-secondary {
      color: var(--art-bg-bg); }
    .learnpress-page .lp-button.art-button-secondary:hover,
    .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-secondary:hover,
    .comment-respond .comment-form input[type=submit].art-button-secondary:hover,
    body.learnpress-profile .learn-press-form-login button[type=submit].art-button-secondary:hover, body.learnpress-profile .learn-press-form-register button[type=submit].art-button-secondary:hover,
    button.art-button-secondary:hover,
    input[type="submit"].art-button-secondary:hover,
    input[type="button"].art-button-secondary:hover {
      /*background-color: #ffffff;
      color: #000;*/
      background-color: var(--art-colors-bg);
      color: #fff; }
      .art-second-color-scheme .learnpress-page .lp-button.art-button-secondary:hover, .art-second-color-scheme
      .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-secondary:hover, .art-second-color-scheme
      .comment-respond .comment-form input[type=submit].art-button-secondary:hover, .art-second-color-scheme
      body.learnpress-profile .learn-press-form-login button[type=submit].art-button-secondary:hover, .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit].art-button-secondary:hover, .art-second-color-scheme
      button.art-button-secondary:hover, .art-second-color-scheme
      input[type="submit"].art-button-secondary:hover, .art-second-color-scheme
      input[type="button"].art-button-secondary:hover {
        background-color: var(--art-bg-bg); }
  .learnpress-page .lp-button.art-button-third,
  .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-third,
  .comment-respond .comment-form input[type=submit].art-button-third,
  body.learnpress-profile .learn-press-form-login button[type=submit].art-button-third, body.learnpress-profile .learn-press-form-register button[type=submit].art-button-third,
  button.art-button-third,
  input[type="submit"].art-button-third,
  input[type="button"].art-button-third {
    font-family: var(--art-button-font-family);
    font-weight: var(--art-button-font-weight);
    font-style: var(--art-button-font-style);
    text-transform: var(--art-button-text-transform);
    -webkit-text-decoration: var(--art-button-text-decoration);
            text-decoration: var(--art-button-text-decoration);
    font-size: var(--art-button-font-size);
    line-height: var(--art-button-line-height);
    letter-spacing: var(--art-button-letter-spacing);
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border-radius: 0;
    overflow: visible;
    word-break: normal;
    position: relative;
    z-index: 0;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    padding: 15px 40px;
    background-color: #ffffff;
    color: #000000; }
    .learnpress-page .lp-button.art-button-third:hover,
    .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-third:hover,
    .comment-respond .comment-form input[type=submit].art-button-third:hover,
    body.learnpress-profile .learn-press-form-login button[type=submit].art-button-third:hover, body.learnpress-profile .learn-press-form-register button[type=submit].art-button-third:hover,
    button.art-button-third:hover,
    input[type="submit"].art-button-third:hover,
    input[type="button"].art-button-third:hover {
      background-color: var(--art-colors-heading);
      color: var(--art-colors-bg); }
      .art-second-color-scheme .learnpress-page .lp-button.art-button-third:hover, .art-second-color-scheme
      .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-third:hover, .art-second-color-scheme
      .comment-respond .comment-form input[type=submit].art-button-third:hover, .art-second-color-scheme
      body.learnpress-profile .learn-press-form-login button[type=submit].art-button-third:hover, .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit].art-button-third:hover, .art-second-color-scheme
      button.art-button-third:hover, .art-second-color-scheme
      input[type="submit"].art-button-third:hover, .art-second-color-scheme
      input[type="button"].art-button-third:hover {
        background-color: var(--art-bg-heading); }
      .art-second-color-scheme .learnpress-page .lp-button.art-button-third:hover, .art-second-color-scheme
      .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-third:hover, .art-second-color-scheme
      .comment-respond .comment-form input[type=submit].art-button-third:hover, .art-second-color-scheme
      body.learnpress-profile .learn-press-form-login button[type=submit].art-button-third:hover, .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit].art-button-third:hover, .art-second-color-scheme
      button.art-button-third:hover, .art-second-color-scheme
      input[type="submit"].art-button-third:hover, .art-second-color-scheme
      input[type="button"].art-button-third:hover {
        color: var(--art-bg-bg); }
  .learnpress-page .lp-button.art-button-fourth,
  .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-fourth,
  .comment-respond .comment-form input[type=submit].art-button-fourth,
  body.learnpress-profile .learn-press-form-login button[type=submit].art-button-fourth, body.learnpress-profile .learn-press-form-register button[type=submit].art-button-fourth,
  button.art-button-fourth,
  input[type="submit"].art-button-fourth,
  input[type="button"].art-button-fourth {
    font-family: var(--art-button-font-family);
    font-weight: var(--art-button-font-weight);
    font-style: var(--art-button-font-style);
    text-transform: var(--art-button-text-transform);
    -webkit-text-decoration: var(--art-button-text-decoration);
            text-decoration: var(--art-button-text-decoration);
    font-size: var(--art-button-font-size);
    line-height: var(--art-button-line-height);
    letter-spacing: var(--art-button-letter-spacing);
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border-radius: 0;
    overflow: visible;
    word-break: normal;
    position: relative;
    z-index: 0;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    border-width: 2px;
    border-style: solid;
    padding: 13px 28px;
    border-color: var(--art-colors-bg);
    background-color: var(--art-colors-bg);
    color: var(--art-colors-link); }
    .art-second-color-scheme .learnpress-page .lp-button.art-button-fourth, .art-second-color-scheme
    .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-fourth, .art-second-color-scheme
    .comment-respond .comment-form input[type=submit].art-button-fourth, .art-second-color-scheme
    body.learnpress-profile .learn-press-form-login button[type=submit].art-button-fourth, .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit].art-button-fourth, .art-second-color-scheme
    button.art-button-fourth, .art-second-color-scheme
    input[type="submit"].art-button-fourth, .art-second-color-scheme
    input[type="button"].art-button-fourth {
      border-color: var(--art-bg-bg); }
    .art-second-color-scheme .learnpress-page .lp-button.art-button-fourth, .art-second-color-scheme
    .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-fourth, .art-second-color-scheme
    .comment-respond .comment-form input[type=submit].art-button-fourth, .art-second-color-scheme
    body.learnpress-profile .learn-press-form-login button[type=submit].art-button-fourth, .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit].art-button-fourth, .art-second-color-scheme
    button.art-button-fourth, .art-second-color-scheme
    input[type="submit"].art-button-fourth, .art-second-color-scheme
    input[type="button"].art-button-fourth {
      background-color: var(--art-bg-bg); }
    .art-second-color-scheme .learnpress-page .lp-button.art-button-fourth, .art-second-color-scheme
    .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-fourth, .art-second-color-scheme
    .comment-respond .comment-form input[type=submit].art-button-fourth, .art-second-color-scheme
    body.learnpress-profile .learn-press-form-login button[type=submit].art-button-fourth, .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit].art-button-fourth, .art-second-color-scheme
    button.art-button-fourth, .art-second-color-scheme
    input[type="submit"].art-button-fourth, .art-second-color-scheme
    input[type="button"].art-button-fourth {
      color: var(--art-bg-link); }
    .learnpress-page .lp-button.art-button-fourth:hover,
    .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-fourth:hover,
    .comment-respond .comment-form input[type=submit].art-button-fourth:hover,
    body.learnpress-profile .learn-press-form-login button[type=submit].art-button-fourth:hover, body.learnpress-profile .learn-press-form-register button[type=submit].art-button-fourth:hover,
    button.art-button-fourth:hover,
    input[type="submit"].art-button-fourth:hover,
    input[type="button"].art-button-fourth:hover {
      background-color: transparent;
      color: var(--art-colors-bg); }
      .art-second-color-scheme .learnpress-page .lp-button.art-button-fourth:hover, .art-second-color-scheme
      .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-fourth:hover, .art-second-color-scheme
      .comment-respond .comment-form input[type=submit].art-button-fourth:hover, .art-second-color-scheme
      body.learnpress-profile .learn-press-form-login button[type=submit].art-button-fourth:hover, .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit].art-button-fourth:hover, .art-second-color-scheme
      button.art-button-fourth:hover, .art-second-color-scheme
      input[type="submit"].art-button-fourth:hover, .art-second-color-scheme
      input[type="button"].art-button-fourth:hover {
        background-color: transparent; }
      .art-second-color-scheme .learnpress-page .lp-button.art-button-fourth:hover, .art-second-color-scheme
      .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-fourth:hover, .art-second-color-scheme
      .comment-respond .comment-form input[type=submit].art-button-fourth:hover, .art-second-color-scheme
      body.learnpress-profile .learn-press-form-login button[type=submit].art-button-fourth:hover, .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit].art-button-fourth:hover, .art-second-color-scheme
      button.art-button-fourth:hover, .art-second-color-scheme
      input[type="submit"].art-button-fourth:hover, .art-second-color-scheme
      input[type="button"].art-button-fourth:hover {
        color: var(--art-bg-bg); }
  .learnpress-page .lp-button.art-button-fifth,
  .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-fifth,
  .comment-respond .comment-form input[type=submit].art-button-fifth,
  body.learnpress-profile .learn-press-form-login button[type=submit].art-button-fifth, body.learnpress-profile .learn-press-form-register button[type=submit].art-button-fifth,
  button.art-button-fifth,
  input[type="submit"].art-button-fifth,
  input[type="button"].art-button-fifth {
    font-family: var(--art-button-font-family);
    font-weight: var(--art-button-font-weight);
    font-style: var(--art-button-font-style);
    text-transform: var(--art-button-text-transform);
    -webkit-text-decoration: var(--art-button-text-decoration);
            text-decoration: var(--art-button-text-decoration);
    font-size: var(--art-button-font-size);
    line-height: var(--art-button-line-height);
    letter-spacing: var(--art-button-letter-spacing);
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border-radius: 0;
    overflow: visible;
    word-break: normal;
    position: relative;
    z-index: 0;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    border-width: 2px;
    border-style: solid;
    padding: 13px 28px;
    border-color: var(--art-colors-bg);
    background-color: transparent;
    color: var(--art-colors-bg); }
    .art-second-color-scheme .learnpress-page .lp-button.art-button-fifth, .art-second-color-scheme
    .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-fifth, .art-second-color-scheme
    .comment-respond .comment-form input[type=submit].art-button-fifth, .art-second-color-scheme
    body.learnpress-profile .learn-press-form-login button[type=submit].art-button-fifth, .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit].art-button-fifth, .art-second-color-scheme
    button.art-button-fifth, .art-second-color-scheme
    input[type="submit"].art-button-fifth, .art-second-color-scheme
    input[type="button"].art-button-fifth {
      border-color: var(--art-bg-bg); }
    .art-second-color-scheme .learnpress-page .lp-button.art-button-fifth, .art-second-color-scheme
    .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-fifth, .art-second-color-scheme
    .comment-respond .comment-form input[type=submit].art-button-fifth, .art-second-color-scheme
    body.learnpress-profile .learn-press-form-login button[type=submit].art-button-fifth, .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit].art-button-fifth, .art-second-color-scheme
    button.art-button-fifth, .art-second-color-scheme
    input[type="submit"].art-button-fifth, .art-second-color-scheme
    input[type="button"].art-button-fifth {
      background-color: transparent; }
    .art-second-color-scheme .learnpress-page .lp-button.art-button-fifth, .art-second-color-scheme
    .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-fifth, .art-second-color-scheme
    .comment-respond .comment-form input[type=submit].art-button-fifth, .art-second-color-scheme
    body.learnpress-profile .learn-press-form-login button[type=submit].art-button-fifth, .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit].art-button-fifth, .art-second-color-scheme
    button.art-button-fifth, .art-second-color-scheme
    input[type="submit"].art-button-fifth, .art-second-color-scheme
    input[type="button"].art-button-fifth {
      color: var(--art-bg-bg); }
    .learnpress-page .lp-button.art-button-fifth:hover,
    .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-fifth:hover,
    .comment-respond .comment-form input[type=submit].art-button-fifth:hover,
    body.learnpress-profile .learn-press-form-login button[type=submit].art-button-fifth:hover, body.learnpress-profile .learn-press-form-register button[type=submit].art-button-fifth:hover,
    button.art-button-fifth:hover,
    input[type="submit"].art-button-fifth:hover,
    input[type="button"].art-button-fifth:hover {
      background-color: var(--art-colors-bg);
      color: var(--art-colors-link); }
      .art-second-color-scheme .learnpress-page .lp-button.art-button-fifth:hover, .art-second-color-scheme
      .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-fifth:hover, .art-second-color-scheme
      .comment-respond .comment-form input[type=submit].art-button-fifth:hover, .art-second-color-scheme
      body.learnpress-profile .learn-press-form-login button[type=submit].art-button-fifth:hover, .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit].art-button-fifth:hover, .art-second-color-scheme
      button.art-button-fifth:hover, .art-second-color-scheme
      input[type="submit"].art-button-fifth:hover, .art-second-color-scheme
      input[type="button"].art-button-fifth:hover {
        background-color: var(--art-bg-bg); }
      .art-second-color-scheme .learnpress-page .lp-button.art-button-fifth:hover, .art-second-color-scheme
      .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-fifth:hover, .art-second-color-scheme
      .comment-respond .comment-form input[type=submit].art-button-fifth:hover, .art-second-color-scheme
      body.learnpress-profile .learn-press-form-login button[type=submit].art-button-fifth:hover, .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit].art-button-fifth:hover, .art-second-color-scheme
      button.art-button-fifth:hover, .art-second-color-scheme
      input[type="submit"].art-button-fifth:hover, .art-second-color-scheme
      input[type="button"].art-button-fifth:hover {
        color: var(--art-bg-link); }
  .learnpress-page .lp-button.art-button-link,
  .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-link,
  .comment-respond .comment-form input[type=submit].art-button-link,
  body.learnpress-profile .learn-press-form-login button[type=submit].art-button-link, body.learnpress-profile .learn-press-form-register button[type=submit].art-button-link,
  button.art-button-link,
  input[type="submit"].art-button-link,
  input[type="button"].art-button-link {
    font-family: var(--art-button-font-family);
    font-weight: var(--art-button-font-weight);
    font-style: var(--art-button-font-style);
    text-transform: var(--art-button-text-transform);
    -webkit-text-decoration: var(--art-button-text-decoration);
            text-decoration: var(--art-button-text-decoration);
    font-size: var(--art-button-font-size);
    line-height: var(--art-button-line-height);
    letter-spacing: var(--art-button-letter-spacing);
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border-radius: 0;
    overflow: visible;
    word-break: normal;
    position: relative;
    z-index: 0;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    color: var(--art-colors-link);
    border: 0;
    background-color: transparent;
    background-image: none;
    padding: 0; }
    .art-second-color-scheme .learnpress-page .lp-button.art-button-link, .art-second-color-scheme
    .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-link, .art-second-color-scheme
    .comment-respond .comment-form input[type=submit].art-button-link, .art-second-color-scheme
    body.learnpress-profile .learn-press-form-login button[type=submit].art-button-link, .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit].art-button-link, .art-second-color-scheme
    button.art-button-link, .art-second-color-scheme
    input[type="submit"].art-button-link, .art-second-color-scheme
    input[type="button"].art-button-link {
      color: var(--art-bg-link); }
    .learnpress-page .lp-button.art-button-link:hover,
    .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-link:hover,
    .comment-respond .comment-form input[type=submit].art-button-link:hover,
    body.learnpress-profile .learn-press-form-login button[type=submit].art-button-link:hover, body.learnpress-profile .learn-press-form-register button[type=submit].art-button-link:hover,
    button.art-button-link:hover,
    input[type="submit"].art-button-link:hover,
    input[type="button"].art-button-link:hover {
      color: var(--art-colors-hover);
      background-color: transparent; }
      .art-second-color-scheme .learnpress-page .lp-button.art-button-link:hover, .art-second-color-scheme
      .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-link:hover, .art-second-color-scheme
      .comment-respond .comment-form input[type=submit].art-button-link:hover, .art-second-color-scheme
      body.learnpress-profile .learn-press-form-login button[type=submit].art-button-link:hover, .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit].art-button-link:hover, .art-second-color-scheme
      button.art-button-link:hover, .art-second-color-scheme
      input[type="submit"].art-button-link:hover, .art-second-color-scheme
      input[type="button"].art-button-link:hover {
        color: var(--art-bg-hover); }
  .learnpress-page .lp-button.art-button-link-arrow,
  .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-link-arrow,
  .comment-respond .comment-form input[type=submit].art-button-link-arrow,
  body.learnpress-profile .learn-press-form-login button[type=submit].art-button-link-arrow, body.learnpress-profile .learn-press-form-register button[type=submit].art-button-link-arrow,
  button.art-button-link-arrow,
  input[type="submit"].art-button-link-arrow,
  input[type="button"].art-button-link-arrow {
    font-family: var(--art-button-font-family);
    font-weight: var(--art-button-font-weight);
    font-style: var(--art-button-font-style);
    text-transform: var(--art-button-text-transform);
    -webkit-text-decoration: var(--art-button-text-decoration);
            text-decoration: var(--art-button-text-decoration);
    font-size: var(--art-button-font-size);
    line-height: var(--art-button-line-height);
    letter-spacing: var(--art-button-letter-spacing);
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border-radius: 0;
    overflow: visible;
    word-break: normal;
    position: relative;
    z-index: 0;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    border: 0;
    background-color: transparent;
    background-image: none;
    padding: 0 40px 0 0;
    color: var(--art-colors-link); }
    .art-second-color-scheme .learnpress-page .lp-button.art-button-link-arrow, .art-second-color-scheme
    .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-link-arrow, .art-second-color-scheme
    .comment-respond .comment-form input[type=submit].art-button-link-arrow, .art-second-color-scheme
    body.learnpress-profile .learn-press-form-login button[type=submit].art-button-link-arrow, .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit].art-button-link-arrow, .art-second-color-scheme
    button.art-button-link-arrow, .art-second-color-scheme
    input[type="submit"].art-button-link-arrow, .art-second-color-scheme
    input[type="button"].art-button-link-arrow {
      color: var(--art-bg-link); }
    .learnpress-page .lp-button.art-button-link-arrow:before,
    .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-link-arrow:before,
    .comment-respond .comment-form input[type=submit].art-button-link-arrow:before,
    body.learnpress-profile .learn-press-form-login button[type=submit].art-button-link-arrow:before, body.learnpress-profile .learn-press-form-register button[type=submit].art-button-link-arrow:before,
    button.art-button-link-arrow:before,
    input[type="submit"].art-button-link-arrow:before,
    input[type="button"].art-button-link-arrow:before {
      content: '\c007';
      font-family: "denaro-font";
      font-size: 28px;
      line-height: 1em;
      width: 1em;
      height: 1em;
      margin: auto !important;
      position: absolute;
      left: auto;
      right: 0;
      top: 0;
      bottom: 0;
      -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.68, -2, 0.265, 1.55);
      transition: -webkit-transform 0.5s cubic-bezier(0.68, -2, 0.265, 1.55);
      transition: transform 0.5s cubic-bezier(0.68, -2, 0.265, 1.55);
      transition: transform 0.5s cubic-bezier(0.68, -2, 0.265, 1.55), -webkit-transform 0.5s cubic-bezier(0.68, -2, 0.265, 1.55); }
    .learnpress-page .lp-button.art-button-link-arrow:hover,
    .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-link-arrow:hover,
    .comment-respond .comment-form input[type=submit].art-button-link-arrow:hover,
    body.learnpress-profile .learn-press-form-login button[type=submit].art-button-link-arrow:hover, body.learnpress-profile .learn-press-form-register button[type=submit].art-button-link-arrow:hover,
    button.art-button-link-arrow:hover,
    input[type="submit"].art-button-link-arrow:hover,
    input[type="button"].art-button-link-arrow:hover {
      color: var(--art-colors-hover);
      background-color: transparent; }
      .art-second-color-scheme .learnpress-page .lp-button.art-button-link-arrow:hover, .art-second-color-scheme
      .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-link-arrow:hover, .art-second-color-scheme
      .comment-respond .comment-form input[type=submit].art-button-link-arrow:hover, .art-second-color-scheme
      body.learnpress-profile .learn-press-form-login button[type=submit].art-button-link-arrow:hover, .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit].art-button-link-arrow:hover, .art-second-color-scheme
      button.art-button-link-arrow:hover, .art-second-color-scheme
      input[type="submit"].art-button-link-arrow:hover, .art-second-color-scheme
      input[type="button"].art-button-link-arrow:hover {
        color: var(--art-bg-hover); }
      .learnpress-page .lp-button.art-button-link-arrow:hover:before,
      .learnpress-checkout #checkout-payment #checkout-order-action button.art-button-link-arrow:hover:before,
      .comment-respond .comment-form input[type=submit].art-button-link-arrow:hover:before,
      body.learnpress-profile .learn-press-form-login button[type=submit].art-button-link-arrow:hover:before, body.learnpress-profile .learn-press-form-register button[type=submit].art-button-link-arrow:hover:before,
      button.art-button-link-arrow:hover:before,
      input[type="submit"].art-button-link-arrow:hover:before,
      input[type="button"].art-button-link-arrow:hover:before {
        -webkit-transform: translateX(10px);
                transform: translateX(10px); }
  .learnpress-page .lp-button.button-purchase-course, .learnpress-page .lp-button.lp-button,
  .learnpress-checkout #checkout-payment #checkout-order-action button.button-purchase-course,
  .learnpress-checkout #checkout-payment #checkout-order-action button.lp-button,
  .comment-respond .comment-form input[type=submit].button-purchase-course,
  .comment-respond .comment-form input[type=submit].lp-button,
  body.learnpress-profile .learn-press-form-login button[type=submit].button-purchase-course,
  body.learnpress-profile .learn-press-form-login button[type=submit].lp-button, body.learnpress-profile .learn-press-form-register button[type=submit].button-purchase-course, body.learnpress-profile .learn-press-form-register button[type=submit].lp-button,
  button.button-purchase-course,
  button.lp-button,
  input[type="submit"].button-purchase-course,
  input[type="submit"].lp-button,
  input[type="button"].button-purchase-course,
  input[type="button"].lp-button {
    font-family: var(--art-button-font-family);
    font-weight: var(--art-button-font-weight);
    font-style: var(--art-button-font-style);
    text-transform: var(--art-button-text-transform);
    -webkit-text-decoration: var(--art-button-text-decoration);
            text-decoration: var(--art-button-text-decoration);
    font-size: var(--art-button-font-size);
    line-height: var(--art-button-line-height);
    letter-spacing: var(--art-button-letter-spacing);
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border-radius: 0;
    overflow: visible;
    word-break: normal;
    position: relative;
    z-index: 0;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    border-width: 2px;
    border-style: solid;
    padding: 13px 40px;
    border-color: var(--art-colors-bg);
    background-color: var(--art-colors-bg);
    color: var(--art-colors-light-text); }
    .art-second-color-scheme .learnpress-page .lp-button.button-purchase-course, .art-second-color-scheme .learnpress-page .lp-button.lp-button, .art-second-color-scheme
    .learnpress-checkout #checkout-payment #checkout-order-action button.button-purchase-course, .art-second-color-scheme
    .learnpress-checkout #checkout-payment #checkout-order-action button.lp-button, .art-second-color-scheme
    .comment-respond .comment-form input[type=submit].button-purchase-course, .art-second-color-scheme
    .comment-respond .comment-form input[type=submit].lp-button, .art-second-color-scheme
    body.learnpress-profile .learn-press-form-login button[type=submit].button-purchase-course, .art-second-color-scheme
    body.learnpress-profile .learn-press-form-login button[type=submit].lp-button, .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit].button-purchase-course, .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit].lp-button, .art-second-color-scheme
    button.button-purchase-course, .art-second-color-scheme
    button.lp-button, .art-second-color-scheme
    input[type="submit"].button-purchase-course, .art-second-color-scheme
    input[type="submit"].lp-button, .art-second-color-scheme
    input[type="button"].button-purchase-course, .art-second-color-scheme
    input[type="button"].lp-button {
      border-color: var(--art-bg-bg); }
    .art-second-color-scheme .learnpress-page .lp-button.button-purchase-course, .art-second-color-scheme .learnpress-page .lp-button.lp-button, .art-second-color-scheme
    .learnpress-checkout #checkout-payment #checkout-order-action button.button-purchase-course, .art-second-color-scheme
    .learnpress-checkout #checkout-payment #checkout-order-action button.lp-button, .art-second-color-scheme
    .comment-respond .comment-form input[type=submit].button-purchase-course, .art-second-color-scheme
    .comment-respond .comment-form input[type=submit].lp-button, .art-second-color-scheme
    body.learnpress-profile .learn-press-form-login button[type=submit].button-purchase-course, .art-second-color-scheme
    body.learnpress-profile .learn-press-form-login button[type=submit].lp-button, .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit].button-purchase-course, .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit].lp-button, .art-second-color-scheme
    button.button-purchase-course, .art-second-color-scheme
    button.lp-button, .art-second-color-scheme
    input[type="submit"].button-purchase-course, .art-second-color-scheme
    input[type="submit"].lp-button, .art-second-color-scheme
    input[type="button"].button-purchase-course, .art-second-color-scheme
    input[type="button"].lp-button {
      background-color: var(--art-bg-bg); }
    .art-second-color-scheme .learnpress-page .lp-button.button-purchase-course, .art-second-color-scheme .learnpress-page .lp-button.lp-button, .art-second-color-scheme
    .learnpress-checkout #checkout-payment #checkout-order-action button.button-purchase-course, .art-second-color-scheme
    .learnpress-checkout #checkout-payment #checkout-order-action button.lp-button, .art-second-color-scheme
    .comment-respond .comment-form input[type=submit].button-purchase-course, .art-second-color-scheme
    .comment-respond .comment-form input[type=submit].lp-button, .art-second-color-scheme
    body.learnpress-profile .learn-press-form-login button[type=submit].button-purchase-course, .art-second-color-scheme
    body.learnpress-profile .learn-press-form-login button[type=submit].lp-button, .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit].button-purchase-course, .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit].lp-button, .art-second-color-scheme
    button.button-purchase-course, .art-second-color-scheme
    button.lp-button, .art-second-color-scheme
    input[type="submit"].button-purchase-course, .art-second-color-scheme
    input[type="submit"].lp-button, .art-second-color-scheme
    input[type="button"].button-purchase-course, .art-second-color-scheme
    input[type="button"].lp-button {
      color: var(--art-bg-light-text); }
    .learnpress-page .lp-button.button-purchase-course:hover, .learnpress-page .lp-button.lp-button:hover,
    .learnpress-checkout #checkout-payment #checkout-order-action button.button-purchase-course:hover,
    .learnpress-checkout #checkout-payment #checkout-order-action button.lp-button:hover,
    .comment-respond .comment-form input[type=submit].button-purchase-course:hover,
    .comment-respond .comment-form input[type=submit].lp-button:hover,
    body.learnpress-profile .learn-press-form-login button[type=submit].button-purchase-course:hover,
    body.learnpress-profile .learn-press-form-login button[type=submit].lp-button:hover, body.learnpress-profile .learn-press-form-register button[type=submit].button-purchase-course:hover, body.learnpress-profile .learn-press-form-register button[type=submit].lp-button:hover,
    button.button-purchase-course:hover,
    button.lp-button:hover,
    input[type="submit"].button-purchase-course:hover,
    input[type="submit"].lp-button:hover,
    input[type="button"].button-purchase-course:hover,
    input[type="button"].lp-button:hover {
      border-color: var(--art-colors-bg-hover);
      background-color: var(--art-colors-bg-hover);
      color: var(--art-colors-light-text); }
      .art-second-color-scheme .learnpress-page .lp-button.button-purchase-course:hover, .art-second-color-scheme .learnpress-page .lp-button.lp-button:hover, .art-second-color-scheme
      .learnpress-checkout #checkout-payment #checkout-order-action button.button-purchase-course:hover, .art-second-color-scheme
      .learnpress-checkout #checkout-payment #checkout-order-action button.lp-button:hover, .art-second-color-scheme
      .comment-respond .comment-form input[type=submit].button-purchase-course:hover, .art-second-color-scheme
      .comment-respond .comment-form input[type=submit].lp-button:hover, .art-second-color-scheme
      body.learnpress-profile .learn-press-form-login button[type=submit].button-purchase-course:hover, .art-second-color-scheme
      body.learnpress-profile .learn-press-form-login button[type=submit].lp-button:hover, .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit].button-purchase-course:hover, .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit].lp-button:hover, .art-second-color-scheme
      button.button-purchase-course:hover, .art-second-color-scheme
      button.lp-button:hover, .art-second-color-scheme
      input[type="submit"].button-purchase-course:hover, .art-second-color-scheme
      input[type="submit"].lp-button:hover, .art-second-color-scheme
      input[type="button"].button-purchase-course:hover, .art-second-color-scheme
      input[type="button"].lp-button:hover {
        border-color: var(--art-bg-bg-hover); }
      .art-second-color-scheme .learnpress-page .lp-button.button-purchase-course:hover, .art-second-color-scheme .learnpress-page .lp-button.lp-button:hover, .art-second-color-scheme
      .learnpress-checkout #checkout-payment #checkout-order-action button.button-purchase-course:hover, .art-second-color-scheme
      .learnpress-checkout #checkout-payment #checkout-order-action button.lp-button:hover, .art-second-color-scheme
      .comment-respond .comment-form input[type=submit].button-purchase-course:hover, .art-second-color-scheme
      .comment-respond .comment-form input[type=submit].lp-button:hover, .art-second-color-scheme
      body.learnpress-profile .learn-press-form-login button[type=submit].button-purchase-course:hover, .art-second-color-scheme
      body.learnpress-profile .learn-press-form-login button[type=submit].lp-button:hover, .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit].button-purchase-course:hover, .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit].lp-button:hover, .art-second-color-scheme
      button.button-purchase-course:hover, .art-second-color-scheme
      button.lp-button:hover, .art-second-color-scheme
      input[type="submit"].button-purchase-course:hover, .art-second-color-scheme
      input[type="submit"].lp-button:hover, .art-second-color-scheme
      input[type="button"].button-purchase-course:hover, .art-second-color-scheme
      input[type="button"].lp-button:hover {
        background-color: var(--art-bg-bg-hover); }
      .art-second-color-scheme .learnpress-page .lp-button.button-purchase-course:hover, .art-second-color-scheme .learnpress-page .lp-button.lp-button:hover, .art-second-color-scheme
      .learnpress-checkout #checkout-payment #checkout-order-action button.button-purchase-course:hover, .art-second-color-scheme
      .learnpress-checkout #checkout-payment #checkout-order-action button.lp-button:hover, .art-second-color-scheme
      .comment-respond .comment-form input[type=submit].button-purchase-course:hover, .art-second-color-scheme
      .comment-respond .comment-form input[type=submit].lp-button:hover, .art-second-color-scheme
      body.learnpress-profile .learn-press-form-login button[type=submit].button-purchase-course:hover, .art-second-color-scheme
      body.learnpress-profile .learn-press-form-login button[type=submit].lp-button:hover, .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit].button-purchase-course:hover, .art-second-color-scheme body.learnpress-profile .learn-press-form-register button[type=submit].lp-button:hover, .art-second-color-scheme
      button.button-purchase-course:hover, .art-second-color-scheme
      button.lp-button:hover, .art-second-color-scheme
      input[type="submit"].button-purchase-course:hover, .art-second-color-scheme
      input[type="submit"].lp-button:hover, .art-second-color-scheme
      input[type="button"].button-purchase-course:hover, .art-second-color-scheme
      input[type="button"].lp-button:hover {
        color: var(--art-bg-light-text); }
    .learnpress-page .lp-button.button-purchase-course:hover, .learnpress-page .lp-button.lp-button:hover,
    .learnpress-checkout #checkout-payment #checkout-order-action button.button-purchase-course:hover,
    .learnpress-checkout #checkout-payment #checkout-order-action button.lp-button:hover,
    .comment-respond .comment-form input[type=submit].button-purchase-course:hover,
    .comment-respond .comment-form input[type=submit].lp-button:hover,
    body.learnpress-profile .learn-press-form-login button[type=submit].button-purchase-course:hover,
    body.learnpress-profile .learn-press-form-login button[type=submit].lp-button:hover, body.learnpress-profile .learn-press-form-register button[type=submit].button-purchase-course:hover, body.learnpress-profile .learn-press-form-register button[type=submit].lp-button:hover,
    button.button-purchase-course:hover,
    button.lp-button:hover,
    input[type="submit"].button-purchase-course:hover,
    input[type="submit"].lp-button:hover,
    input[type="button"].button-purchase-course:hover,
    input[type="button"].lp-button:hover {
      opacity: 1; }

.art-button-primary {
  font-family: var(--art-button-font-family);
  font-weight: var(--art-button-font-weight);
  font-style: var(--art-button-font-style);
  text-transform: var(--art-button-text-transform);
  -webkit-text-decoration: var(--art-button-text-decoration);
          text-decoration: var(--art-button-text-decoration);
  font-size: var(--art-button-font-size);
  line-height: var(--art-button-line-height);
  letter-spacing: var(--art-button-letter-spacing);
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  border-radius: 0;
  overflow: visible;
  word-break: normal;
  position: relative;
  z-index: 0;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  border-width: 2px;
  border-style: solid;
  padding: 13px 40px;
  border-color: var(--art-colors-bg);
  background-color: var(--art-colors-bg);
  color: var(--art-colors-light-text); }
  .art-second-color-scheme .art-button-primary {
    border-color: var(--art-bg-bg); }
  .art-second-color-scheme .art-button-primary {
    background-color: var(--art-bg-bg); }
  .art-second-color-scheme .art-button-primary {
    color: var(--art-bg-light-text); }
  .art-button-primary:hover {
    border-color: var(--art-colors-bg-hover);
    background-color: var(--art-colors-bg-hover);
    color: var(--art-colors-light-text); }
    .art-second-color-scheme .art-button-primary:hover {
      border-color: var(--art-bg-bg-hover); }
    .art-second-color-scheme .art-button-primary:hover {
      background-color: var(--art-bg-bg-hover); }
    .art-second-color-scheme .art-button-primary:hover {
      color: var(--art-bg-light-text); }

.art-button-secondary {
  font-family: var(--art-button-font-family);
  font-weight: var(--art-button-font-weight);
  font-style: var(--art-button-font-style);
  text-transform: var(--art-button-text-transform);
  -webkit-text-decoration: var(--art-button-text-decoration);
          text-decoration: var(--art-button-text-decoration);
  font-size: var(--art-button-font-size);
  line-height: var(--art-button-line-height);
  letter-spacing: var(--art-button-letter-spacing);
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  border-radius: 0;
  overflow: visible;
  word-break: normal;
  position: relative;
  z-index: 0;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  border-width: 2px;
  border-style: solid;
  padding: 13px 40px;
  border-color: var(--art-colors-bg);
  background-color: transparent;
  color: var(--art-colors-bg); }
  .art-second-color-scheme .art-button-secondary {
    border-color: var(--art-bg-bg); }
  .art-second-color-scheme .art-button-secondary {
    background-color: transparent; }
  .art-second-color-scheme .art-button-secondary {
    color: var(--art-bg-bg); }
  .art-button-secondary:hover {
    /*background-color: #ffffff;
      color: #000;*/
    background-color: var(--art-colors-bg);
    color: #fff; }
    .art-second-color-scheme .art-button-secondary:hover {
      background-color: var(--art-bg-bg); }

.art-button-third {
  font-family: var(--art-button-font-family);
  font-weight: var(--art-button-font-weight);
  font-style: var(--art-button-font-style);
  text-transform: var(--art-button-text-transform);
  -webkit-text-decoration: var(--art-button-text-decoration);
          text-decoration: var(--art-button-text-decoration);
  font-size: var(--art-button-font-size);
  line-height: var(--art-button-line-height);
  letter-spacing: var(--art-button-letter-spacing);
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  border-radius: 0;
  overflow: visible;
  word-break: normal;
  position: relative;
  z-index: 0;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  padding: 15px 40px;
  background-color: #ffffff;
  color: #000000; }
  .art-button-third:hover {
    background-color: var(--art-colors-heading);
    color: var(--art-colors-bg); }
    .art-second-color-scheme .art-button-third:hover {
      background-color: var(--art-bg-heading); }
    .art-second-color-scheme .art-button-third:hover {
      color: var(--art-bg-bg); }

.art-button-fourth {
  font-family: var(--art-button-font-family);
  font-weight: var(--art-button-font-weight);
  font-style: var(--art-button-font-style);
  text-transform: var(--art-button-text-transform);
  -webkit-text-decoration: var(--art-button-text-decoration);
          text-decoration: var(--art-button-text-decoration);
  font-size: var(--art-button-font-size);
  line-height: var(--art-button-line-height);
  letter-spacing: var(--art-button-letter-spacing);
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  border-radius: 0;
  overflow: visible;
  word-break: normal;
  position: relative;
  z-index: 0;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  border-width: 2px;
  border-style: solid;
  padding: 13px 28px;
  border-color: var(--art-colors-bg);
  background-color: var(--art-colors-bg);
  color: var(--art-colors-link); }
  .art-second-color-scheme .art-button-fourth {
    border-color: var(--art-bg-bg); }
  .art-second-color-scheme .art-button-fourth {
    background-color: var(--art-bg-bg); }
  .art-second-color-scheme .art-button-fourth {
    color: var(--art-bg-link); }
  .art-button-fourth:hover {
    background-color: transparent;
    color: var(--art-colors-bg); }
    .art-second-color-scheme .art-button-fourth:hover {
      background-color: transparent; }
    .art-second-color-scheme .art-button-fourth:hover {
      color: var(--art-bg-bg); }

.art-button-fifth {
  font-family: var(--art-button-font-family);
  font-weight: var(--art-button-font-weight);
  font-style: var(--art-button-font-style);
  text-transform: var(--art-button-text-transform);
  -webkit-text-decoration: var(--art-button-text-decoration);
          text-decoration: var(--art-button-text-decoration);
  font-size: var(--art-button-font-size);
  line-height: var(--art-button-line-height);
  letter-spacing: var(--art-button-letter-spacing);
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  border-radius: 0;
  overflow: visible;
  word-break: normal;
  position: relative;
  z-index: 0;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  border-width: 2px;
  border-style: solid;
  padding: 13px 28px;
  border-color: var(--art-colors-bg);
  background-color: transparent;
  color: var(--art-colors-bg); }
  .art-second-color-scheme .art-button-fifth {
    border-color: var(--art-bg-bg); }
  .art-second-color-scheme .art-button-fifth {
    background-color: transparent; }
  .art-second-color-scheme .art-button-fifth {
    color: var(--art-bg-bg); }
  .art-button-fifth:hover {
    background-color: var(--art-colors-bg);
    color: var(--art-colors-link); }
    .art-second-color-scheme .art-button-fifth:hover {
      background-color: var(--art-bg-bg); }
    .art-second-color-scheme .art-button-fifth:hover {
      color: var(--art-bg-link); }

.art-button-link {
  font-family: var(--art-button-font-family);
  font-weight: var(--art-button-font-weight);
  font-style: var(--art-button-font-style);
  text-transform: var(--art-button-text-transform);
  -webkit-text-decoration: var(--art-button-text-decoration);
          text-decoration: var(--art-button-text-decoration);
  font-size: var(--art-button-font-size);
  line-height: var(--art-button-line-height);
  letter-spacing: var(--art-button-letter-spacing);
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  border-radius: 0;
  overflow: visible;
  word-break: normal;
  position: relative;
  z-index: 0;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  color: var(--art-colors-link);
  border: 0;
  background-color: transparent;
  background-image: none;
  padding: 0; }
  .art-second-color-scheme .art-button-link {
    color: var(--art-bg-link); }
  .art-button-link:hover {
    color: var(--art-colors-hover);
    background-color: transparent; }
    .art-second-color-scheme .art-button-link:hover {
      color: var(--art-bg-hover); }

.art-button-link-arrow {
  font-family: var(--art-button-font-family);
  font-weight: var(--art-button-font-weight);
  font-style: var(--art-button-font-style);
  text-transform: var(--art-button-text-transform);
  -webkit-text-decoration: var(--art-button-text-decoration);
          text-decoration: var(--art-button-text-decoration);
  font-size: var(--art-button-font-size);
  line-height: var(--art-button-line-height);
  letter-spacing: var(--art-button-letter-spacing);
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  border-radius: 0;
  overflow: visible;
  word-break: normal;
  position: relative;
  z-index: 0;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  border: 0;
  background-color: transparent;
  background-image: none;
  padding: 0 40px 0 0;
  color: var(--art-colors-link); }
  .art-second-color-scheme .art-button-link-arrow {
    color: var(--art-bg-link); }
  .art-button-link-arrow:before {
    content: '\c007';
    font-family: "denaro-font";
    font-size: 28px;
    line-height: 1em;
    width: 1em;
    height: 1em;
    margin: auto !important;
    position: absolute;
    left: auto;
    right: 0;
    top: 0;
    bottom: 0;
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.68, -2, 0.265, 1.55);
    transition: -webkit-transform 0.5s cubic-bezier(0.68, -2, 0.265, 1.55);
    transition: transform 0.5s cubic-bezier(0.68, -2, 0.265, 1.55);
    transition: transform 0.5s cubic-bezier(0.68, -2, 0.265, 1.55), -webkit-transform 0.5s cubic-bezier(0.68, -2, 0.265, 1.55); }
  .art-button-link-arrow:hover {
    color: var(--art-colors-hover);
    background-color: transparent; }
    .art-second-color-scheme .art-button-link-arrow:hover {
      color: var(--art-bg-hover); }
    .art-button-link-arrow:hover:before {
      -webkit-transform: translateX(10px);
              transform: translateX(10px); }

.elementor-widget-button .elementor-button {
  font-family: var(--art-button-font-family);
  font-weight: var(--art-button-font-weight);
  font-style: var(--art-button-font-style);
  text-transform: var(--art-button-text-transform);
  -webkit-text-decoration: var(--art-button-text-decoration);
          text-decoration: var(--art-button-text-decoration);
  font-size: var(--art-button-font-size);
  line-height: var(--art-button-line-height);
  letter-spacing: var(--art-button-letter-spacing); }

.art-body-font {
  font-family: var(--art-body-font-family);
  font-weight: var(--art-body-font-weight);
  font-style: var(--art-body-font-style);
  text-transform: var(--art-body-text-transform);
  -webkit-text-decoration: var(--art-body-text-decoration);
          text-decoration: var(--art-body-text-decoration);
  font-size: var(--art-body-font-size);
  line-height: var(--art-body-line-height);
  letter-spacing: var(--art-body-letter-spacing); }
  @media only screen and (max-width: 767px) {
    .art-body-font {
      font-family: var(--art-body-mobile-font-family);
      font-weight: var(--art-body-mobile-font-weight);
      font-style: var(--art-body-mobile-font-style);
      text-transform: var(--art-body-mobile-text-transform);
      -webkit-text-decoration: var(--art-body-mobile-text-decoration);
              text-decoration: var(--art-body-mobile-text-decoration);
      font-size: var(--art-body-mobile-font-size);
      line-height: var(--art-body-mobile-line-height);
      letter-spacing: var(--art-body-mobile-letter-spacing); } }

.art-body-two-font {
  font-family: var(--art-body-two-font-family);
  font-weight: var(--art-body-two-font-weight);
  font-style: var(--art-body-two-font-style);
  text-transform: var(--art-body-two-text-transform);
  -webkit-text-decoration: var(--art-body-two-text-decoration);
          text-decoration: var(--art-body-two-text-decoration);
  font-size: var(--art-body-two-font-size);
  line-height: var(--art-body-two-line-height);
  letter-spacing: var(--art-body-two-letter-spacing); }
  @media only screen and (max-width: 767px) {
    .art-body-two-font {
      font-family: var(--art-body-two-mobile-font-family);
      font-weight: var(--art-body-two-mobile-font-weight);
      font-style: var(--art-body-two-mobile-font-style);
      text-transform: var(--art-body-two-mobile-text-transform);
      -webkit-text-decoration: var(--art-body-two-mobile-text-decoration);
              text-decoration: var(--art-body-two-mobile-text-decoration);
      font-size: var(--art-body-two-mobile-font-size);
      line-height: var(--art-body-two-mobile-line-height);
      letter-spacing: var(--art-body-two-mobile-letter-spacing); } }

.art-body-three-font {
  font-family: var(--art-body-three-font-family);
  font-weight: var(--art-body-three-font-weight);
  font-style: var(--art-body-three-font-style);
  text-transform: var(--art-body-three-text-transform);
  -webkit-text-decoration: var(--art-body-three-text-decoration);
          text-decoration: var(--art-body-three-text-decoration);
  font-size: var(--art-body-three-font-size);
  line-height: var(--art-body-three-line-height);
  letter-spacing: var(--art-body-three-letter-spacing); }
  @media only screen and (max-width: 767px) {
    .art-body-three-font {
      font-family: var(--art-body-three-mobile-font-family);
      font-weight: var(--art-body-three-mobile-font-weight);
      font-style: var(--art-body-three-mobile-font-style);
      text-transform: var(--art-body-three-mobile-text-transform);
      -webkit-text-decoration: var(--art-body-three-mobile-text-decoration);
              text-decoration: var(--art-body-three-mobile-text-decoration);
      font-size: var(--art-body-three-mobile-font-size);
      line-height: var(--art-body-three-mobile-line-height);
      letter-spacing: var(--art-body-three-mobile-letter-spacing); } }

.art-body-four-font {
  font-family: var(--art-body-four-font-family);
  font-weight: var(--art-body-four-font-weight);
  font-style: var(--art-body-four-font-style);
  text-transform: var(--art-body-four-text-transform);
  -webkit-text-decoration: var(--art-body-four-text-decoration);
          text-decoration: var(--art-body-four-text-decoration);
  font-size: var(--art-body-four-font-size);
  line-height: var(--art-body-four-line-height);
  letter-spacing: var(--art-body-four-letter-spacing); }
  @media only screen and (max-width: 767px) {
    .art-body-four-font {
      font-family: var(--art-body-four-mobile-font-family);
      font-weight: var(--art-body-four-mobile-font-weight);
      font-style: var(--art-body-four-mobile-font-style);
      text-transform: var(--art-body-four-mobile-text-transform);
      -webkit-text-decoration: var(--art-body-four-mobile-text-decoration);
              text-decoration: var(--art-body-four-mobile-text-decoration);
      font-size: var(--art-body-four-mobile-font-size);
      line-height: var(--art-body-four-mobile-line-height);
      letter-spacing: var(--art-body-four-mobile-letter-spacing); } }

.art-body-five-font {
  font-family: var(--art-body-five-font-family);
  font-weight: var(--art-body-five-font-weight);
  font-style: var(--art-body-five-font-style);
  text-transform: var(--art-body-five-text-transform);
  -webkit-text-decoration: var(--art-body-five-text-decoration);
          text-decoration: var(--art-body-five-text-decoration);
  font-size: var(--art-body-five-font-size);
  line-height: var(--art-body-five-line-height);
  letter-spacing: var(--art-body-five-letter-spacing); }

.art-second-color-scheme {
  color: var(--art-second-colors-text); }

.art-heading-color {
  color: var(--art-colors-heading); }
  .art-second-color-scheme .art-heading-color {
    color: var(--art-bg-heading); }

.art-second-bg {
  background-color: var(--art-colors-second-bg); }
  .art-second-color-scheme .art-second-bg {
    background-color: var(--art-bg-second-bg); }

.art-third-bg {
  background-color: var(--art-colors-third-bg); }
  .art-second-color-scheme .art-third-bg {
    background-color: var(--art-bg-third-bg); }

.art-hidden {
  opacity: 0; }

.art-visible {
  opacity: 1; }

.art-placeholder {
  background-color: var(--art-colors-second-bg);
  color: var(--art-colors-heading);
  font-size: 60px;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative; }
  .art-second-color-scheme .art-placeholder {
    background-color: var(--art-bg-second-bg); }
  .art-second-color-scheme .art-placeholder {
    color: var(--art-bg-heading); }
  .art-placeholder svg {
    fill: currentColor;
    width: 1em;
    height: 1em;
    margin: auto !important;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0; }

.art-svg-line {
  position: absolute;
  left: 0;
  bottom: 0; }
  .art-svg-line svg {
    fill: transparent;
    stroke: var(--art-colors-link);
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    -webkit-animation: animated_line 4s linear forwards;
            animation: animated_line 4s linear forwards; }
    .art-second-color-scheme .art-svg-line svg {
      stroke: var(--art-second-colors-link); }

.art-theme-tag {
  font-family: var(--art-body-three-font-family);
  font-weight: var(--art-body-three-font-weight);
  font-style: var(--art-body-three-font-style);
  text-transform: var(--art-body-three-text-transform);
  -webkit-text-decoration: var(--art-body-three-text-decoration);
          text-decoration: var(--art-body-three-text-decoration);
  font-size: var(--art-body-three-font-size);
  line-height: var(--art-body-three-line-height);
  letter-spacing: var(--art-body-three-letter-spacing);
  background-color: var(--art-colors-fourth-bg);
  display: inline-block;
  padding: 7px 16px;
  line-height: 18px !important;
  margin-right: 5px;
  margin-bottom: 10px; }
  @media only screen and (max-width: 767px) {
    .art-theme-tag {
      font-family: var(--art-body-three-mobile-font-family);
      font-weight: var(--art-body-three-mobile-font-weight);
      font-style: var(--art-body-three-mobile-font-style);
      text-transform: var(--art-body-three-mobile-text-transform);
      -webkit-text-decoration: var(--art-body-three-mobile-text-decoration);
              text-decoration: var(--art-body-three-mobile-text-decoration);
      font-size: var(--art-body-three-mobile-font-size);
      line-height: var(--art-body-three-mobile-line-height);
      letter-spacing: var(--art-body-three-mobile-letter-spacing); } }
  .art-second-color-scheme .art-theme-tag {
    background-color: var(--art-bg-fourth-bg); }

@-webkit-keyframes animated_line {
  to {
    stroke-dashoffset: 0; } }

@keyframes animated_line {
  to {
    stroke-dashoffset: 0; } }

.art--alignment-left {
  text-align: left; }

.art--alignment-center {
  text-align: center; }

.art--alignment-right {
  text-align: right; }

@media only screen and (max-width: 1024px) {
  .art--alignment-tablet-left {
    text-align: left; }
  .art--alignment-tablet-center {
    text-align: center; }
  .art--alignment-tablet-right {
    text-align: right; } }

@media only screen and (max-width: 767px) {
  .art--alignment-mobile-left {
    text-align: left; }
  .art--alignment-mobile-center {
    text-align: center; }
  .art--alignment-mobile-right {
    text-align: right; } }

.art-clearfix::after {
  content: "";
  clear: both;
  display: table; }

p.stars a:hover:after,
p.stars a:after {
  letter-spacing: 5px; }

.art-form-button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .art-form-button-wrap.art-form-button-right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse; }

.mfp-bg {
  background-color: var(--art-popup-bg-color);
  background-image: var(--art-popup-bg-image);
  background-repeat: var(--art-popup-bg-repeat);
  background-position: var(--art-popup-bg-position);
  background-size: var(--art-popup-bg-size);
  background-attachment: var(--art-popup-bg-attachment); }

.mfp-container {
  padding: 0; }
  .mfp-container:before {
    content: none;
    display: none; }
  body.admin-bar .mfp-container {
    padding-top: 32px; }
    @media only screen and (max-width: 782px) {
      body.admin-bar .mfp-container {
        padding-top: 46px; } }

.mfp-content {
  display: block;
  height: 100%; }

.art-popup-container {
  position: relative;
  margin: 0;
  /*padding: 0 0 90px;*/
  padding: 0;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  .art-popup-container .art-popup-heading {
    height: 103px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: var(--art-container-hor-pad);
    padding-right: var(--art-container-hor-pad); }
    .art-popup-container .art-popup-heading .art-popup-logo img {
      width: auto;
      max-height: 100%; }
  .art-popup-container .art-popup-content {
    position: relative;
    z-index: 1;
    -webkit-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .art-popup-container .wpcf7 form.wpcf7-form textarea {
    height: 112px; }
  .art-popup-container .mfp-close {
    border: 0;
    background-color: transparent;
    background-image: none;
    color: var(--art-colors-link);
    font-size: 32px;
    line-height: 1em;
    -webkit-box-shadow: none;
            box-shadow: none;
    text-shadow: none;
    border-radius: 0;
    width: 1em;
    height: 1em;
    margin: auto !important;
    position: absolute;
    left: auto;
    right: 41px;
    top: 36px;
    bottom: auto;
    text-indent: -9999px;
    opacity: 1; }
    .art-popup-container .mfp-close:hover {
      color: var(--art-colors-hover); }
    .art-popup-container .mfp-close:before {
      font-family: "denaro-font";
      content: '\c022';
      width: 1em;
      height: 1em;
      margin: auto !important;
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      text-indent: 0; }
  @media only screen and (max-width: 540px) {
    .art-popup-container .art-svg-line {
      display: none; } }

@media only screen and (min-width: 768px) {
  .art-default-popup-first-start-col {
    /*padding-top: 40px;*/ } }

@media only screen and (max-width: 767px) {
  .art-default-popup-first-end-col {
    margin-top: 40px; } }

.art-default-popup-first-title {
  margin-bottom: 30px; }

.art-default-popup-first-button-wrap {
  margin-top: 16px; }

/**
* Fade-zoom animation for first dialog
*/
/* start state */
.my-mfp-zoom-in .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
  transform: scale(0.8); }

/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1); }

/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0; }

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out; }

/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 1; }

/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0; }

.art-social-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: -9px; }
  .art-social-container a {
    margin: 9px; }
    .art-social-container a i {
      font-size: 18px;
      line-height: 1em;
      display: block; }

.art-subscribe-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative; }
  @media only screen and (max-width: 540px) {
    .art-subscribe-form {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }
  .art-subscribe-form > span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .art-subscribe-form [type=submit] {
    margin-left: 10px; }
    @media only screen and (max-width: 540px) {
      .art-subscribe-form [type=submit] {
        margin-top: 20px;
        margin-left: 0; } }
    .art-subscribe-form [type=submit].art-button-primary, .art-subscribe-form [type=submit].art-button-secondary, .art-subscribe-form [type=submit].art-button-third {
      padding-left: 18px;
      padding-right: 18px; }
  .art-subscribe-form .ajax-loader {
    margin: auto !important;
    position: absolute;
    top: 16px;
    right: 0;
    bottom: auto;
    left: 0; }

.art-block-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.art-display-block {
  display: block; }

.art-display-none {
  display: none; }

#art-main-holder {
  position: relative;
  right: 0; }
  #art-main-holder.art-no-transform {
    -webkit-transform: none !important;
            transform: none !important; }

.art-main-holder-mask {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 400ms;
  transition: opacity 400ms;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 60;
  background: rgba(248, 248, 248, 0.85); }
  .art-cart-sidebar-open .art-main-holder-mask {
    opacity: 1;
    visibility: visible; }

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px; }

.screen-reader-text,
.gallery-caption {
  font-size: 100%; }

.bypostauthor {
  font-size: 100%; }

/* Preloader */
.art-preloader-holder {
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 99999999999999; }
  .art-preloader-holder .art-preloader-holder-data {
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .art-preloader-holder img.img-logotype {
    display: none; }

/* Slick */
.slick-dotted.slick-slider {
  margin-bottom: 0; }

.slick-dots {
  list-style: none; }
  .slick-dots li {
    margin: 0; }
    .slick-dots li button:before {
      content: '';
      width: 10px;
      height: 10px;
      border-width: 1px;
      border-style: solid;
      border-color: var(--art-colors-heading);
      border-radius: 100%;
      opacity: 1 !important; }
      .art-second-color-scheme .slick-dots li button:before {
        border-color: var(--art-bg-heading); }
    .slick-dots li button:hover:before {
      opacity: 0.8 !important; }
    .slick-dots li.slick-active button:before {
      background-color: var(--art-colors-heading); }
      .art-second-color-scheme .slick-dots li.slick-active button:before {
        background-color: var(--art-bg-heading); }

/* Pagination */
.art-loader-wrapper {
  opacity: 0;
  visibility: hidden;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  -webkit-transition: opacity .3s ease-in-out, visibility .3s ease-in-out;
  transition: opacity .3s ease-in-out, visibility .3s ease-in-out; }
  .art-loader-wrapper .art-loader {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .art-loader-wrapper .art-loader-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .art-loader-wrapper .art-loader-dot {
    margin: 2px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--art-colors-heading);
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    -webkit-animation: scale-dot 1.2s ease-out infinite;
            animation: scale-dot 1.2s ease-out infinite; }
    .art-loader-wrapper .art-loader-dot:nth-of-type(2) {
      -webkit-animation-delay: 0.2s;
              animation-delay: 0.2s; }
    .art-loader-wrapper .art-loader-dot:nth-of-type(3) {
      -webkit-animation-delay: 0.3s;
              animation-delay: 0.3s; }
    .art-loader-wrapper .art-loader-dot:nth-of-type(4) {
      -webkit-animation-delay: 0.4s;
              animation-delay: 0.4s; }
    .art-loader-wrapper .art-loader-dot:nth-of-type(5) {
      -webkit-animation-delay: 0.5s;
              animation-delay: 0.5s; }

@-webkit-keyframes scale-dot {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5); }
  25% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  75% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5); }
  100% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5); } }

@keyframes scale-dot {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5); }
  25% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  75% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5); }
  100% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5); } }

.art-load-more-wrapper {
  -webkit-transition: opacity .3s ease-in-out, visibility .3s ease-in-out;
  transition: opacity .3s ease-in-out, visibility .3s ease-in-out; }

.art-pagination-wrapper,
.art-shop-pagination-wrapper {
  position: relative; }
  .art-pagination-wrapper.art-is-loading .art-load-more-wrapper,
  .art-shop-pagination-wrapper.art-is-loading .art-load-more-wrapper {
    opacity: 0;
    visibility: hidden; }
  .art-pagination-wrapper.art-is-loading .art-loader-wrapper,
  .art-shop-pagination-wrapper.art-is-loading .art-loader-wrapper {
    opacity: 1;
    visibility: visible; }

.art-load-more-button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 80px; }

.art-pagination {
  margin-top: 100px;
  padding-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .art-load-more-pagination .art-pagination {
    display: none; }
  .art-pagination .art-left-arrow {
    margin-right: 25px; }
  .art-pagination .art-right-arrow {
    margin-left: 25px; }
  .art-pagination .art-right-arrow,
  .art-pagination .art-left-arrow {
    font-size: 24px; }
    .art-pagination .art-right-arrow *,
    .art-pagination .art-left-arrow * {
      display: block; }
    .art-pagination .art-right-arrow a,
    .art-pagination .art-left-arrow a {
      color: var(--art-colors-heading); }
      .art-pagination .art-right-arrow a:hover,
      .art-pagination .art-left-arrow a:hover {
        color: var(--art-colors-link); }
  .art-pagination .art-center-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -10px; }
    .art-pagination .art-center-buttons .page-numbers {
      margin: 0 10px; }
      .art-pagination .art-center-buttons .page-numbers.current {
        color: var(--art-colors-link); }
    .art-pagination .art-center-buttons a.page-numbers {
      color: var(--art-colors-heading); }
      .art-pagination .art-center-buttons a.page-numbers:hover {
        color: var(--art-colors-link); }

.art-sub-pagination {
  text-align: center;
  padding-top: 25px;
  clear: both; }
  .art-sub-pagination .art-sub-pagination-title {
    margin: 0 0 12px; }
  .art-sub-pagination > span,
  .art-sub-pagination > a {
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px; }
  .art-sub-pagination .post-page-numbers.current {
    color: var(--art-colors-link); }
  .art-sub-pagination a.post-page-numbers {
    color: var(--art-colors-heading); }
    .art-sub-pagination a.post-page-numbers:hover {
      color: var(--art-colors-link); }

.elementor .wp-block-separator,
.wp-block-separator {
  max-width: 300px; }
  .elementor .wp-block-separator.is-style-wide,
  .wp-block-separator.is-style-wide {
    max-width: none; }

.art-post-pagination {
  text-align: center;
  margin-bottom: 40px; }
  .art-post-pagination .art-post-pages-wrapper {
    margin-bottom: 10px; }
  .art-post-pagination .post-page-numbers {
    margin: 0 7px;
    display: inline-block;
    line-height: 20px; }
    .art-post-pagination .post-page-numbers span {
      line-height: 20px;
      display: inline-block; }
    .art-post-pagination .post-page-numbers.current {
      border-bottom-width: 1px;
      border-bottom-style: solid;
      border-color: var(--art-colors-heading); }
      .art-second-color-scheme .art-post-pagination .post-page-numbers.current {
        border-color: var(--art-bg-heading); }

.art-ajax-posts-wrapper {
  position: relative; }
  .art-ajax-posts-wrapper:before {
    content: '';
    background-color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    cursor: wait; }
  .art-ajax-posts-wrapper.art-loading:before {
    visibility: visible;
    opacity: 1; }

/* Ajax Terms List */
.art-ajax-terms-list-wrapper {
  margin-bottom: 40px;
  overflow: hidden; }

.art-ajax-terms-list {
  font-family: var(--art-body-three-font-family);
  font-weight: var(--art-body-three-font-weight);
  font-style: var(--art-body-three-font-style);
  text-transform: var(--art-body-three-text-transform);
  -webkit-text-decoration: var(--art-body-three-text-decoration);
          text-decoration: var(--art-body-three-text-decoration);
  font-size: var(--art-body-three-font-size);
  line-height: var(--art-body-three-line-height);
  letter-spacing: var(--art-body-three-letter-spacing);
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -20px -20px 0; }
  @media only screen and (max-width: 767px) {
    .art-ajax-terms-list {
      font-family: var(--art-body-three-mobile-font-family);
      font-weight: var(--art-body-three-mobile-font-weight);
      font-style: var(--art-body-three-mobile-font-style);
      text-transform: var(--art-body-three-mobile-text-transform);
      -webkit-text-decoration: var(--art-body-three-mobile-text-decoration);
              text-decoration: var(--art-body-three-mobile-text-decoration);
      font-size: var(--art-body-three-mobile-font-size);
      line-height: var(--art-body-three-mobile-line-height);
      letter-spacing: var(--art-body-three-mobile-letter-spacing); } }
  @media only screen and (max-width: 767px) {
    .art-ajax-terms-list {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start; } }
  .art-ajax-terms-list a {
    margin: 20px 20px 0;
    color: var(--art-colors-text); }
    .art-second-color-scheme .art-ajax-terms-list a {
      color: var(--art-bg-text); }
    .art-ajax-terms-list a:hover, .art-ajax-terms-list a.art-current-item {
      color: var(--art-colors-bg);
      border-bottom: 2px solid;
      padding-bottom: 5px; }
      .art-second-color-scheme .art-ajax-terms-list a:hover, .art-second-color-scheme .art-ajax-terms-list a.art-current-item {
        color: var(--art-bg-bg); }

.art-ajax-load-more-posts-button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 80px;
  position: relative; }
  .art-ajax-load-more-posts-button-wrap.art-podcast-load-button {
    margin-top: 50px; }
  .art-ajax-load-more-posts-button-wrap.art-hide {
    display: none; }
  .art-ajax-load-more-posts-button-wrap.art-loading .art-ajax-load-more-posts-button {
    opacity: 0;
    visibility: hidden; }
  .art-ajax-load-more-posts-button-wrap.art-loading .art-loader-wrapper {
    opacity: 1;
    visibility: visible; }

.art-swiper-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px; }
  @media only screen and (max-width: 767px) {
    .art-swiper-top {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; } }
  .art-swiper-top .art-swiper-title-wrap {
    padding-right: 20px; }
    @media only screen and (max-width: 767px) {
      .art-swiper-top .art-swiper-title-wrap {
        margin-bottom: 40px;
        padding-right: 0; } }

.art-swiper-title {
  margin: 0; }

.art-swiper-bottom {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

/* swiper arrows wide */
.art-swiper-arrow-wide {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 10;
  cursor: none; }
  .art-swiper-arrow-wide.swiper-button-disabled {
    opacity: .4; }
  .art-swiper-arrow-wide span {
    color: var(--art-colors-link);
    font-size: 70px;
    line-height: 1em;
    width: 1em;
    height: 1em;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    left: -35px;
    top: -35px; }
    .art-second-color-scheme .art-swiper-arrow-wide span {
      color: var(--art-bg-link); }
  .art-swiper-arrow-wide:hover span {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity .1s ease, visibility .1s ease, -webkit-transform .1s ease;
    transition: opacity .1s ease, visibility .1s ease, -webkit-transform .1s ease;
    transition: transform .1s ease, opacity .1s ease, visibility .1s ease;
    transition: transform .1s ease, opacity .1s ease, visibility .1s ease, -webkit-transform .1s ease; }
  .art-swiper-arrow-wide.art-swiper-arrow-prev {
    left: 0; }
  .art-swiper-arrow-wide.art-swiper-arrow-next {
    right: 0; }

/* swiper arrows compact */
.art-swiper-arrows-compact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.art-swiper-arrow-compact {
  background-color: transparent;
  border-width: 2px;
  border-style: solid;
  border-color: var(--art-colors-link);
  color: var(--art-colors-link);
  font-size: 24px;
  display: block;
  width: 46px;
  height: 46px;
  position: relative;
  cursor: pointer;
  -webkit-transition: background-color .2s ease-in-out, color .2s ease-in-out, border-color .3s ease-in-out;
  transition: background-color .2s ease-in-out, color .2s ease-in-out, border-color .3s ease-in-out; }
  .art-second-color-scheme .art-swiper-arrow-compact {
    border-color: var(--art-bg-link); }
  .art-second-color-scheme .art-swiper-arrow-compact {
    color: var(--art-bg-link); }
  .art-swiper-arrow-compact:hover {
    background-color: var(--art-colors-link);
    color: var(--art-colors-bg); }
    .art-second-color-scheme .art-swiper-arrow-compact:hover {
      background-color: var(--art-bg-link); }
    .art-second-color-scheme .art-swiper-arrow-compact:hover {
      color: var(--art-bg-bg); }
  .art-swiper-arrow-compact.swiper-button-disabled {
    opacity: .4;
    pointer-events: none; }
  .art-swiper-arrow-compact + .art-swiper-arrow-compact {
    margin-left: 20px; }
  .art-swiper-arrow-compact span {
    width: 1em;
    height: 1em;
    margin: auto !important;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0; }
    .art-swiper-arrow-compact span:before {
      width: 1em;
      height: 1em;
      margin: auto !important;
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0; }

.art-accordion {
  position: relative; }
  .art-accordion__item {
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
    .art-accordion__item-title {
      color: var(--art-colors-heading);
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      cursor: pointer;
      padding: 19px 0;
      position: relative; }
      .art-second-color-scheme .art-accordion__item-title {
        color: var(--art-bg-heading); }
      .art-accordion__item-title i {
        -webkit-transition: -webkit-transform .3s ease-in-out;
        transition: -webkit-transform .3s ease-in-out;
        transition: transform .3s ease-in-out;
        transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out; }
    .art-accordion__item.art-active .art-accordion__item-title i {
      -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg); }
  .art-accordion__item-content {
    font-family: var(--art-body-three-font-family);
    font-weight: var(--art-body-three-font-weight);
    font-style: var(--art-body-three-font-style);
    text-transform: var(--art-body-three-text-transform);
    -webkit-text-decoration: var(--art-body-three-text-decoration);
            text-decoration: var(--art-body-three-text-decoration);
    font-size: var(--art-body-three-font-size);
    line-height: var(--art-body-three-line-height);
    letter-spacing: var(--art-body-three-letter-spacing);
    display: none;
    padding: 0 0 30px; }
    @media only screen and (max-width: 767px) {
      .art-accordion__item-content {
        font-family: var(--art-body-three-mobile-font-family);
        font-weight: var(--art-body-three-mobile-font-weight);
        font-style: var(--art-body-three-mobile-font-style);
        text-transform: var(--art-body-three-mobile-text-transform);
        -webkit-text-decoration: var(--art-body-three-mobile-text-decoration);
                text-decoration: var(--art-body-three-mobile-text-decoration);
        font-size: var(--art-body-three-mobile-font-size);
        line-height: var(--art-body-three-mobile-line-height);
        letter-spacing: var(--art-body-three-mobile-letter-spacing); } }

/* Headers Styles */
.art--header {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity .3s ease-out, visibility .3s ease-out;
  transition: opacity .3s ease-out, visibility .3s ease-out; }
  .art--header.art-header-hide {
    opacity: 0;
    visibility: hidden; }
  .art--header.art-header-transparent .art-header-two-content, .art--header.art-header-transparent .art-header-one-content, .art--header.art-header-transparent .art-header-three-content {
    background-color: transparent; }
  .art--header:not(.art-header-transparent) .art-header-two-content, .art--header:not(.art-header-transparent) .art-header-one-content, .art--header:not(.art-header-transparent) .art-header-three-content {
    background-color: var(--art-colors-bg-header) !important; }

.art-navigation-container ul,
.art-nav-container ul {
  list-style: none;
  margin: 0; }

.art-navigation-container li,
.art-nav-container li {
  margin: 0; }

ul.menu,
ul.sub-menu {
  list-style: none;
  margin: 0; }

.art-header-login-link {
  height: 28px; }
  .art-header-login-link i:before {
    font-size: 25px;
    color: #000; }

.art-herder-top-banner {
  margin-top: -40px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-height: 40px;
  height: 40px;
  position: relative;
  background-color: var(--art-colors-header-banner-bg); }
  .art-second-color-scheme .art-herder-top-banner {
    background-color: var(--art-bg-header-banner-bg); }
  .art-herder-top-banner__content {
    color: var(--art-colors-header-banner-text);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .art-second-color-scheme .art-herder-top-banner__content {
      color: var(--art-bg-header-banner-text); }
    .art-herder-top-banner__content .art-header-banner-countdown {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      font-family: var(--art-body-three-font-family);
      font-weight: var(--art-body-three-font-weight);
      font-style: var(--art-body-three-font-style);
      text-transform: var(--art-body-three-text-transform);
      -webkit-text-decoration: var(--art-body-three-text-decoration);
              text-decoration: var(--art-body-three-text-decoration);
      font-size: var(--art-body-three-font-size);
      line-height: var(--art-body-three-line-height);
      letter-spacing: var(--art-body-three-letter-spacing);
      margin-right: 20px; }
      @media only screen and (max-width: 767px) {
        .art-herder-top-banner__content .art-header-banner-countdown {
          font-family: var(--art-body-three-mobile-font-family);
          font-weight: var(--art-body-three-mobile-font-weight);
          font-style: var(--art-body-three-mobile-font-style);
          text-transform: var(--art-body-three-mobile-text-transform);
          -webkit-text-decoration: var(--art-body-three-mobile-text-decoration);
                  text-decoration: var(--art-body-three-mobile-text-decoration);
          font-size: var(--art-body-three-mobile-font-size);
          line-height: var(--art-body-three-mobile-line-height);
          letter-spacing: var(--art-body-three-mobile-letter-spacing); } }
      .art-herder-top-banner__content .art-header-banner-countdown .art-countdowntime {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; }
        .art-herder-top-banner__content .art-header-banner-countdown .art-countdowntime p {
          margin: 0; }
    .art-herder-top-banner__content .art-header-top-banner-text {
      font-family: var(--art-body-five-font-family);
      font-weight: var(--art-body-five-font-weight);
      font-style: var(--art-body-five-font-style);
      text-transform: var(--art-body-five-text-transform);
      -webkit-text-decoration: var(--art-body-five-text-decoration);
              text-decoration: var(--art-body-five-text-decoration);
      font-size: var(--art-body-five-font-size);
      line-height: var(--art-body-five-line-height);
      letter-spacing: var(--art-body-five-letter-spacing);
      margin-right: 20px; }
    .art-herder-top-banner__content .art-header-top-banner-link {
      color: inherit;
      font-family: var(--art-body-four-font-family);
      font-weight: var(--art-body-four-font-weight);
      font-style: var(--art-body-four-font-style);
      text-transform: var(--art-body-four-text-transform);
      -webkit-text-decoration: var(--art-body-four-text-decoration);
              text-decoration: var(--art-body-four-text-decoration);
      font-size: var(--art-body-four-font-size);
      line-height: var(--art-body-four-line-height);
      letter-spacing: var(--art-body-four-letter-spacing); }
      @media only screen and (max-width: 767px) {
        .art-herder-top-banner__content .art-header-top-banner-link {
          font-family: var(--art-body-four-mobile-font-family);
          font-weight: var(--art-body-four-mobile-font-weight);
          font-style: var(--art-body-four-mobile-font-style);
          text-transform: var(--art-body-four-mobile-text-transform);
          -webkit-text-decoration: var(--art-body-four-mobile-text-decoration);
                  text-decoration: var(--art-body-four-mobile-text-decoration);
          font-size: var(--art-body-four-mobile-font-size);
          line-height: var(--art-body-four-mobile-line-height);
          letter-spacing: var(--art-body-four-mobile-letter-spacing); } }
    .art-herder-top-banner__content .art-header-banner-close-button {
      position: absolute;
      right: 20px; }
      .art-herder-top-banner__content .art-header-banner-close-button i:before {
        font-size: 20px; }

.art-herder-top-header {
  max-height: 40px;
  height: 40px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--art-colors-header-top-bg); }
  .art-herder-top-header .art-header-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .art-herder-top-header .art-header-container .right-side {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .art-herder-top-header .art-header-container .right-side i {
        color: var(--art-colors-header-top-text); }
    .art-herder-top-header .art-header-container .left-side {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .art-herder-top-header .art-header-container .left-side .meta-part {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        color: var(--art-colors-header-top-text);
        font-weight: 600 !important;
        font-family: var(--art-body-two-font-family);
        font-weight: var(--art-body-two-font-weight);
        font-style: var(--art-body-two-font-style);
        text-transform: var(--art-body-two-text-transform);
        -webkit-text-decoration: var(--art-body-two-text-decoration);
                text-decoration: var(--art-body-two-text-decoration);
        font-size: var(--art-body-two-font-size);
        line-height: var(--art-body-two-line-height);
        letter-spacing: var(--art-body-two-letter-spacing); }
        .art-herder-top-header .art-header-container .left-side .meta-part svg {
          margin-right: 10px; }
          @media only screen and (max-width: 575px) {
            .art-herder-top-header .art-header-container .left-side .meta-part svg {
              margin-right: 3px; } }
          .art-herder-top-header .art-header-container .left-side .meta-part svg path {
            fill: var(--art-colors-header-top-text); }
        @media only screen and (max-width: 767px) {
          .art-herder-top-header .art-header-container .left-side .meta-part {
            font-family: var(--art-body-two-mobile-font-family);
            font-weight: var(--art-body-two-mobile-font-weight);
            font-style: var(--art-body-two-mobile-font-style);
            text-transform: var(--art-body-two-mobile-text-transform);
            -webkit-text-decoration: var(--art-body-two-mobile-text-decoration);
                    text-decoration: var(--art-body-two-mobile-text-decoration);
            font-size: var(--art-body-two-mobile-font-size);
            line-height: var(--art-body-two-mobile-line-height);
            letter-spacing: var(--art-body-two-mobile-letter-spacing); } }
        .art-herder-top-header .art-header-container .left-side .meta-part:not(:last-child) {
          margin-right: 20px; }
          @media only screen and (max-width: 575px) {
            .art-herder-top-header .art-header-container .left-side .meta-part:not(:last-child) {
              margin-right: 10px; } }

.art--logo-container a .logotype-text {
  margin: 0; }

@media only screen and (min-width: 1241px) {
  .info_block_hamburger {
    display: none; } }

/* Mobile menu */
body.admin-bar .art-mobile-menu-wrapper .art-nav-container .art--mobile-menu-navigation-wrapper {
  padding-top: 45px; }
  @media only screen and (max-width: 782px) {
    body.admin-bar .art-mobile-menu-wrapper .art-nav-container .art--mobile-menu-navigation-wrapper {
      padding-top: 59px; } }

.art--mobile-menu-navigation-wrapper.sidebar-open {
  right: 0 !important; }

.art-mobile-menu-wrapper {
  display: none;
  /*background-color: rgba(0, 0, 0, 0.6);*/
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1098; }
  .art-mobile-menu-wrapper .art-sidebar-overlay.art--mobile-menu-icon {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1099;
    cursor: pointer; }
  .art-mobile-menu-wrapper .art-nav-container .art--mobile-menu-navigation-wrapper {
    position: fixed;
    z-index: 1800;
    right: 0;
    top: 0;
    width: 260px;
    background-color: #fff;
    padding: 15px 10px 25px 30px;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100vh;
    border-left: 1px solid rgba(0, 0, 0, 0.08); }
    .art-mobile-menu-wrapper .art-nav-container .art--mobile-menu-navigation-wrapper .art--mobile-menu-search form {
      position: relative; }
      .art-mobile-menu-wrapper .art-nav-container .art--mobile-menu-navigation-wrapper .art--mobile-menu-search form i {
        position: absolute;
        left: -4px;
        font-size: 18px !important;
        height: 32px !important;
        line-height: 32px !important; }
      .art-mobile-menu-wrapper .art-nav-container .art--mobile-menu-navigation-wrapper .art--mobile-menu-search form .art-mobile-search-input {
        border-top: unset;
        border-left: unset;
        border-right: unset;
        border-width: 1px;
        padding: 4px 4px 4px 30px; }
    .art-mobile-menu-wrapper .art-nav-container .art--mobile-menu-navigation-wrapper .art--mobile-menu-navigation ul {
      list-style: none;
      margin: 0; }
    .art-mobile-menu-wrapper .art-nav-container .art--mobile-menu-navigation-wrapper .art--mobile-menu-navigation ul.art--mobile-menu li > a .fl-menu-flipper-icon .fl-back-content {
      opacity: 0; }
    .art-mobile-menu-wrapper .art-nav-container .art--mobile-menu-navigation-wrapper .art--mobile-menu-navigation ul.art--mobile-menu li.opened > a .fl-menu-flipper-icon .fl-front-content {
      opacity: 0; }
    .art-mobile-menu-wrapper .art-nav-container .art--mobile-menu-navigation-wrapper .art--mobile-menu-navigation ul.art--mobile-menu li.opened > a .fl-menu-flipper-icon .fl-back-content {
      opacity: 1; }
    .art-mobile-menu-wrapper .art-nav-container .art--mobile-menu-navigation-wrapper .art--mobile-menu-navigation ul.art--mobile-menu li a {
      color: var(--art-colors-heading);
      position: relative;
      display: block;
      padding: 12px 34px 12px 0;
      text-align: left;
      -webkit-transition: none;
      transition: none; }
      .art-mobile-menu-wrapper .art-nav-container .art--mobile-menu-navigation-wrapper .art--mobile-menu-navigation ul.art--mobile-menu li a:hover {
        color: var(--art-colors-link);
        text-decoration: none; }
      .art-mobile-menu-wrapper .art-nav-container .art--mobile-menu-navigation-wrapper .art--mobile-menu-navigation ul.art--mobile-menu li a .fl-menu-flipper-icon {
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 34px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; }
        .art-mobile-menu-wrapper .art-nav-container .art--mobile-menu-navigation-wrapper .art--mobile-menu-navigation ul.art--mobile-menu li a .fl-menu-flipper-icon .fl-front-content {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          position: absolute;
          top: 0;
          left: 0;
          width: 34px;
          height: inherit;
          z-index: 2;
          -webkit-backface-visibility: hidden;
                  backface-visibility: hidden; }
          .art-mobile-menu-wrapper .art-nav-container .art--mobile-menu-navigation-wrapper .art--mobile-menu-navigation ul.art--mobile-menu li a .fl-menu-flipper-icon .fl-front-content:before {
            content: '\c013';
            font-family: 'denaro-font';
            font-size: 16px;
            line-height: 1em;
            width: 1em;
            height: 1em;
            margin: auto !important;
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0; }
        .art-mobile-menu-wrapper .art-nav-container .art--mobile-menu-navigation-wrapper .art--mobile-menu-navigation ul.art--mobile-menu li a .fl-menu-flipper-icon .fl-back-content {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          position: absolute;
          top: 0;
          left: 0;
          width: 34px;
          height: inherit;
          z-index: 2;
          -webkit-backface-visibility: hidden;
                  backface-visibility: hidden; }
          .art-mobile-menu-wrapper .art-nav-container .art--mobile-menu-navigation-wrapper .art--mobile-menu-navigation ul.art--mobile-menu li a .fl-menu-flipper-icon .fl-back-content:before {
            content: '\c019';
            font-family: 'denaro-font';
            font-size: 16px;
            line-height: 1em;
            width: 1em;
            height: 1em;
            margin: auto !important;
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0; }
    .art-mobile-menu-wrapper .art-nav-container .art--mobile-menu-navigation-wrapper .art--mobile-menu-navigation ul.art--mobile-menu li.current-menu-item > a, .art-mobile-menu-wrapper .art-nav-container .art--mobile-menu-navigation-wrapper .art--mobile-menu-navigation ul.art--mobile-menu li.current-menu-ancestor > a {
      color: var(--art-colors-link); }
    .art-mobile-menu-wrapper .art-nav-container .art--mobile-menu-navigation-wrapper .art--mobile-menu-navigation ul.art--mobile-menu li .sub-menu {
      display: none; }
      .art-mobile-menu-wrapper .art-nav-container .art--mobile-menu-navigation-wrapper .art--mobile-menu-navigation ul.art--mobile-menu li .sub-menu a {
        font-family: var(--art-body-four-font-family);
        font-weight: var(--art-body-four-font-weight);
        font-style: var(--art-body-four-font-style);
        text-transform: var(--art-body-four-text-transform);
        -webkit-text-decoration: var(--art-body-four-text-decoration);
                text-decoration: var(--art-body-four-text-decoration);
        font-size: var(--art-body-four-font-size);
        line-height: var(--art-body-four-line-height);
        letter-spacing: var(--art-body-four-letter-spacing);
        letter-spacing: 0.1em; }
        @media only screen and (max-width: 767px) {
          .art-mobile-menu-wrapper .art-nav-container .art--mobile-menu-navigation-wrapper .art--mobile-menu-navigation ul.art--mobile-menu li .sub-menu a {
            font-family: var(--art-body-four-mobile-font-family);
            font-weight: var(--art-body-four-mobile-font-weight);
            font-style: var(--art-body-four-mobile-font-style);
            text-transform: var(--art-body-four-mobile-text-transform);
            -webkit-text-decoration: var(--art-body-four-mobile-text-decoration);
                    text-decoration: var(--art-body-four-mobile-text-decoration);
            font-size: var(--art-body-four-mobile-font-size);
            line-height: var(--art-body-four-mobile-line-height);
            letter-spacing: var(--art-body-four-mobile-letter-spacing); } }
      .art-mobile-menu-wrapper .art-nav-container .art--mobile-menu-navigation-wrapper .art--mobile-menu-navigation ul.art--mobile-menu li .sub-menu ul a {
        padding-left: 10px; }
      .art-mobile-menu-wrapper .art-nav-container .art--mobile-menu-navigation-wrapper .art--mobile-menu-navigation ul.art--mobile-menu li .sub-menu ul ul a {
        padding-left: 15px; }
      .art-mobile-menu-wrapper .art-nav-container .art--mobile-menu-navigation-wrapper .art--mobile-menu-navigation ul.art--mobile-menu li .sub-menu ul ul ul a {
        padding-left: 20px; }
    .art-mobile-menu-wrapper .art-nav-container .art--mobile-menu-navigation-wrapper .art--mobile-menu-social-container {
      margin-top: 27px; }
      .art-mobile-menu-wrapper .art-nav-container .art--mobile-menu-navigation-wrapper .art--mobile-menu-social-container .art-social-container a {
        color: var(--art-colors-heading); }
        .art-mobile-menu-wrapper .art-nav-container .art--mobile-menu-navigation-wrapper .art--mobile-menu-social-container .art-social-container a:hover {
          color: var(--art-colors-link); }

/* Header one */
header.art-header-one {
  position: relative;
  z-index: 50; }
  header.art-header-one.art-menu-open .art-header-one-content .art-navigation-container {
    left: -260px; }
  header.art-header-one.art-dark-header-text .art-header-one-content .art-navigation-container .left-content .art--logo-container a {
    display: block;
    padding: 13px 0; }
  header.art-header-one.art-dark-header-text .art-header-one-content .art-navigation-container .left-content .art--logo-container .light-logotype {
    display: none; }
  header.art-header-one.art-dark-header-text .art-header-one-content .art-navigation-container .left-content .art--logo-container .dark-logotype {
    display: block; }
  header.art-header-one.art-dark-header-text .art-header-one-content .art-navigation-container .center-content nav ul.menu > li > a {
    color: var(--art-colors-heading); }
    header.art-header-one.art-dark-header-text .art-header-one-content .art-navigation-container .center-content nav ul.menu > li > a:hover {
      color: var(--art-colors-link); }
  header.art-header-one.art-dark-header-text .art-header-one-content .art-navigation-container .right-content .art-social-container a {
    color: var(--art-colors-heading); }
    header.art-header-one.art-dark-header-text .art-header-one-content .art-navigation-container .right-content .art-social-container a:hover {
      color: var(--art-colors-link); }
  header.art-header-one.art-dark-header-text .art-header-one-content .art-navigation-container .right-content .hamburger-inner, header.art-header-one.art-dark-header-text .art-header-one-content .art-navigation-container .right-content .hamburger-inner:before, header.art-header-one.art-dark-header-text .art-header-one-content .art-navigation-container .right-content .hamburger-inner:after {
    background-color: var(--art-colors-heading); }
  header.art-header-one.art-header-show-border .art-header-one-content {
    border-bottom-color: rgba(0, 0, 0, 0.1); }
  header.art-header-one .art-header-one-content {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-bottom: 1px solid transparent;
    -webkit-transition: background-color .3s ease-in-out, border-color .3s ease-in-out, top .5s ease-in-out;
    transition: background-color .3s ease-in-out, border-color .3s ease-in-out, top .5s ease-in-out; }
    header.art-header-one .art-header-one-content:hover, header.art-header-one .art-header-one-content.art-sticky {
      background-color: var(--art-colors-bg-header);
      border-bottom-color: rgba(0, 0, 0, 0.1); }
      header.art-header-one .art-header-one-content:hover .art-navigation-container .left-content .art--logo-container .light-logotype, header.art-header-one .art-header-one-content.art-sticky .art-navigation-container .left-content .art--logo-container .light-logotype {
        display: none; }
      header.art-header-one .art-header-one-content:hover .art-navigation-container .left-content .art--logo-container .dark-logotype, header.art-header-one .art-header-one-content.art-sticky .art-navigation-container .left-content .art--logo-container .dark-logotype {
        display: block; }
      header.art-header-one .art-header-one-content:hover .art-navigation-container .center-content nav ul.menu > li > a, header.art-header-one .art-header-one-content.art-sticky .art-navigation-container .center-content nav ul.menu > li > a {
        color: var(--art-colors-heading); }
        header.art-header-one .art-header-one-content:hover .art-navigation-container .center-content nav ul.menu > li > a:hover, header.art-header-one .art-header-one-content.art-sticky .art-navigation-container .center-content nav ul.menu > li > a:hover {
          color: var(--art-colors-link); }
      header.art-header-one .art-header-one-content:hover .art-navigation-container .center-content nav ul.menu > li > .sub-nav > .sub-menu, header.art-header-one .art-header-one-content.art-sticky .art-navigation-container .center-content nav ul.menu > li > .sub-nav > .sub-menu {
        margin-top: 0; }
      header.art-header-one .art-header-one-content:hover .art-navigation-container .right-content .art-social-container a, header.art-header-one .art-header-one-content.art-sticky .art-navigation-container .right-content .art-social-container a {
        color: var(--art-colors-heading); }
        header.art-header-one .art-header-one-content:hover .art-navigation-container .right-content .art-social-container a:hover, header.art-header-one .art-header-one-content.art-sticky .art-navigation-container .right-content .art-social-container a:hover {
          color: var(--art-colors-link); }
      header.art-header-one .art-header-one-content:hover .art-navigation-container .right-content .hamburger-inner, header.art-header-one .art-header-one-content:hover .art-navigation-container .right-content .hamburger-inner:before, header.art-header-one .art-header-one-content:hover .art-navigation-container .right-content .hamburger-inner:after, header.art-header-one .art-header-one-content.art-sticky .art-navigation-container .right-content .hamburger-inner, header.art-header-one .art-header-one-content.art-sticky .art-navigation-container .right-content .hamburger-inner:before, header.art-header-one .art-header-one-content.art-sticky .art-navigation-container .right-content .hamburger-inner:after {
        background-color: var(--art-colors-heading); }
    header.art-header-one .art-header-one-content.art-sticky-hide {
      top: -200px;
      -webkit-transition: none;
      transition: none; }
    header.art-header-one .art-header-one-content.art-sticky {
      position: fixed;
      top: -200px;
      -webkit-transition: top .3s ease;
      transition: top .3s ease; }
      header.art-header-one .art-header-one-content.art-sticky.art-sticky-show {
        top: 0; }
      body.admin-bar header.art-header-one .art-header-one-content.art-sticky {
        margin-top: 32px; }
        @media only screen and (max-width: 782px) {
          body.admin-bar header.art-header-one .art-header-one-content.art-sticky {
            margin-top: 46px; } }
        @media only screen and (max-width: 600px) {
          body.admin-bar header.art-header-one .art-header-one-content.art-sticky {
            margin-top: 0; } }
      header.art-header-one .art-header-one-content.art-sticky .art-navigation-container {
        min-height: unset; }
        header.art-header-one .art-header-one-content.art-sticky .art-navigation-container .center-content nav ul.menu > li {
          padding-top: 10px;
          padding-bottom: 10px; }
          header.art-header-one .art-header-one-content.art-sticky .art-navigation-container .center-content nav ul.menu > li > a {
            padding: 8px 0; }
        header.art-header-one .art-header-one-content.art-sticky .art-navigation-container .right-content .art-social-container {
          opacity: 0;
          visibility: hidden;
          display: none; }
        header.art-header-one .art-header-one-content.art-sticky .art-navigation-container .right-content .art-site-header-appointment {
          opacity: 1;
          visibility: visible;
          display: block; }
          @media only screen and (max-width: 1240px) {
            header.art-header-one .art-header-one-content.art-sticky .art-navigation-container .right-content .art-site-header-appointment {
              display: none; } }
    header.art-header-one .art-header-one-content .art-header-container {
      padding-left: var(--art-container-hor-pad);
      padding-right: var(--art-container-hor-pad); }
    header.art-header-one .art-header-one-content .art-navigation-container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      max-width: 1920px;
      min-height: 82px;
      margin: 0 auto;
      -webkit-transition: all 300ms;
      transition: all 300ms;
      left: 0; }
      @media only screen and (max-width: 1240px) {
        header.art-header-one .art-header-one-content .art-navigation-container {
          position: relative; } }
      @media only screen and (max-width: 767px) {
        header.art-header-one .art-header-one-content .art-navigation-container .left-content {
          -webkit-box-flex: 2;
              -ms-flex-positive: 2;
                  flex-grow: 2; } }
      @media only screen and (max-width: 1240px) {
        header.art-header-one .art-header-one-content .art-navigation-container .left-content {
          display: none; } }
      header.art-header-one .art-header-one-content .art-navigation-container .left-content .art--logo-container {
        max-height: 102px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-transition: all 300ms ease-in-out;
        transition: all 300ms ease-in-out; }
        @media only screen and (max-width: 767px) {
          header.art-header-one .art-header-one-content .art-navigation-container .left-content .art--logo-container {
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center; } }
        header.art-header-one .art-header-one-content .art-navigation-container .left-content .art--logo-container a {
          padding: 15px 0; }
        header.art-header-one .art-header-one-content .art-navigation-container .left-content .art--logo-container .dark-logotype {
          display: none; }
        header.art-header-one .art-header-one-content .art-navigation-container .left-content .art--logo-container .logotype-text,
        header.art-header-one .art-header-one-content .art-navigation-container .left-content .art--logo-container .logotype-text-dark {
          margin: 0; }
      header.art-header-one .art-header-one-content .art-navigation-container .center-content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        @media only screen and (max-width: 1240px) {
          header.art-header-one .art-header-one-content .art-navigation-container .center-content nav {
            display: none; } }
        header.art-header-one .art-header-one-content .art-navigation-container .center-content nav ul.menu {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
          padding: 0 10px; }
          header.art-header-one .art-header-one-content .art-navigation-container .center-content nav ul.menu > li {
            padding: 13px 20px;
            -webkit-transition: all 300ms ease-in-out, padding 0;
            transition: all 300ms ease-in-out, padding 0; }
            header.art-header-one .art-header-one-content .art-navigation-container .center-content nav ul.menu > li > a {
              font-family: var(--art-body-four-font-family);
              font-weight: var(--art-body-four-font-weight);
              font-style: var(--art-body-four-font-style);
              text-transform: var(--art-body-four-text-transform);
              -webkit-text-decoration: var(--art-body-four-text-decoration);
                      text-decoration: var(--art-body-four-text-decoration);
              font-size: var(--art-body-four-font-size);
              line-height: var(--art-body-four-line-height);
              letter-spacing: var(--art-body-four-letter-spacing);
              text-align: center;
              color: var(--art-colors-bg);
              display: block;
              padding: 15px 0;
              position: relative; }
              @media only screen and (max-width: 767px) {
                header.art-header-one .art-header-one-content .art-navigation-container .center-content nav ul.menu > li > a {
                  font-family: var(--art-body-four-mobile-font-family);
                  font-weight: var(--art-body-four-mobile-font-weight);
                  font-style: var(--art-body-four-mobile-font-style);
                  text-transform: var(--art-body-four-mobile-text-transform);
                  -webkit-text-decoration: var(--art-body-four-mobile-text-decoration);
                          text-decoration: var(--art-body-four-mobile-text-decoration);
                  font-size: var(--art-body-four-mobile-font-size);
                  line-height: var(--art-body-four-mobile-line-height);
                  letter-spacing: var(--art-body-four-mobile-letter-spacing); } }
              header.art-header-one .art-header-one-content .art-navigation-container .center-content nav ul.menu > li > a:after {
                content: '';
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                position: absolute;
                bottom: 12px;
                width: 100%;
                height: 2px;
                opacity: 0;
                -webkit-transition: all .2s ease-in-out;
                transition: all .2s ease-in-out;
                background-color: var(--art-colors-bg); }
              header.art-header-one .art-header-one-content .art-navigation-container .center-content nav ul.menu > li > a:hover:after {
                opacity: 1; }
            header.art-header-one .art-header-one-content .art-navigation-container .center-content nav ul.menu > li:hover > a, header.art-header-one .art-header-one-content .art-navigation-container .center-content nav ul.menu > li.current-menu-item > a, header.art-header-one .art-header-one-content .art-navigation-container .center-content nav ul.menu > li.current-menu-ancestor > a {
              color: var(--art-colors-link); }
              header.art-header-one .art-header-one-content .art-navigation-container .center-content nav ul.menu > li:hover > a:after, header.art-header-one .art-header-one-content .art-navigation-container .center-content nav ul.menu > li.current-menu-item > a:after, header.art-header-one .art-header-one-content .art-navigation-container .center-content nav ul.menu > li.current-menu-ancestor > a:after {
                opacity: 1; }
            header.art-header-one .art-header-one-content .art-navigation-container .center-content nav ul.menu > li.has-submenu:hover .sub-nav > .sub-menu {
              opacity: 1;
              visibility: visible;
              -webkit-transition-delay: 0.15s;
                      transition-delay: 0.15s; }
          header.art-header-one .art-header-one-content .art-navigation-container .center-content nav ul.menu li {
            position: relative; }
            header.art-header-one .art-header-one-content .art-navigation-container .center-content nav ul.menu li .sub-menu {
              opacity: 0;
              visibility: hidden;
              -webkit-transition: all 200ms ease-in-out;
              transition: all 200ms ease-in-out;
              position: absolute;
              top: 100%;
              left: 0;
              min-width: 240px;
              margin-top: -20px;
              margin-left: 0;
              margin-right: 0;
              padding: 6px 0 4px;
              z-index: 9999;
              background-color: #fff; }
            header.art-header-one .art-header-one-content .art-navigation-container .center-content nav ul.menu li li {
              position: relative;
              padding: 9px 25px 9px 16px; }
              header.art-header-one .art-header-one-content .art-navigation-container .center-content nav ul.menu li li .sub-menu {
                top: 0;
                left: 100%;
                margin: -6px 0 0; }
              header.art-header-one .art-header-one-content .art-navigation-container .center-content nav ul.menu li li.has-submenu:after {
                font-family: "denaro-font";
                font-size: 16px;
                line-height: 1em;
                width: 1em;
                height: 1em;
                margin: auto !important;
                position: absolute;
                left: auto;
                right: 14px;
                top: 0;
                bottom: 0;
                content: '\c017'; }
              header.art-header-one .art-header-one-content .art-navigation-container .center-content nav ul.menu li li.has-submenu:hover > .sub-menu {
                opacity: 1;
                visibility: visible;
                -webkit-transition-delay: 0.15s;
                        transition-delay: 0.15s; }
              header.art-header-one .art-header-one-content .art-navigation-container .center-content nav ul.menu li li a {
                font-family: var(--art-body-two-font-family);
                font-weight: var(--art-body-two-font-weight);
                font-style: var(--art-body-two-font-style);
                text-transform: var(--art-body-two-text-transform);
                -webkit-text-decoration: var(--art-body-two-text-decoration);
                        text-decoration: var(--art-body-two-text-decoration);
                font-size: var(--art-body-two-font-size);
                line-height: var(--art-body-two-line-height);
                letter-spacing: var(--art-body-two-letter-spacing);
                color: var(--art-colors-heading);
                display: block; }
                @media only screen and (max-width: 767px) {
                  header.art-header-one .art-header-one-content .art-navigation-container .center-content nav ul.menu li li a {
                    font-family: var(--art-body-two-mobile-font-family);
                    font-weight: var(--art-body-two-mobile-font-weight);
                    font-style: var(--art-body-two-mobile-font-style);
                    text-transform: var(--art-body-two-mobile-text-transform);
                    -webkit-text-decoration: var(--art-body-two-mobile-text-decoration);
                            text-decoration: var(--art-body-two-mobile-text-decoration);
                    font-size: var(--art-body-two-mobile-font-size);
                    line-height: var(--art-body-two-mobile-line-height);
                    letter-spacing: var(--art-body-two-mobile-letter-spacing); } }
                header.art-header-one .art-header-one-content .art-navigation-container .center-content nav ul.menu li li a:hover {
                  color: var(--art-colors-link); }
              header.art-header-one .art-header-one-content .art-navigation-container .center-content nav ul.menu li li:hover > a, header.art-header-one .art-header-one-content .art-navigation-container .center-content nav ul.menu li li.current-menu-item > a, header.art-header-one .art-header-one-content .art-navigation-container .center-content nav ul.menu li li.current-menu-ancestor > a {
                color: var(--art-colors-link); }
        header.art-header-one .art-header-one-content .art-navigation-container .center-content .art--logo-container {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          margin: 0 40px; }
          @media only screen and (max-width: 1240px) {
            header.art-header-one .art-header-one-content .art-navigation-container .center-content .art--logo-container {
              margin: 0 5px; } }
      header.art-header-one .art-header-one-content .art-navigation-container .right-content {
        position: relative;
        z-index: 60;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; }
        header.art-header-one .art-header-one-content .art-navigation-container .right-content .art-header-login-link {
          margin-right: 20px; }
        header.art-header-one .art-header-one-content .art-navigation-container .right-content .s-header__basket-wr {
          margin-bottom: 2px; }
        header.art-header-one .art-header-one-content .art-navigation-container .right-content .info_block_hamburger {
          margin-bottom: 6px; }
        header.art-header-one .art-header-one-content .art-navigation-container .right-content .art-site-header-appointment {
          font-family: var(--art-button-font-family);
          font-weight: var(--art-button-font-weight);
          font-style: var(--art-button-font-style);
          text-transform: var(--art-button-text-transform);
          -webkit-text-decoration: var(--art-button-text-decoration);
                  text-decoration: var(--art-button-text-decoration);
          font-size: var(--art-button-font-size);
          line-height: var(--art-button-line-height);
          letter-spacing: var(--art-button-letter-spacing);
          text-align: center;
          text-decoration: none;
          display: inline-block;
          cursor: pointer;
          border-radius: 0;
          overflow: visible;
          word-break: normal;
          position: relative;
          z-index: 0;
          -webkit-transition: all .2s ease-in-out;
          transition: all .2s ease-in-out;
          font-size: calc(var(--art-button-font-size) - 2px);
          border-width: 2px;
          border-style: solid;
          padding: 6px 28px;
          border-color: var(--art-colors-heading);
          background-color: transparent;
          color: var(--art-colors-heading);
          display: none;
          visibility: hidden;
          opacity: 0; }
          .art-second-color-scheme header.art-header-one .art-header-one-content .art-navigation-container .right-content .art-site-header-appointment {
            border-color: var(--art-bg-heading); }
          .art-second-color-scheme header.art-header-one .art-header-one-content .art-navigation-container .right-content .art-site-header-appointment {
            background-color: transparent; }
          .art-second-color-scheme header.art-header-one .art-header-one-content .art-navigation-container .right-content .art-site-header-appointment {
            color: var(--art-bg-heading); }
          header.art-header-one .art-header-one-content .art-navigation-container .right-content .art-site-header-appointment:hover {
            border-color: var(--art-colors-link);
            color: var(--art-colors-link); }
            .art-second-color-scheme header.art-header-one .art-header-one-content .art-navigation-container .right-content .art-site-header-appointment:hover {
              border-color: var(--art-bg-link); }
            .art-second-color-scheme header.art-header-one .art-header-one-content .art-navigation-container .right-content .art-site-header-appointment:hover {
              color: var(--art-bg-link); }
          @media only screen and (max-width: 1240px) {
            header.art-header-one .art-header-one-content .art-navigation-container .right-content .art-site-header-appointment {
              display: none; } }
        header.art-header-one .art-header-one-content .art-navigation-container .right-content .art-social-container {
          visibility: visible;
          opacity: 1; }
          @media only screen and (max-width: 1240px) {
            header.art-header-one .art-header-one-content .art-navigation-container .right-content .art-social-container {
              display: none; } }
          header.art-header-one .art-header-one-content .art-navigation-container .right-content .art-social-container a {
            color: var(--art-colors-bg); }
            header.art-header-one .art-header-one-content .art-navigation-container .right-content .art-social-container a:hover {
              color: var(--art-colors-link); }
        header.art-header-one .art-header-one-content .art-navigation-container .right-content .hamburger-inner, header.art-header-one .art-header-one-content .art-navigation-container .right-content .hamburger-inner:before, header.art-header-one .art-header-one-content .art-navigation-container .right-content .hamburger-inner:after {
          background-color: var(--art-colors-bg); }

/* Header two */
header.art-header-two {
  position: relative;
  z-index: 50; }
  header.art-header-two.art-menu-open .art-header-two-content .art-navigation-container {
    left: -260px; }
  header.art-header-two.art-dark-header-text .art-header-one-content .art-navigation-container .left-content .art--logo-container a {
    display: block;
    padding: 13px 0; }
  header.art-header-two.art-dark-header-text .art-header-one-content .art-navigation-container .left-content .art--logo-container .light-logotype {
    display: none; }
  header.art-header-two.art-dark-header-text .art-header-one-content .art-navigation-container .left-content .art--logo-container .dark-logotype {
    display: block; }
  header.art-header-two.art-dark-header-text .art-header-one-content .art-navigation-container .center-content nav ul.menu > li > a {
    color: var(--art-colors-heading); }
    header.art-header-two.art-dark-header-text .art-header-one-content .art-navigation-container .center-content nav ul.menu > li > a:hover {
      color: var(--art-colors-link); }
  header.art-header-two.art-dark-header-text .art-header-one-content .art-navigation-container .right-content .art-social-container a {
    color: var(--art-colors-heading); }
    header.art-header-two.art-dark-header-text .art-header-one-content .art-navigation-container .right-content .art-social-container a:hover {
      color: var(--art-colors-link); }
  header.art-header-two.art-dark-header-text .art-header-one-content .art-navigation-container .right-content .hamburger-inner, header.art-header-two.art-dark-header-text .art-header-one-content .art-navigation-container .right-content .hamburger-inner:before, header.art-header-two.art-dark-header-text .art-header-one-content .art-navigation-container .right-content .hamburger-inner:after {
    background-color: var(--art-colors-heading); }
  header.art-header-two.art-header-show-border .art-header-one-content {
    border-bottom-color: rgba(0, 0, 0, 0.1); }
  header.art-header-two .art-header-two-content {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-bottom: 1px solid transparent;
    -webkit-transition: background-color .3s ease-in-out, border-color .3s ease-in-out, top .5s ease-in-out;
    transition: background-color .3s ease-in-out, border-color .3s ease-in-out, top .5s ease-in-out; }
    header.art-header-two .art-header-two-content:hover, header.art-header-two .art-header-two-content.art-sticky {
      background-color: var(--art-colors-bg-header);
      border-bottom-color: rgba(0, 0, 0, 0.1); }
      header.art-header-two .art-header-two-content:hover .art-navigation-container .center-content nav ul.menu > li > a, header.art-header-two .art-header-two-content.art-sticky .art-navigation-container .center-content nav ul.menu > li > a {
        color: var(--art-colors-heading); }
        header.art-header-two .art-header-two-content:hover .art-navigation-container .center-content nav ul.menu > li > a:hover, header.art-header-two .art-header-two-content.art-sticky .art-navigation-container .center-content nav ul.menu > li > a:hover {
          color: var(--art-colors-link); }
      header.art-header-two .art-header-two-content:hover .art-navigation-container .center-content nav ul.menu > li > .sub-nav > .sub-menu, header.art-header-two .art-header-two-content.art-sticky .art-navigation-container .center-content nav ul.menu > li > .sub-nav > .sub-menu {
        margin-top: 0; }
      header.art-header-two .art-header-two-content:hover .art-navigation-container .right-content .art-social-container a, header.art-header-two .art-header-two-content.art-sticky .art-navigation-container .right-content .art-social-container a {
        color: var(--art-colors-heading); }
        header.art-header-two .art-header-two-content:hover .art-navigation-container .right-content .art-social-container a:hover, header.art-header-two .art-header-two-content.art-sticky .art-navigation-container .right-content .art-social-container a:hover {
          color: var(--art-colors-link); }
      header.art-header-two .art-header-two-content:hover .art-navigation-container .right-content .hamburger-inner, header.art-header-two .art-header-two-content:hover .art-navigation-container .right-content .hamburger-inner:before, header.art-header-two .art-header-two-content:hover .art-navigation-container .right-content .hamburger-inner:after, header.art-header-two .art-header-two-content.art-sticky .art-navigation-container .right-content .hamburger-inner, header.art-header-two .art-header-two-content.art-sticky .art-navigation-container .right-content .hamburger-inner:before, header.art-header-two .art-header-two-content.art-sticky .art-navigation-container .right-content .hamburger-inner:after {
        background-color: var(--art-colors-heading); }
    header.art-header-two .art-header-two-content.art-sticky-hide {
      top: -200px;
      -webkit-transition: none;
      transition: none; }
    header.art-header-two .art-header-two-content.art-sticky {
      position: fixed;
      top: -200px;
      -webkit-transition: top .3s ease;
      transition: top .3s ease; }
      header.art-header-two .art-header-two-content.art-sticky.art-sticky-show {
        top: 0; }
      body.admin-bar header.art-header-two .art-header-two-content.art-sticky {
        margin-top: 32px; }
        @media only screen and (max-width: 782px) {
          body.admin-bar header.art-header-two .art-header-two-content.art-sticky {
            margin-top: 46px; } }
        @media only screen and (max-width: 600px) {
          body.admin-bar header.art-header-two .art-header-two-content.art-sticky {
            margin-top: 0; } }
      header.art-header-two .art-header-two-content.art-sticky .art-navigation-container {
        min-height: unset; }
        header.art-header-two .art-header-two-content.art-sticky .art-navigation-container .center-content nav ul.menu > li {
          padding-top: 10px;
          padding-bottom: 10px; }
          header.art-header-two .art-header-two-content.art-sticky .art-navigation-container .center-content nav ul.menu > li > a {
            padding: 8px 0; }
        header.art-header-two .art-header-two-content.art-sticky .art-navigation-container .right-content .art-social-container {
          opacity: 0;
          visibility: hidden;
          display: none; }
    header.art-header-two .art-header-two-content .art-navigation-container {
      padding-left: var(--art-container-hor-pad);
      padding-right: var(--art-container-hor-pad);
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      max-width: 1920px;
      min-height: 82px;
      margin: 0 auto;
      -webkit-transition: all 300ms;
      transition: all 300ms;
      left: 0; }
      @media only screen and (max-width: 1240px) {
        header.art-header-two .art-header-two-content .art-navigation-container {
          position: relative; } }
      @media only screen and (max-width: 767px) {
        header.art-header-two .art-header-two-content .art-navigation-container .left-content {
          /*flex-grow: 2;*/ } }
      header.art-header-two .art-header-two-content .art-navigation-container .left-content .art--logo-container {
        max-height: 102px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-transition: all 300ms ease-in-out;
        transition: all 300ms ease-in-out; }
        @media only screen and (max-width: 767px) {
          header.art-header-two .art-header-two-content .art-navigation-container .left-content .art--logo-container {
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center; } }
        header.art-header-two .art-header-two-content .art-navigation-container .left-content .art--logo-container .dark-logotype {
          display: none; }
        header.art-header-two .art-header-two-content .art-navigation-container .left-content .art--logo-container .logotype-text,
        header.art-header-two .art-header-two-content .art-navigation-container .left-content .art--logo-container .logotype-text-dark {
          margin: 0; }
      header.art-header-two .art-header-two-content .art-navigation-container .center-content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        @media only screen and (max-width: 1240px) {
          header.art-header-two .art-header-two-content .art-navigation-container .center-content {
            display: none; } }
        header.art-header-two .art-header-two-content .art-navigation-container .center-content nav ul.menu {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
          padding: 0 10px; }
          header.art-header-two .art-header-two-content .art-navigation-container .center-content nav ul.menu > li {
            padding: 13px 20px;
            -webkit-transition: all 300ms ease-in-out, padding 0;
            transition: all 300ms ease-in-out, padding 0; }
            header.art-header-two .art-header-two-content .art-navigation-container .center-content nav ul.menu > li > a {
              font-family: var(--art-body-four-font-family);
              font-weight: var(--art-body-four-font-weight);
              font-style: var(--art-body-four-font-style);
              text-transform: var(--art-body-four-text-transform);
              -webkit-text-decoration: var(--art-body-four-text-decoration);
                      text-decoration: var(--art-body-four-text-decoration);
              font-size: var(--art-body-four-font-size);
              line-height: var(--art-body-four-line-height);
              letter-spacing: var(--art-body-four-letter-spacing);
              text-align: center;
              color: var(--art-colors-bg);
              display: block;
              padding: 15px 0;
              position: relative; }
              @media only screen and (max-width: 767px) {
                header.art-header-two .art-header-two-content .art-navigation-container .center-content nav ul.menu > li > a {
                  font-family: var(--art-body-four-mobile-font-family);
                  font-weight: var(--art-body-four-mobile-font-weight);
                  font-style: var(--art-body-four-mobile-font-style);
                  text-transform: var(--art-body-four-mobile-text-transform);
                  -webkit-text-decoration: var(--art-body-four-mobile-text-decoration);
                          text-decoration: var(--art-body-four-mobile-text-decoration);
                  font-size: var(--art-body-four-mobile-font-size);
                  line-height: var(--art-body-four-mobile-line-height);
                  letter-spacing: var(--art-body-four-mobile-letter-spacing); } }
              header.art-header-two .art-header-two-content .art-navigation-container .center-content nav ul.menu > li > a:after {
                content: '';
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                position: absolute;
                bottom: 12px;
                width: 100%;
                opacity: 0;
                height: 2px;
                -webkit-transition: all .2s ease-in-out;
                transition: all .2s ease-in-out;
                background-color: var(--art-colors-bg); }
            header.art-header-two .art-header-two-content .art-navigation-container .center-content nav ul.menu > li:hover > a, header.art-header-two .art-header-two-content .art-navigation-container .center-content nav ul.menu > li.current-menu-item > a, header.art-header-two .art-header-two-content .art-navigation-container .center-content nav ul.menu > li.current-menu-ancestor > a {
              color: var(--art-colors-link); }
              header.art-header-two .art-header-two-content .art-navigation-container .center-content nav ul.menu > li:hover > a:after, header.art-header-two .art-header-two-content .art-navigation-container .center-content nav ul.menu > li.current-menu-item > a:after, header.art-header-two .art-header-two-content .art-navigation-container .center-content nav ul.menu > li.current-menu-ancestor > a:after {
                opacity: 1; }
            header.art-header-two .art-header-two-content .art-navigation-container .center-content nav ul.menu > li.has-submenu:hover .sub-nav > .sub-menu {
              opacity: 1;
              visibility: visible;
              -webkit-transition-delay: 0.15s;
                      transition-delay: 0.15s; }
          header.art-header-two .art-header-two-content .art-navigation-container .center-content nav ul.menu li {
            position: relative; }
            header.art-header-two .art-header-two-content .art-navigation-container .center-content nav ul.menu li .sub-menu {
              opacity: 0;
              visibility: hidden;
              -webkit-transition: all 200ms ease-in-out;
              transition: all 200ms ease-in-out;
              position: absolute;
              top: 100%;
              left: 0;
              min-width: 240px;
              margin-top: -20px;
              margin-left: 0;
              margin-right: 0;
              padding: 6px 0 4px;
              z-index: 9999;
              background-color: #fff; }
            header.art-header-two .art-header-two-content .art-navigation-container .center-content nav ul.menu li li {
              position: relative;
              padding: 9px 25px 9px 16px; }
              header.art-header-two .art-header-two-content .art-navigation-container .center-content nav ul.menu li li .sub-menu {
                top: 0;
                left: 100%;
                margin: -6px 0 0; }
              header.art-header-two .art-header-two-content .art-navigation-container .center-content nav ul.menu li li.has-submenu:after {
                font-family: "denaro-font";
                font-size: 16px;
                line-height: 1em;
                width: 1em;
                height: 1em;
                margin: auto !important;
                position: absolute;
                left: auto;
                right: 14px;
                top: 0;
                bottom: 0;
                content: '\c017'; }
              header.art-header-two .art-header-two-content .art-navigation-container .center-content nav ul.menu li li.has-submenu:hover > .sub-menu {
                opacity: 1;
                visibility: visible;
                -webkit-transition-delay: 0.15s;
                        transition-delay: 0.15s; }
              header.art-header-two .art-header-two-content .art-navigation-container .center-content nav ul.menu li li a {
                font-family: var(--art-body-two-font-family);
                font-weight: var(--art-body-two-font-weight);
                font-style: var(--art-body-two-font-style);
                text-transform: var(--art-body-two-text-transform);
                -webkit-text-decoration: var(--art-body-two-text-decoration);
                        text-decoration: var(--art-body-two-text-decoration);
                font-size: var(--art-body-two-font-size);
                line-height: var(--art-body-two-line-height);
                letter-spacing: var(--art-body-two-letter-spacing);
                color: var(--art-colors-heading);
                display: block; }
                @media only screen and (max-width: 767px) {
                  header.art-header-two .art-header-two-content .art-navigation-container .center-content nav ul.menu li li a {
                    font-family: var(--art-body-two-mobile-font-family);
                    font-weight: var(--art-body-two-mobile-font-weight);
                    font-style: var(--art-body-two-mobile-font-style);
                    text-transform: var(--art-body-two-mobile-text-transform);
                    -webkit-text-decoration: var(--art-body-two-mobile-text-decoration);
                            text-decoration: var(--art-body-two-mobile-text-decoration);
                    font-size: var(--art-body-two-mobile-font-size);
                    line-height: var(--art-body-two-mobile-line-height);
                    letter-spacing: var(--art-body-two-mobile-letter-spacing); } }
                header.art-header-two .art-header-two-content .art-navigation-container .center-content nav ul.menu li li a:hover {
                  color: var(--art-colors-link); }
              header.art-header-two .art-header-two-content .art-navigation-container .center-content nav ul.menu li li:hover > a, header.art-header-two .art-header-two-content .art-navigation-container .center-content nav ul.menu li li.current-menu-item > a, header.art-header-two .art-header-two-content .art-navigation-container .center-content nav ul.menu li li.current-menu-ancestor > a {
                color: var(--art-colors-link); }
        header.art-header-two .art-header-two-content .art-navigation-container .center-content .art--logo-container {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          margin: 0 40px; }
      header.art-header-two .art-header-two-content .art-navigation-container .right-content {
        position: relative;
        z-index: 60;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; }
        header.art-header-two .art-header-two-content .art-navigation-container .right-content .art-search-blog-button {
          margin-right: 14px;
          margin-top: 2px; }
        header.art-header-two .art-header-two-content .art-navigation-container .right-content .art-header-login-link {
          margin-right: 15px; }
        header.art-header-two .art-header-two-content .art-navigation-container .right-content .art-social-container {
          visibility: visible;
          opacity: 1; }
          @media only screen and (max-width: 1240px) {
            header.art-header-two .art-header-two-content .art-navigation-container .right-content .art-social-container {
              display: none; } }
          header.art-header-two .art-header-two-content .art-navigation-container .right-content .art-social-container a {
            color: var(--art-colors-bg); }
            header.art-header-two .art-header-two-content .art-navigation-container .right-content .art-social-container a:hover {
              color: var(--art-colors-link); }
        header.art-header-two .art-header-two-content .art-navigation-container .right-content .info_block_hamburger {
          margin-bottom: 6px; }
        header.art-header-two .art-header-two-content .art-navigation-container .right-content .hamburger-inner, header.art-header-two .art-header-two-content .art-navigation-container .right-content .hamburger-inner:before, header.art-header-two .art-header-two-content .art-navigation-container .right-content .hamburger-inner:after {
          background-color: var(--art-colors-bg); }

body.art-chosen-third-header.art-menu-open .art-header-three-content .art-navigation-container {
  left: -260px; }

body.art-chosen-third-header.art-global-top-banner-enabled .art-main-container {
  padding-top: 161px; }
  body.art-chosen-third-header.art-global-top-banner-enabled .art-main-container.art-global-top-header-enabled {
    padding-top: calc(161px + 40px) !important; }

body.art-chosen-third-header .art-main-container {
  padding-top: 121px; }

/* Header two */
header.art-header-three {
  position: relative;
  z-index: 48; }
  header.art-header-three.art-menu-open .art-header-three-content .art-header-top {
    left: -260px; }
  header.art-header-three.art-dark-header-text .art-header-three-content .art-header-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
    header.art-header-three.art-dark-header-text .art-header-three-content .art-header-top .art-header-top-left .art-social-container a {
      color: var(--art-colors-heading); }
      header.art-header-three.art-dark-header-text .art-header-three-content .art-header-top .art-header-top-left .art-social-container a:hover {
        color: var(--art-colors-link); }
    header.art-header-three.art-dark-header-text .art-header-three-content .art-header-top .art-header-top-center .art--logo-container .dark-logotype {
      display: block; }
    header.art-header-three.art-dark-header-text .art-header-three-content .art-header-top .art-header-top-right a.art-site-header-appointment {
      color: var(--art-colors-heading); }
      header.art-header-three.art-dark-header-text .art-header-three-content .art-header-top .art-header-top-right a.art-site-header-appointment:hover {
        color: var(--art-colors-link); }
    header.art-header-three.art-dark-header-text .art-header-three-content .art-header-top .art-header-top-right .hamburger-inner, header.art-header-three.art-dark-header-text .art-header-three-content .art-header-top .art-header-top-right .hamburger-inner:before, header.art-header-three.art-dark-header-text .art-header-three-content .art-header-top .art-header-top-right .hamburger-inner:after {
      background-color: var(--art-colors-heading); }
  header.art-header-three.art-dark-header-text .art-header-three-content .art-header-bottom {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
    header.art-header-three.art-dark-header-text .art-header-three-content .art-header-bottom nav ul.menu > li > a {
      color: var(--art-colors-heading); }
      header.art-header-three.art-dark-header-text .art-header-three-content .art-header-bottom nav ul.menu > li > a:hover {
        color: var(--art-colors-link); }
  header.art-header-three .art-header-three-content {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: background-color .3s ease-in-out, border-color .3s ease-in-out, top .5s ease-in-out;
    transition: background-color .3s ease-in-out, border-color .3s ease-in-out, top .5s ease-in-out;
    background-color: #fff; }
    header.art-header-three .art-header-three-content .art-header-data-wrapper {
      margin: 0 auto; }
    header.art-header-three .art-header-three-content:hover .art-header-top, header.art-header-three .art-header-three-content.art-sticky .art-header-top {
      border-bottom-color: rgba(0, 0, 0, 0.1); }
      header.art-header-three .art-header-three-content:hover .art-header-top .art-header-top-left .art-social-container a, header.art-header-three .art-header-three-content.art-sticky .art-header-top .art-header-top-left .art-social-container a {
        color: var(--art-colors-heading); }
        header.art-header-three .art-header-three-content:hover .art-header-top .art-header-top-left .art-social-container a:hover, header.art-header-three .art-header-three-content.art-sticky .art-header-top .art-header-top-left .art-social-container a:hover {
          color: var(--art-colors-link); }
      header.art-header-three .art-header-three-content:hover .art-header-top .art-header-top-right .art-site-header-appointment, header.art-header-three .art-header-three-content.art-sticky .art-header-top .art-header-top-right .art-site-header-appointment {
        color: var(--art-colors-heading); }
        header.art-header-three .art-header-three-content:hover .art-header-top .art-header-top-right .art-site-header-appointment:hover, header.art-header-three .art-header-three-content.art-sticky .art-header-top .art-header-top-right .art-site-header-appointment:hover {
          color: var(--art-colors-link); }
      header.art-header-three .art-header-three-content:hover .art-header-top .art-header-top-right .hamburger-inner, header.art-header-three .art-header-three-content:hover .art-header-top .art-header-top-right .hamburger-inner:before, header.art-header-three .art-header-three-content:hover .art-header-top .art-header-top-right .hamburger-inner:after, header.art-header-three .art-header-three-content.art-sticky .art-header-top .art-header-top-right .hamburger-inner, header.art-header-three .art-header-three-content.art-sticky .art-header-top .art-header-top-right .hamburger-inner:before, header.art-header-three .art-header-three-content.art-sticky .art-header-top .art-header-top-right .hamburger-inner:after {
        background-color: var(--art-colors-heading); }
    header.art-header-three .art-header-three-content:hover .art-header-bottom, header.art-header-three .art-header-three-content.art-sticky .art-header-bottom {
      border-bottom-color: rgba(0, 0, 0, 0.1); }
      header.art-header-three .art-header-three-content:hover .art-header-bottom nav ul.menu > li > a, header.art-header-three .art-header-three-content.art-sticky .art-header-bottom nav ul.menu > li > a {
        color: var(--art-colors-heading); }
        header.art-header-three .art-header-three-content:hover .art-header-bottom nav ul.menu > li > a:hover, header.art-header-three .art-header-three-content.art-sticky .art-header-bottom nav ul.menu > li > a:hover {
          color: var(--art-colors-link); }
    header.art-header-three .art-header-three-content.art-sticky-hide {
      top: -200px;
      -webkit-transition: none;
      transition: none; }
    header.art-header-three .art-header-three-content.art-sticky {
      position: fixed;
      top: -200px;
      -webkit-transition: top .3s ease;
      transition: top .3s ease; }
      header.art-header-three .art-header-three-content.art-sticky.art-sticky-show {
        top: 0; }
      body.admin-bar header.art-header-three .art-header-three-content.art-sticky {
        margin-top: 32px; }
        @media only screen and (max-width: 782px) {
          body.admin-bar header.art-header-three .art-header-three-content.art-sticky {
            margin-top: 46px; } }
        @media only screen and (max-width: 600px) {
          body.admin-bar header.art-header-three .art-header-three-content.art-sticky {
            margin-top: 0; } }
      header.art-header-three .art-header-three-content.art-sticky .art-header-top {
        min-height: 60px; }
      header.art-header-three .art-header-three-content.art-sticky .art-navigation-container {
        min-height: unset; }
        header.art-header-three .art-header-three-content.art-sticky .art-navigation-container .center-content nav ul.menu > li {
          padding-top: 0;
          padding-bottom: 0; }
          header.art-header-three .art-header-three-content.art-sticky .art-navigation-container .center-content nav ul.menu > li > a {
            padding: 10px 0; }
        header.art-header-three .art-header-three-content.art-sticky .art-navigation-container .right-content .art-social-container {
          opacity: 0;
          visibility: hidden;
          display: none; }
        header.art-header-three .art-header-three-content.art-sticky .art-navigation-container .right-content .art-site-header-appointment {
          opacity: 1;
          visibility: visible;
          display: block; }
          @media only screen and (max-width: 1240px) {
            header.art-header-three .art-header-three-content.art-sticky .art-navigation-container .right-content .art-site-header-appointment {
              display: none; } }
    header.art-header-three .art-header-three-content .art-header-top {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      position: relative;
      left: 0;
      padding-left: var(--art-container-hor-pad);
      padding-right: var(--art-container-hor-pad);
      min-height: 68px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      -webkit-transition: all .3s ease-in-out;
      transition: all .3s ease-in-out; }
      @media only screen and (max-width: 1240px) {
        header.art-header-three .art-header-three-content .art-header-top {
          border-bottom: 0; } }
      header.art-header-three .art-header-three-content .art-header-top .art-header-top-left {
        width: 300px; }
        header.art-header-three .art-header-three-content .art-header-top .art-header-top-left .art-social-container a {
          color: var(--art-colors-bg); }
          header.art-header-three .art-header-three-content .art-header-top .art-header-top-left .art-social-container a:hover {
            color: var(--art-colors-link); }
      header.art-header-three .art-header-three-content .art-header-top .art-header-top-center .art--logo-container .light-logotype {
        outline: none; }
      header.art-header-three .art-header-three-content .art-header-top .art-header-top-right {
        width: 300px;
        text-align: right;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: right;
            -ms-flex-pack: right;
                justify-content: right; }
        @media only screen and (max-width: 1240px) {
          header.art-header-three .art-header-three-content .art-header-top .art-header-top-right {
            width: auto; } }
        header.art-header-three .art-header-three-content .art-header-top .art-header-top-right .art-search-blog-button {
          margin-right: 14px;
          margin-top: 2px; }
        header.art-header-three .art-header-three-content .art-header-top .art-header-top-right .art-header-login-link {
          margin-right: 20px; }
        header.art-header-three .art-header-three-content .art-header-top .art-header-top-right .art-site-header-appointment {
          font-family: var(--art-button-font-family);
          font-weight: var(--art-button-font-weight);
          font-style: var(--art-button-font-style);
          text-transform: var(--art-button-text-transform);
          -webkit-text-decoration: var(--art-button-text-decoration);
                  text-decoration: var(--art-button-text-decoration);
          font-size: var(--art-button-font-size);
          line-height: var(--art-button-line-height);
          letter-spacing: var(--art-button-letter-spacing);
          color: var(--art-colors-bg); }
          header.art-header-three .art-header-three-content .art-header-top .art-header-top-right .art-site-header-appointment:hover {
            color: var(--art-colors-link); }
          @media only screen and (max-width: 1240px) {
            header.art-header-three .art-header-three-content .art-header-top .art-header-top-right .art-site-header-appointment {
              display: none; } }
        header.art-header-three .art-header-three-content .art-header-top .art-header-top-right .hamburger-inner, header.art-header-three .art-header-three-content .art-header-top .art-header-top-right .hamburger-inner:before, header.art-header-three .art-header-three-content .art-header-top .art-header-top-right .hamburger-inner:after {
          background-color: var(--art-colors-bg); }
    header.art-header-three .art-header-three-content .art-header-bottom {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      padding-left: var(--art-container-hor-pad);
      padding-right: var(--art-container-hor-pad);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      position: relative;
      -webkit-transition: all .3s ease-in-out;
      transition: all .3s ease-in-out; }
      @media only screen and (max-width: 1240px) {
        header.art-header-three .art-header-three-content .art-header-bottom {
          display: none; } }
      header.art-header-three .art-header-three-content .art-header-bottom nav ul.menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        padding: 0 10px; }
        header.art-header-three .art-header-three-content .art-header-bottom nav ul.menu > li {
          padding: 0 20px;
          -webkit-transition: all 300ms ease-in-out, padding 0;
          transition: all 300ms ease-in-out, padding 0; }
          header.art-header-three .art-header-three-content .art-header-bottom nav ul.menu > li > a {
            font-family: var(--art-body-four-font-family);
            font-weight: var(--art-body-four-font-weight);
            font-style: var(--art-body-four-font-style);
            text-transform: var(--art-body-four-text-transform);
            -webkit-text-decoration: var(--art-body-four-text-decoration);
                    text-decoration: var(--art-body-four-text-decoration);
            font-size: var(--art-body-four-font-size);
            line-height: var(--art-body-four-line-height);
            letter-spacing: var(--art-body-four-letter-spacing);
            text-align: center;
            color: var(--art-colors-bg);
            display: block;
            padding: 13px 0;
            position: relative; }
            @media only screen and (max-width: 767px) {
              header.art-header-three .art-header-three-content .art-header-bottom nav ul.menu > li > a {
                font-family: var(--art-body-four-mobile-font-family);
                font-weight: var(--art-body-four-mobile-font-weight);
                font-style: var(--art-body-four-mobile-font-style);
                text-transform: var(--art-body-four-mobile-text-transform);
                -webkit-text-decoration: var(--art-body-four-mobile-text-decoration);
                        text-decoration: var(--art-body-four-mobile-text-decoration);
                font-size: var(--art-body-four-mobile-font-size);
                line-height: var(--art-body-four-mobile-line-height);
                letter-spacing: var(--art-body-four-mobile-letter-spacing); } }
            header.art-header-three .art-header-three-content .art-header-bottom nav ul.menu > li > a:after {
              content: '';
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              position: absolute;
              bottom: 12px;
              width: 100%;
              opacity: 0;
              height: 2px;
              -webkit-transition: all .2s ease-in-out;
              transition: all .2s ease-in-out;
              background-color: var(--art-colors-bg); }
          header.art-header-three .art-header-three-content .art-header-bottom nav ul.menu > li:hover > a, header.art-header-three .art-header-three-content .art-header-bottom nav ul.menu > li.current-menu-item > a, header.art-header-three .art-header-three-content .art-header-bottom nav ul.menu > li.current-menu-ancestor > a {
            color: var(--art-colors-link); }
            header.art-header-three .art-header-three-content .art-header-bottom nav ul.menu > li:hover > a:after, header.art-header-three .art-header-three-content .art-header-bottom nav ul.menu > li.current-menu-item > a:after, header.art-header-three .art-header-three-content .art-header-bottom nav ul.menu > li.current-menu-ancestor > a:after {
              opacity: 1; }
          header.art-header-three .art-header-three-content .art-header-bottom nav ul.menu > li.has-submenu:hover .sub-nav > .sub-menu {
            opacity: 1;
            visibility: visible;
            -webkit-transition-delay: 0.15s;
                    transition-delay: 0.15s; }
        header.art-header-three .art-header-three-content .art-header-bottom nav ul.menu li {
          position: relative; }
          header.art-header-three .art-header-three-content .art-header-bottom nav ul.menu li .sub-menu {
            opacity: 0;
            visibility: hidden;
            -webkit-transition: all 200ms ease-in-out;
            transition: all 200ms ease-in-out;
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 240px;
            margin-left: 0;
            margin-right: 0;
            padding: 6px 0 4px;
            z-index: 9999;
            background-color: #fff; }
          header.art-header-three .art-header-three-content .art-header-bottom nav ul.menu li li {
            position: relative;
            padding: 9px 25px 9px 16px; }
            header.art-header-three .art-header-three-content .art-header-bottom nav ul.menu li li .sub-menu {
              top: 0;
              left: 100%;
              margin: -6px 0 0; }
            header.art-header-three .art-header-three-content .art-header-bottom nav ul.menu li li.has-submenu:after {
              font-family: "denaro-font";
              font-size: 16px;
              line-height: 1em;
              width: 1em;
              height: 1em;
              margin: auto !important;
              position: absolute;
              left: auto;
              right: 14px;
              top: 0;
              bottom: 0;
              content: '\c017'; }
            header.art-header-three .art-header-three-content .art-header-bottom nav ul.menu li li.has-submenu:hover > .sub-menu {
              opacity: 1;
              visibility: visible;
              -webkit-transition-delay: 0.15s;
                      transition-delay: 0.15s; }
            header.art-header-three .art-header-three-content .art-header-bottom nav ul.menu li li a {
              font-family: var(--art-body-two-font-family);
              font-weight: var(--art-body-two-font-weight);
              font-style: var(--art-body-two-font-style);
              text-transform: var(--art-body-two-text-transform);
              -webkit-text-decoration: var(--art-body-two-text-decoration);
                      text-decoration: var(--art-body-two-text-decoration);
              font-size: var(--art-body-two-font-size);
              line-height: var(--art-body-two-line-height);
              letter-spacing: var(--art-body-two-letter-spacing);
              color: var(--art-colors-heading);
              display: block; }
              @media only screen and (max-width: 767px) {
                header.art-header-three .art-header-three-content .art-header-bottom nav ul.menu li li a {
                  font-family: var(--art-body-two-mobile-font-family);
                  font-weight: var(--art-body-two-mobile-font-weight);
                  font-style: var(--art-body-two-mobile-font-style);
                  text-transform: var(--art-body-two-mobile-text-transform);
                  -webkit-text-decoration: var(--art-body-two-mobile-text-decoration);
                          text-decoration: var(--art-body-two-mobile-text-decoration);
                  font-size: var(--art-body-two-mobile-font-size);
                  line-height: var(--art-body-two-mobile-line-height);
                  letter-spacing: var(--art-body-two-mobile-letter-spacing); } }
              header.art-header-three .art-header-three-content .art-header-bottom nav ul.menu li li a:hover {
                color: var(--art-colors-link); }
            header.art-header-three .art-header-three-content .art-header-bottom nav ul.menu li li:hover > a, header.art-header-three .art-header-three-content .art-header-bottom nav ul.menu li li.current-menu-item > a, header.art-header-three .art-header-three-content .art-header-bottom nav ul.menu li li.current-menu-ancestor > a {
              color: var(--art-colors-link); }

#art-main-holder .art--header ul.menu li.mega-menu-item {
  position: static; }
  #art-main-holder .art--header ul.menu li.mega-menu-item .sub-nav > ul.sub-menu {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: -1px 0 0;
    padding: 40px 70px 40px 70px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
    #art-main-holder .art--header ul.menu li.mega-menu-item .sub-nav > ul.sub-menu li:hover > a:after {
      display: none; }
    #art-main-holder .art--header ul.menu li.mega-menu-item .sub-nav > ul.sub-menu > li {
      width: 300px;
      margin: 0;
      padding: 0 10px; }
      #art-main-holder .art--header ul.menu li.mega-menu-item .sub-nav > ul.sub-menu > li::after {
        display: none; }
      #art-main-holder .art--header ul.menu li.mega-menu-item .sub-nav > ul.sub-menu > li > a {
        text-transform: uppercase; }
      #art-main-holder .art--header ul.menu li.mega-menu-item .sub-nav > ul.sub-menu > li a {
        padding: 0; }
      #art-main-holder .art--header ul.menu li.mega-menu-item .sub-nav > ul.sub-menu > li ul {
        border: 0;
        background-color: transparent;
        display: block;
        margin: 0;
        padding: 0;
        -webkit-box-shadow: none;
                box-shadow: none;
        position: static; }
        #art-main-holder .art--header ul.menu li.mega-menu-item .sub-nav > ul.sub-menu > li ul li {
          margin: 0;
          padding: 14px 0 0; }
          #art-main-holder .art--header ul.menu li.mega-menu-item .sub-nav > ul.sub-menu > li ul li::after {
            content: none; }
  #art-main-holder .art--header ul.menu li.mega-menu-item:hover .sub-nav > ul.sub-menu > li.sub-nav-item ul {
    opacity: 1;
    visibility: visible;
    position: static; }

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  background-color: transparent;
  background-image: none;
  padding: 7px 0 4px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.05s;
          transition-duration: 0.05s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0; }
  .hamburger:hover {
    background-color: transparent;
    background-image: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 0;
    opacity: 1; }

.info_block_hamburger {
  line-height: 0;
  margin-left: 14px; }

.hamburger-box {
  width: 20px;
  height: 18px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 20px;
    height: 2px;
    background-color: #444;
    border-radius: 0;
    position: absolute;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.15s;
            transition-duration: 0.15s;
    -webkit-transition-timing-function: ease;
            transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -8px; }
  .hamburger-inner::after {
    bottom: -8px; }

/*
	* Collapse Reverse
	*/
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-duration: 0.13s;
          transition-duration: 0.13s;
  -webkit-transition-delay: 0.13s;
          transition-delay: 0.13s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse-r .hamburger-inner::after {
    top: -16px;
    -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse-r .hamburger-inner::before {
    -webkit-transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -8px, 0) rotate(45deg);
          transform: translate3d(0, -8px, 0) rotate(45deg);
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  .hamburger--collapse-r.is-active .hamburger-inner::before {
    top: 0;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/* Footer Widgets */
.art-footer-widgets {
  background-color: var(--art-colors-main-footer-bg); }
  .art-second-color-scheme .art-footer-widgets {
    background-color: var(--art-bg-main-footer-bg); }
  .art-footer-widgets__outer {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding-left: var(--art-container-hor-pad);
    padding-right: var(--art-container-hor-pad); }
  .art-footer-widgets__inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -15px;
    padding-top: 100px;
    padding-bottom: 50px; }
    @media only screen and (max-width: 540px) {
      .art-footer-widgets__inner {
        padding-top: 50px;
        padding-bottom: 0; } }
  .art-footer-widgets__area {
    width: 100%;
    padding: 0 15px; }
    @media only screen and (min-width: 768px) {
      .art-columns-4 .art-footer-widgets__area {
        width: 50%; } }
    @media only screen and (min-width: 1025px) {
      .art-columns-4 .art-footer-widgets__area {
        width: 25%; } }
    @media only screen and (min-width: 768px) {
      .art-columns-3 .art-footer-widgets__area {
        width: 33.33%; } }
    @media only screen and (min-width: 768px) {
      .art-columns-2 .art-footer-widgets__area {
        width: 50%; } }
  .art-footer-widgets .widget {
    margin-bottom: 50px; }
    .art-footer-widgets .widget .footer-widget--title {
      margin-bottom: 20px; }
  .art-footer-widgets .widget_nav_menu li a {
    font-family: var(--art-body-four-font-family);
    font-weight: var(--art-body-four-font-weight);
    font-style: var(--art-body-four-font-style);
    text-transform: var(--art-body-four-text-transform);
    -webkit-text-decoration: var(--art-body-four-text-decoration);
            text-decoration: var(--art-body-four-text-decoration);
    font-size: var(--art-body-four-font-size);
    line-height: var(--art-body-four-line-height);
    letter-spacing: var(--art-body-four-letter-spacing); }
    @media only screen and (max-width: 767px) {
      .art-footer-widgets .widget_nav_menu li a {
        font-family: var(--art-body-four-mobile-font-family);
        font-weight: var(--art-body-four-mobile-font-weight);
        font-style: var(--art-body-four-mobile-font-style);
        text-transform: var(--art-body-four-mobile-text-transform);
        -webkit-text-decoration: var(--art-body-four-mobile-text-decoration);
                text-decoration: var(--art-body-four-mobile-text-decoration);
        font-size: var(--art-body-four-mobile-font-size);
        line-height: var(--art-body-four-mobile-line-height);
        letter-spacing: var(--art-body-four-mobile-letter-spacing); } }
  .art-footer-widgets .art-social-container a i {
    -webkit-transition: all 300ms;
    transition: all 300ms; }
  .art-footer-widgets .art-social-container a:hover i {
    color: #fff;
    opacity: 1; }

/* Footer */
.art-footer {
  background-color: var(--art-colors-main-footer-bg); }
  .art-second-color-scheme .art-footer {
    background-color: var(--art-bg-main-footer-bg); }
  .art-footer__outer {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding-left: var(--art-container-hor-pad);
    padding-right: var(--art-container-hor-pad); }
  .art-footer__inner {
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 50px;
    padding-bottom: 40px; }
    @media only screen and (min-width: 541px) {
      .art-footer__inner {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; } }
    @media only screen and (max-width: 540px) {
      .art-footer__inner {
        padding-top: 40px; } }
  .art-footer .art-social-container a {
    opacity: .7; }
    .art-footer .art-social-container a:hover {
      opacity: 1;
      color: #fff; }
  .art-footer .art-social-container + .art-footer-copyright {
    margin-top: 43px; }
  .art-footer-copyright {
    font-family: var(--art-accent-font-family);
    font-weight: var(--art-accent-font-weight);
    font-style: var(--art-accent-font-style);
    text-transform: var(--art-accent-text-transform);
    -webkit-text-decoration: var(--art-accent-text-decoration);
            text-decoration: var(--art-accent-text-decoration);
    font-size: var(--art-accent-font-size);
    line-height: var(--art-accent-line-height);
    letter-spacing: var(--art-accent-letter-spacing);
    opacity: 1; }

/* WordPress Widgets */
.widget {
  margin-bottom: 42px; }
  .widget .widget-title {
    margin-bottom: 20px; }
  .widget ul {
    list-style-position: inside;
    margin: 0; }

.art-subscribe-widget-area {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 108px;
  padding-bottom: 108px; }

.art-widget-subscribe-form__data {
  margin-bottom: 22px; }
  .art-subscribe-widget-area .art-widget-subscribe-form__data {
    margin-bottom: 43px; }

.art-widget-subscribe-form__title {
  margin: 0; }
  .art-subscribe-widget-area .art-widget-subscribe-form__title {
    text-align: center;
    font-family: var(--art-h2-font-family);
    font-weight: var(--art-h2-font-weight);
    font-style: var(--art-h2-font-style);
    text-transform: var(--art-h2-text-transform);
    -webkit-text-decoration: var(--art-h2-text-decoration);
            text-decoration: var(--art-h2-text-decoration);
    font-size: var(--art-h2-font-size);
    line-height: var(--art-h2-line-height);
    letter-spacing: var(--art-h2-letter-spacing); }
    @media only screen and (max-width: 767px) {
      .art-subscribe-widget-area .art-widget-subscribe-form__title {
        font-family: var(--art-h2-mobile-font-family);
        font-weight: var(--art-h2-mobile-font-weight);
        font-style: var(--art-h2-mobile-font-style);
        text-transform: var(--art-h2-mobile-text-transform);
        -webkit-text-decoration: var(--art-h2-mobile-text-decoration);
                text-decoration: var(--art-h2-mobile-text-decoration);
        font-size: var(--art-h2-mobile-font-size);
        line-height: var(--art-h2-mobile-line-height);
        letter-spacing: var(--art-h2-mobile-letter-spacing); } }
  .art-widget-subscribe-form__title + .art-widget-subscribe-form__subtitle {
    margin-top: 10px; }
    .art-subscribe-widget-area .art-widget-subscribe-form__title + .art-widget-subscribe-form__subtitle {
      margin-top: 25px; }

.art-widget-subscribe-form__subtitle {
  font-family: var(--art-body-two-font-family);
  font-weight: var(--art-body-two-font-weight);
  font-style: var(--art-body-two-font-style);
  text-transform: var(--art-body-two-text-transform);
  -webkit-text-decoration: var(--art-body-two-text-decoration);
          text-decoration: var(--art-body-two-text-decoration);
  font-size: var(--art-body-two-font-size);
  line-height: var(--art-body-two-line-height);
  letter-spacing: var(--art-body-two-letter-spacing);
  margin: 0; }
  @media only screen and (max-width: 767px) {
    .art-widget-subscribe-form__subtitle {
      font-family: var(--art-body-two-mobile-font-family);
      font-weight: var(--art-body-two-mobile-font-weight);
      font-style: var(--art-body-two-mobile-font-style);
      text-transform: var(--art-body-two-mobile-text-transform);
      -webkit-text-decoration: var(--art-body-two-mobile-text-decoration);
              text-decoration: var(--art-body-two-mobile-text-decoration);
      font-size: var(--art-body-two-mobile-font-size);
      line-height: var(--art-body-two-mobile-line-height);
      letter-spacing: var(--art-body-two-mobile-letter-spacing); } }
  .art-subscribe-widget-area .art-widget-subscribe-form__subtitle {
    text-align: center;
    font-family: var(--art-body-font-family);
    font-weight: var(--art-body-font-weight);
    font-style: var(--art-body-font-style);
    text-transform: var(--art-body-text-transform);
    -webkit-text-decoration: var(--art-body-text-decoration);
            text-decoration: var(--art-body-text-decoration);
    font-size: var(--art-body-font-size);
    line-height: var(--art-body-line-height);
    letter-spacing: var(--art-body-letter-spacing); }
    @media only screen and (max-width: 767px) {
      .art-subscribe-widget-area .art-widget-subscribe-form__subtitle {
        font-family: var(--art-body-mobile-font-family);
        font-weight: var(--art-body-mobile-font-weight);
        font-style: var(--art-body-mobile-font-style);
        text-transform: var(--art-body-mobile-text-transform);
        -webkit-text-decoration: var(--art-body-mobile-text-decoration);
                text-decoration: var(--art-body-mobile-text-decoration);
        font-size: var(--art-body-mobile-font-size);
        line-height: var(--art-body-mobile-line-height);
        letter-spacing: var(--art-body-mobile-letter-spacing); } }

.art-subscribe-widget-area .art-widget-subscribe-form form {
  width: 420px;
  margin: 0 auto; }

.art-widget-subscribe-form form p.art-sub-inputs {
  margin: 0; }

.art-widget-social .art-social-container a {
  color: var(--art-colors-heading); }
  .art-second-color-scheme .art-widget-social .art-social-container a {
    color: var(--art-bg-heading); }
  .art-widget-social .art-social-container a:hover {
    color: var(--art-colors-link); }
    .art-second-color-scheme .art-widget-social .art-social-container a:hover {
      color: var(--art-bg-link); }

/* Archive */
.widget_archive > ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  color: var(--art-colors-text);
  margin-top: 0;
  margin-bottom: 0; }
  .art-second-color-scheme .widget_archive > ul {
    color: var(--art-bg-text); }
  .widget_archive > ul li {
    margin-top: 15px; }
  .widget_archive > ul > li:first-child {
    margin-top: 0; }
  .widget_archive > ul a {
    color: var(--art-colors-text); }
    .art-second-color-scheme .widget_archive > ul a {
      color: var(--art-bg-text); }
    .widget_archive > ul a:hover {
      color: var(--art-colors-link); }
      .art-second-color-scheme .widget_archive > ul a:hover {
        color: var(--art-bg-link); }
  .widget_archive > ul ul {
    list-style: none; }

/* Calendar */
.widget_calendar table {
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  width: 100%;
  max-width: 100%; }
  .widget_calendar table caption {
    text-align: left;
    margin-bottom: 10px; }
  .widget_calendar table th,
  .widget_calendar table td {
    padding: 8px 2px; }
  .widget_calendar table thead th,
  .widget_calendar table thead td {
    outline: none; }
  .widget_calendar table tbody th,
  .widget_calendar table tbody td {
    outline: none; }

.widget_calendar .wp-calendar-nav {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

/* Categories */
.widget_categories > ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  color: var(--art-colors-text);
  margin-top: 0;
  margin-bottom: 0; }
  .art-second-color-scheme .widget_categories > ul {
    color: var(--art-bg-text); }
  .widget_categories > ul li {
    margin-top: 15px; }
  .widget_categories > ul > li:first-child {
    margin-top: 0; }
  .widget_categories > ul a {
    color: var(--art-colors-text); }
    .art-second-color-scheme .widget_categories > ul a {
      color: var(--art-bg-text); }
    .widget_categories > ul a:hover {
      color: var(--art-colors-link); }
      .art-second-color-scheme .widget_categories > ul a:hover {
        color: var(--art-bg-link); }
  .widget_categories > ul ul {
    list-style: none; }

/* Meta */
.widget_meta > ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  color: var(--art-colors-text);
  margin-top: 0;
  margin-bottom: 0; }
  .art-second-color-scheme .widget_meta > ul {
    color: var(--art-bg-text); }
  .widget_meta > ul li {
    margin-top: 15px; }
  .widget_meta > ul > li:first-child {
    margin-top: 0; }
  .widget_meta > ul a {
    color: var(--art-colors-text); }
    .art-second-color-scheme .widget_meta > ul a {
      color: var(--art-bg-text); }
    .widget_meta > ul a:hover {
      color: var(--art-colors-link); }
      .art-second-color-scheme .widget_meta > ul a:hover {
        color: var(--art-bg-link); }
  .widget_meta > ul ul {
    list-style: none; }

/* Navigation Menu */
.widget_nav_menu ul {
  background-color: transparent !important;
  background-image: none !important;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--art-colors-text); }
  .art-second-color-scheme .widget_nav_menu ul {
    color: var(--art-bg-text); }

.widget_nav_menu li {
  margin-top: 15px; }

.widget_nav_menu > ul > li:first-child {
  margin-top: 0; }

.widget_nav_menu a {
  color: var(--art-colors-text); }
  .art-second-color-scheme .widget_nav_menu a {
    color: var(--art-bg-text); }
  .widget_nav_menu a:hover {
    color: var(--art-colors-hover); }
    .art-second-color-scheme .widget_nav_menu a:hover {
      color: var(--art-bg-hover); }

.widget_nav_menu ul ul > li > a {
  padding-left: 15px; }

.widget_nav_menu ul ul ul > li > a {
  padding-left: 30px; }

.widget_nav_menu ul ul ul ul > li > a {
  padding-left: 45px; }

.widget_nav_menu ul ul ul ul ul > li > a {
  padding-left: 50px; }

.widget_nav_menu ul ul ul ul ul ul > li > a {
  padding-left: 55px; }

.widget_nav_menu ul ul ul ul ul ul ul > li > a {
  padding-left: 60px; }

.widget_nav_menu ul ul ul ul ul ul ul ul > li > a {
  padding-left: 65px; }

.widget_nav_menu ul ul ul ul ul ul ul ul ul > li > a {
  padding-left: 70px; }

.widget_nav_menu ul ul ul ul ul ul ul ul ul ul > li > a {
  padding-left: 75px; }

.widget_nav_menu ul ul ul ul ul ul ul ul ul ul ul > li > a {
  padding-left: 80px; }

/* Pages */
.widget_pages > ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  color: var(--art-colors-text);
  margin-top: 0;
  margin-bottom: 0; }
  .art-second-color-scheme .widget_pages > ul {
    color: var(--art-bg-text); }
  .widget_pages > ul li {
    margin-top: 15px; }
  .widget_pages > ul > li:first-child {
    margin-top: 0; }
  .widget_pages > ul a {
    color: var(--art-colors-text); }
    .art-second-color-scheme .widget_pages > ul a {
      color: var(--art-bg-text); }
    .widget_pages > ul a:hover {
      color: var(--art-colors-link); }
      .art-second-color-scheme .widget_pages > ul a:hover {
        color: var(--art-bg-link); }
  .widget_pages > ul ul {
    list-style: none; }

/* Recent Comments */
.widget_recent_comments ul {
  list-style: none;
  color: var(--art-colors-second-text);
  margin: 0; }
  .art-second-color-scheme .widget_recent_comments ul {
    color: var(--art-bg-second-text); }
  .widget_recent_comments ul li {
    margin-top: 20px;
    padding-top: 20px;
    position: relative; }
    .widget_recent_comments ul li:before {
      content: '';
      background-color: var(--art-colors-bd);
      width: 100%;
      height: 1px;
      position: absolute;
      left: 0;
      top: 0;
      opacity: .1; }
      .art-second-color-scheme .widget_recent_comments ul li:before {
        background-color: var(--art-bg-bd); }
  .widget_recent_comments ul > li:first-child {
    margin-top: 0;
    padding-top: 0; }
    .widget_recent_comments ul > li:first-child::before {
      content: none; }
  .widget_recent_comments ul a {
    color: var(--art-colors-heading); }
    .art-second-color-scheme .widget_recent_comments ul a {
      color: var(--art-bg-heading); }
    .widget_recent_comments ul a:hover {
      color: var(--art-colors-link); }
      .art-second-color-scheme .widget_recent_comments ul a:hover {
        color: var(--art-bg-link); }

/* Recent Posts */
.widget_recent_entries ul {
  list-style: none;
  color: var(--art-colors-second-text);
  margin: 0; }
  .art-second-color-scheme .widget_recent_entries ul {
    color: var(--art-bg-second-text); }
  .widget_recent_entries ul li {
    margin-top: 20px;
    padding-top: 20px;
    position: relative; }
    .widget_recent_entries ul li:before {
      content: '';
      background-color: var(--art-colors-bd);
      width: 100%;
      height: 1px;
      position: absolute;
      left: 0;
      top: 0;
      opacity: .1; }
      .art-second-color-scheme .widget_recent_entries ul li:before {
        background-color: var(--art-bg-bd); }
  .widget_recent_entries ul > li:first-child {
    margin-top: 0;
    padding-top: 0; }
    .widget_recent_entries ul > li:first-child::before {
      content: none; }
  .widget_recent_entries ul a {
    color: var(--art-colors-heading); }
    .art-second-color-scheme .widget_recent_entries ul a {
      color: var(--art-bg-heading); }
    .widget_recent_entries ul a:hover {
      color: var(--art-colors-link); }
      .art-second-color-scheme .widget_recent_entries ul a:hover {
        color: var(--art-bg-link); }

.widget_recent_entries .post-date {
  display: block;
  margin-top: 4px;
  font-family: var(--art-body-four-font-family);
  font-weight: var(--art-body-four-font-weight);
  font-style: var(--art-body-four-font-style);
  text-transform: var(--art-body-four-text-transform);
  -webkit-text-decoration: var(--art-body-four-text-decoration);
          text-decoration: var(--art-body-four-text-decoration);
  font-size: var(--art-body-four-font-size);
  line-height: var(--art-body-four-line-height);
  letter-spacing: var(--art-body-four-letter-spacing); }
  @media only screen and (max-width: 767px) {
    .widget_recent_entries .post-date {
      font-family: var(--art-body-four-mobile-font-family);
      font-weight: var(--art-body-four-mobile-font-weight);
      font-style: var(--art-body-four-mobile-font-style);
      text-transform: var(--art-body-four-mobile-text-transform);
      -webkit-text-decoration: var(--art-body-four-mobile-text-decoration);
              text-decoration: var(--art-body-four-mobile-text-decoration);
      font-size: var(--art-body-four-mobile-font-size);
      line-height: var(--art-body-four-mobile-line-height);
      letter-spacing: var(--art-body-four-mobile-letter-spacing); } }

/* RSS */
.widget_rss ul {
  list-style: none;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0; }
  .widget_rss ul li {
    margin-top: 25px;
    padding-top: 20px;
    position: relative; }
    .widget_rss ul li:before {
      content: '';
      background-color: var(--art-colors-bd);
      width: 100%;
      height: 1px;
      position: absolute;
      left: 0;
      top: 0;
      opacity: .1; }
      .art-second-color-scheme .widget_rss ul li:before {
        background-color: var(--art-bg-bd); }
  .widget_rss ul > li:first-child {
    margin-top: 0;
    padding-top: 0; }
    .widget_rss ul > li:first-child::before {
      content: none; }
  .widget_rss ul .rsswidget {
    color: var(--art-colors-heading);
    display: block; }
    .art-second-color-scheme .widget_rss ul .rsswidget {
      color: var(--art-bg-heading); }
    .widget_rss ul .rsswidget:hover {
      color: var(--art-colors-link); }
      .art-second-color-scheme .widget_rss ul .rsswidget:hover {
        color: var(--art-bg-link); }
  .widget_rss ul .rss-date,
  .widget_rss ul cite {
    display: block;
    font-family: var(--art-accent-font-family);
    font-weight: var(--art-accent-font-weight);
    font-style: var(--art-accent-font-style);
    text-transform: var(--art-accent-text-transform);
    -webkit-text-decoration: var(--art-accent-text-decoration);
            text-decoration: var(--art-accent-text-decoration);
    font-size: var(--art-accent-font-size);
    line-height: var(--art-accent-line-height);
    letter-spacing: var(--art-accent-letter-spacing);
    color: var(--art-colors-second-text);
    margin-top: 10px; }
    .art-second-color-scheme .widget_rss ul .rss-date, .art-second-color-scheme
    .widget_rss ul cite {
      color: var(--art-bg-second-text); }
  .widget_rss ul .rssSummary {
    font-family: var(--art-body-two-font-family);
    font-weight: var(--art-body-two-font-weight);
    font-style: var(--art-body-two-font-style);
    text-transform: var(--art-body-two-text-transform);
    -webkit-text-decoration: var(--art-body-two-text-decoration);
            text-decoration: var(--art-body-two-text-decoration);
    font-size: var(--art-body-two-font-size);
    line-height: var(--art-body-two-line-height);
    letter-spacing: var(--art-body-two-letter-spacing);
    margin-top: 10px; }
    @media only screen and (max-width: 767px) {
      .widget_rss ul .rssSummary {
        font-family: var(--art-body-two-mobile-font-family);
        font-weight: var(--art-body-two-mobile-font-weight);
        font-style: var(--art-body-two-mobile-font-style);
        text-transform: var(--art-body-two-mobile-text-transform);
        -webkit-text-decoration: var(--art-body-two-mobile-text-decoration);
                text-decoration: var(--art-body-two-mobile-text-decoration);
        font-size: var(--art-body-two-mobile-font-size);
        line-height: var(--art-body-two-mobile-line-height);
        letter-spacing: var(--art-body-two-mobile-letter-spacing); } }

/* Tag Cloud */
.widget_tag_cloud .tag-cloud-link {
  font-size: 14px !important; }

/* Text */
.widget_text .textwidget:after {
  content: '.';
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
  overflow: hidden; }

.widget_text .textwidget > *:first-child {
  margin-top: 0; }

.widget_text .textwidget > *:last-child {
  margin-bottom: 0; }

/* Headline */
.art-heading-wrapper {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 134px 0 132px 0; }
  @media only screen and (max-width: 767px) {
    .art-heading-wrapper {
      padding: 80px 0 78px 0; } }
  .art-heading-wrapper .art-heading-content {
    max-width: 701px;
    margin-left: 10%; }
    @media only screen and (max-width: 767px) {
      .art-heading-wrapper .art-heading-content {
        margin: 0 15px; } }
    .art-heading-wrapper .art-heading-content .art-heading-title {
      margin-bottom: 20px; }

@media only screen and (min-width: 1025px) {
  .art-headline-simple.art-headline-search {
    min-height: 500px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; } }

.art-headline-simple .art-headline__outer {
  text-align: center;
  padding: 40px 0;
  margin: 0; }
  .art-headline-simple .art-headline__outer * {
    margin: 0; }

.art-headline-simple .art-headline__title {
  font-family: var(--art-h3-font-family);
  font-weight: var(--art-h3-font-weight);
  font-style: var(--art-h3-font-style);
  text-transform: var(--art-h3-text-transform);
  -webkit-text-decoration: var(--art-h3-text-decoration);
          text-decoration: var(--art-h3-text-decoration);
  font-size: var(--art-h3-font-size);
  line-height: var(--art-h3-line-height);
  letter-spacing: var(--art-h3-letter-spacing);
  margin: 0; }
  @media only screen and (max-width: 767px) {
    .art-headline-simple .art-headline__title {
      font-family: var(--art-h3-mobile-font-family);
      font-weight: var(--art-h3-mobile-font-weight);
      font-style: var(--art-h3-mobile-font-style);
      text-transform: var(--art-h3-mobile-text-transform);
      -webkit-text-decoration: var(--art-h3-mobile-text-decoration);
              text-decoration: var(--art-h3-mobile-text-decoration);
      font-size: var(--art-h3-mobile-font-size);
      line-height: var(--art-h3-mobile-line-height);
      letter-spacing: var(--art-h3-mobile-letter-spacing); } }

.art-headline-simple .art-headline__subtitle {
  color: var(--art-colors-second-text);
  margin: 20px 0 0; }

.art-headline-simple .art-search-again-wrapper {
  margin-top: 62px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.art-headline-big {
  position: relative;
  background-color: var(--art-colors-second-bg); }
  .art-second-color-scheme .art-headline-big {
    background-color: var(--art-bg-second-bg); }
  @media only screen and (min-width: 768px) {
    .art-headline-image-alignment-left .art-headline-big {
      background-image: var(--art-headline-left-bg-image);
      background-repeat: var(--art-headline-left-bg-repeat);
      background-position: var(--art-headline-left-bg-position);
      background-size: var(--art-headline-left-bg-size);
      background-attachment: var(--art-headline-left-bg-attachment); }
    .art-headline-image-alignment-right .art-headline-big {
      background-image: var(--art-headline-right-bg-image);
      background-repeat: var(--art-headline-right-bg-repeat);
      background-position: var(--art-headline-right-bg-position);
      background-size: var(--art-headline-right-bg-size);
      background-attachment: var(--art-headline-right-bg-attachment); } }
  .art-headline-image-alignment-left .art-headline-big .art-svg-line {
    left: 0;
    right: auto; }
  .art-headline-image-alignment-right .art-headline-big .art-svg-line {
    left: auto;
    right: 0; }
  @media only screen and (max-width: 767px) {
    .art-headline-big .art-svg-line {
      display: none; } }
  .art-headline-big .art-headline__outer {
    /*padding-top: 50px;
		padding-bottom: 50px;
		display: flex;
		flex-direction: column;
		position: relative;*/ }
    @media only screen and (min-width: 768px) {
      .art-headline-big .art-headline__outer {
        padding-top: 0;
        padding-bottom: 0;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        min-height: 450px; } }
    @media only screen and (min-width: 768px) {
      .art-headline-image-alignment-left .art-headline-big .art-headline__outer.art-headline-no-image {
        padding-left: 38.21%; }
      .art-headline-image-alignment-right .art-headline-big .art-headline__outer.art-headline-no-image {
        padding-right: 38.21%; } }
    .art-headline-big .art-headline__outer.art-headline-no-image .art-headline__content {
      width: 65%; }
      .art-headline-image-alignment-left .art-headline-big .art-headline__outer.art-headline-no-image .art-headline__content {
        padding-left: 0; }
      .art-headline-image-alignment-right .art-headline-big .art-headline__outer.art-headline-no-image .art-headline__content {
        padding-right: 0; }
      @media only screen and (max-width: 1199px) {
        .art-headline-big .art-headline__outer.art-headline-no-image .art-headline__content {
          width: 100%; } }
  .art-headline-big .art-headline__image {
    margin-bottom: 50px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1; }
    @media only screen and (min-width: 768px) {
      .art-headline-big .art-headline__image {
        width: 51.2%;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        padding-top: 50px;
        padding-bottom: 50px;
        margin-bottom: 0;
        -webkit-box-ordinal-group: initial;
            -ms-flex-order: initial;
                order: initial; }
        .art-headline-type-first .art-headline-big .art-headline__image {
          padding-top: 65px;
          padding-bottom: 65px; } }
    .art-headline-big .art-headline__image img {
      width: 100%; }
  .art-headline-big .art-headline__content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2; }
    @media only screen and (min-width: 768px) {
      .art-headline-big .art-headline__content {
        width: 48.8%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-ordinal-group: initial;
            -ms-flex-order: initial;
                order: initial;
        padding-top: 65px;
        padding-bottom: 65px; }
        .art-headline-image-alignment-left .art-headline-big .art-headline__content .art-headline__content-inner {
          padding-left: 12%; }
        .art-headline-image-alignment-right .art-headline-big .art-headline__content .art-headline__content-inner {
          padding-right: 12%; } }
  .art-headline-big .art-headline__title {
    font-family: var(--art-h2-font-family);
    font-weight: var(--art-h2-font-weight);
    font-style: var(--art-h2-font-style);
    text-transform: var(--art-h2-text-transform);
    -webkit-text-decoration: var(--art-h2-text-decoration);
            text-decoration: var(--art-h2-text-decoration);
    font-size: var(--art-h2-font-size);
    line-height: var(--art-h2-line-height);
    letter-spacing: var(--art-h2-letter-spacing);
    margin: 0;
    position: relative; }
    @media only screen and (max-width: 767px) {
      .art-headline-big .art-headline__title {
        font-family: var(--art-h2-mobile-font-family);
        font-weight: var(--art-h2-mobile-font-weight);
        font-style: var(--art-h2-mobile-font-style);
        text-transform: var(--art-h2-mobile-text-transform);
        -webkit-text-decoration: var(--art-h2-mobile-text-decoration);
                text-decoration: var(--art-h2-mobile-text-decoration);
        font-size: var(--art-h2-mobile-font-size);
        line-height: var(--art-h2-mobile-line-height);
        letter-spacing: var(--art-h2-mobile-letter-spacing); } }
  .art-headline-big .art-headline__title-accent {
    background-color: var(--art-colors-link);
    display: inline-block;
    width: 40px;
    height: 4px;
    margin-bottom: 25px;
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg); }
  .art-headline-big .art-headline__description {
    margin-top: 30px; }

/* Page */
body.art-global-top-banner-enabled .art-main-container {
  padding-top: 122px; }
  body.art-global-top-banner-enabled .art-main-container.art-global-top-header-enabled {
    padding-top: calc(122px + 40px); }

body.art-global-top-banner-enabled .art-herder-top-banner {
  margin-top: 0;
  opacity: 1;
  visibility: visible; }

.art-main-container {
  padding-top: 82px;
  background-color: #ffffff;
  -webkit-transition: padding-top 300ms;
  transition: padding-top 300ms; }

body .art-light-header-text + .art-main-container,
body .art-header-over-content + .art-main-container {
  padding-top: 0 !important; }

.art-page .art-page-content {
  padding-top: 100px;
  padding-bottom: 80px; }
  .art-page .art-page-content:after {
    content: '.';
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
    overflow: hidden; }
  @media only screen and (max-width: 767px) {
    .art-page .art-page-content {
      padding-top: 50px;
      padding-bottom: 40px; } }
  .elementor-page .art-page .art-page-content {
    padding: 0;
    max-width: 100%; }
  .art-page .art-page-content.art-woocommerce-page {
    padding: 40px 15px 0 15px; }
    .woocommerce-checkout .art-page .art-page-content.art-woocommerce-page {
      padding-bottom: 110px; }

.art-main-container .elementor-column-gap-default > .elementor-column > .elementor-element-populated {
  padding: 15px; }

/* WooCommerce Account */
body.woocommerce-account.woocommerce-page .art-page-content form .form-row.form-row-wide {
  padding: 0; }
  body.woocommerce-account.woocommerce-page .art-page-content form .form-row.form-row-wide .password-input {
    width: 100%; }

body.woocommerce-account.woocommerce-page .art-page-content form .woocommerce-form-login__rememberme {
  width: 100%; }

body.woocommerce-account.woocommerce-page .art-page-content form .woocommerce-privacy-policy-text {
  font-family: var(--art-body-five-font-family);
  font-weight: var(--art-body-five-font-weight);
  font-style: var(--art-body-five-font-style);
  text-transform: var(--art-body-five-text-transform);
  -webkit-text-decoration: var(--art-body-five-text-decoration);
          text-decoration: var(--art-body-five-text-decoration);
  font-size: var(--art-body-five-font-size);
  line-height: var(--art-body-five-line-height);
  letter-spacing: var(--art-body-five-letter-spacing);
  margin-bottom: 30px; }

/* Elementor */
body.elementor-editor-active header.art-header-one.art-header-show-border .art-header-one-content {
  position: absolute !important; }

body.elementor-editor-active header.art-header-one .art-header-one-content {
  position: absolute !important; }

body.elementor-editor-active .art-preloader-holder {
  display: none !important; }

body.elementor-editor-active header.art-header-two .art-header-two-content {
  position: absolute !important; }

.elementor-editor-active .art-hero-header-one .art-hero-header-row .art-hero-side-info .art-block-content .art-block-content-wrapper .art-hero-info-wrapper .art-animated-line-block {
  border: 1px solid #000; }

.art-hero-header-one .art-hero-header-row {
  min-height: 768px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  @media only screen and (max-width: 991px) {
    .art-hero-header-one .art-hero-header-row {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse; } }
  .art-hero-header-one .art-hero-header-row .art-hero-side-info .art-block-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media only screen and (max-width: 991px) {
      .art-hero-header-one .art-hero-header-row .art-hero-side-info .art-block-content {
        padding-top: 50px;
        padding-bottom: 50px; } }
    .art-hero-header-one .art-hero-header-row .art-hero-side-info .art-block-content .art-block-content-wrapper {
      width: 553px; }
      @media only screen and (max-width: 767px) {
        .art-hero-header-one .art-hero-header-row .art-hero-side-info .art-block-content .art-block-content-wrapper {
          width: 100%; } }
      .art-hero-header-one .art-hero-header-row .art-hero-side-info .art-block-content .art-block-content-wrapper .art-hero-info-wrapper {
        position: relative; }
        .art-hero-header-one .art-hero-header-row .art-hero-side-info .art-block-content .art-block-content-wrapper .art-hero-info-wrapper .art-hero-info-title {
          margin-bottom: 30px; }
          @media only screen and (max-width: 767px) {
            .art-hero-header-one .art-hero-header-row .art-hero-side-info .art-block-content .art-block-content-wrapper .art-hero-info-wrapper .art-hero-info-title {
              margin-bottom: 10px; } }
        .art-hero-header-one .art-hero-header-row .art-hero-side-info .art-block-content .art-block-content-wrapper .art-hero-info-wrapper .art-animated-line-block {
          position: absolute; }
          @media only screen and (max-width: 767px) {
            .art-hero-header-one .art-hero-header-row .art-hero-side-info .art-block-content .art-block-content-wrapper .art-hero-info-wrapper .art-animated-line-block {
              display: none; } }
        .art-hero-header-one .art-hero-header-row .art-hero-side-info .art-block-content .art-block-content-wrapper .art-hero-info-wrapper .art-hero-info-description {
          margin-bottom: 40px; }
          @media only screen and (max-width: 767px) {
            .art-hero-header-one .art-hero-header-row .art-hero-side-info .art-block-content .art-block-content-wrapper .art-hero-info-wrapper .art-hero-info-description {
              margin-bottom: 30px; } }
      .art-hero-header-one .art-hero-header-row .art-hero-side-info .art-block-content .art-block-content-wrapper .art-block-form-items {
        margin-bottom: 40px; }
        .art-hero-header-one .art-hero-header-row .art-hero-side-info .art-block-content .art-block-content-wrapper .art-block-form-items .wpcf7-response-output {
          display: none; }
      .art-hero-header-one .art-hero-header-row .art-hero-side-info .art-block-content .art-block-content-wrapper .art-advantages-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        margin: 0 -15px; }
        .art-hero-header-one .art-hero-header-row .art-hero-side-info .art-block-content .art-block-content-wrapper .art-advantages-list .art-advantage-itself {
          padding: 0 15px 20px 15px; }
          .art-hero-header-one .art-hero-header-row .art-hero-side-info .art-block-content .art-block-content-wrapper .art-advantages-list .art-advantage-itself:last-child {
            padding-bottom: 0; }
          .art-hero-header-one .art-hero-header-row .art-hero-side-info .art-block-content .art-block-content-wrapper .art-advantages-list .art-advantage-itself span {
            margin-left: 8px; }
  .art-hero-header-one .art-hero-header-row .art-hero-side-image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; }
    @media only screen and (max-width: 991px) {
      .art-hero-header-one .art-hero-header-row .art-hero-side-image {
        height: 500px; } }

.art-hero-header-two {
  padding: 122px 0 122px 0; }

.art-partners-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .art-partners-section::-webkit-scrollbar {
    width: 0;
    height: 0;
    background: transparent; }
  .art-partners-section::-webkit-scrollbar-thumb {
    background: transparent; }
  @media only screen and (max-width: 767px) {
    .art-partners-section {
      -webkit-box-pack: unset;
          -ms-flex-pack: unset;
              justify-content: unset; } }
  .art-partners-section .art-partner-item {
    width: 20%;
    padding: 0 20px;
    text-align: center; }
    @media only screen and (max-width: 991px) {
      .art-partners-section .art-partner-item {
        width: auto; } }
    .art-partners-section .art-partner-item img {
      max-width: unset; }

.art-image-circle-block {
  position: relative; }
  .art-image-circle-block .art-image-name-rotating {
    /*position: absolute;
    right: 0;
    top: 0;*/ }
    .art-image-circle-block .art-image-name-rotating img {
      -webkit-transform-origin: 50%;
              transform-origin: 50%;
      -webkit-animation: rotating 16s infinite linear;
              animation: rotating 16s infinite linear; }

@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.art-list-item-section .art-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 26px; }
  .art-list-item-section .art-list-item:last-child {
    margin-bottom: 0; }
  .art-list-item-section .art-list-item svg {
    width: 20px;
    min-width: 20px;
    margin-right: 16px;
    margin-top: 6px; }

.art-list-two-item-section .art-list-item {
  margin-bottom: 50px; }
  .art-list-two-item-section .art-list-item .art-list-item-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 16px; }
    .art-list-two-item-section .art-list-item .art-list-item-top span {
      border: 2px solid;
      border-color: var(--art-colors-bg);
      font-family: var(--art-h6-font-family);
      font-weight: var(--art-h6-font-weight);
      font-style: var(--art-h6-font-style);
      text-transform: var(--art-h6-text-transform);
      -webkit-text-decoration: var(--art-h6-text-decoration);
              text-decoration: var(--art-h6-text-decoration);
      font-size: var(--art-h6-font-size);
      line-height: var(--art-h6-line-height);
      letter-spacing: var(--art-h6-letter-spacing);
      border-radius: 100%;
      width: 40px;
      height: 40px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin-right: 26px; }
      .art-second-color-scheme .art-list-two-item-section .art-list-item .art-list-item-top span {
        border-color: var(--art-bg-bg); }
      @media only screen and (max-width: 767px) {
        .art-list-two-item-section .art-list-item .art-list-item-top span {
          font-family: var(--art-h6-mobile-font-family);
          font-weight: var(--art-h6-mobile-font-weight);
          font-style: var(--art-h6-mobile-font-style);
          text-transform: var(--art-h6-mobile-text-transform);
          -webkit-text-decoration: var(--art-h6-mobile-text-decoration);
                  text-decoration: var(--art-h6-mobile-text-decoration);
          font-size: var(--art-h6-mobile-font-size);
          line-height: var(--art-h6-mobile-line-height);
          letter-spacing: var(--art-h6-mobile-letter-spacing); } }
    .art-list-two-item-section .art-list-item .art-list-item-top .art-list-title {
      margin: 0; }
  .art-list-two-item-section .art-list-item .art-list-item-bottom {
    padding: 0 0 0 68px; }
  .art-list-two-item-section .art-list-item:last-child {
    margin-bottom: 0; }

.art-widget-list-achievements .art-item-achievement {
  margin-bottom: 40px; }
  @media only screen and (max-width: 767px) {
    .art-widget-list-achievements .art-item-achievement {
      margin-bottom: 20px; } }
  .art-widget-list-achievements .art-item-achievement .item-achievement-title {
    margin-bottom: 16px; }
    @media only screen and (max-width: 767px) {
      .art-widget-list-achievements .art-item-achievement .item-achievement-title {
        margin-bottom: 10px; } }

.art-achievements-two .art-item-achievement {
  text-align: center;
  margin-bottom: 40px; }
  .art-achievements-two .art-item-achievement .item-achievement-title {
    margin-top: 20px;
    margin-bottom: 12px; }
  .art-achievements-two .art-item-achievement .item-achievement-text {
    font-family: var(--art-body-two-font-family);
    font-weight: var(--art-body-two-font-weight);
    font-style: var(--art-body-two-font-style);
    text-transform: var(--art-body-two-text-transform);
    -webkit-text-decoration: var(--art-body-two-text-decoration);
            text-decoration: var(--art-body-two-text-decoration);
    font-size: var(--art-body-two-font-size);
    line-height: var(--art-body-two-line-height);
    letter-spacing: var(--art-body-two-letter-spacing); }

.art-achievement-three {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .art-achievement-three .art-achievement-item {
    text-align: center;
    margin-bottom: 40px; }

.art-widget-info-list .art-info-item {
  text-align: center;
  margin-bottom: 30px; }
  @media only screen and (max-width: 767px) {
    .art-widget-info-list .art-info-item .info-item-number {
      margin-bottom: 5px; } }
  .art-widget-info-list .art-info-item .info-item-text {
    font-family: var(--art-body-three-font-family);
    font-weight: var(--art-body-three-font-weight);
    font-style: var(--art-body-three-font-style);
    text-transform: var(--art-body-three-text-transform);
    -webkit-text-decoration: var(--art-body-three-text-decoration);
            text-decoration: var(--art-body-three-text-decoration);
    font-size: var(--art-body-three-font-size);
    line-height: var(--art-body-three-line-height);
    letter-spacing: var(--art-body-three-letter-spacing); }

.art-widget-pricing .art-list-pricing-table {
  margin-bottom: 20px; }
  .art-widget-pricing .art-list-pricing-table .art-list-price-content {
    border: 2px solid #000;
    background-color: #fff;
    padding: 40px 30px 30px 30px; }
    .art-widget-pricing .art-list-pricing-table .art-list-price-content h5 {
      text-align: center;
      margin-bottom: 30px; }
    .art-widget-pricing .art-list-pricing-table .art-list-price-content .art-list-pricing-item {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      font-family: var(--art-body-two-font-family);
      font-weight: var(--art-body-two-font-weight);
      font-style: var(--art-body-two-font-style);
      text-transform: var(--art-body-two-text-transform);
      -webkit-text-decoration: var(--art-body-two-text-decoration);
              text-decoration: var(--art-body-two-text-decoration);
      font-size: var(--art-body-two-font-size);
      line-height: var(--art-body-two-line-height);
      letter-spacing: var(--art-body-two-letter-spacing);
      margin-bottom: 25px; }
      .art-widget-pricing .art-list-pricing-table .art-list-price-content .art-list-pricing-item .art-list-icon {
        background-color: #F4EEE7;
        width: 33px;
        height: 33px;
        border-radius: 100%;
        margin-right: 12px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; }
    .art-widget-pricing .art-list-pricing-table .art-list-price-content .art-list-price-item {
      text-align: center;
      display: block;
      font-family: var(--art-h5-font-family);
      font-weight: var(--art-h5-font-weight);
      font-style: var(--art-h5-font-style);
      text-transform: var(--art-h5-text-transform);
      -webkit-text-decoration: var(--art-h5-text-decoration);
              text-decoration: var(--art-h5-text-decoration);
      font-size: var(--art-h5-font-size);
      line-height: var(--art-h5-line-height);
      letter-spacing: var(--art-h5-letter-spacing);
      margin-top: 36px;
      margin-bottom: 40px; }
    .art-widget-pricing .art-list-pricing-table .art-list-price-content .art-pricing-button {
      width: 100%; }

.art-widget-list-services .art-item-service {
  margin-bottom: 30px; }
  .art-widget-list-services .art-item-service .item-service-title {
    margin-top: 18px;
    margin-bottom: 16px; }
    @media only screen and (max-width: 767px) {
      .art-widget-list-services .art-item-service .item-service-title {
        margin-bottom: 10px; } }

.art-testimonial-images-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media only screen and (max-width: 767px) {
    .art-testimonial-images-wrapper {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse; } }
  .art-testimonial-images-wrapper.art-do-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse; }
    @media only screen and (max-width: 767px) {
      .art-testimonial-images-wrapper.art-do-reverse {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse; } }
    .art-testimonial-images-wrapper.art-do-reverse .art-left-side {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end; }
  .art-testimonial-images-wrapper .art-left-side {
    width: 487px;
    max-width: 487px; }
    @media only screen and (max-width: 991px) {
      .art-testimonial-images-wrapper .art-left-side {
        width: 360px;
        max-width: 360px; } }
    @media only screen and (max-width: 767px) {
      .art-testimonial-images-wrapper .art-left-side {
        width: 100%;
        max-width: 100%; } }
    .art-testimonial-images-wrapper .art-left-side .swiper-container-testimonial-image {
      overflow: hidden;
      max-width: 370px; }
      @media only screen and (max-width: 767px) {
        .art-testimonial-images-wrapper .art-left-side .swiper-container-testimonial-image {
          max-width: 100%; } }
  .art-testimonial-images-wrapper .art-right-side {
    width: calc(100% - 487px);
    margin: 0 auto;
    padding: 0 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media only screen and (max-width: 767px) {
      .art-testimonial-images-wrapper .art-right-side {
        width: 100%;
        padding: 0;
        margin-bottom: 30px; } }
    .art-testimonial-images-wrapper .art-right-side .art-right-side-data {
      position: relative;
      padding-bottom: 71px;
      max-width: 560px;
      width: 100%; }
      @media only screen and (max-width: 767px) {
        .art-testimonial-images-wrapper .art-right-side .art-right-side-data {
          max-width: 100%; } }
    .art-testimonial-images-wrapper .art-right-side .art-testimonial-subtitle {
      text-align: center;
      margin-bottom: 16px; }
      @media only screen and (max-width: 767px) {
        .art-testimonial-images-wrapper .art-right-side .art-testimonial-subtitle {
          text-align: left; } }
    .art-testimonial-images-wrapper .art-right-side .art-testimonial-title {
      text-align: center;
      margin-top: 0;
      margin-bottom: 18px; }
      @media only screen and (max-width: 767px) {
        .art-testimonial-images-wrapper .art-right-side .art-testimonial-title {
          text-align: left; } }
    .art-testimonial-images-wrapper .art-right-side .swiper-container-testimonial-text {
      overflow: hidden; }
      .art-testimonial-images-wrapper .art-right-side .swiper-container-testimonial-text .testimonial-item .art-testimonial-data {
        text-align: center; }
        @media only screen and (max-width: 767px) {
          .art-testimonial-images-wrapper .art-right-side .swiper-container-testimonial-text .testimonial-item .art-testimonial-data {
            text-align: left; } }
      .art-testimonial-images-wrapper .art-right-side .swiper-container-testimonial-text .testimonial-item .art-testimonial-name {
        margin-top: 30px;
        text-align: center; }
        @media only screen and (max-width: 767px) {
          .art-testimonial-images-wrapper .art-right-side .swiper-container-testimonial-text .testimonial-item .art-testimonial-name {
            text-align: left; } }
      .art-testimonial-images-wrapper .art-right-side .swiper-container-testimonial-text .swiper-button-next {
        background-image: none;
        left: 27px;
        right: 0;
        top: auto;
        bottom: 0;
        margin-left: auto;
        margin-right: auto; }
        @media only screen and (max-width: 767px) {
          .art-testimonial-images-wrapper .art-right-side .swiper-container-testimonial-text .swiper-button-next {
            left: 53px;
            margin-left: unset;
            margin-right: unset; } }
        .art-testimonial-images-wrapper .art-right-side .swiper-container-testimonial-text .swiper-button-next::before {
          content: '\e802';
          font-family: magnetique;
          font-size: 48px;
          position: relative;
          left: 5px;
          top: 8px;
          -webkit-transition: all 250ms ease-in-out;
          transition: all 250ms ease-in-out; }
      .art-testimonial-images-wrapper .art-right-side .swiper-container-testimonial-text .swiper-button-prev {
        background-image: none;
        left: -78px;
        right: 0;
        top: auto;
        bottom: 0;
        margin-left: auto;
        margin-right: auto; }
        @media only screen and (max-width: 767px) {
          .art-testimonial-images-wrapper .art-right-side .swiper-container-testimonial-text .swiper-button-prev {
            left: 0;
            margin-left: unset;
            margin-right: unset; } }
        .art-testimonial-images-wrapper .art-right-side .swiper-container-testimonial-text .swiper-button-prev::before {
          content: '\e801';
          font-family: magnetique;
          font-size: 48px;
          position: relative;
          top: 8px;
          -webkit-transition: all 250ms ease-in-out;
          transition: all 250ms ease-in-out; }

.art-widget-testimonials .art-testimonials-swiper {
  overflow: hidden; }
  .art-widget-testimonials .art-testimonials-swiper .art-testimonial-itself {
    background-color: var(--art-colors-bg);
    text-align: center;
    padding: 40px 40px 30px 40px; }
    .art-widget-testimonials .art-testimonials-swiper .art-testimonial-itself .art-testimonial-text {
      margin: 28px 0; }
    .art-widget-testimonials .art-testimonials-swiper .art-testimonial-itself .art-testimonial-name {
      margin-top: 10px;
      font-family: var(--art-body-three-font-family);
      font-weight: var(--art-body-three-font-weight);
      font-style: var(--art-body-three-font-style);
      text-transform: var(--art-body-three-text-transform);
      -webkit-text-decoration: var(--art-body-three-text-decoration);
              text-decoration: var(--art-body-three-text-decoration);
      font-size: var(--art-body-three-font-size);
      line-height: var(--art-body-three-line-height);
      letter-spacing: var(--art-body-three-letter-spacing); }
  .art-widget-testimonials .art-testimonials-swiper .art-testimonials-prev-next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 111px; }
    .art-widget-testimonials .art-testimonials-swiper .art-testimonials-prev-next .swiper-button-next {
      background-image: none;
      position: static; }
      .art-widget-testimonials .art-testimonials-swiper .art-testimonials-prev-next .swiper-button-next::before {
        content: '\e802';
        font-family: magnetique;
        font-size: 48px;
        position: relative;
        left: 5px;
        -webkit-transition: all 250ms ease-in-out;
        transition: all 250ms ease-in-out; }
    .art-widget-testimonials .art-testimonials-swiper .art-testimonials-prev-next .swiper-button-prev {
      background-image: none;
      position: static; }
      .art-widget-testimonials .art-testimonials-swiper .art-testimonials-prev-next .swiper-button-prev::before {
        content: '\e801';
        font-family: magnetique;
        font-size: 48px;
        position: relative;
        right: 25px;
        -webkit-transition: all 250ms ease-in-out;
        transition: all 250ms ease-in-out; }

@media only screen and (max-width: 540px) {
  .art-widget-testimonials-two {
    margin-bottom: 40px; } }

.art-widget-testimonials-two .art-testimonials-two-swiper {
  overflow: hidden; }
  .art-widget-testimonials-two .art-testimonials-two-swiper .art-testimonial-itself {
    background-color: #fff;
    text-align: center;
    padding: 40px 40px 40px 40px;
    border: 2px solid #000; }
    .art-widget-testimonials-two .art-testimonials-two-swiper .art-testimonial-itself .art-testimonial-text {
      margin: 28px 0  20px 0; }
    .art-widget-testimonials-two .art-testimonials-two-swiper .art-testimonial-itself .art-testimonial-name {
      margin-top: 10px;
      font-family: var(--art-body-three-font-family);
      font-weight: var(--art-body-three-font-weight);
      font-style: var(--art-body-three-font-style);
      text-transform: var(--art-body-three-text-transform);
      -webkit-text-decoration: var(--art-body-three-text-decoration);
              text-decoration: var(--art-body-three-text-decoration);
      font-size: var(--art-body-three-font-size);
      line-height: var(--art-body-three-line-height);
      letter-spacing: var(--art-body-three-letter-spacing); }
  .art-widget-testimonials-two .art-testimonials-two-swiper .art-testimonials-prev-next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: absolute;
    top: -67px;
    right: 24px; }
    @media only screen and (max-width: 540px) {
      .art-widget-testimonials-two .art-testimonials-two-swiper .art-testimonials-prev-next {
        top: unset;
        left: 0;
        right: 0;
        bottom: -40px; } }
    .art-widget-testimonials-two .art-testimonials-two-swiper .art-testimonials-prev-next .swiper-button-next {
      background-image: none;
      position: static; }
      .art-widget-testimonials-two .art-testimonials-two-swiper .art-testimonials-prev-next .swiper-button-next::before {
        content: '\e802';
        font-family: magnetique;
        font-size: 48px;
        position: relative;
        left: 5px;
        -webkit-transition: all 250ms ease-in-out;
        transition: all 250ms ease-in-out; }
    .art-widget-testimonials-two .art-testimonials-two-swiper .art-testimonials-prev-next .swiper-button-prev {
      background-image: none;
      position: static; }
      .art-widget-testimonials-two .art-testimonials-two-swiper .art-testimonials-prev-next .swiper-button-prev::before {
        content: '\e801';
        font-family: magnetique;
        font-size: 48px;
        position: relative;
        right: 25px;
        -webkit-transition: all 250ms ease-in-out;
        transition: all 250ms ease-in-out; }

.art-heading-text {
  text-align: var(--art-heading-content-alignment);
  color: var(--art-heading-color-text);
  width: auto; }

.art-floating-images .art-floating-images-container {
  position: relative; }
  .art-floating-images .art-floating-images-container .art-floating-image-two-wrapper {
    position: absolute;
    top: 50%;
    left: -148px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
    @media only screen and (max-width: 767px) {
      .art-floating-images .art-floating-images-container .art-floating-image-two-wrapper {
        display: none; } }

.art-floating-images-two .art-floating-images-container .art-floating-images-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 65px;
  padding: 0 57px 0 0; }
  .art-floating-images-two .art-floating-images-container .art-floating-images-top .floating-image-one {
    width: 215px;
    margin: 58px 38px 0 0; }
  .art-floating-images-two .art-floating-images-container .art-floating-images-top .floating-image-two {
    width: 245px; }

.art-floating-images-two .art-floating-images-container .art-floating-images-bottom {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; }
  .art-floating-images-two .art-floating-images-container .art-floating-images-bottom .floating-image-three {
    width: 258px; }
  .art-floating-images-two .art-floating-images-container .art-floating-images-bottom .floating-image-four {
    width: 385px;
    position: absolute;
    left: -30px;
    top: -108px; }
  .art-floating-images-two .art-floating-images-container .art-floating-images-bottom .floating-image-five {
    width: 290px;
    position: absolute;
    bottom: -53px;
    right: 137px; }

.art-label-section {
  background-color: #D9D5EE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 31px 102px; }
  @media only screen and (max-width: 767px) {
    .art-label-section {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      padding: 30px 30px; }
      .art-label-section img {
        width: 124px;
        margin: 6px 0; } }
  .art-label-section p {
    margin: 0; }
  .art-label-section .art-label-left {
    margin-right: 20px; }
  .art-label-section img {
    margin-right: 20px; }

.art-insta-widget-wrapper #sb_instagram #sbi_images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .art-insta-widget-wrapper #sb_instagram #sbi_images .sbi_item.sbi_type_image,
  .art-insta-widget-wrapper #sb_instagram #sbi_images .sbi_item.sbi_type_carousel,
  .art-insta-widget-wrapper #sb_instagram #sbi_images .sbi_item.sbi_type_video {
    width: 20%;
    padding: 12px !important; }
    @media only screen and (max-width: 767px) {
      .art-insta-widget-wrapper #sb_instagram #sbi_images .sbi_item.sbi_type_image,
      .art-insta-widget-wrapper #sb_instagram #sbi_images .sbi_item.sbi_type_carousel,
      .art-insta-widget-wrapper #sb_instagram #sbi_images .sbi_item.sbi_type_video {
        width: 50%; } }

/*## Info Block ##*/
.art-info-block-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .art-info-block-wrapper.art-do-reverse .art-info-block-one {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2; }
  .art-info-block-wrapper.art-do-reverse .art-info-block-two {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    /*padding-left: calc(50% - 570px);
      padding-right: 82px;*/
    padding: 100px 80px 100px calc(50% - 570px); }
  .art-info-block-wrapper .art-info-block-one {
    width: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; }
    @media only screen and (max-width: 767px) {
      .art-info-block-wrapper .art-info-block-one {
        width: 100%;
        height: 500px;
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2; } }
  .art-info-block-wrapper .art-info-block-two {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 50%;
    padding: 100px calc(50% - 570px) 100px 80px; }
    @media only screen and (max-width: 1199px) {
      .art-info-block-wrapper .art-info-block-two {
        padding: 100px 30px 100px 30px; } }
    @media only screen and (max-width: 767px) {
      .art-info-block-wrapper .art-info-block-two {
        width: 100%;
        padding: 50px 15px 50px 15px;
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1; } }
    .art-info-block-wrapper .art-info-block-two .art-widget-title {
      margin-bottom: 30px; }
    .art-info-block-wrapper .art-info-block-two .art-section-data {
      margin-bottom: 30px; }
    .art-info-block-wrapper .art-info-block-two .art-widget-button {
      margin-top: 50px; }
      .art-info-block-wrapper .art-info-block-two .art-widget-button a {
        display: inline-block; }

.art-social .art-item-social {
  text-align: center;
  margin-bottom: 40px; }
  .art-social .art-item-social .item-social-title {
    margin-top: 20px;
    margin-bottom: 12px; }

.art-social-two .art-item-social {
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--art-colors-text); }
  .art-social-two .art-item-social a {
    color: inherit; }
    .art-social-two .art-item-social a .item-social-title {
      margin: 0 0 0 20px; }

.art-accordion-tabs .art-accordion-tabs-wrapper .accordion-menu-tabs-items {
  width: auto;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow: auto;
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset; }
  .art-accordion-tabs .art-accordion-tabs-wrapper .accordion-menu-tabs-items::-webkit-scrollbar {
    width: 0;
    height: 0;
    background: transparent; }
  .art-accordion-tabs .art-accordion-tabs-wrapper .accordion-menu-tabs-items::-webkit-scrollbar-thumb {
    background: transparent; }

.art-accordion-tabs .art-accordion-tabs-wrapper .art-accordion-menu-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 870px;
  margin: 0 0 40px 0; }
  .art-accordion-tabs .art-accordion-tabs-wrapper .art-accordion-menu-tabs li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    padding: 0 20px; }
    .art-accordion-tabs .art-accordion-tabs-wrapper .art-accordion-menu-tabs li span {
      font-family: var(--art-body-three-font-family);
      font-weight: var(--art-body-three-font-weight);
      font-style: var(--art-body-three-font-style);
      text-transform: var(--art-body-three-text-transform);
      -webkit-text-decoration: var(--art-body-three-text-decoration);
              text-decoration: var(--art-body-three-text-decoration);
      font-size: var(--art-body-three-font-size);
      line-height: var(--art-body-three-line-height);
      letter-spacing: var(--art-body-three-letter-spacing);
      padding-bottom: 5px; }
      @media only screen and (max-width: 767px) {
        .art-accordion-tabs .art-accordion-tabs-wrapper .art-accordion-menu-tabs li span {
          font-family: var(--art-body-three-mobile-font-family);
          font-weight: var(--art-body-three-mobile-font-weight);
          font-style: var(--art-body-three-mobile-font-style);
          text-transform: var(--art-body-three-mobile-text-transform);
          -webkit-text-decoration: var(--art-body-three-mobile-text-decoration);
                  text-decoration: var(--art-body-three-mobile-text-decoration);
          font-size: var(--art-body-three-mobile-font-size);
          line-height: var(--art-body-three-mobile-line-height);
          letter-spacing: var(--art-body-three-mobile-letter-spacing); } }
    .art-accordion-tabs .art-accordion-tabs-wrapper .art-accordion-menu-tabs li.art-active span {
      border-bottom: 2px solid; }

.art-accordion-menu-info {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  max-width: 750px;
  width: 100%;
  margin: 0 auto; }
  .art-accordion-menu-info .accordion {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background-color: transparent;
    cursor: pointer;
    padding: 17px 0;
    width: 100%;
    outline: none;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    text-align: left;
    font-family: var(--art-body-three-font-family);
    font-weight: var(--art-body-three-font-weight);
    font-style: var(--art-body-three-font-style);
    text-transform: var(--art-body-three-text-transform);
    -webkit-text-decoration: var(--art-body-three-text-decoration);
            text-decoration: var(--art-body-three-text-decoration);
    font-size: var(--art-body-three-font-size);
    line-height: var(--art-body-three-line-height);
    letter-spacing: var(--art-body-three-letter-spacing); }
    @media only screen and (max-width: 767px) {
      .art-accordion-menu-info .accordion {
        font-family: var(--art-body-three-mobile-font-family);
        font-weight: var(--art-body-three-mobile-font-weight);
        font-style: var(--art-body-three-mobile-font-style);
        text-transform: var(--art-body-three-mobile-text-transform);
        -webkit-text-decoration: var(--art-body-three-mobile-text-decoration);
                text-decoration: var(--art-body-three-mobile-text-decoration);
        font-size: var(--art-body-three-mobile-font-size);
        line-height: var(--art-body-three-mobile-line-height);
        letter-spacing: var(--art-body-three-mobile-letter-spacing); } }
    .art-accordion-menu-info .accordion:active, .art-accordion-menu-info .accordion:hover {
      background-color: transparent;
      color: inherit; }
    .art-accordion-menu-info .accordion::after {
      content: url(images/plus-bold.svg);
      position: relative;
      top: 3px; }
    .art-accordion-menu-info .accordion.active::after {
      content: url(images/close-bold.svg); }
  .art-accordion-menu-info .panel {
    padding: 0;
    background-color: transparent;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.2s ease-out;
    transition: max-height 0.2s ease-out; }
    .art-accordion-menu-info .panel .panel-data {
      padding: 1px 0 21px 0;
      font-family: var(--art-body-two-font-family);
      font-weight: var(--art-body-two-font-weight);
      font-style: var(--art-body-two-font-style);
      text-transform: var(--art-body-two-text-transform);
      -webkit-text-decoration: var(--art-body-two-text-decoration);
              text-decoration: var(--art-body-two-text-decoration);
      font-size: var(--art-body-two-font-size);
      line-height: var(--art-body-two-line-height);
      letter-spacing: var(--art-body-two-letter-spacing); }
      @media only screen and (max-width: 767px) {
        .art-accordion-menu-info .panel .panel-data {
          font-family: var(--art-body-two-mobile-font-family);
          font-weight: var(--art-body-two-mobile-font-weight);
          font-style: var(--art-body-two-mobile-font-style);
          text-transform: var(--art-body-two-mobile-text-transform);
          -webkit-text-decoration: var(--art-body-two-mobile-text-decoration);
                  text-decoration: var(--art-body-two-mobile-text-decoration);
          font-size: var(--art-body-two-mobile-font-size);
          line-height: var(--art-body-two-mobile-line-height);
          letter-spacing: var(--art-body-two-mobile-letter-spacing); } }

.art-courses-grid-wrapper .learn-press-search-form-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; }
  .art-courses-grid-wrapper .learn-press-search-form-wrapper .learn-press-search-course-form {
    margin-bottom: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media only screen and (max-width: 600px) {
      .art-courses-grid-wrapper .learn-press-search-form-wrapper .learn-press-search-course-form {
        width: 100%; } }
    @media only screen and (max-width: 420px) {
      .art-courses-grid-wrapper .learn-press-search-form-wrapper .learn-press-search-course-form {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
    .art-courses-grid-wrapper .learn-press-search-form-wrapper .learn-press-search-course-form .search-course-input {
      max-width: 360px;
      width: 360px;
      margin-right: 20px; }
      @media only screen and (max-width: 420px) {
        .art-courses-grid-wrapper .learn-press-search-form-wrapper .learn-press-search-course-form .search-course-input {
          margin: 0 0 20px 0; } }
      @media only screen and (max-width: 600px) {
        .art-courses-grid-wrapper .learn-press-search-form-wrapper .learn-press-search-course-form .search-course-input {
          width: 100%;
          max-width: 100%; } }

.art-courses-grid-wrapper .art-courses-list .art-course-item {
  margin-bottom: 30px; }

.art-course-item .art-card-img {
  position: relative; }
  .art-course-item .art-card-img .meta-item-price {
    z-index: 1;
    position: absolute;
    right: 16px;
    top: 16px;
    background-color: var(--art-colors-fourth-bg);
    font-family: var(--art-body-three-font-family);
    font-weight: var(--art-body-three-font-weight);
    font-style: var(--art-body-three-font-style);
    text-transform: var(--art-body-three-text-transform);
    -webkit-text-decoration: var(--art-body-three-text-decoration);
            text-decoration: var(--art-body-three-text-decoration);
    font-size: var(--art-body-three-font-size);
    line-height: var(--art-body-three-line-height);
    letter-spacing: var(--art-body-three-letter-spacing);
    padding: 3px 16px; }
    .art-course-item .art-card-img .meta-item-price .meta-label {
      display: none; }

.course-price .meta-label {
  display: none; }

.course-price .meta-value > .origin-price {
  display: none; }

.course-price .meta-value .price .origin-price {
  text-decoration: line-through;
  margin-right: 8px; }

.art-posts-grid-wrapper .learn-press-search-form-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; }
  .art-posts-grid-wrapper .learn-press-search-form-wrapper .learn-press-search-course-form {
    margin-bottom: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media only screen and (max-width: 600px) {
      .art-posts-grid-wrapper .learn-press-search-form-wrapper .learn-press-search-course-form {
        width: 100%; } }
    @media only screen and (max-width: 420px) {
      .art-posts-grid-wrapper .learn-press-search-form-wrapper .learn-press-search-course-form {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
    .art-posts-grid-wrapper .learn-press-search-form-wrapper .learn-press-search-course-form .search-course-input {
      max-width: 360px;
      width: 360px;
      margin-right: 20px; }
      @media only screen and (max-width: 420px) {
        .art-posts-grid-wrapper .learn-press-search-form-wrapper .learn-press-search-course-form .search-course-input {
          margin: 0 0 20px 0; } }
      @media only screen and (max-width: 600px) {
        .art-posts-grid-wrapper .learn-press-search-form-wrapper .learn-press-search-course-form .search-course-input {
          width: 100%;
          max-width: 100%; } }

.art-posts-grid-wrapper .art-posts-list .art-post-item {
  margin-bottom: 30px; }

.art-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
  font-family: var(--art-body-three-font-family);
  font-weight: var(--art-body-three-font-weight);
  font-style: var(--art-body-three-font-style);
  text-transform: var(--art-body-three-text-transform);
  -webkit-text-decoration: var(--art-body-three-text-decoration);
          text-decoration: var(--art-body-three-text-decoration);
  font-size: var(--art-body-three-font-size);
  line-height: var(--art-body-three-line-height);
  letter-spacing: var(--art-body-three-letter-spacing); }
  @media only screen and (max-width: 767px) {
    .art-pagination {
      font-family: var(--art-body-three-mobile-font-family);
      font-weight: var(--art-body-three-mobile-font-weight);
      font-style: var(--art-body-three-mobile-font-style);
      text-transform: var(--art-body-three-mobile-text-transform);
      -webkit-text-decoration: var(--art-body-three-mobile-text-decoration);
              text-decoration: var(--art-body-three-mobile-text-decoration);
      font-size: var(--art-body-three-mobile-font-size);
      line-height: var(--art-body-three-mobile-line-height);
      letter-spacing: var(--art-body-three-mobile-letter-spacing); } }
  .art-pagination a,
  .art-pagination span.dots {
    padding: 0 8px; }
  .art-pagination .prev.page-numbers i {
    position: relative;
    top: 1px; }
    .art-pagination .prev.page-numbers i::before {
      font-size: 23px; }
  .art-pagination .next.page-numbers i {
    position: relative;
    top: 2px; }
    .art-pagination .next.page-numbers i::before {
      font-size: 23px; }
  .art-pagination span.current {
    position: relative;
    margin: 0 8px; }
    .art-pagination span.current:before {
      content: '';
      position: absolute;
      width: 100%;
      height: 2px;
      background-color: var(--art-colors-text);
      bottom: -8px; }

.art-zoom-meeting-item .art-card-img {
  margin-bottom: 20px; }

.art-zoom-meeting-item .art-card-info .art-card-title {
  margin-bottom: 16px; }

.art-zoom-meeting-item .art-card-info .art-card-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .art-zoom-meeting-item .art-card-info .art-card-meta .art-card-duration {
    margin-right: 24px; }
    .art-zoom-meeting-item .art-card-info .art-card-meta .art-card-duration i {
      margin-right: 7px; }
  .art-zoom-meeting-item .art-card-info .art-card-meta .art-meeting-date i {
    margin-right: 6px; }

.elementor-widget-art-animated-line {
  --art-animated-line-animation-speed: 4000ms; }

.art-animated-line svg {
  max-width: 100%;
  fill: transparent;
  stroke: var(--art-colors-link);
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000; }
  .art-second-color-scheme .art-animated-line svg {
    stroke: var(--art-second-colors-link); }

.art-animated-line.art-animated svg {
  -webkit-animation: animated_line var(--art-animated-line-animation-speed) linear forwards;
          animation: animated_line var(--art-animated-line-animation-speed) linear forwards; }

.elementor-widget-art-button {
  --art-button-alignment: left; }

.art-button-widget__wrap {
  text-align: var(--art-button-alignment); }

.art-content-slider-item__image + *,
.art-content-slider-item__image + .art-content-slider-item__title {
  margin-top: 24px; }

.art-content-slider-item__image img {
  width: 100%; }

.art-content-slider-item__icon + *,
.art-content-slider-item__icon + .art-content-slider-item__title {
  margin-top: 20px; }

.art-content-slider-item__title {
  margin: 0; }
  .art-content-slider-item__title + * {
    margin-top: 10px; }

.art-content-slider-item__text {
  font-family: var(--art-body-two-font-family);
  font-weight: var(--art-body-two-font-weight);
  font-style: var(--art-body-two-font-style);
  text-transform: var(--art-body-two-text-transform);
  -webkit-text-decoration: var(--art-body-two-text-decoration);
          text-decoration: var(--art-body-two-text-decoration);
  font-size: var(--art-body-two-font-size);
  line-height: var(--art-body-two-line-height);
  letter-spacing: var(--art-body-two-letter-spacing); }
  @media only screen and (max-width: 767px) {
    .art-content-slider-item__text {
      font-family: var(--art-body-two-mobile-font-family);
      font-weight: var(--art-body-two-mobile-font-weight);
      font-style: var(--art-body-two-mobile-font-style);
      text-transform: var(--art-body-two-mobile-text-transform);
      -webkit-text-decoration: var(--art-body-two-mobile-text-decoration);
              text-decoration: var(--art-body-two-mobile-text-decoration);
      font-size: var(--art-body-two-mobile-font-size);
      line-height: var(--art-body-two-mobile-line-height);
      letter-spacing: var(--art-body-two-mobile-letter-spacing); } }

.art-courses-list .art-course-item {
  margin-bottom: 30px; }
  .art-courses-list .art-course-item .art-card-img {
    position: relative;
    margin-bottom: 20px; }
    .art-courses-list .art-course-item .art-card-img .card__price {
      position: absolute;
      top: 15px;
      right: 17px;
      background-color: var(--art-colors-fourth-bg);
      font-family: var(--art-body-three-font-family);
      font-weight: var(--art-body-three-font-weight);
      font-style: var(--art-body-three-font-style);
      text-transform: var(--art-body-three-text-transform);
      -webkit-text-decoration: var(--art-body-three-text-decoration);
              text-decoration: var(--art-body-three-text-decoration);
      font-size: var(--art-body-three-font-size);
      line-height: var(--art-body-three-line-height);
      letter-spacing: var(--art-body-three-letter-spacing);
      padding: 5px 15px; }
      .art-second-color-scheme .art-courses-list .art-course-item .art-card-img .card__price {
        background-color: var(--art-bg-fourth-bg); }
  .art-courses-list .art-course-item .art-card-info .art-card-title {
    font-family: var(--art-h6-font-family);
    font-weight: var(--art-h6-font-weight);
    font-style: var(--art-h6-font-style);
    text-transform: var(--art-h6-text-transform);
    -webkit-text-decoration: var(--art-h6-text-decoration);
            text-decoration: var(--art-h6-text-decoration);
    font-size: var(--art-h6-font-size);
    line-height: var(--art-h6-line-height);
    letter-spacing: var(--art-h6-letter-spacing);
    margin-bottom: 16px; }
  .art-courses-list .art-course-item .art-card-info .art-card-meta {
    font-family: var(--art-body-one-font-family);
    font-weight: var(--art-body-one-font-weight);
    font-style: var(--art-body-one-font-style);
    text-transform: var(--art-body-one-text-transform);
    -webkit-text-decoration: var(--art-body-one-text-decoration);
            text-decoration: var(--art-body-one-text-decoration);
    font-size: var(--art-body-one-font-size);
    line-height: var(--art-body-one-line-height);
    letter-spacing: var(--art-body-one-letter-spacing); }
    .art-courses-list .art-course-item .art-card-info .art-card-meta .art-card-duration {
      margin-right: 11px; }
      .art-courses-list .art-course-item .art-card-info .art-card-meta .art-card-duration i {
        margin-right: 10px; }
        .art-courses-list .art-course-item .art-card-info .art-card-meta .art-card-duration i::before {
          margin: 0; }
    .art-courses-list .art-course-item .art-card-info .art-card-meta .art-card-level i {
      margin-right: 10px; }
      .art-courses-list .art-course-item .art-card-info .art-card-meta .art-card-level i::before {
        margin: 0; }

/* List */
.art-events-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse; }

.art-events-list-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 20px; }
  .art-events-list-item:first-child {
    border-bottom: 0; }
  .art-events-list-item:before {
    content: '\c007';
    font-family: "denaro-font";
    font-size: 28px;
    line-height: 1em;
    color: var(--art-colors-bg);
    width: 1em;
    height: 1em;
    margin: auto !important;
    position: absolute;
    left: auto;
    right: 0;
    top: 0;
    bottom: 0;
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.68, -2, 0.265, 1.55);
    transition: -webkit-transform 0.5s cubic-bezier(0.68, -2, 0.265, 1.55);
    transition: transform 0.5s cubic-bezier(0.68, -2, 0.265, 1.55);
    transition: transform 0.5s cubic-bezier(0.68, -2, 0.265, 1.55), -webkit-transform 0.5s cubic-bezier(0.68, -2, 0.265, 1.55); }
    .art-second-color-scheme .art-events-list-item:before {
      color: var(--art-bg-bg); }
  @media only screen and (max-width: 420px) {
    .art-events-list-item:before {
      display: none; } }
  .art-events-list-item:hover:before {
    -webkit-transform: translateX(10px);
            transform: translateX(10px); }
  .art-events-list-item a {
    position: relative;
    z-index: 2; }
  .art-events-list-item a.art-events-list-item-link {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1; }
  .art-events-list-item .art-event-list-date {
    margin-right: 30px;
    min-width: 60px;
    border: 2px solid;
    border-color: var(--art-colors-bg);
    color: var(--art-colors-bg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .art-events-list-item .art-event-list-date .art-event-day-time {
      font-family: var(--art-h4-font-family);
      font-weight: var(--art-h4-font-weight);
      font-style: var(--art-h4-font-style);
      text-transform: var(--art-h4-text-transform);
      -webkit-text-decoration: var(--art-h4-text-decoration);
              text-decoration: var(--art-h4-text-decoration);
      font-size: var(--art-h4-font-size);
      line-height: var(--art-h4-line-height);
      letter-spacing: var(--art-h4-letter-spacing);
      line-height: 46px; }
      @media only screen and (max-width: 767px) {
        .art-events-list-item .art-event-list-date .art-event-day-time {
          font-family: var(--art-h4-mobile-font-family);
          font-weight: var(--art-h4-mobile-font-weight);
          font-style: var(--art-h4-mobile-font-style);
          text-transform: var(--art-h4-mobile-text-transform);
          -webkit-text-decoration: var(--art-h4-mobile-text-decoration);
                  text-decoration: var(--art-h4-mobile-text-decoration);
          font-size: var(--art-h4-mobile-font-size);
          line-height: var(--art-h4-mobile-line-height);
          letter-spacing: var(--art-h4-mobile-letter-spacing); } }
    .art-events-list-item .art-event-list-date .art-event-month-time {
      font-family: var(--art-body-three-font-family);
      font-weight: var(--art-body-three-font-weight);
      font-style: var(--art-body-three-font-style);
      text-transform: var(--art-body-three-text-transform);
      -webkit-text-decoration: var(--art-body-three-text-decoration);
              text-decoration: var(--art-body-three-text-decoration);
      font-size: var(--art-body-three-font-size);
      line-height: var(--art-body-three-line-height);
      letter-spacing: var(--art-body-three-letter-spacing);
      line-height: 1;
      margin-bottom: 8px; }
      @media only screen and (max-width: 767px) {
        .art-events-list-item .art-event-list-date .art-event-month-time {
          font-family: var(--art-body-three-mobile-font-family);
          font-weight: var(--art-body-three-mobile-font-weight);
          font-style: var(--art-body-three-mobile-font-style);
          text-transform: var(--art-body-three-mobile-text-transform);
          -webkit-text-decoration: var(--art-body-three-mobile-text-decoration);
                  text-decoration: var(--art-body-three-mobile-text-decoration);
          font-size: var(--art-body-three-mobile-font-size);
          line-height: var(--art-body-three-mobile-line-height);
          letter-spacing: var(--art-body-three-mobile-letter-spacing); } }
  .art-events-list-item .art-event-title-location {
    width: 100%; }
  .art-events-list-item .art-post-title {
    margin: 0;
    padding-right: 20px; }

/* Default */
.art-events-list-default .art-event-item-default {
  background-color: #EFEDF3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px; }
  .art-events-list-default .art-event-item-default:last-child {
    margin-bottom: 0; }
  @media only screen and (max-width: 1110px) {
    .art-events-list-default .art-event-item-default {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  .art-events-list-default .art-event-item-default .art-event-default-left {
    max-width: 340px;
    min-width: 340px; }
    @media only screen and (max-width: 1110px) {
      .art-events-list-default .art-event-item-default .art-event-default-left {
        padding: 30px 30px 0 30px; } }
  .art-events-list-default .art-event-item-default .art-event-default-right {
    padding: 38px 60px 38px 40px; }
    @media only screen and (max-width: 1110px) {
      .art-events-list-default .art-event-item-default .art-event-default-right {
        padding: 30px; } }
    .art-events-list-default .art-event-item-default .art-event-default-right .art-post-cat-date {
      font-family: var(--art-body-three-font-family);
      font-weight: var(--art-body-three-font-weight);
      font-style: var(--art-body-three-font-style);
      text-transform: var(--art-body-three-text-transform);
      -webkit-text-decoration: var(--art-body-three-text-decoration);
              text-decoration: var(--art-body-three-text-decoration);
      font-size: var(--art-body-three-font-size);
      line-height: var(--art-body-three-line-height);
      letter-spacing: var(--art-body-three-letter-spacing); }
    .art-events-list-default .art-event-item-default .art-event-default-right .art-post-title {
      margin-top: 8px; }
    .art-events-list-default .art-event-item-default .art-event-default-right .art-event-description {
      margin-bottom: 40px; }

.elementor-widget-art-featured-post {
  --art-featured-post-height: 66.7%; }

.art-featured-post {
  height: 0;
  padding-bottom: var(--art-featured-post-height);
  overflow: hidden;
  position: relative; }
  .art-featured-post .art-post-image {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0; }
    .art-featured-post .art-post-image img {
      width: 100%; }
  .art-featured-post .art-placeholder {
    padding-bottom: var(--art-featured-post-height); }
  .art-featured-post .art-featured-post-outer {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.4)));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    width: 100%;
    height: 100%;
    padding: 40px;
    position: absolute;
    left: 0;
    overflow-x: hidden;
    overflow-y: auto;
    bottom: 0; }
  .art-featured-post .art-post-cat-date {
    color: var(--art-colors-bg);
    margin-bottom: 7px; }
    .art-featured-post .art-post-cat-date a {
      color: var(--art-colors-bg);
      -webkit-transition: opacity .2s ease-in-out;
      transition: opacity .2s ease-in-out; }
      .art-featured-post .art-post-cat-date a:hover {
        opacity: .9;
        color: var(--art-colors-bg); }
  .art-featured-post .art-post-title {
    margin: 0;
    color: var(--art-colors-bg); }
    .art-featured-post .art-post-title a {
      color: var(--art-colors-bg);
      -webkit-transition: opacity .2s ease-in-out;
      transition: opacity .2s ease-in-out; }
      .art-featured-post .art-post-title a:hover {
        opacity: .9;
        color: var(--art-colors-bg); }

.elementor-widget-art-partners-ticker .art-swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear; }

.art-team-member__outer {
  text-align: center; }

.art-team-member__avatar + * {
  margin-top: 29px; }

.art-team-member__name {
  margin-bottom: 1px; }
  .art-team-member__name a {
    color: var(--art-colors-heading); }
    .art-team-member__name a:hover {
      color: var(--art-colors-link); }

.art-team-member__role {
  font-family: var(--art-body-three-font-family);
  font-weight: var(--art-body-three-font-weight);
  font-style: var(--art-body-three-font-style);
  text-transform: var(--art-body-three-text-transform);
  -webkit-text-decoration: var(--art-body-three-text-decoration);
          text-decoration: var(--art-body-three-text-decoration);
  font-size: var(--art-body-three-font-size);
  line-height: var(--art-body-three-line-height);
  letter-spacing: var(--art-body-three-letter-spacing); }
  @media only screen and (max-width: 767px) {
    .art-team-member__role {
      font-family: var(--art-body-three-mobile-font-family);
      font-weight: var(--art-body-three-mobile-font-weight);
      font-style: var(--art-body-three-mobile-font-style);
      text-transform: var(--art-body-three-mobile-text-transform);
      -webkit-text-decoration: var(--art-body-three-mobile-text-decoration);
              text-decoration: var(--art-body-three-mobile-text-decoration);
      font-size: var(--art-body-three-mobile-font-size);
      line-height: var(--art-body-three-mobile-line-height);
      letter-spacing: var(--art-body-three-mobile-letter-spacing); } }

.art-team-member__icons {
  margin-left: -10px;
  margin-right: -10px;
  font-size: 20px; }
  .art-team-member__icons > span {
    margin: 10px 10px 0;
    display: inline-block;
    vertical-align: middle; }

@media only screen and (min-width: 541px) {
  .art-team-member-popup__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; } }

@media only screen and (min-width: 1025px) {
  .art-team-member-popup__container {
    padding: 0 6%; } }

.art-team-member-popup__avatar img {
  width: 100%; }

@media only screen and (min-width: 541px) {
  .art-team-member-popup__avatar {
    width: 42.17%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 10%; } }

@media only screen and (max-width: 540px) {
  .art-team-member-popup__avatar {
    text-align: center;
    margin-bottom: 45px; } }

.art-team-member-popup__content {
  width: 100%; }

.art-team-member-popup__name {
  margin: 0; }

* + .art-team-member-popup__role {
  margin-top: 15px; }

.art-team-member-popup__icons {
  margin-top: -10px;
  margin-left: -10px;
  margin-right: -10px;
  font-size: 20px; }
  * + .art-team-member-popup__icons {
    margin-top: 3px; }
  .art-team-member-popup__icons > span {
    margin: 10px 10px 0;
    display: inline-block;
    vertical-align: middle; }

* + .art-team-member-popup__text {
  margin-top: 30px; }

.elementor-widget-art-testimonials-slider-boxed {
  --art-testimonials-slider-boxed-content-alignment: left; }

.art-testimonial-boxed {
  text-align: var(--art-testimonials-slider-boxed-content-alignment);
  background-color: var(--art-colors-second-bg);
  padding: 40px; }
  .art-testimonial-boxed .art-testimonial__rating {
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 30px;
    white-space: nowrap;
    position: relative; }
    .art-testimonial-boxed .art-testimonial__rating span,
    .art-testimonial-boxed .art-testimonial__rating svg {
      display: block;
      width: 1em;
      height: 1em;
      line-height: 1em; }
    .art-testimonial-boxed .art-testimonial__rating span + span {
      margin-left: 7px; }
    .art-testimonial-boxed .art-testimonial__rating svg {
      fill: var(--art-colors-bg);
      stroke: var(--art-colors-link); }
  .art-testimonial-boxed .art-testimonial__text {
    color: var(--art-colors-text); }
  .art-testimonial-boxed .art-testimonial__author-name {
    margin-top: 20px;
    font-family: var(--art-body-three-font-family);
    font-weight: var(--art-body-three-font-weight);
    font-style: var(--art-body-three-font-style);
    text-transform: var(--art-body-three-text-transform);
    -webkit-text-decoration: var(--art-body-three-text-decoration);
            text-decoration: var(--art-body-three-text-decoration);
    font-size: var(--art-body-three-font-size);
    line-height: var(--art-body-three-line-height);
    letter-spacing: var(--art-body-three-letter-spacing);
    color: var(--art-colors-heading); }
    @media only screen and (max-width: 767px) {
      .art-testimonial-boxed .art-testimonial__author-name {
        font-family: var(--art-body-three-mobile-font-family);
        font-weight: var(--art-body-three-mobile-font-weight);
        font-style: var(--art-body-three-mobile-font-style);
        text-transform: var(--art-body-three-mobile-text-transform);
        -webkit-text-decoration: var(--art-body-three-mobile-text-decoration);
                text-decoration: var(--art-body-three-mobile-text-decoration);
        font-size: var(--art-body-three-mobile-font-size);
        line-height: var(--art-body-three-mobile-line-height);
        letter-spacing: var(--art-body-three-mobile-letter-spacing); } }

.elementor-widget-art-testimonials-slider-wide {
  --art-testimonials-slider-wide-content-alignment: left; }

.art-testimonial-wide {
  text-align: var(--art-testimonials-slider-wide-content-alignment); }
  .art-testimonial-wide .art-testimonial__text {
    font-family: var(--art-h3-font-family);
    font-weight: var(--art-h3-font-weight);
    font-style: var(--art-h3-font-style);
    text-transform: var(--art-h3-text-transform);
    -webkit-text-decoration: var(--art-h3-text-decoration);
            text-decoration: var(--art-h3-text-decoration);
    font-size: var(--art-h3-font-size);
    line-height: var(--art-h3-line-height);
    letter-spacing: var(--art-h3-letter-spacing);
    color: var(--art-colors-text); }
    @media only screen and (max-width: 767px) {
      .art-testimonial-wide .art-testimonial__text {
        font-family: var(--art-h3-mobile-font-family);
        font-weight: var(--art-h3-mobile-font-weight);
        font-style: var(--art-h3-mobile-font-style);
        text-transform: var(--art-h3-mobile-text-transform);
        -webkit-text-decoration: var(--art-h3-mobile-text-decoration);
                text-decoration: var(--art-h3-mobile-text-decoration);
        font-size: var(--art-h3-mobile-font-size);
        line-height: var(--art-h3-mobile-line-height);
        letter-spacing: var(--art-h3-mobile-letter-spacing); } }
  .art-testimonial-wide .art-testimonial__author-info {
    margin-top: 60px; }
  .art-testimonial-wide .art-testimonial__avatar img {
    width: 100px;
    height: auto;
    border-radius: 100px; }
  .art-testimonial-wide .art-testimonial__avatar + * {
    margin-top: 26px; }
  .art-testimonial-wide .art-testimonial__author-name {
    font-family: var(--art-h6-font-family);
    font-weight: var(--art-h6-font-weight);
    font-style: var(--art-h6-font-style);
    text-transform: var(--art-h6-text-transform);
    -webkit-text-decoration: var(--art-h6-text-decoration);
            text-decoration: var(--art-h6-text-decoration);
    font-size: var(--art-h6-font-size);
    line-height: var(--art-h6-line-height);
    letter-spacing: var(--art-h6-letter-spacing);
    color: var(--art-colors-heading); }
    @media only screen and (max-width: 767px) {
      .art-testimonial-wide .art-testimonial__author-name {
        font-family: var(--art-h6-mobile-font-family);
        font-weight: var(--art-h6-mobile-font-weight);
        font-style: var(--art-h6-mobile-font-style);
        text-transform: var(--art-h6-mobile-text-transform);
        -webkit-text-decoration: var(--art-h6-mobile-text-decoration);
                text-decoration: var(--art-h6-mobile-text-decoration);
        font-size: var(--art-h6-mobile-font-size);
        line-height: var(--art-h6-mobile-line-height);
        letter-spacing: var(--art-h6-mobile-letter-spacing); } }
    .art-testimonial-wide .art-testimonial__author-name + * {
      margin-top: 8px; }
  .art-testimonial-wide .art-testimonial__author-role {
    color: var(--art-colors-second-text); }

.elementor-widget-art-typed-text {
  --art-typed-text-alignment: left;
  --art-typed-text-color: var(--art-colors-link); }

.art-typed-text__wrapper {
  text-align: var(--art-typed-text-alignment);
  color: var(--art-typed-text-color); }

.art-typed-text__text {
  display: inline-block; }

/* Elementor Widgets */
/*## Service Menu ##*/
/*## Follow Subscribe ##*/
form.mc4wp-form.mc4wp-form-success .mc4wp-form-fields, form.mc4wp-form.mc4wp-form-error .mc4wp-form-fields {
  display: none; }

form.mc4wp-form .art-sub-inputs {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  form.mc4wp-form .art-sub-inputs input[type=email] {
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 0; }
  form.mc4wp-form .art-sub-inputs input[type=submit] {
    margin: 0 0 0 20px; }

form.mc4wp-form .mc4wp-response {
  text-align: center; }

.zoom-anim-dialog.art-popup-booked {
  max-width: 555px;
  min-height: 470px;
  height: 100%;
  padding: 60px 98px  30px 98px;
  max-height: 760px;
  overflow: auto; }
  .zoom-anim-dialog.art-popup-booked .booked-calendar-shortcode-wrap {
    display: block;
    width: 100%;
    height: 100%; }

/*## Instagram 1 ##*/
#sb_instagram #sbi_images {
  padding: 0 !important; }
  #sb_instagram #sbi_images.art-big-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    #sb_instagram #sbi_images.art-big-image .art-big-image {
      width: 40%; }
      #sb_instagram #sbi_images.art-big-image .art-big-image .art-inst-item {
        padding: 12px;
        display: block; }
    #sb_instagram #sbi_images.art-big-image .art-other-images {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      width: 60%; }
      #sb_instagram #sbi_images.art-big-image .art-other-images .art-inst-item {
        width: 33.333333333333%;
        padding: 12px; }
  #sb_instagram #sbi_images .art-other-images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%; }
    #sb_instagram #sbi_images .art-other-images .art-inst-item {
      width: 20%; }

@media (max-width: 720px) {
  #sb_instagram #sbi_images.art-big-image {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    #sb_instagram #sbi_images.art-big-image .art-big-image {
      width: 100%; }
    #sb_instagram #sbi_images.art-big-image .art-other-images {
      width: 100%; }
      #sb_instagram #sbi_images.art-big-image .art-other-images .art-inst-item {
        width: 50%; }
  #sb_instagram #sbi_images .art-other-images .art-inst-item {
    width: 33.333333333%; } }

/*## ACF 7 (Default shortcode widget) ##*/
.wpcf7 form.wpcf7-form span.wpcf7-not-valid-tip {
  margin-top: 8px;
  text-align: left;
  font-size: 12px;
  line-height: 17px;
  color: #EA6956; }

.wpcf7 form.wpcf7-form p {
  margin-bottom: 20px; }

.wpcf7 form.wpcf7-form p.wpcf7-form-control-wrap {
  margin-bottom: 30px; }

.wpcf7 form.wpcf7-form .two-fields-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px; }
  .wpcf7 form.wpcf7-form .two-fields-row div {
    padding: 0 10px; }

.wpcf7 form.wpcf7-form .three-fields-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px 10px -10px; }
  .wpcf7 form.wpcf7-form .three-fields-row div {
    padding: 0 10px; }

.wpcf7 form.wpcf7-form .art-textarea-224 textarea {
  height: 224px; }

.wpcf7 form.wpcf7-form textarea {
  width: 100%;
  height: 160px; }

.wpcf7 form.wpcf7-form .field-to-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; }
  .wpcf7 form.wpcf7-form .field-to-right .ajax-loader {
    display: none; }

/* Blog */
.art-no-other-posts {
  width: 100%;
  padding: 0 15px;
  text-align: center;
  margin-top: 50px; }

.art-categories-dropdown {
  outline: none;
  border-width: 2px;
  border-style: solid;
  border-color: var(--art-colors-bd);
  color: var(--art-colors-text);
  background-color: transparent;
  background-image: none;
  font-family: var(--art-body-two-font-family);
  font-weight: var(--art-body-two-font-weight);
  font-style: var(--art-body-two-font-style);
  text-transform: var(--art-body-two-text-transform);
  -webkit-text-decoration: var(--art-body-two-text-decoration);
          text-decoration: var(--art-body-two-text-decoration);
  font-size: var(--art-body-two-font-size);
  line-height: var(--art-body-two-line-height);
  letter-spacing: var(--art-body-two-letter-spacing);
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  text-shadow: none;
  padding: 12px 15px;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: color .2s ease-in-out, border-color .2s ease-in-out, background-color .2s ease-in-out;
  transition: color .2s ease-in-out, border-color .2s ease-in-out, background-color .2s ease-in-out;
  background-image: url(../images/chevron-bottom-16.svg);
  background-repeat: no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-position: calc(100% - 12px) center;
  padding-right: 30px;
  list-style: none;
  width: 100%;
  max-width: 360px;
  margin: 0;
  position: relative;
  cursor: pointer; }
  .art-second-color-scheme .art-categories-dropdown {
    border-color: var(--art-bg-bd); }
  .art-second-color-scheme .art-categories-dropdown {
    color: var(--art-bg-text); }
  @media only screen and (max-width: 767px) {
    .art-categories-dropdown {
      font-family: var(--art-body-two-mobile-font-family);
      font-weight: var(--art-body-two-mobile-font-weight);
      font-style: var(--art-body-two-mobile-font-style);
      text-transform: var(--art-body-two-mobile-text-transform);
      -webkit-text-decoration: var(--art-body-two-mobile-text-decoration);
              text-decoration: var(--art-body-two-mobile-text-decoration);
      font-size: var(--art-body-two-mobile-font-size);
      line-height: var(--art-body-two-mobile-line-height);
      letter-spacing: var(--art-body-two-mobile-letter-spacing); } }
  .art-categories-dropdown::-webkit-input-placeholder {
    color: var(--art-colors-text);
    -webkit-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out; }
    .art-second-color-scheme .art-categories-dropdown::-webkit-input-placeholder {
      color: var(--art-bg-text); }
  .art-categories-dropdown::-moz-placeholder {
    color: var(--art-colors-text);
    -webkit-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out; }
    .art-second-color-scheme .art-categories-dropdown::-moz-placeholder {
      color: var(--art-bg-text); }
  .art-categories-dropdown::-ms-input-placeholder {
    color: var(--art-colors-text);
    -webkit-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out; }
    .art-second-color-scheme .art-categories-dropdown::-ms-input-placeholder {
      color: var(--art-bg-text); }
  .art-categories-dropdown:focus {
    color: var(--art-colors-text);
    border-color: var(--art-colors-link); }
    .art-second-color-scheme .art-categories-dropdown:focus {
      color: var(--art-bg-text); }
    .art-second-color-scheme .art-categories-dropdown:focus {
      border-color: var(--art-bg-link); }
    .art-categories-dropdown:focus::-webkit-input-placeholder {
      color: transparent; }
    .art-categories-dropdown:focus::-moz-placeholder {
      color: transparent; }
  .art-categories-dropdown:focus {
    background-image: url(../images/chevron-top-16.svg); }
  .art-categories-dropdown.art-cat-open {
    color: var(--art-colors-text);
    border-color: var(--art-colors-link);
    background-image: url(../images/chevron-top-16.svg); }
    .art-second-color-scheme .art-categories-dropdown.art-cat-open {
      color: var(--art-bg-text); }
    .art-second-color-scheme .art-categories-dropdown.art-cat-open {
      border-color: var(--art-bg-link); }
    .art-categories-dropdown.art-cat-open ul {
      display: block; }
  .art-categories-dropdown li {
    margin: 0; }
  .art-categories-dropdown ul {
    list-style: none;
    background-color: var(--art-colors-bg);
    border-left-width: 2px;
    border-left-style: solid;
    border-right-width: 2px;
    border-right-style: solid;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-color: var(--art-colors-link);
    display: none;
    width: calc( 100% + 4px);
    max-height: 252px;
    margin-left: -2px;
    padding: 10px 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9;
    overflow-y: auto;
    overflow-x: hidden; }
    .art-second-color-scheme .art-categories-dropdown ul {
      background-color: var(--art-bg-bg); }
    .art-second-color-scheme .art-categories-dropdown ul {
      border-color: var(--art-bg-link); }
    .art-categories-dropdown ul li {
      margin-top: 10px; }
      .art-categories-dropdown ul li:first-child {
        margin-top: 0; }
    .art-categories-dropdown ul a {
      color: var(--art-colors-text);
      display: block;
      width: 100%;
      padding: 0 15px; }
      .art-second-color-scheme .art-categories-dropdown ul a {
        color: var(--art-bg-text); }
      .art-categories-dropdown ul a:hover {
        color: var(--art-colors-link); }
        .art-second-color-scheme .art-categories-dropdown ul a:hover {
          color: var(--art-bg-link); }

.art-search-blog-button i {
  color: var(--art-colors-heading);
  font-size: 24px;
  -webkit-transition: color .2s ease-in-out;
  transition: color .2s ease-in-out; }
  .art-second-color-scheme .art-search-blog-button i {
    color: var(--art-bg-heading); }

.art-search-blog-button:hover i {
  color: var(--art-colors-link); }
  .art-second-color-scheme .art-search-blog-button:hover i {
    color: var(--art-bg-link); }

/*## Blog Common ##*/
.art-blog-cats .art-categories-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px; }
  .art-blog-cats .art-categories-wrapper > * + * {
    margin-left: 20px; }
  .art-blog-cats .art-categories-wrapper.art-categories-type-list {
    margin-bottom: 50px; }
  .art-blog-cats .art-categories-wrapper .art-categories {
    font-family: var(--art-body-three-font-family);
    font-weight: var(--art-body-three-font-weight);
    font-style: var(--art-body-three-font-style);
    text-transform: var(--art-body-three-text-transform);
    -webkit-text-decoration: var(--art-body-three-text-decoration);
            text-decoration: var(--art-body-three-text-decoration);
    font-size: var(--art-body-three-font-size);
    line-height: var(--art-body-three-line-height);
    letter-spacing: var(--art-body-three-letter-spacing);
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -20px -20px; }
    @media only screen and (max-width: 767px) {
      .art-blog-cats .art-categories-wrapper .art-categories {
        font-family: var(--art-body-three-mobile-font-family);
        font-weight: var(--art-body-three-mobile-font-weight);
        font-style: var(--art-body-three-mobile-font-style);
        text-transform: var(--art-body-three-mobile-text-transform);
        -webkit-text-decoration: var(--art-body-three-mobile-text-decoration);
                text-decoration: var(--art-body-three-mobile-text-decoration);
        font-size: var(--art-body-three-mobile-font-size);
        line-height: var(--art-body-three-mobile-line-height);
        letter-spacing: var(--art-body-three-mobile-letter-spacing); } }
    @media only screen and (max-width: 767px) {
      .art-blog-cats .art-categories-wrapper .art-categories {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
    .art-blog-cats .art-categories-wrapper .art-categories li {
      margin: 0 20px 20px; }
      .art-blog-cats .art-categories-wrapper .art-categories li a {
        color: var(--art-colors-text);
        display: inline-block; }
        .art-second-color-scheme .art-blog-cats .art-categories-wrapper .art-categories li a {
          color: var(--art-bg-text); }
      .art-blog-cats .art-categories-wrapper .art-categories li a:hover,
      .art-blog-cats .art-categories-wrapper .art-categories li.current_item a {
        position: relative; }
        .art-blog-cats .art-categories-wrapper .art-categories li a:hover:before,
        .art-blog-cats .art-categories-wrapper .art-categories li.current_item a:before {
          content: '';
          position: absolute;
          bottom: -7px;
          left: 0;
          height: 2px;
          width: 100%;
          background-color: var(--art-colors-text); }
          .art-second-color-scheme .art-blog-cats .art-categories-wrapper .art-categories li a:hover:before, .art-second-color-scheme
          .art-blog-cats .art-categories-wrapper .art-categories li.current_item a:before {
            background-color: var(--art-bg-text); }

.art-post-cat-date {
  color: var(--art-colors-second-text); }
  .art-post-cat-date a {
    color: var(--art-colors-second-text); }
    .art-post-cat-date a:hover {
      color: var(--art-colors-link); }
  .art-post-cat-date > div {
    display: inline; }
    .art-post-cat-date > div + div:before {
      content: '\e800';
      font-family: "magnetique";
      padding: 0 6px; }

/*## Blog Default ##*/
.art-blog-default-top {
  margin-bottom: 80px;
  position: relative; }
  .art-blog-default-top .art-post-cat-date {
    margin-bottom: 16px;
    font-family: var(--art-body-three-font-family);
    font-weight: var(--art-body-three-font-weight);
    font-style: var(--art-body-three-font-style);
    text-transform: var(--art-body-three-text-transform);
    -webkit-text-decoration: var(--art-body-three-text-decoration);
            text-decoration: var(--art-body-three-text-decoration);
    font-size: var(--art-body-three-font-size);
    line-height: var(--art-body-three-line-height);
    letter-spacing: var(--art-body-three-letter-spacing); }
    @media only screen and (max-width: 767px) {
      .art-blog-default-top .art-post-cat-date {
        font-family: var(--art-body-three-mobile-font-family);
        font-weight: var(--art-body-three-mobile-font-weight);
        font-style: var(--art-body-three-mobile-font-style);
        text-transform: var(--art-body-three-mobile-text-transform);
        -webkit-text-decoration: var(--art-body-three-mobile-text-decoration);
                text-decoration: var(--art-body-three-mobile-text-decoration);
        font-size: var(--art-body-three-mobile-font-size);
        line-height: var(--art-body-three-mobile-line-height);
        letter-spacing: var(--art-body-three-mobile-letter-spacing); } }
  .art-blog-default-top .art-post-title {
    margin: 0;
    font-family: var(--art-h1-font-family);
    font-weight: var(--art-h1-font-weight);
    font-style: var(--art-h1-font-style);
    text-transform: var(--art-h1-text-transform);
    -webkit-text-decoration: var(--art-h1-text-decoration);
            text-decoration: var(--art-h1-text-decoration);
    font-size: var(--art-h1-font-size);
    line-height: var(--art-h1-line-height);
    letter-spacing: var(--art-h1-letter-spacing); }
    @media only screen and (max-width: 767px) {
      .art-blog-default-top .art-post-title {
        font-family: var(--art-h1-mobile-font-family);
        font-weight: var(--art-h1-mobile-font-weight);
        font-style: var(--art-h1-mobile-font-style);
        text-transform: var(--art-h1-mobile-text-transform);
        -webkit-text-decoration: var(--art-h1-mobile-text-decoration);
                text-decoration: var(--art-h1-mobile-text-decoration);
        font-size: var(--art-h1-mobile-font-size);
        line-height: var(--art-h1-mobile-line-height);
        letter-spacing: var(--art-h1-mobile-letter-spacing); } }
  .art-blog-default-top .art-post-excerpt {
    margin-top: 20px; }
  .art-blog-default-top .art-post-read-more {
    margin-top: 40px; }

.art-blog-posts-default {
  padding-bottom: 100px;
  --art-posts-columns: 4;
  --art-posts-columns-gap: 30px;
  --art-posts-rows-gap: 50px; }
  @media only screen and (max-width: 1024px) {
    .art-blog-posts-default {
      --art-posts-columns: 3;
      --art-posts-rows-gap: 30px; } }
  @media only screen and (max-width: 767px) {
    .art-blog-posts-default {
      --art-posts-columns: 1;
      padding-bottom: 50px; } }

.elementor-widget-art-posts {
  --art-posts-columns: 2;
  --art-posts-columns-gap: 30px;
  --art-posts-rows-gap: 50px; }
  @media only screen and (max-width: 1024px) {
    .elementor-widget-art-posts {
      --art-posts-columns: 2;
      --art-posts-rows-gap: 30px; } }
  @media only screen and (max-width: 767px) {
    .elementor-widget-art-posts {
      --art-posts-columns: 1; } }

@media only screen and (max-width: 450px) {
  .art-form-line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .art-form-line div {
      margin-left: 0; }
      .art-form-line div button {
        width: 100%; } }

@media only screen and (max-width: 767px) {
  .art-form-line div {
    -webkit-box-flex: unset;
        -ms-flex-positive: unset;
            flex-grow: unset; } }

.art-blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(var(--art-posts-columns), minmax(10px, 1fr));
  grid-column-gap: var(--art-posts-columns-gap);
  grid-row-gap: var(--art-posts-rows-gap);
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.art-blog-post .art-post-image {
  margin-bottom: 22px; }
  .art-blog-post .art-post-image img {
    width: 100%; }

.art-blog-post .art-post-cat-date {
  font-family: var(--art-body-three-font-family);
  font-weight: var(--art-body-three-font-weight);
  font-style: var(--art-body-three-font-style);
  text-transform: var(--art-body-three-text-transform);
  -webkit-text-decoration: var(--art-body-three-text-decoration);
          text-decoration: var(--art-body-three-text-decoration);
  font-size: var(--art-body-three-font-size);
  line-height: var(--art-body-three-line-height);
  letter-spacing: var(--art-body-three-letter-spacing);
  margin-bottom: 10px; }
  @media only screen and (max-width: 767px) {
    .art-blog-post .art-post-cat-date {
      font-family: var(--art-body-three-mobile-font-family);
      font-weight: var(--art-body-three-mobile-font-weight);
      font-style: var(--art-body-three-mobile-font-style);
      text-transform: var(--art-body-three-mobile-text-transform);
      -webkit-text-decoration: var(--art-body-three-mobile-text-decoration);
              text-decoration: var(--art-body-three-mobile-text-decoration);
      font-size: var(--art-body-three-mobile-font-size);
      line-height: var(--art-body-three-mobile-line-height);
      letter-spacing: var(--art-body-three-mobile-letter-spacing); } }

.art-blog-post .art-post-title {
  margin: 0; }

.art-blog-post-second .art-post-image img {
  width: 100%; }

.art-blog-post-second .art-blog-post-second__content {
  background-color: var(--art-colors-bg);
  padding: 24px; }

.art-blog-post-second .art-post-cats {
  font-family: var(--art-body-three-font-family);
  font-weight: var(--art-body-three-font-weight);
  font-style: var(--art-body-three-font-style);
  text-transform: var(--art-body-three-text-transform);
  -webkit-text-decoration: var(--art-body-three-text-decoration);
          text-decoration: var(--art-body-three-text-decoration);
  font-size: var(--art-body-three-font-size);
  line-height: var(--art-body-three-line-height);
  letter-spacing: var(--art-body-three-letter-spacing);
  color: var(--art-colors-link);
  margin-bottom: 5px; }
  @media only screen and (max-width: 767px) {
    .art-blog-post-second .art-post-cats {
      font-family: var(--art-body-three-mobile-font-family);
      font-weight: var(--art-body-three-mobile-font-weight);
      font-style: var(--art-body-three-mobile-font-style);
      text-transform: var(--art-body-three-mobile-text-transform);
      -webkit-text-decoration: var(--art-body-three-mobile-text-decoration);
              text-decoration: var(--art-body-three-mobile-text-decoration);
      font-size: var(--art-body-three-mobile-font-size);
      line-height: var(--art-body-three-mobile-line-height);
      letter-spacing: var(--art-body-three-mobile-letter-spacing); } }
  .art-blog-post-second .art-post-cats a {
    color: var(--art-colors-link); }
    .art-blog-post-second .art-post-cats a:hover {
      color: var(--art-colors-hover); }

.art-blog-post-second .art-post-title {
  margin: 0; }

.art-blog-post-second .art-post-read-more {
  margin-top: 32px; }

.art-blog-typical {
  padding-top: 80px;
  padding-bottom: 90px; }
  @media only screen and (max-width: 767px) {
    .art-blog-typical {
      padding-bottom: 50px; } }
  .art-headline + .art-blog-typical {
    padding-top: 0; }

.art-blog-widget-area {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 60px;
  margin-top: 60px; }
  @media only screen and (min-width: 768px) {
    .art-blog-widget-area {
      border-top: 0;
      padding-top: 0;
      padding-left: 20px;
      margin-top: 0; } }

.art-posts-typical {
  margin-bottom: 40px; }

.art-post-typical {
  margin-top: 80px; }
  .art-post-typical.sticky, .art-post-typical.sticky:first-child {
    padding: 40px;
    background-color: var(--art-colors-second-bg); }
  .art-post-typical:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0; }
  .art-post-typical .art-post-image {
    margin-bottom: 30px; }
    .art-post-typical .art-post-image img {
      max-width: 100%; }
  .art-post-typical .art-post-cat-date {
    margin-bottom: 10px;
    font-family: var(--art-body-three-font-family);
    font-weight: var(--art-body-three-font-weight);
    font-style: var(--art-body-three-font-style);
    text-transform: var(--art-body-three-text-transform);
    -webkit-text-decoration: var(--art-body-three-text-decoration);
            text-decoration: var(--art-body-three-text-decoration);
    font-size: var(--art-body-three-font-size);
    line-height: var(--art-body-three-line-height);
    letter-spacing: var(--art-body-three-letter-spacing); }
  .art-post-typical .art-post-title {
    margin: 0; }
  .art-post-typical .art-post-excerpt {
    margin-top: 20px; }
  .art-post-typical .art-post-read-more {
    margin-top: 30px; }

.art-single-wrapper {
  outline: none; }

.art-single-top {
  min-height: 665px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media only screen and (max-width: 991px) {
    .art-single-top {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }
  .art-single-top.art-single-post-no-image {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    @media only screen and (max-width: 991px) {
      .art-single-top.art-single-post-no-image {
        min-height: 480px; } }
  .art-single-top .art-single-top__start-col {
    position: relative;
    width: 50%; }
    @media only screen and (max-width: 991px) {
      .art-single-top .art-single-top__start-col {
        width: 100%;
        min-height: 500px; } }
    .art-single-top .art-single-top__start-col .art-blog-top-image {
      height: 100%;
      background-size: cover;
      background-position: center center; }
  .art-single-top .art-single-top__end-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 50%;
    background-color: var(--art-colors-second-bg); }
    .art-second-color-scheme .art-single-top .art-single-top__end-col {
      background-color: var(--art-bg-second-bg); }
    @media only screen and (max-width: 991px) {
      .art-single-top .art-single-top__end-col {
        width: 100%; } }
    .art-single-top .art-single-top__end-col .art-single-top__end-col-data {
      padding: 30px 113px;
      width: 100%; }
      @media only screen and (max-width: 1199px) {
        .art-single-top .art-single-top__end-col .art-single-top__end-col-data {
          padding-left: 50px;
          padding-right: 50px; } }
  .art-single-top .art-post-cat-date {
    font-family: var(--art-body-three-font-family);
    font-weight: var(--art-body-three-font-weight);
    font-style: var(--art-body-three-font-style);
    text-transform: var(--art-body-three-text-transform);
    -webkit-text-decoration: var(--art-body-three-text-decoration);
            text-decoration: var(--art-body-three-text-decoration);
    font-size: var(--art-body-three-font-size);
    line-height: var(--art-body-three-line-height);
    letter-spacing: var(--art-body-three-letter-spacing);
    margin-bottom: 16px; }
    @media only screen and (max-width: 767px) {
      .art-single-top .art-post-cat-date {
        font-family: var(--art-body-three-mobile-font-family);
        font-weight: var(--art-body-three-mobile-font-weight);
        font-style: var(--art-body-three-mobile-font-style);
        text-transform: var(--art-body-three-mobile-text-transform);
        -webkit-text-decoration: var(--art-body-three-mobile-text-decoration);
                text-decoration: var(--art-body-three-mobile-text-decoration);
        font-size: var(--art-body-three-mobile-font-size);
        line-height: var(--art-body-three-mobile-line-height);
        letter-spacing: var(--art-body-three-mobile-letter-spacing); } }
  .art-single-top .art-post-title {
    margin: 0; }
  .art-single-top .art-post-author {
    font-family: var(--art-h6-font-family);
    font-weight: var(--art-h6-font-weight);
    font-style: var(--art-h6-font-style);
    text-transform: var(--art-h6-text-transform);
    -webkit-text-decoration: var(--art-h6-text-decoration);
            text-decoration: var(--art-h6-text-decoration);
    font-size: var(--art-h6-font-size);
    line-height: var(--art-h6-line-height);
    letter-spacing: var(--art-h6-letter-spacing);
    margin-top: 30px; }
    @media only screen and (max-width: 767px) {
      .art-single-top .art-post-author {
        font-family: var(--art-h6-mobile-font-family);
        font-weight: var(--art-h6-mobile-font-weight);
        font-style: var(--art-h6-mobile-font-style);
        text-transform: var(--art-h6-mobile-text-transform);
        -webkit-text-decoration: var(--art-h6-mobile-text-decoration);
                text-decoration: var(--art-h6-mobile-text-decoration);
        font-size: var(--art-h6-mobile-font-size);
        line-height: var(--art-h6-mobile-line-height);
        letter-spacing: var(--art-h6-mobile-letter-spacing); } }
    .art-single-top .art-post-author a {
      color: var(--art-colors-heading); }
      .art-single-top .art-post-author a:hover {
        color: var(--art-colors-link); }

/* Single Elements */
.art-post-content-wrapper {
  padding-top: 80px;
  padding-bottom: 110px; }
  @media only screen and (max-width: 991px) {
    .art-post-content-wrapper {
      padding-top: 50px;
      padding-bottom: 50px; } }

.art-post-the-content {
  width: 750px;
  max-width: 100%;
  margin: 0 auto; }
  .art-post-the-content:after {
    content: '.';
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
    overflow: hidden; }
  .art-post-the-content + div {
    margin-top: 80px; }
    @media only screen and (max-width: 767px) {
      .art-post-the-content + div {
        margin-top: 50px; } }

.art-single-post-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .art-single-post-tags-title {
    margin: 0 0 30px; }

.tagcloud,
.art-post-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -12px -7px 0; }
  .tagcloud a,
  .art-post-tags a {
    font-family: var(--art-body-three-font-family);
    font-weight: var(--art-body-three-font-weight);
    font-style: var(--art-body-three-font-style);
    text-transform: var(--art-body-three-text-transform);
    -webkit-text-decoration: var(--art-body-three-text-decoration);
            text-decoration: var(--art-body-three-text-decoration);
    font-size: var(--art-body-three-font-size);
    line-height: var(--art-body-three-line-height);
    letter-spacing: var(--art-body-three-letter-spacing);
    color: var(--art-colors-bg);
    background-color: var(--art-colors-fourth-bg);
    margin: 12px 7px 0;
    padding: 3px 12px;
    -webkit-transition: color .2s ease-in-out, background-color .2s ease-in-out;
    transition: color .2s ease-in-out, background-color .2s ease-in-out;
    line-height: 26px !important; }
    @media only screen and (max-width: 767px) {
      .tagcloud a,
      .art-post-tags a {
        font-family: var(--art-body-three-mobile-font-family);
        font-weight: var(--art-body-three-mobile-font-weight);
        font-style: var(--art-body-three-mobile-font-style);
        text-transform: var(--art-body-three-mobile-text-transform);
        -webkit-text-decoration: var(--art-body-three-mobile-text-decoration);
                text-decoration: var(--art-body-three-mobile-text-decoration);
        font-size: var(--art-body-three-mobile-font-size);
        line-height: var(--art-body-three-mobile-line-height);
        letter-spacing: var(--art-body-three-mobile-letter-spacing); } }
    .art-second-color-scheme .tagcloud a, .art-second-color-scheme
    .art-post-tags a {
      color: var(--art-bg-bg); }
    .art-second-color-scheme .tagcloud a, .art-second-color-scheme
    .art-post-tags a {
      background-color: var(--art-bg-fourth-bg); }
    .tagcloud a:hover,
    .art-post-tags a:hover {
      background-color: var(--art-colors-bg);
      color: var(--art-colors-fourth-bg); }
      .art-second-color-scheme .tagcloud a:hover, .art-second-color-scheme
      .art-post-tags a:hover {
        background-color: var(--art-bg-bg); }
      .art-second-color-scheme .tagcloud a:hover, .art-second-color-scheme
      .art-post-tags a:hover {
        color: var(--art-bg-fourth-bg); }

.art-single-post-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 80px; }
  @media only screen and (max-width: 767px) {
    .art-single-post-share {
      margin-top: 40px; } }
  .art-single-post-share-title {
    margin: 0 0 21px; }
  .art-single-post-share .art-social-share-buttons {
    font-size: 25px; }
    .art-single-post-share .art-social-share-buttons a {
      margin: 0 10px; }

.art-single-navigation {
  padding: 100px 0; }
  @media only screen and (max-width: 991px) {
    .art-single-navigation {
      padding-top: 30px;
      padding-bottom: 30px; } }
  .art-single-navigation .nav-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media only screen and (max-width: 991px) {
      .art-single-navigation .nav-links {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; } }
    .art-single-navigation .nav-links > div {
      -webkit-box-flex: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      width: 50%;
      position: relative; }
      @media only screen and (max-width: 991px) {
        .art-single-navigation .nav-links > div {
          width: 100%; } }
      .art-single-navigation .nav-links > div + div {
        padding-left: 20px; }
        @media only screen and (max-width: 991px) {
          .art-single-navigation .nav-links > div + div {
            margin-top: 30px;
            padding-top: 30px;
            padding-left: 0; }
            .art-single-navigation .nav-links > div + div:before {
              content: '';
              background-color: rgba(0, 0, 0, 0.1);
              margin-left: calc(50% - 50vw);
              margin-right: calc(50% - 50vw);
              max-width: 100vw;
              width: 100vw;
              height: 1px;
              position: absolute;
              left: 0;
              top: 0; } }
    .art-single-navigation .nav-links .nav-next {
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end; }
    .art-single-navigation .nav-links .post-nav-item {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .art-single-navigation .nav-links .post-nav-item.post-nav-next {
        text-align: end;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end; }
      .art-single-navigation .nav-links .post-nav-item > div + div {
        margin-left: 20px; }
    .art-single-navigation .nav-links .nav-image {
      width: 100px;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      -ms-flex-item-align: start;
          align-self: flex-start; }
      .art-single-navigation .nav-links .nav-image img {
        width: 100%;
        max-width: 100%;
        height: auto; }
    .art-single-navigation .nav-links .nav-data > span {
      display: block; }
    .art-single-navigation .nav-links .post-nav-item-descr {
      font-family: var(--art-body-three-font-family);
      font-weight: var(--art-body-three-font-weight);
      font-style: var(--art-body-three-font-style);
      text-transform: var(--art-body-three-text-transform);
      -webkit-text-decoration: var(--art-body-three-text-decoration);
              text-decoration: var(--art-body-three-text-decoration);
      font-size: var(--art-body-three-font-size);
      line-height: var(--art-body-three-line-height);
      letter-spacing: var(--art-body-three-letter-spacing);
      color: var(--art-colors-second-text);
      margin-bottom: 4px; }
      @media only screen and (max-width: 767px) {
        .art-single-navigation .nav-links .post-nav-item-descr {
          font-family: var(--art-body-three-mobile-font-family);
          font-weight: var(--art-body-three-mobile-font-weight);
          font-style: var(--art-body-three-mobile-font-style);
          text-transform: var(--art-body-three-mobile-text-transform);
          -webkit-text-decoration: var(--art-body-three-mobile-text-decoration);
                  text-decoration: var(--art-body-three-mobile-text-decoration);
          font-size: var(--art-body-three-mobile-font-size);
          line-height: var(--art-body-three-mobile-line-height);
          letter-spacing: var(--art-body-three-mobile-letter-spacing); } }
    .art-single-navigation .nav-links .post-nav-item-title {
      font-family: var(--art-h6-font-family);
      font-weight: var(--art-h6-font-weight);
      font-style: var(--art-h6-font-style);
      text-transform: var(--art-h6-text-transform);
      -webkit-text-decoration: var(--art-h6-text-decoration);
              text-decoration: var(--art-h6-text-decoration);
      font-size: var(--art-h6-font-size);
      line-height: var(--art-h6-line-height);
      letter-spacing: var(--art-h6-letter-spacing);
      color: var(--art-colors-heading);
      -webkit-transition: color .2s ease-in-out;
      transition: color .2s ease-in-out; }
      @media only screen and (max-width: 767px) {
        .art-single-navigation .nav-links .post-nav-item-title {
          font-family: var(--art-h6-mobile-font-family);
          font-weight: var(--art-h6-mobile-font-weight);
          font-style: var(--art-h6-mobile-font-style);
          text-transform: var(--art-h6-mobile-text-transform);
          -webkit-text-decoration: var(--art-h6-mobile-text-decoration);
                  text-decoration: var(--art-h6-mobile-text-decoration);
          font-size: var(--art-h6-mobile-font-size);
          line-height: var(--art-h6-mobile-line-height);
          letter-spacing: var(--art-h6-mobile-letter-spacing); } }
    .art-single-navigation .nav-links a:hover .post-nav-item-title {
      color: var(--art-colors-link); }

.art-related-posts {
  --art-posts-columns: 4;
  --art-posts-columns-gap: 30px;
  --art-posts-rows-gap: 50px; }
  @media only screen and (max-width: 1024px) {
    .art-related-posts {
      --art-posts-columns: 3;
      --art-posts-rows-gap: 30px; } }
  @media only screen and (max-width: 767px) {
    .art-related-posts {
      --art-posts-columns: 1; } }
  .art-related-posts-title {
    text-align: center;
    margin-bottom: 50px; }
  .art-related-posts-container {
    display: grid;
    grid-template-columns: repeat(var(--art-posts-columns), minmax(10px, 1fr));
    grid-column-gap: var(--art-posts-columns-gap);
    grid-row-gap: var(--art-posts-rows-gap);
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }

.art-related-post .art-post-image {
  margin-bottom: 22px; }

.art-related-post .art-post-cat-date {
  font-family: var(--art-body-three-font-family);
  font-weight: var(--art-body-three-font-weight);
  font-style: var(--art-body-three-font-style);
  text-transform: var(--art-body-three-text-transform);
  -webkit-text-decoration: var(--art-body-three-text-decoration);
          text-decoration: var(--art-body-three-text-decoration);
  font-size: var(--art-body-three-font-size);
  line-height: var(--art-body-three-line-height);
  letter-spacing: var(--art-body-three-letter-spacing);
  margin-bottom: 7px; }
  @media only screen and (max-width: 767px) {
    .art-related-post .art-post-cat-date {
      font-family: var(--art-body-three-mobile-font-family);
      font-weight: var(--art-body-three-mobile-font-weight);
      font-style: var(--art-body-three-mobile-font-style);
      text-transform: var(--art-body-three-mobile-text-transform);
      -webkit-text-decoration: var(--art-body-three-mobile-text-decoration);
              text-decoration: var(--art-body-three-mobile-text-decoration);
      font-size: var(--art-body-three-mobile-font-size);
      line-height: var(--art-body-three-mobile-line-height);
      letter-spacing: var(--art-body-three-mobile-letter-spacing); } }

.art-related-post .art-post-title {
  margin: 0; }

/* Blog Comments */
.art-single-post-comments {
  margin-top: 110px; }
  .art-page-content + .art-single-post-comments {
    margin-top: 0;
    padding-bottom: 80px; }

.art-comments-area .comments-title {
  font-family: var(--art-h5-font-family);
  font-weight: var(--art-h5-font-weight);
  font-style: var(--art-h5-font-style);
  text-transform: var(--art-h5-text-transform);
  -webkit-text-decoration: var(--art-h5-text-decoration);
          text-decoration: var(--art-h5-text-decoration);
  font-size: var(--art-h5-font-size);
  line-height: var(--art-h5-line-height);
  letter-spacing: var(--art-h5-letter-spacing); }
  @media only screen and (max-width: 767px) {
    .art-comments-area .comments-title {
      font-family: var(--art-h5-mobile-font-family);
      font-weight: var(--art-h5-mobile-font-weight);
      font-style: var(--art-h5-mobile-font-style);
      text-transform: var(--art-h5-mobile-text-transform);
      -webkit-text-decoration: var(--art-h5-mobile-text-decoration);
              text-decoration: var(--art-h5-mobile-text-decoration);
      font-size: var(--art-h5-mobile-font-size);
      line-height: var(--art-h5-mobile-line-height);
      letter-spacing: var(--art-h5-mobile-letter-spacing); } }

.art-comments-area .comment-list {
  list-style: none;
  margin: 40px 0 0; }
  .art-comments-area .comment-list > .comment:first-child,
  .art-comments-area .comment-list > .trackback:first-child,
  .art-comments-area .comment-list > .pingback:first-child {
    border-top: 0;
    margin-top: 0;
    padding-top: 0; }

.art-comments-area .children {
  list-style: none;
  margin: 0;
  padding-left: 84px; }
  @media only screen and (max-width: 767px) {
    .art-comments-area .children {
      padding-left: 20px; } }

.art-comments-area .comment,
.art-comments-area .trackback,
.art-comments-area .pingback {
  margin: 38px 0 0;
  padding: 30px 0 0; }

.art-comments-area .comment-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.art-comments-area .comment-author {
  width: 60px;
  margin-right: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0; }
  .art-comments-area .comment-author img {
    border-radius: 100px; }

.art-comments-area .comment-itself {
  width: 100%; }

.art-comments-area .comment-meta {
  margin-bottom: 18px; }

.art-comments-area .info-meta-top {
  margin-bottom: 8px;
  font-family: var(--art-body-three-font-family);
  font-weight: var(--art-body-three-font-weight);
  font-style: var(--art-body-three-font-style);
  text-transform: var(--art-body-three-text-transform);
  -webkit-text-decoration: var(--art-body-three-text-decoration);
          text-decoration: var(--art-body-three-text-decoration);
  font-size: var(--art-body-three-font-size);
  line-height: var(--art-body-three-line-height);
  letter-spacing: var(--art-body-three-letter-spacing); }
  @media only screen and (max-width: 767px) {
    .art-comments-area .info-meta-top {
      font-family: var(--art-body-three-mobile-font-family);
      font-weight: var(--art-body-three-mobile-font-weight);
      font-style: var(--art-body-three-mobile-font-style);
      text-transform: var(--art-body-three-mobile-text-transform);
      -webkit-text-decoration: var(--art-body-three-mobile-text-decoration);
              text-decoration: var(--art-body-three-mobile-text-decoration);
      font-size: var(--art-body-three-mobile-font-size);
      line-height: var(--art-body-three-mobile-line-height);
      letter-spacing: var(--art-body-three-mobile-letter-spacing); } }
  .art-comments-area .info-meta-top a {
    color: var(--art-colors-heading); }
    .art-comments-area .info-meta-top a:hover {
      color: var(--art-colors-link); }

.art-comments-area .comment-date {
  color: var(--art-colors-text);
  font-family: var(--art-body-two-font-family);
  font-weight: var(--art-body-two-font-weight);
  font-style: var(--art-body-two-font-style);
  text-transform: var(--art-body-two-text-transform);
  -webkit-text-decoration: var(--art-body-two-text-decoration);
          text-decoration: var(--art-body-two-text-decoration);
  font-size: var(--art-body-two-font-size);
  line-height: var(--art-body-two-line-height);
  letter-spacing: var(--art-body-two-letter-spacing); }
  @media only screen and (max-width: 767px) {
    .art-comments-area .comment-date {
      font-family: var(--art-body-two-mobile-font-family);
      font-weight: var(--art-body-two-mobile-font-weight);
      font-style: var(--art-body-two-mobile-font-style);
      text-transform: var(--art-body-two-mobile-text-transform);
      -webkit-text-decoration: var(--art-body-two-mobile-text-decoration);
              text-decoration: var(--art-body-two-mobile-text-decoration);
      font-size: var(--art-body-two-mobile-font-size);
      line-height: var(--art-body-two-mobile-line-height);
      letter-spacing: var(--art-body-two-mobile-letter-spacing); } }

.art-comments-area .comment-text {
  font-family: var(--art-body-two-font-family);
  font-weight: var(--art-body-two-font-weight);
  font-style: var(--art-body-two-font-style);
  text-transform: var(--art-body-two-text-transform);
  -webkit-text-decoration: var(--art-body-two-text-decoration);
          text-decoration: var(--art-body-two-text-decoration);
  font-size: var(--art-body-two-font-size);
  line-height: var(--art-body-two-line-height);
  letter-spacing: var(--art-body-two-letter-spacing);
  height: auto; }
  @media only screen and (max-width: 767px) {
    .art-comments-area .comment-text {
      font-family: var(--art-body-two-mobile-font-family);
      font-weight: var(--art-body-two-mobile-font-weight);
      font-style: var(--art-body-two-mobile-font-style);
      text-transform: var(--art-body-two-mobile-text-transform);
      -webkit-text-decoration: var(--art-body-two-mobile-text-decoration);
              text-decoration: var(--art-body-two-mobile-text-decoration);
      font-size: var(--art-body-two-mobile-font-size);
      line-height: var(--art-body-two-mobile-line-height);
      letter-spacing: var(--art-body-two-mobile-letter-spacing); } }

.art-comments-area .reply {
  font-family: var(--art-body-three-font-family);
  font-weight: var(--art-body-three-font-weight);
  font-style: var(--art-body-three-font-style);
  text-transform: var(--art-body-three-text-transform);
  -webkit-text-decoration: var(--art-body-three-text-decoration);
          text-decoration: var(--art-body-three-text-decoration);
  font-size: var(--art-body-three-font-size);
  line-height: var(--art-body-three-line-height);
  letter-spacing: var(--art-body-three-letter-spacing);
  margin-top: 16px;
  border-bottom: 2px solid;
  display: inline-block;
  padding-bottom: 5px; }
  @media only screen and (max-width: 767px) {
    .art-comments-area .reply {
      font-family: var(--art-body-three-mobile-font-family);
      font-weight: var(--art-body-three-mobile-font-weight);
      font-style: var(--art-body-three-mobile-font-style);
      text-transform: var(--art-body-three-mobile-text-transform);
      -webkit-text-decoration: var(--art-body-three-mobile-text-decoration);
              text-decoration: var(--art-body-three-mobile-text-decoration);
      font-size: var(--art-body-three-mobile-font-size);
      line-height: var(--art-body-three-mobile-line-height);
      letter-spacing: var(--art-body-three-mobile-letter-spacing); } }

.art-comments-area .no-comments {
  margin-top: 50px; }

.art-comments-area .comment-navigation {
  margin: 30px 0; }
  .art-comments-area .comment-navigation .nav-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .art-comments-area .comment-navigation .nav-links > div {
      -webkit-box-flex: 1;
          -ms-flex-positive: 1;
              flex-grow: 1; }
      .art-comments-area .comment-navigation .nav-links > div + div {
        padding-left: 20px; }
      .art-comments-area .comment-navigation .nav-links > div.nav-next {
        text-align: right; }
    .art-comments-area .comment-navigation .nav-links a {
      color: var(--art-colors-second-text); }
      .art-comments-area .comment-navigation .nav-links a:hover {
        color: var(--art-colors-link); }

.comment-list + .comment-respond {
  margin-top: 60px; }

.comment > .comment-respond {
  margin-top: 35px; }

.comment-respond .comment-reply-title {
  font-family: var(--art-h5-font-family);
  font-weight: var(--art-h5-font-weight);
  font-style: var(--art-h5-font-style);
  text-transform: var(--art-h5-text-transform);
  -webkit-text-decoration: var(--art-h5-text-decoration);
          text-decoration: var(--art-h5-text-decoration);
  font-size: var(--art-h5-font-size);
  line-height: var(--art-h5-line-height);
  letter-spacing: var(--art-h5-letter-spacing);
  margin-bottom: 4px; }
  @media only screen and (max-width: 767px) {
    .comment-respond .comment-reply-title {
      font-family: var(--art-h5-mobile-font-family);
      font-weight: var(--art-h5-mobile-font-weight);
      font-style: var(--art-h5-mobile-font-style);
      text-transform: var(--art-h5-mobile-text-transform);
      -webkit-text-decoration: var(--art-h5-mobile-text-decoration);
              text-decoration: var(--art-h5-mobile-text-decoration);
      font-size: var(--art-h5-mobile-font-size);
      line-height: var(--art-h5-mobile-line-height);
      letter-spacing: var(--art-h5-mobile-letter-spacing); } }
  .comment-respond .comment-reply-title small {
    margin-left: 20px; }

.comment-respond form.comment-form {
  margin: 0 -15px; }
  .comment-respond form.comment-form:after {
    content: '.';
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
    overflow: hidden; }
  .comment-respond form.comment-form .art-line-fields p {
    padding: 0 15px; }
  .comment-respond form.comment-form label {
    margin-bottom: 9px; }
  .comment-respond form.comment-form > p {
    width: 100%;
    padding: 0 15px;
    margin: 0 0 30px; }
    .comment-respond form.comment-form > p:last-child {
      margin-bottom: 0; }
  .comment-respond form.comment-form .logged-in-as,
  .comment-respond form.comment-form .comment-notes {
    font-family: var(--art-body-two-font-family);
    font-weight: var(--art-body-two-font-weight);
    font-style: var(--art-body-two-font-style);
    text-transform: var(--art-body-two-text-transform);
    -webkit-text-decoration: var(--art-body-two-text-decoration);
            text-decoration: var(--art-body-two-text-decoration);
    font-size: var(--art-body-two-font-size);
    line-height: var(--art-body-two-line-height);
    letter-spacing: var(--art-body-two-letter-spacing);
    margin-bottom: 20px; }
    @media only screen and (max-width: 767px) {
      .comment-respond form.comment-form .logged-in-as,
      .comment-respond form.comment-form .comment-notes {
        font-family: var(--art-body-two-mobile-font-family);
        font-weight: var(--art-body-two-mobile-font-weight);
        font-style: var(--art-body-two-mobile-font-style);
        text-transform: var(--art-body-two-mobile-text-transform);
        -webkit-text-decoration: var(--art-body-two-mobile-text-decoration);
                text-decoration: var(--art-body-two-mobile-text-decoration);
        font-size: var(--art-body-two-mobile-font-size);
        line-height: var(--art-body-two-mobile-line-height);
        letter-spacing: var(--art-body-two-mobile-letter-spacing); } }
    .comment-respond form.comment-form .logged-in-as,
    .comment-respond form.comment-form .logged-in-as a,
    .comment-respond form.comment-form .comment-notes,
    .comment-respond form.comment-form .comment-notes a {
      color: var(--art-colors-second-text); }
    .comment-respond form.comment-form .logged-in-as a:hover,
    .comment-respond form.comment-form .comment-notes a:hover {
      color: var(--art-colors-link); }
  @media only screen and (min-width: 768px) {
    .comment-respond form.comment-form .comment-form-author,
    .comment-respond form.comment-form .comment-form-email,
    .comment-respond form.comment-form .comment-form-url {
      float: left;
      width: 33.33%; } }
  .comment-respond form.comment-form .comment-form-comment textarea {
    height: 240px;
    width: 100%; }
  .comment-respond form.comment-form .comment-form-cookies-consent {
    display: none; }
  .comment-respond form.comment-form .form-submit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-bottom: 0; }

/* Podcast */
.art-single-podcast-post .art-single-podcast-top {
  padding: 171px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--art-colors-second-bg); }
  @media only screen and (max-width: 767px) {
    .art-single-podcast-post .art-single-podcast-top {
      padding: 115px 0; } }
  @media only screen and (max-width: 991px) {
    .art-single-podcast-post .art-single-podcast-top {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }
  .art-single-podcast-post .art-single-podcast-top.art-single-post-no-image {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    @media only screen and (max-width: 991px) {
      .art-single-podcast-post .art-single-podcast-top.art-single-post-no-image {
        min-height: 480px; } }
  .art-single-podcast-post .art-single-podcast-top .art-single-top__start-col {
    position: relative;
    width: 50%; }
    @media only screen and (max-width: 991px) {
      .art-single-podcast-post .art-single-podcast-top .art-single-top__start-col {
        width: 100%;
        min-height: 500px; } }
    .art-single-podcast-post .art-single-podcast-top .art-single-top__start-col .art-blog-top-image {
      height: 100%;
      background-size: cover;
      background-position: center center; }
  .art-single-podcast-post .art-single-podcast-top .art-single-top__end-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 80%; }
    @media only screen and (max-width: 991px) {
      .art-single-podcast-post .art-single-podcast-top .art-single-top__end-col {
        width: 100%; } }
    .art-single-podcast-post .art-single-podcast-top .art-single-top__end-col .art-single-top__end-col-data {
      padding: 30px 113px;
      width: 100%; }
      @media only screen and (max-width: 1199px) {
        .art-single-podcast-post .art-single-podcast-top .art-single-top__end-col .art-single-top__end-col-data {
          padding-left: 50px;
          padding-right: 50px; } }
      @media only screen and (max-width: 540px) {
        .art-single-podcast-post .art-single-podcast-top .art-single-top__end-col .art-single-top__end-col-data {
          padding-left: 20px;
          padding-right: 20px; } }
  .art-single-podcast-post .art-single-podcast-top .art-post-cat-date {
    font-family: var(--art-body-three-font-family);
    font-weight: var(--art-body-three-font-weight);
    font-style: var(--art-body-three-font-style);
    text-transform: var(--art-body-three-text-transform);
    -webkit-text-decoration: var(--art-body-three-text-decoration);
            text-decoration: var(--art-body-three-text-decoration);
    font-size: var(--art-body-three-font-size);
    line-height: var(--art-body-three-line-height);
    letter-spacing: var(--art-body-three-letter-spacing);
    margin-bottom: 12px; }
    .art-single-podcast-post .art-single-podcast-top .art-post-cat-date .art-post-date svg {
      position: relative;
      left: -7px;
      bottom: 1px; }
  .art-single-podcast-post .art-single-podcast-top .art-post-title {
    margin: 0; }
  .art-single-podcast-post .art-single-podcast-top .art-post-author {
    margin-top: 30px; }
    .art-single-podcast-post .art-single-podcast-top .art-post-author a {
      color: var(--art-colors-heading); }
      .art-single-podcast-post .art-single-podcast-top .art-post-author a:hover {
        color: var(--art-colors-link); }
  .art-single-podcast-post .art-single-podcast-top .art-podcast-top-buttons {
    margin-top: 30px;
    margin-bottom: -10px; }
    .art-single-podcast-post .art-single-podcast-top .art-podcast-top-buttons a {
      margin: 10px 7px; }

.art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper {
  position: relative;
  padding-top: 229px; }
  @media only screen and (max-width: 767px) {
    .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper {
      padding-top: 130px; } }
  .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player {
    max-width: 1140px;
    width: 100%;
    position: absolute;
    top: -141px;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    left: 50%; }
    @media only screen and (max-width: 991px) {
      .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player {
        top: -96px; } }
    .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .subscribe-icons span,
    .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .share-icon span,
    .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player-btn__volume,
    .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player-btn__rwd,
    .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player-btn__fwd {
      background-color: var(--art-colors-bg); }
    .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player {
      height: auto; }
      .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player .player__main {
        background-color: var(--art-colors-fourth-bg);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player .player__main .player__artwork {
          height: 100%;
          min-width: 282px;
          padding: 66px;
          background-color: var(--art-colors-bg); }
          @media only screen and (max-width: 768px) {
            .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player .player__main .player__artwork {
              min-width: 150px;
              padding: 0; } }
          @media only screen and (max-width: 480px) {
            .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player .player__main .player__artwork {
              display: none; } }
          .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player .player__main .player__artwork img {
            height: 100%;
            width: 306px; }
            @media only screen and (max-width: 768px) {
              .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player .player__main .player__artwork img {
                width: 100%;
                margin: 0; } }
        .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player .player__main .player__body {
          padding: 50px;
          width: 100%; }
          @media only screen and (max-width: 900px) {
            .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player .player__main .player__body {
              padding: 38px 20px 38px 20px; } }
          @media only screen and (max-width: 768px) {
            .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player .player__main .player__body {
              padding: 0; } }
          .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player .player__main .player__body .currently-playing {
            margin-bottom: 40px; }
            @media only screen and (max-width: 768px) {
              .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player .player__main .player__body .currently-playing {
                display: none; } }
            .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player .player__main .player__body .currently-playing .show.player__podcast-title {
              font-family: var(--art-body-three-font-family);
              font-weight: var(--art-body-three-font-weight);
              font-style: var(--art-body-three-font-style);
              text-transform: var(--art-body-three-text-transform);
              -webkit-text-decoration: var(--art-body-three-text-decoration);
                      text-decoration: var(--art-body-three-text-decoration);
              font-size: var(--art-body-three-font-size);
              line-height: var(--art-body-three-line-height);
              letter-spacing: var(--art-body-three-letter-spacing);
              color: var(--art-colors-bg);
              opacity: 1; }
              @media only screen and (max-width: 767px) {
                .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player .player__main .player__body .currently-playing .show.player__podcast-title {
                  font-family: var(--art-body-three-mobile-font-family);
                  font-weight: var(--art-body-three-mobile-font-weight);
                  font-style: var(--art-body-three-mobile-font-style);
                  text-transform: var(--art-body-three-mobile-text-transform);
                  -webkit-text-decoration: var(--art-body-three-mobile-text-decoration);
                          text-decoration: var(--art-body-three-mobile-text-decoration);
                  font-size: var(--art-body-three-mobile-font-size);
                  line-height: var(--art-body-three-mobile-line-height);
                  letter-spacing: var(--art-body-three-mobile-letter-spacing); } }
              .art-second-color-scheme .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player .player__main .player__body .currently-playing .show.player__podcast-title {
                color: var(--art-bg-bg); }
            .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player .player__main .player__body .currently-playing .episode-title.player__episode-title {
              font-family: var(--art-h5-font-family);
              font-weight: var(--art-h5-font-weight);
              font-style: var(--art-h5-font-style);
              text-transform: var(--art-h5-text-transform);
              -webkit-text-decoration: var(--art-h5-text-decoration);
                      text-decoration: var(--art-h5-text-decoration);
              font-size: var(--art-h5-font-size);
              line-height: var(--art-h5-line-height);
              letter-spacing: var(--art-h5-letter-spacing);
              color: var(--art-colors-heading); }
              @media only screen and (max-width: 767px) {
                .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player .player__main .player__body .currently-playing .episode-title.player__episode-title {
                  font-family: var(--art-h5-mobile-font-family);
                  font-weight: var(--art-h5-mobile-font-weight);
                  font-style: var(--art-h5-mobile-font-style);
                  text-transform: var(--art-h5-mobile-text-transform);
                  -webkit-text-decoration: var(--art-h5-mobile-text-decoration);
                          text-decoration: var(--art-h5-mobile-text-decoration);
                  font-size: var(--art-h5-mobile-font-size);
                  line-height: var(--art-h5-mobile-line-height);
                  letter-spacing: var(--art-h5-mobile-letter-spacing); } }
              .art-second-color-scheme .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player .player__main .player__body .currently-playing .episode-title.player__episode-title {
                color: var(--art-bg-heading); }
          .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player .player__main .player__body .play-progress {
            grid-template-columns: 74px 1fr; }
            @media only screen and (max-width: 768px) {
              .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player .player__main .player__body .play-progress {
                grid-template-columns: 1fr;
                gap: 0 0;
                margin-left: 10px; } }
            .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player .player__main .player__body .play-progress .play-pause-controls {
              width: 74px;
              height: 74px;
              background-color: var(--art-colors-bg); }
              @media only screen and (max-width: 768px) {
                .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player .player__main .player__body .play-progress .play-pause-controls {
                  margin-top: 8px; } }
              .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player .player__main .player__body .play-progress .play-pause-controls .play-btn {
                background: url(images/player/play-btn.svg);
                background-repeat: no-repeat;
                background-position: 32px 26px;
                -webkit-mask-position: 29px 25px !important;
                        mask-position: 29px 25px !important;
                background-color: #fff;
                width: 74px;
                height: 74px; }
              .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player .player__main .player__body .play-progress .play-pause-controls .pause-btn {
                background-color: transparent;
                background: url(images/player/ic-pause.svg);
                background-repeat: no-repeat;
                background-position: 33px 30px;
                width: 74px;
                height: 74px; }
              .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player .player__main .player__body .play-progress .play-pause-controls .ssp-loader {
                display: none; }
            .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player .player__main .player__body .play-progress .ssp-progress {
              height: 2px;
              background-color: #fff;
              margin-top: 35px; }
              @media only screen and (max-width: 768px) {
                .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player .player__main .player__body .play-progress .ssp-progress {
                  margin-top: 13px; } }
              .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player .player__main .player__body .play-progress .ssp-progress .progress__filled {
                background-color: var(--art-colors-bg); }
            .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player .player__main .player__body .play-progress .ssp-playback .playback__controls button {
              opacity: 1; }
            .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player .player__main .player__body .play-progress .ssp-playback .playback__controls .player-btn__volume {
              -webkit-mask-image: url(images/player/play_on.svg);
                      mask-image: url(images/player/play_on.svg); }
              @media only screen and (max-width: 900px) {
                .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player .player__main .player__body .play-progress .ssp-playback .playback__controls .player-btn__volume {
                  padding: 13px 20px 13px 40px; } }
              .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player .player__main .player__body .play-progress .ssp-playback .playback__controls .player-btn__volume.off {
                -webkit-mask-image: url(images/player/sound-off.svg);
                        mask-image: url(images/player/sound-off.svg);
                background-color: var(--art-colors-bg) !important; }
            .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player .player__main .player__body .play-progress .ssp-playback .playback__controls .player-btn__rwd {
              -webkit-mask-image: url(images/player/arrow_left.svg);
                      mask-image: url(images/player/arrow_left.svg);
              padding: 13px 15px; }
            .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player .player__main .player__body .play-progress .ssp-playback .playback__controls .player-btn__speed {
              width: auto;
              margin-right: 12px;
              border: 1px solid #4b4659 !important; }
            .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player .player__main .player__body .play-progress .ssp-playback .playback__controls .player-btn__fwd {
              -webkit-mask-image: url(images/player/arrow_right.svg);
                      mask-image: url(images/player/arrow_right.svg); }
            .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player .player__main .player__body .play-progress .ssp-playback .playback__timers {
              opacity: 1 !important;
              line-height: 26.28px; }
              .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player .player__main .player__body .play-progress .ssp-playback .playback__timers time, .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player .player__main .player__body .play-progress .ssp-playback .playback__timers span {
                font-family: var(--art-body-five-font-family);
                font-weight: var(--art-body-five-font-weight);
                font-style: var(--art-body-five-font-style);
                text-transform: var(--art-body-five-text-transform);
                -webkit-text-decoration: var(--art-body-five-text-decoration);
                        text-decoration: var(--art-body-five-text-decoration);
                font-size: var(--art-body-five-font-size);
                line-height: var(--art-body-five-line-height);
                letter-spacing: var(--art-body-five-letter-spacing);
                opacity: 1 !important;
                color: #000; }
          .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .castos-player.light-mode .player .player__main .player__body .player-panels-nav {
            display: none; }
    .art-single-podcast-post .art-post-content-wrapper.art-podcast-content-wrapper .art-post-the-content .podcast_player .podcast_meta {
      display: none; }

/* learn_press */
.learn-press-breadcrumb, #learn-press-course .course-meta {
  display: none; }

.single-event-content-wrapper .course-summary-sidebar,
.lp-archive-courses .course-summary .course-summary-content .course-detail-info {
  display: none; }

#learn-press-course {
  margin-bottom: 40px; }

body.single-lp_course .origin-price {
  text-decoration: line-through;
  margin-right: 8px; }

body.single-lp_course .course-tab-panel .lp-course-author .author-description {
  color: var(--art-colors-text);
  font-family: var(--art-body-font-family);
  font-weight: var(--art-body-font-weight);
  font-style: var(--art-body-font-style);
  text-transform: var(--art-body-text-transform);
  -webkit-text-decoration: var(--art-body-text-decoration);
          text-decoration: var(--art-body-text-decoration);
  font-size: var(--art-body-font-size);
  line-height: var(--art-body-line-height);
  letter-spacing: var(--art-body-letter-spacing); }
  @media only screen and (max-width: 767px) {
    body.single-lp_course .course-tab-panel .lp-course-author .author-description {
      font-family: var(--art-body-mobile-font-family);
      font-weight: var(--art-body-mobile-font-weight);
      font-style: var(--art-body-mobile-font-style);
      text-transform: var(--art-body-mobile-text-transform);
      -webkit-text-decoration: var(--art-body-mobile-text-decoration);
              text-decoration: var(--art-body-mobile-text-decoration);
      font-size: var(--art-body-mobile-font-size);
      line-height: var(--art-body-mobile-line-height);
      letter-spacing: var(--art-body-mobile-letter-spacing); } }

body.single-lp_course .lp-entry-content.lp-content-area .course-tab-panel .course-description {
  color: var(--art-colors-text);
  font-family: var(--art-body-font-family);
  font-weight: var(--art-body-font-weight);
  font-style: var(--art-body-font-style);
  text-transform: var(--art-body-text-transform);
  -webkit-text-decoration: var(--art-body-text-decoration);
          text-decoration: var(--art-body-text-decoration);
  font-size: var(--art-body-font-size);
  line-height: var(--art-body-line-height);
  letter-spacing: var(--art-body-letter-spacing); }
  @media only screen and (max-width: 767px) {
    body.single-lp_course .lp-entry-content.lp-content-area .course-tab-panel .course-description {
      font-family: var(--art-body-mobile-font-family);
      font-weight: var(--art-body-mobile-font-weight);
      font-style: var(--art-body-mobile-font-style);
      text-transform: var(--art-body-mobile-text-transform);
      -webkit-text-decoration: var(--art-body-mobile-text-decoration);
              text-decoration: var(--art-body-mobile-text-decoration);
      font-size: var(--art-body-mobile-font-size);
      line-height: var(--art-body-mobile-line-height);
      letter-spacing: var(--art-body-mobile-letter-spacing); } }

body.single-lp_course .comment-respond .comment-form input[type=text],
body.single-lp_course .comment-respond .comment-form input[type=email],
body.single-lp_course .comment-respond .comment-form input[type=url] {
  margin-bottom: 0; }

body.single-lp_course .comment-respond .comment-form > div.art-line-fields {
  padding: 0;
  margin: 0; }
  body.single-lp_course .comment-respond .comment-form > div.art-line-fields p {
    margin: 0 0 1.5rem; }

.learnpress-checkout #checkout-order .col-number {
  min-width: 100px; }

@media only screen and (max-width: 991px) {
  #learn-press-course .lp-content-area {
    padding-right: 0;
    padding-left: 0; } }

/* Header */
#art-single-course-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 81px; }
  #art-single-course-header .art-course-header-left {
    width: 50%;
    background-size: cover;
    background-position: center center; }
    @media only screen and (max-width: 991px) {
      #art-single-course-header .art-course-header-left {
        width: 100%;
        min-height: 500px; } }
  #art-single-course-header .art-course-header-right {
    width: 50%;
    padding: 91px 0 91px 81px;
    background-color: var(--art-colors-second-bg); }
    @media only screen and (max-width: 1199px) {
      #art-single-course-header .art-course-header-right {
        padding: 91px 15px 91px 50px; } }
    @media only screen and (max-width: 991px) {
      #art-single-course-header .art-course-header-right {
        width: 100%;
        padding: 30px 50px 30px 50px; } }
    #art-single-course-header .art-course-header-right .course-header-right-content {
      max-width: 600px; }
      @media only screen and (max-width: 991px) {
        #art-single-course-header .art-course-header-right .course-header-right-content {
          max-width: unset; } }
      #art-single-course-header .art-course-header-right .course-header-right-content h1 {
        margin-bottom: 40px; }
      #art-single-course-header .art-course-header-right .course-header-right-content .art-course-header-meta {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        margin-bottom: 40px; }
        #art-single-course-header .art-course-header-right .course-header-right-content .art-course-header-meta .meta-item {
          margin-right: 20px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex; }
          #art-single-course-header .art-course-header-right .course-header-right-content .art-course-header-meta .meta-item i {
            margin-right: 6px; }

/* Author */
.art-single-learn-press-instructor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  @media only screen and (max-width: 991px) {
    .art-single-learn-press-instructor {
      padding-left: 0;
      padding-right: 0; } }
  .art-single-learn-press-instructor .meta-item-instructor {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media only screen and (max-width: 575px) {
      .art-single-learn-press-instructor .meta-item-instructor {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start; } }
    .art-single-learn-press-instructor .meta-item-instructor .meta-item__image {
      width: 68px;
      margin: 0 20px 0 0; }
      @media only screen and (max-width: 575px) {
        .art-single-learn-press-instructor .meta-item-instructor .meta-item__image {
          margin: 0 20px 20px 0; } }
      .art-single-learn-press-instructor .meta-item-instructor .meta-item__image img {
        border-radius: 100%; }
    .art-single-learn-press-instructor .meta-item-instructor .meta-item__value {
      padding: 0 45px 0 0;
      margin: 0 40px 0 0;
      position: relative; }
      .art-single-learn-press-instructor .meta-item-instructor .meta-item__value:after {
        content: '';
        width: 2px;
        height: 100%;
        background-color: var(--art-colors-fourth-bg);
        position: absolute;
        top: 0;
        right: 0; }
      .art-single-learn-press-instructor .meta-item-instructor .meta-item__value .art-meta-item {
        font-family: var(--art-body-three-font-family);
        font-weight: var(--art-body-three-font-weight);
        font-style: var(--art-body-three-font-style);
        text-transform: var(--art-body-three-text-transform);
        -webkit-text-decoration: var(--art-body-three-text-decoration);
                text-decoration: var(--art-body-three-text-decoration);
        font-size: var(--art-body-three-font-size);
        line-height: var(--art-body-three-line-height);
        letter-spacing: var(--art-body-three-letter-spacing);
        display: block;
        margin-bottom: 4px; }
        @media only screen and (max-width: 767px) {
          .art-single-learn-press-instructor .meta-item-instructor .meta-item__value .art-meta-item {
            font-family: var(--art-body-three-mobile-font-family);
            font-weight: var(--art-body-three-mobile-font-weight);
            font-style: var(--art-body-three-mobile-font-style);
            text-transform: var(--art-body-three-mobile-text-transform);
            -webkit-text-decoration: var(--art-body-three-mobile-text-decoration);
                    text-decoration: var(--art-body-three-mobile-text-decoration);
            font-size: var(--art-body-three-mobile-font-size);
            line-height: var(--art-body-three-mobile-line-height);
            letter-spacing: var(--art-body-three-mobile-letter-spacing); } }
      .art-single-learn-press-instructor .meta-item-instructor .meta-item__value .art-instructor-name {
        font-family: var(--art-h6-font-family);
        font-weight: var(--art-h6-font-weight);
        font-style: var(--art-h6-font-style);
        text-transform: var(--art-h6-text-transform);
        -webkit-text-decoration: var(--art-h6-text-decoration);
                text-decoration: var(--art-h6-text-decoration);
        font-size: var(--art-h6-font-size);
        line-height: var(--art-h6-line-height);
        letter-spacing: var(--art-h6-letter-spacing); }
        @media only screen and (max-width: 767px) {
          .art-single-learn-press-instructor .meta-item-instructor .meta-item__value .art-instructor-name {
            font-family: var(--art-h6-mobile-font-family);
            font-weight: var(--art-h6-mobile-font-weight);
            font-style: var(--art-h6-mobile-font-style);
            text-transform: var(--art-h6-mobile-text-transform);
            -webkit-text-decoration: var(--art-h6-mobile-text-decoration);
                    text-decoration: var(--art-h6-mobile-text-decoration);
            font-size: var(--art-h6-mobile-font-size);
            line-height: var(--art-h6-mobile-line-height);
            letter-spacing: var(--art-h6-mobile-letter-spacing); } }
  .art-single-learn-press-instructor .meta-item-categories {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media only screen and (max-width: 575px) {
      .art-single-learn-press-instructor .meta-item-categories {
        -webkit-box-align: self-end;
            -ms-flex-align: self-end;
                align-items: self-end; } }
    .art-single-learn-press-instructor .meta-item-categories .meta-item__value label {
      font-family: var(--art-body-three-font-family);
      font-weight: var(--art-body-three-font-weight);
      font-style: var(--art-body-three-font-style);
      text-transform: var(--art-body-three-text-transform);
      -webkit-text-decoration: var(--art-body-three-text-decoration);
              text-decoration: var(--art-body-three-text-decoration);
      font-size: var(--art-body-three-font-size);
      line-height: var(--art-body-three-line-height);
      letter-spacing: var(--art-body-three-letter-spacing);
      display: block;
      margin-bottom: 4px; }
      @media only screen and (max-width: 767px) {
        .art-single-learn-press-instructor .meta-item-categories .meta-item__value label {
          font-family: var(--art-body-three-mobile-font-family);
          font-weight: var(--art-body-three-mobile-font-weight);
          font-style: var(--art-body-three-mobile-font-style);
          text-transform: var(--art-body-three-mobile-text-transform);
          -webkit-text-decoration: var(--art-body-three-mobile-text-decoration);
                  text-decoration: var(--art-body-three-mobile-text-decoration);
          font-size: var(--art-body-three-mobile-font-size);
          line-height: var(--art-body-three-mobile-line-height);
          letter-spacing: var(--art-body-three-mobile-letter-spacing); } }
    .art-single-learn-press-instructor .meta-item-categories .meta-item__value .art-item-categories-themselves {
      font-family: var(--art-h6-font-family);
      font-weight: var(--art-h6-font-weight);
      font-style: var(--art-h6-font-style);
      text-transform: var(--art-h6-text-transform);
      -webkit-text-decoration: var(--art-h6-text-decoration);
              text-decoration: var(--art-h6-text-decoration);
      font-size: var(--art-h6-font-size);
      line-height: var(--art-h6-line-height);
      letter-spacing: var(--art-h6-letter-spacing); }
      @media only screen and (max-width: 767px) {
        .art-single-learn-press-instructor .meta-item-categories .meta-item__value .art-item-categories-themselves {
          font-family: var(--art-h6-mobile-font-family);
          font-weight: var(--art-h6-mobile-font-weight);
          font-style: var(--art-h6-mobile-font-style);
          text-transform: var(--art-h6-mobile-text-transform);
          -webkit-text-decoration: var(--art-h6-mobile-text-decoration);
                  text-decoration: var(--art-h6-mobile-text-decoration);
          font-size: var(--art-h6-mobile-font-size);
          line-height: var(--art-h6-mobile-line-height);
          letter-spacing: var(--art-h6-mobile-letter-spacing); } }

/* Article */
article.single-event-content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* Content */
  /* Sidebar */ }
  article.single-event-content-wrapper .single-event-content {
    width: 68.42%; }
    @media only screen and (max-width: 991px) {
      article.single-event-content-wrapper .single-event-content {
        width: 100%;
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2; } }
    article.single-event-content-wrapper .single-event-content .single-event-content-inner #learn-press-course ul.learn-press-nav-tabs .course-nav.active:before {
      background: transparent !important;
      position: static;
      top: unset;
      left: unset;
      width: unset;
      height: unset; }
    article.single-event-content-wrapper .single-event-content .single-event-content-inner #learn-press-course ul.learn-press-nav-tabs .course-nav.active label {
      color: #000 !important;
      position: relative; }
      article.single-event-content-wrapper .single-event-content .single-event-content-inner #learn-press-course ul.learn-press-nav-tabs .course-nav.active label:after {
        content: '';
        height: 2px;
        background-color: var(--art-colors-bg);
        width: 100%;
        position: absolute;
        left: 0;
        bottom: 0; }
    article.single-event-content-wrapper .single-event-content .single-event-content-inner #learn-press-course .lp-entry-content .entry-content-left {
      width: 100%; }
      article.single-event-content-wrapper .single-event-content .single-event-content-inner #learn-press-course .lp-entry-content .entry-content-left .course-tabs {
        margin-bottom: 40px; }
    article.single-event-content-wrapper .single-event-content .single-event-footer .footer-tag-title {
      margin-top: 40px; }
    article.single-event-content-wrapper .single-event-content .single-event-footer .tags-wrapper {
      margin-top: 30px; }
  article.single-event-content-wrapper .single-event-window-wrapper {
    width: 31.57%; }
    @media only screen and (max-width: 991px) {
      article.single-event-content-wrapper .single-event-window-wrapper {
        width: 100%;
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
        margin-bottom: 50px; } }
    article.single-event-content-wrapper .single-event-window-wrapper .single-event-window .window-body {
      background-color: var(--art-colors-second-bg); }
      article.single-event-content-wrapper .single-event-window-wrapper .single-event-window .window-body .art-course-single-sidebar {
        padding: 40px; }
        @media only screen and (max-width: 420px) {
          article.single-event-content-wrapper .single-event-window-wrapper .single-event-window .window-body .art-course-single-sidebar {
            padding: 20px; } }
        article.single-event-content-wrapper .single-event-window-wrapper .single-event-window .window-body .art-course-single-sidebar .art-single-sidebar-title {
          margin-bottom: 30px; }
        article.single-event-content-wrapper .single-event-window-wrapper .single-event-window .window-body .art-course-single-sidebar > .meta-item {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
          margin-bottom: 20px; }
          article.single-event-content-wrapper .single-event-window-wrapper .single-event-window .window-body .art-course-single-sidebar > .meta-item:last-child {
            margin-bottom: 0; }
          article.single-event-content-wrapper .single-event-window-wrapper .single-event-window .window-body .art-course-single-sidebar > .meta-item .course-price {
            margin-bottom: 0; }
          article.single-event-content-wrapper .single-event-window-wrapper .single-event-window .window-body .art-course-single-sidebar > .meta-item > span i {
            margin-right: 6px; }
      article.single-event-content-wrapper .single-event-window-wrapper .single-event-window .window-body .art-course-enroll-button form {
        display: block; }
        article.single-event-content-wrapper .single-event-window-wrapper .single-event-window .window-body .art-course-enroll-button form button {
          width: 100%; }

#learn-press-course-tabs .learn-press-nav-tabs {
  background-color: transparent;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  @media only screen and (max-width: 767px) {
    #learn-press-course-tabs .learn-press-nav-tabs {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }
  #learn-press-course-tabs .learn-press-nav-tabs .course-nav {
    border: none;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    margin-right: 30px;
    margin-bottom: 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    #learn-press-course-tabs .learn-press-nav-tabs .course-nav label {
      padding: 6px 0;
      margin: 0 10px;
      font-family: var(--art-body-three-font-family);
      font-weight: var(--art-body-three-font-weight);
      font-style: var(--art-body-three-font-style);
      text-transform: var(--art-body-three-text-transform);
      -webkit-text-decoration: var(--art-body-three-text-decoration);
              text-decoration: var(--art-body-three-text-decoration);
      font-size: var(--art-body-three-font-size);
      line-height: var(--art-body-three-line-height);
      letter-spacing: var(--art-body-three-letter-spacing); }
      @media only screen and (max-width: 767px) {
        #learn-press-course-tabs .learn-press-nav-tabs .course-nav label {
          font-family: var(--art-body-three-mobile-font-family);
          font-weight: var(--art-body-three-mobile-font-weight);
          font-style: var(--art-body-three-mobile-font-style);
          text-transform: var(--art-body-three-mobile-text-transform);
          -webkit-text-decoration: var(--art-body-three-mobile-text-decoration);
                  text-decoration: var(--art-body-three-mobile-text-decoration);
          font-size: var(--art-body-three-mobile-font-size);
          line-height: var(--art-body-three-mobile-line-height);
          letter-spacing: var(--art-body-three-mobile-letter-spacing); } }
    #learn-press-course-tabs .learn-press-nav-tabs .course-nav.course-nav-tab-overview::before {
      content: '\e81e' !important;
      font-family: magnetique; }
    #learn-press-course-tabs .learn-press-nav-tabs .course-nav.course-nav-tab-curriculum::before {
      content: '\e81d' !important;
      font-family: magnetique; }
    #learn-press-course-tabs .learn-press-nav-tabs .course-nav.course-nav-tab-instructor::before {
      content: '\e820' !important;
      font-family: magnetique; }
    #learn-press-course-tabs .learn-press-nav-tabs .course-nav.course-nav-tab-faqs::before {
      content: '\e81f' !important;
      font-family: magnetique; }
    @media only screen and (max-width: 400px) {
      #learn-press-course-tabs .learn-press-nav-tabs .course-nav {
        width: 100%;
        margin-right: 0; } }

#learn-press-course-tabs .course-tab-panels #tab-instructor .course-author .lp-course-author {
  display: block; }
  #learn-press-course-tabs .course-tab-panels #tab-instructor .course-author .lp-course-author .course-author__pull-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px; }
    #learn-press-course-tabs .course-tab-panels #tab-instructor .course-author .lp-course-author .course-author__pull-left .avatar {
      margin: 0 20px 0 0;
      width: 68px;
      height: 68px; }
    #learn-press-course-tabs .course-tab-panels #tab-instructor .course-author .lp-course-author .course-author__pull-left .author-title {
      margin: 0; }

.art-recent-events-section {
  padding: 100px 0; }
  .art-recent-events-section .related-courses-title {
    text-align: center;
    margin-bottom: 60px; }

#popup-course #sidebar-toggle::before {
  border: none !important;
  -webkit-transform: translate(-25%, -21%) !important;
          transform: translate(-25%, -21%) !important; }

.course-tab-panels .course-tab-panel {
  padding-top: 0 !important; }

.course-tab-panels {
  padding-top: 27px; }
  .course-tab-panels #learn-press-course-curriculum.course-curriculum .section.closed .section-content {
    overflow: inherit;
    height: auto; }
  .course-tab-panels #learn-press-course-curriculum.course-curriculum .curriculum-sections {
    z-index: 9; }
  .course-tab-panels #learn-press-course-curriculum.course-curriculum .section .section-header {
    border-bottom: 0; }
    .course-tab-panels #learn-press-course-curriculum.course-curriculum .section .section-header .section-left .section-title {
      font-family: var(--art-h4-font-family);
      font-weight: var(--art-h4-font-weight);
      font-style: var(--art-h4-font-style);
      text-transform: var(--art-h4-text-transform);
      -webkit-text-decoration: var(--art-h4-text-decoration);
              text-decoration: var(--art-h4-text-decoration);
      font-size: var(--art-h4-font-size);
      line-height: var(--art-h4-line-height);
      letter-spacing: var(--art-h4-letter-spacing);
      color: #000; }
      @media only screen and (max-width: 767px) {
        .course-tab-panels #learn-press-course-curriculum.course-curriculum .section .section-header .section-left .section-title {
          font-family: var(--art-h4-mobile-font-family);
          font-weight: var(--art-h4-mobile-font-weight);
          font-style: var(--art-h4-mobile-font-style);
          text-transform: var(--art-h4-mobile-text-transform);
          -webkit-text-decoration: var(--art-h4-mobile-text-decoration);
                  text-decoration: var(--art-h4-mobile-text-decoration);
          font-size: var(--art-h4-mobile-font-size);
          line-height: var(--art-h4-mobile-line-height);
          letter-spacing: var(--art-h4-mobile-letter-spacing); } }
    .course-tab-panels #learn-press-course-curriculum.course-curriculum .section .section-header .section-left .section-toggle {
      display: none; }
  .course-tab-panels #learn-press-course-curriculum.course-curriculum .section .section-content {
    margin-bottom: 30px; }
    .course-tab-panels #learn-press-course-curriculum.course-curriculum .section .section-content .course-item.course-item-lp_lesson {
      background-color: var(--art-colors-second-bg);
      margin-bottom: 10px;
      padding: 0 14px; }
      .course-tab-panels #learn-press-course-curriculum.course-curriculum .section .section-content .course-item.course-item-lp_lesson:hover .section-item-link .item-name {
        color: var(--art-colors-hover); }
      .course-tab-panels #learn-press-course-curriculum.course-curriculum .section .section-content .course-item.course-item-lp_lesson .section-item-link {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; }
        .course-tab-panels #learn-press-course-curriculum.course-curriculum .section .section-content .course-item.course-item-lp_lesson .section-item-link:before {
          font-family: magnetique;
          content: '\e813';
          color: #000; }
        .course-tab-panels #learn-press-course-curriculum.course-curriculum .section .section-content .course-item.course-item-lp_lesson .section-item-link .item-name {
          font-family: var(--art-body-font-family);
          font-weight: var(--art-body-font-weight);
          font-style: var(--art-body-font-style);
          text-transform: var(--art-body-text-transform);
          -webkit-text-decoration: var(--art-body-text-decoration);
                  text-decoration: var(--art-body-text-decoration);
          font-size: var(--art-body-font-size);
          line-height: var(--art-body-line-height);
          letter-spacing: var(--art-body-letter-spacing);
          padding: 14px 10px; }
          @media only screen and (max-width: 767px) {
            .course-tab-panels #learn-press-course-curriculum.course-curriculum .section .section-content .course-item.course-item-lp_lesson .section-item-link .item-name {
              font-family: var(--art-body-mobile-font-family);
              font-weight: var(--art-body-mobile-font-weight);
              font-style: var(--art-body-mobile-font-style);
              text-transform: var(--art-body-mobile-text-transform);
              -webkit-text-decoration: var(--art-body-mobile-text-decoration);
                      text-decoration: var(--art-body-mobile-text-decoration);
              font-size: var(--art-body-mobile-font-size);
              line-height: var(--art-body-mobile-line-height);
              letter-spacing: var(--art-body-mobile-letter-spacing); } }
        .course-tab-panels #learn-press-course-curriculum.course-curriculum .section .section-content .course-item.course-item-lp_lesson .section-item-link .course-item-meta {
          -webkit-box-flex: 2;
              -ms-flex-positive: 2;
                  flex-grow: 2; }
          .course-tab-panels #learn-press-course-curriculum.course-curriculum .section .section-content .course-item.course-item-lp_lesson .section-item-link .course-item-meta .item-meta.duration {
            font-family: var(--art-body-four-font-family);
            font-weight: var(--art-body-four-font-weight);
            font-style: var(--art-body-four-font-style);
            text-transform: var(--art-body-four-text-transform);
            -webkit-text-decoration: var(--art-body-four-text-decoration);
                    text-decoration: var(--art-body-four-text-decoration);
            font-size: var(--art-body-four-font-size);
            line-height: var(--art-body-four-line-height);
            letter-spacing: var(--art-body-four-letter-spacing);
            color: var(--art-colors-bg);
            background-color: var(--art-colors-fourth-bg);
            border-radius: unset;
            height: unset;
            padding: 3px 14px 1px 14px; }
            @media only screen and (max-width: 767px) {
              .course-tab-panels #learn-press-course-curriculum.course-curriculum .section .section-content .course-item.course-item-lp_lesson .section-item-link .course-item-meta .item-meta.duration {
                font-family: var(--art-body-four-mobile-font-family);
                font-weight: var(--art-body-four-mobile-font-weight);
                font-style: var(--art-body-four-mobile-font-style);
                text-transform: var(--art-body-four-mobile-text-transform);
                -webkit-text-decoration: var(--art-body-four-mobile-text-decoration);
                        text-decoration: var(--art-body-four-mobile-text-decoration);
                font-size: var(--art-body-four-mobile-font-size);
                line-height: var(--art-body-four-mobile-line-height);
                letter-spacing: var(--art-body-four-mobile-letter-spacing); } }
          .course-tab-panels #learn-press-course-curriculum.course-curriculum .section .section-content .course-item.course-item-lp_lesson .section-item-link .course-item-meta .item-meta.course-item-preview {
            font-family: var(--art-body-four-font-family);
            font-weight: var(--art-body-four-font-weight);
            font-style: var(--art-body-four-font-style);
            text-transform: var(--art-body-four-text-transform);
            -webkit-text-decoration: var(--art-body-four-text-decoration);
                    text-decoration: var(--art-body-four-text-decoration);
            font-size: var(--art-body-four-font-size);
            line-height: var(--art-body-four-line-height);
            letter-spacing: var(--art-body-four-letter-spacing);
            color: var(--art-colors-light-text);
            background-color: var(--art-colors-bg);
            border-radius: unset;
            margin-left: 6px;
            height: unset;
            padding: 3px 14px 1px 14px; }
            @media only screen and (max-width: 767px) {
              .course-tab-panels #learn-press-course-curriculum.course-curriculum .section .section-content .course-item.course-item-lp_lesson .section-item-link .course-item-meta .item-meta.course-item-preview {
                font-family: var(--art-body-four-mobile-font-family);
                font-weight: var(--art-body-four-mobile-font-weight);
                font-style: var(--art-body-four-mobile-font-style);
                text-transform: var(--art-body-four-mobile-text-transform);
                -webkit-text-decoration: var(--art-body-four-mobile-text-decoration);
                        text-decoration: var(--art-body-four-mobile-text-decoration);
                font-size: var(--art-body-four-mobile-font-size);
                line-height: var(--art-body-four-mobile-line-height);
                letter-spacing: var(--art-body-four-mobile-letter-spacing); } }
            .course-tab-panels #learn-press-course-curriculum.course-curriculum .section .section-content .course-item.course-item-lp_lesson .section-item-link .course-item-meta .item-meta.course-item-preview:before {
              background: unset; }
          .course-tab-panels #learn-press-course-curriculum.course-curriculum .section .section-content .course-item.course-item-lp_lesson .section-item-link .course-item-meta .item-meta.course-item-status:before {
            font-family: magnetique;
            content: '\e815';
            font-size: 20px;
            color: #000; }

.course-tab-panels #tab-faqs.course-tab-panel-faqs {
  padding-top: 0; }
  .course-tab-panels #tab-faqs.course-tab-panel-faqs input[type=checkbox] {
    display: none !important; }
  .course-tab-panels #tab-faqs.course-tab-panel-faqs .course-faqs-box {
    border-radius: unset;
    background-color: unset;
    border: 2px solid #000; }
    .course-tab-panels #tab-faqs.course-tab-panel-faqs .course-faqs-box:hover {
      background-color: unset; }
    .course-tab-panels #tab-faqs.course-tab-panel-faqs .course-faqs-box__title {
      font-family: var(--art-body-two-font-family);
      font-weight: var(--art-body-two-font-weight);
      font-style: var(--art-body-two-font-style);
      text-transform: var(--art-body-two-text-transform);
      -webkit-text-decoration: var(--art-body-two-text-decoration);
              text-decoration: var(--art-body-two-text-decoration);
      font-size: var(--art-body-two-font-size);
      line-height: var(--art-body-two-line-height);
      letter-spacing: var(--art-body-two-letter-spacing);
      padding: 12px 45px 12px 25px;
      color: #000; }
      @media only screen and (max-width: 767px) {
        .course-tab-panels #tab-faqs.course-tab-panel-faqs .course-faqs-box__title {
          font-family: var(--art-body-two-mobile-font-family);
          font-weight: var(--art-body-two-mobile-font-weight);
          font-style: var(--art-body-two-mobile-font-style);
          text-transform: var(--art-body-two-mobile-text-transform);
          -webkit-text-decoration: var(--art-body-two-mobile-text-decoration);
                  text-decoration: var(--art-body-two-mobile-text-decoration);
          font-size: var(--art-body-two-mobile-font-size);
          line-height: var(--art-body-two-mobile-line-height);
          letter-spacing: var(--art-body-two-mobile-letter-spacing); } }
      .course-tab-panels #tab-faqs.course-tab-panel-faqs .course-faqs-box__title:hover {
        color: inherit; }
    .course-tab-panels #tab-faqs.course-tab-panel-faqs .course-faqs-box__content {
      font-family: var(--art-body-two-font-family);
      font-weight: var(--art-body-two-font-weight);
      font-style: var(--art-body-two-font-style);
      text-transform: var(--art-body-two-text-transform);
      -webkit-text-decoration: var(--art-body-two-text-decoration);
              text-decoration: var(--art-body-two-text-decoration);
      font-size: var(--art-body-two-font-size);
      line-height: var(--art-body-two-line-height);
      letter-spacing: var(--art-body-two-letter-spacing); }
      @media only screen and (max-width: 767px) {
        .course-tab-panels #tab-faqs.course-tab-panel-faqs .course-faqs-box__content {
          font-family: var(--art-body-two-mobile-font-family);
          font-weight: var(--art-body-two-mobile-font-weight);
          font-style: var(--art-body-two-mobile-font-style);
          text-transform: var(--art-body-two-mobile-text-transform);
          -webkit-text-decoration: var(--art-body-two-mobile-text-decoration);
                  text-decoration: var(--art-body-two-mobile-text-decoration);
          font-size: var(--art-body-two-mobile-font-size);
          line-height: var(--art-body-two-mobile-line-height);
          letter-spacing: var(--art-body-two-mobile-letter-spacing); } }
      .course-tab-panels #tab-faqs.course-tab-panel-faqs .course-faqs-box__content .course-faqs-box__content-inner {
        padding: 4px 25px 25px 25px; }

body.learnpress-profile.logged-in .art-learn-press-profile-headline {
  background-color: var(--art-colors-second-bg); }
  .art-second-color-scheme body.learnpress-profile.logged-in .art-learn-press-profile-headline {
    background-color: var(--art-bg-second-bg); }
  body.learnpress-profile.logged-in .art-learn-press-profile-headline .lp-content-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 80px 15px; }
    @media only screen and (max-width: 767px) {
      body.learnpress-profile.logged-in .art-learn-press-profile-headline .lp-content-area {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
    body.learnpress-profile.logged-in .art-learn-press-profile-headline .lp-content-area .lp-profile-left {
      margin-right: 40px; }
      @media only screen and (max-width: 767px) {
        body.learnpress-profile.logged-in .art-learn-press-profile-headline .lp-content-area .lp-profile-left {
          margin-bottom: 30px; } }
      body.learnpress-profile.logged-in .art-learn-press-profile-headline .lp-content-area .lp-profile-left img {
        width: 163px;
        min-width: 163px;
        border-radius: 100%; }
    body.learnpress-profile.logged-in .art-learn-press-profile-headline .lp-content-area .lp-profile-right .lp-profile-username {
      font-family: var(--art-h1-font-family);
      font-weight: var(--art-h1-font-weight);
      font-style: var(--art-h1-font-style);
      text-transform: var(--art-h1-text-transform);
      -webkit-text-decoration: var(--art-h1-text-decoration);
              text-decoration: var(--art-h1-text-decoration);
      font-size: var(--art-h1-font-size);
      line-height: var(--art-h1-line-height);
      letter-spacing: var(--art-h1-letter-spacing);
      margin-bottom: 20px; }
      @media only screen and (max-width: 767px) {
        body.learnpress-profile.logged-in .art-learn-press-profile-headline .lp-content-area .lp-profile-right .lp-profile-username {
          font-family: var(--art-h1-mobile-font-family);
          font-weight: var(--art-h1-mobile-font-weight);
          font-style: var(--art-h1-mobile-font-style);
          text-transform: var(--art-h1-mobile-text-transform);
          -webkit-text-decoration: var(--art-h1-mobile-text-decoration);
                  text-decoration: var(--art-h1-mobile-text-decoration);
          font-size: var(--art-h1-mobile-font-size);
          line-height: var(--art-h1-mobile-line-height);
          letter-spacing: var(--art-h1-mobile-letter-spacing); } }

body.learnpress-profile.logged-in .art-page {
  background-color: unset; }

body.learnpress-profile .art-page {
  background-color: var(--art-colors-second-bg); }
  .art-second-color-scheme body.learnpress-profile .art-page {
    background-color: var(--art-bg-second-bg); }

body.learnpress-profile .learnpress .lp-user-profile.guest {
  background-color: var(--art-colors-second-bg); }
  .art-second-color-scheme body.learnpress-profile .learnpress .lp-user-profile.guest {
    background-color: var(--art-bg-second-bg); }

body.learnpress-profile .learn-press-form-login,
body.learnpress-profile .learn-press-form-register {
  max-width: 490px;
  padding: 0;
  border: unset;
  border-radius: unset;
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important; }
  body.learnpress-profile .learn-press-form-login button[type=submit],
  body.learnpress-profile .learn-press-form-register button[type=submit] {
    height: unset; }

body.learnpress-profile .learn-press-form-register {
  max-width: 750px; }

body.learnpress-profile #learn-press-profile .learn-press-form-login.learn-press-form {
  text-align: center; }
  body.learnpress-profile #learn-press-profile .learn-press-form-login.learn-press-form .art-form-title {
    margin-bottom: 60px; }
  body.learnpress-profile #learn-press-profile .learn-press-form-login.learn-press-form ul.form-fields li {
    margin: 0 0 30px 0; }
  body.learnpress-profile #learn-press-profile .learn-press-form-login.learn-press-form .art-remember-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-family: var(--art-body-two-font-family);
    font-weight: var(--art-body-two-font-weight);
    font-style: var(--art-body-two-font-style);
    text-transform: var(--art-body-two-text-transform);
    -webkit-text-decoration: var(--art-body-two-text-decoration);
            text-decoration: var(--art-body-two-text-decoration);
    font-size: var(--art-body-two-font-size);
    line-height: var(--art-body-two-line-height);
    letter-spacing: var(--art-body-two-letter-spacing);
    margin-bottom: 30px; }
    @media only screen and (max-width: 767px) {
      body.learnpress-profile #learn-press-profile .learn-press-form-login.learn-press-form .art-remember-block {
        font-family: var(--art-body-two-mobile-font-family);
        font-weight: var(--art-body-two-mobile-font-weight);
        font-style: var(--art-body-two-mobile-font-style);
        text-transform: var(--art-body-two-mobile-text-transform);
        -webkit-text-decoration: var(--art-body-two-mobile-text-decoration);
                text-decoration: var(--art-body-two-mobile-text-decoration);
        font-size: var(--art-body-two-mobile-font-size);
        line-height: var(--art-body-two-mobile-line-height);
        letter-spacing: var(--art-body-two-mobile-letter-spacing); } }
    body.learnpress-profile #learn-press-profile .learn-press-form-login.learn-press-form .art-remember-block p {
      margin: 0; }
    body.learnpress-profile #learn-press-profile .learn-press-form-login.learn-press-form .art-remember-block label {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin: 0; }
      body.learnpress-profile #learn-press-profile .learn-press-form-login.learn-press-form .art-remember-block label input[type=checkbox] {
        margin-right: 10px; }
  body.learnpress-profile #learn-press-profile .learn-press-form-login.learn-press-form .learn-press-form-bottom {
    margin-top: 50px; }
    body.learnpress-profile #learn-press-profile .learn-press-form-login.learn-press-form .learn-press-form-bottom p {
      font-family: var(--art-body-two-font-family);
      font-weight: var(--art-body-two-font-weight);
      font-style: var(--art-body-two-font-style);
      text-transform: var(--art-body-two-text-transform);
      -webkit-text-decoration: var(--art-body-two-text-decoration);
              text-decoration: var(--art-body-two-text-decoration);
      font-size: var(--art-body-two-font-size);
      line-height: var(--art-body-two-line-height);
      letter-spacing: var(--art-body-two-letter-spacing);
      margin-bottom: 20px; }
      @media only screen and (max-width: 767px) {
        body.learnpress-profile #learn-press-profile .learn-press-form-login.learn-press-form .learn-press-form-bottom p {
          font-family: var(--art-body-two-mobile-font-family);
          font-weight: var(--art-body-two-mobile-font-weight);
          font-style: var(--art-body-two-mobile-font-style);
          text-transform: var(--art-body-two-mobile-text-transform);
          -webkit-text-decoration: var(--art-body-two-mobile-text-decoration);
                  text-decoration: var(--art-body-two-mobile-text-decoration);
          font-size: var(--art-body-two-mobile-font-size);
          line-height: var(--art-body-two-mobile-line-height);
          letter-spacing: var(--art-body-two-mobile-letter-spacing); } }
    body.learnpress-profile #learn-press-profile .learn-press-form-login.learn-press-form .learn-press-form-bottom a {
      font-family: var(--art-body-three-font-family);
      font-weight: var(--art-body-three-font-weight);
      font-style: var(--art-body-three-font-style);
      text-transform: var(--art-body-three-text-transform);
      -webkit-text-decoration: var(--art-body-three-text-decoration);
              text-decoration: var(--art-body-three-text-decoration);
      font-size: var(--art-body-three-font-size);
      line-height: var(--art-body-three-line-height);
      letter-spacing: var(--art-body-three-letter-spacing);
      position: relative; }
      @media only screen and (max-width: 767px) {
        body.learnpress-profile #learn-press-profile .learn-press-form-login.learn-press-form .learn-press-form-bottom a {
          font-family: var(--art-body-three-mobile-font-family);
          font-weight: var(--art-body-three-mobile-font-weight);
          font-style: var(--art-body-three-mobile-font-style);
          text-transform: var(--art-body-three-mobile-text-transform);
          -webkit-text-decoration: var(--art-body-three-mobile-text-decoration);
                  text-decoration: var(--art-body-three-mobile-text-decoration);
          font-size: var(--art-body-three-mobile-font-size);
          line-height: var(--art-body-three-mobile-line-height);
          letter-spacing: var(--art-body-three-mobile-letter-spacing); } }
      body.learnpress-profile #learn-press-profile .learn-press-form-login.learn-press-form .learn-press-form-bottom a:after {
        content: '';
        height: 2px;
        background-color: var(--art-colors-bg);
        width: 100%;
        position: absolute;
        left: 0;
        bottom: -12px; }

body.learnpress-profile #learn-press-profile .learn-press-form-register.learn-press-form {
  display: none;
  text-align: center; }
  body.learnpress-profile #learn-press-profile .learn-press-form-register.learn-press-form .art-form-title {
    margin-bottom: 39px; }
  body.learnpress-profile #learn-press-profile .learn-press-form-register.learn-press-form ul.form-fields {
    margin: 0 -15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    body.learnpress-profile #learn-press-profile .learn-press-form-register.learn-press-form ul.form-fields li {
      width: 50%;
      padding: 0 15px;
      margin-bottom: 30px; }
  body.learnpress-profile #learn-press-profile .learn-press-form-register.learn-press-form .learn-press-form-bottom {
    margin-top: 50px; }
    body.learnpress-profile #learn-press-profile .learn-press-form-register.learn-press-form .learn-press-form-bottom p {
      font-family: var(--art-body-two-font-family);
      font-weight: var(--art-body-two-font-weight);
      font-style: var(--art-body-two-font-style);
      text-transform: var(--art-body-two-text-transform);
      -webkit-text-decoration: var(--art-body-two-text-decoration);
              text-decoration: var(--art-body-two-text-decoration);
      font-size: var(--art-body-two-font-size);
      line-height: var(--art-body-two-line-height);
      letter-spacing: var(--art-body-two-letter-spacing);
      margin-bottom: 20px; }
      @media only screen and (max-width: 767px) {
        body.learnpress-profile #learn-press-profile .learn-press-form-register.learn-press-form .learn-press-form-bottom p {
          font-family: var(--art-body-two-mobile-font-family);
          font-weight: var(--art-body-two-mobile-font-weight);
          font-style: var(--art-body-two-mobile-font-style);
          text-transform: var(--art-body-two-mobile-text-transform);
          -webkit-text-decoration: var(--art-body-two-mobile-text-decoration);
                  text-decoration: var(--art-body-two-mobile-text-decoration);
          font-size: var(--art-body-two-mobile-font-size);
          line-height: var(--art-body-two-mobile-line-height);
          letter-spacing: var(--art-body-two-mobile-letter-spacing); } }
    body.learnpress-profile #learn-press-profile .learn-press-form-register.learn-press-form .learn-press-form-bottom a {
      font-family: var(--art-body-three-font-family);
      font-weight: var(--art-body-three-font-weight);
      font-style: var(--art-body-three-font-style);
      text-transform: var(--art-body-three-text-transform);
      -webkit-text-decoration: var(--art-body-three-text-decoration);
              text-decoration: var(--art-body-three-text-decoration);
      font-size: var(--art-body-three-font-size);
      line-height: var(--art-body-three-line-height);
      letter-spacing: var(--art-body-three-letter-spacing);
      position: relative; }
      @media only screen and (max-width: 767px) {
        body.learnpress-profile #learn-press-profile .learn-press-form-register.learn-press-form .learn-press-form-bottom a {
          font-family: var(--art-body-three-mobile-font-family);
          font-weight: var(--art-body-three-mobile-font-weight);
          font-style: var(--art-body-three-mobile-font-style);
          text-transform: var(--art-body-three-mobile-text-transform);
          -webkit-text-decoration: var(--art-body-three-mobile-text-decoration);
                  text-decoration: var(--art-body-three-mobile-text-decoration);
          font-size: var(--art-body-three-mobile-font-size);
          line-height: var(--art-body-three-mobile-line-height);
          letter-spacing: var(--art-body-three-mobile-letter-spacing); } }
      body.learnpress-profile #learn-press-profile .learn-press-form-register.learn-press-form .learn-press-form-bottom a:after {
        content: '';
        height: 2px;
        background-color: var(--art-colors-bg);
        width: 100%;
        position: absolute;
        left: 0;
        bottom: -12px; }

body.learnpress-profile .lp-user-profile #profile-sidebar {
  margin-top: 0; }

body.learnpress-profile .lp-user-profile .lp-profile-content {
  padding-top: 0; }

.learn-press-comments form.comment-form {
  margin: 0 -15px; }
  .learn-press-comments form.comment-form:after {
    content: '.';
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
    overflow: hidden; }
  .learn-press-comments form.comment-form .art-line-fields {
    margin: 0 -15px; }
    .learn-press-comments form.comment-form .art-line-fields p {
      padding: 0 15px;
      margin-bottom: 15px; }

/* 404 */
.art-404-page {
  padding-top: 223px !important;
  padding-bottom: 140px; }
  @media only screen and (max-width: 1240px) {
    .art-404-page {
      padding-top: 133px;
      padding-bottom: 50px; } }
  .art-404-page .art-404-data {
    text-align: center; }
    .art-404-page .art-404-data .art-404-title {
      margin-bottom: 40px; }

/* Career */
/* Event */
.art-event-posts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse; }

.art-single-top.art-single-event-top .art-event-date {
  color: var(--art-colors-second-text);
  display: block;
  margin-bottom: 13px;
  position: relative; }
  .art-single-top.art-single-event-top .art-event-date:before {
    font-size: 24px;
    line-height: 1em;
    margin-right: 11px;
    vertical-align: middle;
    position: relative;
    top: -3px; }

.art-single-top.art-single-event-top .art-post-title + span {
  margin-top: 30px; }

.art-single-top.art-single-event-top .art-event-description,
.art-single-top.art-single-event-top .art-event-location {
  display: block; }

.art-single-top.art-single-event-top .art-single-event-top-button-wrap {
  margin-top: 40px; }

.art-event-archive {
  padding-bottom: 110px; }

.art-event-post {
  background-color: var(--art-colors-second-bg);
  margin-bottom: 50px;
  position: relative; }
  @media only screen and (min-width: 768px) {
    .art-event-post {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }
  .art-event-post:first-child {
    margin-bottom: 0; }
  .art-event-post .art-post-image {
    max-width: 340px; }
    @media only screen and (max-width: 767px) {
      .art-event-post .art-post-image {
        max-width: 100%; } }
    @media only screen and (min-width: 768px) {
      .art-event-post .art-post-image {
        width: 48.68%;
        -ms-flex-negative: 0;
            flex-shrink: 0; } }
    .art-event-post .art-post-image img {
      width: 100%; }
  .art-event-post__outer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    padding: 40px 40px 40px 40px;
    position: relative; }
    @media only screen and (max-width: 767px) {
      .art-event-post__outer {
        padding: 20px 20px 20px 20px; } }
  .art-event-post .art-post-cat-date {
    margin-bottom: 8px;
    font-family: var(--art-body-three-font-family);
    font-weight: var(--art-body-three-font-weight);
    font-style: var(--art-body-three-font-style);
    text-transform: var(--art-body-three-text-transform);
    -webkit-text-decoration: var(--art-body-three-text-decoration);
            text-decoration: var(--art-body-three-text-decoration);
    font-size: var(--art-body-three-font-size);
    line-height: var(--art-body-three-line-height);
    letter-spacing: var(--art-body-three-letter-spacing); }
    @media only screen and (max-width: 767px) {
      .art-event-post .art-post-cat-date {
        font-family: var(--art-body-three-mobile-font-family);
        font-weight: var(--art-body-three-mobile-font-weight);
        font-style: var(--art-body-three-mobile-font-style);
        text-transform: var(--art-body-three-mobile-text-transform);
        -webkit-text-decoration: var(--art-body-three-mobile-text-decoration);
                text-decoration: var(--art-body-three-mobile-text-decoration);
        font-size: var(--art-body-three-mobile-font-size);
        line-height: var(--art-body-three-mobile-line-height);
        letter-spacing: var(--art-body-three-mobile-letter-spacing); } }
  .art-event-post .art-post-title {
    margin: 0 0 16px 0; }
  .art-event-post .art-post-read-more {
    margin-top: 40px; }

/* Zoom Meeting */
.art-single-top.art-single-event-top .art-single-top__end-col .art-single-top__end-col-data .art-post-title {
  margin-bottom: 40px; }

.art-single-top.art-single-event-top .art-single-top__end-col .art-single-top__end-col-data .art-post-meta .art-card-duration {
  margin-right: 20px; }
  .art-single-top.art-single-event-top .art-single-top__end-col .art-single-top__end-col-data .art-post-meta .art-card-duration i {
    margin-right: 7px; }

.art-single-top.art-single-event-top .art-single-top__end-col .art-single-top__end-col-data .art-post-meta .art-meeting-date i {
  margin-right: 6px; }

.art-single-top.art-single-event-top .art-single-top__end-col .art-single-top__end-col-data .art-post-button {
  margin-top: 40px; }

.art-zoom-meetings-related-posts {
  margin-top: 100px; }
  .art-zoom-meetings-related-posts .art-posts-list .art-post-item {
    margin-bottom: 30px; }

/* Podcast */
.art-podcast-post {
  margin-bottom: 30px; }
  .art-podcast-post .art-post-image {
    margin-bottom: 20px; }
  .art-podcast-post__outer .art-podcast-post__inner .art-post-cat-date {
    font-family: var(--art-body-three-font-family);
    font-weight: var(--art-body-three-font-weight);
    font-style: var(--art-body-three-font-style);
    text-transform: var(--art-body-three-text-transform);
    -webkit-text-decoration: var(--art-body-three-text-decoration);
            text-decoration: var(--art-body-three-text-decoration);
    font-size: var(--art-body-three-font-size);
    line-height: var(--art-body-three-line-height);
    letter-spacing: var(--art-body-three-letter-spacing); }
    @media only screen and (max-width: 767px) {
      .art-podcast-post__outer .art-podcast-post__inner .art-post-cat-date {
        font-family: var(--art-body-three-mobile-font-family);
        font-weight: var(--art-body-three-mobile-font-weight);
        font-style: var(--art-body-three-mobile-font-style);
        text-transform: var(--art-body-three-mobile-text-transform);
        -webkit-text-decoration: var(--art-body-three-mobile-text-decoration);
                text-decoration: var(--art-body-three-mobile-text-decoration);
        font-size: var(--art-body-three-mobile-font-size);
        line-height: var(--art-body-three-mobile-line-height);
        letter-spacing: var(--art-body-three-mobile-letter-spacing); } }
    .art-podcast-post__outer .art-podcast-post__inner .art-post-cat-date .art-post-date svg {
      margin-right: 6px;
      position: relative;
      bottom: 2px; }
  .art-podcast-post__outer .art-podcast-post__inner .art-post-title {
    margin-top: 10px;
    margin-bottom: 0; }

/* Case */
/* Cards Hover */
/* Events cards hover */
/* Product cards hover */
li.product:hover .art-product-image img {
  -webkit-transform: scale(1.06);
          transform: scale(1.06); }

li.product:hover .woocommerce-loop-product__title {
  color: var(--art-colors-bg); }
  .art-second-color-scheme li.product:hover .woocommerce-loop-product__title {
    color: var(--art-bg-bg); }

li.product .art-product-image {
  overflow: hidden;
  display: block; }
  li.product .art-product-image img {
    -webkit-transition: all 0.6s ease 0s;
    transition: all 0.6s ease 0s;
    -webkit-transform: scale(1.01);
            transform: scale(1.01);
    width: 100%;
    display: block;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden; }

/* Podcast cards hover */
/* Blog cards hover */
.art-podcast-post:hover .art-post-image a img,
.art-blog-post:hover .art-post-image a img {
  -webkit-transform: scale(1.06);
          transform: scale(1.06); }

.art-podcast-post:hover .art-post-title a,
.art-blog-post:hover .art-post-title a {
  color: var(--art-colors-bg); }
  .art-second-color-scheme .art-podcast-post:hover .art-post-title a, .art-second-color-scheme
  .art-blog-post:hover .art-post-title a {
    color: var(--art-bg-bg); }

.art-podcast-post .art-post-image,
.art-blog-post .art-post-image {
  overflow: hidden;
  display: block; }
  .art-podcast-post .art-post-image a,
  .art-blog-post .art-post-image a {
    display: block; }
    .art-podcast-post .art-post-image a img,
    .art-blog-post .art-post-image a img {
      -webkit-transition: all 0.6s ease 0s;
      transition: all 0.6s ease 0s;
      -webkit-transform: scale(1.01);
              transform: scale(1.01);
      width: 100%;
      display: block;
      -webkit-backface-visibility: hidden;
              backface-visibility: hidden; }

/* Zoom Meetings cards hover */
/* Courses cards hover */
.art-zoom-meeting-item:hover .art-card-img a img,
.art-course-item:hover .art-card-img a img {
  -webkit-transform: scale(1.06);
          transform: scale(1.06); }

.art-zoom-meeting-item:hover .art-card-title a,
.art-course-item:hover .art-card-title a {
  color: var(--art-colors-bg); }
  .art-second-color-scheme .art-zoom-meeting-item:hover .art-card-title a, .art-second-color-scheme
  .art-course-item:hover .art-card-title a {
    color: var(--art-bg-bg); }

.art-zoom-meeting-item .art-card-img,
.art-course-item .art-card-img {
  overflow: hidden;
  display: block; }
  .art-zoom-meeting-item .art-card-img a,
  .art-course-item .art-card-img a {
    display: block; }
    .art-zoom-meeting-item .art-card-img a img,
    .art-course-item .art-card-img a img {
      -webkit-transition: all 0.6s ease 0s;
      transition: all 0.6s ease 0s;
      -webkit-transform: scale(1.01);
              transform: scale(1.01);
      width: 100%;
      display: block;
      -webkit-backface-visibility: hidden;
              backface-visibility: hidden; }

/* common related */
.art-related-post:hover .art-post-image a img {
  -webkit-transform: scale(1.06);
          transform: scale(1.06); }

.art-related-post:hover .art-post-title a {
  color: var(--art-colors-bg); }
  .art-second-color-scheme .art-related-post:hover .art-post-title a {
    color: var(--art-bg-bg); }

.art-related-post .art-post-image {
  overflow: hidden;
  display: block; }
  .art-related-post .art-post-image a {
    display: block; }
    .art-related-post .art-post-image a img {
      -webkit-transition: all 0.6s ease 0s;
      transition: all 0.6s ease 0s;
      -webkit-transform: scale(1.01);
              transform: scale(1.01);
      width: 100%;
      display: block;
      -webkit-backface-visibility: hidden;
              backface-visibility: hidden; }

/* Search Results */
.art-search-blog .art-overlay {
  display: none;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  background-color: var(--art-colors-second-bg); }
  .art-second-color-scheme .art-search-blog .art-overlay {
    background-color: var(--art-bg-second-bg); }
  .art-search-blog .art-overlay .art-search-blog-logo {
    position: absolute;
    top: 43px;
    left: 52px; }
    @media only screen and (max-width: 767px) {
      .art-search-blog .art-overlay .art-search-blog-logo {
        left: 10px; } }
  .art-search-blog .art-overlay .art-overlay-close {
    color: var(--art-colors-link);
    font-size: 32px;
    width: 1em;
    height: 1em;
    position: absolute;
    top: 38px;
    right: 50px;
    cursor: pointer;
    -webkit-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out; }
    @media only screen and (max-width: 767px) {
      .art-search-blog .art-overlay .art-overlay-close {
        right: 10px; } }
    .art-search-blog .art-overlay .art-overlay-close:hover {
      color: var(--art-colors-hover); }
    .art-search-blog .art-overlay .art-overlay-close i::before {
      font-size: 42px; }
  .art-search-blog .art-overlay .art-overlay-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%; }
    .art-search-blog .art-overlay .art-overlay-wrapper form {
      padding: 0 15px;
      max-width: 780px;
      width: 100%; }
      .art-search-blog .art-overlay .art-overlay-wrapper form .art-blog-search-input {
        background-color: transparent;
        font-family: var(--art-body-font-family);
        font-weight: var(--art-body-font-weight);
        font-style: var(--art-body-font-style);
        text-transform: var(--art-body-text-transform);
        -webkit-text-decoration: var(--art-body-text-decoration);
                text-decoration: var(--art-body-text-decoration);
        font-size: var(--art-body-font-size);
        line-height: var(--art-body-line-height);
        letter-spacing: var(--art-body-letter-spacing);
        border: 0;
        border-bottom-width: 2px;
        border-bottom-style: solid;
        border-color: var(--art-colors-bd);
        height: 46px;
        padding: 0; }
        @media only screen and (max-width: 767px) {
          .art-search-blog .art-overlay .art-overlay-wrapper form .art-blog-search-input {
            font-family: var(--art-body-mobile-font-family);
            font-weight: var(--art-body-mobile-font-weight);
            font-style: var(--art-body-mobile-font-style);
            text-transform: var(--art-body-mobile-text-transform);
            -webkit-text-decoration: var(--art-body-mobile-text-decoration);
                    text-decoration: var(--art-body-mobile-text-decoration);
            font-size: var(--art-body-mobile-font-size);
            line-height: var(--art-body-mobile-line-height);
            letter-spacing: var(--art-body-mobile-letter-spacing); } }

body.search-no-results .art-blog-search-result {
  padding: 267px 0; }

body.search-results .art-blog-search-result {
  padding: 51px 0 0 0; }

body.search-no-results,
body.search-results {
  /*.art-header-one.art-dark-header-text {
    .art-header-one-content {
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
  }*/ }
  body.search-no-results .art-blog-typical .art-blog-default-top,
  body.search-no-results .art-blog-default-wrapper .art-blog-default-top,
  body.search-results .art-blog-typical .art-blog-default-top,
  body.search-results .art-blog-default-wrapper .art-blog-default-top {
    padding: 0;
    text-align: center;
    margin-bottom: 50px; }
    body.search-no-results .art-blog-typical .art-blog-default-top .art-search-result-title,
    body.search-no-results .art-blog-default-wrapper .art-blog-default-top .art-search-result-title,
    body.search-results .art-blog-typical .art-blog-default-top .art-search-result-title,
    body.search-results .art-blog-default-wrapper .art-blog-default-top .art-search-result-title {
      margin-bottom: 20px; }
  body.search-no-results .art-blog-typical .art-search-again-wrapper,
  body.search-no-results .art-blog-default-wrapper .art-search-again-wrapper,
  body.search-results .art-blog-typical .art-search-again-wrapper,
  body.search-results .art-blog-default-wrapper .art-search-again-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }

/* WooCommerce */
.woocommerce #art-main-holder #respond input#submit,
.woocommerce #art-main-holder a.button,
.woocommerce #art-main-holder button.button,
.woocommerce #art-main-holder input.button {
  font-family: var(--art-button-font-family);
  font-weight: var(--art-button-font-weight);
  font-style: var(--art-button-font-style);
  text-transform: var(--art-button-text-transform);
  -webkit-text-decoration: var(--art-button-text-decoration);
          text-decoration: var(--art-button-text-decoration);
  font-size: var(--art-button-font-size);
  line-height: var(--art-button-line-height);
  letter-spacing: var(--art-button-letter-spacing);
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  border-radius: 0;
  overflow: visible;
  word-break: normal;
  position: relative;
  z-index: 0;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  border-width: 2px;
  border-style: solid;
  padding: 13px 40px;
  border-color: var(--art-colors-bg);
  background-color: var(--art-colors-bg);
  color: var(--art-colors-light-text); }
  .art-second-color-scheme .woocommerce #art-main-holder #respond input#submit, .art-second-color-scheme
  .woocommerce #art-main-holder a.button, .art-second-color-scheme
  .woocommerce #art-main-holder button.button, .art-second-color-scheme
  .woocommerce #art-main-holder input.button {
    border-color: var(--art-bg-bg); }
  .art-second-color-scheme .woocommerce #art-main-holder #respond input#submit, .art-second-color-scheme
  .woocommerce #art-main-holder a.button, .art-second-color-scheme
  .woocommerce #art-main-holder button.button, .art-second-color-scheme
  .woocommerce #art-main-holder input.button {
    background-color: var(--art-bg-bg); }
  .art-second-color-scheme .woocommerce #art-main-holder #respond input#submit, .art-second-color-scheme
  .woocommerce #art-main-holder a.button, .art-second-color-scheme
  .woocommerce #art-main-holder button.button, .art-second-color-scheme
  .woocommerce #art-main-holder input.button {
    color: var(--art-bg-light-text); }
  .woocommerce #art-main-holder #respond input#submit:hover,
  .woocommerce #art-main-holder a.button:hover,
  .woocommerce #art-main-holder button.button:hover,
  .woocommerce #art-main-holder input.button:hover {
    border-color: var(--art-colors-bg-hover);
    background-color: var(--art-colors-bg-hover);
    color: var(--art-colors-light-text); }
    .art-second-color-scheme .woocommerce #art-main-holder #respond input#submit:hover, .art-second-color-scheme
    .woocommerce #art-main-holder a.button:hover, .art-second-color-scheme
    .woocommerce #art-main-holder button.button:hover, .art-second-color-scheme
    .woocommerce #art-main-holder input.button:hover {
      border-color: var(--art-bg-bg-hover); }
    .art-second-color-scheme .woocommerce #art-main-holder #respond input#submit:hover, .art-second-color-scheme
    .woocommerce #art-main-holder a.button:hover, .art-second-color-scheme
    .woocommerce #art-main-holder button.button:hover, .art-second-color-scheme
    .woocommerce #art-main-holder input.button:hover {
      background-color: var(--art-bg-bg-hover); }
    .art-second-color-scheme .woocommerce #art-main-holder #respond input#submit:hover, .art-second-color-scheme
    .woocommerce #art-main-holder a.button:hover, .art-second-color-scheme
    .woocommerce #art-main-holder button.button:hover, .art-second-color-scheme
    .woocommerce #art-main-holder input.button:hover {
      color: var(--art-bg-light-text); }
  .woocommerce #art-main-holder #respond input#submit.disabled, .woocommerce #art-main-holder #respond input#submit:disabled, .woocommerce #art-main-holder #respond input#submit:disabled[disabled],
  .woocommerce #art-main-holder a.button.disabled,
  .woocommerce #art-main-holder a.button:disabled,
  .woocommerce #art-main-holder a.button:disabled[disabled],
  .woocommerce #art-main-holder button.button.disabled,
  .woocommerce #art-main-holder button.button:disabled,
  .woocommerce #art-main-holder button.button:disabled[disabled],
  .woocommerce #art-main-holder input.button.disabled,
  .woocommerce #art-main-holder input.button:disabled,
  .woocommerce #art-main-holder input.button:disabled[disabled] {
    cursor: not-allowed; }

.woocommerce table {
  margin: 0; }

.woocommerce .star-rating {
  font-size: 16px;
  width: auto;
  display: inline-block; }
  .woocommerce .star-rating:before,
  .woocommerce .star-rating span:before {
    content: none; }
  .woocommerce .star-rating svg {
    display: block;
    width: 1em;
    height: 1em; }
  .woocommerce .star-rating path {
    stroke: var(--art-colors-heading); }
  .woocommerce .star-rating .art-star-rating-empty-icons,
  .woocommerce .star-rating .art-star-rating-fill-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .woocommerce .star-rating .art-star-rating-empty-icons span,
    .woocommerce .star-rating .art-star-rating-fill-icons span {
      float: none;
      position: static;
      padding: 0; }
      .woocommerce .star-rating .art-star-rating-empty-icons span + span,
      .woocommerce .star-rating .art-star-rating-fill-icons span + span {
        margin-left: 4px; }
  .woocommerce .star-rating .art-star-rating-empty-icons path {
    fill: var(--art-colors-bg); }
  .woocommerce .star-rating .art-star-rating-fill-icons {
    position: absolute;
    left: 0;
    top: 0; }
    .woocommerce .star-rating .art-star-rating-fill-icons path {
      fill: var(--art-colors-accent); }

.woocommerce .quantity {
  position: relative;
  display: inline-block; }
  .woocommerce .quantity input::-webkit-inner-spin-button,
  .woocommerce .quantity input::-webkit-outer-spin-button {
    -webkit-appearance: none; }
  .woocommerce .quantity input[type="number"] {
    -moz-appearance: textfield; }
  .woocommerce .quantity .input-text.qty {
    text-align: center;
    min-width: 100px;
    padding-left: 0;
    padding-right: 0; }
  .woocommerce .quantity .minus,
  .woocommerce .quantity .plus {
    top: 0;
    font-family: "denaro-font";
    font-size: 14px;
    line-height: 100%;
    color: var(--art-colors-heading);
    width: 32px;
    height: 100%;
    padding: 0;
    bottom: 0;
    position: absolute;
    cursor: pointer;
    border: none;
    background-color: transparent;
    -webkit-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out; }
    .woocommerce .quantity .minus:hover,
    .woocommerce .quantity .plus:hover {
      color: var(--art-colors-link); }
  .woocommerce .quantity .minus {
    text-align: right;
    left: 0;
    right: auto; }
  .woocommerce .quantity .plus {
    text-align: left;
    left: auto;
    right: 0; }

.woocommerce .woocommerce-error,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message {
  border: 0;
  padding: 24px 25px 22px 66px;
  line-height: 21px !important; }
  .woocommerce .woocommerce-error::before,
  .woocommerce .woocommerce-info::before,
  .woocommerce .woocommerce-message::before {
    font-family: "denaro-font";
    font-size: 24px;
    line-height: 1em;
    top: 23px;
    left: 24px; }
  .woocommerce .woocommerce-error a,
  .woocommerce .woocommerce-info a,
  .woocommerce .woocommerce-message a {
    color: var(--art-colors-heading); }
    .woocommerce .woocommerce-error a:hover,
    .woocommerce .woocommerce-info a:hover,
    .woocommerce .woocommerce-message a:hover {
      color: var(--art-colors-link); }
  .woocommerce .woocommerce-error .button,
  .woocommerce .woocommerce-info .button,
  .woocommerce .woocommerce-message .button {
    margin: -18px 0 -16px; }
  .woocommerce .woocommerce-error li,
  .woocommerce .woocommerce-info li,
  .woocommerce .woocommerce-message li {
    margin-top: 0; }

.woocommerce .woocommerce-error {
  background-color: #FFE9E0; }
  .woocommerce .woocommerce-error::before {
    content: '\c001'; }

.woocommerce .woocommerce-info {
  background-color: #EAF0FF; }
  .woocommerce .woocommerce-info::before {
    content: '\c023'; }

.woocommerce .woocommerce-message {
  background-color: #E9F8EF; }
  .woocommerce .woocommerce-message::before {
    content: '\c012'; }

.woocommerce ul#shipping_method {
  list-style: none;
  margin: 0;
  padding: 0; }
  .woocommerce ul#shipping_method li {
    line-height: inherit;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .woocommerce ul#shipping_method li + li {
      margin-top: 10px; }
    .woocommerce ul#shipping_method li input {
      margin: 0 10px 0 0; }
    .woocommerce ul#shipping_method li label {
      padding: 0;
      margin: 0;
      cursor: pointer; }
  .woocommerce ul#shipping_method .amount {
    font-weight: inherit; }

.s-header__basket-wr a.art-open-cart-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .s-header__basket-wr a.art-open-cart-side img {
    width: 24px; }
  .s-header__basket-wr a.art-open-cart-side .art-basket-counter {
    font-family: var(--art-body-three-font-family);
    font-weight: var(--art-body-three-font-weight);
    font-style: var(--art-body-three-font-style);
    text-transform: var(--art-body-three-text-transform);
    -webkit-text-decoration: var(--art-body-three-text-decoration);
            text-decoration: var(--art-body-three-text-decoration);
    font-size: var(--art-body-three-font-size);
    line-height: var(--art-body-three-line-height);
    letter-spacing: var(--art-body-three-letter-spacing);
    color: var(--art-colors-bg);
    margin-left: 3px;
    padding: 3px 5px;
    border-radius: 100px; }
    @media only screen and (max-width: 767px) {
      .s-header__basket-wr a.art-open-cart-side .art-basket-counter {
        font-family: var(--art-body-three-mobile-font-family);
        font-weight: var(--art-body-three-mobile-font-weight);
        font-style: var(--art-body-three-mobile-font-style);
        text-transform: var(--art-body-three-mobile-text-transform);
        -webkit-text-decoration: var(--art-body-three-mobile-text-decoration);
                text-decoration: var(--art-body-three-mobile-text-decoration);
        font-size: var(--art-body-three-mobile-font-size);
        line-height: var(--art-body-three-mobile-line-height);
        letter-spacing: var(--art-body-three-mobile-letter-spacing); } }

.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  border-width: 2px;
  border-style: solid;
  border-color: var(--art-colors-bd);
  margin: 30px 0 2em;
  border-radius: 0; }

body.admin-bar .art-woo-side-cart {
  padding-top: 32px; }

.art-woo-side-cart {
  display: none;
  position: fixed;
  z-index: 99;
  right: 0;
  top: 0;
  padding-top: 0;
  width: 375px;
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
  height: 100vh; }
  .art-woo-side-cart .art-woo-side-cart-flex {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .art-woo-side-cart .art-cart-side-header {
    padding: 24px 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media only screen and (max-width: 540px) {
      .art-woo-side-cart .art-cart-side-header {
        padding-bottom: 50px; } }
    .art-woo-side-cart .art-cart-side-header .art-cart-side-left span + span {
      margin-left: 15px; }
    .art-woo-side-cart .art-cart-side-header i {
      color: var(--art-colors-heading);
      font-size: 16px;
      cursor: pointer;
      -webkit-transition: color .2s ease-in-out;
      transition: color .2s ease-in-out; }
      .art-woo-side-cart .art-cart-side-header i:hover {
        color: var(--art-colors-link); }
  .art-woo-side-cart .cart_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 15px 30px;
    position: relative; }
    .art-woo-side-cart .cart_item .product-thumbnail {
      width: 92px;
      margin-right: 24px; }
    .art-woo-side-cart .cart_item .product-data .product-name {
      margin-bottom: 8px;
      padding-right: 15px; }
      .art-woo-side-cart .cart_item .product-data .product-name a {
        color: var(--art-colors-heading); }
        .art-woo-side-cart .cart_item .product-data .product-name a:hover {
          color: var(--art-colors-link); }
      .art-woo-side-cart .cart_item .product-data .product-name dl {
        margin: 10px 0 0;
        color: var(--art-colors-second-text); }
      .art-woo-side-cart .cart_item .product-data .product-name dt {
        font-family: inherit;
        font-weight: inherit;
        font-style: inherit;
        text-transform: inherit;
        text-decoration: inherit;
        font-size: inherit;
        line-height: inherit;
        letter-spacing: inherit;
        display: inline-block;
        margin: 0; }
        @media only screen and (max-width: 768px) {
          .art-woo-side-cart .cart_item .product-data .product-name dt {
            float: none; } }
      .art-woo-side-cart .cart_item .product-data .product-name dd {
        display: inline-block;
        margin: 0; }
        @media only screen and (max-width: 768px) {
          .art-woo-side-cart .cart_item .product-data .product-name dd {
            display: inline-block; } }
    .art-woo-side-cart .cart_item .product-data .product-price {
      margin-bottom: 10px; }
    .art-woo-side-cart .cart_item .product-data .product-quantity {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .art-woo-side-cart .cart_item .product-data .product-quantity .art-quantity-title span:first-child {
        margin-right: 4px; }
    .art-woo-side-cart .cart_item .product-data .product-remove {
      position: absolute;
      top: 15px;
      right: 30px; }
      .art-woo-side-cart .cart_item .product-data .product-remove a {
        font-size: 16px;
        color: var(--art-colors-heading) !important;
        border-radius: 0;
        font-weight: normal; }
        .art-woo-side-cart .cart_item .product-data .product-remove a:hover {
          background: none;
          color: var(--art-colors-link) !important; }
  .art-woo-side-cart .cart-collaterals {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
    margin-top: 15px;
    padding: 30px; }
    @media only screen and (max-width: 540px) {
      .art-woo-side-cart .cart-collaterals {
        padding-bottom: 50px; } }
    .art-woo-side-cart .cart-collaterals .cart_totals {
      width: 100%;
      float: none; }
      .art-woo-side-cart .cart-collaterals .cart_totals .art-cart-totals-top {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        margin-bottom: 15px; }
        .art-woo-side-cart .cart-collaterals .cart_totals .art-cart-totals-top .art-side-cart-total-price strong {
          font-weight: inherit; }
      .art-woo-side-cart .cart-collaterals .cart_totals .art-cart-totals-bottom {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; }
        .art-woo-side-cart .cart-collaterals .cart_totals .art-cart-totals-bottom a {
          padding: 13px 33px;
          font-family: var(--art-body-three-font-family);
          font-weight: var(--art-body-three-font-weight);
          font-style: var(--art-body-three-font-style);
          text-transform: var(--art-body-three-text-transform);
          -webkit-text-decoration: var(--art-body-three-text-decoration);
                  text-decoration: var(--art-body-three-text-decoration);
          font-size: var(--art-body-three-font-size);
          line-height: var(--art-body-three-line-height);
          letter-spacing: var(--art-body-three-letter-spacing); }
          @media only screen and (max-width: 767px) {
            .art-woo-side-cart .cart-collaterals .cart_totals .art-cart-totals-bottom a {
              font-family: var(--art-body-three-mobile-font-family);
              font-weight: var(--art-body-three-mobile-font-weight);
              font-style: var(--art-body-three-mobile-font-style);
              text-transform: var(--art-body-three-mobile-text-transform);
              -webkit-text-decoration: var(--art-body-three-mobile-text-decoration);
                      text-decoration: var(--art-body-three-mobile-text-decoration);
              font-size: var(--art-body-three-mobile-font-size);
              line-height: var(--art-body-three-mobile-line-height);
              letter-spacing: var(--art-body-three-mobile-letter-spacing); } }
        @media only screen and (max-width: 540px) {
          .art-woo-side-cart .cart-collaterals .cart_totals .art-cart-totals-bottom {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column; }
            .art-woo-side-cart .cart-collaterals .cart_totals .art-cart-totals-bottom a:first-child {
              margin-bottom: 10px; } }
  .art-woo-side-cart .art-cart-side-empty {
    height: calc( 100% - 136px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .art-woo-side-cart .art-cart-side-empty .cart-side-empty-data {
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .art-woo-side-cart .art-cart-side-empty .cart-side-empty-data .art-cart-side-empty-title {
        margin-top: 16px; }

.art-cart-page-wrapper {
  padding-bottom: 80px; }
  .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart {
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 15px; }
    @media only screen and (max-width: 768px) {
      .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart tbody tr {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        text-align: center;
        padding: 0 0 25px; }
        .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart tbody tr:not(:last-child) {
          border-bottom: 1px solid rgba(0, 0, 0, 0.1);
          margin-bottom: 20px; } }
    .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart thead tr th {
      border-top: 1px solid rgba(0, 0, 0, 0.1);
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      border-left: 0;
      border-right: 0;
      background-color: transparent;
      padding: 14px 0;
      text-align: center; }
      .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart thead tr th.product-subtotal {
        text-align: right; }
    .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart tbody tr:first-child td {
      padding-top: 30px; }
      @media only screen and (max-width: 768px) {
        .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart tbody tr:first-child td {
          padding: 0; } }
    .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart tbody tr td {
      border: 0;
      background-color: transparent;
      padding: 15px 0; }
      @media only screen and (max-width: 768px) {
        .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart tbody tr td {
          text-align: center !important;
          padding: 0;
          -webkit-box-ordinal-group: 4;
              -ms-flex-order: 3;
                  order: 3;
          margin-top: 25px; }
          .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart tbody tr td::before {
            content: none; } }
      .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart tbody tr td.product-thumbnail {
        width: 92px; }
        .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart tbody tr td.product-thumbnail a img {
          width: 92px; }
        @media only screen and (max-width: 768px) {
          .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart tbody tr td.product-thumbnail {
            display: block; } }
      .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart tbody tr td.product-name {
        padding-left: 24px;
        padding-right: 63px;
        width: 274px; }
        .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart tbody tr td.product-name a {
          color: var(--art-colors-heading); }
          .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart tbody tr td.product-name a:hover {
            color: var(--art-colors-link); }
        @media only screen and (max-width: 1199px) {
          .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart tbody tr td.product-name {
            padding-right: 24px;
            width: 220px; } }
        @media only screen and (max-width: 768px) {
          .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart tbody tr td.product-name {
            padding: 0;
            width: 100%; } }
      .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart tbody tr td.product-price {
        font-family: var(--art-body-three-font-family);
        font-weight: var(--art-body-three-font-weight);
        font-style: var(--art-body-three-font-style);
        text-transform: var(--art-body-three-text-transform);
        -webkit-text-decoration: var(--art-body-three-text-decoration);
                text-decoration: var(--art-body-three-text-decoration);
        font-size: var(--art-body-three-font-size);
        line-height: var(--art-body-three-line-height);
        letter-spacing: var(--art-body-three-letter-spacing);
        text-align: center; }
        @media only screen and (max-width: 767px) {
          .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart tbody tr td.product-price {
            font-family: var(--art-body-three-mobile-font-family);
            font-weight: var(--art-body-three-mobile-font-weight);
            font-style: var(--art-body-three-mobile-font-style);
            text-transform: var(--art-body-three-mobile-text-transform);
            -webkit-text-decoration: var(--art-body-three-mobile-text-decoration);
                    text-decoration: var(--art-body-three-mobile-text-decoration);
            font-size: var(--art-body-three-mobile-font-size);
            line-height: var(--art-body-three-mobile-line-height);
            letter-spacing: var(--art-body-three-mobile-letter-spacing); } }
      .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart tbody tr td.product-quantity {
        text-align: center; }
      .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart tbody tr td.product-subtotal {
        text-align: right; }
      .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart tbody tr td.product-remove {
        text-align: right;
        padding-left: 0;
        padding-right: 0;
        width: 60px; }
        @media only screen and (max-width: 768px) {
          .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart tbody tr td.product-remove {
            text-align: center !important;
            width: 100%;
            -webkit-box-ordinal-group: 2;
                -ms-flex-order: 1;
                    order: 1; } }
        .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart tbody tr td.product-remove a.remove {
          font-size: 16px;
          color: var(--art-colors-heading) !important;
          display: inline-block; }
          .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart tbody tr td.product-remove a.remove:hover {
            color: var(--art-colors-link) !important;
            background-color: unset; }
      .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart tbody tr td.actions {
        padding: 30px 0 0 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1); }
        @media only screen and (max-width: 768px) {
          .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart tbody tr td.actions {
            border-top: none;
            padding: 15px; } }
        .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart tbody tr td.actions .coupon {
          width: 300px;
          position: relative; }
          @media only screen and (max-width: 768px) {
            .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart tbody tr td.actions .coupon {
              margin: 0 auto; }
              .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart tbody tr td.actions .coupon .art-input-text-coupon {
                width: 100%; } }
          @media only screen and (max-width: 540px) {
            .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart tbody tr td.actions .coupon {
              width: 100% !important; } }
          .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart tbody tr td.actions .coupon .art-apply-coupon {
            position: absolute;
            top: 0;
            right: 0;
            padding: 14px 25px; }
        .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart tbody tr td.actions .art-update-cart {
          padding: 11px 0 5px 0; }
          .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart tbody tr td.actions .art-update-cart:hover {
            background: unset; }
          .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart tbody tr td.actions .art-update-cart:disabled[disabled] {
            opacity: 1; }
    .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart dl {
      margin: 10px 0 0;
      color: var(--art-colors-second-text); }
    .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart dt {
      font-family: inherit;
      font-weight: inherit;
      font-style: inherit;
      text-transform: inherit;
      text-decoration: inherit;
      font-size: inherit;
      line-height: inherit;
      letter-spacing: inherit;
      margin: 0; }
      @media only screen and (max-width: 768px) {
        .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart dt {
          float: none; } }
    .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart dd {
      margin: 0; }
      @media only screen and (max-width: 768px) {
        .art-cart-page-wrapper .art-cart-page-left .woocommerce-cart-form table.shop_table.cart dd {
          display: inline-block; } }
  .art-cart-page-wrapper .art-cart-page-right .cart-collaterals {
    padding: 30px;
    background-color: var(--art-colors-second-bg); }
    @media only screen and (max-width: 991px) {
      .art-cart-page-wrapper .art-cart-page-right .cart-collaterals {
        margin-top: 50px; } }
    .art-cart-page-wrapper .art-cart-page-right .cart-collaterals .cart_totals {
      float: none;
      width: 100%; }
      .art-cart-page-wrapper .art-cart-page-right .cart-collaterals .cart_totals > h6 {
        margin: 0; }
      .art-cart-page-wrapper .art-cart-page-right .cart-collaterals .cart_totals .art-shipping-wrapper {
        margin-top: 25px; }
        .art-cart-page-wrapper .art-cart-page-right .cart-collaterals .cart_totals .art-shipping-wrapper form.woocommerce-shipping-calculator .shipping-calculator-button {
          margin: 0;
          cursor: pointer; }
          .art-cart-page-wrapper .art-cart-page-right .cart-collaterals .cart_totals .art-shipping-wrapper form.woocommerce-shipping-calculator .shipping-calculator-button::after {
            content: none; }
        .art-cart-page-wrapper .art-cart-page-right .cart-collaterals .cart_totals .art-shipping-wrapper form.woocommerce-shipping-calculator section.shipping-calculator-form {
          margin: 25px 0 0;
          display: none; }
          .art-cart-page-wrapper .art-cart-page-right .cart-collaterals .cart_totals .art-shipping-wrapper form.woocommerce-shipping-calculator section.shipping-calculator-form p.form-row {
            padding: 0;
            margin: 0 0 30px; }
          .art-cart-page-wrapper .art-cart-page-right .cart-collaterals .cart_totals .art-shipping-wrapper form.woocommerce-shipping-calculator section.shipping-calculator-form p.art-update-shipping {
            text-align: right;
            margin: 0; }
          .art-cart-page-wrapper .art-cart-page-right .cart-collaterals .cart_totals .art-shipping-wrapper form.woocommerce-shipping-calculator section.shipping-calculator-form input.input-text,
          .art-cart-page-wrapper .art-cart-page-right .cart-collaterals .cart_totals .art-shipping-wrapper form.woocommerce-shipping-calculator section.shipping-calculator-form textarea,
          .art-cart-page-wrapper .art-cart-page-right .cart-collaterals .cart_totals .art-shipping-wrapper form.woocommerce-shipping-calculator section.shipping-calculator-form .select2-container--default .select2-selection--single,
          .art-cart-page-wrapper .art-cart-page-right .cart-collaterals .cart_totals .art-shipping-wrapper form.woocommerce-shipping-calculator section.shipping-calculator-form select {
            background-color: var(--art-colors-second-bg); }
        .art-cart-page-wrapper .art-cart-page-right .cart-collaterals .cart_totals .art-shipping-wrapper .woocommerce-shipping-destination {
          display: block;
          padding: 0;
          margin: 20px 0; }
        .art-cart-page-wrapper .art-cart-page-right .cart-collaterals .cart_totals .art-shipping-wrapper ul#shipping_method {
          margin-top: 20px; }
      .art-cart-page-wrapper .art-cart-page-right .cart-collaterals .cart_totals .coupon {
        margin-top: 30px; }
        .art-cart-page-wrapper .art-cart-page-right .cart-collaterals .cart_totals .coupon .coupon-title {
          margin: 0 0 9px; }
        .art-cart-page-wrapper .art-cart-page-right .cart-collaterals .cart_totals .coupon .coupon-form-wrapper,
        .art-cart-page-wrapper .art-cart-page-right .cart-collaterals .cart_totals .coupon .coupon-form-wrapper form {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex; }
        .art-cart-page-wrapper .art-cart-page-right .cart-collaterals .cart_totals .coupon .art-coupon-button {
          border-left: 0;
          padding-left: 20px;
          padding-right: 20px;
          -ms-flex-negative: 0;
              flex-shrink: 0; }
      .art-cart-page-wrapper .art-cart-page-right .cart-collaterals .cart_totals table.shop_table {
        border: 0;
        background: none;
        margin: 30px 0 0; }
        .art-cart-page-wrapper .art-cart-page-right .cart-collaterals .cart_totals table.shop_table tr:first-child th,
        .art-cart-page-wrapper .art-cart-page-right .cart-collaterals .cart_totals table.shop_table tr:first-child td {
          padding-top: 0; }
        .art-cart-page-wrapper .art-cart-page-right .cart-collaterals .cart_totals table.shop_table th,
        .art-cart-page-wrapper .art-cart-page-right .cart-collaterals .cart_totals table.shop_table td {
          border: 0;
          background: none;
          padding: 14px 0 0; }
        .art-cart-page-wrapper .art-cart-page-right .cart-collaterals .cart_totals table.shop_table th {
          text-align: left; }
        .art-cart-page-wrapper .art-cart-page-right .cart-collaterals .cart_totals table.shop_table td {
          text-align: right; }
        .art-cart-page-wrapper .art-cart-page-right .cart-collaterals .cart_totals table.shop_table strong {
          font-weight: inherit; }
      .art-cart-page-wrapper .art-cart-page-right .cart-collaterals .cart_totals .wc-proceed-to-checkout {
        margin: 40px 0 0;
        padding: 0; }
        .art-cart-page-wrapper .art-cart-page-right .cart-collaterals .cart_totals .wc-proceed-to-checkout .art-checkout {
          width: 100%; }
        .art-cart-page-wrapper .art-cart-page-right .cart-collaterals .cart_totals .wc-proceed-to-checkout #pwgc-redeem-gift-card-form {
          width: 100%; }
          .art-cart-page-wrapper .art-cart-page-right .cart-collaterals .cart_totals .wc-proceed-to-checkout #pwgc-redeem-gift-card-form #pwgc-redeem-gift-card-container {
            margin-bottom: 40px; }
          .art-cart-page-wrapper .art-cart-page-right .cart-collaterals .cart_totals .wc-proceed-to-checkout #pwgc-redeem-gift-card-form #pwgc-redeem-gift-card-number {
            width: 100%; }
          .art-cart-page-wrapper .art-cart-page-right .cart-collaterals .cart_totals .wc-proceed-to-checkout #pwgc-redeem-gift-card-form #pwgc-redeem-button {
            font-family: var(--art-button-font-family);
            font-weight: var(--art-button-font-weight);
            font-style: var(--art-button-font-style);
            text-transform: var(--art-button-text-transform);
            -webkit-text-decoration: var(--art-button-text-decoration);
                    text-decoration: var(--art-button-text-decoration);
            font-size: var(--art-button-font-size);
            line-height: var(--art-button-line-height);
            letter-spacing: var(--art-button-letter-spacing);
            text-align: center;
            text-decoration: none;
            display: inline-block;
            cursor: pointer;
            border-radius: 0;
            overflow: visible;
            word-break: normal;
            position: relative;
            z-index: 0;
            -webkit-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
            border-width: 2px;
            border-style: solid;
            padding: 13px 40px;
            border-color: var(--art-colors-bg);
            background-color: transparent;
            color: var(--art-colors-bg);
            width: 100%;
            display: block;
            margin-top: 10px; }
            .art-second-color-scheme .art-cart-page-wrapper .art-cart-page-right .cart-collaterals .cart_totals .wc-proceed-to-checkout #pwgc-redeem-gift-card-form #pwgc-redeem-button {
              border-color: var(--art-bg-bg); }
            .art-second-color-scheme .art-cart-page-wrapper .art-cart-page-right .cart-collaterals .cart_totals .wc-proceed-to-checkout #pwgc-redeem-gift-card-form #pwgc-redeem-button {
              background-color: transparent; }
            .art-second-color-scheme .art-cart-page-wrapper .art-cart-page-right .cart-collaterals .cart_totals .wc-proceed-to-checkout #pwgc-redeem-gift-card-form #pwgc-redeem-button {
              color: var(--art-bg-bg); }
            .art-cart-page-wrapper .art-cart-page-right .cart-collaterals .cart_totals .wc-proceed-to-checkout #pwgc-redeem-gift-card-form #pwgc-redeem-button:hover {
              /*background-color: #ffffff;
      color: #000;*/
              background-color: var(--art-colors-bg);
              color: #fff; }
              .art-second-color-scheme .art-cart-page-wrapper .art-cart-page-right .cart-collaterals .cart_totals .wc-proceed-to-checkout #pwgc-redeem-gift-card-form #pwgc-redeem-button:hover {
                background-color: var(--art-bg-bg); }
  .art-cart-page-wrapper .art-cart-page-right .return-to-shop {
    text-align: center;
    margin: 30px 0 0;
    padding: 0; }

.cart-is-empty-wrapper {
  padding: 225px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .cart-is-empty-wrapper .empty-bag-icon {
    margin-bottom: 30px; }
  .cart-is-empty-wrapper .title {
    text-align: center;
    width: 100%;
    margin-top: 0;
    margin-bottom: 40px; }

.woocommerce form.checkout_coupon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .woocommerce form.checkout_coupon p {
    margin: 20px 0 0;
    padding: 0; }
    .woocommerce form.checkout_coupon p:first-child {
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
      margin-top: 0; }
  .woocommerce form.checkout_coupon .button {
    font-family: var(--art-button-font-family);
    font-weight: var(--art-button-font-weight);
    font-style: var(--art-button-font-style);
    text-transform: var(--art-button-text-transform);
    -webkit-text-decoration: var(--art-button-text-decoration);
            text-decoration: var(--art-button-text-decoration);
    font-size: var(--art-button-font-size);
    line-height: var(--art-button-line-height);
    letter-spacing: var(--art-button-letter-spacing);
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border-radius: 0;
    overflow: visible;
    word-break: normal;
    position: relative;
    z-index: 0;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    border-width: 2px;
    border-style: solid;
    padding: 13px 40px;
    border-color: var(--art-colors-bg);
    background-color: var(--art-colors-bg);
    color: var(--art-colors-light-text); }
    .art-second-color-scheme .woocommerce form.checkout_coupon .button {
      border-color: var(--art-bg-bg); }
    .art-second-color-scheme .woocommerce form.checkout_coupon .button {
      background-color: var(--art-bg-bg); }
    .art-second-color-scheme .woocommerce form.checkout_coupon .button {
      color: var(--art-bg-light-text); }
    .woocommerce form.checkout_coupon .button:hover {
      border-color: var(--art-colors-bg-hover);
      background-color: var(--art-colors-bg-hover);
      color: var(--art-colors-light-text); }
      .art-second-color-scheme .woocommerce form.checkout_coupon .button:hover {
        border-color: var(--art-bg-bg-hover); }
      .art-second-color-scheme .woocommerce form.checkout_coupon .button:hover {
        background-color: var(--art-bg-bg-hover); }
      .art-second-color-scheme .woocommerce form.checkout_coupon .button:hover {
        color: var(--art-bg-light-text); }

@media only screen and (max-width: 991px) {
  .art-woo-checkout-page .art-checkout-left {
    margin-bottom: 44px; } }

.art-woo-checkout-page .art-checkout-left h3.art-billing-details-title {
  margin-bottom: 30px; }

.art-woo-checkout-page .art-checkout-left .woocommerce-shipping-fields #ship-to-different-address {
  font-family: var(--art-body-three-font-family);
  font-weight: var(--art-body-three-font-weight);
  font-style: var(--art-body-three-font-style);
  text-transform: var(--art-body-three-text-transform);
  -webkit-text-decoration: var(--art-body-three-text-decoration);
          text-decoration: var(--art-body-three-text-decoration);
  font-size: var(--art-body-three-font-size);
  line-height: var(--art-body-three-line-height);
  letter-spacing: var(--art-body-three-letter-spacing);
  margin-bottom: 40px; }
  @media only screen and (max-width: 767px) {
    .art-woo-checkout-page .art-checkout-left .woocommerce-shipping-fields #ship-to-different-address {
      font-family: var(--art-body-three-mobile-font-family);
      font-weight: var(--art-body-three-mobile-font-weight);
      font-style: var(--art-body-three-mobile-font-style);
      text-transform: var(--art-body-three-mobile-text-transform);
      -webkit-text-decoration: var(--art-body-three-mobile-text-decoration);
              text-decoration: var(--art-body-three-mobile-text-decoration);
      font-size: var(--art-body-three-mobile-font-size);
      line-height: var(--art-body-three-mobile-line-height);
      letter-spacing: var(--art-body-three-mobile-letter-spacing); } }
  .art-woo-checkout-page .art-checkout-left .woocommerce-shipping-fields #ship-to-different-address .woocommerce-form__label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0; }
    .art-woo-checkout-page .art-checkout-left .woocommerce-shipping-fields #ship-to-different-address .woocommerce-form__label .woocommerce-form__input + span {
      padding-left: 8px; }

.art-woo-checkout-page .art-checkout-left .woocommerce-shipping-fields .shipping_address {
  display: none; }
  .art-woo-checkout-page .art-checkout-left .woocommerce-shipping-fields .shipping_address .art-shipping-address-title {
    margin-bottom: 30px; }

.art-woo-checkout-page .art-checkout-left .woocommerce-additional-fields .woocommerce-additional-fields__field-wrapper p.form-row {
  padding: 0; }

.art-woo-checkout-page .art-checkout-left .woocommerce-shipping-fields__field-wrapper,
.art-woo-checkout-page .art-checkout-left .woocommerce-billing-fields__field-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px; }
  .art-woo-checkout-page .art-checkout-left .woocommerce-shipping-fields__field-wrapper > p,
  .art-woo-checkout-page .art-checkout-left .woocommerce-billing-fields__field-wrapper > p {
    width: 50%;
    padding: 0;
    margin-bottom: 30px; }
    @media only screen and (max-width: 767px) {
      .art-woo-checkout-page .art-checkout-left .woocommerce-shipping-fields__field-wrapper > p,
      .art-woo-checkout-page .art-checkout-left .woocommerce-billing-fields__field-wrapper > p {
        width: 100%; } }
    .art-woo-checkout-page .art-checkout-left .woocommerce-shipping-fields__field-wrapper > p > span,
    .art-woo-checkout-page .art-checkout-left .woocommerce-billing-fields__field-wrapper > p > span {
      display: block;
      padding: 0 15px;
      width: 100%; }
    .art-woo-checkout-page .art-checkout-left .woocommerce-shipping-fields__field-wrapper > p.form-row-first,
    .art-woo-checkout-page .art-checkout-left .woocommerce-billing-fields__field-wrapper > p.form-row-first {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1; }
    .art-woo-checkout-page .art-checkout-left .woocommerce-shipping-fields__field-wrapper > p.form-row-last,
    .art-woo-checkout-page .art-checkout-left .woocommerce-billing-fields__field-wrapper > p.form-row-last {
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2; }
    .art-woo-checkout-page .art-checkout-left .woocommerce-shipping-fields__field-wrapper > p.validate-email,
    .art-woo-checkout-page .art-checkout-left .woocommerce-billing-fields__field-wrapper > p.validate-email {
      -webkit-box-ordinal-group: 4;
          -ms-flex-order: 3;
              order: 3; }
    .art-woo-checkout-page .art-checkout-left .woocommerce-shipping-fields__field-wrapper > p#shipping_company_field, .art-woo-checkout-page .art-checkout-left .woocommerce-shipping-fields__field-wrapper > p#billing_company_field,
    .art-woo-checkout-page .art-checkout-left .woocommerce-billing-fields__field-wrapper > p#shipping_company_field,
    .art-woo-checkout-page .art-checkout-left .woocommerce-billing-fields__field-wrapper > p#billing_company_field {
      -webkit-box-ordinal-group: 5;
          -ms-flex-order: 4;
              order: 4; }
    .art-woo-checkout-page .art-checkout-left .woocommerce-shipping-fields__field-wrapper > p#shipping_address_1_field, .art-woo-checkout-page .art-checkout-left .woocommerce-shipping-fields__field-wrapper > p#billing_address_1_field,
    .art-woo-checkout-page .art-checkout-left .woocommerce-billing-fields__field-wrapper > p#shipping_address_1_field,
    .art-woo-checkout-page .art-checkout-left .woocommerce-billing-fields__field-wrapper > p#billing_address_1_field {
      -webkit-box-ordinal-group: 6;
          -ms-flex-order: 5;
              order: 5; }
    .art-woo-checkout-page .art-checkout-left .woocommerce-shipping-fields__field-wrapper > p#shipping_address_2_field, .art-woo-checkout-page .art-checkout-left .woocommerce-shipping-fields__field-wrapper > p#billing_address_2_field,
    .art-woo-checkout-page .art-checkout-left .woocommerce-billing-fields__field-wrapper > p#shipping_address_2_field,
    .art-woo-checkout-page .art-checkout-left .woocommerce-billing-fields__field-wrapper > p#billing_address_2_field {
      -webkit-box-ordinal-group: 7;
          -ms-flex-order: 6;
              order: 6; }
    .art-woo-checkout-page .art-checkout-left .woocommerce-shipping-fields__field-wrapper > p#shipping_country_field, .art-woo-checkout-page .art-checkout-left .woocommerce-shipping-fields__field-wrapper > p#billing_country_field,
    .art-woo-checkout-page .art-checkout-left .woocommerce-billing-fields__field-wrapper > p#shipping_country_field,
    .art-woo-checkout-page .art-checkout-left .woocommerce-billing-fields__field-wrapper > p#billing_country_field {
      -webkit-box-ordinal-group: 8;
          -ms-flex-order: 7;
              order: 7; }
    .art-woo-checkout-page .art-checkout-left .woocommerce-shipping-fields__field-wrapper > p#shipping_city_field, .art-woo-checkout-page .art-checkout-left .woocommerce-shipping-fields__field-wrapper > p#billing_city_field,
    .art-woo-checkout-page .art-checkout-left .woocommerce-billing-fields__field-wrapper > p#shipping_city_field,
    .art-woo-checkout-page .art-checkout-left .woocommerce-billing-fields__field-wrapper > p#billing_city_field {
      -webkit-box-ordinal-group: 9;
          -ms-flex-order: 8;
              order: 8; }
    .art-woo-checkout-page .art-checkout-left .woocommerce-shipping-fields__field-wrapper > p#shipping_state_field, .art-woo-checkout-page .art-checkout-left .woocommerce-shipping-fields__field-wrapper > p#billing_state_field,
    .art-woo-checkout-page .art-checkout-left .woocommerce-billing-fields__field-wrapper > p#shipping_state_field,
    .art-woo-checkout-page .art-checkout-left .woocommerce-billing-fields__field-wrapper > p#billing_state_field {
      -webkit-box-ordinal-group: 10;
          -ms-flex-order: 9;
              order: 9;
      width: 25%; }
      @media only screen and (max-width: 767px) {
        .art-woo-checkout-page .art-checkout-left .woocommerce-shipping-fields__field-wrapper > p#shipping_state_field, .art-woo-checkout-page .art-checkout-left .woocommerce-shipping-fields__field-wrapper > p#billing_state_field,
        .art-woo-checkout-page .art-checkout-left .woocommerce-billing-fields__field-wrapper > p#shipping_state_field,
        .art-woo-checkout-page .art-checkout-left .woocommerce-billing-fields__field-wrapper > p#billing_state_field {
          width: 100%; } }
    .art-woo-checkout-page .art-checkout-left .woocommerce-shipping-fields__field-wrapper > p#shipping_postcode_field, .art-woo-checkout-page .art-checkout-left .woocommerce-shipping-fields__field-wrapper > p#billing_postcode_field,
    .art-woo-checkout-page .art-checkout-left .woocommerce-billing-fields__field-wrapper > p#shipping_postcode_field,
    .art-woo-checkout-page .art-checkout-left .woocommerce-billing-fields__field-wrapper > p#billing_postcode_field {
      -webkit-box-ordinal-group: 11;
          -ms-flex-order: 10;
              order: 10;
      width: 25%; }
      @media only screen and (max-width: 767px) {
        .art-woo-checkout-page .art-checkout-left .woocommerce-shipping-fields__field-wrapper > p#shipping_postcode_field, .art-woo-checkout-page .art-checkout-left .woocommerce-shipping-fields__field-wrapper > p#billing_postcode_field,
        .art-woo-checkout-page .art-checkout-left .woocommerce-billing-fields__field-wrapper > p#shipping_postcode_field,
        .art-woo-checkout-page .art-checkout-left .woocommerce-billing-fields__field-wrapper > p#billing_postcode_field {
          width: 100%; } }
    .art-woo-checkout-page .art-checkout-left .woocommerce-shipping-fields__field-wrapper > p#shipping_phone_field, .art-woo-checkout-page .art-checkout-left .woocommerce-shipping-fields__field-wrapper > p#billing_phone_field,
    .art-woo-checkout-page .art-checkout-left .woocommerce-billing-fields__field-wrapper > p#shipping_phone_field,
    .art-woo-checkout-page .art-checkout-left .woocommerce-billing-fields__field-wrapper > p#billing_phone_field {
      -webkit-box-ordinal-group: 12;
          -ms-flex-order: 11;
              order: 11; }

.art-woo-checkout-page .art-checkout-left .woocommerce-additional-fields span.woocommerce-input-wrapper {
  width: 100%; }
  .art-woo-checkout-page .art-checkout-left .woocommerce-additional-fields span.woocommerce-input-wrapper textarea {
    min-height: 100px; }

.art-woo-checkout-page .art-checkout-left .art-shipping-checkout-wrapper {
  margin-top: 10px; }
  .art-woo-checkout-page .art-checkout-left .art-shipping-checkout-wrapper .woocommerce-additional-fields h3 {
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 20px;
    line-height: 29px;
    color: var(--art-colors-heading);
    letter-spacing: 0.02em; }

.art-woo-checkout-page .art-checkout-right .art-checkout-right-wrapper {
  padding: 30px;
  background-color: var(--art-colors-second-bg); }

.art-woo-checkout-page .art-checkout-right h3.art-order-summary-title {
  margin-bottom: 28px; }

.art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order table.woocommerce-checkout-review-order-table {
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0 0 30px;
  margin: 0 0 30px; }
  .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order table.woocommerce-checkout-review-order-table th,
  .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order table.woocommerce-checkout-review-order-table td {
    border: 0;
    background: none;
    line-height: inherit; }
  .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order table.woocommerce-checkout-review-order-table .cart_item td {
    padding: 30px 0 0; }
  .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order table.woocommerce-checkout-review-order-table .cart_item:first-child td {
    padding-top: 0; }
  .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order table.woocommerce-checkout-review-order-table .cart_item .product-image {
    border-top: none; }
    .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order table.woocommerce-checkout-review-order-table .cart_item .product-image img {
      width: 92px;
      min-width: 92px; }
  .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order table.woocommerce-checkout-review-order-table .cart_item .product-name {
    border-top: none;
    width: 100%;
    padding-left: 24px; }
    .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order table.woocommerce-checkout-review-order-table .cart_item .product-name .product-name-data > span {
      display: block;
      font-family: var(--art-body-two-font-family);
      font-weight: var(--art-body-two-font-weight);
      font-style: var(--art-body-two-font-style);
      text-transform: var(--art-body-two-text-transform);
      -webkit-text-decoration: var(--art-body-two-text-decoration);
              text-decoration: var(--art-body-two-text-decoration);
      font-size: var(--art-body-two-font-size);
      line-height: var(--art-body-two-line-height);
      letter-spacing: var(--art-body-two-letter-spacing); }
      @media only screen and (max-width: 767px) {
        .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order table.woocommerce-checkout-review-order-table .cart_item .product-name .product-name-data > span {
          font-family: var(--art-body-two-mobile-font-family);
          font-weight: var(--art-body-two-mobile-font-weight);
          font-style: var(--art-body-two-mobile-font-style);
          text-transform: var(--art-body-two-mobile-text-transform);
          -webkit-text-decoration: var(--art-body-two-mobile-text-decoration);
                  text-decoration: var(--art-body-two-mobile-text-decoration);
          font-size: var(--art-body-two-mobile-font-size);
          line-height: var(--art-body-two-mobile-line-height);
          letter-spacing: var(--art-body-two-mobile-letter-spacing); } }
    .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order table.woocommerce-checkout-review-order-table .cart_item .product-name .product-name-data .product-item-title {
      margin-bottom: 6px; }
    .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order table.woocommerce-checkout-review-order-table .cart_item .product-name .product-name-data .product-item-price {
      margin-bottom: 6px; }
  .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order table.woocommerce-checkout-review-order-table tfoot th,
  .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order table.woocommerce-checkout-review-order-table tfoot td {
    padding: 15px 0 0; }
  .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order table.woocommerce-checkout-review-order-table tfoot th {
    text-align: left; }
  .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order table.woocommerce-checkout-review-order-table tfoot td {
    text-align: right; }
    .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order table.woocommerce-checkout-review-order-table tfoot td.art-shipping-methods-row {
      text-align: left; }
  .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order table.woocommerce-checkout-review-order-table tfoot strong {
    font-weight: inherit; }
  .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order table.woocommerce-checkout-review-order-table tfoot tr:first-child th,
  .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order table.woocommerce-checkout-review-order-table tfoot tr:first-child td {
    padding-top: 40px; }
  .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order table.woocommerce-checkout-review-order-table tfoot tr.cart-subtotal {
    font-family: var(--art-body-two-font-family);
    font-weight: var(--art-body-two-font-weight);
    font-style: var(--art-body-two-font-style);
    text-transform: var(--art-body-two-text-transform);
    -webkit-text-decoration: var(--art-body-two-text-decoration);
            text-decoration: var(--art-body-two-text-decoration);
    font-size: var(--art-body-two-font-size);
    line-height: var(--art-body-two-line-height);
    letter-spacing: var(--art-body-two-letter-spacing); }
    @media only screen and (max-width: 767px) {
      .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order table.woocommerce-checkout-review-order-table tfoot tr.cart-subtotal {
        font-family: var(--art-body-two-mobile-font-family);
        font-weight: var(--art-body-two-mobile-font-weight);
        font-style: var(--art-body-two-mobile-font-style);
        text-transform: var(--art-body-two-mobile-text-transform);
        -webkit-text-decoration: var(--art-body-two-mobile-text-decoration);
                text-decoration: var(--art-body-two-mobile-text-decoration);
        font-size: var(--art-body-two-mobile-font-size);
        line-height: var(--art-body-two-mobile-line-height);
        letter-spacing: var(--art-body-two-mobile-letter-spacing); } }
  .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order table.woocommerce-checkout-review-order-table tfoot tr.order-total th,
  .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order table.woocommerce-checkout-review-order-table tfoot tr.order-total td {
    font-family: var(--art-body-three-font-family);
    font-weight: var(--art-body-three-font-weight);
    font-style: var(--art-body-three-font-style);
    text-transform: var(--art-body-three-text-transform);
    -webkit-text-decoration: var(--art-body-three-text-decoration);
            text-decoration: var(--art-body-three-text-decoration);
    font-size: var(--art-body-three-font-size);
    line-height: var(--art-body-three-line-height);
    letter-spacing: var(--art-body-three-letter-spacing); }
    @media only screen and (max-width: 767px) {
      .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order table.woocommerce-checkout-review-order-table tfoot tr.order-total th,
      .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order table.woocommerce-checkout-review-order-table tfoot tr.order-total td {
        font-family: var(--art-body-three-mobile-font-family);
        font-weight: var(--art-body-three-mobile-font-weight);
        font-style: var(--art-body-three-mobile-font-style);
        text-transform: var(--art-body-three-mobile-text-transform);
        -webkit-text-decoration: var(--art-body-three-mobile-text-decoration);
                text-decoration: var(--art-body-three-mobile-text-decoration);
        font-size: var(--art-body-three-mobile-font-size);
        line-height: var(--art-body-three-mobile-line-height);
        letter-spacing: var(--art-body-three-mobile-letter-spacing); } }

.art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment {
  background: transparent; }
  .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment > h6 {
    margin: 0; }
  .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment .art-payment-method-title {
    font-family: var(--art-body-one-font-family);
    font-weight: var(--art-body-one-font-weight);
    font-style: var(--art-body-one-font-style);
    text-transform: var(--art-body-one-text-transform);
    -webkit-text-decoration: var(--art-body-one-text-decoration);
            text-decoration: var(--art-body-one-text-decoration);
    font-size: var(--art-body-one-font-size);
    line-height: var(--art-body-one-line-height);
    letter-spacing: var(--art-body-one-letter-spacing);
    margin-top: 30px; }
    @media only screen and (max-width: 767px) {
      .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment .art-payment-method-title {
        font-family: var(--art-body-one-mobile-font-family);
        font-weight: var(--art-body-one-mobile-font-weight);
        font-style: var(--art-body-one-mobile-font-style);
        text-transform: var(--art-body-one-mobile-text-transform);
        -webkit-text-decoration: var(--art-body-one-mobile-text-decoration);
                text-decoration: var(--art-body-one-mobile-text-decoration);
        font-size: var(--art-body-one-mobile-font-size);
        line-height: var(--art-body-one-mobile-line-height);
        letter-spacing: var(--art-body-one-mobile-letter-spacing); } }
  .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment .wc_payment_methods {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    border-bottom: none; }
    .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment .wc_payment_methods .wc_payment_method {
      position: relative;
      line-height: inherit;
      margin-bottom: 7px; }
      .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment .wc_payment_methods .wc_payment_method input {
        margin: 0;
        top: 4px; }
      .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment .wc_payment_methods .wc_payment_method label {
        display: inline;
        font-family: var(--art-body-two-font-family);
        font-weight: var(--art-body-two-font-weight);
        font-style: var(--art-body-two-font-style);
        text-transform: var(--art-body-two-text-transform);
        -webkit-text-decoration: var(--art-body-two-text-decoration);
                text-decoration: var(--art-body-two-text-decoration);
        font-size: var(--art-body-two-font-size);
        line-height: var(--art-body-two-line-height);
        letter-spacing: var(--art-body-two-letter-spacing);
        position: relative;
        top: 1px; }
        @media only screen and (max-width: 767px) {
          .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment .wc_payment_methods .wc_payment_method label {
            font-family: var(--art-body-two-mobile-font-family);
            font-weight: var(--art-body-two-mobile-font-weight);
            font-style: var(--art-body-two-mobile-font-style);
            text-transform: var(--art-body-two-mobile-text-transform);
            -webkit-text-decoration: var(--art-body-two-mobile-text-decoration);
                    text-decoration: var(--art-body-two-mobile-text-decoration);
            font-size: var(--art-body-two-mobile-font-size);
            line-height: var(--art-body-two-mobile-line-height);
            letter-spacing: var(--art-body-two-mobile-letter-spacing); } }
      .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment .wc_payment_methods .wc_payment_method .payment_box {
        color: var(--art-colors-heading);
        font-family: var(--art-body-two-font-family);
        font-weight: var(--art-body-two-font-weight);
        font-style: var(--art-body-two-font-style);
        text-transform: var(--art-body-two-text-transform);
        -webkit-text-decoration: var(--art-body-two-text-decoration);
                text-decoration: var(--art-body-two-text-decoration);
        font-size: var(--art-body-two-font-size);
        line-height: var(--art-body-two-line-height);
        letter-spacing: var(--art-body-two-letter-spacing);
        margin: 1em 0 0 0;
        background-color: unset;
        padding: 0; }
        @media only screen and (max-width: 767px) {
          .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment .wc_payment_methods .wc_payment_method .payment_box {
            font-family: var(--art-body-two-mobile-font-family);
            font-weight: var(--art-body-two-mobile-font-weight);
            font-style: var(--art-body-two-mobile-font-style);
            text-transform: var(--art-body-two-mobile-text-transform);
            -webkit-text-decoration: var(--art-body-two-mobile-text-decoration);
                    text-decoration: var(--art-body-two-mobile-text-decoration);
            font-size: var(--art-body-two-mobile-font-size);
            line-height: var(--art-body-two-mobile-line-height);
            letter-spacing: var(--art-body-two-mobile-letter-spacing); } }
        .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment .wc_payment_methods .wc_payment_method .payment_box::before {
          display: none; }
      .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment .wc_payment_methods .wc_payment_method.payment_method_paypal label a.about_paypal,
      .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment .wc_payment_methods .wc_payment_method.payment_method_paypal label img {
        display: none; }
      .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment .wc_payment_methods .wc_payment_method .form-row {
        margin: 0 0 10px 0;
        padding: 0; }
        .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment .wc_payment_methods .wc_payment_method .form-row .wc-stripe-elements-field,
        .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment .wc_payment_methods .wc_payment_method .form-row .stripe-card-group {
          width: 100%; }
        .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment .wc_payment_methods .wc_payment_method .form-row.woocommerce-SavedPaymentMethods-saveNew {
          -ms-flex-wrap: nowrap;
              flex-wrap: nowrap; }
          .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment .wc_payment_methods .wc_payment_method .form-row.woocommerce-SavedPaymentMethods-saveNew #wc-stripe-new-payment-method {
            margin-right: 8px; }
  .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment .form-row.place-order {
    margin: 30px 0 0;
    padding: 0; }
    .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment .form-row.place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-privacy-policy-text {
      font-family: var(--art-body-five-font-family);
      font-weight: var(--art-body-five-font-weight);
      font-style: var(--art-body-five-font-style);
      text-transform: var(--art-body-five-text-transform);
      -webkit-text-decoration: var(--art-body-five-text-decoration);
              text-decoration: var(--art-body-five-text-decoration);
      font-size: var(--art-body-five-font-size);
      line-height: var(--art-body-five-line-height);
      letter-spacing: var(--art-body-five-letter-spacing); }
      @media only screen and (max-width: 767px) {
        .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment .form-row.place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-privacy-policy-text {
          font-family: var(--art-body-five-mobile-font-family);
          font-weight: var(--art-body-five-mobile-font-weight);
          font-style: var(--art-body-five-mobile-font-style);
          text-transform: var(--art-body-five-mobile-text-transform);
          -webkit-text-decoration: var(--art-body-five-mobile-text-decoration);
                  text-decoration: var(--art-body-five-mobile-text-decoration);
          font-size: var(--art-body-five-mobile-font-size);
          line-height: var(--art-body-five-mobile-line-height);
          letter-spacing: var(--art-body-five-mobile-letter-spacing); } }
    .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment .form-row.place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-privacy-policy-link {
      color: var(--art-colors-text);
      text-decoration: underline;
      text-underline-position: under;
      -webkit-transition: -webkit-text-decoration-color .2s ease-in-out;
      transition: -webkit-text-decoration-color .2s ease-in-out;
      transition: text-decoration-color .2s ease-in-out;
      transition: text-decoration-color .2s ease-in-out, -webkit-text-decoration-color .2s ease-in-out; }
      .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment .form-row.place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-privacy-policy-link:hover {
        -webkit-text-decoration-color: transparent;
                text-decoration-color: transparent; }
    .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment .form-row.place-order .woocommerce-terms-and-conditions-wrapper .form-row.validate-required {
      margin: 30px 0 0;
      padding: 0; }
      .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment .form-row.place-order .woocommerce-terms-and-conditions-wrapper .form-row.validate-required .woocommerce-form__label {
        line-height: var(--art-h8-line-height);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment .form-row.place-order .woocommerce-terms-and-conditions-wrapper .form-row.validate-required .woocommerce-form__label input.input-checkbox {
          margin: 2px 8px 0 0; }
        .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment .form-row.place-order .woocommerce-terms-and-conditions-wrapper .form-row.validate-required .woocommerce-form__label .woocommerce-terms-and-conditions-checkbox-text {
          color: var(--art-colors-heading); }
          .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment .form-row.place-order .woocommerce-terms-and-conditions-wrapper .form-row.validate-required .woocommerce-form__label .woocommerce-terms-and-conditions-checkbox-text a {
            color: var(--art-colors-heading);
            text-decoration: underline;
            text-underline-position: under;
            -webkit-transition: -webkit-text-decoration-color .2s ease-in-out;
            transition: -webkit-text-decoration-color .2s ease-in-out;
            transition: text-decoration-color .2s ease-in-out;
            transition: text-decoration-color .2s ease-in-out, -webkit-text-decoration-color .2s ease-in-out; }
            .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment .form-row.place-order .woocommerce-terms-and-conditions-wrapper .form-row.validate-required .woocommerce-form__label .woocommerce-terms-and-conditions-checkbox-text a:hover {
              -webkit-text-decoration-color: transparent;
                      text-decoration-color: transparent; }
    .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment .form-row.place-order #pwgc-redeem-gift-card-form {
      width: 100%; }
      .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment .form-row.place-order #pwgc-redeem-gift-card-form #pwgc-redeem-form #pwgc-redeem-button {
        font-family: var(--art-button-font-family);
        font-weight: var(--art-button-font-weight);
        font-style: var(--art-button-font-style);
        text-transform: var(--art-button-text-transform);
        -webkit-text-decoration: var(--art-button-text-decoration);
                text-decoration: var(--art-button-text-decoration);
        font-size: var(--art-button-font-size);
        line-height: var(--art-button-line-height);
        letter-spacing: var(--art-button-letter-spacing);
        text-align: center;
        text-decoration: none;
        display: inline-block;
        cursor: pointer;
        border-radius: 0;
        overflow: visible;
        word-break: normal;
        position: relative;
        z-index: 0;
        -webkit-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
        border-width: 2px;
        border-style: solid;
        padding: 13px 40px;
        border-color: var(--art-colors-bg);
        background-color: transparent;
        color: var(--art-colors-bg);
        margin-top: 10px !important;
        margin-bottom: 0 !important;
        width: 100%; }
        .art-second-color-scheme .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment .form-row.place-order #pwgc-redeem-gift-card-form #pwgc-redeem-form #pwgc-redeem-button {
          border-color: var(--art-bg-bg); }
        .art-second-color-scheme .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment .form-row.place-order #pwgc-redeem-gift-card-form #pwgc-redeem-form #pwgc-redeem-button {
          background-color: transparent; }
        .art-second-color-scheme .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment .form-row.place-order #pwgc-redeem-gift-card-form #pwgc-redeem-form #pwgc-redeem-button {
          color: var(--art-bg-bg); }
        .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment .form-row.place-order #pwgc-redeem-gift-card-form #pwgc-redeem-form #pwgc-redeem-button:hover {
          /*background-color: #ffffff;
      color: #000;*/
          background-color: var(--art-colors-bg);
          color: #fff; }
          .art-second-color-scheme .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment .form-row.place-order #pwgc-redeem-gift-card-form #pwgc-redeem-form #pwgc-redeem-button:hover {
            background-color: var(--art-bg-bg); }
  .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment #place_order {
    font-family: var(--art-button-font-family);
    font-weight: var(--art-button-font-weight);
    font-style: var(--art-button-font-style);
    text-transform: var(--art-button-text-transform);
    -webkit-text-decoration: var(--art-button-text-decoration);
            text-decoration: var(--art-button-text-decoration);
    font-size: var(--art-button-font-size);
    line-height: var(--art-button-line-height);
    letter-spacing: var(--art-button-letter-spacing);
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border-radius: 0;
    overflow: visible;
    word-break: normal;
    position: relative;
    z-index: 0;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    border-width: 2px;
    border-style: solid;
    padding: 13px 40px;
    border-color: var(--art-colors-bg);
    background-color: var(--art-colors-bg);
    color: var(--art-colors-light-text);
    width: 100%;
    margin-top: 40px; }
    .art-second-color-scheme .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment #place_order {
      border-color: var(--art-bg-bg); }
    .art-second-color-scheme .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment #place_order {
      background-color: var(--art-bg-bg); }
    .art-second-color-scheme .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment #place_order {
      color: var(--art-bg-light-text); }
    .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment #place_order:hover {
      border-color: var(--art-colors-bg-hover);
      background-color: var(--art-colors-bg-hover);
      color: var(--art-colors-light-text); }
      .art-second-color-scheme .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment #place_order:hover {
        border-color: var(--art-bg-bg-hover); }
      .art-second-color-scheme .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment #place_order:hover {
        background-color: var(--art-bg-bg-hover); }
      .art-second-color-scheme .art-woo-checkout-page .art-checkout-right .woocommerce-checkout-review-order #payment #place_order:hover {
        color: var(--art-bg-light-text); }

.woocommerce-invalid #terms {
  outline: none; }

body.woocommerce-order-received .art-headline {
  display: none; }

.art-thank-you-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 164px 0 96px 0; }
  @media only screen and (max-width: 767px) {
    .art-thank-you-page {
      padding: 10px 0 5px 0; } }
  .art-thank-you-page .art-thank-you-page-title {
    margin: 30px 0 16px; }
    @media only screen and (max-width: 767px) {
      .art-thank-you-page .art-thank-you-page-title {
        margin: 20px 0 10px 0; } }
  .art-thank-you-page .art-thank-you-page-description {
    font-family: var(--art-body-two-font-family);
    font-weight: var(--art-body-two-font-weight);
    font-style: var(--art-body-two-font-style);
    text-transform: var(--art-body-two-text-transform);
    -webkit-text-decoration: var(--art-body-two-text-decoration);
            text-decoration: var(--art-body-two-text-decoration);
    font-size: var(--art-body-two-font-size);
    line-height: var(--art-body-two-line-height);
    letter-spacing: var(--art-body-two-letter-spacing);
    margin-bottom: 36px; }
    @media only screen and (max-width: 767px) {
      .art-thank-you-page .art-thank-you-page-description {
        font-family: var(--art-body-two-mobile-font-family);
        font-weight: var(--art-body-two-mobile-font-weight);
        font-style: var(--art-body-two-mobile-font-style);
        text-transform: var(--art-body-two-mobile-text-transform);
        -webkit-text-decoration: var(--art-body-two-mobile-text-decoration);
                text-decoration: var(--art-body-two-mobile-text-decoration);
        font-size: var(--art-body-two-mobile-font-size);
        line-height: var(--art-body-two-mobile-line-height);
        letter-spacing: var(--art-body-two-mobile-letter-spacing); } }
    @media only screen and (max-width: 767px) {
      .art-thank-you-page .art-thank-you-page-description {
        margin-bottom: 20px; } }

.woocommerce-page .art-woo-main-archive-wrapper,
.woocommerce .art-woo-main-archive-wrapper {
  width: 100%; }
  .woocommerce-page .art-woo-main-archive-wrapper.sidebar-enabled,
  .woocommerce .art-woo-main-archive-wrapper.sidebar-enabled {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
    .woocommerce-page .art-woo-main-archive-wrapper.sidebar-enabled .shop-sidebar,
    .woocommerce .art-woo-main-archive-wrapper.sidebar-enabled .shop-sidebar {
      width: 25%;
      min-width: 25%;
      max-width: 25%;
      padding-right: 15px; }
      @media (max-width: 768px) {
        .woocommerce-page .art-woo-main-archive-wrapper.sidebar-enabled .shop-sidebar,
        .woocommerce .art-woo-main-archive-wrapper.sidebar-enabled .shop-sidebar {
          display: none; } }
    .woocommerce-page .art-woo-main-archive-wrapper.sidebar-enabled .shop-archive-wrapper,
    .woocommerce .art-woo-main-archive-wrapper.sidebar-enabled .shop-archive-wrapper {
      width: calc(75% + 30px);
      min-width: calc(75% + 30px);
      max-width: calc(75% + 30px);
      padding-left: 15px; }
      @media (max-width: 768px) {
        .woocommerce-page .art-woo-main-archive-wrapper.sidebar-enabled .shop-archive-wrapper,
        .woocommerce .art-woo-main-archive-wrapper.sidebar-enabled .shop-archive-wrapper {
          width: calc(100% + 30px);
          min-width: calc(100% + 30px);
          max-width: calc(100% + 30px);
          padding-left: 0; } }
  .woocommerce-page .art-woo-main-archive-wrapper .shop-archive-wrapper,
  .woocommerce .art-woo-main-archive-wrapper .shop-archive-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .woocommerce-page .art-woo-main-archive-wrapper .shop-archive-wrapper br,
    .woocommerce .art-woo-main-archive-wrapper .shop-archive-wrapper br {
      display: none !important; }

.woocommerce-page .art-woo-archive-container,
.woocommerce .art-woo-archive-container {
  padding-top: 60px;
  padding-bottom: 110px; }
  @media only screen and (max-width: 767px) {
    .woocommerce-page .art-woo-archive-container,
    .woocommerce .art-woo-archive-container {
      padding-bottom: 60px; } }
  .woocommerce-page .art-woo-archive-container .woocommerce-notices-wrapper,
  .woocommerce .art-woo-archive-container .woocommerce-notices-wrapper {
    margin-bottom: 40px; }
    .woocommerce-page .art-woo-archive-container .woocommerce-notices-wrapper:empty,
    .woocommerce .art-woo-archive-container .woocommerce-notices-wrapper:empty {
      display: none; }

.woocommerce-page .art-before-shop-loop,
.woocommerce .art-before-shop-loop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px; }
  @media only screen and (max-width: 991px) {
    .woocommerce-page .art-before-shop-loop,
    .woocommerce .art-before-shop-loop {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }
  @media only screen and (max-width: 991px) {
    .woocommerce-page .art-before-shop-loop .art-shop-cats,
    .woocommerce .art-before-shop-loop .art-shop-cats {
      width: auto;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      overflow: auto;
      -webkit-box-pack: unset;
          -ms-flex-pack: unset;
              justify-content: unset;
      margin-bottom: 25px;
      padding-bottom: 15px; }
      .woocommerce-page .art-before-shop-loop .art-shop-cats::-webkit-scrollbar,
      .woocommerce .art-before-shop-loop .art-shop-cats::-webkit-scrollbar {
        width: 0;
        height: 0;
        background: transparent; }
      .woocommerce-page .art-before-shop-loop .art-shop-cats::-webkit-scrollbar-thumb,
      .woocommerce .art-before-shop-loop .art-shop-cats::-webkit-scrollbar-thumb {
        background: transparent; }
      .woocommerce-page .art-before-shop-loop .art-shop-cats .categories,
      .woocommerce .art-before-shop-loop .art-shop-cats .categories {
        min-width: 870px; } }
  .woocommerce-page .art-before-shop-loop .art-shop-cats .art-categories-dropdown,
  .woocommerce .art-before-shop-loop .art-shop-cats .art-categories-dropdown {
    width: 360px; }
  .woocommerce-page .art-before-shop-loop .art-shop-cats > ul,
  .woocommerce .art-before-shop-loop .art-shop-cats > ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0; }
    .woocommerce-page .art-before-shop-loop .art-shop-cats > ul > li,
    .woocommerce .art-before-shop-loop .art-shop-cats > ul > li {
      margin-top: 0;
      margin-right: 40px; }
      .woocommerce-page .art-before-shop-loop .art-shop-cats > ul > li > a,
      .woocommerce .art-before-shop-loop .art-shop-cats > ul > li > a {
        font-family: var(--art-body-three-font-family);
        font-weight: var(--art-body-three-font-weight);
        font-style: var(--art-body-three-font-style);
        text-transform: var(--art-body-three-text-transform);
        -webkit-text-decoration: var(--art-body-three-text-decoration);
                text-decoration: var(--art-body-three-text-decoration);
        font-size: var(--art-body-three-font-size);
        line-height: var(--art-body-three-line-height);
        letter-spacing: var(--art-body-three-letter-spacing);
        color: var(--art-colors-heading); }
        @media only screen and (max-width: 767px) {
          .woocommerce-page .art-before-shop-loop .art-shop-cats > ul > li > a,
          .woocommerce .art-before-shop-loop .art-shop-cats > ul > li > a {
            font-family: var(--art-body-three-mobile-font-family);
            font-weight: var(--art-body-three-mobile-font-weight);
            font-style: var(--art-body-three-mobile-font-style);
            text-transform: var(--art-body-three-mobile-text-transform);
            -webkit-text-decoration: var(--art-body-three-mobile-text-decoration);
                    text-decoration: var(--art-body-three-mobile-text-decoration);
            font-size: var(--art-body-three-mobile-font-size);
            line-height: var(--art-body-three-mobile-line-height);
            letter-spacing: var(--art-body-three-mobile-letter-spacing); } }
      .woocommerce-page .art-before-shop-loop .art-shop-cats > ul > li > a:hover,
      .woocommerce-page .art-before-shop-loop .art-shop-cats > ul > li.current_item > a,
      .woocommerce .art-before-shop-loop .art-shop-cats > ul > li > a:hover,
      .woocommerce .art-before-shop-loop .art-shop-cats > ul > li.current_item > a {
        display: inline-block;
        position: relative; }
        .woocommerce-page .art-before-shop-loop .art-shop-cats > ul > li > a:hover:before,
        .woocommerce-page .art-before-shop-loop .art-shop-cats > ul > li.current_item > a:before,
        .woocommerce .art-before-shop-loop .art-shop-cats > ul > li > a:hover:before,
        .woocommerce .art-before-shop-loop .art-shop-cats > ul > li.current_item > a:before {
          content: '';
          position: absolute;
          bottom: -7px;
          left: 0;
          height: 2px;
          width: 100%;
          background-color: var(--art-colors-text); }
          .art-second-color-scheme .woocommerce-page .art-before-shop-loop .art-shop-cats > ul > li > a:hover:before, .art-second-color-scheme
          .woocommerce-page .art-before-shop-loop .art-shop-cats > ul > li.current_item > a:before, .art-second-color-scheme
          .woocommerce .art-before-shop-loop .art-shop-cats > ul > li > a:hover:before, .art-second-color-scheme
          .woocommerce .art-before-shop-loop .art-shop-cats > ul > li.current_item > a:before {
            background-color: var(--art-bg-text); }
  .woocommerce-page .art-before-shop-loop .art-ordering-cart,
  .woocommerce .art-before-shop-loop .art-ordering-cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media only screen and (max-width: 991px) {
      .woocommerce-page .art-before-shop-loop .art-ordering-cart,
      .woocommerce .art-before-shop-loop .art-ordering-cart {
        width: 100%; } }
    .woocommerce-page .art-before-shop-loop .art-ordering-cart .woocommerce-ordering,
    .woocommerce .art-before-shop-loop .art-ordering-cart .woocommerce-ordering {
      margin-bottom: 0; }
    .woocommerce-page .art-before-shop-loop .art-ordering-cart .s-header__basket-wr,
    .woocommerce .art-before-shop-loop .art-ordering-cart .s-header__basket-wr {
      margin-left: 40px; }

.woocommerce-page ul.products,
.woocommerce ul.products {
  margin-bottom: 0;
  margin-left: -15px;
  margin-right: -15px; }
  .woocommerce-page ul.products.columns-1 .product,
  .woocommerce ul.products.columns-1 .product {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important; }
  .woocommerce-page ul.products.columns-2 .product,
  .woocommerce ul.products.columns-2 .product {
    width: 50% !important;
    min-width: 50% !important;
    max-width: 50% !important; }
    @media (max-width: 576px) {
      .woocommerce-page ul.products.columns-2 .product,
      .woocommerce ul.products.columns-2 .product {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important; } }
  .woocommerce-page ul.products.columns-3 .product,
  .woocommerce ul.products.columns-3 .product {
    width: 33.3333% !important;
    min-width: 33.3333% !important;
    max-width: 33.3333% !important; }
    @media (max-width: 768px) {
      .woocommerce-page ul.products.columns-3 .product,
      .woocommerce ul.products.columns-3 .product {
        width: 50% !important;
        min-width: 50% !important;
        max-width: 50% !important; } }
    @media (max-width: 576px) {
      .woocommerce-page ul.products.columns-3 .product,
      .woocommerce ul.products.columns-3 .product {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important; } }
  .woocommerce-page ul.products.columns-5 .product,
  .woocommerce ul.products.columns-5 .product {
    width: 20% !important;
    min-width: 20% !important;
    max-width: 20% !important; }
    @media (max-width: 768px) {
      .woocommerce-page ul.products.columns-5 .product,
      .woocommerce ul.products.columns-5 .product {
        width: 50% !important;
        min-width: 50% !important;
        max-width: 50% !important; } }
    @media (max-width: 576px) {
      .woocommerce-page ul.products.columns-5 .product,
      .woocommerce ul.products.columns-5 .product {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important; } }
  .woocommerce-page ul.products:not(.art-products-widget-slider),
  .woocommerce ul.products:not(.art-products-widget-slider) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  .woocommerce-page ul.products li.product,
  .woocommerce ul.products li.product {
    float: none;
    margin-left: unset;
    margin-right: unset;
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom: 30px !important; }
    .woocommerce-page ul.products li.product a,
    .woocommerce ul.products li.product a {
      position: relative;
      display: block; }
    .woocommerce-page ul.products li.product .art-product-image,
    .woocommerce ul.products li.product .art-product-image {
      margin-bottom: 24px; }
      .woocommerce-page ul.products li.product .art-product-image img,
      .woocommerce ul.products li.product .art-product-image img {
        margin-bottom: 0;
        width: unset;
        max-width: 100%; }
    .woocommerce-page ul.products li.product .star-rating,
    .woocommerce ul.products li.product .star-rating {
      font-size: 16px;
      position: absolute;
      top: 21px;
      left: 17px; }
    .woocommerce-page ul.products li.product .onsale,
    .woocommerce ul.products li.product .onsale {
      left: auto;
      right: 16px;
      min-width: 1px;
      min-height: 1px;
      z-index: 1;
      position: absolute;
      right: 16px;
      top: 16px;
      background-color: var(--art-colors-fourth-bg);
      font-family: var(--art-body-three-font-family);
      font-weight: var(--art-body-three-font-weight);
      font-style: var(--art-body-three-font-style);
      text-transform: var(--art-body-three-text-transform);
      -webkit-text-decoration: var(--art-body-three-text-decoration);
              text-decoration: var(--art-body-three-text-decoration);
      font-size: var(--art-body-three-font-size);
      line-height: var(--art-body-three-line-height);
      letter-spacing: var(--art-body-three-letter-spacing);
      padding: 3px 16px;
      border-radius: 0;
      margin: 0;
      color: var(--art-colors-link); }
    .woocommerce-page ul.products li.product .woocommerce-loop-product__title,
    .woocommerce ul.products li.product .woocommerce-loop-product__title {
      text-align: center;
      margin: 0;
      padding: 0; }
    .woocommerce-page ul.products li.product .price,
    .woocommerce ul.products li.product .price {
      color: var(--art-colors-heading);
      font-family: var(--art-body-two-font-family);
      font-weight: var(--art-body-two-font-weight);
      font-style: var(--art-body-two-font-style);
      text-transform: var(--art-body-two-text-transform);
      -webkit-text-decoration: var(--art-body-two-text-decoration);
              text-decoration: var(--art-body-two-text-decoration);
      font-size: var(--art-body-two-font-size);
      line-height: var(--art-body-two-line-height);
      letter-spacing: var(--art-body-two-letter-spacing);
      text-align: center;
      display: block;
      margin-top: 4px;
      margin-bottom: 0; }
      @media only screen and (max-width: 767px) {
        .woocommerce-page ul.products li.product .price,
        .woocommerce ul.products li.product .price {
          font-family: var(--art-body-two-mobile-font-family);
          font-weight: var(--art-body-two-mobile-font-weight);
          font-style: var(--art-body-two-mobile-font-style);
          text-transform: var(--art-body-two-mobile-text-transform);
          -webkit-text-decoration: var(--art-body-two-mobile-text-decoration);
                  text-decoration: var(--art-body-two-mobile-text-decoration);
          font-size: var(--art-body-two-mobile-font-size);
          line-height: var(--art-body-two-mobile-line-height);
          letter-spacing: var(--art-body-two-mobile-letter-spacing); } }
      .woocommerce-page ul.products li.product .price del,
      .woocommerce ul.products li.product .price del {
        opacity: 1; }
        .woocommerce-page ul.products li.product .price del + ins,
        .woocommerce ul.products li.product .price del + ins {
          margin-left: 5px; }
      .woocommerce-page ul.products li.product .price ins,
      .woocommerce ul.products li.product .price ins {
        text-decoration: none;
        font-weight: 400; }

.woocommerce-page .woocommerce-pagination,
.woocommerce .woocommerce-pagination {
  display: none; }

.woocommerce-page .art-shop-pagination-wrapper,
.woocommerce .art-shop-pagination-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  .woocommerce-page .art-shop-pagination-wrapper .art-load-more-wrapper,
  .woocommerce .art-shop-pagination-wrapper .art-load-more-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }

@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    .woocommerce-page ul.products::before, .woocommerce-page ul.products::after,
    ul.products.art-products-widget-slider::before,
    ul.products.art-products-widget-slider::after,
    .woocommerce ul.products::before,
    .woocommerce ul.products::after {
      display: none; }
    input {
      -webkit-box-shadow: none;
              box-shadow: none; }
    input {
      border-radius: 0;
      border: 0; }
    /* style Radio buttons */
    input[type="radio"] {
      -moz-appearance: none;
      -webkit-appearance: none;
      appearance: none;
      position: relative;
      width: 18px;
      height: 18px;
      display: inline-block; }
      input[type="radio"]::before {
        content: '';
        width: 18px;
        height: 18px;
        display: block;
        border-width: 1px;
        border-style: solid;
        border-color: var(--art-colors-heading);
        border-radius: 100%;
        cursor: pointer; }
      input[type="radio"]:checked::before {
        content: '';
        width: 18px;
        height: 18px;
        border-width: 1px;
        border-style: solid;
        border-color: var(--art-colors-heading);
        border-radius: 100%;
        background-color: var(--art-colors-heading); }
      input[type="radio"]:checked::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 18px;
        height: 18px;
        border-radius: 100%;
        -webkit-transform: scale(0.35);
                transform: scale(0.35); } } }

.art-woo-container-single-product {
  padding-top: 40px;
  padding-bottom: 100px; }

.art-single-product-before-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 46px; }
  .art-single-product-before-top .woocommerce-notices-wrapper {
    width: 100%; }
  .art-single-product-before-top .woocommerce-breadcrumb {
    font-family: var(--art-body-two-font-family);
    font-weight: var(--art-body-two-font-weight);
    font-style: var(--art-body-two-font-style);
    text-transform: var(--art-body-two-text-transform);
    -webkit-text-decoration: var(--art-body-two-text-decoration);
            text-decoration: var(--art-body-two-text-decoration);
    font-size: var(--art-body-two-font-size);
    line-height: var(--art-body-two-line-height);
    letter-spacing: var(--art-body-two-letter-spacing);
    margin-bottom: 0; }
    @media only screen and (max-width: 767px) {
      .art-single-product-before-top .woocommerce-breadcrumb {
        font-family: var(--art-body-two-mobile-font-family);
        font-weight: var(--art-body-two-mobile-font-weight);
        font-style: var(--art-body-two-mobile-font-style);
        text-transform: var(--art-body-two-mobile-text-transform);
        -webkit-text-decoration: var(--art-body-two-mobile-text-decoration);
                text-decoration: var(--art-body-two-mobile-text-decoration);
        font-size: var(--art-body-two-mobile-font-size);
        line-height: var(--art-body-two-mobile-line-height);
        letter-spacing: var(--art-body-two-mobile-letter-spacing); } }
    .art-single-product-before-top .woocommerce-breadcrumb,
    .art-single-product-before-top .woocommerce-breadcrumb a {
      color: var(--art-colors-heading); }
    .art-single-product-before-top .woocommerce-breadcrumb a:hover {
      color: var(--art-colors-link); }

.art-product-layout-classic .art-single-product-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px; }
  .art-product-layout-classic .art-single-product-top .art-product-gallery {
    position: relative; }
    .art-product-layout-classic .art-single-product-top .art-product-gallery span.onsale {
      font-family: var(--art-body-five-font-family);
      font-weight: var(--art-body-five-font-weight);
      font-style: var(--art-body-five-font-style);
      text-transform: var(--art-body-five-text-transform);
      -webkit-text-decoration: var(--art-body-five-text-decoration);
              text-decoration: var(--art-body-five-text-decoration);
      font-size: var(--art-body-five-font-size);
      line-height: var(--art-body-five-line-height);
      letter-spacing: var(--art-body-five-letter-spacing);
      color: var(--art-colors-heading);
      background-color: var(--art-colors-accent);
      border-width: 2px;
      border-style: solid;
      border-color: var(--art-colors-heading);
      position: absolute;
      top: 16px;
      left: auto;
      right: 31px;
      margin: 0;
      min-width: 1px;
      min-height: 1px;
      padding: 6px 12px;
      border-radius: 0; }
    .art-product-layout-classic .art-single-product-top .art-product-gallery .art-product-no-sliders a img {
      width: 100%; }
    .art-product-layout-classic .art-single-product-top .art-product-gallery .woocommerce-product-gallery__trigger {
      display: none; }
    .art-product-layout-classic .art-single-product-top .art-product-gallery .images {
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin-bottom: 0; }
      @media only screen and (max-width: 1199px) {
        .art-product-layout-classic .art-single-product-top .art-product-gallery .images {
          -ms-flex-wrap: wrap;
              flex-wrap: wrap; } }
      .art-product-layout-classic .art-single-product-top .art-product-gallery .images .art-product-sliders-nav {
        width: 120px;
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
        margin-right: 30px;
        position: relative;
        z-index: 20;
        margin-top: -15px; }
        @media only screen and (max-width: 1199px) {
          .art-product-layout-classic .art-single-product-top .art-product-gallery .images .art-product-sliders-nav {
            -webkit-box-ordinal-group: 3;
                -ms-flex-order: 2;
                    order: 2;
            width: 100%;
            display: none; } }
        .art-product-layout-classic .art-single-product-top .art-product-gallery .images .art-product-sliders-nav .art-slick-slide {
          cursor: pointer; }
        .art-product-layout-classic .art-single-product-top .art-product-gallery .images .art-product-sliders-nav .slick-list {
          overflow: hidden; }
        .art-product-layout-classic .art-single-product-top .art-product-gallery .images .art-product-sliders-nav .slick-slide {
          margin: 15px 0; }
          .art-product-layout-classic .art-single-product-top .art-product-gallery .images .art-product-sliders-nav .slick-slide img {
            width: 120px !important;
            opacity: 1; }
      .art-product-layout-classic .art-single-product-top .art-product-gallery .images .art-product-sliders-for {
        width: calc(100% - 150px);
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2; }
        @media only screen and (max-width: 1199px) {
          .art-product-layout-classic .art-single-product-top .art-product-gallery .images .art-product-sliders-for {
            -webkit-box-ordinal-group: 2;
                -ms-flex-order: 1;
                    order: 1;
            width: 100%;
            max-width: unset;
            overflow: hidden;
            position: relative; }
            .art-product-layout-classic .art-single-product-top .art-product-gallery .images .art-product-sliders-for .slick-dots {
              bottom: 11px; } }
    .art-product-layout-classic .art-single-product-top .art-product-gallery .slider_arrows {
      position: absolute;
      width: 120px;
      height: 100%; }
      @media only screen and (max-width: 1199px) {
        .art-product-layout-classic .art-single-product-top .art-product-gallery .slider_arrows {
          display: none; } }
      .art-product-layout-classic .art-single-product-top .art-product-gallery .slider_arrows .previous_image,
      .art-product-layout-classic .art-single-product-top .art-product-gallery .slider_arrows .next_image {
        font-size: 20px;
        display: none;
        width: 1em;
        height: 1em;
        margin: auto !important;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        position: absolute;
        z-index: 21;
        cursor: pointer; }
        .art-product-layout-classic .art-single-product-top .art-product-gallery .slider_arrows .previous_image.slick-arrow,
        .art-product-layout-classic .art-single-product-top .art-product-gallery .slider_arrows .next_image.slick-arrow {
          display: block; }
        .art-product-layout-classic .art-single-product-top .art-product-gallery .slider_arrows .previous_image.slick-hidden i, .art-product-layout-classic .art-single-product-top .art-product-gallery .slider_arrows .previous_image.slick-disabled i,
        .art-product-layout-classic .art-single-product-top .art-product-gallery .slider_arrows .next_image.slick-hidden i,
        .art-product-layout-classic .art-single-product-top .art-product-gallery .slider_arrows .next_image.slick-disabled i {
          display: none; }
      .art-product-layout-classic .art-single-product-top .art-product-gallery .slider_arrows .previous_image {
        top: -40px;
        bottom: auto; }
      .art-product-layout-classic .art-single-product-top .art-product-gallery .slider_arrows .next_image {
        top: auto;
        bottom: -40px; }
  @media only screen and (max-width: 991px) {
    .art-product-layout-classic .art-single-product-top .entry-summary.summary {
      margin-top: 40px; } }
  .art-product-layout-classic .art-single-product-top .entry-summary .product_title {
    margin-bottom: 20px; }
  .art-product-layout-classic .art-single-product-top .entry-summary .woocommerce-product-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0 20px; }
    .art-product-layout-classic .art-single-product-top .entry-summary .woocommerce-product-rating .star-rating {
      margin: 0 10px 0 0; }
  .art-product-layout-classic .art-single-product-top .entry-summary .price {
    font-family: var(--art-body-font-family);
    font-weight: var(--art-body-font-weight);
    font-style: var(--art-body-font-style);
    text-transform: var(--art-body-text-transform);
    -webkit-text-decoration: var(--art-body-text-decoration);
            text-decoration: var(--art-body-text-decoration);
    font-size: var(--art-body-font-size);
    line-height: var(--art-body-line-height);
    letter-spacing: var(--art-body-letter-spacing);
    margin-bottom: 20px; }
    @media only screen and (max-width: 767px) {
      .art-product-layout-classic .art-single-product-top .entry-summary .price {
        font-family: var(--art-body-mobile-font-family);
        font-weight: var(--art-body-mobile-font-weight);
        font-style: var(--art-body-mobile-font-style);
        text-transform: var(--art-body-mobile-text-transform);
        -webkit-text-decoration: var(--art-body-mobile-text-decoration);
                text-decoration: var(--art-body-mobile-text-decoration);
        font-size: var(--art-body-mobile-font-size);
        line-height: var(--art-body-mobile-line-height);
        letter-spacing: var(--art-body-mobile-letter-spacing); } }
    .art-product-layout-classic .art-single-product-top .entry-summary .price ins {
      font-weight: inherit;
      text-decoration: none; }
  .art-product-layout-classic .art-single-product-top .entry-summary .woocommerce-product-details__short-description {
    font-family: var(--art-body-two-font-family);
    font-weight: var(--art-body-two-font-weight);
    font-style: var(--art-body-two-font-style);
    text-transform: var(--art-body-two-text-transform);
    -webkit-text-decoration: var(--art-body-two-text-decoration);
            text-decoration: var(--art-body-two-text-decoration);
    font-size: var(--art-body-two-font-size);
    line-height: var(--art-body-two-line-height);
    letter-spacing: var(--art-body-two-letter-spacing);
    margin-bottom: 30px; }
    @media only screen and (max-width: 767px) {
      .art-product-layout-classic .art-single-product-top .entry-summary .woocommerce-product-details__short-description {
        font-family: var(--art-body-two-mobile-font-family);
        font-weight: var(--art-body-two-mobile-font-weight);
        font-style: var(--art-body-two-mobile-font-style);
        text-transform: var(--art-body-two-mobile-text-transform);
        -webkit-text-decoration: var(--art-body-two-mobile-text-decoration);
                text-decoration: var(--art-body-two-mobile-text-decoration);
        font-size: var(--art-body-two-mobile-font-size);
        line-height: var(--art-body-two-mobile-line-height);
        letter-spacing: var(--art-body-two-mobile-letter-spacing); } }
  .art-product-layout-classic .art-single-product-top .entry-summary form.cart {
    margin-bottom: 40px; }
    .art-product-layout-classic .art-single-product-top .entry-summary form.cart .variations {
      margin-bottom: 30px; }
      .art-product-layout-classic .art-single-product-top .entry-summary form.cart .variations th,
      .art-product-layout-classic .art-single-product-top .entry-summary form.cart .variations td {
        border: 0;
        padding: 10px 0 0; }
      .art-product-layout-classic .art-single-product-top .entry-summary form.cart .variations tr:first-child th,
      .art-product-layout-classic .art-single-product-top .entry-summary form.cart .variations tr:first-child td {
        padding-top: 0; }
      .art-product-layout-classic .art-single-product-top .entry-summary form.cart .variations label {
        margin: 0; }
      .art-product-layout-classic .art-single-product-top .entry-summary form.cart .variations td.label label {
        padding: 15px 0; }
      .art-product-layout-classic .art-single-product-top .entry-summary form.cart .variations .reset_variations {
        font-family: var(--art-body-five-font-family);
        font-weight: var(--art-body-five-font-weight);
        font-style: var(--art-body-five-font-style);
        text-transform: var(--art-body-five-text-transform);
        -webkit-text-decoration: var(--art-body-five-text-decoration);
                text-decoration: var(--art-body-five-text-decoration);
        font-size: var(--art-body-five-font-size);
        line-height: var(--art-body-five-line-height);
        letter-spacing: var(--art-body-five-letter-spacing);
        color: var(--art-colors-second-text);
        visibility: visible !important; }
        .art-product-layout-classic .art-single-product-top .entry-summary form.cart .variations .reset_variations:hover {
          color: var(--art-colors-link); }
      .woo-variation-swatches .art-product-layout-classic .art-single-product-top .entry-summary form.cart .variations tr {
        display: block;
        margin-top: 10px; }
        .woo-variation-swatches .art-product-layout-classic .art-single-product-top .entry-summary form.cart .variations tr:first-child {
          margin-top: 0; }
      .woo-variation-swatches .art-product-layout-classic .art-single-product-top .entry-summary form.cart .variations th,
      .woo-variation-swatches .art-product-layout-classic .art-single-product-top .entry-summary form.cart .variations td {
        display: block;
        padding: 0; }
      .woo-variation-swatches .art-product-layout-classic .art-single-product-top .entry-summary form.cart .variations td.label {
        padding: 0;
        margin-bottom: 2px; }
        .woo-variation-swatches .art-product-layout-classic .art-single-product-top .entry-summary form.cart .variations td.label label {
          padding: 0; }
      .woo-variation-swatches .art-product-layout-classic .art-single-product-top .entry-summary form.cart .variations .woo-selected-variation-item-name {
        display: none !important; }
      .woo-variation-swatches .art-product-layout-classic .art-single-product-top .entry-summary form.cart .variations .variable-items-wrapper .variable-item:not(.radio-variable-item) {
        color: var(--art-colors-heading);
        background-color: var(--art-colors-bg);
        border-width: 2px;
        border-style: solid;
        border-color: var(--art-colors-heading);
        margin-right: 14px;
        padding: 4px 10px;
        -webkit-box-shadow: none;
                box-shadow: none;
        border-radius: 0;
        -webkit-transition: color .2s ease-in-out, background-color .2s ease-in-out, opacity .2s ease-in-out;
        transition: color .2s ease-in-out, background-color .2s ease-in-out, opacity .2s ease-in-out; }
        .woo-variation-swatches .art-product-layout-classic .art-single-product-top .entry-summary form.cart .variations .variable-items-wrapper .variable-item:not(.radio-variable-item):last-of-type {
          margin-right: 0; }
        .woo-variation-swatches .art-product-layout-classic .art-single-product-top .entry-summary form.cart .variations .variable-items-wrapper .variable-item:not(.radio-variable-item):hover {
          opacity: .8; }
        .woo-variation-swatches .art-product-layout-classic .art-single-product-top .entry-summary form.cart .variations .variable-items-wrapper .variable-item:not(.radio-variable-item).selected {
          color: var(--art-colors-bg);
          background-color: var(--art-colors-heading);
          opacity: 1; }
        .woo-variation-swatches .art-product-layout-classic .art-single-product-top .entry-summary form.cart .variations .variable-items-wrapper .variable-item:not(.radio-variable-item) .variable-item-span {
          padding: 0;
          font-size: inherit; }
    .art-product-layout-classic .art-single-product-top .entry-summary form.cart .single_variation {
      margin-bottom: 20px; }
    .art-product-layout-classic .art-single-product-top .entry-summary form.cart .quantity {
      margin-right: 24px; }
  .art-product-layout-classic .art-single-product-top .entry-summary .art-accordion__item-title {
    font-family: var(--art-body-two-font-family);
    font-weight: var(--art-body-two-font-weight);
    font-style: var(--art-body-two-font-style);
    text-transform: var(--art-body-two-text-transform);
    -webkit-text-decoration: var(--art-body-two-text-decoration);
            text-decoration: var(--art-body-two-text-decoration);
    font-size: var(--art-body-two-font-size);
    line-height: var(--art-body-two-line-height);
    letter-spacing: var(--art-body-two-letter-spacing); }
    @media only screen and (max-width: 767px) {
      .art-product-layout-classic .art-single-product-top .entry-summary .art-accordion__item-title {
        font-family: var(--art-body-two-mobile-font-family);
        font-weight: var(--art-body-two-mobile-font-weight);
        font-style: var(--art-body-two-mobile-font-style);
        text-transform: var(--art-body-two-mobile-text-transform);
        -webkit-text-decoration: var(--art-body-two-mobile-text-decoration);
                text-decoration: var(--art-body-two-mobile-text-decoration);
        font-size: var(--art-body-two-mobile-font-size);
        line-height: var(--art-body-two-mobile-line-height);
        letter-spacing: var(--art-body-two-mobile-letter-spacing); } }
  .art-product-layout-classic .art-single-product-top .entry-summary .art-accordion__item-content {
    font-family: var(--art-body-two-font-family);
    font-weight: var(--art-body-two-font-weight);
    font-style: var(--art-body-two-font-style);
    text-transform: var(--art-body-two-text-transform);
    -webkit-text-decoration: var(--art-body-two-text-decoration);
            text-decoration: var(--art-body-two-text-decoration);
    font-size: var(--art-body-two-font-size);
    line-height: var(--art-body-two-line-height);
    letter-spacing: var(--art-body-two-letter-spacing); }
    @media only screen and (max-width: 767px) {
      .art-product-layout-classic .art-single-product-top .entry-summary .art-accordion__item-content {
        font-family: var(--art-body-two-mobile-font-family);
        font-weight: var(--art-body-two-mobile-font-weight);
        font-style: var(--art-body-two-mobile-font-style);
        text-transform: var(--art-body-two-mobile-text-transform);
        -webkit-text-decoration: var(--art-body-two-mobile-text-decoration);
                text-decoration: var(--art-body-two-mobile-text-decoration);
        font-size: var(--art-body-two-mobile-font-size);
        line-height: var(--art-body-two-mobile-line-height);
        letter-spacing: var(--art-body-two-mobile-letter-spacing); } }
    .art-product-layout-classic .art-single-product-top .entry-summary .art-accordion__item-content > h2 {
      display: none; }
  .art-product-layout-classic .art-single-product-top .entry-summary table.shop_attributes {
    border: 0;
    margin: 0; }
    .art-product-layout-classic .art-single-product-top .entry-summary table.shop_attributes th,
    .art-product-layout-classic .art-single-product-top .entry-summary table.shop_attributes td {
      font-size: inherit;
      line-height: inherit;
      font-weight: inherit;
      font-style: inherit;
      text-transform: inherit;
      border: 0;
      background-color: transparent;
      padding: 0; }
    .art-product-layout-classic .art-single-product-top .entry-summary table.shop_attributes th {
      padding-right: 10px; }
  .art-product-layout-classic .art-single-product-top .entry-summary #reviews #comments .woocommerce-Reviews-title {
    margin-bottom: 0; }
  .art-product-layout-classic .art-single-product-top .entry-summary #reviews #comments .woocommerce-noreviews {
    font-family: var(--art-body-two-font-family);
    font-weight: var(--art-body-two-font-weight);
    font-style: var(--art-body-two-font-style);
    text-transform: var(--art-body-two-text-transform);
    -webkit-text-decoration: var(--art-body-two-text-decoration);
            text-decoration: var(--art-body-two-text-decoration);
    font-size: var(--art-body-two-font-size);
    line-height: var(--art-body-two-line-height);
    letter-spacing: var(--art-body-two-letter-spacing);
    color: var(--art-colors-heading);
    display: block;
    margin-top: 10px;
    margin-bottom: 0; }
    @media only screen and (max-width: 767px) {
      .art-product-layout-classic .art-single-product-top .entry-summary #reviews #comments .woocommerce-noreviews {
        font-family: var(--art-body-two-mobile-font-family);
        font-weight: var(--art-body-two-mobile-font-weight);
        font-style: var(--art-body-two-mobile-font-style);
        text-transform: var(--art-body-two-mobile-text-transform);
        -webkit-text-decoration: var(--art-body-two-mobile-text-decoration);
                text-decoration: var(--art-body-two-mobile-text-decoration);
        font-size: var(--art-body-two-mobile-font-size);
        line-height: var(--art-body-two-mobile-line-height);
        letter-spacing: var(--art-body-two-mobile-letter-spacing); } }
  .art-product-layout-classic .art-single-product-top .entry-summary #reviews #comments .commentlist {
    margin-top: 0; }
    .art-product-layout-classic .art-single-product-top .entry-summary #reviews #comments .commentlist .review {
      margin-top: 30px;
      margin-bottom: 0; }
      .art-product-layout-classic .art-single-product-top .entry-summary #reviews #comments .commentlist .review .comment_container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start; }
        .art-product-layout-classic .art-single-product-top .entry-summary #reviews #comments .commentlist .review .comment_container img.avatar {
          border: none;
          background: unset;
          padding: 0;
          width: 60px;
          position: static;
          float: none;
          border-radius: 50%; }
        .art-product-layout-classic .art-single-product-top .entry-summary #reviews #comments .commentlist .review .comment_container .comment-text {
          margin-left: 24px;
          padding: 0;
          border: none; }
          .art-product-layout-classic .art-single-product-top .entry-summary #reviews #comments .commentlist .review .comment_container .comment-text .star-rating {
            float: none;
            position: absolute;
            right: 0;
            top: 5px; }
          .art-product-layout-classic .art-single-product-top .entry-summary #reviews #comments .commentlist .review .comment_container .comment-text .meta {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
            margin-bottom: 18px; }
            .art-product-layout-classic .art-single-product-top .entry-summary #reviews #comments .commentlist .review .comment_container .comment-text .meta .woocommerce-review__author {
              color: var(--art-colors-heading);
              margin-bottom: 8px; }
          .art-product-layout-classic .art-single-product-top .entry-summary #reviews #comments .commentlist .review .comment_container .comment-text p:last-child {
            margin-bottom: 0; }
  .art-product-layout-classic .art-single-product-top .entry-summary #reviews #respond {
    margin-top: 20px; }
  .art-product-layout-classic .art-single-product-top .entry-summary #reviews .comment-respond {
    margin-top: 30px; }
    .art-product-layout-classic .art-single-product-top .entry-summary #reviews .comment-respond .woo-respondcomment-reply-title {
      display: block;
      margin-bottom: 10px; }
    .art-product-layout-classic .art-single-product-top .entry-summary #reviews .comment-respond .woo-comment-reply-title {
      margin-bottom: 10px;
      display: block; }
    .art-product-layout-classic .art-single-product-top .entry-summary #reviews .comment-respond form.comment-form {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      margin: 0; }
      .art-product-layout-classic .art-single-product-top .entry-summary #reviews .comment-respond form.comment-form > p {
        padding: 0; }
      .art-product-layout-classic .art-single-product-top .entry-summary #reviews .comment-respond form.comment-form .comment-notes {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
        margin-bottom: 30px !important; }
      .art-product-layout-classic .art-single-product-top .entry-summary #reviews .comment-respond form.comment-form .comment-form-author {
        -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
                order: 3;
        width: calc(50% - 15px);
        margin-right: 30px !important;
        margin-bottom: 30px !important; }
      .art-product-layout-classic .art-single-product-top .entry-summary #reviews .comment-respond form.comment-form .comment-form-email {
        -webkit-box-ordinal-group: 5;
            -ms-flex-order: 4;
                order: 4;
        width: calc(50% - 15px);
        margin-bottom: 30px !important; }
      .art-product-layout-classic .art-single-product-top .entry-summary #reviews .comment-respond form.comment-form .comment-form-rating {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
        width: 100%;
        margin-bottom: 10px; }
        .art-product-layout-classic .art-single-product-top .entry-summary #reviews .comment-respond form.comment-form .comment-form-rating label {
          margin-bottom: 10px; }
        .art-product-layout-classic .art-single-product-top .entry-summary #reviews .comment-respond form.comment-form .comment-form-rating .stars {
          font-size: 16px;
          font-weight: 700;
          display: inline-block; }
          .art-product-layout-classic .art-single-product-top .entry-summary #reviews .comment-respond form.comment-form .comment-form-rating .stars a {
            color: var(--art-colors-heading); }
            .art-product-layout-classic .art-single-product-top .entry-summary #reviews .comment-respond form.comment-form .comment-form-rating .stars a:hover ~ a {
              color: var(--art-colors-heading); }
          .art-product-layout-classic .art-single-product-top .entry-summary #reviews .comment-respond form.comment-form .comment-form-rating .stars:hover a {
            color: var(--art-colors-link); }
          .art-product-layout-classic .art-single-product-top .entry-summary #reviews .comment-respond form.comment-form .comment-form-rating .stars.selected a.active {
            color: var(--art-colors-link); }
            .art-product-layout-classic .art-single-product-top .entry-summary #reviews .comment-respond form.comment-form .comment-form-rating .stars.selected a.active ~ a {
              color: var(--art-colors-heading); }
          .art-product-layout-classic .art-single-product-top .entry-summary #reviews .comment-respond form.comment-form .comment-form-rating .stars.selected a:not(.active) {
            color: var(--art-colors-link); }
      .art-product-layout-classic .art-single-product-top .entry-summary #reviews .comment-respond form.comment-form .comment-form-comment {
        -webkit-box-ordinal-group: 6;
            -ms-flex-order: 5;
                order: 5;
        width: 100%;
        padding: 0; }
        .art-product-layout-classic .art-single-product-top .entry-summary #reviews .comment-respond form.comment-form .comment-form-comment textarea {
          margin-top: 0;
          margin-bottom: 20px;
          height: 130px !important; }
      .art-product-layout-classic .art-single-product-top .entry-summary #reviews .comment-respond form.comment-form .form-submit {
        -webkit-box-ordinal-group: 7;
            -ms-flex-order: 6;
                order: 6;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        .art-product-layout-classic .art-single-product-top .entry-summary #reviews .comment-respond form.comment-form .form-submit input.submit {
          -webkit-box-align: end;
              -ms-flex-align: end;
                  align-items: flex-end; }
  .art-product-layout-classic .art-single-product-top .entry-summary .product_meta {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .art-product-layout-classic .art-single-product-top .entry-summary .product_meta > span + span {
      margin-top: 8px; }
    .art-product-layout-classic .art-single-product-top .entry-summary .product_meta a {
      color: var(--art-colors-text); }
      .art-product-layout-classic .art-single-product-top .entry-summary .product_meta a:hover {
        color: var(--art-colors-link); }
  .art-product-layout-classic .art-single-product-top .entry-summary form.grouped_form table.group_table tr td {
    padding-bottom: 0; }
    .art-product-layout-classic .art-single-product-top .entry-summary form.grouped_form table.group_table tr td .quantity {
      margin-right: 0; }
    .art-product-layout-classic .art-single-product-top .entry-summary form.grouped_form table.group_table tr td span,
    .art-product-layout-classic .art-single-product-top .entry-summary form.grouped_form table.group_table tr td label {
      line-height: 49px; }
  .art-product-layout-classic .art-single-product-top .entry-summary form.grouped_form .single_add_to_cart_button {
    margin-top: 17px; }

.art-product-layout-classic .related.products {
  margin-top: 70px;
  /*margin-bottom: 85px;*/ }
  @media only screen and (max-width: 767px) {
    .art-product-layout-classic .related.products {
      margin-top: 30px;
      margin-bottom: 40px; } }
  .art-product-layout-classic .related.products h2 {
    display: block;
    text-align: center;
    margin-top: 0;
    margin-bottom: 50px;
    font-family: var(--art-h4-font-family);
    font-weight: var(--art-h4-font-weight);
    font-style: var(--art-h4-font-style);
    text-transform: var(--art-h4-text-transform);
    -webkit-text-decoration: var(--art-h4-text-decoration);
            text-decoration: var(--art-h4-text-decoration);
    font-size: var(--art-h4-font-size);
    line-height: var(--art-h4-line-height);
    letter-spacing: var(--art-h4-letter-spacing); }
    @media only screen and (max-width: 767px) {
      .art-product-layout-classic .related.products h2 {
        font-family: var(--art-h4-mobile-font-family);
        font-weight: var(--art-h4-mobile-font-weight);
        font-style: var(--art-h4-mobile-font-style);
        text-transform: var(--art-h4-mobile-text-transform);
        -webkit-text-decoration: var(--art-h4-mobile-text-decoration);
                text-decoration: var(--art-h4-mobile-text-decoration);
        font-size: var(--art-h4-mobile-font-size);
        line-height: var(--art-h4-mobile-line-height);
        letter-spacing: var(--art-h4-mobile-letter-spacing); } }

.fr-thumbnail-frame .fr-thumbnail .fr-thumbnail-wrapper {
  -webkit-box-shadow: none;
          box-shadow: none; }
  .fr-thumbnail-frame .fr-thumbnail .fr-thumbnail-wrapper .fr-thumbnail-image {
    opacity: 1 !important; }

.fr-thumbnail-frame .fr-thumbnail .fr-thumbnail-overlay .fr-thumbnail-loading {
  opacity: 0 !important; }

.fr-overlay .fr-overlay-background {
  background: #fff;
  opacity: 1; }

.fr-window-skin-fresco .fr-content-background {
  -webkit-box-shadow: none;
          box-shadow: none; }

.fr-thumbnails-vertical .fr-thumbnails {
  width: 40%; }

.nojq {
  z-index: 99999999999999999999999; }

.fr-window-skin-fresco.fr-svg .fr-side-previous .fr-side-button-icon,
.fr-window-skin-fresco.fr-svg .fr-side-next .fr-side-button-icon {
  font-size: 70px;
  line-height: 1em;
  color: var(--art-colors-heading);
  -webkit-transition: color .2s ease-in-out;
  transition: color .2s ease-in-out; }
  .fr-window-skin-fresco.fr-svg .fr-side-previous .fr-side-button-icon:hover,
  .fr-window-skin-fresco.fr-svg .fr-side-next .fr-side-button-icon:hover {
    color: var(--art-colors-link); }
  .fr-window-skin-fresco.fr-svg .fr-side-previous .fr-side-button-icon::before,
  .fr-window-skin-fresco.fr-svg .fr-side-next .fr-side-button-icon::before {
    font-family: "denaro-font";
    font-size: inherit;
    line-height: inherit;
    width: 1em;
    height: 1em;
    margin: auto !important;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0; }

.fr-window-skin-fresco.fr-svg .fr-side-previous .fr-side-button-icon {
  background: none;
  opacity: 1; }
  .fr-window-skin-fresco.fr-svg .fr-side-previous .fr-side-button-icon::before {
    content: '\c016'; }

.fr-window-skin-fresco.fr-svg .fr-side-next .fr-side-button-icon {
  background: none;
  opacity: 1; }
  .fr-window-skin-fresco.fr-svg .fr-side-next .fr-side-button-icon::before {
    content: '\c018'; }

.fr-window-skin-fresco.fr-svg .fr-side-disabled .fr-side-button-icon:hover,
.fr-window-skin-fresco.fr-svg .fr-side-disabled .fr-side-button-icon {
  opacity: 0.5; }

.fr-close {
  top: 30px;
  right: 30px; }

.fr-window-skin-fresco.fr-svg .fr-close .fr-close-icon {
  font-size: 22px;
  background: none;
  background-color: #fff;
  opacity: 1; }
  .fr-window-skin-fresco.fr-svg .fr-close .fr-close-icon:before {
    font-family: "denaro-font";
    content: '\c022';
    width: 1em;
    height: 1em;
    margin: auto !important;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0; }

.fr-thumbnails-side-button:hover .fr-thumbnails-side-button-background,
.fr-thumbnails-side-button:hover,
.fr-thumbnails-side-button-background:hover,
.fr-thumbnails-side-button-background {
  background: transparent; }

.fr-window-skin-fresco.fr-svg .fr-thumbnails-side.fr-thumbnails-side-next .fr-thumbnails-side-button-icon {
  background-image: unset;
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .fr-window-skin-fresco.fr-svg .fr-thumbnails-side.fr-thumbnails-side-next .fr-thumbnails-side-button-icon::before {
    content: '\c013';
    font-size: 18px;
    font-family: "denaro-font"; }

.fr-window-skin-fresco.fr-svg .fr-thumbnails-side.fr-thumbnails-side-previous .fr-thumbnails-side-button-icon {
  background-image: unset;
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .fr-window-skin-fresco.fr-svg .fr-thumbnails-side.fr-thumbnails-side-previous .fr-thumbnails-side-button-icon::before {
    content: '\c019';
    font-size: 18px;
    font-family: "denaro-font"; }

.art-product-layout-classic .art-single-product-top .art-product-gallery .images {
  position: relative; }

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--art-colors-heading); }

.woocommerce div.product div.images img {
  width: auto !important; }

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0; }

.woocommerce-account code,
.woocommerce-account strong {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit; }

.woocommerce .woocommerce-MyAccount-navigation ul {
  border-right-width: 1px;
  border-right-style: solid;
  border-color: rgba(0, 0, 0, 0.1);
  list-style: none;
  margin: 0;
  padding: 10px 0; }

.woocommerce .woocommerce-MyAccount-navigation li {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-color: rgba(0, 0, 0, 0.1);
  margin: 0;
  padding: 0;
  color: var(--art-colors-text); }
  .woocommerce .woocommerce-MyAccount-navigation li:last-child {
    border-bottom: 0; }
  .woocommerce .woocommerce-MyAccount-navigation li a {
    display: block;
    padding: 15px 3px;
    color: var(--art-colors-text); }
    .art-second-color-scheme .woocommerce .woocommerce-MyAccount-navigation li a {
      color: var(--art-bg-text); }
  .woocommerce .woocommerce-MyAccount-navigation li.is-active a,
  .woocommerce .woocommerce-MyAccount-navigation li a:hover {
    color: var(--art-colors-link); }
    .art-second-color-scheme .woocommerce .woocommerce-MyAccount-navigation li.is-active a, .art-second-color-scheme
    .woocommerce .woocommerce-MyAccount-navigation li a:hover {
      color: var(--art-bg-link); }

.woocommerce .woocommerce-MyAccount-content .col2-set .col-1,
.woocommerce .woocommerce-MyAccount-content .col2-set .col-2 {
  max-width: 100%;
  padding: 0;
  -webkit-box-flex: initial;
      -ms-flex: initial;
          flex: initial; }

.woocommerce .woocommerce-MyAccount-content .woocommerce-Address .woocommerce-Address-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .woocommerce .woocommerce-MyAccount-content .woocommerce-Address .woocommerce-Address-title::before, .woocommerce .woocommerce-MyAccount-content .woocommerce-Address .woocommerce-Address-title::after {
    content: none !important; }
  .woocommerce .woocommerce-MyAccount-content .woocommerce-Address .woocommerce-Address-title h3 {
    margin: 0; }

.woocommerce .woocommerce-MyAccount-content .woocommerce-Address address {
  margin: 20px 0 0; }

.woocommerce .woocommerce-MyAccount-content .form-row {
  display: block;
  margin-bottom: 20px; }

.woocommerce .woocommerce-MyAccount-content .woocommerce-address-fields > p {
  margin-top: 30px; }

.woocommerce .woocommerce-MyAccount-content .button {
  font-family: var(--art-button-font-family);
  font-weight: var(--art-button-font-weight);
  font-style: var(--art-button-font-style);
  text-transform: var(--art-button-text-transform);
  -webkit-text-decoration: var(--art-button-text-decoration);
          text-decoration: var(--art-button-text-decoration);
  font-size: var(--art-button-font-size);
  line-height: var(--art-button-line-height);
  letter-spacing: var(--art-button-letter-spacing);
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  border-radius: 0;
  overflow: visible;
  word-break: normal;
  position: relative;
  z-index: 0;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  border-width: 2px;
  border-style: solid;
  padding: 13px 40px;
  border-color: var(--art-colors-bg);
  background-color: var(--art-colors-bg);
  color: var(--art-colors-light-text); }
  .art-second-color-scheme .woocommerce .woocommerce-MyAccount-content .button {
    border-color: var(--art-bg-bg); }
  .art-second-color-scheme .woocommerce .woocommerce-MyAccount-content .button {
    background-color: var(--art-bg-bg); }
  .art-second-color-scheme .woocommerce .woocommerce-MyAccount-content .button {
    color: var(--art-bg-light-text); }
  .woocommerce .woocommerce-MyAccount-content .button:hover {
    border-color: var(--art-colors-bg-hover);
    background-color: var(--art-colors-bg-hover);
    color: var(--art-colors-light-text); }
    .art-second-color-scheme .woocommerce .woocommerce-MyAccount-content .button:hover {
      border-color: var(--art-bg-bg-hover); }
    .art-second-color-scheme .woocommerce .woocommerce-MyAccount-content .button:hover {
      background-color: var(--art-bg-bg-hover); }
    .art-second-color-scheme .woocommerce .woocommerce-MyAccount-content .button:hover {
      color: var(--art-bg-light-text); }

.woocommerce .woocommerce-MyAccount-content table.my_account_orders {
  text-align: inherit;
  border-spacing: 0;
  border-collapse: separate;
  border: 0;
  background-color: transparent;
  width: 100%;
  margin-top: 3rem;
  margin-bottom: 3rem;
  /* for gutenberg start */
  /* for gutenberg end */
  margin: 0;
  border-radius: 0; }
  .woocommerce .woocommerce-MyAccount-content table.my_account_orders th {
    text-align: inherit; }
  .woocommerce .woocommerce-MyAccount-content table.my_account_orders tbody {
    border-width: 0; }
  .woocommerce .woocommerce-MyAccount-content table.my_account_orders th,
  .woocommerce .woocommerce-MyAccount-content table.my_account_orders td {
    padding: 4px 8px; }
  .woocommerce .woocommerce-MyAccount-content table.my_account_orders tbody th,
  .woocommerce .woocommerce-MyAccount-content table.my_account_orders tbody td, .woocommerce .woocommerce-MyAccount-content table.my_account_orders > th,
  .woocommerce .woocommerce-MyAccount-content table.my_account_orders > td {
    border-width: 0;
    /* for gutenberg */
    border-style: solid;
    border-top-width: 1px;
    border-left-width: 1px;
    border-left-style: solid;
    color: var(--art-colors-text);
    border-color: var(--art-colors-bd); }
    .art-second-color-scheme .woocommerce .woocommerce-MyAccount-content table.my_account_orders tbody th, .art-second-color-scheme
    .woocommerce .woocommerce-MyAccount-content table.my_account_orders tbody td, .art-second-color-scheme .woocommerce .woocommerce-MyAccount-content table.my_account_orders > th, .art-second-color-scheme
    .woocommerce .woocommerce-MyAccount-content table.my_account_orders > td {
      color: var(--art-bg-text); }
    .art-second-color-scheme .woocommerce .woocommerce-MyAccount-content table.my_account_orders tbody th, .art-second-color-scheme
    .woocommerce .woocommerce-MyAccount-content table.my_account_orders tbody td, .art-second-color-scheme .woocommerce .woocommerce-MyAccount-content table.my_account_orders > th, .art-second-color-scheme
    .woocommerce .woocommerce-MyAccount-content table.my_account_orders > td {
      border-color: var(--art-bg-bd); }
    .woocommerce .woocommerce-MyAccount-content table.my_account_orders tbody th:last-child,
    .woocommerce .woocommerce-MyAccount-content table.my_account_orders tbody td:last-child, .woocommerce .woocommerce-MyAccount-content table.my_account_orders > th:last-child,
    .woocommerce .woocommerce-MyAccount-content table.my_account_orders > td:last-child {
      border-right-width: 1px;
      border-right-style: solid; }
  .woocommerce .woocommerce-MyAccount-content table.my_account_orders tbody tr:last-child th,
  .woocommerce .woocommerce-MyAccount-content table.my_account_orders tbody tr:last-child td, .woocommerce .woocommerce-MyAccount-content table.my_account_orders > tr:last-child th,
  .woocommerce .woocommerce-MyAccount-content table.my_account_orders > tr:last-child td {
    border-bottom-width: 1px;
    border-bottom-style: solid; }
  .woocommerce .woocommerce-MyAccount-content table.my_account_orders thead {
    border-width: 0; }
    .woocommerce .woocommerce-MyAccount-content table.my_account_orders thead th,
    .woocommerce .woocommerce-MyAccount-content table.my_account_orders thead td {
      border-width: 0;
      /* for gutenberg */
      border-style: solid;
      border-top-width: 1px;
      border-left-width: 1px;
      border-left-style: solid;
      color: var(--art-colors-text);
      border-color: var(--art-colors-bd);
      background-color: var(--art-colors-bg); }
      .art-second-color-scheme .woocommerce .woocommerce-MyAccount-content table.my_account_orders thead th, .art-second-color-scheme
      .woocommerce .woocommerce-MyAccount-content table.my_account_orders thead td {
        color: var(--art-bg-text); }
      .art-second-color-scheme .woocommerce .woocommerce-MyAccount-content table.my_account_orders thead th, .art-second-color-scheme
      .woocommerce .woocommerce-MyAccount-content table.my_account_orders thead td {
        border-color: var(--art-bg-bd); }
      .art-second-color-scheme .woocommerce .woocommerce-MyAccount-content table.my_account_orders thead th, .art-second-color-scheme
      .woocommerce .woocommerce-MyAccount-content table.my_account_orders thead td {
        background-color: var(--art-bg-bg); }
      .woocommerce .woocommerce-MyAccount-content table.my_account_orders thead th:last-child,
      .woocommerce .woocommerce-MyAccount-content table.my_account_orders thead td:last-child {
        border-right-width: 1px;
        border-right-style: solid; }
  .woocommerce .woocommerce-MyAccount-content table.my_account_orders tfoot {
    border-width: 0; }
    .woocommerce .woocommerce-MyAccount-content table.my_account_orders tfoot th,
    .woocommerce .woocommerce-MyAccount-content table.my_account_orders tfoot td {
      border-width: 0;
      /* for gutenberg */
      border-style: solid;
      border-bottom-width: 1px;
      border-left-width: 1px;
      border-left-style: solid;
      color: var(--art-colors-text);
      border-color: var(--art-colors-bd);
      background-color: var(--art-colors-bg); }
      .art-second-color-scheme .woocommerce .woocommerce-MyAccount-content table.my_account_orders tfoot th, .art-second-color-scheme
      .woocommerce .woocommerce-MyAccount-content table.my_account_orders tfoot td {
        color: var(--art-bg-text); }
      .art-second-color-scheme .woocommerce .woocommerce-MyAccount-content table.my_account_orders tfoot th, .art-second-color-scheme
      .woocommerce .woocommerce-MyAccount-content table.my_account_orders tfoot td {
        border-color: var(--art-bg-bd); }
      .art-second-color-scheme .woocommerce .woocommerce-MyAccount-content table.my_account_orders tfoot th, .art-second-color-scheme
      .woocommerce .woocommerce-MyAccount-content table.my_account_orders tfoot td {
        background-color: var(--art-bg-bg); }
      .woocommerce .woocommerce-MyAccount-content table.my_account_orders tfoot th:last-child,
      .woocommerce .woocommerce-MyAccount-content table.my_account_orders tfoot td:last-child {
        border-right-width: 1px;
        border-right-style: solid; }
  .woocommerce .woocommerce-MyAccount-content table.my_account_orders.is-style-stripes {
    border-width: 0; }
    .woocommerce .woocommerce-MyAccount-content table.my_account_orders.is-style-stripes tr:nth-child(odd) {
      background-color: transparent !important; }
  .woocommerce .woocommerce-MyAccount-content table.my_account_orders .button {
    display: block; }

.woof_show_auto_form {
  display: none !important; }

.woof_remove_ppi {
  background: none !important; }

.woof_info_popup {
  display: none !important; }

.woof_products_top_panel {
  display: none !important; }

.woof_shortcode_output .art-button-container {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important; }

.art-before-shop-loop {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important; }
  .art-before-shop-loop .woocommerce-breadcrumb {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    line-height: 1 !important; }

.woof_reset_search_form {
  border-width: 2px;
  border-style: solid;
  padding: 13px 40px;
  border-color: var(--art-colors-bg);
  background-color: transparent;
  color: var(--art-colors-bg); }
  .art-second-color-scheme .woof_reset_search_form {
    border-color: var(--art-bg-bg); }
  .art-second-color-scheme .woof_reset_search_form {
    background-color: transparent; }
  .art-second-color-scheme .woof_reset_search_form {
    color: var(--art-bg-bg); }
  .woof_reset_search_form:hover {
    background-color: var(--art-colors-bg);
    color: #fff; }
    .art-second-color-scheme .woof_reset_search_form:hover {
      background-color: var(--art-bg-bg); }

.WOOF_Widget .widget-title {
  display: none !important; }

.WOOF_Widget .woof_container h4 {
  margin-bottom: 20px !important;
  font-family: var(--art-body-three-font-family);
  font-weight: var(--art-body-three-font-weight);
  font-style: var(--art-body-three-font-style);
  text-transform: var(--art-body-three-text-transform);
  -webkit-text-decoration: var(--art-body-three-text-decoration);
          text-decoration: var(--art-body-three-text-decoration);
  font-size: var(--art-body-three-font-size);
  line-height: var(--art-body-three-line-height);
  letter-spacing: var(--art-body-three-letter-spacing); }
  @media only screen and (max-width: 767px) {
    .WOOF_Widget .woof_container h4 {
      font-family: var(--art-body-three-mobile-font-family);
      font-weight: var(--art-body-three-mobile-font-weight);
      font-style: var(--art-body-three-mobile-font-style);
      text-transform: var(--art-body-three-mobile-text-transform);
      -webkit-text-decoration: var(--art-body-three-mobile-text-decoration);
              text-decoration: var(--art-body-three-mobile-text-decoration);
      font-size: var(--art-body-three-mobile-font-size);
      line-height: var(--art-body-three-mobile-line-height);
      letter-spacing: var(--art-body-three-mobile-letter-spacing); } }

.WOOF_Widget .woof_container:not(:last-child) {
  margin-bottom: 30px !important;
  padding-bottom: 30px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); }

.WOOF_Widget .woof_container .price_slider_wrapper {
  padding-top: 10px; }
  .WOOF_Widget .woof_container .price_slider_wrapper .price_slider {
    margin: 0 !important;
    height: 2px !important;
    border-radius: 0 !important;
    background-color: rgba(0, 0, 0, 0.1) !important;
    margin-bottom: 20px !important; }
    .WOOF_Widget .woof_container .price_slider_wrapper .price_slider .ui-slider-range {
      background-color: #000 !important; }
    .WOOF_Widget .woof_container .price_slider_wrapper .price_slider .ui-slider-handle {
      width: 18px !important;
      height: 18px !important;
      background-color: #fff !important;
      border: 2px solid #000 !important;
      border-radius: 100% !important;
      top: -8px !important; }
  .WOOF_Widget .woof_container .price_slider_wrapper .price_slider_amount {
    font-family: var(--art-body-one-font-family);
    font-weight: var(--art-body-one-font-weight);
    font-style: var(--art-body-one-font-style);
    text-transform: var(--art-body-one-text-transform);
    -webkit-text-decoration: var(--art-body-one-text-decoration);
            text-decoration: var(--art-body-one-text-decoration);
    font-size: var(--art-body-one-font-size);
    line-height: var(--art-body-one-line-height);
    letter-spacing: var(--art-body-one-letter-spacing);
    font-size: 16px !important; }
    @media only screen and (max-width: 767px) {
      .WOOF_Widget .woof_container .price_slider_wrapper .price_slider_amount {
        font-family: var(--art-body-one-mobile-font-family);
        font-weight: var(--art-body-one-mobile-font-weight);
        font-style: var(--art-body-one-mobile-font-style);
        text-transform: var(--art-body-one-mobile-text-transform);
        -webkit-text-decoration: var(--art-body-one-mobile-text-decoration);
                text-decoration: var(--art-body-one-mobile-text-decoration);
        font-size: var(--art-body-one-mobile-font-size);
        line-height: var(--art-body-one-mobile-line-height);
        letter-spacing: var(--art-body-one-mobile-letter-spacing); } }
    .WOOF_Widget .woof_container .price_slider_wrapper .price_slider_amount .button {
      display: none !important; }

.WOOF_Widget .woof_container .woof_list_checkbox li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; }
  .WOOF_Widget .woof_container .woof_list_checkbox li .iCheck-helper {
    display: none !important; }
  .WOOF_Widget .woof_container .woof_list_checkbox li label {
    font-family: var(--art-body-one-font-family);
    font-weight: var(--art-body-one-font-weight);
    font-style: var(--art-body-one-font-style);
    text-transform: var(--art-body-one-text-transform);
    -webkit-text-decoration: var(--art-body-one-text-decoration);
            text-decoration: var(--art-body-one-text-decoration);
    font-size: var(--art-body-one-font-size);
    line-height: var(--art-body-one-line-height);
    letter-spacing: var(--art-body-one-letter-spacing);
    font-size: 16px !important;
    padding: 0 !important; }
    @media only screen and (max-width: 767px) {
      .WOOF_Widget .woof_container .woof_list_checkbox li label {
        font-family: var(--art-body-one-mobile-font-family);
        font-weight: var(--art-body-one-mobile-font-weight);
        font-style: var(--art-body-one-mobile-font-style);
        text-transform: var(--art-body-one-mobile-text-transform);
        -webkit-text-decoration: var(--art-body-one-mobile-text-decoration);
                text-decoration: var(--art-body-one-mobile-text-decoration);
        font-size: var(--art-body-one-mobile-font-size);
        line-height: var(--art-body-one-mobile-line-height);
        letter-spacing: var(--art-body-one-mobile-letter-spacing); } }
  .WOOF_Widget .woof_container .woof_list_checkbox li div, .WOOF_Widget .woof_container .woof_list_checkbox li label, .WOOF_Widget .woof_container .woof_list_checkbox li input {
    margin: 0; }
  .WOOF_Widget .woof_container .woof_list_checkbox li input {
    margin-right: 0 !important; }
  .WOOF_Widget .woof_container .woof_list_checkbox li label {
    margin-left: 8px; }
  .WOOF_Widget .woof_container .woof_list_checkbox li:not(:last-child) {
    margin-bottom: 14px !important; }

.WOOF_Widget .woof_submit_search_form_container {
  margin: 0 !important; }

.woof_products_top_panel {
  z-index: 1 !important; }

.WOOF_Widget input[type=checkbox] {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  margin: 0 !important;
  width: 20px;
  height: 20px;
  margin-right: 12px !important;
  border-radius: 0 !important; }
  .WOOF_Widget input[type=checkbox]:after {
    width: 20px;
    height: 20px;
    position: relative;
    content: "";
    display: inline-block;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    cursor: pointer;
    padding-top: 1px;
    padding-left: 1px; }
  .WOOF_Widget input[type=checkbox]:checked {
    background-color: #E9DAD2 !important; }
  .WOOF_Widget input[type=checkbox]:checked {
    opacity: 1 !important; }
  .WOOF_Widget input[type=checkbox]:hover {
    opacity: 0.8; }

/*# sourceMappingURL=maps/general.css.map */
